changeset 0:90fc00b34716 draft default tip

planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/extract_min_max_lines commit 718c006213709b631862b8d6d655fafc92e79ef7-dirty
author bebatut
date Fri, 15 Apr 2016 07:59:28 -0400
parents
children
files extract_min_max_lines.py extract_min_max_lines.xml test-data/input_file.tabular test-data/output_test_col_3_max.tabular test-data/output_test_col_3_min.tabular test-data/output_test_col_4_max.tabular test-data/output_test_col_4_min.tabular
diffstat 7 files changed, 45116 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/extract_min_max_lines.py	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,63 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import sys
+import os
+import argparse
+import re
+import time
+
+def extract_lines(input_content, column_id, extraction_type, extraction_nb):
+    conserved_lines = []
+    for line in input_content:
+        split_line = line[:-1].split('\t')
+        value = float(split_line[column_id])
+
+        if len(conserved_lines) < extraction_nb:
+            conserved_lines.append(split_line)
+        else:
+            best_pos = None
+            #print value
+            #print conserved_lines
+            for i in range(len(conserved_lines)-1,-1,-1):
+                compared_value = float(conserved_lines[i][column_id])
+                if extraction_type(value, compared_value) == value:
+                    print value, compared_value, extraction_type(value, compared_value)
+                    best_pos = i
+                else:
+                    break
+            if best_pos != None:
+                print best_pos
+                tmp_conserved_lines = conserved_lines
+                conserved_lines = tmp_conserved_lines[:best_pos]
+                conserved_lines += [split_line]
+                conserved_lines += tmp_conserved_lines[best_pos:-1]
+                print conserved_lines
+                print 
+    return conserved_lines
+
+def extract_min_max_lines(args):
+    if args.extraction_type == 'max':
+        extraction_type = max
+    elif args.extraction_type == 'min':
+        extraction_type = min
+
+    with open(args.input_file, 'r') as input_file:
+        input_content = input_file.readlines()
+        conserved_lines = extract_lines(input_content, args.column_id - 1, 
+            extraction_type, args.extraction_nb)
+
+    with open(args.output_file, 'w') as output_file:
+        for line in conserved_lines:
+            output_file.write('\t'.join(line) + "\n")
+
+if __name__ == '__main__':
+    parser = argparse.ArgumentParser()
+    parser.add_argument('--input_file', required=True)
+    parser.add_argument('--output_file', required=True)
+    parser.add_argument('--column_id', required=True, type=int)
+    parser.add_argument('--extraction_type', required=True, choices = ['min','max'])
+    parser.add_argument('--extraction_nb', required=True, type=int)
+    args = parser.parse_args()
+
+    extract_min_max_lines(args)
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/extract_min_max_lines.xml	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,80 @@
+<tool id="extract_min_max_lines" name="Extract lines corresponding" version="0.1.0">
+    <description>to minimum and maximum values of a column</description>
+
+    <requirements>
+    </requirements>
+
+    <stdio>
+    </stdio>
+
+    <version_command></version_command>
+
+    <command><![CDATA[
+        python $__tool_directory__/extract_min_max_lines.py
+            --input_file $input_file
+            --output_file $output_file
+            --column_id $column_id
+            --extraction_type $extraction_type
+            --extraction_nb $extraction_nb
+    ]]></command>
+
+    <inputs>
+        <param name="input_file" type="data" format="tabular,tsv,csv" label="Input file" help="File in tabular format with tab-separated columns (--input_file)"/>
+
+        <param name="column_id" type="data_column" data_ref="input_file" label="Column containing data to extract minimum or maximum values" multiple="false" numerical="true" help="(--column_id)"/>
+
+        <param name="extraction_type" label="Type of values to extract lines" type="select" help="(--extraction_type)">
+            <option value="min" selected="True">Minimal values</option>
+            <option value="max">Maximal values</option>
+        </param>
+
+        <param name="extraction_nb" type="integer" value="10" label="Number of lines to extract" help="(--extraction_nb)"/>
+    </inputs>
+
+    <outputs>
+        <data name="output_file" format="tabular"
+            label="${tool.name} on ${on_string}: Extracted lines" />
+    </outputs>
+
+    <tests>
+        <test>
+            <param name="input_file" value="input_file.tabular"/>
+            <param name="column_id" value="3"/>
+            <param name="extraction_type" value="min"/>
+            <param name="extraction_nb" value="10"/>
+            <output name="output_file" file="output_test_col_3_min.tabular"/>
+        </test>
+        <test>
+            <param name="input_file" value="input_file.tabular"/>
+            <param name="column_id" value="3"/>
+            <param name="extraction_type" value="max"/>
+            <param name="extraction_nb" value="10"/>
+            <output name="output_file" file="output_test_col_3_max.tabular"/>
+        </test>
+        <test>
+            <param name="input_file" value="input_file.tabular"/>
+            <param name="column_id" value="4"/>
+            <param name="extraction_type" value="min"/>
+            <param name="extraction_nb" value="10"/>
+            <output name="output_file" file="output_test_col_4_min.tabular"/>
+        </test>
+        <test>
+            <param name="input_file" value="input_file.tabular"/>
+            <param name="column_id" value="4"/>
+            <param name="extraction_type" value="max"/>
+            <param name="extraction_nb" value="10"/>
+            <output name="output_file" file="output_test_col_4_max.tabular"/>
+        </test>
+    </tests>
+
+    <help><![CDATA[
+**What it does**
+
+This tool extract a variable number of lines corresponding to minimum or maximum values of a chosen column.
+
+The file must be in tabular format with tabular separated columns. To chosen column to extract minimum or maximum values must be data columns.
+    ]]></help>
+
+    <citations>
+    </citations>
+</tool>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/input_file.tabular	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,44933 @@
+UniRef50_F0RML5	Peptidoglycan glycosyltransferase	0.000181399063257	0.023462188863	0.0232807897997
+UniRef50_D9SMK5	4Fe 4S ferredoxin iron sulfur binding domain containing protein	0.000974298729943	0.00104942971233	7.5130982387e-05
+UniRef50_UPI000289C850	glutamine synthetase	3.02071076987e-06	1.13251396637e-05	8.30442889383e-06
+UniRef50_UPI0003344A46	PREDICTED	2.92448096954e-06	1.23166316876e-05	9.39215071806e-06
+UniRef50_A5MZ45	CheA2	0.000168607563575	0.00156010359401	0.00139149603044
+UniRef50_Q2LVL0	Lipid A export ATP binding permease protein MsbA	1.24797999013e-05	2.11666856208e-05	8.6868857195e-06
+UniRef50_P31134	Putrescine transport ATP binding protein PotG	0.00276274252245	0.0013215449275	-0.00144119759495
+UniRef50_T1T0E7		0.000113062785186	0.00014719447673	3.4131691544e-05
+UniRef50_B1ES30		4.65083689682e-05	7.40274272935e-05	2.75190583253e-05
+UniRef50_U5FV07		6.97112841074e-06	1.69093447272e-05	9.93821631646e-06
+UniRef50_UPI00037AE754	hypothetical protein	4.96975012537e-05	7.77591897983e-05	2.80616885446e-05
+UniRef50_E3EZF3		3.7834529758e-05	5.98806720443e-05	2.20461422863e-05
+UniRef50_UPI00040F4463	MULTISPECIES	0.000347916254551	0.000538916925611	0.00019100067106
+UniRef50_A6TTD6	Xanthine phosphoribosyltransferase	3.29952916783e-05	8.400468316e-05	5.10093914817e-05
+UniRef50_UPI00047775E1	osmotically inducible protein C	3.20342739866e-05	0.000143696613898	0.000111662339911
+UniRef50_UPI00035F4F82	hypothetical protein	1.38179068894e-05	2.13437062856e-05	7.5257993962e-06
+UniRef50_V6QDM9		0.00879068711831	0.000649365504839	-0.00814132161347
+UniRef50_UPI000366B462	hypothetical protein	8.96520934309e-06	5.13157979404e-06	-3.83362954905e-06
+UniRef50_UPI0003A50DF1	hypothetical protein	1.78941032845e-05	2.0766777608e-05	2.8726743235e-06
+UniRef50_A7X4V0	ATP synthase subunit c	0.00200926083898	0.00378523004621	0.00177596920723
+UniRef50_A6M004	Signal transduction histidine kinase, nitrogen specific, NtrB	0.00056455066055	0.00112908749909	0.00056453683854
+UniRef50_Q6G4Z3	Ribosomal RNA large subunit methyltransferase E	9.91937485213e-05	4.15778712915e-05	-5.76158772298e-05
+UniRef50_UPI00031D9BC6	hypothetical protein	1.21726134302e-05	5.23901784827e-06	-6.93359558193e-06
+UniRef50_K6GJU3	Pyridoxal phosphate dependent protein	5.22036525674e-06	7.45619049448e-06	2.23582523774e-06
+UniRef50_UPI0004781473	ppGpp synthetase	7.9055593981e-06	6.36800227798e-06	-1.53755712012e-06
+UniRef50_A7MGX5	tRNA  methyltransferase TrmJ	0.00212961214357	0.000294172368815	-0.00183543977476
+UniRef50_Q4JXU5	Aminomethyltransferase	2.61473105294e-05	2.98878317567e-05	3.7405212273e-06
+UniRef50_G3A3C4		2.43165574186e-05	5.52071853911e-05	3.08906279725e-05
+UniRef50_L7WPW4	Cation efflux family protein	0.0220787994494	0.00729898175619	-0.0147798176932
+UniRef50_Q4JXJ2	Cysteine  tRNA ligase	1.46406253943e-05	1.21697869621e-05	-2.4708384322e-06
+UniRef50_C1KWN7	GTPase Der	0.0221045853772	0.0112808239108	-0.0108237614664
+UniRef50_UPI0002003BFB	transcriptional regulator, partial	7.87344330917e-06	1.02617563671e-05	2.38831305793e-06
+UniRef50_A6M2Q1	M18 family aminopeptidase	0.000278330413639	0.00197325854824	0.0016949281346
+UniRef50_UPI00037CE245	hypothetical protein	1.19456994074e-05	2.06099674676e-05	8.6642680602e-06
+UniRef50_Q8CTD2		0.00400791961979	0.000845403015075	-0.00316251660472
+UniRef50_N6UZ26		0.000184609644252	0.000174056997165	-1.0552647087e-05
+UniRef50_Q8CTD8		0.00467178630856	0.00176140084145	-0.00291038546711
+UniRef50_Q213B4	Aspartate racemase	0.00420809284222	0.00254295130469	-0.00166514153753
+UniRef50_S9QQA7	pH adaptation potassium efflux system a	8.62911388131e-06	8.32021938689e-06	-3.0889449442e-07
+UniRef50_L8PMS9	Putative secreted protein	6.8034549289e-07	9.4093242251e-06	8.72897873221e-06
+UniRef50_P0AFQ9		0.00385881354037	0.000873804337357	-0.00298500920301
+UniRef50_UPI000366BC2B	MULTISPECIES	1.19391317174e-05	1.78601929922e-05	5.9210612748e-06
+UniRef50_Q49VL4		0.00958062041709	0.00687547851727	-0.00270514189982
+UniRef50_Q9ZFS6	Exotoxin 3	0.0134071014543	0.00367840610916	-0.00972869534514
+UniRef50_Q49VL2		0.0115447480988	0.00587318414106	-0.00567156395774
+UniRef50_U4W1Q6		1.65509910814e-05	5.0345135915e-05	3.37941448336e-05
+UniRef50_A0A023Y807		4.47259288811e-06	5.34024471886e-06	8.6765183075e-07
+UniRef50_P39380	RNA 2 phosphotransferase	0.00405186331914	0.00047889195437	-0.00357297136477
+UniRef50_F6D690	Metallophosphoesterase	0.00269501196954	0.001183685322	-0.00151132664754
+UniRef50_UPI0002558482	multidrug transporter	5.69408882215e-06	2.10785393429e-05	1.53844505207e-05
+UniRef50_B0VT73		0.000185513842053	0.00318682804429	0.00300131420224
+UniRef50_Q28UP9	Periplasmic sensor signal transduction histidine kinase	0.00228296634791	0.000435691148858	-0.00184727519905
+UniRef50_UPI0003667138	hypothetical protein	5.59750229755e-06	0.000137249322398	0.0001316518201
+UniRef50_C6SR58		0.00229496650516	0.000905494784279	-0.00138947172088
+UniRef50_UPI000369C54D	hypothetical protein	4.45569141727e-05	3.39343449794e-05	-1.06225691933e-05
+UniRef50_UPI00036B1698	hypothetical protein	1.29140086902e-05	0.000553364217023	0.000540450208333
+UniRef50_UPI00046E1459	hypothetical protein	5.28399444941e-05	0.00179693810088	0.00174409815639
+UniRef50_I1ZLT1	Thiamine biosynthesis protein ApbE, putative	0.0049240598846	0.00147292172806	-0.00345113815654
+UniRef50_UPI0003B2E5CE	quinone oxidoreductase	6.72862514147e-06	1.0147057367e-05	3.41843222553e-06
+UniRef50_Q1IC36		3.85170594679e-05	3.0445887783e-05	-8.0711716849e-06
+UniRef50_Q8RE57	Methionine  tRNA ligase	6.85189237575e-06	1.23893578974e-05	5.53746552165e-06
+UniRef50_UPI0003620A0A	hypothetical protein	7.60915619622e-05	0.000165413928944	8.93223669818e-05
+UniRef50_J3K6Q4		6.28763007674e-05	4.67621584372e-05	-1.61141423302e-05
+UniRef50_W8RQ92	Membrane protein	0.000709208969743	0.000106038314257	-0.000603170655486
+UniRef50_V4SQT0		0.000118993701262	0.000401124822048	0.000282131120786
+UniRef50_UPI000367FC54	hypothetical protein	1.65609129421e-05	2.4728863878e-05	8.1679509359e-06
+UniRef50_Q3JR57		8.27798318848e-05	9.56233260128e-05	1.2843494128e-05
+UniRef50_Q6A6J6	UPF0336 protein PPA1896	0.00026583520342	0.0323661355571	0.0321003003537
+UniRef50_UPI0002F2D647	hypothetical protein	0.000234623756597	8.17062694021e-05	-0.000152917487195
+UniRef50_UPI000344933C	ABC transporter permease	4.6646117135e-06	5.44448818935e-05	4.978027018e-05
+UniRef50_P55573		0.000310201548483	0.00524951017719	0.00493930862871
+UniRef50_P77306	Inner membrane protein YqiK	0.00352192733794	0.000678998696655	-0.00284292864129
+UniRef50_UPI0004659A64	hypothetical protein	1.24064365563e-05	6.73323112003e-06	-5.67320543627e-06
+UniRef50_A0R6E0	Trehalose synthase amylase TreS	0.000179009657205	0.0422492777565	0.0420702680993
+UniRef50_Q1IZH7	Protein translocase subunit SecA	4.53164452374e-05	0.0375674284729	0.0375221120277
+UniRef50_P77806	Methionine aminotransferase	0.00129444171825	0.000166052228432	-0.00112838948982
+UniRef50_Q8CSN4		0.0139370888828	0.0040446271353	-0.0098924617475
+UniRef50_R7PW99		0.001769843077	0.000279479531722	-0.00149036354528
+UniRef50_B0SVK0		5.16114447607e-05	8.32823298463e-05	3.16708850856e-05
+UniRef50_UPI00047131A0	hypothetical protein, partial	6.18569422725e-05	4.1457876436e-05	-2.03990658365e-05
+UniRef50_W5ZFT8	Oxidoreductase, putative	0.00400137817428	0.00669233267561	0.00269095450133
+UniRef50_P76352		0.00377418782733	0.000482029585704	-0.00329215824163
+UniRef50_UPI0003B4CE11	glycosyl hydrolase family 20	8.67507024865e-07	1.25162269462e-06	3.84115669755e-07
+UniRef50_P94364	Cytochrome bd ubiquinol oxidase subunit 1	2.25221118163e-05	0.00133169031774	0.00130916820592
+UniRef50_U9N986		0.000155302086056	0.00026525452562	0.000109952439564
+UniRef50_P76359		0.00181112086248	0.00183681561418	2.56947517e-05
+UniRef50_B7MDB8	Cobalamin synthase	0.00359246200571	0.000511495595117	-0.00308096641059
+UniRef50_UPI0003B4027B	MULTISPECIES	1.00508343406e-05	7.08990790867e-05	6.08482447461e-05
+UniRef50_F5ZLB8	Transglycosylase protein	0.00270264968209	0.0053301964375	0.00262754675541
+UniRef50_I1EV25		0.00024063742345	0.00213740376979	0.00189676634634
+UniRef50_Q1RJJ1	NADH quinone oxidoreductase subunit E	0.000295013468356	9.44377105531e-05	-0.000200575757803
+UniRef50_C1DH85	Deoxyribonuclease I	0.00397942135757	0.00245570704289	-0.00152371431468
+UniRef50_UPI0001CBBA36	PREDICTED	1.11577543041e-05	1.81078333964e-05	6.9500790923e-06
+UniRef50_Q9RRB5	Queuine tRNA ribosyltransferase	4.7592026773e-06	0.0605007602104	0.0604960010077
+UniRef50_UPI0003B6BA24	GTPase Era	1.71025038414e-05	9.74575415476e-05	8.03550377062e-05
+UniRef50_V7F7P6		0.000175809706843	1.09324706077e-05	-0.000164877236235
+UniRef50_Q2G5F9	Hemimethylated DNA binding region protein	0.000829121011225	0.00885950115586	0.00803038014464
+UniRef50_Q329H4	Phosphonate metabolism	0.00059910060023	0.000360546006472	-0.000238554593758
+UniRef50_UPI00036463CF	hypothetical protein	7.50889669823e-06	1.6809831922e-05	9.30093522377e-06
+UniRef50_UPI000455DF56	2 isopropylmalate synthase	3.22585223506e-06	1.01056091831e-05	6.87975694804e-06
+UniRef50_D9SMY3	RNA polymerase sigma factor	0.000684801384175	0.000362351785524	-0.000322449598651
+UniRef50_P21865	Sensor protein KdpD	0.00391689714282	0.00121962454941	-0.00269727259341
+UniRef50_Q1GCD6	Flagellar fliL protein	0.00583205487323	0.000988723146173	-0.00484333172706
+UniRef50_Q6MJ09	DNA directed RNA polymerase subunit beta	1.0581793113e-05	6.537319961e-06	-4.044473152e-06
+UniRef50_Q2FH43	4 hydroxy tetrahydrodipicolinate synthase	0.0173611926901	0.00347989036311	-0.013881302327
+UniRef50_D2JBF4	DNA recombination protein RmuC	0.00013992100865	4.57428493162e-05	-9.41781593338e-05
+UniRef50_Q03K16	4 hydroxy tetrahydrodipicolinate synthase	0.00498099101573	0.00478988731751	-0.00019110369822
+UniRef50_UPI000475E634	leucine isoleucine valine transporter ATP binding subunit	1.09976698195e-05	0.000556803813077	0.000545806143257
+UniRef50_X4Z848	Short chain dehydrogenase family protein	0.012742667348	0.00478472358504	-0.00795794376296
+UniRef50_K0NAB4	Dehydrogenase	0.000877630524198	0.00484888309251	0.00397125256831
+UniRef50_Q58927	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	4.57160507878e-05	2.77788469619e-05	-1.79372038259e-05
+UniRef50_Q9RXT3	Phosphoribosylformylglycinamidine synthase 1	1.36728029777e-05	0.0320173365451	0.0320036637421
+UniRef50_UPI000375A953	hypothetical protein	2.20086869924e-05	1.29548291137e-05	-9.0538578787e-06
+UniRef50_P45768	Inner membrane amino acid ABC transporter permease protein YhdY	0.00282955632043	0.0019702558924	-0.00085930042803
+UniRef50_Q9CFC2	CCA adding enzyme	0.00640568999331	0.00351547025219	-0.00289021974112
+UniRef50_D7WL32		0.000538686170741	0.00241897746651	0.00188029129577
+UniRef50_L1KE49		0.000841676254502	0.00114316143946	0.000301485184958
+UniRef50_Q45604		9.92513555255e-05	3.25422896763e-05	-6.67090658492e-05
+UniRef50_M1MVG4	Transcriptional regulator, AraC family	0.000471857486069	0.00131840712176	0.000846549635691
+UniRef50_R1HR76		8.20621714942e-05	0.000179611818045	9.75496465508e-05
+UniRef50_L0LIX3		3.14292843872e-05	4.30251589219e-05	1.15958745347e-05
+UniRef50_UPI00038168DE	hypothetical protein	5.54862983169e-05	3.21001600808e-05	-2.33861382361e-05
+UniRef50_W7SZX8		0.000113301462751	0.000168365443616	5.5063980865e-05
+UniRef50_UPI0003716923	hypothetical protein	2.03033141466e-05	0.00162556007734	0.00160525676319
+UniRef50_F2DTP4	Predicted protein 	0.000293170380287	7.32390847827e-05	-0.000219931295504
+UniRef50_Q0SQN8	Mannose 1 phosphate guanylyltransferase	0.00043672968815	0.000192388733031	-0.000244340955119
+UniRef50_W0II99	C4 dicarboxylate ABC transporter permease	0.0136874572094	0.000353683605065	-0.0133337736043
+UniRef50_UPI00024843D9	LysR family transcriptional regulator	4.89372785742e-06	1.68415470048e-05	1.19478191474e-05
+UniRef50_J7Q3B6		4.84016146315e-06	6.70039663929e-06	1.86023517614e-06
+UniRef50_I0C2L0	FatD	0.0264162995858	0.00786869512614	-0.0185476044597
+UniRef50_UPI0003C17D4A		2.16087322599e-06	6.07646988507e-06	3.91559665908e-06
+UniRef50_UPI0001CB9AD0	PREDICTED	1.44847105293e-05	4.19227742584e-06	-1.02924331035e-05
+UniRef50_W8BRR9		1.61516869121e-05	2.22241800246e-06	-1.39292689096e-05
+UniRef50_P19480	Alkyl hydroperoxide reductase subunit F	0.0350548772664	0.0333419141668	-0.0017129630996
+UniRef50_F0RMK3	Peptidase S54, rhomboid domain protein	0.00022469404098	0.0175415869413	0.0173168929003
+UniRef50_F3U2Q5		0.0130278982207	0.00089754380941	-0.0121303544113
+UniRef50_N6U5R6		0.000990278853131	0.000388597505292	-0.000601681347839
+UniRef50_R7D6K7		0.000133702239266	0.00295374395045	0.00282004171118
+UniRef50_F9EYP6		2.27931254283e-06	4.10102522307e-05	3.87309396879e-05
+UniRef50_X3WVZ6		5.60797452027e-05	0.000134363742738	7.82839975353e-05
+UniRef50_A6LXH6	Na+ H+ antiporter	0.000429714616836	0.00127015885956	0.000840444242724
+UniRef50_Q5HGN0	Carbamoyl phosphate synthase small chain	0.0267902175384	0.0155625482972	-0.0112276692412
+UniRef50_P37454	Exodeoxyribonuclease	0.000160404811127	0.00165249028366	0.00149208547253
+UniRef50_A0A059LAI1		2.0835918992e-05	0.000103930779142	8.309486015e-05
+UniRef50_C3K6C6		0.000251744598828	0.000124156860881	-0.000127587737947
+UniRef50_H2DK93	Truncated internaline	3.67562850117e-05	1.5743253783e-05	-2.10130312287e-05
+UniRef50_A8I3Y9	NADH quinone oxidoreductase subunit C	2.4436044395e-05	9.21263150744e-05	6.76902706794e-05
+UniRef50_Q7UNC2	Imidazoleglycerol phosphate dehydratase	0.00515072657715	0.00147806793631	-0.00367265864084
+UniRef50_Q54HJ6		2.3522367206e-06	3.78920563213e-07	-1.97331615739e-06
+UniRef50_A6LUV0	2 dehydropantoate 2 reductase	0.000124173022652	0.00111610607976	0.000991933057108
+UniRef50_Q9RSM5		0.000263362317798	0.0361775510149	0.0359141886971
+UniRef50_E8SFA5	Glycerophosphoryl diester phosphodiesterase	0.0204621605844	0.00612862085794	-0.0143335397265
+UniRef50_B2ICY0	N acylglucosamine 2 epimerase	0.00289528374842	0.000200668202859	-0.00269461554556
+UniRef50_B1LZZ2	Electron transfer flavoprotein alpha subunit	4.99928052058e-05	4.22085162053e-05	-7.7842890005e-06
+UniRef50_I4SI86	Phenylacetate CoA ligase	0.00281670546175	0.0004124715484	-0.00240423391335
+UniRef50_Q57JH6		0.00042426137469	0.000161649871325	-0.000262611503365
+UniRef50_Q9L6Q3	Uroporphyrinogen III synthase	0.00179866140932	0.00186452732822	6.58659189e-05
+UniRef50_C8N6S7	Periplasmic binding protein	2.56273899946e-05	4.48586588393e-05	1.92312688447e-05
+UniRef50_UPI00035FDB03	hypothetical protein	2.75762575879e-05	4.71167135119e-05	1.9540455924e-05
+UniRef50_UPI000262CF7A	proline iminopeptidase	5.95466499945e-06	1.06806379229e-05	4.72597292345e-06
+UniRef50_Q9RXD5	Outer membrane protein	4.51178472729e-05	0.0321202726649	0.0320751548176
+UniRef50_K1YE78		0.000354233414624	0.000554251272714	0.00020001785809
+UniRef50_S5YEK4	Transcriptional regulator, GntR family	0.00325086715779	0.000237202172853	-0.00301366498494
+UniRef50_Q4L460	Teichoic acid translocation permease protein	0.0918666683286	0.0371758073129	-0.0546908610157
+UniRef50_I7DPX0		5.98979718292e-05	0.000185349951005	0.000125451979176
+UniRef50_P52135		0.00605852267453	0.00427219732618	-0.00178632534835
+UniRef50_Q3IV29	Two component transcriptional regulator, LuxR family	0.0177157167515	0.00154566708624	-0.0161700496653
+UniRef50_P52131		0.00626593510651	0.000977705100014	-0.0052882300065
+UniRef50_D3DZN3	Heavy metal translocating P type ATPase	0.00438136307585	0.00237724597806	-0.00200411709779
+UniRef50_P52133		0.00284936732982	0.00026057356341	-0.00258879376641
+UniRef50_A0A023S217		0.000156201098833	0.00293825853796	0.00278205743913
+UniRef50_P52139		0.00161589807204	0.000147317340239	-0.0014685807318
+UniRef50_P52138		0.00198838666401	0.00120311256979	-0.00078527409422
+UniRef50_J7RFM5	Tpr protein	6.78656391744e-05	5.63066444877e-05	-1.15589946867e-05
+UniRef50_B3PWI5	Imidazoleglycerol phosphate dehydratase	0.000253082601495	4.61524086922e-05	-0.000206930192803
+UniRef50_W8ZDB9		1.99166633945e-05	6.93794274937e-05	4.94627640992e-05
+UniRef50_B7N578	Protein Ves	0.00133788147562	0.00297669744834	0.00163881597272
+UniRef50_UPI00047CFF00	hypothetical protein	1.10880818888e-05	5.73400275999e-05	4.62519457111e-05
+UniRef50_UPI00046CDEFF	transposase	5.55776770298e-05	2.05808732025e-05	-3.49968038273e-05
+UniRef50_Q8CRI9	50S ribosomal protein L13	0.00766988732486	0.00161057477153	-0.00605931255333
+UniRef50_A6LYQ3		0.000134496195558	0.000660017440637	0.000525521245079
+UniRef50_UPI0002EBAF2D	hypothetical protein	6.94285922604e-05	4.36910058409e-05	-2.57375864195e-05
+UniRef50_UPI0003750B35	hypothetical protein	7.88304917776e-05	1.7995378632e-05	-6.08351131456e-05
+UniRef50_A1B1I9		0.0098995977242	0.00210880302798	-0.00779079469622
+UniRef50_UPI00047BF436	histidine ammonia lyase, partial	1.26904510803e-05	4.06190243854e-05	2.79285733051e-05
+UniRef50_P96589		0.0197932069637	0.00713943178039	-0.0126537751833
+UniRef50_P85097	Respiratory nitrate reductase alpha chain 	4.66672593325e-06	2.13421901947e-05	1.66754642614e-05
+UniRef50_J2K6A4	6 pyruvoyl tetrahydropterin synthase	8.90646920701e-05	0.00138182310047	0.0012927584084
+UniRef50_A0ZZF7	L asparaginase I	0.000202586398316	0.0093522834691	0.00914969707078
+UniRef50_X7Z663	PE PGRS family protein	1.41512795825e-05	0.000114150879588	9.99996000055e-05
+UniRef50_V8H036		0.000214625581086	0.000107716315346	-0.00010690926574
+UniRef50_C1CXX6	Non canonical purine NTP pyrophosphatase	1.01899098614e-05	0.00571844618173	0.00570825627187
+UniRef50_UPI0004776B86	hypothetical protein	5.00717425768e-06	7.18214312445e-06	2.17496886677e-06
+UniRef50_A6LU83	1 acyl sn glycerol 3 phosphate acyltransferase	0.000332587491469	0.00132277403927	0.000990186547801
+UniRef50_V5SGX2	C4 dicarboxylate ABC transporter	7.29056136163e-06	1.81117323743e-05	1.08211710127e-05
+UniRef50_Q8CTD3		0.00560786381026	0.000515087276506	-0.00509277653375
+UniRef50_Q8CP66	Heptaprenyl diphosphate syntase component II	0.0193791028179	0.00653627216723	-0.0128428306507
+UniRef50_UPI00046D37AA	N succinylarginine dihydrolase	9.07071271714e-06	2.99347464476e-05	2.08640337305e-05
+UniRef50_Q2RM79	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.54680738702e-05	1.42873521305e-05	-1.1807217397e-06
+UniRef50_UPI000367B671	hypothetical protein	1.44487475485e-05	0.000100471185261	8.60224377125e-05
+UniRef50_L0A0T1	Putative phosphatase, C terminal domain of histone macro H2A1 like protein	1.92429788947e-05	0.000445745887049	0.000426502908154
+UniRef50_Q6ABS5	Formate  tetrahydrofolate ligase	0.000588718773702	0.00551418981851	0.00492547104481
+UniRef50_UPI0003C1A241	PREDICTED	0.000521399776348	2.13602096581e-05	-0.00050003956669
+UniRef50_A9KJR8	Urease accessory protein UreE	0.00474796526595	0.0006396751737	-0.00410829009225
+UniRef50_P25605	Acetolactate synthase small subunit, mitochondrial	2.56525616588e-05	0.000166008437689	0.00014035587603
+UniRef50_UPI00036577C7	hypothetical protein	1.87237543234e-05	2.77323367249e-06	-1.59505206509e-05
+UniRef50_A6LSZ9		0.000424666948962	0.00147381176374	0.00104914481478
+UniRef50_A3W226		0.000491028485652	4.77973634881e-05	-0.000443231122164
+UniRef50_A6LSZ0		0.000415325951833	0.0010683790577	0.000653053105867
+UniRef50_A3W220		2.88169891019e-05	2.20689788937e-05	-6.7480102082e-06
+UniRef50_E6DRN3		0.000955354509541	0.00188365842032	0.000928303910779
+UniRef50_P80876	General stress protein 18	0.00843385255331	0.00582767273259	-0.00260617982072
+UniRef50_O32135	UPF0759 protein YunF	9.69853833149e-06	3.70558142974e-05	2.73572759659e-05
+UniRef50_UPI00046D55BC	nitrate transporter	2.74516516297e-06	6.95817197617e-06	4.2130068132e-06
+UniRef50_J2MVR4		2.58420658952e-05	0.000131773563795	0.0001059314979
+UniRef50_UPI00016C4574	Catalase, partial	0.00031571789138	0.000919420520224	0.000603702628844
+UniRef50_UPI0003682E3B	hypothetical protein	0.000185767870711	0.000109744822948	-7.6023047763e-05
+UniRef50_P06846	HTH type transcriptional regulator EbgR	0.00223657892649	0.000180437905414	-0.00205614102108
+UniRef50_Q8G7I0	Ribonuclease PH	1.99258830518e-05	0.00256106051173	0.00254113462868
+UniRef50_UPI0003767C06	hypothetical protein	0.000142841372682	2.73555479348e-05	-0.000115485824747
+UniRef50_L1NJN4		0.00018294959072	0.000657849952057	0.000474900361337
+UniRef50_F0MTL8	Carbonate dehydratase	0.00119776378691	0.00188897774361	0.0006912139567
+UniRef50_UPI000376F581	hypothetical protein	9.03808218655e-06	1.35204046595e-05	4.48232247295e-06
+UniRef50_P36556	Transcriptional regulatory protein BasR	0.00614644468857	0.00238502708738	-0.00376141760119
+UniRef50_UPI0004650D3F	iron ABC transporter permease	1.1018809469e-05	1.62341271668e-05	5.2153176978e-06
+UniRef50_W4U8H5	TsaD Kae1 Qri7 protein	1.46809502519e-05	0.00010259391807	8.79129678181e-05
+UniRef50_UPI0003D768D4	PREDICTED	1.51984202496e-05	3.36542016879e-05	1.84557814383e-05
+UniRef50_D3QH01	Branched chain amino acid permease	5.18266232913e-05	2.09592878172e-05	-3.08673354741e-05
+UniRef50_A9M387	Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.000112907075432	0.00258204649305	0.00246913941762
+UniRef50_UPI00037FC5AF	hypothetical protein	9.14370214715e-06	6.88288721336e-05	5.96851699865e-05
+UniRef50_P29013		0.00273296266096	0.00158468312409	-0.00114827953687
+UniRef50_Q1GJ00	Aminodeoxychorismate synthase, subunit I	0.00168245053275	0.00033322120471	-0.00134922932804
+UniRef50_Q83Q93	Biosynthetic arginine decarboxylase	0.00382047035778	0.00547223014453	0.00165175978675
+UniRef50_UPI00038015E1	hypothetical protein	1.48147866146e-05	3.31670635407e-05	1.83522769261e-05
+UniRef50_Q4L4Q7	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0151724224858	0.00170586946154	-0.0134665530243
+UniRef50_Q1GI12	Sarcosine oxidase alpha subunit family	0.00433596334087	0.00138701226791	-0.00294895107296
+UniRef50_UPI0003B6C2BF	inosine uridine preferring nucleoside hydrolase	5.80032462471e-06	2.46730154963e-05	1.88726908716e-05
+UniRef50_A6VCM9	Oxidoreductase, FAD binding	0.000459669958711	0.000408651797653	-5.1018161058e-05
+UniRef50_UPI0003B30607	transcriptional regulator	1.31855150121e-05	4.02375460841e-05	2.7052031072e-05
+UniRef50_B9KPI4		0.00517023883235	0.00110332198569	-0.00406691684666
+UniRef50_P52616	Phase 2 flagellin	0.00347365908733	0.00117890532258	-0.00229475376475
+UniRef50_J9P338		0.000141384974083	0.000352859771623	0.00021147479754
+UniRef50_Q2P0J5	Thiazole synthase	0.0017478248921	0.00572216112251	0.00397433623041
+UniRef50_F8JVM5	LigA	0.000332142357587	0.000124313146858	-0.000207829210729
+UniRef50_P65769	Polyphosphate kinase	9.91740508531e-06	0.000528332132287	0.000518414727202
+UniRef50_B2TS76	Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.000405478513173	0.00179132797507	0.0013858494619
+UniRef50_R6KLR0	Polysaccharide deacetylase	0.000158607558343	0.00246832381868	0.00230971626034
+UniRef50_M9VL85		0.00111479896583	0.00994431647601	0.00882951751018
+UniRef50_M2BGU5		0.000401580839207	0.00459991145523	0.00419833061602
+UniRef50_UPI0004726713	2 hydroxychromene 2 carboxylate isomerase	8.11696062435e-05	6.43211708804e-05	-1.68484353631e-05
+UniRef50_B4SQ60	DoxX family protein	8.86079142093e-05	3.49859424817e-05	-5.36219717276e-05
+UniRef50_Q0I3Q6	Glutamyl tRNA reductase	3.51516019594e-06	6.62623191235e-06	3.11107171641e-06
+UniRef50_A0A023NRD3		0.0112226755099	0.00134148928712	-0.00988118622278
+UniRef50_B6I2P2	Phosphoglycerol transferase I	0.00293177228019	0.000589520087834	-0.00234225219236
+UniRef50_Q9KCT8	NADPH dehydrogenase	1.02148070517e-05	8.51113263554e-06	-1.70367441616e-06
+UniRef50_A1T1H6		1.14774714567e-05	3.40976421885e-05	2.26201707318e-05
+UniRef50_R7UXT3		1.90887934969e-05	4.50735666292e-05	2.59847731323e-05
+UniRef50_A6LZQ9		0.000262143047812	0.000410162090547	0.000148019042735
+UniRef50_UPI000370658C	hypothetical protein	5.52473277956e-06	6.58412176425e-06	1.05938898469e-06
+UniRef50_A6LZQ3		0.000174762031871	0.000362917224226	0.000188155192355
+UniRef50_UPI00037BAE23	mutator mutT protein, partial	8.48405241532e-05	8.24014448672e-06	-7.66003796665e-05
+UniRef50_Q1JUQ1	L arabonate dehydratase	0.000160209109763	0.0118967778257	0.0117365687159
+UniRef50_E9KNS2	Crp family transcriptional regulator	0.00820414834355	0.00428170386247	-0.00392244448108
+UniRef50_UPI000384168E	PREDICTED	6.39356631133e-05	2.36831143021e-05	-4.02525488112e-05
+UniRef50_L7WTA8	LysM domain containing protein	0.0122281866817	0.00651630362905	-0.00571188305265
+UniRef50_Q6LUK6	Carbamoyl phosphate synthase small chain	2.26725165598e-05	7.51544078281e-06	-1.5157075777e-05
+UniRef50_Q8CNU4	Proline dehydrohenase like protein	0.0111986869792	0.00426772827281	-0.00693095870639
+UniRef50_A4WXA3		0.0129108795898	0.0034183021443	-0.0094925774455
+UniRef50_UPI0004418811	PREDICTED	3.77837194267e-06	0.000285237867215	0.000281459495272
+UniRef50_U2JRM5		0.000995598241079	7.44449176773e-05	-0.000921153323402
+UniRef50_Q9KNM9	K H(+) antiporter NhaP2	0.00282865702426	0.000826995252695	-0.00200166177156
+UniRef50_Q9KX08	Putative ribosome biogenesis GTPase RsgA	0.0160066737988	0.00310100882932	-0.0129056649695
+UniRef50_Q18A91	DNA polymerase IV	3.79355087699e-06	8.25998046682e-06	4.46642958983e-06
+UniRef50_B3W6P3	Divalent metal cation transporter MntH	0.00562368593445	0.00570844622845	8.4760294e-05
+UniRef50_D4HBR1	Mannose 6 phosphate isomerase, class I	0.000693339835125	0.00579753449531	0.00510419466018
+UniRef50_M1XIG8	SCCmec staphylococcal cassette region, isolate CMFT535	0.0133596767733	0.00136000526311	-0.0119996715102
+UniRef50_R6CBZ9		0.000376867282714	0.000311954266055	-6.4913016659e-05
+UniRef50_P17815	Malate synthase, glyoxysomal	1.39143681189e-05	0.0656070587306	0.0655931443625
+UniRef50_P23105	2 hydroxymuconic semialdehyde dehydrogenase	1.2812223153e-05	4.92800349914e-05	3.64678118384e-05
+UniRef50_B5EXV0	Uridine kinase	0.00481223996375	0.00265467130732	-0.00215756865643
+UniRef50_Q4K681	Spermidine putrescine import ATP binding protein PotA	0.000414588012089	0.000234914576457	-0.000179673435632
+UniRef50_W0BHE5	ABC type transport system involved in Fe S cluster assembly, ATPase component	1.48932592701e-05	0.000177125595354	0.000162232336084
+UniRef50_B7GXR8		0.000213671314441	0.0042112727081	0.00399760139366
+UniRef50_E0TNV6	Gp34	0.000535919048192	0.000141979185193	-0.000393939862999
+UniRef50_M7RDL9		5.8186488478e-05	0.0001334564237	7.5269935222e-05
+UniRef50_Q1IVV5	tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	6.88424295821e-05	0.0385699683013	0.0385011258717
+UniRef50_O27661	DNA topoisomerase 1	0.0033327700218	0.00170153386149	-0.00163123616031
+UniRef50_Q37371	NADH ubiquinone oxidoreductase chain 6	6.90015632437e-05	8.51423307113e-06	-6.04873301726e-05
+UniRef50_B7I2D1	Glycerophosphoryl diester phosphodiesterase	0.000107037614984	0.00718031715919	0.00707327954421
+UniRef50_D8U6B8		4.16014276365e-06	1.2944692356e-05	8.78454959235e-06
+UniRef50_A0A022GZQ6	LacI family transcriptional regulator	8.95451841103e-05	2.74789644893e-05	-6.2066219621e-05
+UniRef50_UPI000471138D	hypothetical protein	0.000192006834979	0.000165278410825	-2.6728424154e-05
+UniRef50_M4ZMN9	Gas vesicle structural protein	0.00110779387647	0.0161081839197	0.0150003900432
+UniRef50_Q11DH5	Holliday junction ATP dependent DNA helicase RuvA	2.25708882418e-05	1.01306997688e-05	-1.2440188473e-05
+UniRef50_F5ZH83	Phosphohydrolase	0.00722792978235	0.0075412615888	0.00031333180645
+UniRef50_O66976	Histidinol dehydrogenase	0.000191101505964	0.00233133236627	0.00214023086031
+UniRef50_A7GJ81	DNA directed RNA polymerase subunit beta	0.000354598993163	0.00116690458447	0.000812305591307
+UniRef50_R7HT16		0.000923180881063	0.00144218740724	0.000519006526177
+UniRef50_A0A024H9M2	HTH type transcriptional regulator HexR	0.000849730540512	0.000402476048286	-0.000447254492226
+UniRef50_UPI00036B500B	hypothetical protein, partial	0.000111461199474	3.46523069927e-05	-7.68088924813e-05
+UniRef50_F6D5Z8	ABC type transporter, periplasmic subunit	0.00276253793539	0.000509021827504	-0.00225351610789
+UniRef50_Q6FEG1	Kinase sensor component of a two component signal transduction system	0.000331084856469	0.00762263271973	0.00729154786326
+UniRef50_Q7MN25	Methionine import ATP binding protein MetN	1.7418074601e-05	9.50659814573e-06	-7.91147645527e-06
+UniRef50_UPI00047C1764	hydrogenase maturation protease	8.59907463197e-05	0.000252634990795	0.000166644244475
+UniRef50_E1PW93	Transposase B	0.000102670713198	0.0181127847642	0.018010114051
+UniRef50_F0RJQ2	3 mercaptopyruvate sulfurtransferase	0.000144815596745	0.000456911748174	0.000312096151429
+UniRef50_P00887	Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive	0.00125492103727	0.00101086734115	-0.00024405369612
+UniRef50_G7ZT27		0.00657414280083	0.0108490850961	0.00427494229527
+UniRef50_Q9M315	3 methyl 2 oxobutanoate hydroxymethyltransferase 2, mitochondrial	2.51906096655e-05	1.45998657535e-05	-1.0590743912e-05
+UniRef50_Q46106	Ferritin	9.78757152452e-05	0.0017626841933	0.00166480847805
+UniRef50_P10996	Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.000292838285346	0.00111331700517	0.000820478719824
+UniRef50_X5DZU0	NAD dependent epimerase dehydratase family protein	0.0135841464478	0.00275185034063	-0.0108322961072
+UniRef50_G7V8Z9		0.0129126186976	0.00943264208836	-0.00347997660924
+UniRef50_B2TN34		0.000317136869388	0.00112562002417	0.000808483154782
+UniRef50_Q4L6M0	DNA repair protein RecN	0.0175914822821	0.0072221969977	-0.0103692852844
+UniRef50_I6Y1G9	Putative membrane protein	1.51273736531e-05	0.000120716798603	0.00010558942495
+UniRef50_Q7VK73	UvrABC system protein C	7.33457232246e-05	0.00323513663939	0.00316179091617
+UniRef50_E2QNB6	Cystine transporter subunit	0.00152716231474	0.000293290139211	-0.00123387217553
+UniRef50_Q5WEL9	Glutamate racemase	0.00724095123122	0.00230557859273	-0.00493537263849
+UniRef50_C2X6L3	Alpha glucosidase	0.000153889795835	0.00238744855777	0.00223355876193
+UniRef50_UPI0002D7F533	succinyl CoA synthetase subunit alpha	2.47174097259e-05	4.80255943907e-05	2.33081846648e-05
+UniRef50_D2PWU8	ResB family protein	0.000190523329085	0.00534754501453	0.00515702168544
+UniRef50_X2MBD9	PTS mannitol transporter subunit IIBC	2.32234677225e-05	5.30091646653e-05	2.97856969428e-05
+UniRef50_P37646	Cyclic di GMP phosphodiesterase YhjH	0.00390400950836	0.00298051383061	-0.00092349567775
+UniRef50_Q8ZCA7	Copper exporting P type ATPase A	7.58973237456e-06	2.12246169774e-05	1.36348846028e-05
+UniRef50_P23378	Glycine dehydrogenase , mitochondrial	0.000368651209684	0.00350154872658	0.0031328975169
+UniRef50_Q3IUX7	Acyltransferase 3 family	0.00859084275982	0.00247993089834	-0.00611091186148
+UniRef50_A3PFZ9	DNA translocase FtsK	0.00448200008599	0.000633924089602	-0.00384807599639
+UniRef50_Q5HNA3	Signal transduction protein TRAP	0.00704223430034	0.00567898452593	-0.00136324977441
+UniRef50_P25527	GABA permease	0.00359210397676	0.00189679345445	-0.00169531052231
+UniRef50_UPI0003C7ED51	hypothetical protein	0.00013576584553	0.00254517422546	0.00240940837993
+UniRef50_UPI000289BAFB	deoxyguanosinetriphosphate triphosphohydrolase	7.56074420363e-05	9.33353704351e-05	1.77279283988e-05
+UniRef50_M1MT32	Two component transcriptional regulator, AraC family	0.000370221366583	0.00119519449111	0.000824973124527
+UniRef50_K6GMQ5		0.000549455248371	0.000279515271677	-0.000269939976694
+UniRef50_UPI00032893EC		4.0790492991e-05	0.000293933399063	0.000253142906072
+UniRef50_W4JVY5		0.000196396323594	0.000321759177124	0.00012536285353
+UniRef50_F1UED2		0.000152622367462	0.00856112650074	0.00840850413328
+UniRef50_UPI000299DF64	tRNA 2 selenouridine synthase	1.22727410263e-05	9.82810556222e-06	-2.44463546408e-06
+UniRef50_A5UP39		0.00325280687339	0.000157782745423	-0.00309502412797
+UniRef50_E0UH66	Amine oxidase	1.17218339161e-05	5.62502700467e-06	-6.09680691143e-06
+UniRef50_A5UP37		0.000310262456591	0.000600644146164	0.000290381689573
+UniRef50_A5UP34		0.00193596381494	0.000580950895467	-0.00135501291947
+UniRef50_A1B0E4	Membrane protein insertase YidC	0.00725385144355	0.0021378463581	-0.00511600508545
+UniRef50_A9HRV7	Trigger factor	6.77679702012e-05	2.35810042456e-05	-4.41869659556e-05
+UniRef50_P39149	Uracil phosphoribosyltransferase	5.54699389765e-05	0.00384097674364	0.00378550680466
+UniRef50_UPI00047EB418	amino acid ABC transporter permease	5.48649509851e-06	3.06939847882e-05	2.52074896897e-05
+UniRef50_D3E0M0	Calcineurin like phosphoesterase	0.00234522392032	0.000739604659451	-0.00160561926087
+UniRef50_S1FKD9		0.000288063929283	0.000616850746259	0.000328786816976
+UniRef50_A5UJ82	3 dehydroquinate synthase	0.00324360433651	0.000442885821655	-0.00280071851485
+UniRef50_B7LJH6		4.00815766368e-05	4.90701128327e-05	8.9885361959e-06
+UniRef50_F9Y4V0		6.53863805325e-05	3.80381106198e-05	-2.73482699127e-05
+UniRef50_I7JVN9		2.2242637305e-05	8.36343804463e-05	6.13917431413e-05
+UniRef50_A8I6P0	Predicted protein	3.64132072445e-06	2.86750750026e-06	-7.7381322419e-07
+UniRef50_Q890U2	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000177436903749	0.000350804061526	0.000173367157777
+UniRef50_Q0D831	Os07g0187900 protein 	0.000172067918298	0.000399034535673	0.000226966617375
+UniRef50_A1B1L1		0.00516213074887	0.00168645087742	-0.00347567987145
+UniRef50_C6CW74	Sulfate ABC transporter, ATPase subunit	0.000184740288181	0.00096579111761	0.000781050829429
+UniRef50_F7KI55	Excinuclease ABC subunit A	8.61720574606e-06	6.03327691101e-05	5.1715563364e-05
+UniRef50_G0ICQ4	Transposase like protein, IS1381 ISSpn7	5.00565686819e-05	8.56113752942e-05	3.55548066123e-05
+UniRef50_K0HZ43	Transporter, major facilitator family protein	0.000190836185841	0.0075868043089	0.00739596812306
+UniRef50_Q7A441	Molybdopterin synthase sulfur carrier subunit	9.62329973805e-05	0.0081433898321	0.00804715683472
+UniRef50_A1U404	Type II secretion system protein E	0.000526333702828	0.000660285866956	0.000133952164128
+UniRef50_B2UX09		0.000233016042498	0.00204275857248	0.00180974252998
+UniRef50_A6VAG5	Haloacid dehalogenase, type II	0.000161548925324	0.000403621920536	0.000242072995212
+UniRef50_UPI0003735394	hypothetical protein	1.09421026098e-05	1.71205596291e-05	6.1784570193e-06
+UniRef50_Q9KSC2	Methylisocitrate lyase	0.0031894638228	0.0127252157453	0.0095357519225
+UniRef50_Q06172	Flagellar basal body rod protein FlgG	0.00726670960472	0.00171086309173	-0.00555584651299
+UniRef50_A9C1V3		1.01312670431e-05	3.06718235967e-05	2.05405565536e-05
+UniRef50_X5IXK7	IS431mec, transposase	3.24643977845e-05	3.97666395352e-05	7.3022417507e-06
+UniRef50_UPI000225B431	dTDP glucose 4,6 dehydratase	5.910974035e-06	8.17960333362e-06	2.26862929862e-06
+UniRef50_P0ACS8	HTH type transcriptional regulator RpiR	0.0034413698919	0.000809449387504	-0.0026319205044
+UniRef50_W5X9M8	Type I phosphodiesterase nucleotide pyrophosphatase	1.26652104041e-05	0.000106135991692	9.34707812879e-05
+UniRef50_W9H4Y7	ABC transporter permease	2.72008265724e-06	4.35452320697e-06	1.63444054973e-06
+UniRef50_Q7V3R5	Phosphoribosylformylglycinamidine synthase 2	6.95673629689e-06	2.58160813765e-06	-4.37512815924e-06
+UniRef50_P45743	Isochorismatase	2.27169953979e-05	3.91111870967e-05	1.63941916988e-05
+UniRef50_UPI00036B0594	hypothetical protein	2.56793189679e-05	2.99345808814e-05	4.2552619135e-06
+UniRef50_UPI000478FCEB	alkyl hydroperoxide reductase	1.51010878429e-05	0.000729572356491	0.000714471268648
+UniRef50_UPI00037BF563	hypothetical protein	0.000241287367666	5.07249500475e-05	-0.000190562417618
+UniRef50_UPI0002D56393	hypothetical protein	2.16036598222e-05	7.5871107522e-05	5.42674476998e-05
+UniRef50_C9M6I7		5.83225699386e-05	3.76409876268e-05	-2.06815823118e-05
+UniRef50_UPI0003822EF9	hypothetical protein	2.06208242519e-05	9.25352878274e-05	7.19144635755e-05
+UniRef50_Q9JV11	UPF0307 protein NMA1049	0.000247802618498	0.000353672700827	0.000105870082329
+UniRef50_Q5FPZ9	Holo [acyl carrier protein] synthase	2.04172189206e-05	4.28458375686e-05	2.2428618648e-05
+UniRef50_P27303	Multidrug export protein EmrA	0.00389260861418	0.000960432850044	-0.00293217576414
+UniRef50_P14532	Cytochrome c551 peroxidase	0.00030970212708	0.000172196329551	-0.000137505797529
+UniRef50_A0A016QQV6		2.87280869728e-05	0.000408089066644	0.000379360979671
+UniRef50_D4H9H0		0.000294230502286	0.00260978332472	0.00231555282243
+UniRef50_D0K339		0.000158013571195	4.58857290075e-05	-0.000112127842188
+UniRef50_UPI00037E8439	iron transporter FeoB	7.66538554955e-06	9.46109048526e-06	1.79570493571e-06
+UniRef50_K0LZX2		0.0152168515458	0.00221487528896	-0.0130019762568
+UniRef50_UPI0001CC3EEF	hypothetical protein	5.37969314622e-06	1.17278568293e-05	6.34816368308e-06
+UniRef50_Q4L4W4	Na+ H+ antiporter, MnhD subunit	0.0171138321528	0.00418039142987	-0.0129334407229
+UniRef50_UPI00037D2BB8	hypothetical protein	3.8027169578e-06	1.47447747489e-05	1.09420577911e-05
+UniRef50_A3PS55		0.0234428653813	0.00253304662746	-0.0209098187538
+UniRef50_K6YKE1		8.64205710921e-05	4.3202245342e-05	-4.32183257501e-05
+UniRef50_P0A2J0	Histidine transport system permease protein HisQ	0.00615811942655	0.000790280777913	-0.00536783864864
+UniRef50_Q8X6V3		0.00274385337905	0.00013842970556	-0.00260542367349
+UniRef50_J9P815		2.07291676946e-05	7.50827592702e-06	-1.32208917676e-05
+UniRef50_Q9ZKV9	IS606 TRANSPOSASE	0.000175329979574	0.00339728423799	0.00322195425842
+UniRef50_W4UM07	TsaD Kae1 Qri7 protein	1.46809502519e-05	0.000117506156474	0.000102825206222
+UniRef50_W4TJV2	Transcription termination protein NusB	0.000636212340763	0.00101251441781	0.000376302077047
+UniRef50_G7M0Z9	Type II secretion system F domain containing protein	0.000102857217666	0.000479183477566	0.0003763262599
+UniRef50_Q6YWZ7		0.00011708624299	1.1097513351e-05	-0.000105988729639
+UniRef50_A5UNC4	Predicted coenzyme PQQ synthesis protein	0.0037799615595	0.00274871176414	-0.00103124979536
+UniRef50_UPI00036D5C8E	hypothetical protein	3.57566335505e-05	3.9744882142e-05	3.9882485915e-06
+UniRef50_M1MYX8	Methyl accepting chemotaxis protein	0.000379124979432	0.00413025994186	0.00375113496243
+UniRef50_UPI000360D29B	hypothetical protein	5.86441218768e-06	4.93857835919e-05	4.35213714042e-05
+UniRef50_B9KUN2	Oxidoreductase domain protein	0.0053418468593	0.00288618486724	-0.00245566199206
+UniRef50_Q51700	Nitrite reductase	0.000982429626756	0.000739220709474	-0.000243208917282
+UniRef50_R6AHC9		8.42472741453e-06	0.000223911196739	0.000215486469324
+UniRef50_J9NWS4		2.60340323218e-05	7.28447638374e-05	4.68107315156e-05
+UniRef50_UPI000373A5D7	hypothetical protein	4.48555982627e-06	0.000306265621011	0.000301780061185
+UniRef50_K4YWM5		4.41601516807e-05	0.000116105547305	7.19453956243e-05
+UniRef50_P76090	Inner membrane protein YnbA	0.00119147640467	0.000966677545342	-0.000224798859328
+UniRef50_Q6FEM6	Dual specificity RNA methyltransferase RlmN	0.00117003443421	0.00609768359198	0.00492764915777
+UniRef50_F0HFQ0		1.73959396342e-05	1.91182023772e-05	1.722262743e-06
+UniRef50_I2DWY9	MotA TolQ ExbB proton channel family protein	0.000287756739867	0.000498632401153	0.000210875661286
+UniRef50_P0ADB2	Osmotically inducible lipoprotein E	0.000449388081972	0.00191676530768	0.00146737722571
+UniRef50_F3U4S4	Blue light receptor BLUF domain containing protein	0.00527954765308	0.00050770780263	-0.00477183985045
+UniRef50_UPI0003FEC0C1	hypothetical protein	3.18312182146e-06	8.24968335214e-06	5.06656153068e-06
+UniRef50_UPI0003656647	hypothetical protein	0.000270582155676	0.000114409524502	-0.000156172631174
+UniRef50_Q9RSV9		0.000127672825993	0.0194578190858	0.0193301462598
+UniRef50_UPI0003B6AB5A	ABC transporter permease	1.55436298576e-05	0.000186338019594	0.000170794389736
+UniRef50_UPI0004120031	glycerol 3 phosphate ABC transporter substrate binding protein	2.58580869479e-05	9.84088138813e-06	-1.60172055598e-05
+UniRef50_UPI0003713513	hypothetical protein	0.000134469093019	1.84741208071e-05	-0.000115994972212
+UniRef50_Q45592	Probable peptide export permease protein YydJ	0.0107566520619	0.00226054613848	-0.00849610592342
+UniRef50_E8SHI1	Predicted oxidoreductase	0.00849377236132	0.000395788692335	-0.00809798366899
+UniRef50_Q1IUD5	Potassium transporting ATPase A chain	3.49290054553e-06	0.00184081997239	0.00183732707184
+UniRef50_S3DA11	FAD NAD binding protein	3.22068775111e-06	0.000766965658036	0.000763744970285
+UniRef50_M2EZJ0		0.00279912750829	0.000303927998483	-0.00249519950981
+UniRef50_B3PS08	Bacterioferritin	0.00815992141695	0.0007130383224	-0.00744688309455
+UniRef50_UPI0003598731	PREDICTED	8.41918166822e-05	7.15202028187e-05	-1.26716138635e-05
+UniRef50_UPI0002626701	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.58362261254e-05	1.88770077385e-05	3.0407816131e-06
+UniRef50_Q8CNC7	Urease accessory protein UreF	0.008283002803	0.00673125712415	-0.00155174567885
+UniRef50_Q9RSI9	Phosphopentomutase	1.2584233918e-05	0.0235201359659	0.023507551732
+UniRef50_Q5HKJ8	Glycerol dehydrogenase	0.0122438563176	0.0057312047889	-0.0065126515287
+UniRef50_Q11190	Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	0.000795720613581	0.000266870491225	-0.000528850122356
+UniRef50_B0CG85		1.59704254521e-05	1.64620885281e-05	4.91663076e-07
+UniRef50_G8VFK8	Biotin carboxylase	0.000346986305232	0.00610201571927	0.00575502941404
+UniRef50_Q6GER8	Mannitol 1 phosphate 5 dehydrogenase	0.0107364848067	0.00218374082753	-0.00855274397917
+UniRef50_C5N1D9		0.000935915674838	0.00172029148658	0.000784375811742
+UniRef50_C6B577	Peptidase S8 and S53, subtilisin, kexin, sedolisin	0.00273207134254	0.000572852811789	-0.00215921853075
+UniRef50_A1B2H5	Flagellin domain protein	0.00471763552964	0.0016595672718	-0.00305806825784
+UniRef50_Q6FF20	Polyphosphate AMP phosphotransferase	8.00323651255e-05	0.00627597523877	0.00619594287364
+UniRef50_Q5HPK8	Catalase	0.0097405230881	0.00160855096368	-0.00813197212442
+UniRef50_D3QEW8		0.013834812556	0.00334070707763	-0.0104941054784
+UniRef50_O34645	Alpha galactosidase	0.000302118604617	0.00151596541635	0.00121384681173
+UniRef50_UPI0003B72D82	hypothetical protein	2.43270322244e-05	0.000648835250992	0.000624508218768
+UniRef50_A4SUD8	TraN protein	6.7680655042e-06	4.3483147875e-06	-2.4197507167e-06
+UniRef50_Q9JZD0		5.99501305782e-05	0.00282028712693	0.00276033699635
+UniRef50_Q2G6V6	Thymidylate synthase	0.0085838222656	0.00188852209428	-0.00669530017132
+UniRef50_Q5HFZ7	Dihydrofolate reductase	0.0205051196372	0.00361133348255	-0.0168937861546
+UniRef50_Q6A812	N acetyl gamma glutamyl phosphate reductase	0.00043324502106	0.00257786299378	0.00214461797272
+UniRef50_A6LY45		0.000312833692416	0.0032365364023	0.00292370270988
+UniRef50_UPI0002F39B78	hypothetical protein	3.60419074469e-05	3.15640897746e-05	-4.4778176723e-06
+UniRef50_UPI0001BF786C	hypothetical protein SMAC_11506, partial	0.000274250362674	1.08738361078e-05	-0.000263376526566
+UniRef50_A5ISU2		0.0114435979021	0.000482930776554	-0.0109606671255
+UniRef50_F3J2W3	AsmA family protein 	1.31034739134e-05	1.57702505258e-05	2.6667766124e-06
+UniRef50_UPI00047EDDA8	ACGS family amino acid carrier protein	1.93977796476e-06	0.000538148330432	0.000536208552467
+UniRef50_B7GJM7	2 oxoglutarate ferredoxin oxidoreductase, beta subunit	0.0127508646162	0.00325310898128	-0.00949775563492
+UniRef50_UPI000262500B	dihydropteroate synthase	1.52809991299e-05	1.15182885366e-05	-3.7627105933e-06
+UniRef50_F7ZT52	ABC type transporter, duplicate ATPase component	0.000498898971513	0.00212976963129	0.00163087065978
+UniRef50_U5NN33		0.0418522193713	0.00480877260914	-0.0370434467622
+UniRef50_Q7VFA9	ATP dependent RNA helicase DeaD	0.000159480178144	0.00443469579344	0.0042752156153
+UniRef50_F2U351		1.36382083913e-06	5.5543749636e-06	4.19055412447e-06
+UniRef50_UPI000369F682	hypothetical protein	0.000180204914258	9.35406129701e-06	-0.000170850852961
+UniRef50_B9KZ43	GTPase Der	0.000766566470157	0.00086915135331	0.000102584883153
+UniRef50_B8HHC7	Formyltetrahydrofolate deformylase	0.000601677278104	0.000230116913138	-0.000371560364966
+UniRef50_D1BX90	Transcriptional regulator, LysR family	6.18396851872e-05	3.52262837378e-05	-2.66134014494e-05
+UniRef50_B4S6J0	UDP N acetylglucosamine 1 carboxyvinyltransferase	9.46832203863e-06	6.89920504126e-05	5.9523728374e-05
+UniRef50_P76117		0.00350581838882	0.000812398710068	-0.00269341967875
+UniRef50_I0C7E7	NikE	0.0254935710989	0.00297588058451	-0.0225176905144
+UniRef50_G7MCM7	Aminodeoxychorismate lyase	0.000189058091245	0.00105208141205	0.000863023320805
+UniRef50_A6LSA1		0.000143167884525	0.000433757706537	0.000290589822012
+UniRef50_I9LBA0	Alkaline phosphatase 	0.000118017386351	0.0159990893513	0.0158810719649
+UniRef50_C5WFH4	UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase	0.00434467724944	0.00367750703236	-0.00066717021708
+UniRef50_Q55S44		1.1702548157e-05	4.02060549517e-05	2.85035067947e-05
+UniRef50_U5MVS9	Cytochrome b5	0.00201948088615	0.00129565060247	-0.00072383028368
+UniRef50_Q6GEQ8	Probable uridylyltransferase SAR2262	0.0208410287977	0.00445415142352	-0.0163868773742
+UniRef50_I0C5M6	Acyl CoA hydrolase	0.0164633051779	0.00155654286643	-0.0149067623115
+UniRef50_P39197	Phosphate acetyltransferase	2.39105784739e-05	6.40813151249e-06	-1.75024469614e-05
+UniRef50_X2N154	Glutamate synthase	0.00258080008632	0.000177929259451	-0.00240287082687
+UniRef50_P33315	Transketolase 2	5.28172458124e-06	4.38479513016e-06	-8.9692945108e-07
+UniRef50_P23354	1 phosphofructokinase	8.01266000219e-06	0.000182959842845	0.000174947182843
+UniRef50_P0AD42	Phosphatidylglycerophosphatase C	0.00296350704177	0.00136144382608	-0.00160206321569
+UniRef50_P0CB40	Phosphoethanolamine transferase EptC	0.0037319946603	0.00172392246925	-0.00200807219105
+UniRef50_UPI0003653436	hypothetical protein	0.000226927368029	4.5416144615e-05	-0.000181511223414
+UniRef50_T1A1M3	Cobyrinic acid a,c diamide synthase 	2.44515119022e-05	7.7565575713e-05	5.31140638108e-05
+UniRef50_Q9HU82		0.000142447542961	0.000360875810829	0.000218428267868
+UniRef50_Q0T052	Malate dehydrogenase	0.00213015398234	0.000189103546545	-0.00194105043579
+UniRef50_UPI00047042B3	protoheme IX farnesyltransferase, partial	1.83988975329e-05	8.811365902e-05	6.97147614871e-05
+UniRef50_I3KYK8		0.00123456361474	0.000245625701145	-0.000988937913595
+UniRef50_B9E056	DNA repair protein RecO	0.000478397722615	0.000247472099328	-0.000230925623287
+UniRef50_W8UX70	Pirin	8.53728172102e-06	8.72226812083e-06	1.8498639981e-07
+UniRef50_A4WV68		0.00115905678836	0.00053693946399	-0.00062211732437
+UniRef50_UPI00047437FE	30S ribosomal protein S15, partial	0.00036668433021	0.000475094805256	0.000108410475046
+UniRef50_A4X0K4		0.0300055571713	0.00436688331536	-0.0256386738559
+UniRef50_UPI0003B358DD	phytoene desaturase	6.30617128896e-06	3.13531484542e-05	2.50469771652e-05
+UniRef50_G7U9F5		0.00020046288771	0.0041452329292	0.00394477004149
+UniRef50_A4X0K2		0.0114331359002	0.00272021454746	-0.00871292135274
+UniRef50_V9W010		0.000216487923241	1.55822723944e-05	-0.000200905650847
+UniRef50_Q8A8R5	ATP dependent 6 phosphofructokinase 1	1.6131739956e-05	0.0140149105755	0.0139987788355
+UniRef50_E4RMY1	CoA substrate specific enzyme activase	0.000429789246994	0.00255939253788	0.00212960329089
+UniRef50_A0A031IYL1		0.000125689338356	0.000127654570816	1.96523246e-06
+UniRef50_P00358	Glyceraldehyde 3 phosphate dehydrogenase 2	1.08008182864e-05	8.2187355376e-06	-2.5820827488e-06
+UniRef50_W6TF97	Outer membrane protein assembly factor BamD	8.52202351465e-06	2.16384639622e-05	1.31164404475e-05
+UniRef50_UPI00016C52B2	potassium transporting ATPase subunit A	4.87815568839e-06	0.000386021959834	0.000381143804146
+UniRef50_P0AFR0	NTE family protein RssA	0.00317174674159	0.00215136218476	-0.00102038455683
+UniRef50_P0A9R0	Aspartate semialdehyde dehydrogenase	0.00411128250197	0.0118431750768	0.00773189257483
+UniRef50_Q8DU04		0.00202187564251	0.00117085918359	-0.00085101645892
+UniRef50_R9YS20	Phage portal family protein	0.0024987985815	0.000379421891038	-0.00211937669046
+UniRef50_V8EVN4		0.00124347018405	0.00089040212621	-0.00035306805784
+UniRef50_G8LI42		0.00142978596829	0.000614749501921	-0.000815036466369
+UniRef50_Q8DU03		0.00793800496678	0.000412069821193	-0.00752593514559
+UniRef50_A6LTA9		0.000976256867724	0.00935926788773	0.00838301102001
+UniRef50_UPI000402B508	peptide deformylase	2.87131447448e-05	1.93873141191e-05	-9.3258306257e-06
+UniRef50_W7U2M8		1.3349098486e-05	5.367577662e-06	-7.981520824e-06
+UniRef50_E8QFC4		0.000301988791085	0.00260166041199	0.0022996716209
+UniRef50_P45303	2 oxoglutarate dehydrogenase E1 component	4.8595850617e-05	0.0104775174901	0.0104289216395
+UniRef50_A6LQ67	GntR domain protein	0.000477830365635	0.00339045928521	0.00291262891957
+UniRef50_A0A036I5S3		8.81176511406e-05	0.000145671086782	5.75534356414e-05
+UniRef50_P45240	Sodium glutamate symport carrier protein	0.0036658949996	0.0100387145615	0.0063728195619
+UniRef50_UPI00047875CB	hypothetical protein	7.94316094354e-06	6.19839150672e-05	5.40407541237e-05
+UniRef50_A6TGA9	HTH type transcriptional activator RhaS	0.00211730969928	0.000219838738361	-0.00189747096092
+UniRef50_B7V1B6		0.00132391861385	0.00043858916614	-0.00088532944771
+UniRef50_L9BSL0	Penicillin binding protein activator LpoA	0.00107250441969	0.000190734858542	-0.000881769561148
+UniRef50_A0A043WFQ4		2.83124416727e-05	2.2149529354e-05	-6.1629123187e-06
+UniRef50_P73426	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.00329222940049	0.000401679048146	-0.00289055035234
+UniRef50_P71239	Putative colanic acid biosynthesis glycosyl transferase WcaE	0.000866590360751	0.000795244486817	-7.1345873934e-05
+UniRef50_UPI000410C3F5	bacitracin ABC transporter ATP binding protein	1.10225717888e-05	1.27685304248e-05	1.745958636e-06
+UniRef50_UPI0002D5F775	ATPase	4.9885532083e-05	4.4625668772e-05	-5.259863311e-06
+UniRef50_UPI00037CF9B5	hypothetical protein	7.45201199033e-05	4.87106337714e-05	-2.58094861319e-05
+UniRef50_UPI000405E993	acetyltransferase	5.37854786543e-05	0.000299012328242	0.000245226849588
+UniRef50_I7B8G3	Poly	0.000637231987322	0.000826821320576	0.000189589333254
+UniRef50_B4RA53		3.03222068082e-05	3.16480523303e-05	1.3258455221e-06
+UniRef50_UPI000373244E	hypothetical protein	9.52816567006e-06	6.1216679113e-05	5.16885134429e-05
+UniRef50_P35482	Alkaline phosphatase L	0.00215315467719	0.000382286997012	-0.00177086768018
+UniRef50_B9KJR5	Binding protein dependent transport systems inner membrane component	0.0012975591023	0.000461259753837	-0.000836299348463
+UniRef50_UPI0003B5FEB1	sulfate transporter	5.66195050081e-05	1.2972346332e-05	-4.36471586761e-05
+UniRef50_UPI0004657597	hypothetical protein	2.32343274735e-05	7.35403034455e-05	5.0305975972e-05
+UniRef50_Q5F8F6	tRNA lysidine synthase	0.00036905839131	0.00294703239931	0.002577974008
+UniRef50_UPI00047939C9	Fis family transcriptional regulator	0.000360070132245	0.000146950401638	-0.000213119730607
+UniRef50_D6AYQ3		0.000437027514448	0.000217448020881	-0.000219579493567
+UniRef50_C7RP31		0.000410149103732	0.00111166927105	0.000701520167318
+UniRef50_UPI000347473B	ABC transporter permease	4.17237915091e-05	6.96944164614e-05	2.79706249523e-05
+UniRef50_H6PD14	Oxidoreductase,pyridinenucleotide disulfide, class I	0.0022202328079	0.00182498836633	-0.00039524444157
+UniRef50_Q99WQ6	Lipase 2	0.014421842654	0.0028858997087	-0.0115359429453
+UniRef50_A3PMS2	Chromosome partition protein Smc	0.00106247713254	0.00043733494839	-0.00062514218415
+UniRef50_UPI00046813B7	hypothetical protein	8.61351368169e-05	1.73546326286e-05	-6.87805041883e-05
+UniRef50_Q9K0Y6	Phospho N acetylmuramoyl pentapeptide transferase	0.00280896417523	0.010830892556	0.00802192838077
+UniRef50_UPI000248DDD1	sugar ABC transporter permease	1.77521528267e-05	0.000202410115945	0.000184657963118
+UniRef50_P49433	Glyceraldehyde 3 phosphate dehydrogenase 1	2.49020807337e-05	2.75708028578e-05	2.6687221241e-06
+UniRef50_Q99Y18	6 phospho beta galactosidase	0.0264831448372	0.0073104365963	-0.0191727082409
+UniRef50_P14953	Anthranilate synthase component 1	1.04165324688e-05	1.56973389576e-05	5.2808064888e-06
+UniRef50_U5RY54		0.000197208268834	0.00172746271754	0.00153025444871
+UniRef50_Q97GY4	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000640548442558	0.00209242508865	0.00145187664609
+UniRef50_P0DC56	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00778206562738	0.00601532214999	-0.00176674347739
+UniRef50_UPI0003C7A2A0	hypothetical protein	7.77195970112e-05	0.000577900624486	0.000500181027475
+UniRef50_K2JJ46	NAD specific glutamate dehydrogenase	7.19633193391e-05	5.9241299866e-05	-1.27220194731e-05
+UniRef50_M9B494		7.78576930011e-05	8.63214005412e-05	8.4637075401e-06
+UniRef50_Q9RSU0	Glutamine synthase	9.75631551138e-05	0.0499112496199	0.0498136864648
+UniRef50_UPI000375E388	hypothetical protein, partial	7.4192639978e-05	2.57091751582e-05	-4.84834648198e-05
+UniRef50_W4TMV5		2.22941369635e-05	0.000136458157977	0.000114164021013
+UniRef50_Q46267	Pyruvate formate lyase activating enzyme	5.20290834472e-05	0.00229710190775	0.0022450728243
+UniRef50_F8JI17		0.000282171367632	1.25680876309e-05	-0.000269603280001
+UniRef50_A7INU8	Anhydro N acetylmuramic acid kinase	4.50929574888e-06	2.44405435681e-05	1.99312478192e-05
+UniRef50_D0D2I8	ArsC family protein	0.000120915942346	7.22677741709e-05	-4.86481681751e-05
+UniRef50_B2Y834	Abortive phage resistance protein like protein	0.00867933720424	0.00352586565796	-0.00515347154628
+UniRef50_P0AA69	Threonine homoserine exporter RhtA	0.00303146107685	0.00183958609873	-0.00119187497812
+UniRef50_UPI00047DFAFF	hypothetical protein	3.39537933543e-06	2.79241872734e-06	-6.0296060809e-07
+UniRef50_M4NGT3	Arsenical resistance protein ArsH	0.000296067442241	0.00812320374969	0.00782713630745
+UniRef50_Q47539	Taurine transport system permease protein TauC	0.00266478013264	0.00814200202826	0.00547722189562
+UniRef50_W4UB64	Menaquinone specific isochorismate synthase	0.00036296729697	0.00135047144752	0.00098750415055
+UniRef50_C2W144	Cell wall surface anchor	3.40130826249e-06	0.000299474824448	0.000296073516186
+UniRef50_UPI00035CC609	hypothetical protein	0.000121836328929	9.02753853642e-05	-3.15609435648e-05
+UniRef50_Q2RP22	Dual specificity RNA methyltransferase RlmN	0.0107307669935	0.00214281541268	-0.00858795158082
+UniRef50_UPI0003C16468	PREDICTED	7.89544409101e-06	4.72636564893e-06	-3.16907844208e-06
+UniRef50_UPI000476C674	hypothetical protein	9.69708710926e-06	1.56551135474e-05	5.95802643814e-06
+UniRef50_Z5XDL4	Glutamate synthase	3.23186144207e-06	3.06062049218e-06	-1.7124094989e-07
+UniRef50_UPI0004774B62	hypothetical protein, partial	4.06777620211e-05	3.20489455372e-05	-8.6288164839e-06
+UniRef50_A1IRN6		8.90841136789e-05	0.00130722608256	0.00121814196888
+UniRef50_UPI000477DB28	NrdR family transcriptional regulator	9.34125128345e-05	0.000133689831989	4.02773191545e-05
+UniRef50_UPI0002E108A4	hypothetical protein	3.17006815175e-05	0.000212236204661	0.000180535523144
+UniRef50_C3YD63		1.52303062457e-06	4.07171857443e-06	2.54868794986e-06
+UniRef50_UPI00037451D4	hypothetical protein	8.28759168097e-06	9.29504144432e-06	1.00744976335e-06
+UniRef50_P0A585	Glucose 6 phosphate 1 dehydrogenase 2	1.17362633558e-05	0.00740612531387	0.00739438905051
+UniRef50_A5UNF6	Putative Zn peptidase	0.00466781943369	0.000254218110649	-0.00441360132304
+UniRef50_Q46820		0.00213469435242	0.000465842697415	-0.00166885165501
+UniRef50_G0LV16	CAAX amino terminal protease family protein	0.00752090649818	0.00149350521893	-0.00602740127925
+UniRef50_K0HMU2	Polysaccharide deacetylase	0.000493834622703	0.00530509906634	0.00481126444364
+UniRef50_A6LYX7		0.000461536301295	0.000255317036191	-0.000206219265104
+UniRef50_UPI0003795D86	hypothetical protein	4.33034926066e-05	0.000318144203592	0.000274840710985
+UniRef50_UPI00046281E4	PREDICTED	0.000141084058665	0.000712975280051	0.000571891221386
+UniRef50_O25242	DNA polymerase III subunit beta	0.000101112318447	0.00403959574074	0.00393848342229
+UniRef50_Q8D5U6		0.000159434593721	0.00230683569368	0.00214740109996
+UniRef50_B9KJP6	NADH hydrate epimerase	7.31925595303e-05	7.15655687981e-05	-1.6269907322e-06
+UniRef50_M9B696	Bifunctional glmU domain protein	0.00165646172412	0.000851875111142	-0.000804586612978
+UniRef50_Q820V5	Enoyl [acyl carrier protein] reductase [NADH] FabI	1.25395055315e-05	0.00189832920819	0.00188578970266
+UniRef50_Q1CG91	Methionine import ATP binding protein MetN 1	1.82552416953e-05	2.23241459225e-05	4.0689042272e-06
+UniRef50_Q186R1	Thiazole synthase	0.000837528356113	0.00297397047942	0.00213644212331
+UniRef50_H6LJB5	Chemotaxis protein methyltransferase CheR2	0.000300788024613	0.0016249039914	0.00132411596679
+UniRef50_UPI000328B359	PREDICTED	4.09183807218e-05	4.40997348515e-05	3.1813541297e-06
+UniRef50_Q8K9N2	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.62645836624e-05	2.52217190258e-05	8.9571353634e-06
+UniRef50_D2AAC8	Biotin sulfoxide reductase	0.00133387709286	8.05043267146e-05	-0.00125337276615
+UniRef50_B8CY71	Lon protease	6.7944948875e-06	1.5359773394e-05	8.5652785065e-06
+UniRef50_R9SL42		0.0031431773612	0.000815840095442	-0.00232733726576
+UniRef50_M1FGU0		0.00042825448039	0.00236253364156	0.00193427916117
+UniRef50_P19496	Coenzyme F420 hydrogenase subunit alpha	0.00165309763648	0.000367596858647	-0.00128550077783
+UniRef50_A7ZU67	Der GTPase activating protein YihI	0.00304624412835	0.000714075750017	-0.00233216837833
+UniRef50_Q8TX50	50S ribosomal protein L10	0.00165989492411	0.000797251355547	-0.000862643568563
+UniRef50_A6LX70	MukB N terminal domain M protein repeat protein	0.00065873309663	0.00143271639743	0.0007739833008
+UniRef50_E3DSX1	KdgR1	0.000818368301181	0.00129675182196	0.000478383520779
+UniRef50_UPI000464DA5F	ABC transporter	5.59939890418e-06	1.38348009265e-05	8.23540202232e-06
+UniRef50_UPI0003FDD6FE	FAD containing monooxygenase EthA	1.17356455547e-05	0.00238205925472	0.00237032360917
+UniRef50_A0A022LQG6	Glyoxalase	2.9420058585e-05	3.7942528545e-05	8.52246996e-06
+UniRef50_Q3J3Q2		0.00326318618142	0.00112057516709	-0.00214261101433
+UniRef50_UPI0003F48E9A	hypothetical protein TREMEDRAFT_26315	2.69750014306e-06	3.42607698797e-06	7.2857684491e-07
+UniRef50_S5RL61	ATP dependent DNA helicase	0.0056491774676	0.00253834531831	-0.00311083214929
+UniRef50_B8FP23	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.53507860593e-05	8.37965866608e-06	-6.97112739322e-06
+UniRef50_A4EPQ9		0.00681816818623	0.00361091044288	-0.00320725774335
+UniRef50_UPI000329816A	PREDICTED	5.08374541215e-05	0.00018976776119	0.000138930307068
+UniRef50_G1XX87		0.000181024986141	0.00131706190063	0.00113603691449
+UniRef50_A0A024L1D8	Antirestriction protein	4.98892606782e-05	0.000391147953907	0.000341258693229
+UniRef50_U5MT98		0.000590476353155	0.00166053057755	0.00107005422439
+UniRef50_Q1RK88		0.00456424049103	0.00488387348001	0.00031963298898
+UniRef50_X0PNW8	DNA gyrase subunit B	1.62962300532e-05	0.000137760030061	0.000121463800008
+UniRef50_UPI0003752FD7	hypothetical protein, partial	0.000239535396236	0.000101061680298	-0.000138473715938
+UniRef50_Q03KB7	ATP dependent 6 phosphofructokinase	0.00478124301285	0.00382948422281	-0.00095175879004
+UniRef50_Q2FH56	Putative oligopeptide transport system permease protein oppC2	0.0205963816924	0.00237620889639	-0.018220172796
+UniRef50_A1SW90	Beta hexosaminidase	4.07470685053e-06	2.49014504511e-05	2.08267436006e-05
+UniRef50_UPI0001B664E4	Os08g0187500	8.10315376137e-05	0.00044673363675	0.000365702099136
+UniRef50_B2UZH1	Cyanophycinase	0.00119936410372	0.00292835996884	0.00172899586512
+UniRef50_A6M0N2	Signal transduction histidine kinase, LytS	0.000932503262961	0.000970362057043	3.7858794082e-05
+UniRef50_A6LYP0	PTS system, mannose fructose sorbose family, IIA subunit	0.000286698219379	0.00254783039777	0.00226113217839
+UniRef50_A0A023KNT6		0.000150395407342	0.000215814277023	6.5418869681e-05
+UniRef50_Q2YU28		0.00161615964863	0.000153332570187	-0.00146282707844
+UniRef50_UPI0001FFEA10	ABC transporter	9.42562944799e-05	2.49498033757e-05	-6.93064911042e-05
+UniRef50_G5J8I8	Transposase, Tn3 family	2.55846774511e-05	0.00128569724911	0.00126011257166
+UniRef50_UPI000361DFBB	hypothetical protein	4.81947407208e-06	8.02953902992e-06	3.21006495784e-06
+UniRef50_A3PNG9	Transferase hexapeptide repeat containing protein	0.0104750361539	0.0018630623084	-0.0086119738455
+UniRef50_B9NR02		0.00377552927356	0.000428149721403	-0.00334737955216
+UniRef50_P39916	Thioredoxin reductase	0.0101142581658	0.0101379492084	2.36910426e-05
+UniRef50_B0VT23	Erythronate 4 phosphate dehydrogenase	0.000420854951058	0.00871508239562	0.00829422744456
+UniRef50_Q02RB8	UDP 3 O acylglucosamine N acyltransferase	0.0015265059377	0.000982087922008	-0.000544418015692
+UniRef50_A0LM36	Macrolide export ATP binding permease protein MacB	3.17051649979e-06	1.41139116432e-05	1.09433951434e-05
+UniRef50_UPI0004713629	hypothetical protein	0.000299420651106	0.00028588446127	-1.3536189836e-05
+UniRef50_Q3V7R9	4 hydroxythreonine 4 phosphate dehydrogenase	0.000926690746418	7.09958081303e-06	-0.000919591165605
+UniRef50_A3M2D7	DNA primase	0.000191933123357	0.0103129813918	0.0101210482684
+UniRef50_G3GPU6		9.52024639151e-06	2.19460337709e-05	1.24257873794e-05
+UniRef50_Q5HRQ3	Peptidyl tRNA hydrolase	0.00964635371193	0.00245405725638	-0.00719229645555
+UniRef50_Q4L4Y2	ATP dependent helicase deoxyribonuclease subunit B	0.0115570726846	0.00263892526894	-0.00891814741566
+UniRef50_A3SHH8		5.73401723464e-05	3.61154484524e-05	-2.1224723894e-05
+UniRef50_UPI00045E8170	hypothetical protein	6.09339181379e-06	1.01273537124e-05	4.03396189861e-06
+UniRef50_UPI000371708D	hypothetical protein	0.000101912128211	5.48238585019e-05	-4.70882697091e-05
+UniRef50_R8S9D2		9.50442621984e-05	0.011640101584	0.0115450573218
+UniRef50_C1DIU1	Response regulator	0.00309420256021	0.00130341252148	-0.00179079003873
+UniRef50_R7MTU6		0.00503446074007	0.00147724168973	-0.00355721905034
+UniRef50_P77768		0.00192106833763	0.00040664849239	-0.00151441984524
+UniRef50_UPI00046ADC84	transposase	3.91429399837e-06	8.86595122707e-06	4.9516572287e-06
+UniRef50_UPI00047D345D	hypothetical protein	3.17999080168e-05	2.37858741144e-05	-8.0140339024e-06
+UniRef50_B2TQ47	Shikimate kinase	0.000235928743029	0.00130787911857	0.00107195037554
+UniRef50_P50852	PTS system mannitol specific EIICB component	7.99085938229e-06	9.66299220863e-06	1.67213282634e-06
+UniRef50_UPI000368B6A3	hypothetical protein, partial	3.07655091778e-05	3.1218179004e-05	4.526698262e-07
+UniRef50_A6LU00	Baseplate J family protein	0.000357453725764	0.00246599753734	0.00210854381158
+UniRef50_UPI0003B708C3	DNA glycosylase, partial	5.75759874775e-05	0.000161466798753	0.000103890811275
+UniRef50_A0A011PVV2		0.000162938363087	0.000666152906117	0.00050321454303
+UniRef50_G7M9T7		0.00088114942308	0.00141687953598	0.0005357301129
+UniRef50_A4VN57	Oxidoreductase, molybdopterin binding	0.000241258907866	9.62989256126e-05	-0.000144959982253
+UniRef50_Q9I0H4	Flavohemoprotein	0.00101717425989	5.11872506009e-05	-0.000965987009289
+UniRef50_UPI00026306CB	ubiquinol cytochrome C reductase	0.000109625419348	4.49333072065e-05	-6.46921121415e-05
+UniRef50_Q9RZD6	Ferredoxin nitrite reductase	0.000301421464354	0.0344282270331	0.0341268055687
+UniRef50_U3T069	Nicotinamide nucleotide adenylyltransferase	0.000382587150866	0.00277462359093	0.00239203644006
+UniRef50_A5UJ97		0.00394226652981	0.000346988903649	-0.00359527762616
+UniRef50_A8L7A1	Putative transcriptional regulator	6.43992197656e-05	2.27393772044e-05	-4.16598425612e-05
+UniRef50_UPI0004729065	membrane protein	3.05030440267e-05	1.04666874197e-05	-2.0036356607e-05
+UniRef50_M4VIT1	MotA TolQ ExbB proton channel family protein	0.00298165438002	0.0019559822084	-0.00102567217162
+UniRef50_Q5HKI1	Probable succinyl diaminopimelate desuccinylase	0.0202955628631	0.00582029046095	-0.0144752724022
+UniRef50_UPI0003620D57	hypothetical protein	1.65138140605e-06	9.06269473625e-06	7.4113133302e-06
+UniRef50_G4QII0	D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein	0.00499633516867	0.0060963709524	0.00110003578373
+UniRef50_UPI0001FFF2A8	putative hydrolase	1.01513511738e-05	7.81778520282e-05	6.80265008544e-05
+UniRef50_UPI0003D0D2FE	PREDICTED	2.78207475169e-05	2.46269420503e-05	-3.1938054666e-06
+UniRef50_V9U2A1	Thioesterase PvdG involved in non ribosomal peptide biosynthesis	0.000719562651032	0.000681500088921	-3.8062562111e-05
+UniRef50_E4CZ61		0.000589821857578	0.00184572940748	0.0012559075499
+UniRef50_A6TRD7		0.000202711978108	0.00120527589669	0.00100256391858
+UniRef50_UPI0002D6A2EC	deoxyguanosinetriphosphate triphosphohydrolase	7.32536050167e-05	5.6176240941e-06	-6.76359809226e-05
+UniRef50_P9WGC6	Succinyl CoA ligase [ADP forming] subunit alpha	0.011603345089	0.00796659258257	-0.00363675250643
+UniRef50_UPI00037FF954	hypothetical protein	1.35283566279e-05	7.86820024732e-05	6.51536458453e-05
+UniRef50_UPI0003B73915	potassium transporter TrkA	8.12097968596e-06	1.34428828904e-05	5.32190320444e-06
+UniRef50_UPI000463E242	hypothetical protein	5.12334019912e-06	3.41577203972e-05	2.90343801981e-05
+UniRef50_A3PH06		0.0138328769499	0.00357363137893	-0.010259245571
+UniRef50_P23630	Diaminopimelate decarboxylase	9.09729700937e-06	0.00148169990653	0.00147260260952
+UniRef50_A8F7Z9	Ornithine carbamoyltransferase	6.04205672409e-06	8.36436123122e-06	2.32230450713e-06
+UniRef50_P0AFS5	AI 2 transport protein TqsA	0.00334426124009	0.00144804104504	-0.00189622019505
+UniRef50_UPI0003449BF9	acetolactate synthase	3.29398305574e-05	0.000984241736536	0.000951301905979
+UniRef50_UPI0003B58311	citrate synthase, partial	2.32538742189e-05	5.71442172265e-05	3.38903430076e-05
+UniRef50_A0A023RXS3	Magnesium transporter	0.000337842557968	0.00644628195509	0.00610843939712
+UniRef50_A9NAA5	Phosphoheptose isomerase	0.00637758434682	0.00281154134615	-0.00356604300067
+UniRef50_UPI000249446F	cellobiose phosphorylase	0.000114378563817	0.000150705006754	3.6326442937e-05
+UniRef50_A9M3I8	dTDP 4 dehydrorhamnose reductase	0.00110523249462	0.00216042348677	0.00105519099215
+UniRef50_Q46851	L glyceraldehyde 3 phosphate reductase	0.00442795078185	0.00598245808684	0.00155450730499
+UniRef50_UPI000300C9AC	heme ABC transporter ATP binding protein	2.01490003621e-05	8.0258825366e-05	6.01098250039e-05
+UniRef50_K4NDS6		0.000120989098994	0.00198480952046	0.00186382042147
+UniRef50_T0ZCE6	Thiamine biosynthesis protein ThiC 	2.04562772034e-05	8.12653630909e-05	6.08090858875e-05
+UniRef50_A8FEQ2	Pseudouridine synthase	0.0071191407092	0.00283095504139	-0.00428818566781
+UniRef50_A6M2V9	Methyl accepting chemotaxis sensory transducer	7.84794155617e-05	0.00150074286437	0.00142226344881
+UniRef50_P64434	Inner membrane protein YpjD	0.00293604828794	0.000208213893202	-0.00272783439474
+UniRef50_D3E0C1		0.00420301781789	0.000428129877289	-0.0037748879406
+UniRef50_UPI0002196E63	amino acid ABC transporter periplasmic protein	6.73356453807e-06	9.21004062606e-06	2.47647608799e-06
+UniRef50_I6D8C7	Sensor atoS domain protein	0.00237183370661	0.000404543431768	-0.00196729027484
+UniRef50_E6MU88	DNA binding response regulator, Fis family	0.000215115103052	0.00451759698677	0.00430248188372
+UniRef50_B8DW19	30S ribosomal protein S3	0.00161659948589	0.00409237941937	0.00247577993348
+UniRef50_Q83BS0	Transcription termination antitermination protein NusA	0.00395200935005	0.00915030030039	0.00519829095034
+UniRef50_P02924	L arabinose binding periplasmic protein	0.00148123092923	0.00021848338239	-0.00126274754684
+UniRef50_E5WAH0		0.000432235865095	0.000215284477612	-0.000216951387483
+UniRef50_UPI000477EDEC	hypothetical protein	9.95893161909e-05	6.26745704145e-05	-3.69147457764e-05
+UniRef50_UPI00036184DA	hypothetical protein	1.81090887652e-05	3.91604677352e-06	-1.41930419917e-05
+UniRef50_Q0ASX6		1.93664009927e-05	4.16074123058e-05	2.22410113131e-05
+UniRef50_A9BTA7	Non canonical purine NTP pyrophosphatase	3.31090980871e-05	1.34930922527e-05	-1.96160058344e-05
+UniRef50_C7Q8K8		6.33023679082e-06	0.00071063468417	0.000704304447379
+UniRef50_U5AI32	DNA polymerase III subunit beta	0.0015099439554	0.000188500024587	-0.00132144393081
+UniRef50_G5MH51		3.47493861839e-05	3.6410037568e-05	1.6606513841e-06
+UniRef50_UPI000475DCB4	ATPase, partial	0.000181680432359	0.00316450718534	0.00298282675298
+UniRef50_UPI0003B5589D	hypothetical protein	2.45949660491e-06	1.50185023973e-05	1.25590057924e-05
+UniRef50_UPI000363404F	MULTISPECIES	1.78925068132e-05	1.79820425666e-05	8.95357534e-08
+UniRef50_S1SPS9	PTS system transporter subunit IIA	0.00572303066785	0.000957783908741	-0.00476524675911
+UniRef50_UPI00037ACE4F	hypothetical protein	5.24489057051e-06	7.48844184284e-06	2.24355127233e-06
+UniRef50_A5UJD7	Predicted transposase	0.00360697537197	0.000713394269692	-0.00289358110228
+UniRef50_A9B4Z7	NADH quinone oxidoreductase subunit D 1	6.21073167249e-06	7.42080091766e-05	6.79972775041e-05
+UniRef50_F3SFL5		0.000309270081671	7.20353275986e-05	-0.000237234754072
+UniRef50_UPI00036E2F89	hypothetical protein	0.000492745695945	2.14110756335e-05	-0.000471334620312
+UniRef50_UPI000469CEC8	hypothetical protein	1.82046109492e-05	3.98851393146e-06	-1.42160970177e-05
+UniRef50_A8GE31	PTS system, maltose and glucose specific IIAbc component	0.000191602065363	5.95596999188e-05	-0.000132042365444
+UniRef50_K7TAU7		0.000786184567758	0.000110712867877	-0.000675471699881
+UniRef50_Q1C1E0	Glycogen debranching enzyme	0.00298322902965	0.000241700997045	-0.0027415280326
+UniRef50_Q2RRM4	N acetyl gamma glutamyl phosphate reductase	5.85980225593e-05	2.24794465634e-05	-3.61185759959e-05
+UniRef50_T2DXA7		0.00105603699885	0.00268469731995	0.0016286603211
+UniRef50_UPI00035EBF42	hypothetical protein	0.000341046528148	0.000128732906505	-0.000212313621643
+UniRef50_P52146	Arsenical pump membrane protein	0.0226288889207	0.00655159883118	-0.0160772900895
+UniRef50_B9DN29	6,7 dimethyl 8 ribityllumazine synthase	1.60933768439e-05	6.21860919488e-05	4.60927151049e-05
+UniRef50_UPI0002D3715C	hypothetical protein	0.00164033516518	8.51871004283e-06	-0.00163181645514
+UniRef50_Q55038	Amidophosphoribosyltransferase	4.3283230997e-06	6.73673434576e-05	6.30390203579e-05
+UniRef50_M4KMH2	Cysteine desulfurase	0.00336005900066	0.00473844407918	0.00137838507852
+UniRef50_UPI000476ECF5	hypothetical protein	0.000207713318283	5.93918699409e-05	-0.000148321448342
+UniRef50_Q9UZU7	Phosphate import ATP binding protein PstB	0.00729162451769	0.0105844478216	0.00329282330391
+UniRef50_UPI0003C1AD3B	PREDICTED	3.37736341156e-05	6.45326877495e-06	-2.73203653406e-05
+UniRef50_S6B705		0.00811158127318	0.00294201310697	-0.00516956816621
+UniRef50_A6M0A3		0.00023349648795	0.000335587164987	0.000102090677037
+UniRef50_Q38451	C repressor	0.00155293136979	0.00272362141742	0.00117069004763
+UniRef50_Q88VD4	30S ribosomal protein S20	0.0022117862046	0.00133225581291	-0.00087953039169
+UniRef50_B0CHX9	Adenine phosphoribosyltransferase	0.00757968032653	0.000798046467691	-0.00678163385884
+UniRef50_A3WPC3		0.000190849599432	0.000272116370809	8.1266771377e-05
+UniRef50_UPI00028995EB	6 pyruvoyl tetrahydropterin synthase	0.000107300780255	0.00083595193852	0.000728651158265
+UniRef50_A0A022NGW7		2.10984624753e-05	0.000273676672327	0.000252578209852
+UniRef50_Q890R5	tRNA pseudouridine synthase A 2	0.000471857486069	0.00275353749934	0.00228168001327
+UniRef50_UPI000464C09A	GntR family transcriptional regulator, partial	2.24152182028e-05	3.00769829037e-05	7.6617647009e-06
+UniRef50_H3V9W4		0.00129230863228	0.000211763948756	-0.00108054468352
+UniRef50_A6LSW5	Cobalamin synthase	0.000151398123869	0.00051088667735	0.000359488553481
+UniRef50_U5MTT1	Transcriptional regulator, AraC family	0.000135949335724	0.00156429884676	0.00142834951104
+UniRef50_A9IYN9	Elongation factor P	0.0203834695393	0.00372004565284	-0.0166634238865
+UniRef50_B5QX24	Protein TolB	0.00317935108626	0.00183648513329	-0.00134286595297
+UniRef50_P0A9D0	Fructose 1,6 bisphosphatase class 2	0.00265203254394	0.00224914685275	-0.00040288569119
+UniRef50_K2EHJ4		5.01000550452e-06	0.000686783035329	0.000681773029824
+UniRef50_O25582	Protease HtpX homolog	0.000132451224162	0.00208228370361	0.00194983247945
+UniRef50_Q2IGL4	Bifunctional protein GlmU	5.86563372479e-06	6.48345017174e-06	6.1781644695e-07
+UniRef50_D3E2G7		0.000636573839715	0.000316410755563	-0.000320163084152
+UniRef50_W1TXW2	Prophage LambdaSa04, terminase, large subunit	1.07736379702e-05	0.000108341431842	9.75677938718e-05
+UniRef50_D5ZU02	Modular polyketide synthase	0.000118450535691	0.000436624021654	0.000318173485963
+UniRef50_UPI00047270A3	ribosome associated protein IOJAP	5.07169856552e-05	4.30986570067e-05	-7.6183286485e-06
+UniRef50_UPI00042AA310	PREDICTED	1.12532928975e-05	4.17376532099e-06	-7.07952757651e-06
+UniRef50_D8GM15	Membrane associated dicarboxylate carrier protein	0.00039875280513	0.00604089305011	0.00564214024498
+UniRef50_UPI0003B419EF	serine threonine protein phosphatase	1.55083930543e-05	2.05315042169e-05	5.0231111626e-06
+UniRef50_A0A011PK79	Glucose inhibited division protein A	1.3425977207e-05	1.92770218348e-05	5.8510446278e-06
+UniRef50_D9CIX9	SAD1f	2.41047234099e-07	9.02138052573e-06	8.78033329163e-06
+UniRef50_Q3IXN3	Phosphatidylethanolamine	0.00406268926363	0.00155421583442	-0.00250847342921
+UniRef50_G8VAR4	Bacterial extracellular solute binding protein	0.000114621251678	0.00681250589398	0.0066978846423
+UniRef50_Q5HL87	Ribokinase	0.0215121393573	0.00457780099036	-0.0169343383669
+UniRef50_V8R0S4	Peptidase M16	0.000469493692399	0.000351568890229	-0.00011792480217
+UniRef50_UPI0002EDB6DA	hypothetical protein	7.7083630768e-05	0.000144628714395	6.7545083627e-05
+UniRef50_C0P8W3		2.30967847119e-05	2.80874434628e-05	4.9906587509e-06
+UniRef50_M4WUF5		0.000148426917094	0.000117084282232	-3.1342634862e-05
+UniRef50_UPI00037D4258	hypothetical protein	0.004240520582	0.00236773269547	-0.00187278788653
+UniRef50_UPI000380CC39	hypothetical protein	2.24558682685e-05	0.000224591615183	0.000202135746915
+UniRef50_B9T8B0		4.12408609019e-05	8.60050235732e-06	-3.26403585446e-05
+UniRef50_Q8ZBY6	Acyl coenzyme A dehydrogenase	0.00201516242167	0.000318566984978	-0.00169659543669
+UniRef50_UPI000476F4CB	ATPase P	4.09500726938e-06	0.000153035889006	0.000148940881737
+UniRef50_UPI0002DC070B	hypothetical protein	1.30842289681e-05	0.000700175960592	0.000687091731624
+UniRef50_A6TLH7	Electron transfer flavoprotein, alpha subunit like protein	4.72161977211e-06	7.61534739281e-06	2.8937276207e-06
+UniRef50_W5X2T3	PAS PAC sensor signal transduction histidine kinase	0.000130823131346	8.4483527255e-05	-4.6339604091e-05
+UniRef50_Q88GV8		0.000192573175068	4.66856678433e-05	-0.000145887507225
+UniRef50_F4AJ46	Peptidase M24	0.000185953689091	0.000392488313224	0.000206534624133
+UniRef50_UPI000367681C	hypothetical protein	1.73858808707e-05	8.20919341188e-06	-9.17668745882e-06
+UniRef50_A9M0F1	Lipoprotein	1.00069625113e-05	0.00262745013248	0.00261744316997
+UniRef50_A5UN02	Predicted RNA binding protein	0.00345593901787	0.000298802737126	-0.00315713628074
+UniRef50_L8ME45		2.45392808487e-05	2.43777178331e-05	-1.615630156e-07
+UniRef50_UPI0001FFE55B	large conductance mechanosensitive channel, partial	3.03324270148e-05	2.33083961723e-05	-7.0240308425e-06
+UniRef50_B9EB85	Signal peptidase I	0.0700970244098	0.0233782198032	-0.0467188046066
+UniRef50_R5TSV1	Phosphoglucomutase phosphomannomutase family protein	8.04302533035e-05	0.00578139942827	0.00570096917497
+UniRef50_E3DAW5	Transposase of insertion element IS911A	2.94643236828e-05	6.97937974018e-05	4.0329473719e-05
+UniRef50_M9S895	Glycosyl transferase	0.00071670502361	0.000147535406424	-0.000569169617186
+UniRef50_S5DC92		0.000159501122048	0.00568037415438	0.00552087303233
+UniRef50_Q53554	Citrate synthase	1.97364103883e-05	2.67283437677e-05	6.9919333794e-06
+UniRef50_A0A011R9T0	Cyclolysin	2.15217698048e-05	4.71279253878e-06	-1.6808977266e-05
+UniRef50_I1ZNE0	SpoU rRNA methylase family protein	0.00949442730922	0.00444242804509	-0.00505199926413
+UniRef50_UPI000289013C	enoyl CoA hydratase	1.14525905737e-05	1.88313456746e-05	7.3787551009e-06
+UniRef50_R7D190	6 phosphogluconate dehydrogenase	0.00012796135215	0.000731948967574	0.000603987615424
+UniRef50_A0A016QRP5		4.43528600823e-06	0.0005974070917	0.000592971805692
+UniRef50_P13510	Cobalt zinc cadmium resistance protein CzcB	0.000106134767253	0.000417998563486	0.000311863796233
+UniRef50_A4WRH7		0.000333931582955	0.000157447247136	-0.000176484335819
+UniRef50_F2E7K1	Predicted protein 	6.7904108613e-05	7.48491993067e-05	6.9450906937e-06
+UniRef50_P34107	Superoxide dismutase [Fe]	1.03293699876e-05	1.16852801753e-05	1.3559101877e-06
+UniRef50_UPI0004423401	PREDICTED	0.000557195265686	0.0012944890027	0.000737293737014
+UniRef50_C9LYG0	Lipoprotein	0.000335266072023	0.00064281895211	0.000307552880087
+UniRef50_Q9HXK5	2 isopropylmalate synthase	0.00200916904916	0.00874221048132	0.00673304143216
+UniRef50_UPI00047437D2	hypothetical protein	5.57461330627e-06	8.00865325031e-05	7.45119191968e-05
+UniRef50_A6M2U6	Response regulator receiver protein	0.0157892387145	0.000805409195995	-0.0149838295185
+UniRef50_UPI0001FFE930	peptide ABC transporter ATP binding protein	6.93823201299e-06	1.29976423518e-05	6.05941033881e-06
+UniRef50_M0QW80	Protein Gm26571	5.9704915627e-05	0.00013691602474	7.7211109113e-05
+UniRef50_F8H984	Two component sensor	0.000796705380501	0.000765641599191	-3.106378131e-05
+UniRef50_L8NI67		0.000880181536158	2.48026924754e-05	-0.000855378843683
+UniRef50_P45868	Probable NAD dependent malic enzyme 2	6.70093471299e-05	0.00813897742778	0.00807196808065
+UniRef50_A5I0L6	Cyclic nucleotide binding domain protein	0.000329682086335	0.00082334917808	0.000493667091745
+UniRef50_X2H6U2	Two component system histidine kinase	0.000170231443998	0.00157595063205	0.00140571918805
+UniRef50_B6J695	NADH quinone oxidoreductase subunit B	4.69843950471e-05	0.000149777612459	0.000102793217412
+UniRef50_V4YKS4	DNA directed RNA polymerase	0.000201189692619	0.00859336482555	0.00839217513293
+UniRef50_L9TGP7	Exonuclease V subunit beta	0.00308265853862	0.00118325238587	-0.00189940615275
+UniRef50_Q6GE63		0.0151652193927	0.0010687929148	-0.0140964264779
+UniRef50_D4HD09		7.75125233802e-05	0.00058085561343	0.00050334309005
+UniRef50_UPI0003635A0A	hypothetical protein	1.59214330895e-05	1.63979885134e-05	4.765554239e-07
+UniRef50_C0QFA3	PstS1	8.17862377826e-06	8.98200190359e-06	8.0337812533e-07
+UniRef50_A6M264	Lantibiotic modifying like protein	0.000117093750791	0.00152073231466	0.00140363856387
+UniRef50_UPI0001850C5F	exsB protein	0.000105394585716	1.93409763765e-05	-8.60536093395e-05
+UniRef50_B4U3E4	Histidine protein kinase	0.00325160366933	0.00148515355014	-0.00176645011919
+UniRef50_R4QKT1	Fibronectin	0.000137434219241	0.00218021209411	0.00204277787487
+UniRef50_F2UJQ2		3.11738797491e-05	4.33162780722e-05	1.21423983231e-05
+UniRef50_UPI0003B71026	MerR family transcriptional regulator	8.57997512137e-05	0.000921781003275	0.000835981252061
+UniRef50_M4S432	LysR family transcriptional regulator	0.000354053911814	0.00874173380978	0.00838767989797
+UniRef50_V4PX87		2.59364552135e-05	2.69536001639e-05	1.0171449504e-06
+UniRef50_A6LXR1		0.000431554443823	0.000562278508468	0.000130724064645
+UniRef50_A6LX56	PAS PAC sensor signal transduction histidine kinase	0.000242967424109	0.000695364885176	0.000452397461067
+UniRef50_G8V9G8	Luciferase family oxidoreductase, group 1	0.000163886825841	0.00491061912461	0.00474673229877
+UniRef50_B9DIP6	Pseudouridine synthase	0.0110775720678	0.00844545331001	-0.00263211875779
+UniRef50_UPI00034DB930	hypothetical protein	2.57171408444e-06	1.12304112018e-05	8.65869711736e-06
+UniRef50_Q0FVR8		7.29873637411e-05	0.000131633456649	5.86460929079e-05
+UniRef50_Q7V5R2	Fumarate hydratase class II	7.30019021005e-06	1.31343062525e-05	5.83411604245e-06
+UniRef50_B2IAX9	Tyrosine  tRNA ligase	0.00761203348401	0.00244901056399	-0.00516302292002
+UniRef50_D3A3L2		1.26825838155e-05	7.11301881401e-05	5.84476043246e-05
+UniRef50_H1KT40		0.00290318737689	0.00105163999278	-0.00185154738411
+UniRef50_Q2JKE8	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	3.64322486192e-06	3.70735589038e-06	6.413102846e-08
+UniRef50_A3VLI2	Replication initiator RepC	0.000230453306088	7.71870186729e-05	-0.000153266287415
+UniRef50_UPI00035F5471	hypothetical protein	1.27245397751e-05	5.60399985577e-05	4.33154587826e-05
+UniRef50_P44270		0.000264592982837	0.0029445705021	0.00267997751926
+UniRef50_N6WGS6	Glycolate oxidase iron sulfur subunit	5.94651311854e-05	0.000180123734392	0.000120658603207
+UniRef50_UPI0003637414	hypothetical protein	2.90185171882e-06	9.13743986684e-06	6.23558814802e-06
+UniRef50_B9ADC4	CRISPR associated endonuclease Cas1	0.00228873926688	0.000319261302914	-0.00196947796397
+UniRef50_Q28KP2	N acetylmuramic acid 6 phosphate etherase	0.00321927078461	0.000947854742547	-0.00227141604206
+UniRef50_O32507	Succinate semialdehyde dehydrogenase [NADP]	4.0595132169e-06	0.0369246351424	0.0369205756292
+UniRef50_Q8KBK4	50S ribosomal protein L13	0.00061383806848	0.00266548780668	0.0020516497382
+UniRef50_UPI0002378E6D	type II secretion system protein E	3.92166305184e-05	1.83717811655e-05	-2.08448493529e-05
+UniRef50_P32135	Inner membrane protein YihN	0.00179553623626	0.00113263184739	-0.00066290438887
+UniRef50_B7GVD0	LysR substrate binding domain protein	0.000247638574341	0.0118613511056	0.0116137125313
+UniRef50_A6M010	GCN5 related N acetyltransferase	0.000226491593311	0.00166791829766	0.00144142670435
+UniRef50_F8G3F6	TetR family transcriptional regulator	0.000965146910892	0.000284414162307	-0.000680732748585
+UniRef50_UPI00047242E7	3 hydroxybutyryl CoA dehydrogenase	1.47167077255e-05	3.03264893491e-05	1.56097816236e-05
+UniRef50_A8B6F6		3.55149838826e-05	2.53285854649e-05	-1.01863984177e-05
+UniRef50_C5L3X3	Cysteine synthase, putative	0.00807227220333	0.00120342180401	-0.00686885039932
+UniRef50_UPI0002EB3FDF	hypothetical protein	6.69042830817e-06	3.16499317672e-05	2.4959503459e-05
+UniRef50_Q6F7U5		0.000200790419604	0.00458029509603	0.00437950467643
+UniRef50_Q9I676	D hydantoinase dihydropyrimidinase	0.00511537562015	0.00130846340369	-0.00380691221646
+UniRef50_UPI00041336EE	alkylhydroperoxidase	6.76031610453e-05	5.01882416977e-05	-1.74149193476e-05
+UniRef50_Q3BPQ5		0.0016517012413	1.94127552044e-05	-0.0016322884861
+UniRef50_F7W5G6	WGS project CABT00000000 data, contig 2.30	9.08206131398e-05	2.532379795e-05	-6.54968151898e-05
+UniRef50_O34808	Uronate isomerase	0.000377522927091	0.00134205138309	0.000964528455999
+UniRef50_UPI000362A126	hypothetical protein	2.03913702504e-05	2.79775292489e-05	7.5861589985e-06
+UniRef50_UPI000373C086	hypothetical protein	9.60690850746e-06	0.000191478854448	0.000181871945941
+UniRef50_A6M385	Response regulator receiver protein	0.000279243089872	0.00160011816692	0.00132087507705
+UniRef50_UPI0004560391	hypothetical protein PFL1_05761	9.48782743802e-06	1.03893234915e-05	9.0149605348e-07
+UniRef50_D6SI05		9.45418269506e-05	7.19506100539e-05	-2.25912168967e-05
+UniRef50_W7VQI3	Basic proline rich protein	0.000324458933387	0.000233759924953	-9.0699008434e-05
+UniRef50_C1AFW3	Cobyrinic acid a,c diamide adenosyltransferase	0.000420988091661	0.00615147218567	0.00573048409401
+UniRef50_UPI000474482D	hypothetical protein, partial	4.8799441215e-05	7.01148922844e-05	2.13154510694e-05
+UniRef50_Q97IA9	UPF0348 protein CA_C1741	0.000530770698644	0.00136149150242	0.000830720803776
+UniRef50_UPI00042BA8AC	PREDICTED	4.20936786899e-06	8.03451239949e-06	3.8251445305e-06
+UniRef50_UPI0001BC2D00	helicase	1.83468362206e-05	1.72958481906e-05	-1.05098803e-06
+UniRef50_P21517	Maltodextrin glucosidase	0.00128397278196	0.000468616028117	-0.000815356753843
+UniRef50_H3VA72	PF04394 family protein	0.0034541003871	0.001163868767	-0.0022902316201
+UniRef50_UPI00044163EB	hypothetical protein PUNSTDRAFT_130809	3.15292419561e-06	1.42937091592e-05	1.11407849636e-05
+UniRef50_E3CRS2		6.67433513938e-05	0.000100156663863	3.34133124692e-05
+UniRef50_Q6FC54	DNA mismatch repair protein MutS	4.44101163304e-05	0.00707147443315	0.00702706431682
+UniRef50_UPI00032905A5	PREDICTED	3.68416892952e-05	2.85016180189e-06	-3.39915274933e-05
+UniRef50_E5API3	Transposase	0.000221659388509	1.12396165602e-05	-0.000210419771949
+UniRef50_Q3IUX0		0.00886254944158	0.0308796085115	0.0220170590699
+UniRef50_UPI00047647D3	hypothetical protein	0.00910473193407	0.00054309287487	-0.0085616390592
+UniRef50_O27047	tRNA 2 agmatinylcytidine synthetase TiaS	0.00282869476521	0.000669285643586	-0.00215940912162
+UniRef50_E3A3J4	Fimbrial subunit CupA4	0.000657234504483	0.000662817636785	5.583132302e-06
+UniRef50_UPI00047BE124	sulfite oxidase	5.79121391884e-05	1.67979497185e-05	-4.11141894699e-05
+UniRef50_P54954	Probable amino acid import ATP binding protein YxeO	8.15265684097e-05	0.00382811443517	0.00374658786676
+UniRef50_Q9X3Y6	DNA gyrase subunit B	0.000214882968851	0.00511277747173	0.00489789450288
+UniRef50_UPI000381C95D	hypothetical protein	1.96172913023e-05	1.16112093236e-05	-8.0060819787e-06
+UniRef50_N8PPS0		0.000383372504894	0.00848735799787	0.00810398549298
+UniRef50_Q2S2A1	Imidazoleglycerol phosphate dehydratase	0.0062062804444	0.00280114894422	-0.00340513150018
+UniRef50_F2F5B1	Predicted acetamidase formamidase	0.00142387186085	0.000770110546665	-0.000653761314185
+UniRef50_P75859		0.00240530100595	0.000393755606923	-0.00201154539903
+UniRef50_C6SRL3		0.00495608320902	0.00113958131605	-0.00381650189297
+UniRef50_P58356	Sensor protein TorS	0.00366918755646	0.000363692462295	-0.00330549509416
+UniRef50_M2HZ79	Putative transposase, IS150 like protein 	0.00109552298365	0.00127724543838	0.00018172245473
+UniRef50_A0A017HPG3		0.000904025779242	0.000356942450676	-0.000547083328566
+UniRef50_P20712	Bifunctional dihydrofolate reductase thymidylate synthase	5.12073118583e-06	2.4129427053e-05	1.90086958672e-05
+UniRef50_Q48BK0	Glucans biosynthesis protein D	1.53915406961e-05	1.52418596176e-05	-1.496810785e-07
+UniRef50_K7S7X3		1.48883121388e-05	2.02888098596e-05	5.4004977208e-06
+UniRef50_C8RX73	Flagellar FlaF family protein	0.000167318378477	0.000165757425253	-1.560953224e-06
+UniRef50_Q5FUN5	50S ribosomal protein L32	0.00209714438251	0.000978950403971	-0.00111819397854
+UniRef50_Q3JHB3		3.27857395839e-05	7.34097109433e-05	4.06239713594e-05
+UniRef50_C6S564	ATPase involved in chromosome partitioning	0.00011257037441	0.00416988611967	0.00405731574526
+UniRef50_B0VRQ2		7.1000499465e-05	0.00646945647554	0.00639845597608
+UniRef50_F9WBG1	WGS project CAEQ00000000 data, annotated contig 2102 	6.10418093335e-07	1.18630956615e-06	5.75891472815e-07
+UniRef50_M9VFS0	Beta galactosidase	0.000123862344655	0.00633195477416	0.00620809242951
+UniRef50_UPI00038210EB	hypothetical protein	0.000237210850672	4.61895850905e-05	-0.000191021265582
+UniRef50_Q5XAF5	PTS system mannose specific EIIAB component	0.00552220298693	0.00554790947272	2.570648579e-05
+UniRef50_UPI0003B66035	preprotein translocase subunit TatA	9.55732753513e-05	6.86300217818e-05	-2.69432535695e-05
+UniRef50_A8LLI4	Transcriptional regulator	0.0143903698112	0.000388574612093	-0.0140017951991
+UniRef50_UPI00036B21D8	hypothetical protein	1.18102176627e-05	8.63653118435e-06	-3.17368647835e-06
+UniRef50_P0A9G7	Isocitrate lyase	0.00406611707766	0.0364770124365	0.0324108953588
+UniRef50_Q726S7	Phosphate acetyltransferase	3.82973365645e-06	1.31027200223e-05	9.27298636585e-06
+UniRef50_Q57083	HTH type transcriptional regulator PerR	0.00330879058509	0.0015641985692	-0.00174459201589
+UniRef50_N4K7E1	Intergenic region domain protein	0.000526200647601	0.0006396751737	0.000113474526099
+UniRef50_UPI00029A45C7	alkyl hydroperoxide reductase  thiol specific antioxidant  mal allergen	6.75623760359e-06	0.00033362896853	0.000326872730926
+UniRef50_P0AEX1	1 phosphofructokinase	0.00166472052111	0.000496883622962	-0.00116783689815
+UniRef50_J9CDN0		2.25505843576e-05	0.000186497259647	0.000163946675289
+UniRef50_Q9I399		0.000228569321711	0.000416917701458	0.000188348379747
+UniRef50_D8JJR4	Indoleacetamide hydrolase (Indole 3 acetamidehydrolase)	9.92513555255e-05	0.00832622448222	0.00822697312669
+UniRef50_UPI00039D5255	cation	5.28631549336e-05	9.35584788275e-05	4.06953238939e-05
+UniRef50_UPI000369419C	hypothetical protein	3.05585062349e-07	4.39177225311e-06	4.08618719076e-06
+UniRef50_UPI00040205B3	hypothetical protein	1.77045770218e-05	2.59565185919e-05	8.2519415701e-06
+UniRef50_UPI0002DD9DEF	hypothetical protein	1.98681123168e-06	0.000397944536964	0.000395957725732
+UniRef50_Q3A6U9	Flotillin band_7_stomatin like domain protein	0.000379446938613	0.00388060305515	0.00350115611654
+UniRef50_H2J1V2	ABC type dipeptide oligopeptide nickel transport system, permease component	0.0104684002547	0.00154426802674	-0.00892413222796
+UniRef50_B0R6S2	Glycerol kinase	9.40084142776e-06	8.94217569414e-05	8.00209155136e-05
+UniRef50_UPI000345EF10	hypothetical protein	2.09841306288e-05	4.23716354448e-05	2.1387504816e-05
+UniRef50_UPI00035FBF65	hypothetical protein	9.62833370623e-06	0.000311324140237	0.000301695806531
+UniRef50_R9SJL7	Precorrin 6y C5,15 methyltransferase  CbiE	0.00276703466835	0.00220302988858	-0.00056400477977
+UniRef50_UPI0004714D3A	NADH dehydrogenase	0.000240732262149	0.000191502405819	-4.922985633e-05
+UniRef50_W9A1H3		0.000141607432314	0.000161604499835	1.9997067521e-05
+UniRef50_Q0RAT5	Spermidine putrescine import ATP binding protein PotA	5.54537504897e-05	6.35948160311e-05	8.1410655414e-06
+UniRef50_W7HYY6		2.89944484927e-06	3.5577540296e-05	3.26780954467e-05
+UniRef50_UPI000470BDCC	ABC transporter permease	9.59655943502e-05	2.47907956537e-05	-7.11747986965e-05
+UniRef50_M9VFR5	D alanine  D alanine ligase	0.000434178863226	0.00404067806697	0.00360649920374
+UniRef50_I0EM51	Zinc protease	8.75160715986e-05	0.00355021791245	0.00346270184085
+UniRef50_A6LYZ9	Peptidase C45, acyl coenzyme A	0.000103610060989	0.00103244253139	0.000928832470401
+UniRef50_B0I1W2		0.00738657644376	0.00877093063844	0.00138435419468
+UniRef50_Q8CS09	DNA topoisomerase	0.0100096381826	0.00315384583435	-0.00685579234825
+UniRef50_A9CR98		0.005501777326	0.000939029469613	-0.00456274785639
+UniRef50_D4U0U9	Cell wall binding repeat protein	2.16064499154e-05	0.000867345646852	0.000845739196937
+UniRef50_A9CR91		0.000775656141478	0.00158205377784	0.000806397636362
+UniRef50_A0A023S1K2	ABC transporter substrate binding protein	0.000487586068939	0.00813239015291	0.00764480408397
+UniRef50_UPI0003B30E52	organic solvent ABC transporter ATP binding protein	9.79427308235e-05	2.7827318037e-05	-7.01154127865e-05
+UniRef50_Q9I024		7.95767266761e-06	0.000267427461059	0.000259469788391
+UniRef50_Q52282	Putative protein KleG	8.69561404066e-05	0.00111536420528	0.00102840806487
+UniRef50_UPI0004784EFD	hypothetical protein, partial	1.40560501389e-05	2.03070045285e-06	-1.20253496861e-05
+UniRef50_UPI000478461E	zinc binding protein	1.27069862803e-05	4.33439134787e-05	3.06369271984e-05
+UniRef50_D8JNP8	Xylanase chitin deacetylase	0.0003945667096	0.00837177758103	0.00797721087143
+UniRef50_UPI000248C70B	chemotaxis protein CheY	5.89487244187e-06	2.24819804161e-05	1.65871079742e-05
+UniRef50_P76056	Putative lambdoid prophage Rac integrase	0.00315295215498	0.00456038663251	0.00140743447753
+UniRef50_A6QIJ7	Endodeoxyribonuclease RusA	0.00974354191081	0.00101310797225	-0.00873043393856
+UniRef50_D3JD05	Spermidine N acetyltransferase	0.0114905674303	0.00963653962298	-0.00185402780732
+UniRef50_UPI00047076F4	hypothetical protein, partial	5.73127305683e-06	7.8917831603e-06	2.16051010347e-06
+UniRef50_Q7XUN3	OSJNBa0064M23.10 protein	8.87556271456e-05	1.04342488347e-05	-7.83213783109e-05
+UniRef50_A0A059DVD1		0.0001409944013	3.12750485673e-05	-0.000109719352733
+UniRef50_UPI000288E019	sulfate ABC transporter membrane protein	7.79318589304e-05	0.0011003091503	0.00102237729137
+UniRef50_UPI0003B6935E	hypothetical protein, partial	9.32422163195e-06	1.93674835256e-05	1.00432618937e-05
+UniRef50_Q0C1E4	NADH quinone oxidoreductase subunit D	3.79463021475e-05	7.18210537235e-05	3.3874751576e-05
+UniRef50_UPI000373A2A8	hypothetical protein	6.69850194074e-06	1.41749897706e-05	7.47648782986e-06
+UniRef50_S2TS61	Hydantoin utilization protein A	7.10570824329e-06	1.5850383438e-05	8.74467519471e-06
+UniRef50_W4PJR5	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.000213624823735	0.00019947411488	-1.4150708855e-05
+UniRef50_Q5SJB6	Membrane lipoprotein	0.000104374006137	0.0404368926637	0.0403325186576
+UniRef50_UPI0004702CE7	hypothetical protein, partial	1.06970698258e-05	0.000129899702666	0.00011920263284
+UniRef50_O07084	Cadmium, cobalt and zinc H K(+) antiporter	0.0140655539784	0.00468497082314	-0.00938058315526
+UniRef50_UPI0003F0E976	PREDICTED	4.71417691862e-06	7.29928382084e-07	-3.98424853654e-06
+UniRef50_UPI00037CFCEC	hypothetical protein	2.56147191602e-05	2.98218650096e-05	4.2071458494e-06
+UniRef50_UPI00047A74FB	hypothetical protein	1.26699819705e-05	2.39003794814e-05	1.12303975109e-05
+UniRef50_F4CWU8	Cell envelope related transcriptional attenuator	7.91737377942e-05	7.25037726058e-05	-6.6699651884e-06
+UniRef50_UPI0003724082	hypothetical protein	3.12326353603e-06	1.11746234723e-05	8.05135993627e-06
+UniRef50_A4X015		0.00231209691715	0.000518600874398	-0.00179349604275
+UniRef50_A5IQC1	LmbE family protein	0.0188806080329	0.00618837815922	-0.0126922298737
+UniRef50_A5ZX27		0.000150624019712	0.000228650594716	7.8026575004e-05
+UniRef50_Q989X5	Msl6246 protein	0.000211870472886	0.000311680074788	9.9809601902e-05
+UniRef50_P27241	Lipopolysaccharide core biosynthesis protein RfaZ	0.000976340616286	0.00178001823852	0.000803677622234
+UniRef50_UPI000468A625	ABC transporter ATP binding protein	2.96059481515e-05	1.26753101335e-05	-1.6930638018e-05
+UniRef50_L7WYU2	Aldo keto reductase	0.0153542038489	0.00637945666426	-0.00897474718464
+UniRef50_UPI0002ED3852	hypothetical protein	4.51884115782e-06	1.50426395766e-05	1.05237984188e-05
+UniRef50_B3HH44	Tail protein	1.67314421091e-05	1.9682711682e-05	2.9512695729e-06
+UniRef50_F5M3A2	Transposase IS116 IS110 IS902	0.00219003295135	0.00233164559305	0.0001416126417
+UniRef50_Q2NHQ3	Probable cobyrinic acid A,C diamide synthase	0.00289056898019	0.00111411570605	-0.00177645327414
+UniRef50_UPI000237D266	carboxymuconolactone decarboxylase	4.28729914398e-05	0.000110021053441	6.71480620012e-05
+UniRef50_D7CX06	Lysine biosynthesis enzyme LysX	0.000134977111625	0.0169099333639	0.0167749562523
+UniRef50_U1QU88	Rhamnan synthesis protein F	1.18882098503e-05	0.00332921994334	0.00331733173349
+UniRef50_W0R6T6	Glutamine  tRNA ligase	0.000118488940003	9.26726062326e-05	-2.58163337704e-05
+UniRef50_D6SHR9	C4 dicarboxylate transporter malic acid transport protein	0.00746210946698	0.000668772824989	-0.00679333664199
+UniRef50_UPI00036FEF96	hypothetical protein	2.65945332647e-06	5.4307625168e-05	5.16481718415e-05
+UniRef50_Q3JJE8	Oxidoreductase, short chain dehydrogenase reductase family	0.000931631409754	0.0090824130777	0.00815078166795
+UniRef50_UPI0004663F41	calcium binding protein, partial	4.65340251205e-05	6.45410108432e-05	1.80069857227e-05
+UniRef50_M2C9Y4		0.0046359595579	0.000702739344115	-0.00393322021378
+UniRef50_Q2CH95	ISSpo7, transposase	8.65420751798e-05	3.98931533181e-05	-4.66489218617e-05
+UniRef50_A8LQ48		3.28438982311e-05	9.46479144264e-05	6.18040161953e-05
+UniRef50_D4HAW2	ATPase histidine kinase DNA gyrase B HSP90 domain protein	0.000312156767467	0.00669283984319	0.00638068307572
+UniRef50_E8SJ70	Organic hydroperoxide resistance protein	0.00845402222539	0.00194442281051	-0.00650959941488
+UniRef50_Q8CRU1		0.0208980376172	0.00535415623644	-0.0155438813808
+UniRef50_R9YKU7	Na+ dependent nucleoside transporter family protein	0.0130965931634	0.00130294767671	-0.0117936454867
+UniRef50_UPI0004681F99	hypothetical protein	2.18201349041e-05	4.52877878434e-05	2.34676529393e-05
+UniRef50_Q83JF8		0.000770725451415	0.000617459040989	-0.000153266410426
+UniRef50_E8RC09		1.21507807391e-05	3.30418598477e-05	2.08910791086e-05
+UniRef50_Q8CRU7		0.00905912877877	0.00250111982835	-0.00655800895042
+UniRef50_Q8CRU6		0.0202551760532	0.00700439190925	-0.0132507841439
+UniRef50_UPI000468FB82	ATPase	8.09673416179e-05	4.98072205115e-06	-7.59866195667e-05
+UniRef50_Q6AAE4	Thiazole synthase	0.000294910928794	0.00589684684204	0.00560193591325
+UniRef50_F8DI84	ABC transporter, ATP binding protein	0.0078696013055	0.00512919794881	-0.00274040335669
+UniRef50_J9P994		0.000151128403931	0.000345113394584	0.000193984990653
+UniRef50_B0N8M0		5.72681403756e-05	2.67043850895e-05	-3.05637552861e-05
+UniRef50_P37353	2 succinylbenzoate  CoA ligase	0.00220631883784	0.00094224191637	-0.00126407692147
+UniRef50_D3H4R6		0.000318106170376	0.000481494628027	0.000163388457651
+UniRef50_A3K475		7.80425843399e-05	6.56087725053e-06	-7.14817070894e-05
+UniRef50_P76037	Putrescine importer PuuP	0.00300800385047	0.000710053935861	-0.00229794991461
+UniRef50_Q2W0K2	ATPase involved in chromosome partitioning	0.0132786698995	0.00169783033703	-0.0115808395625
+UniRef50_A0A017HBN8	Polyhydroxyalkanoate depolymerase, intracellular	0.000184538549911	3.13817029099e-05	-0.000153156847001
+UniRef50_A6LXH8	MORN repeat containing protein	0.000164601448628	0.00221318432562	0.00204858287699
+UniRef50_UPI00004C2754	COG1063	0.000118682454114	0.000251270480125	0.000132588026011
+UniRef50_P22825	PTS system sucrose specific EIIBC component	0.0179015994423	0.00437863971091	-0.0135229597314
+UniRef50_M9VJF8	Phosphate transport system permease protein PstA	0.000214480675479	0.00454799722793	0.00433351655245
+UniRef50_V6ZI12	Pyridoxal phosphate dependent enzyme family protein	7.90139290404e-06	8.64466728953e-06	7.4327438549e-07
+UniRef50_O58855	Orotate phosphoribosyltransferase	0.00328111795697	0.000348113994329	-0.00293300396264
+UniRef50_A5N2B2	Phage related protein	0.000495367129679	0.00143118211249	0.000935814982811
+UniRef50_B5YH68	3 phosphoshikimate 1 carboxyvinyltransferase	3.98276657448e-06	7.01631016675e-06	3.03354359227e-06
+UniRef50_A6LZC1	AraC type transcriptional regulator domain protein	0.00035687200642	0.00221010326777	0.00185323126135
+UniRef50_D6SEI0	Mannose 6 phosphate isomerase, class I	0.0220032198485	0.00870628829274	-0.0132969315558
+UniRef50_P15428	15 hydroxyprostaglandin dehydrogenase [NAD]	5.21341958627e-06	0.000270365116228	0.000265151696642
+UniRef50_Q4DJ07	Prostaglandin F synthase	0.00394190405067	0.00155506705056	-0.00238683700011
+UniRef50_Q53151	Flagellar M ring protein	0.000725442927608	0.000350083318107	-0.000375359609501
+UniRef50_J3M9R4		0.000175032143208	1.98746334431e-05	-0.000155157509765
+UniRef50_M8HET6	UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000794453930614	0.00218137384537	0.00138691991476
+UniRef50_D5RKR4		0.000153893664641	0.000484679163936	0.000330785499295
+UniRef50_A1KRZ2	Phosphate acyltransferase	0.000453526844223	0.00364821947194	0.00319469262772
+UniRef50_A0A014H8V3	Thi4 family protein	2.99328774418e-05	0.000540495024715	0.000510562147273
+UniRef50_O83092	Ribonucleoside diphosphate reductase subunit beta	0.000109734299089	0.00697558362287	0.00686584932378
+UniRef50_B4RLX4	DNA mismatch repair protein MutL	0.000133621742511	0.00283707314926	0.00270345140675
+UniRef50_X8C7Q8	Cell envelope related transcriptional attenuator domain protein	2.11802092254e-05	3.41231306189e-05	1.29429213935e-05
+UniRef50_F2E943	Predicted protein	0.000101244853536	0.000569742839604	0.000468497986068
+UniRef50_Q3J0Q8	Multisensor hybrid histidine kinase	0.00481944327022	0.00110707413718	-0.00371236913304
+UniRef50_Q57565	Signal recognition particle 54 kDa protein	0.00298199030185	0.000437834133528	-0.00254415616832
+UniRef50_UPI000474AE61	TetR family transcriptional regulator	1.82501648975e-05	8.07373830509e-05	6.24872181534e-05
+UniRef50_M7DFK4	 2 hydroxyglutaryl CoA dehydratase activator related protein	0.00589427502809	0.00350227862284	-0.00239199640525
+UniRef50_A0A038G1M9		0.000294123975044	0.00201150523929	0.00171738126425
+UniRef50_UPI00037E7CFC	hypothetical protein	1.1237851448e-05	5.65156145869e-06	-5.58628998931e-06
+UniRef50_UPI000424F639	hypothetical protein	1.28284449339e-05	2.02716643682e-05	7.4432194343e-06
+UniRef50_UPI0003B51DAD	aconitate hydratase	2.23554105722e-05	7.41590195195e-05	5.18036089473e-05
+UniRef50_UPI00047DF06C	RNA polymerase subunit sigma 24	9.49034262603e-05	6.90599778205e-05	-2.58434484398e-05
+UniRef50_J1B9G8		0.00164774944455	2.9344579425e-05	-0.00161840486512
+UniRef50_S4RE69		0.00013570348689	3.72843634866e-05	-9.84191234034e-05
+UniRef50_V9U3F4	Penicillin binding protein	0.000419767396092	0.00104802450963	0.000628257113538
+UniRef50_P26946		0.0100390637737	0.0039875222856	-0.0060515414881
+UniRef50_UPI0001B42DB2	3 methyl 2 oxobutanoate hydroxymethyltransferase, partial	0.000162202918645	4.98364829831e-05	-0.000112366435662
+UniRef50_G7ZME4	Acetyltransferase  family protein	0.00271225571149	0.00105470251856	-0.00165755319293
+UniRef50_I6SXG2		0.000680652124152	0.000992661193941	0.000312009069789
+UniRef50_J9P1W0		8.59253110526e-05	0.000181733357036	9.58080459834e-05
+UniRef50_UPI000478FE81	ATP dependent DNA helicase PcrA	1.23646480308e-05	1.18578432176e-05	-5.068048132e-07
+UniRef50_D4HCQ0		0.000569895014224	0.00193210233564	0.00136220732142
+UniRef50_R1DZ31		5.32492756502e-05	3.0180203605e-05	-2.30690720452e-05
+UniRef50_W4ZID1		9.96005247615e-05	0.00583932096293	0.00573972043817
+UniRef50_Q3IUV9	TraU	0.023698888244	0.00727457943765	-0.0164243088063
+UniRef50_A0A017SU62		0.000212497233934	0.00019642443403	-1.6072799904e-05
+UniRef50_R5RCL0	Chromosomal replication initiator	4.9091866844e-05	8.91886753909e-06	-4.01729993049e-05
+UniRef50_UPI0003738950	hypothetical protein	0.00014720435024	0.000174121796513	2.6917446273e-05
+UniRef50_UPI0003B5CBF4	thioredoxin	0.000295694953917	0.000181200916148	-0.000114494037769
+UniRef50_A7IGI6	Appr 1 p processing domain protein	1.21413645436e-05	0.000179107407591	0.000166966043047
+UniRef50_A0A059LGP9		6.09503749491e-05	0.0005346945478	0.000473744172851
+UniRef50_P35886	DNA gyrase subunit B	0.000452024604441	0.00932271560414	0.0088706909997
+UniRef50_Q6C7L4	Thioredoxin reductase	5.86665245226e-05	2.81184696662e-05	-3.05480548564e-05
+UniRef50_K0B2S0		0.000245120771981	0.00511086831627	0.00486574754429
+UniRef50_UPI000360C821	MULTISPECIES	1.68230764177e-05	4.81168088911e-05	3.12937324734e-05
+UniRef50_UPI00036ED5A7	hypothetical protein	3.41519815276e-05	7.73957714307e-06	-2.64124043845e-05
+UniRef50_W0IKU6		5.52633853587e-05	6.6461075653e-05	1.11976902943e-05
+UniRef50_I4MVU8	Membrane protein	0.000214690793282	5.948567076e-05	-0.000155205122522
+UniRef50_V4R951		0.000126073244041	0.000273128680499	0.000147055436458
+UniRef50_Q8FJC7	DNA translocase FtsK	2.97780164762e-05	9.53302382989e-05	6.55522218227e-05
+UniRef50_UPI00040EF117	hypothetical protein	0.000151860625829	2.49074582914e-05	-0.000126953167538
+UniRef50_M4X643	SAM dependent methyltransferase	0.000391946617829	0.000298059150193	-9.3887467636e-05
+UniRef50_H6VX66		0.000157625183536	0.0109747634241	0.0108171382406
+UniRef50_B8IA33	Fumarylacetoacetate  hydrolase	0.0160042483505	0.00130551539799	-0.0146987329525
+UniRef50_A1T726		2.28465553048e-05	4.17149733653e-05	1.88684180605e-05
+UniRef50_T1YCU2	Siderophore synthase	0.00412571744192	0.000995686157226	-0.00313003128469
+UniRef50_Q85FX6	Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	4.55765306074e-05	2.6282608798e-05	-1.92939218094e-05
+UniRef50_I1ZJT5	Competence protein ComYD	1.12681524106e-05	4.25625392314e-05	3.12943868208e-05
+UniRef50_P45857	Acyl CoA dehydrogenase	0.00120863770361	0.00612752978245	0.00491889207884
+UniRef50_Q3JIW0		2.14590229815e-05	0.000110696815719	8.92377927375e-05
+UniRef50_F8M7U6	PE PGRS family protein	5.8006759245e-06	6.03249372757e-05	5.45242613512e-05
+UniRef50_F4D588	Type I restriction modification system, M subunit	0.000139486422152	0.00297363532628	0.00283414890413
+UniRef50_UPI0002484AC1	patatin family phospholipase	1.07279676391e-05	3.65023817433e-05	2.57744141042e-05
+UniRef50_Q57609	GTP cyclohydrolase III	0.00191365931277	0.00186878444584	-4.487486693e-05
+UniRef50_S5XQ93		8.56010614182e-05	3.01400843818e-05	-5.54609770364e-05
+UniRef50_Q8DBE9	Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.00388600185752	0.0030267787823	-0.00085922307522
+UniRef50_J1LSW8		0.000252349393555	0.0111318420207	0.0108794926271
+UniRef50_U4UXP2		8.67849896899e-06	2.58459573864e-06	-6.09390323035e-06
+UniRef50_A4VYZ2	ABC type sugar transport system, periplasmic component	0.00011005422415	0.000588996451395	0.000478942227245
+UniRef50_Q73WG1	Serine hydroxymethyltransferase	0.0388325848407	0.0808033939056	0.0419708090649
+UniRef50_Q4A0F8	ABC type transport system involved in lipoprotein release permease component	0.0229243076733	0.00431996528257	-0.0186043423907
+UniRef50_D9RM99	Phage N acetylglucosaminidase	0.0149220238362	0.00100972494741	-0.0139122988888
+UniRef50_A1A081	50S ribosomal protein L5	0.0167610836704	0.00301571026798	-0.0137453734024
+UniRef50_P44839	RutC family protein HI_0719	0.00146867967203	0.000217259795995	-0.00125141987604
+UniRef50_V7EMQ8		1.48617681167e-05	6.96244050155e-06	-7.89932761515e-06
+UniRef50_UPI0002653244	PREDICTED	0.000204309426951	0.00015149470491	-5.2814722041e-05
+UniRef50_UPI000362C6BE	hypothetical protein	7.01205917876e-06	0.000135489938019	0.00012847787884
+UniRef50_Q6D734	Fe ions import ATP binding protein FbpC 1	0.00397103455162	0.00144373426971	-0.00252730028191
+UniRef50_P08064	Succinate dehydrogenase cytochrome b558 subunit	0.0195262250668	0.00478029374548	-0.0147459313213
+UniRef50_Q59638	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.0006128088198	0.000124714807971	-0.000488094011829
+UniRef50_UPI0003C1126B	PREDICTED	1.37646937881e-05	6.01738145983e-06	-7.74731232827e-06
+UniRef50_Q3ACC4	LexA repressor	9.14673504851e-05	1.92803224066e-05	-7.21870280785e-05
+UniRef50_Q48QB2	Fatty acid desaturase	0.000398314730706	0.000394708023921	-3.606706785e-06
+UniRef50_UPI0003B5C4DC	30S ribosomal protein S3	0.000340321676898	0.000595262499083	0.000254940822185
+UniRef50_O31632	Cystathionine beta lyase MetC	6.96312354554e-05	0.000509088227462	0.000439456992007
+UniRef50_Q2G2P8	ADP dependent  NAD(P)H hydrate dehydratase	0.0213170531994	0.0063032729479	-0.0150137802515
+UniRef50_K7SJI3	Transporter, major facilitator family protein	8.4574904144e-05	0.00721192155396	0.00712734664982
+UniRef50_UPI00035DD1FA	diaminopimelate decarboxylase, partial	5.61477189877e-05	0.0024698542888	0.00241370656981
+UniRef50_Q58094	Putative transketolase N terminal section	0.000206005975062	0.000481678458582	0.00027567248352
+UniRef50_A1WVC8	DNA directed RNA polymerase subunit beta	6.58293198928e-06	1.33242092168e-05	6.74127722752e-06
+UniRef50_UPI000347C25A	hypothetical protein	2.93161369941e-06	1.1913038087e-06	-1.74030989071e-06
+UniRef50_Q9ZLS9	Transcription termination factor Rho	0.0131763709854	0.0153368314818	0.0021604604964
+UniRef50_T1Y682	Transporter	0.0248764651984	0.00655874741448	-0.0183177177839
+UniRef50_H1Z450	AMP dependent synthetase and ligase	0.00229690689784	0.000842616402564	-0.00145429049528
+UniRef50_Q58575	Chorismate synthase	4.79627776568e-06	2.53921610327e-05	2.0595883267e-05
+UniRef50_B9KRV4	Outer membrane protein	0.0107642216899	0.000738291762994	-0.0100259299269
+UniRef50_I4D2I9	Calcium proton exchanger Cax	0.00011257037441	0.000955485161652	0.000842914787242
+UniRef50_F3WH46	Pertactin family protein	0.00179063917586	0.000228337658653	-0.00156230151721
+UniRef50_F8G2I2	ppGpp synthetase I, SpoT RelA	0.000935885431234	0.00106640765046	0.000130522219226
+UniRef50_Q45223	3 hydroxybutyryl CoA dehydrogenase	0.000174933492712	0.00357056113726	0.00339562764455
+UniRef50_Q9RYC5		0.000116030529356	0.0574548466078	0.0573388160784
+UniRef50_F9Y8G5	4 hydroxybenzoate polyprenyl transferase	0.0061269702069	0.00173893788458	-0.00438803232232
+UniRef50_Q8DW77		0.00526456765524	0.00175934535362	-0.00350522230162
+UniRef50_Q8DW75		0.00246584663068	0.000965087271884	-0.0015007593588
+UniRef50_Q6FF92	50S ribosomal protein L10	0.00453623678777	0.012840420261	0.00830418347323
+UniRef50_Q8DW79		0.000462227741456	0.00101251441781	0.000550286676354
+UniRef50_P18416	Transposase for transposon Tn552	0.103830460453	0.0242464343416	-0.0795840261114
+UniRef50_R7B660	Dihydrodipicolinate reductase domain protein	0.00520935606531	0.00241088508415	-0.00279847098116
+UniRef50_UPI00046F0297	hypothetical protein	2.62615157897e-05	1.22483568634e-05	-1.40131589263e-05
+UniRef50_UPI000475E0B3	hypothetical protein	2.32746264998e-05	5.84427383992e-05	3.51681118994e-05
+UniRef50_UPI000382CD04	hypothetical protein, partial	0.000103012012927	1.63515756245e-05	-8.66604373025e-05
+UniRef50_Q7VFL0	Lysine  tRNA ligase	0.00016873147673	0.00404087269238	0.00387214121565
+UniRef50_Q9ZKB2	Glucose 6 phosphate 1 dehydrogenase	3.16108344428e-05	0.00338097321378	0.00334936237934
+UniRef50_P21264	Phosphoribosylaminoimidazole carboxylase	2.02610606337e-05	2.54830741858e-05	5.2220135521e-06
+UniRef50_P96060	2 aminoethylphosphonate  pyruvate transaminase	1.7863811812e-05	0.000632711060134	0.000614847248322
+UniRef50_L7ZNE5	ABC transporter ATP binding protein	0.000214374214012	0.000996377327045	0.000782003113033
+UniRef50_A8Z2F6		0.000920697533784	0.00135524898288	0.000434551449096
+UniRef50_T9L0J3		0.00179108882815	0.000199589497337	-0.00159149933081
+UniRef50_I4EST6		0.000500203806966	5.82184256462e-05	-0.00044198538132
+UniRef50_R5P601	Anthranilate synthase component II	1.33740539413e-05	4.2797390804e-05	2.94233368627e-05
+UniRef50_B1ZAH8	Binding protein dependent transport systems inner membrane component	0.000290181611547	0.00618268683156	0.00589250522001
+UniRef50_A3PS89	Alpha beta hydrolase fold	0.0325916959504	0.00400769519733	-0.0285840007531
+UniRef50_A0A011M2C2	Lipopolysaccharide export system ATP binding protein LptB	1.22354986738e-05	5.78794618054e-05	4.56439631316e-05
+UniRef50_D3V7P3	Multidrug resistance protein MdtB	0.000847193707175	0.00018700475792	-0.000660188949255
+UniRef50_B7M9X6	Adenosine deaminase	0.00293612082579	0.00760526813175	0.00466914730596
+UniRef50_UPI000370A178	hypothetical protein	1.11099132776e-05	2.63773023535e-05	1.52673890759e-05
+UniRef50_J9YXD5	Amino acid amide ABC transporter membrane protein, 2, HAAT family	0.0055638105715	0.00135565897634	-0.00420815159516
+UniRef50_E9UN53		0.000163716853074	4.09078992645e-06	-0.000159626063148
+UniRef50_O83658	Spermidine putrescine import ATP binding protein PotA	1.03368087302e-05	9.12794824028e-06	-1.20886048992e-06
+UniRef50_E1W4Y0		1.51741188907e-05	0.000554940802781	0.00053976668389
+UniRef50_E1W4Y6		0.000210203892207	0.000266183633431	5.5979741224e-05
+UniRef50_Q8E4F9	Probable tRNA sulfurtransferase	0.00742815332759	0.00726385694108	-0.00016429638651
+UniRef50_B7GPE3	Ribosomal RNA small subunit methyltransferase A	0.000370070964026	0.00452618126687	0.00415611030284
+UniRef50_UPI000359998F	PREDICTED	2.54441259526e-06	5.0551769622e-07	-2.03889489904e-06
+UniRef50_R1DHJ6		0.000369869795461	0.000226485232255	-0.000143384563206
+UniRef50_Q97FC1	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase 2	0.000546908666088	0.00142168546925	0.000874776803162
+UniRef50_H1C309	Cellulose synthase operon protein C	0.000566772463717	0.000637374183882	7.0601720165e-05
+UniRef50_U6KCN1		4.6561534076e-06	4.27020120015e-05	3.80458585939e-05
+UniRef50_UPI000371DD5B	hypothetical protein	2.47538444773e-05	8.34763287353e-05	5.8722484258e-05
+UniRef50_E8XUV9	Lysozyme	0.000406508886758	8.70284985912e-05	-0.000319480388167
+UniRef50_U5SV18		5.33913109406e-05	0.000121300913257	6.79096023164e-05
+UniRef50_R7CJA9	Binding protein dependent transport system inner membrane component	0.000514506176723	0.000902026531548	0.000387520354825
+UniRef50_UPI00037382D8	ABC transporter permease	3.97907249998e-05	0.000190860152584	0.000151069427584
+UniRef50_M9R962		0.000165550127556	3.60480907106e-05	-0.000129502036845
+UniRef50_Q9RS94		0.000152212092278	0.0209032626466	0.0207510505543
+UniRef50_B0BPX9	DNA polymerase IV	0.00252879355514	0.000232519409964	-0.00229627414518
+UniRef50_Q9RS99		0.000137751984987	0.0415124518216	0.0413746998366
+UniRef50_UPI0004753E7E	polyamine ABC transporter substrate binding protein	2.62758037287e-05	1.768057318e-05	-8.5952305487e-06
+UniRef50_Q5FL50	Phosphoglycerate kinase	3.68887929331e-06	3.6694862858e-05	3.30059835647e-05
+UniRef50_B7H3D4	FhuE receptor	6.69697200815e-05	0.00362576379561	0.00355879407553
+UniRef50_G0VME5	Citrate transporter	0.000784722294375	0.00262078420304	0.00183606190866
+UniRef50_A5UMK8	Arginine  tRNA ligase	0.00315356095886	0.00115189207294	-0.00200166888592
+UniRef50_Q3JUL5	Benzoate transport protein	0.000231770764675	0.000954764302493	0.000722993537818
+UniRef50_Q9JZR3	23S rRNA  methyltransferase RlmB	0.000153034860351	0.00294028169751	0.00278724683716
+UniRef50_UPI0003810BBD	hypothetical protein	0.000116379072422	3.26480020593e-05	-8.37310703627e-05
+UniRef50_P63342	Inner membrane transport protein YqeG	0.00295335552993	0.00138752174296	-0.00156583378697
+UniRef50_V6LYC7		0.000219895167655	0.000403932776796	0.000184037609141
+UniRef50_Q55905	Phosphoenolpyruvate synthase	9.60800511635e-05	0.0500040139396	0.0499079338884
+UniRef50_M4X1W1		5.41292857132e-05	0.00506257208906	0.00500844280335
+UniRef50_F2A9W7		0.000431543014717	0.000124333182531	-0.000307209832186
+UniRef50_F2A9W6		0.000485496315761	0.000265229639724	-0.000220266676037
+UniRef50_K7A9D1	Inner membrane transport permease	0.000248346045292	0.00349636270585	0.00324801666056
+UniRef50_UPI00035C805A	hypothetical protein	5.97272120369e-06	7.34791364041e-06	1.37519243672e-06
+UniRef50_UPI000369165B	hypothetical protein	5.08913105609e-06	6.90038095399e-06	1.8112498979e-06
+UniRef50_P76002	Inhibitor of g type lysozyme	0.00125555758451	0.000456675317307	-0.000798882267203
+UniRef50_R5T4K7	Basic membrane protein A immunodominant antigen P39	0.000518420611702	0.00234080195559	0.00182238134389
+UniRef50_K2GDX3		0.000255532586744	7.5076281894e-05	-0.00018045630485
+UniRef50_Q487E8	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.43705646096e-05	0.000118606543196	0.000104235978586
+UniRef50_P46139	Probable diguanylate cyclase YfiN	0.00282136737505	8.83149217962e-06	-0.00281253588287
+UniRef50_UPI00046CFF5C	sodium	1.12647131358e-05	0.000852755529669	0.000841490816533
+UniRef50_UPI00046EF3B8	hypothetical protein, partial	6.96024129732e-05	0.000169024971301	9.94225583278e-05
+UniRef50_A3PQB2	Transcriptional regulator, LacI family	0.00379763213736	0.000542727143109	-0.00325490499425
+UniRef50_UPI0004632850	LysR family transcriptional regulator	4.40900824294e-05	1.86738286168e-05	-2.54162538126e-05
+UniRef50_Q6DB92	Low affinity potassium transport system protein kup	6.68116794457e-05	0.00314883151536	0.00308201983591
+UniRef50_UPI000287F836	transposon Tn917 resolvase	1.08478437167e-05	7.32555037242e-05	6.24076600075e-05
+UniRef50_C1DCE3	Probable chemoreceptor glutamine deamidase CheD	0.000124801105618	1.62496523971e-05	-0.000108551453221
+UniRef50_U5MLL1	3 methylornithine synthase PylB	0.000209326796037	0.00209783918011	0.00188851238407
+UniRef50_UPI0003B7B4C4	ABC transporter	1.04254286395e-05	1.73081239331e-05	6.8826952936e-06
+UniRef50_Q1AU97	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	1.61268729234e-05	2.73529827372e-05	1.12261098138e-05
+UniRef50_K8B033		3.05646799428e-05	6.87953323833e-05	3.82306524405e-05
+UniRef50_C5N619	Hydrolase, HD family	0.0297202808879	0.00287591532902	-0.0268443655589
+UniRef50_UPI00036B8F43	hypothetical protein	0.000120879174583	0.00232444794617	0.00220356877159
+UniRef50_P24893	Cytochrome c oxidase subunit 1	1.71276514181e-05	3.06467247363e-05	1.35190733182e-05
+UniRef50_A1UR85	Holliday junction ATP dependent DNA helicase RuvA	2.34458687644e-05	1.11701225268e-05	-1.22757462376e-05
+UniRef50_R4QAT2	Membrane protein required for colicin V production	0.000166783205682	0.00130056671512	0.00113378350944
+UniRef50_P96676		0.00139541660183	0.000307621567909	-0.00108779503392
+UniRef50_A4WVS1		0.000346808505299	0.000172410817933	-0.000174397687366
+UniRef50_A6U922		8.29481660539e-05	3.63042056884e-05	-4.66439603655e-05
+UniRef50_X1YLX5		1.18094687116e-05	3.27676245146e-05	2.0958155803e-05
+UniRef50_Q5HKG8	Conserved domain protein	0.00485406931504	0.000415939021406	-0.00443813029363
+UniRef50_Q8CP81	Maltose maltodextrin transport permease	0.00745959039993	0.00578483868586	-0.00167475171407
+UniRef50_M4ZKD5	ADP heptose lps heptosyltransferase II	0.000221139773364	0.00299946755119	0.00277832777783
+UniRef50_B4RNI0		0.000149203948168	0.0058996704105	0.00575046646233
+UniRef50_F4MUN4	DnaK suppressor protein	0.000147134128787	0.000195380462006	4.8246333219e-05
+UniRef50_E4RMK3	Molybdenum cofactor synthesis domain protein	0.000486569551453	0.00179745599668	0.00131088644523
+UniRef50_P52235	Thiol	0.00294465705472	0.00221978428959	-0.00072487276513
+UniRef50_A7Z1S6	Cadmium, cobalt and zinc H K(+) antiporter	0.00829467770501	0.000836793205583	-0.00745788449943
+UniRef50_G2J491	Formate dehydrogenase, alpha subunit	0.00628879025298	0.0030187419961	-0.00327004825688
+UniRef50_O54408	GTP pyrophosphokinase	2.67326664106e-05	0.00130467029473	0.00127793762832
+UniRef50_D2NTC3	Threonine dehydrogenase	0.000402659675209	0.0113946600073	0.0109920003321
+UniRef50_G3XN37		0.00101731439954	0.00258903289983	0.00157171850029
+UniRef50_T2EB50	AAA domain family protein	0.000625066984903	0.000129430257935	-0.000495636726968
+UniRef50_B0T9Q7	Cobyrinic acid ac diamide synthase	7.23954200121e-06	9.66289236382e-05	8.9389381637e-05
+UniRef50_F9Y9C1		0.00010417855499	2.57524749425e-06	-0.000101603307496
+UniRef50_A3SVY2		0.000420892033417	0.00014234586935	-0.000278546164067
+UniRef50_Q6FEG4	Acyl CoA dehydrogenase	0.00044092189141	0.00131965177566	0.00087872988425
+UniRef50_F5X205	GNAT family acetyltransferase	0.00287310901502	0.000333063953224	-0.0025400450618
+UniRef50_Q8TQ68	Aspartate  tRNA ligase	0.00287598294181	0.0019677597241	-0.00090822321771
+UniRef50_W4K1D0		4.2231207862e-05	8.58672097447e-05	4.36360018827e-05
+UniRef50_B5EXE3	UPF0758 protein YicR	0.00254445436623	0.000877821463386	-0.00166663290284
+UniRef50_D0S9A9	Excinuclease ABC, A subunit family protein 	6.20494840218e-07	3.40172926792e-05	3.3396797839e-05
+UniRef50_A2BXS2		0.000167762912531	6.03940638348e-05	-0.000107368848696
+UniRef50_G8PGZ1	Rubrerythrin	0.00114742725143	0.000399411518114	-0.000748015733316
+UniRef50_H3WY71		0.000154899397491	0.000101151284814	-5.3748112677e-05
+UniRef50_Q8X6C4	Xanthine dehydrogenase iron sulfur binding subunit	0.0057262632188	9.55719785765e-06	-0.00571670602094
+UniRef50_UPI0001AF2B31	LysR family transcriptional regulator	0.000455807503724	0.000280865905817	-0.000174941597907
+UniRef50_F8DHP6	ABC transporter, permease protein	0.00601260649746	0.00554254826549	-0.00047005823197
+UniRef50_C9LYN2	Diaminopimelate decarboxylase	0.00798364433565	0.00147871398556	-0.00650493035009
+UniRef50_Q3JLX9		6.13355565863e-06	7.83798525705e-06	1.70442959842e-06
+UniRef50_F6AGQ7	HemY domain protein	0.000314791769769	0.000382754946241	6.7963176472e-05
+UniRef50_Q61503	5 nucleotidase	2.7313881346e-05	2.68261863265e-05	-4.876950195e-07
+UniRef50_G7SHI8	Phosphatase	0.0073741049642	0.00261223632849	-0.00476186863571
+UniRef50_C4RLJ2		4.33797350561e-05	6.13989249169e-05	1.80191898608e-05
+UniRef50_W0H5K7	Serine threonine protein kinase	0.00075092718418	0.000179160791827	-0.000571766392353
+UniRef50_A0A055F483	PE PGRS family protein PE_PGRS6	5.24269515353e-06	4.69783558164e-05	4.17356606629e-05
+UniRef50_H1LB61		6.89648139183e-05	1.01050670348e-05	-5.88597468835e-05
+UniRef50_W4UK26		0.000235222506455	0.00449592019857	0.00426069769212
+UniRef50_UPI000470BCA6	RNA polymerase sigma 70 factor, partial	0.00024508163787	7.43715148851e-05	-0.000170710122985
+UniRef50_A7K529	Trap transporter solute receptor, taxi family	0.0152917753311	0.00103865457336	-0.0142531207577
+UniRef50_Q9SIB9	Aconitate hydratase 2, mitochondrial	0.000149202737921	0.0442865745655	0.0441373718276
+UniRef50_UPI000375E9C9	hypothetical protein	5.10851337995e-06	1.05968755035e-05	5.48836212355e-06
+UniRef50_O29757	Exosome complex component Rrp41	0.00392500596221	0.00157441357557	-0.00235059238664
+UniRef50_Q9JRT1	Phosphoadenosine phosphosulfate reductase	9.09720862102e-06	0.00508060624088	0.00507150903226
+UniRef50_UPI000467A91C	alkaline phosphatase, partial	2.40574183757e-05	0.000139525093504	0.000115467675128
+UniRef50_Q3IWD8		0.00383402105623	0.000366853049924	-0.00346716800631
+UniRef50_UPI000255A89F	type IV pilus biogenesis stability protein PilW	4.7897552721e-06	1.81736912425e-05	1.33839359704e-05
+UniRef50_UPI0003B2F6BE	aspartyl glutamyl tRNA amidotransferase subunit B	1.71966044055e-05	4.56949446645e-05	2.8498340259e-05
+UniRef50_UPI000376A46D	hypothetical protein	6.40214219808e-06	3.80909968804e-05	3.16888546823e-05
+UniRef50_P44914	dTDP glucose 4,6 dehydratase	7.79676901949e-06	1.66338729443e-05	8.83710392481e-06
+UniRef50_UPI000472A285	multidrug ABC transporter ATP binding protein, partial	4.05435192647e-06	1.36816707216e-05	9.62731879513e-06
+UniRef50_Q8XQG4	L aspartate oxidase 2	4.19091525915e-06	8.74353739104e-06	4.55262213189e-06
+UniRef50_UPI000379010F	hypothetical protein	2.1441090736e-05	2.80008316861e-05	6.5597409501e-06
+UniRef50_G7U9P9	Transcriptional regulator	0.00036296729697	0.00405385045661	0.00369088315964
+UniRef50_R4ZW20	YfaA	0.0044119407745	0.000971962899638	-0.00343997787486
+UniRef50_F0J5L6	L sorbosone dehydrogenase	0.000275497146315	0.000149653735742	-0.000125843410573
+UniRef50_P0A9A0	Ferritin 1	0.00193749913548	0.000794522227467	-0.00114297690801
+UniRef50_UPI000399D476	hemolysin expression modulating protein	1.32598977617e-05	7.96395584613e-06	-5.29594191557e-06
+UniRef50_A5UP13	Permease, xanthine uracil vitamin C permease family	0.00240171134475	0.000957182627863	-0.00144452871689
+UniRef50_UPI000383E553	PREDICTED	1.27221266204e-05	8.72306524738e-05	7.45085258534e-05
+UniRef50_H9K4X2		5.15271053613e-05	4.54424579714e-05	-6.0846473899e-06
+UniRef50_Q5HN24	UPF0316 protein SERP1448	0.0108582554337	0.000978121816698	-0.009880133617
+UniRef50_A0A029IUD7	Major Facilitator Superfamily protein	0.00224504877258	0.00131251868976	-0.00093253008282
+UniRef50_Q1J3T7	5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit	0.000704658589914	0.0406231344061	0.0399184758162
+UniRef50_P07129	Beta xylosidase	0.0026141908774	0.0037643316804	0.001150140803
+UniRef50_D4HBL6		0.000669794694541	0.0069232613565	0.00625346666196
+UniRef50_F7V2B8	Serine pyruvate aminotransferase	0.000180327701681	0.00052725835155	0.000346930649869
+UniRef50_A0A024HIN5	Transcriptional regulator	0.000647506031278	0.0072190967899	0.00657159075862
+UniRef50_K0M4V6		0.00953326852359	0.000566102310275	-0.00896716621331
+UniRef50_A7X232	Anthranilate phosphoribosyltransferase	0.00761748851797	0.000371347250307	-0.00724614126766
+UniRef50_B9JGE0		1.72308081581e-05	7.29267359996e-05	5.56959278415e-05
+UniRef50_W5YGZ9		0.000137818167212	3.31353646709e-05	-0.000104682802541
+UniRef50_Q3JSJ3		5.1064696557e-06	0.000102540522637	9.74340529813e-05
+UniRef50_F0KG04		0.000792453281958	0.00394549588024	0.00315304259828
+UniRef50_UPI00029A2946	endo 1,4 D glucanase	7.5788551158e-06	2.73733660396e-05	1.97945109238e-05
+UniRef50_UPI0003714199	hypothetical protein	2.97164246694e-05	0.000391409332385	0.000361692907716
+UniRef50_A5UK18		0.00554873160905	0.000475040276462	-0.00507369133259
+UniRef50_UPI0002485E7A	gluconate transporter	4.03587723368e-06	0.000150138213788	0.000146102336554
+UniRef50_G8SGJ4		6.16819921255e-06	0.000143594943857	0.000137426744644
+UniRef50_UPI0003C0FE99	PREDICTED	0.00010035359504	6.19967052099e-05	-3.83568898301e-05
+UniRef50_Q3J099	Transcriptional regulator, HxlR family	0.00321777376035	0.00186405141247	-0.00135372234788
+UniRef50_Q9RVW0	DNA directed RNA polymerase subunit beta	0.000159427368944	0.0434378002333	0.0432783728644
+UniRef50_D0CTG3		1.69566472415e-05	6.07952414494e-06	-1.08771230966e-05
+UniRef50_U6EYS7	Chemotaxis protein CheW	0.000252780796101	0.000399977478817	0.000147196682716
+UniRef50_F0N6L8		0.000413305827211	0.00141126752413	0.000997961696919
+UniRef50_Q9RRC4	Arginine  tRNA ligase	0.000104914971274	0.0334171756495	0.0333122606782
+UniRef50_N0B321		2.25281628562e-05	1.1530579234e-05	-1.09975836222e-05
+UniRef50_U6A8Y3	Non ribosomal peptide synthetase modules related protein	6.59857201406e-05	0.000104571512175	3.85857920344e-05
+UniRef50_UPI00028904E4	two component response regulator	1.29835264004e-05	1.26506539823e-05	-3.328724181e-07
+UniRef50_F8JIF2	Recombination protein	0.000613275378259	0.000207969510703	-0.000405305867556
+UniRef50_UPI0002482319	hypothetical protein	7.74158406986e-05	8.42704791274e-05	6.8546384288e-06
+UniRef50_U6EZC2	Transcriptional regulatory component of sensorytransduction system	0.000737916887843	0.00227179404699	0.00153387715915
+UniRef50_A9MHF6		0.0025991799967	0.000964300264889	-0.00163487973181
+UniRef50_Q895P9	16S rRNA MC 967 methyltransferase	9.91644454127e-05	0.000273020066435	0.000173855621022
+UniRef50_UPI00047BB63F	ABC transporter ATP binding protein	0.00018354529618	0.000106550970726	-7.6994325454e-05
+UniRef50_H0DJE3	HTH domain protein	2.12496381283e-05	2.92288399119e-05	7.9792017836e-06
+UniRef50_Q5HRV3	PAP2 family protein	0.0135542815494	0.00238987762634	-0.0111644039231
+UniRef50_A6VPG7	Hydroxyethylthiazole kinase	7.18508108971e-06	0.000865156529641	0.000857971448551
+UniRef50_UPI0003A5B886	chaperonin	9.09640796191e-06	9.35234104767e-06	2.5593308576e-07
+UniRef50_U5NV97		0.00302969116022	0.000112162173241	-0.00291752898698
+UniRef50_E3EXD3	Flagellar protein, putative	0.000241902573871	9.85308938737e-05	-0.000143371679997
+UniRef50_R5K4V5	Indole 3 glycerol phosphate synthase	0.00327655201467	0.000234688772347	-0.00304186324232
+UniRef50_UPI00034C05DA	hypothetical protein	2.55809434088e-06	2.21093917207e-06	-3.4715516881e-07
+UniRef50_Q9I6Q3	4 hydroxybenzoate transporter PcaK	0.000645601310283	0.00699666111386	0.00635105980358
+UniRef50_V8HPC0	Transposase	6.81747919664e-05	2.38226382092e-05	-4.43521537572e-05
+UniRef50_R5VPY7	Phosphorylase	0.000242213525199	0.00171388127012	0.00147166774492
+UniRef50_Q57PU8	Phenylalanine  tRNA ligase beta subunit	0.00407795171589	0.000640808398073	-0.00343714331782
+UniRef50_A6M2B6	PTS system, lactose cellobiose family IIC subunit	0.000229627019321	0.00150964229402	0.0012800152747
+UniRef50_F5X5Y4	Oxidoreductase dehydrogenase	0.00289657565217	0.0029074440528	1.086840063e-05
+UniRef50_UPI000363AE14	hypothetical protein	1.34266488905e-05	3.37036676317e-05	2.02770187412e-05
+UniRef50_A6TSP5	DEAD DEAH box helicase domain protein	0.00317438306632	0.00045691072329	-0.00271747234303
+UniRef50_UPI00041C3470	major facilitator transporter	3.84117167443e-06	0.000139013172337	0.000135172000663
+UniRef50_UPI00046337D4	histidine ammonia lyase, partial	4.30376647347e-06	2.65539469503e-05	2.22501804768e-05
+UniRef50_V6F9W2		0.000243016731023	0.00109990021337	0.000856883482347
+UniRef50_A8LMR7		6.33456340649e-05	2.87558541267e-05	-3.45897799382e-05
+UniRef50_I6S1H3		5.66972802055e-06	0.00119862096242	0.0011929512344
+UniRef50_UPI0003292D89	PREDICTED	5.29761665494e-05	6.49921351006e-05	1.20159685512e-05
+UniRef50_N8PWN0	DNA ligase	0.000227360656141	0.00392176688639	0.00369440623025
+UniRef50_Q72R38	Lysine  tRNA ligase	8.84648468082e-06	9.72346927208e-06	8.7698459126e-07
+UniRef50_W5Y8Y3	Polyprenyl synthetase	0.00113283138747	0.000970455382071	-0.000162376005399
+UniRef50_R7IF91	Lipoprotein	7.85533926989e-06	5.51382765986e-05	4.72829373287e-05
+UniRef50_Q5HRB4		0.000519476131447	0.000798153257284	0.000278677125837
+UniRef50_UPI00037CCB39	hypothetical protein	8.42188390204e-05	1.1021743814e-05	-7.31970952064e-05
+UniRef50_P35163	Transcriptional regulatory protein ResD	0.0151705998784	0.00554784862343	-0.00962275125497
+UniRef50_A5IRW7		0.00614297103839	0.00152607960721	-0.00461689143118
+UniRef50_P57355	UPF0056 membrane protein BU267	0.002142525006	0.000336863161818	-0.00180566184418
+UniRef50_G7M6S5	Peptidase M16 domain protein	0.000746490515554	0.000864431519168	0.000117941003614
+UniRef50_A4WPQ5	Periplasmic protein thiol  disulphide oxidoreductase DsbE	0.00230846799262	0.000816543885337	-0.00149192410728
+UniRef50_X5E5J7	Lipoprotein	0.0252470232476	0.00301273581933	-0.0222342874283
+UniRef50_P40892	Putative acetyltransferase YJL218W	0.000517104094322	0.000288583099537	-0.000228520994785
+UniRef50_E3A496		0.000198756851854	0.000606424305037	0.000407667453183
+UniRef50_I6E2A6	Inner membrane protein yghQ	0.00178740284979	0.000393755606923	-0.00139364724287
+UniRef50_Q8U3B8	Arsenical resistance protein acr3	0.0169055493578	0.00134877350399	-0.0155567758538
+UniRef50_I6TZW1	ATP binding protein	0.00685592074412	0.00189858921362	-0.0049573315305
+UniRef50_X6L6R2	MFS transporter 	1.44688777476e-05	2.76764163509e-05	1.32075386033e-05
+UniRef50_K6PSM8	ATPase component of an ABC superfamily transporter	0.022146934598	0.0109078405415	-0.0112390940565
+UniRef50_A6M2B1	Beta lactamase domain protein	0.000142963258193	0.00223607035037	0.00209310709218
+UniRef50_UPI0003FB35D8	chemotaxis protein CheY	1.12722596319e-05	1.4905301397e-05	3.6330417651e-06
+UniRef50_F7ZEB4	TatD family deoxyribonuclease	0.00104734834323	0.000660803075986	-0.000386545267244
+UniRef50_UPI0003B3F7AD	phosphoribosylaminoimidazole carboxylase	5.88989665937e-06	7.38341770147e-06	1.4935210421e-06
+UniRef50_A5UKF2		0.0014215734479	0.000302888928405	-0.00111868451949
+UniRef50_S5CXQ6		0.000119613739235	0.00621412458414	0.00609451084491
+UniRef50_L7WXI7	CorA like Mg2+ transporter protein	0.0181109598927	0.00555523275515	-0.0125557271376
+UniRef50_G0DRH6		6.07672236434e-05	0.00873991007228	0.00867914284864
+UniRef50_A5WG42	NADH quinone oxidoreductase subunit H	0.00270402425458	0.00884178449282	0.00613776023824
+UniRef50_G9Z7C4	Amine oxidase	0.00408617393598	0.000768521484726	-0.00331765245125
+UniRef50_UPI0003B6CB25	GTPase Era	8.97370131697e-06	0.000109569257421	0.000100595556104
+UniRef50_B9KRR2	ATP dependent DNA ligase	0.00259902429154	0.000426730544845	-0.0021722937467
+UniRef50_S3X9I7		1.29251208434e-05	8.25629609088e-05	6.96378400654e-05
+UniRef50_P06744	Glucose 6 phosphate isomerase	0.00233553106705	0.00356994827639	0.00123441720934
+UniRef50_D8JHR5		0.000241462252992	0.00454613680704	0.00430467455405
+UniRef50_B9KPJ0	Ribose phosphate pyrophosphokinase	0.0120963824909	0.0139462796982	0.0018498972073
+UniRef50_P08555	DsdX permease	0.00263963721621	0.00209838004817	-0.00054125716804
+UniRef50_P0ABU8	Biopolymer transport protein ExbB	0.00332545517822	0.00108791572777	-0.00223753945045
+UniRef50_S5XVE4	Type VI secretion system ATPase	0.00091007064607	7.02856101231e-05	-0.000839785035947
+UniRef50_E0RCX2		2.04353808852e-05	3.59588519144e-05	1.55234710292e-05
+UniRef50_T0USP0	VanZF related protein	0.00363962522306	0.000668641596675	-0.00297098362638
+UniRef50_D2N5R5	Kinase associated protein B	0.00777254753491	0.00122597899592	-0.00654656853899
+UniRef50_Q0C5T7	Peptide ABC transporter, ATP binding protein	0.00603051808392	0.00175573516821	-0.00427478291571
+UniRef50_Q4L7E3	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0161186311388	0.00249863880463	-0.0136199923342
+UniRef50_D2ABX7		0.00171584540388	0.000159914152712	-0.00155593125117
+UniRef50_UPI00037710EA	hypothetical protein	2.35365370977e-05	1.12322138445e-05	-1.23043232532e-05
+UniRef50_B2V422		7.73008850942e-05	0.00261002638502	0.00253272549993
+UniRef50_Q03MZ6	Bifunctional purine biosynthesis protein PurH	0.000641718181199	0.00518262115673	0.00454090297553
+UniRef50_P42915	Outer membrane usher protein YraJ	0.00217130659328	0.00121422452384	-0.00095708206944
+UniRef50_Q49775	Methionine synthase	1.06033349663e-06	7.09635890482e-05	6.99032555516e-05
+UniRef50_UPI0003B44CF0	streptomycin 3 kinase	2.68776543359e-05	4.31263542171e-05	1.62486998812e-05
+UniRef50_UPI0004639093	hypothetical protein	4.57172883606e-06	7.8368142082e-06	3.26508537214e-06
+UniRef50_F0RPF2		0.000743242554228	0.0731273562321	0.0723841136779
+UniRef50_F0RPF3		0.000299592054644	0.0549428872926	0.054643295238
+UniRef50_UPI0002002483	hypothetical protein	7.99985027071e-05	2.38248331151e-05	-5.6173669592e-05
+UniRef50_S5FCX8	Carboxylate  amine ligase	0.00502558112002	0.00259492638056	-0.00243065473946
+UniRef50_A5D1A4	Dihydroorotase	5.30457669969e-06	2.61393843482e-05	2.08348076485e-05
+UniRef50_W8TQE0	Pili assembly chaperone	0.00321978963707	0.000835801995839	-0.00238398764123
+UniRef50_UPI000364022E	hypothetical protein	0.000686235417419	5.82756857009e-05	-0.000627959731718
+UniRef50_R5UAJ8		0.000323590301479	0.000978075620281	0.000654485318802
+UniRef50_UPI000262CCDC	Mutator MutT protein	1.6192284341e-05	6.63987735146e-06	-9.55240698954e-06
+UniRef50_UPI00036EE512	hypothetical protein	6.18832522155e-06	1.48418233902e-05	8.65349816865e-06
+UniRef50_UPI0003B63CEB	molybdopterin biosynthesis protein MoeA	4.70409997922e-06	6.52810499892e-06	1.8240050197e-06
+UniRef50_Q98E39	Msr4423 protein	0.000228260779246	0.000171625714296	-5.663506495e-05
+UniRef50_UPI0003615A32	hypothetical protein	7.16885277453e-06	9.94518622662e-06	2.77633345209e-06
+UniRef50_C9CVV7		0.00183469183877	3.05974496968e-05	-0.00180409438907
+UniRef50_UPI00035A01D7	PREDICTED	5.97540589915e-06	2.5749973728e-06	-3.40040852635e-06
+UniRef50_UPI00047B26FB	glyoxalase	1.78391682808e-05	6.48510055506e-06	-1.13540677257e-05
+UniRef50_B9KU28	Transcriptional regulator	0.00254934295449	0.00103109280248	-0.00151825015201
+UniRef50_UPI00036F2709	LysR family transcriptional regulator	2.38286186519e-05	1.26865360074e-05	-1.11420826445e-05
+UniRef50_S2L5Z7	Alkaline phosphatase	2.47608820128e-05	5.33231287834e-06	-1.94285691345e-05
+UniRef50_A3MFR5	NADH quinone oxidoreductase subunit B 2	1.68268890753e-05	3.94110923383e-05	2.2584203263e-05
+UniRef50_Q28RF2	Anhydro N acetylmuramic acid kinase 1	0.000219977504789	6.01735922779e-05	-0.000159803912511
+UniRef50_UPI00044199D7	PREDICTED	8.96143697272e-05	3.38607804837e-05	-5.57535892435e-05
+UniRef50_P61676	UDP N acetylmuramate  L alanine ligase	3.91961596194e-06	7.01197188165e-06	3.09235591971e-06
+UniRef50_B9KT87	Periplasmic sensor signal transduction histidine kinase	0.00725706855587	0.00256896710157	-0.0046881014543
+UniRef50_A5WG85		0.000139982443328	0.00483058577809	0.00469060333476
+UniRef50_H9JZZ5		4.09301926887e-05	6.89294317242e-06	-3.40372495163e-05
+UniRef50_U5SUC1	Protein co occurring with transport systems	0.0205793186279	0.00609787688609	-0.0144814417418
+UniRef50_UPI000368DF15	hypothetical protein	3.21418074842e-05	3.44409141213e-05	2.2991066371e-06
+UniRef50_D4GE62	Fcy21	0.000617548560134	0.000172196329551	-0.000445352230583
+UniRef50_P28905	DNA polymerase III subunit chi	0.00102659177871	0.000906606316307	-0.000119985462403
+UniRef50_UPI0002493F0F	sugar transporter	5.92872628753e-06	2.42033782658e-05	1.82746519783e-05
+UniRef50_X1IEE0	Marine sediment metagenome DNA, contig	8.16988967355e-06	0.000563977337749	0.000555807448075
+UniRef50_I1ZKN3		1.32932482751e-05	7.39323493242e-06	-5.90001334268e-06
+UniRef50_UPI000287D4FC	ribose phosphate diphosphokinase	7.23853254403e-05	0.000112823302299	4.04379768587e-05
+UniRef50_Q9RTM5		0.00018874299443	0.0404617512149	0.0402730082205
+UniRef50_P0A9A4	Ferritin like protein 2	0.000754424998393	0.000767668081954	1.3243083561e-05
+UniRef50_Q08Z31		6.23625198308e-05	0.000225364770328	0.000163002250497
+UniRef50_B9E9S0		0.00370260526954	0.00101068384146	-0.00269192142808
+UniRef50_Q9RZI4		8.72272203127e-05	0.0171631502825	0.0170759230622
+UniRef50_UPI00030FEE7F	AsnC family transcriptional regulator	0.000106045450984	1.61533359405e-05	-8.98921150435e-05
+UniRef50_UPI0003B3D4FC	purine nucleoside phosphorylase	1.39977150548e-05	5.70636982172e-05	4.30659831624e-05
+UniRef50_C5X3F1		0.000111708386012	9.36938504283e-05	-1.80145355837e-05
+UniRef50_A4YXJ9	Cobyric acid synthase	0.000319064178391	6.46553154361e-05	-0.000254408862955
+UniRef50_A6LUJ6		0.000117558934525	0.00101587414635	0.000898315211825
+UniRef50_I1HS37		0.000280311377865	0.000187638168363	-9.2673209502e-05
+UniRef50_Q5LI72	Lipoprotein releasing system ATP binding protein LolD	0.000263766443623	0.00733216708209	0.00706840063847
+UniRef50_UPI0004715EC0	hypothetical protein	4.63349699827e-05	3.40102172866e-05	-1.23247526961e-05
+UniRef50_P77467	1,2 epoxyphenylacetyl CoA isomerase	0.00386228291096	0.000956518227577	-0.00290576468338
+UniRef50_Q9L6X9	DNA replication terminus site binding protein	0.00167109980127	0.00106795401294	-0.00060314578833
+UniRef50_UPI0002C2EB05		4.35911761018e-06	6.6063254106e-06	2.24720780042e-06
+UniRef50_F2MXH3	Hydrolase	0.000209326796037	0.000936724490257	0.00072739769422
+UniRef50_C7M9T6	Cation diffusion facilitator family transporter	0.000387180070617	0.00758046665167	0.00719328658105
+UniRef50_Q6GJ30	Putative glycosyltransferase TagX	0.0133445251833	0.00171439082339	-0.0116301343599
+UniRef50_J1H1W6	Putative transposase	2.84709620404e-05	0.00176922074009	0.00174074977805
+UniRef50_W6KCI0	Putative chaC like cation transporter	4.14539079995e-06	3.57896173158e-06	-5.6642906837e-07
+UniRef50_Q4L9R4	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0118303588053	0.00109366960582	-0.0107366891995
+UniRef50_UPI00037EBF23	hypothetical protein	1.15796857651e-05	1.07844693274e-05	-7.952164377e-07
+UniRef50_Q9V2R2	Quinolinate synthase A	0.00504431959733	0.000193227942332	-0.004851091655
+UniRef50_Q9RU50	Acyl CoA dehydrogenase	0.000179471373386	0.0379073307501	0.0377278593767
+UniRef50_UPI0002D896B4	hypothetical protein	5.96124217941e-06	0.000151184646095	0.000145223403916
+UniRef50_UPI0003731541	hypothetical protein	3.23776645162e-06	0.000542962673159	0.000539724906707
+UniRef50_UPI00047C50BA	hypothetical protein	4.57091440853e-05	0.000172937752693	0.000127228608608
+UniRef50_A3PHA2		0.00528896316931	0.000548575922964	-0.00474038724635
+UniRef50_A3PHA5		0.00119658113546	0.000354841190446	-0.000841739945014
+UniRef50_K1TC59	Branched chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein	4.07214265313e-05	0.000113297149972	7.25757234407e-05
+UniRef50_A3PHA6		0.00497949806314	5.58452792495e-05	-0.00492365278389
+UniRef50_A3PHA9		0.00577566646291	0.000740200596614	-0.0050354658663
+UniRef50_A3PHA8		0.00812423433082	0.00599107607165	-0.00213315825917
+UniRef50_H0YUU4		2.36512539798e-05	5.48232768401e-05	3.11720228603e-05
+UniRef50_A1AZJ2	UPF0173 metal dependent hydrolase Pden_0574	0.0121511147485	0.0014224080271	-0.0107287067214
+UniRef50_Q9RXG0	Ribonuclease R	5.52418520216e-05	0.0481502799253	0.0480950380733
+UniRef50_Q8P0D6		0.000134481635014	5.38353182688e-05	-8.06463167452e-05
+UniRef50_P44023		0.0145922422725	0.00803075455965	-0.00656148771285
+UniRef50_R7CLA1		0.000213268920259	0.00151776782542	0.00130449890516
+UniRef50_A4WSE9	IS66 Orf2 family protein	9.36151616917e-05	4.17979058444e-05	-5.18172558473e-05
+UniRef50_J2PZW7		0.000664270819961	0.00231459153056	0.0016503207106
+UniRef50_A0A017HSQ6	Transport protein	2.59697993965e-05	7.30076489908e-06	-1.86690344974e-05
+UniRef50_P0AEC3	Aerobic respiration control sensor protein ArcB	0.00375703801352	0.000408005870559	-0.00334903214296
+UniRef50_UPI0003698849	DNA glycosylase	8.22525092424e-05	4.70710103576e-05	-3.51814988848e-05
+UniRef50_UPI00035C8219	hypothetical protein	4.90660247307e-05	4.86524241201e-05	-4.136006106e-07
+UniRef50_P0ABD0	High affinity choline transport protein	0.0031724971962	0.00443552315145	0.00126302595525
+UniRef50_E0TF91	Prephenate dehydrogenase	0.00296500306601	0.000227166696312	-0.0027378363697
+UniRef50_J1E0S9		0.00480727184423	0.000230815250453	-0.00457645659378
+UniRef50_UPI00037D56C5	hypothetical protein, partial	2.98378584541e-06	5.35593608257e-06	2.37215023716e-06
+UniRef50_P13794	Outer membrane porin F	0.00100611509587	0.0013240281445	0.00031791304863
+UniRef50_Q5HQN6		0.00224826876127	0.00098995752842	-0.00125831123285
+UniRef50_UPI00047A7DC3	sodium	3.5253327397e-05	3.92722179035e-05	4.0188905065e-06
+UniRef50_UPI0003480247	membrane protein	6.85792997348e-06	7.78987254177e-05	7.10407954442e-05
+UniRef50_X4QYD5	Ribonucleotide reductase	1.39779348191e-05	5.43807193306e-05	4.04027845115e-05
+UniRef50_T2EHJ1	Hpt domain protein	0.000626118777209	9.56749584945e-05	-0.000530443818714
+UniRef50_A1B2U2	ABC polyamine opine transporter, periplasmic substrate binding protein	0.0200368239311	0.00627577632576	-0.0137610476053
+UniRef50_Q89AP8	Acetolactate synthase small subunit	8.62318649553e-05	0.000298353382378	0.000212121517423
+UniRef50_V4JFT6		0.000449520935758	0.000324999072492	-0.000124521863266
+UniRef50_K2R125	Insertion sequence transposase	8.18980895121e-05	5.44436216117e-05	-2.74544679004e-05
+UniRef50_B9K5L2		0.000599094993713	0.00111352392269	0.000514428928977
+UniRef50_Q9RVK2	MutT nudix family protein	0.000385189784541	0.0270357674711	0.0266505776866
+UniRef50_P49058	Inosine 5 monophosphate dehydrogenase	3.71012071226e-05	0.000125736386471	8.86351793484e-05
+UniRef50_T2EMC8		0.000579345115376	0.00113920109527	0.000559855979894
+UniRef50_N9ANA5		0.000134496195558	0.00722662622128	0.00709213002572
+UniRef50_S9RPX9	Integral membrane protein	1.22371556864e-05	8.31062832128e-06	-3.92652736512e-06
+UniRef50_V3H5M7		1.75775724271e-05	2.90463776173e-05	1.14688051902e-05
+UniRef50_E8SI82		0.00639120747705	0.00148456803506	-0.00490663944199
+UniRef50_A8L741	Putative glyoxalase family protein	2.04615741509e-05	4.8396485535e-05	2.79349113841e-05
+UniRef50_UPI0002E43044	hypothetical protein	1.33103668495e-05	1.66952516746e-05	3.3848848251e-06
+UniRef50_UPI000366CBF5	hypothetical protein	9.45196917233e-05	2.92934850871e-05	-6.52262066362e-05
+UniRef50_UPI000368F6D6	hypothetical protein	6.65688152847e-06	1.37525744079e-05	7.09569287943e-06
+UniRef50_UPI0003777C13	hypothetical protein	8.18571119849e-06	1.49005647356e-05	6.71485353711e-06
+UniRef50_UPI00047CBCB4	C4 dicarboxylate ABC transporter substrate binding protein	0.000181236696587	5.38413564618e-05	-0.000127395340125
+UniRef50_UPI0003446A8D	PREDICTED	8.8862908388e-06	5.11361579109e-06	-3.77267504771e-06
+UniRef50_UPI0003A59A55	chorismate synthase	1.6986118373e-05	0.000113943713425	9.6957595052e-05
+UniRef50_UPI0003B6EE3B	diguanylate cyclase, partial	0.000145257274841	0.000115571782826	-2.9685492015e-05
+UniRef50_U3ASA7		1.84666518703e-06	3.32757774516e-06	1.48091255813e-06
+UniRef50_Q0TRI9	MTA SAH nucleosidase	0.000214887659684	0.00126097901204	0.00104609135236
+UniRef50_C7NKD3		2.7372526667e-05	0.0101278999495	0.0101005274228
+UniRef50_Q5HLN7	Membrane associated protein TcaA	0.0210737201956	0.00622385896204	-0.0148498612336
+UniRef50_Q7NLT7	Leucyl phenylalanyl tRNA  protein transferase	1.91321353472e-05	9.47108371906e-05	7.55787018434e-05
+UniRef50_Q2II05	LigA	0.000120024294193	0.000125184506651	5.160212458e-06
+UniRef50_Q15UL9	Deoxycytidine triphosphate deaminase	0.00471563737819	0.0020244395898	-0.00269119778839
+UniRef50_G2L306	Two component sensor EnvZ	0.000506403057564	0.00013536289008	-0.000371040167484
+UniRef50_A1JKQ0	tRNA  methyltransferase TrmJ	0.00268542258647	0.00143373181154	-0.00125169077493
+UniRef50_G2KD33		7.26400235152e-05	0.00363100634327	0.00355836631975
+UniRef50_P39334	HTH type transcriptional repressor BdcR	0.000971755101824	0.0036535801658	0.00268182506398
+UniRef50_UPI0001744E68	hypothetical protein	0.000763607740057	0.0087906150325	0.00802700729244
+UniRef50_UPI000469DAE1	hypothetical protein	0.000651446342605	8.25540506605e-05	-0.000568892291945
+UniRef50_UPI000474FED4	response regulator receiver protein	0.000109206605601	0.00249825532604	0.00238904872044
+UniRef50_Q0RCK1	N acetylglucosamine 6 phosphate deacetylase	0.000298801574284	0.00145297309222	0.00115417151794
+UniRef50_P75908	Probable diguanylate cyclase YcdT	0.0026302912369	0.000568847564351	-0.00206144367255
+UniRef50_Q46I59	Phosphoribosylformylglycinamidine synthase 2	1.02701295032e-05	2.8966734919e-06	-7.3734560113e-06
+UniRef50_D6Y938	Binding protein dependent transport systems inner membrane component	0.000128688405295	0.00569369801193	0.00556500960664
+UniRef50_Q9RVJ3	Branched chain amino acid ABC transporter, ATP binding protein	0.000171584540393	0.0426391594977	0.0424675749573
+UniRef50_Q8CR74		0.0105912759731	0.00168928151801	-0.00890199445509
+UniRef50_X1SN69	Marine sediment metagenome DNA, contig	4.84133274969e-05	0.0082493986287	0.0082009853012
+UniRef50_Q3J097	Acetyltransferase	0.0138220763884	0.00306056003084	-0.0107615163576
+UniRef50_UPI00045E8316	ribose ABC transporter permease	7.24140710852e-05	2.99689809244e-05	-4.24450901608e-05
+UniRef50_X5DRJ8	Phosphate ABC transporter, permease protein PstA	0.00720423078315	0.00159667186083	-0.00560755892232
+UniRef50_B1B3J5		0.00389429937343	0.00466289534518	0.00076859597175
+UniRef50_H6PD11	Ion transport protein	0.00389017138533	0.0017940217818	-0.00209614960353
+UniRef50_Q8DUD5		0.0017953761144	0.00126564302227	-0.00052973309213
+UniRef50_B9KWI5		0.00186189251815	0.0002365687892	-0.00162532372895
+UniRef50_UPI0003765EEA	hypothetical protein	1.90713493748e-05	6.18247837019e-06	-1.28888710046e-05
+UniRef50_UPI00037DF3B3	MULTISPECIES	1.1026280147e-05	0.000375998452924	0.000364972172777
+UniRef50_C2Z2I2	ATPase	2.85439985693e-05	0.000214515766481	0.000185971767912
+UniRef50_K0CB29		0.000131681158905	0.00780161198911	0.0076699308302
+UniRef50_P33590	Nickel binding periplasmic protein	0.00308633580725	0.000139081650806	-0.00294725415644
+UniRef50_Q3IXY3		0.0100315788801	0.0020453797212	-0.0079861991589
+UniRef50_W4MVL4	Phosphoenolpyruvate protein phosphotransferase	8.84394027992e-05	0.00566500633226	0.00557656692946
+UniRef50_I9L186	Transposase	0.000268252701597	0.000100874665903	-0.000167378035694
+UniRef50_A3MMQ8	Glutamate 1 semialdehyde 2,1 aminomutase	1.01704747537e-05	0.00209939595549	0.00208922548074
+UniRef50_UPI000382D4BD	hypothetical protein	3.16324837096e-05	2.58408976722e-05	-5.7915860374e-06
+UniRef50_Q3IUW7	TraK protein	0.0270197165389	0.00613296556956	-0.0208867509693
+UniRef50_UPI0003F107C2		2.08705570988e-05	1.59810680259e-05	-4.8894890729e-06
+UniRef50_Q91TW1	T2	3.849585135e-06	0.000112002814878	0.000108153229743
+UniRef50_B5Y1K1	Elongation factor Ts	0.00341785048679	0.00363727122243	0.00021942073564
+UniRef50_UPI00047479E9	hypothetical protein	0.000149745182071	0.000598902432132	0.000449157250061
+UniRef50_UPI000412A15D	hypothetical protein	1.85038909385e-06	1.12116690157e-05	9.36127992185e-06
+UniRef50_S5AVG1	MazG protein	9.85236584997e-06	9.19402427812e-06	-6.5834157185e-07
+UniRef50_P27876	Triosephosphate isomerase	0.000636483511888	7.07672886736e-05	-0.000565716223214
+UniRef50_UPI00031DE78E	hypothetical protein	7.67795590093e-06	8.65493879494e-05	7.88714320485e-05
+UniRef50_UPI000363D58E	protein meaA, partial	0.000436129319092	0.000169330583355	-0.000266798735737
+UniRef50_M4N5D5		0.000625117970063	0.000304433363087	-0.000320684606976
+UniRef50_E2Q9I1	Prevent host death family protein	6.79113370469e-05	4.48144983192e-05	-2.30968387277e-05
+UniRef50_F2MT10	HD domain protein	0.00575005918993	0.00342255767114	-0.00232750151879
+UniRef50_B9KPZ0	Potassium transporting ATPase C chain	4.37640569085e-06	0.000338042128949	0.000333665723258
+UniRef50_J8EJF8	LPXTG domain containing protein cell wall anchor domain	1.73579669935e-05	3.5876061967e-05	1.85180949735e-05
+UniRef50_E0J5J4	2 dehydro 3 deoxygluconokinase	0.00268762105149	0.00109599367054	-0.00159162738095
+UniRef50_A0A028QNK4		0.00535510596134	0.000747637228341	-0.004607468733
+UniRef50_F0RNA5	ATPase AAA 2 domain protein	0.000316657994906	0.0272149981083	0.0268983401134
+UniRef50_A6LUR0	Transcriptional regulator, RpiR family	0.000146123608583	0.00219104229317	0.00204491868459
+UniRef50_UPI000477413F	regulator	9.9232886914e-06	1.95382552831e-05	9.6149665917e-06
+UniRef50_A8FXN6		8.91868556561e-05	3.25860433506e-05	-5.66008123055e-05
+UniRef50_A4WWH1	Glycosyl transferase, group 1	0.000409200429515	0.00064435333893	0.000235152909415
+UniRef50_K7S6T7	Glycosyltransferase, group 1 family protein	0.000341622791841	0.00350980706601	0.00316818427417
+UniRef50_UPI0003B3B81F	indole 3 glycerol phosphate synthase	7.58102927655e-06	1.34523656752e-05	5.87133639865e-06
+UniRef50_C4ZXX6	PKHD type hydroxylase YbiX	0.00397935412408	0.000911282999557	-0.00306807112452
+UniRef50_Q6A5N5	Undecaprenyl diphosphatase	0.000209714438257	0.00588217807873	0.00567246364047
+UniRef50_X5ENW5	ABC transporter family protein	0.0121317188201	0.00169002397752	-0.0104416948426
+UniRef50_UPI00047B3063	ABC transporter ATP binding protein	0.000119824536116	4.6367389077e-05	-7.3457147039e-05
+UniRef50_Q9RYM8	Probable subtilase type serine protease DR_A0283	0.000490388316337	0.0553858390182	0.0548954507019
+UniRef50_E0MS58	Molecular chaperone, DnaJ family	8.95990221473e-06	1.07998695502e-05	1.83996733547e-06
+UniRef50_A1B8N7	ATP synthase subunit delta	0.000975711642676	0.000361612292071	-0.000614099350605
+UniRef50_P0AE26	L arabinose transport system permease protein AraH	0.00244277036179	0.00203201800685	-0.00041075235494
+UniRef50_C2LZ77		1.4368761125e-05	3.91382597653e-05	2.47694986403e-05
+UniRef50_UPI000382715E	hypothetical protein	6.39860316502e-06	1.01609084706e-05	3.76230530558e-06
+UniRef50_W4UHC4	Helicase	4.18189795614e-05	0.00461271207283	0.00457089309327
+UniRef50_A0A011Q8A5		2.10665604662e-05	8.70133191825e-05	6.59467587163e-05
+UniRef50_P27675	Glutamine transport ATP binding protein GlnQ	0.00353196235531	0.00589444925253	0.00236248689722
+UniRef50_N6UYQ4		2.72408954719e-05	7.79436149862e-06	-1.94465339733e-05
+UniRef50_A6LWG5	7 carboxy 7 deazaguanine synthase	0.000185345002706	0.000603410104149	0.000418065101443
+UniRef50_A0A023RTQ5	GntR family transcriptional regulator	8.21812747825e-05	0.00417395668058	0.0040917754058
+UniRef50_UPI00029DA75A	PREDICTED	4.21568476482e-06	8.68822477888e-06	4.47254001406e-06
+UniRef50_D0SBY2	Oxidoreductase alpha  subunit	4.74427300602e-05	0.00500766804199	0.00496022531193
+UniRef50_X1SF25	Marine sediment metagenome DNA, contig	1.24128541504e-05	3.99621678043e-05	2.75493136539e-05
+UniRef50_Q7TUT1	Glutamyl Q tRNA synthetase	4.64230348064e-06	8.57262829356e-06	3.93032481292e-06
+UniRef50_L5R254	Replication initiation factor domain protein 	0.0003380471542	0.00114957157856	0.00081152442436
+UniRef50_A6SXI6	Tricarboxylate transport protein TctA	2.92389927118e-06	1.83808000136e-05	1.54569007424e-05
+UniRef50_A6KYS6	S ribosylhomocysteine lyase	0.000236915892584	0.00671094847844	0.00647403258586
+UniRef50_S5UDS6		0.0125828662951	4.78899414478e-05	-0.0125349763537
+UniRef50_C7PD55	Chitinase	6.3380173546e-06	1.27918525655e-05	6.4538352109e-06
+UniRef50_Q9ZDH5	NADH quinone oxidoreductase subunit E	0.000269817055093	8.66908802427e-05	-0.00018312617485
+UniRef50_X1TNP8	Marine sediment metagenome DNA, contig	5.84861665717e-05	0.00188040248669	0.00182191632012
+UniRef50_P16926	Cell shape determining protein MreC	0.00399894980063	0.00243699442131	-0.00156195537932
+UniRef50_S1T2A2		0.000143897943507	0.000383111194313	0.000239213250806
+UniRef50_UPI00038199B5	hypothetical protein	0.00113065314754	0.000274345876413	-0.000856307271127
+UniRef50_B0VLQ7	General secretion pathway protein F	0.00030006202761	0.00894105033112	0.00864098830351
+UniRef50_A0KKZ8	Fumarate hydratase, class I	0.000994349423305	0.0114826175936	0.0104882681703
+UniRef50_S1T2A8		0.000113691658697	0.000900225191442	0.000786533532745
+UniRef50_J3NR99		0.000514380360552	8.0431240632e-05	-0.00043394911992
+UniRef50_UPI0003FEFECF	hypothetical protein	2.66619999237e-05	1.62775802912e-05	-1.03844196325e-05
+UniRef50_A4WQ31	Signal transduction histidine kinase	0.00300998224502	0.00170884813059	-0.00130113411443
+UniRef50_A6M1A3	MotA TolQ ExbB proton channel	0.000321887277318	0.00118861898917	0.000866731711852
+UniRef50_Q08SF7		0.00083594031154	0.00248449545256	0.00164855514102
+UniRef50_A0A031D1F0		0.000658183592274	0.000457199374696	-0.000200984217578
+UniRef50_A6LRT2	Resolvase, N terminal domain	0.00017087408573	0.000961856027269	0.000790981941539
+UniRef50_X6C1Q7		0.000374759710808	7.48860906593e-05	-0.000299873620149
+UniRef50_Q43768	Glutamate  tRNA ligase, chloroplastic mitochondrial	3.68853550172e-06	1.49986084406e-05	1.13100729389e-05
+UniRef50_P45015	Protein NrfC homolog	0.00378982437037	0.000895571743794	-0.00289425262658
+UniRef50_UPI0004408DA8	ribosomal protein S5 domain 2 like protein	1.80614508677e-05	1.53391085013e-05	-2.7223423664e-06
+UniRef50_Q57E96	4 hydroxy tetrahydrodipicolinate synthase	5.39320107088e-06	2.52128569731e-05	1.98196559022e-05
+UniRef50_L0GKZ5	Asparagine synthetase	0.000241981424281	0.000221786687866	-2.0194736415e-05
+UniRef50_G2JGA5	Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA	0.00043472474724	0.00774091839019	0.00730619364295
+UniRef50_P41504	Probable tRNA dihydrouridine synthase	0.000138442294196	6.55268931905e-05	-7.29154010055e-05
+UniRef50_F7Y0P1	Binding protein dependent transport systems inner membrane component	0.0137820788626	0.00324446720485	-0.0105376116577
+UniRef50_A6LSC4	Malonyl CoA acyl carrier protein transacylase	0.000351095044177	0.000187701295675	-0.000163393748502
+UniRef50_X3EYH3	DNA mismatch repair protein MutL	0.00382169413602	0.000136090647547	-0.00368560348847
+UniRef50_Q9ZMK8	Peptide methionine sulfoxide reductase MsrA MsrB	5.18477651944e-06	0.00189459144901	0.00188940667249
+UniRef50_O27156	CRISPR associated endonuclease Cas1	0.00206935928118	0.000439551067004	-0.00162980821418
+UniRef50_F0KK42		0.000823043613343	0.00482213573608	0.00399909212274
+UniRef50_P40420	Glucose uptake protein GlcU	0.0214172740005	0.00697255889135	-0.0144447151091
+UniRef50_F0YA24		0.000222576249581	0.000177848630087	-4.4727619494e-05
+UniRef50_P77554		0.00312453658081	0.000749099544771	-0.00237543703604
+UniRef50_Q887Q4	Alginate biosynthesis protein AlgX	0.000166774630257	0.000191143498515	2.4368868258e-05
+UniRef50_A4VKL4	Cbb3 type cytochrome c oxidase subunit CcoP	0.00351646903291	0.000972469033247	-0.00254399999966
+UniRef50_M2QHJ0		9.3826335217e-05	2.92471506049e-05	-6.45791846121e-05
+UniRef50_P77559		0.00249228701283	0.000532084065573	-0.00196020294726
+UniRef50_B8EN54	Ribonuclease D	7.88377952255e-05	1.36867311269e-05	-6.51510640986e-05
+UniRef50_Q8NXR4	ABC transporter permease	0.0168686296564	0.00303371433348	-0.0138349153229
+UniRef50_D3E2D0		0.00203919020356	0.000422762417725	-0.00161642778584
+UniRef50_Q2YNG3	Phosphoribosylformylglycinamidine synthase 1	2.56275835543e-05	1.63884622108e-05	-9.2391213435e-06
+UniRef50_A6U9U3	Cyclic pyranopterin monophosphate synthase	0.00500703146175	0.000987594615084	-0.00401943684667
+UniRef50_K4NN39	Type I restriction enzyme R protein	3.70205284955e-05	0.00345600286235	0.00341898233385
+UniRef50_UPI0003B6F790	50S ribosomal protein L9	5.81509672466e-05	2.30492772212e-05	-3.51016900254e-05
+UniRef50_UPI00029A559A	acetate CoA ligase	1.46979324671e-05	0.000314681606359	0.000299983673892
+UniRef50_B4U7T6	Acyl carrier protein	3.06045015022e-05	0.000389791843337	0.000359187341835
+UniRef50_Q9M5K2-2	Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial	9.00511491391e-05	0.000187334446076	9.72832969369e-05
+UniRef50_UPI0003B5C4DF	UDP N acetylglucosamine 2 epimerase	6.74493295519e-06	1.91877371643e-05	1.24428042091e-05
+UniRef50_Q4L7F0	UPF0754 membrane protein SH1116	0.0190769105313	0.00825999096347	-0.0108169195678
+UniRef50_UPI00025578B3	3 oxoacyl ACP reductase	1.64407145895e-05	2.10454509844e-05	4.6047363949e-06
+UniRef50_G4QEZ4	2 nitropropane dioxygenase family protein	0.00361548512267	0.000383629288373	-0.0032318558343
+UniRef50_D5ARQ6	Lipoprotein, putative	5.99493976514e-05	3.32617827532e-05	-2.66876148982e-05
+UniRef50_Q2S2L8	ATP dependent Clp protease proteolytic subunit 1	6.9064334766e-06	3.75906691686e-05	3.0684235692e-05
+UniRef50_UPI0003A2476A	hypothetical protein	5.04477507042e-05	1.2665813457e-05	-3.77819372472e-05
+UniRef50_E6J991	Metallophosphoesterase 	8.97830776414e-05	0.000518576168439	0.000428793090798
+UniRef50_UPI0003F99510	hypothetical protein	6.51156150194e-05	3.26137602645e-05	-3.25018547549e-05
+UniRef50_E3GC98	Multidrug resistance protein MdtG	0.00116203125828	0.000227750672386	-0.000934280585894
+UniRef50_E8JLX0		0.000370333918682	0.000792842493087	0.000422508574405
+UniRef50_Q6LMV3	S ribosylhomocysteine lyase	0.00155607427943	0.000351463317331	-0.0012046109621
+UniRef50_UPI0002C376D2	PREDICTED	6.32028421002e-05	0.000240579075657	0.000177376233557
+UniRef50_UPI000319E332	hypothetical protein	6.93645771181e-06	5.92772717087e-06	-1.00873054094e-06
+UniRef50_UPI00035F7937	hypothetical protein	7.26162069617e-07	8.85054628926e-05	8.7779300823e-05
+UniRef50_Q8LK02		5.08306137583e-05	3.67716347234e-06	-4.7153450286e-05
+UniRef50_UPI00045E23DB	PREDICTED	1.10079216784e-05	1.11334202005e-05	1.254985221e-07
+UniRef50_P76318	Putative SOS response associated peptidase YedK	0.00316381574327	0.00133772994399	-0.00182608579928
+UniRef50_O31019	Carbamate kinase	0.000316356056823	0.00342545872957	0.00310910267275
+UniRef50_J7Q543		0.0123097419915	0.00315180457104	-0.00915793742046
+UniRef50_Q7NZ19	Phosphopantetheine adenylyltransferase	2.6903143847e-05	0.000119709202044	9.2806058197e-05
+UniRef50_I1PC32		3.70569975378e-05	3.9326509848e-05	2.2695123102e-06
+UniRef50_A5V3M9	N succinylarginine dihydrolase	1.43662811328e-05	4.73381871135e-05	3.29719059807e-05
+UniRef50_F3GLY7	Periplasmic binding protein LacI transcriptional regulator 	0.000268176307705	5.50062197804e-05	-0.000213170087925
+UniRef50_UPI00016A69C6	hypothetical protein	0.00435234330555	0.00141279077093	-0.00293955253462
+UniRef50_Q49016	Arabinose transport protein 	1.59395040383e-05	4.85963194684e-05	3.26568154301e-05
+UniRef50_O28733	Succinyl CoA ligase [ADP forming] subunit alpha 1	3.95267603724e-05	4.76327467094e-05	8.105986337e-06
+UniRef50_V6FRW4	Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein	0.000524889416796	0.00304846731061	0.00252357789381
+UniRef50_P95785	ATP synthase subunit b	0.00604819541684	0.000737678309092	-0.00531051710775
+UniRef50_H2ITE9		1.75146934346e-05	2.0699160779e-05	3.1844673444e-06
+UniRef50_A6W759		3.38994915078e-05	1.1077853675e-05	-2.28216378328e-05
+UniRef50_F9XKQ7		0.000342067777326	0.000410180933783	6.8113156457e-05
+UniRef50_A8LS45	Glycine  tRNA ligase beta subunit	0.0014829288782	9.40000122672e-05	-0.00138892886593
+UniRef50_J9GQF0	Heat shock protein 70 	0.000114428572481	0.000113230775014	-1.197797467e-06
+UniRef50_B0C3D3	2 isopropylmalate synthase homocitrate synthase family protein	0.000391951961456	0.000768012456789	0.000376060495333
+UniRef50_B3PE41	Rrf2 family protein	2.11573155118e-05	0.00910391602823	0.00908275871272
+UniRef50_B7LNX4	UPF0319 protein YccT	0.00905270177581	0.00303640627508	-0.00601629550073
+UniRef50_A0KTT2	4 hydroxy tetrahydrodipicolinate reductase	0.00286565120064	0.00843442358593	0.00556877238529
+UniRef50_UPI00029A5235	molybdenum cofactor biosynthesis protein A, partial	8.20232448143e-06	4.56917032921e-05	3.74893788107e-05
+UniRef50_F0VSK8	Complete chromosome sequence, strain ATCC BAA 2069	0.00173843772901	0.00281618893625	0.00107775120724
+UniRef50_UPI000475CB6C	methionine synthase	1.76655782045e-05	2.76983408875e-05	1.0032762683e-05
+UniRef50_F8HCE7		0.0022828177701	0.000782295907797	-0.0015005218623
+UniRef50_UPI00035E8FBB	hypothetical protein	0.000475130985215	2.0171079404e-05	-0.000454959905811
+UniRef50_Q9RY78		0.000274202897477	0.00278498984103	0.00251078694355
+UniRef50_A3JAP6		0.000100630534148	7.29030957143e-06	-9.33402245766e-05
+UniRef50_UPI0003B4F317	ABC transporter ATP binding protein, partial	1.27565215432e-05	2.45005391177e-05	1.17440175745e-05
+UniRef50_Q5XD15	Zinc binding protein AdcA	0.00463993307252	0.00600987054649	0.00136993747397
+UniRef50_Q5F8G9	ADP dependent  NAD(P)H hydrate dehydratase	0.000149400787142	0.00234077256309	0.00219137177595
+UniRef50_Q21YB9	NADH quinone oxidoreductase subunit I	5.97710367334e-05	0.00831890020682	0.00825912917009
+UniRef50_D7GI06	Proline specific permease proY	0.000643983504138	0.00348807417514	0.002844090671
+UniRef50_A7MY01	Ribonuclease HII	2.55677494469e-05	1.15731896604e-05	-1.39945597865e-05
+UniRef50_W1GG79	CFA I fimbrial auxiliary subunit	0.000735362315945	0.00403944670667	0.00330408439072
+UniRef50_R7EZG6		1.3906840331e-05	1.83055392069e-05	4.3986988759e-06
+UniRef50_F7V4L9	L lactate permease	0.000106134767253	0.00204241926651	0.00193628449926
+UniRef50_UPI0003483AFA	hypothetical protein	5.41856301628e-05	1.71110510454e-05	-3.70745791174e-05
+UniRef50_Q8CSV4		0.018113792202	0.00751950250096	-0.010594289701
+UniRef50_UPI000362C8FC	hypothetical protein	1.34677635697e-05	1.86676787232e-05	5.1999151535e-06
+UniRef50_G9EJ55		1.08910196392e-05	1.79799905998e-05	7.0889709606e-06
+UniRef50_D3QEL4	ComF operon protein A, DNA transporter ATPase	0.0162273314327	0.010714810302	-0.0055125211307
+UniRef50_S9R468	Mobile element protein	5.17178942919e-05	2.32665657187e-05	-2.84513285732e-05
+UniRef50_K7RQ95	Integral membrane protein MviN	0.00013827325599	0.00537598928512	0.00523771602913
+UniRef50_S5E1S4	Chromosome partitioning protein ParB	9.90664722385e-05	2.10305892066e-05	-7.80358830319e-05
+UniRef50_Q89B29	Ribosomal RNA small subunit methyltransferase D	2.02605062616e-05	1.70557319127e-05	-3.2047743489e-06
+UniRef50_UPI000370F5E4	hypothetical protein, partial	1.4348701999e-05	2.46322225257e-05	1.02835205267e-05
+UniRef50_R8ZG28	Putative glucosyl transferase	0.000407276519902	0.000150347381809	-0.000256929138093
+UniRef50_G7U5G6		3.40462405978e-05	0.000169336258575	0.000135290017977
+UniRef50_UPI000366A264	hypothetical protein	2.7558138804e-06	5.04891132806e-06	2.29309744766e-06
+UniRef50_B1ES29	Inner membrane protein YeaI	0.000939128150774	0.00046506567747	-0.000474062473304
+UniRef50_J9UQW7		0.0019194202823	0.00285790359866	0.00093848331636
+UniRef50_A0A011NUN7	N5 carboxyaminoimidazole ribonucleotide synthase	8.02895683107e-06	5.55983778517e-06	-2.4691190459e-06
+UniRef50_Q6FDQ7		0.000155771384668	0.0060001545221	0.00584438313743
+UniRef50_UPI00036983C7	hypothetical protein	2.61384873002e-05	2.99715415684e-05	3.8330542682e-06
+UniRef50_B5HTP9		0.00023884679799	0.000333691192315	9.4844394325e-05
+UniRef50_UPI00046A99F4	spermidine putrescine ABC transporter permease	6.64952969062e-06	0.000192814297149	0.000186164767458
+UniRef50_A6M301	Carbohydrate kinase, YjeF related protein	0.00056353282674	0.000745740636852	0.000182207810112
+UniRef50_Q2NFN1	Predicted peptidase	0.00349579322556	0.000837596861015	-0.00265819636454
+UniRef50_U5UFJ6		0.0043371692672	0.00273190259626	-0.00160526667094
+UniRef50_UPI0002D512F5	hypothetical protein	3.32791509763e-05	3.50532334761e-05	1.7740824998e-06
+UniRef50_P32016	Capsule polysaccharide export ATP binding protein CtrD	0.000225017016282	0.00115893900599	0.000933921989708
+UniRef50_UPI000368193C	hypothetical protein	3.69599017695e-05	1.13431851564e-05	-2.56167166131e-05
+UniRef50_A9MZ05		0.000102086107456	1.33424453305e-05	-8.87436621255e-05
+UniRef50_A6LSS4		0.000202586398316	0.000963847612847	0.000761261214531
+UniRef50_Q5F4W7		0.000159951690188	0.00196362532888	0.00180367363869
+UniRef50_W1Y671	Protein AraJ 	0.000213065782269	4.56883817763e-05	-0.000167377400493
+UniRef50_R6V897	Extracellular solute binding protein family 1	0.00014334910969	0.00138396398987	0.00124061488018
+UniRef50_U5V3F5		8.6798602231e-05	0.000287678953141	0.00020088035091
+UniRef50_K7UNN0		8.32368429412e-06	8.94230568605e-06	6.1862139193e-07
+UniRef50_K2H9R9		0.000196599667576	0.000157452455265	-3.9147212311e-05
+UniRef50_UPI00036568A9	hypothetical protein	2.34182749085e-05	7.37526142144e-05	5.03343393059e-05
+UniRef50_P77334	Cyclic di GMP phosphodiesterase Gmr	0.00202340489233	0.000119480797778	-0.00190392409455
+UniRef50_UPI000377D288	hypothetical protein	6.49821045329e-06	2.06404001375e-06	-4.43417043954e-06
+UniRef50_K3YVC5		0.000169529635709	5.09174919915e-05	-0.000118612143718
+UniRef50_Q4L8M6	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00739820577065	0.00357050478837	-0.00382770098228
+UniRef50_X1E4N0	Marine sediment metagenome DNA, contig	2.00750935732e-05	0.000530990699226	0.000510915605653
+UniRef50_A3JZY7		0.000650837911816	0.000957783908741	0.000306945996925
+UniRef50_Q8K986	7 cyano 7 deazaguanine synthase	8.64329073757e-06	2.35766420221e-05	1.49333512845e-05
+UniRef50_Q9RXF1	D alanine  D alanine ligase	0.000599084280798	0.023093455771	0.0224943714902
+UniRef50_Q06986	E3 ubiquitin protein ligase SIAH2	1.2255282069e-05	1.34837897587e-05	1.2285076897e-06
+UniRef50_A4WPA7		0.000349360394337	0.00016070796965	-0.000188652424687
+UniRef50_B7RMN2	Flagellar protein, putative	6.7206946878e-05	7.57132292623e-05	8.5062823843e-06
+UniRef50_A4WPA8		0.00100442351114	0.00049611907576	-0.00050830443538
+UniRef50_K6TWJ0		0.0018759738336	0.000372247947718	-0.00150372588588
+UniRef50_UPI00037DF98D	hypothetical protein	5.20660431834e-06	3.41393670369e-05	2.89327627186e-05
+UniRef50_Q5HPV8	Ribonuclease 3	0.0156286721779	0.00478453119349	-0.0108441409844
+UniRef50_B8DTT6	Phosphoribosylformylglycinamidine cyclo ligase	0.00809619427983	0.0036342108669	-0.00446198341293
+UniRef50_Q6CX30	FK506 binding protein 1	2.31808009757e-05	3.05153377848e-05	7.3345368091e-06
+UniRef50_UPI000466CF90	nitrate reductase, partial	9.32738393023e-07	2.96004615928e-06	2.02730776626e-06
+UniRef50_UPI0003B7B122	malonyl CoA ACP transacylase	7.95515606289e-06	1.18188858294e-05	3.86372976651e-06
+UniRef50_Q18DZ3	Probable cell surface glycoprotein	1.12428152944e-05	6.41919392861e-06	-4.82362136579e-06
+UniRef50_A6M1K6		0.000361302641379	0.000541224463645	0.000179921822266
+UniRef50_F0YBF5	Expressed protein 	7.48433102705e-05	7.52481930542e-05	4.048827837e-07
+UniRef50_UPI0004210B91	thioredoxin	0.000493178159571	0.000349524690767	-0.000143653468804
+UniRef50_UPI00037B4F64	hypothetical protein	0.00011587387323	1.89234699748e-05	-9.69504032552e-05
+UniRef50_J7Q7A9		0.00082632854156	0.000412069821193	-0.000414258720367
+UniRef50_UPI000423006B	antiporter	5.31157010441e-05	4.43559775125e-05	-8.7597235316e-06
+UniRef50_E8PEU6		4.10151771361e-06	0.00604117135677	0.00603706983906
+UniRef50_Z2D7Y6		0.000556147481478	3.0053561448e-05	-0.00052609392003
+UniRef50_UPI0003B393A2	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	5.69890129287e-06	0.000184221216962	0.000178522315669
+UniRef50_P77694	Fimbria adhesin EcpD	0.00328011894763	0.00182262096975	-0.00145749797788
+UniRef50_R9SL72	DNA primase large subunit PriL	0.00218222646683	0.000420188348721	-0.00176203811811
+UniRef50_UPI0003D007CA	hypothetical protein	1.01259721453e-05	2.18846110266e-05	1.17586388813e-05
+UniRef50_UPI0002EC7A35	hypothetical protein	8.02518868703e-05	0.000218773200257	0.000138521313387
+UniRef50_UPI00036B4C2E	hypothetical protein	3.80383581835e-05	3.4335038192e-05	-3.7033199915e-06
+UniRef50_UPI0004669DE9	malate dehydrogenase	5.51636765796e-05	2.00708246155e-05	-3.50928519641e-05
+UniRef50_A3PJ14	Lipopolysaccharide biosynthesis	0.00528967320725	0.00103965213058	-0.00425002107667
+UniRef50_D6SDA6		0.00241154845084	0.00123784804092	-0.00117370040992
+UniRef50_Q5LP30	Valine  tRNA ligase	2.11234786303e-05	2.04317590448e-05	-6.917195855e-07
+UniRef50_Q0K7S4	Undecaprenyl diphosphatase	0.000120728080037	2.28565910625e-05	-9.78714889745e-05
+UniRef50_B9KU47		0.00118668487779	0.0015542984484	0.00036761357061
+UniRef50_B8NDP1	Putative glutathione dependent formaldehyde activating enzyme	0.000115760293108	3.13745345103e-05	-8.43857585977e-05
+UniRef50_UPI0000393886	peptidase	4.90776077713e-05	2.4850801693e-05	-2.42268060783e-05
+UniRef50_D8HS39		9.4121642657e-05	2.51938920415e-05	-6.89277506155e-05
+UniRef50_N3DVV4		0.000900524150175	0.000626113155893	-0.000274410994282
+UniRef50_F6HHF0		6.73770234243e-05	9.26216610533e-05	2.5244637629e-05
+UniRef50_UPI0002483870	rod shape determining protein MreB	4.75216239676e-05	8.39423738277e-06	-3.91273865848e-05
+UniRef50_P21108	Ribose phosphate pyrophosphokinase 3	1.4225941132e-05	8.3466995995e-05	6.9241054863e-05
+UniRef50_UPI0003B4201A	transcriptional regulator	6.09487069631e-05	6.56004784885e-05	4.6517715254e-06
+UniRef50_D3QI08	Autolysin	0.0215291072408	0.00749875433849	-0.0140303529023
+UniRef50_C1DNK0		0.000383990500841	0.00127536273223	0.000891372231389
+UniRef50_A7K6E8	Aconitase family 	0.00163977241011	0.00140708530747	-0.00023268710264
+UniRef50_I0C2F4		0.0152122343978	0.00460380080298	-0.0106084335948
+UniRef50_Q753M0	Phosphoenolpyruvate carboxykinase [ATP]	8.20230582985e-06	9.66170692182e-05	8.84147633884e-05
+UniRef50_F3ZB33	Putative ABC transporter substrate binding protein	0.000135864358377	0.000119425219434	-1.6439138943e-05
+UniRef50_UPI00040A2517	hypothetical protein	0.00033213772076	4.02931165964e-05	-0.000291844604164
+UniRef50_A0A059IKZ4		0.000161471986946	9.44430084815e-05	-6.70289784645e-05
+UniRef50_UPI000289D94C	aspartyl glutamyl tRNA amidotransferase subunit B	4.93947260234e-05	1.52029134454e-05	-3.4191812578e-05
+UniRef50_T1YAV1	Transposase	0.0183137785987	0.00785360256338	-0.0104601760353
+UniRef50_B4SDX3	Leucine  tRNA ligase	6.79643785696e-06	0.00192147086118	0.00191467442332
+UniRef50_Q0C3D1	Protoheme IX farnesyltransferase	1.19822319692e-05	3.44526903829e-05	2.24704584137e-05
+UniRef50_X5QZB1		0.0033688443945	0.00291068386847	-0.00045816052603
+UniRef50_H9UQR5		0.000585195313439	0.000314724730229	-0.00027047058321
+UniRef50_W4SVT3		7.34010055984e-05	9.2401462068e-05	1.90004564696e-05
+UniRef50_M9VDN7	DeoR family transcriptional regulator	0.00019226790604	0.00403398612018	0.00384171821414
+UniRef50_UPI00037E4101	polyamine ABC transporter substrate binding protein	1.01306117802e-05	0.000318600146338	0.000308469534558
+UniRef50_UPI00038013D7	hypothetical protein	7.62767558371e-05	1.1081647278e-05	-6.51951085591e-05
+UniRef50_K7RSS9	Pseudouridine synthase	0.000348448605091	0.00376961961972	0.00342117101463
+UniRef50_Q9KRL3	Carboxynorspermidine synthase	0.000107410806881	0.000193611674065	8.6200867184e-05
+UniRef50_J3I1E6		2.0642442648e-05	1.70940173787e-05	-3.5484252693e-06
+UniRef50_UPI00037A3195	hypothetical protein, partial	1.70893235369e-05	0.00826822692035	0.00825113759681
+UniRef50_A3PIJ7	NUDIX hydrolase	0.00361605067409	0.000413030356916	-0.00320302031717
+UniRef50_A0A010IZE0		5.08699593909e-05	0.000261784107254	0.000210914147863
+UniRef50_Q82K60		6.96230609209e-05	2.25346633513e-05	-4.70883975696e-05
+UniRef50_A7BWG5		1.73354793907e-05	2.07158598045e-05	3.3803804138e-06
+UniRef50_D7REY5	Caffeine dehydrogenase subunit gamma	8.22779693662e-05	0.000133646217534	5.13682481678e-05
+UniRef50_Q033L0	tRNA modification GTPase MnmE	0.0353775648642	0.0121140186976	-0.0232635461666
+UniRef50_UPI000365C459	hypothetical protein	8.19106581083e-06	1.39278241648e-05	5.73675835397e-06
+UniRef50_F7X9S0	Phosphosugar isomerase	0.0130800191909	0.00164423422159	-0.0114357849693
+UniRef50_E3H2R2	PTS system, mannose fructose sorbose family, IIC component	0.000692040185662	0.00467764090842	0.00398560072276
+UniRef50_X8C840	Transketolase, thiamine diphosphate binding domain protein	5.76837509771e-05	4.93859767822e-05	-8.2977741949e-06
+UniRef50_A5UJG6		0.0013213779871	0.00123047226354	-9.090572356e-05
+UniRef50_L1INE5		7.41488434345e-05	9.81322363619e-05	2.39833929274e-05
+UniRef50_Q8YNF7	Aminomethyltransferase	4.69890776135e-06	4.68138184012e-05	4.21149106399e-05
+UniRef50_UPI000287F8C3	50S ribosomal protein L18	0.00142954482967	0.000370945629594	-0.00105859920008
+UniRef50_E2XNC4	Oligopeptidase B	0.000374127080514	9.44006516318e-05	-0.000279726428882
+UniRef50_A8FKX4	Elongation factor P	0.000268744403058	0.0042707649781	0.00400202057504
+UniRef50_A3TSE6	ISSfl4	5.06874471652e-05	3.25863489324e-05	-1.81010982328e-05
+UniRef50_K0SGI4		0.000283169731715	3.51964995301e-05	-0.000247973232185
+UniRef50_K9DHZ5	Inner membrane transporter YhaO	1.33070237883e-05	2.63503906619e-05	1.30433668736e-05
+UniRef50_K2CR97		0.000163478186016	1.85231234168e-05	-0.000144955062599
+UniRef50_UPI000382A7B2	hypothetical protein	0.00011633839862	4.2650992739e-05	-7.3687405881e-05
+UniRef50_I0C1L9		0.0077424418145	0.00334918325015	-0.00439325856435
+UniRef50_M9RMB0	Amino acid ABC transporter permease protein	0.00701602023124	0.000463680559831	-0.00655233967141
+UniRef50_B9KWA6		0.000175128358184	0.00053133981494	0.000356211456756
+UniRef50_A0A058T6Z9		0.000251726533089	0.000801008046243	0.000549281513154
+UniRef50_D6K2W1		0.000636009757362	0.000217267557662	-0.0004187421997
+UniRef50_A0RR59	Uracil phosphoribosyltransferase	8.99994128535e-06	8.49884162279e-05	7.59884749426e-05
+UniRef50_UPI00037904B4	amino acid ABC transporter ATP binding protein, partial	2.87801029189e-05	0.000282599717884	0.000253819614965
+UniRef50_Q1GHA7	Ferredoxin	0.00294303938972	0.000973185433509	-0.00196985395621
+UniRef50_UPI00036F7268	MULTISPECIES	5.38517757108e-05	0.00113687333978	0.00108302156407
+UniRef50_UPI00047D88C2	stage V sporulation protein D	1.83584615925e-06	4.9107949299e-06	3.07494877065e-06
+UniRef50_UPI000287A5C2	organic hydroperoxide resistance protein	3.46390341799e-05	6.13599021632e-05	2.67208679833e-05
+UniRef50_A9ALK8	FAD dependent oxidoreductase	0.000650079717867	0.000428578711365	-0.000221501006502
+UniRef50_UPI00045EB579	hypothetical protein	5.88422342093e-05	7.42582458616e-05	1.54160116523e-05
+UniRef50_Q69XT0		8.6758480038e-05	0.000265019951527	0.000178261471489
+UniRef50_UPI00047E74A6	hypothetical protein	2.95534504691e-06	4.17079818546e-06	1.21545313855e-06
+UniRef50_B9KQD9	Phage phi C31 gp36 major capsid like protein	0.00597959573684	0.00146385166116	-0.00451574407568
+UniRef50_A5W9S9	GTPase HflX	0.00117001585493	0.000578585926887	-0.000591429928043
+UniRef50_C8S226	Endoribonuclease L PSP	0.000553065015373	0.000200968105726	-0.000352096909647
+UniRef50_UPI000475C0DD	iron ABC transporter	3.64264635142e-05	0.000705786027797	0.000669359564283
+UniRef50_P56861	Adenylyl sulfate kinase	0.000611933435908	0.0653218668405	0.0647099334046
+UniRef50_Q6GJM1	UPF0753 protein SAR0453	0.0144999723743	0.00283211721259	-0.0116678551617
+UniRef50_E1PY57	Riboflavin biosynthesis protein 	0.000150392824239	0.00336462745012	0.00321423462588
+UniRef50_E8P9Z6	DNA repair protein RecN	0.000230261577886	0.00553840728224	0.00530814570435
+UniRef50_UPI0003FA1CD0	leucyl tRNA synthase	9.2068801765e-06	3.39818458505e-06	-5.80869559145e-06
+UniRef50_E4PYJ4	Thiol disulfide isomerase and thioredoxin	0.00410369278631	0.00161921754179	-0.00248447524452
+UniRef50_F0YAU6		3.78888960073e-05	1.70909184492e-05	-2.07979775581e-05
+UniRef50_V9QPJ8		7.64386143059e-06	2.53199315928e-05	1.76760701622e-05
+UniRef50_UPI0001745568	4 alpha glucanotransferase	1.30591475721e-05	0.000661971863283	0.000648912715711
+UniRef50_J2F940	Multidrug efflux RND transporter, membrane fusion protein MexE	0.000226293248633	0.000814365563854	0.000588072315221
+UniRef50_UPI0003090BBE	chemotaxis protein CheY	3.35779407133e-05	2.87905011906e-06	-3.06988905942e-05
+UniRef50_Q50784	Polyferredoxin protein MvhB	0.00845645231742	0.0014811835677	-0.00697526874972
+UniRef50_C0HHH0		2.07205774913e-05	1.20713337178e-05	-8.6492437735e-06
+UniRef50_P75853	Putative aliphatic sulfonates binding protein	0.0037666796059	0.000806757493532	-0.00295992211237
+UniRef50_Q2KTS9	Phosphoribosyl ATP pyrophosphatase	4.92649040658e-05	0.000151076227879	0.000101811323813
+UniRef50_Q3IXK5		0.0154678049422	0.0018331334815	-0.0136346714607
+UniRef50_Q9KUI0	Sulfate thiosulfate import ATP binding protein CysA	0.00438973686944	0.00143047372762	-0.00295926314182
+UniRef50_Q3J5B1		0.0019020657152	0.00020627476498	-0.00169579095022
+UniRef50_F3ZY36	MATE efflux family protein	0.000206000862184	0.00208388289696	0.00187788203478
+UniRef50_Q891I6	Xanthine phosphoribosyltransferase	4.04198800632e-05	2.20562928676e-05	-1.83635871956e-05
+UniRef50_R7TBI6		8.53117590403e-06	3.43876879217e-05	2.58565120177e-05
+UniRef50_UPI00037EC417	hypothetical protein, partial	1.82849133624e-05	7.48610044857e-05	5.65760911233e-05
+UniRef50_UPI000469EAA1	hypothetical protein	4.88133817726e-05	2.52310769979e-05	-2.35823047747e-05
+UniRef50_W7S895		3.82067070859e-05	0.000133325826272	9.51191191861e-05
+UniRef50_UPI00037EBED1	hypothetical protein	0.000167229533186	0.000134465473679	-3.2764059507e-05
+UniRef50_F0PBM9		7.40846026952e-06	0.000815496488974	0.000808088028704
+UniRef50_X1YAY8		4.08789242554e-05	0.000115833198071	7.49542738156e-05
+UniRef50_UPI0003B33944	ATPase	1.716573376e-06	5.12628069606e-05	4.95462335846e-05
+UniRef50_H3FTW8		2.38567656569e-05	6.64804947937e-06	-1.72087161775e-05
+UniRef50_S4RAN5		2.1530352262e-05	1.4302145318e-05	-7.228206944e-06
+UniRef50_UPI0003658A58	hypothetical protein	7.22472887346e-06	0.000107583958687	0.000100359229814
+UniRef50_V5VE79	AdaA	0.000223805922247	0.00753602561511	0.00731221969286
+UniRef50_Y5XPW9	Serine aspartate repeat containing protein C	0.0016538351933	0.00106540301821	-0.00058843217509
+UniRef50_P64588	Transcriptional regulator YqjI	0.00261544531006	0.00135707150627	-0.00125837380379
+UniRef50_Q5XHA8	CTP synthase 1 A	2.86620627935e-06	0.000119156222015	0.000116290015736
+UniRef50_Q3JNW3		0.000134073408106	0.00030006777835	0.000165994370244
+UniRef50_Q93R93	Acetylornithine acetyl lysine aminotransferase	4.89927379852e-06	0.000146790872994	0.000141891599195
+UniRef50_UPI0003B5FA5F	arginyl tRNA synthetase	4.75176717345e-06	8.32268108788e-06	3.57091391443e-06
+UniRef50_P37325		0.0019003511684	0.000216613720186	-0.00168373744821
+UniRef50_B4U1Q9	CRISPR associated endoribonuclease Cas2	0.00223485324481	0.000606815147654	-0.00162803809716
+UniRef50_UPI00047540FD	ATP dependent DNA helicase RecQ	2.31410617912e-05	8.05548872144e-06	-1.50855730698e-05
+UniRef50_Q9HWZ6	Inorganic pyrophosphatase	0.00484351747574	6.28111270444e-05	-0.0047807063487
+UniRef50_UPI00041DD57B	hypothetical protein	2.39299532104e-05	1.25557180309e-05	-1.13742351795e-05
+UniRef50_I0CNI8		1.26247943044e-05	0.00250134510197	0.00248872030767
+UniRef50_P19072	Branched chain amino acid transport system 2 carrier protein	0.00434696734427	0.000991417624319	-0.00335554971995
+UniRef50_UPI00037B9617	hypothetical protein	3.77235867806e-05	1.75025607471e-05	-2.02210260335e-05
+UniRef50_C9YGV0		4.6389785614e-06	2.43927506878e-05	1.97537721264e-05
+UniRef50_P44555		0.00016740442782	0.0109087080578	0.01074130363
+UniRef50_UPI0004408592	acyl CoA dehydrogenase NM domain like protein	6.31859110269e-06	0.0001148399398	0.000108521348697
+UniRef50_L8DV59	Pyrimidine nucleoside phosphorylase	0.000334058397217	0.000864341576184	0.000530283178967
+UniRef50_I7DAX1		2.10783956259e-06	9.06653965343e-06	6.95870009084e-06
+UniRef50_X2HWT2	Membrane protein	7.14034026878e-05	0.00536752917368	0.00529612577099
+UniRef50_R6H7C0		0.000188165395862	7.52651739008e-05	-0.000112900221961
+UniRef50_A5ZTX7	TRAP transporter, DctM like membrane protein	7.85583173735e-05	4.36826055632e-05	-3.48757118103e-05
+UniRef50_A8ACU9		0.000187226529253	0.00232250559567	0.00213527906642
+UniRef50_O87014	USG 1 protein homolog	0.000235438501092	0.000756893320425	0.000521454819333
+UniRef50_B9KU14	Transcriptional regulator, AraC family with amidase like domain	0.00234364589398	0.000186712353132	-0.00215693354085
+UniRef50_A6LR19	Nitrogenase	0.000620235931743	0.00178315933054	0.0011629233988
+UniRef50_UPI0003FC1CC9	DNA mismatch repair protein MutS	2.77612010877e-06	5.88477466318e-05	5.6071626523e-05
+UniRef50_UPI0002B472DF	PREDICTED	2.19545220715e-06	1.48459877987e-05	1.26505355915e-05
+UniRef50_G3XDA7	Cell division protein FtsQ	0.000537898391826	0.000262115418808	-0.000275782973018
+UniRef50_A8EWJ4	Dihydroxy acid dehydratase	6.11296593526e-05	8.60642524568e-05	2.49345931042e-05
+UniRef50_UPI0002FFF8E0	hypothetical protein	2.34090951023e-05	0.00332985445807	0.00330644536297
+UniRef50_C3KCS9	Lipid II flippase FtsW	0.000751130258207	0.000308584917056	-0.000442545341151
+UniRef50_W1DNY7	Acyl CoA dehydrogenases	0.000110096073692	6.47603733676e-05	-4.53357003244e-05
+UniRef50_UPI0000164CF4	4 alpha glucanotransferase	3.97163360216e-05	0.00655871213079	0.00651899579477
+UniRef50_S9ULD0		1.2989500354e-05	0.000218990911885	0.000206001411531
+UniRef50_R6NN79	Asparagine synthetase	0.000626936148384	0.00116536040765	0.000538424259266
+UniRef50_UPI000362C4BE	hypothetical protein	1.14666147068e-05	1.60418720227e-05	4.5752573159e-06
+UniRef50_A7MGN4		5.64816940918e-05	6.82246386152e-05	1.17429445234e-05
+UniRef50_UPI00036F08F2	hypothetical protein	8.52882913404e-06	1.33446315541e-05	4.81580242006e-06
+UniRef50_Q8EQK9	GTP cyclohydrolase FolE2	0.0117798639933	0.0017554060213	-0.010024457972
+UniRef50_UPI0001FFEE83	carbohydrate kinase, FGGY	0.000251991762604	0.000123649702104	-0.0001283420605
+UniRef50_G7M6Z6	SNF2 related protein	8.65915149539e-05	0.000809803939848	0.000723212424894
+UniRef50_A0A016QN06	Peptidase like protein	9.40362566627e-06	0.00167036143697	0.0016609578113
+UniRef50_O87050	Z47f protein	9.4060435331e-05	1.24002184055e-05	-8.16602169255e-05
+UniRef50_Q5HQ44		0.0233144648132	0.00896620202729	-0.0143482627859
+UniRef50_UPI0003B47736	ABC transporter	5.48534508744e-05	1.50137789542e-05	-3.98396719202e-05
+UniRef50_Q9RYX6	Xanthine dehydrogenase, C terminal subunit	0.00018969919819	0.0154462706107	0.0152565714125
+UniRef50_A5N5A2	Predicted methyl accepting chemotaxis protein	0.000711431388129	0.00209672976631	0.00138529837818
+UniRef50_Q896Z8	2 hydroxyacid dehydrogenase	0.000888222259522	0.000890936513813	2.714254291e-06
+UniRef50_A0A023L6S3	AraC family transcriptional regulator	0.00369649322654	0.00111975540808	-0.00257673781846
+UniRef50_S6AEX2		0.000872536361223	0.000342307869233	-0.00053022849199
+UniRef50_UPI000374E005	hypothetical protein	8.01029820221e-05	1.30437963661e-05	-6.7059185656e-05
+UniRef50_A4BQV7		0.000225601952872	3.43161175401e-05	-0.000191285835332
+UniRef50_B2I1F3	GGDEF domain protein	7.8588339106e-05	0.00734373196011	0.007265143621
+UniRef50_Q9RZ34		0.000512598112666	0.066926493974	0.0664138958613
+UniRef50_P32053	Prophage CP4 57 integrase	0.00108704608187	0.00117557706547	8.85309836e-05
+UniRef50_P53579	Methionine aminopeptidase A	6.51516167641e-05	3.98612518492e-05	-2.52903649149e-05
+UniRef50_X1SD71	Marine sediment metagenome DNA, contig	5.37499953376e-05	0.000848859192237	0.000795109196899
+UniRef50_UPI0002483124	anaerobic glycerol 3 phosphate dehydrogenase subunit B, partial	8.25213401889e-05	0.000121782328858	3.92609886691e-05
+UniRef50_UPI0002EC7919	citrate lyase	6.96986107929e-05	4.19627471405e-05	-2.77358636524e-05
+UniRef50_N6U9J3		6.0213976558e-06	8.99072720102e-06	2.96932954522e-06
+UniRef50_UPI000219384C	amino acid transport protein, partial	8.58069097523e-05	0.000362302042933	0.000276495133181
+UniRef50_UPI0003488777	hypothetical protein	0.000169971883727	4.52986058613e-05	-0.000124673277866
+UniRef50_UPI000477CFFE	hypothetical protein, partial	0.000187598409299	0.000169494629795	-1.8103779504e-05
+UniRef50_A7IPN7	TRAP dicarboxylate transporter, DctM subunit	4.81515137809e-06	8.57893005674e-06	3.76377867865e-06
+UniRef50_P76537		0.00209079907652	0.000312504449935	-0.00177829462658
+UniRef50_Q02SV2	Tyrosine  tRNA ligase	0.000143811297212	0.000149492989024	5.681691812e-06
+UniRef50_UPI000379976F	hypothetical protein	1.7442224856e-05	6.7817546433e-06	-1.06604702127e-05
+UniRef50_D3E3L7	Ribonuclease III Rnc	0.00349403387883	0.00236911011144	-0.00112492376739
+UniRef50_Q8FAM3		0.00199452606254	0.000922864703728	-0.00107166135881
+UniRef50_E3H102		0.00318779069318	0.00162760157032	-0.00156018912286
+UniRef50_B7A940	Carbamoyl phosphate synthase small chain	3.61833149931e-05	1.85070185093e-05	-1.76762964838e-05
+UniRef50_P0A0V1	LPP20 lipoprotein	0.000898776163933	0.00486273282123	0.0039639566573
+UniRef50_A0A023RX60	Membrane protein insertase	0.000287097672285	0.00858287455781	0.00829577688553
+UniRef50_Q1CSU8	tRNA pseudouridine synthase D	0.000121638879333	0.00365313791682	0.00353149903749
+UniRef50_B3PB14		2.94241870736e-06	9.06645050914e-06	6.12403180178e-06
+UniRef50_U5QR95	ATPase	0.000104676274751	0.000148014819033	4.3338544282e-05
+UniRef50_UPI00036F0DA2	hypothetical protein	1.68735068094e-05	4.6403893996e-06	-1.22331174098e-05
+UniRef50_UPI00046FF35E	hypothetical protein, partial	0.000131904504881	0.00199314374117	0.00186123923629
+UniRef50_K7VAT5		1.03650276802e-05	3.39550108645e-05	2.35899831843e-05
+UniRef50_A0A024BZJ6	Peptide ABC transporter ATP binding protein	7.63111837258e-05	0.00561826297187	0.00554195178814
+UniRef50_W0YTU6	Aminoglycoside response regulator	0.00139879654241	0.00292403335831	0.0015252368159
+UniRef50_Q38YN7	Putative Holliday junction resolvase	0.0159539920915	0.00871287441779	-0.00724111767371
+UniRef50_D3V3Z5		2.59352942516e-05	3.64886123068e-05	1.05533180552e-05
+UniRef50_S0JG44		0.00277490168795	0.000630240733497	-0.00214466095445
+UniRef50_UPI00041DC2F9	ABC transporter	6.6377822421e-05	1.9381710839e-05	-4.6996111582e-05
+UniRef50_A7MUU9	Glutamate 1 semialdehyde 2,1 aminomutase	0.00448710573816	4.0387479338e-05	-0.00444671825882
+UniRef50_C1DQZ5	Transcriptional regulator PsrA	0.00133353279737	0.00050698146814	-0.00082655132923
+UniRef50_UPI0003A41BA8	succinate semialdehyde dehdyrogenase	1.04463163511e-05	0.000110295071468	9.98487551169e-05
+UniRef50_K8E2T1		3.88114116683e-05	0.000107844034216	6.90326225477e-05
+UniRef50_UPI00047B06D7	acetyltransferase	2.63064605777e-05	5.72319419515e-05	3.09254813738e-05
+UniRef50_UPI0003673946	hypothetical protein	0.00047650590164	0.000255513215777	-0.000220992685863
+UniRef50_Q1R4J9		0.00410762933058	0.00182939648424	-0.00227823284634
+UniRef50_F9Z1V7		0.000130784016554	0.00155387354433	0.00142308952778
+UniRef50_P31058		0.00195010595022	0.00087323945645	-0.00107686649377
+UniRef50_L0GJH1		0.00182700804616	0.00158234372656	-0.0002446643196
+UniRef50_UPI00047B6853	NAD binding oxidoreductase	1.62431559609e-05	2.65279926873e-05	1.02848367264e-05
+UniRef50_M1MHE2	Glycosyl transferase, family 2	7.44059110757e-05	0.00109975658954	0.00102535067846
+UniRef50_UPI00029A566E	glycoside hydrolase family protein	1.85400331874e-05	2.42365246543e-05	5.6964914669e-06
+UniRef50_UPI00030D2211	hypothetical protein	6.06044624924e-05	9.06308093076e-05	3.00263468152e-05
+UniRef50_Q67KH8	Imidazole glycerol phosphate synthase subunit HisH	1.14195399126e-05	1.16149392268e-05	1.953993142e-07
+UniRef50_P39794	PTS system trehalose specific EIIBC component	0.0126677351851	0.00419699302187	-0.00847074216323
+UniRef50_A4EHJ0	AzlC family protein	6.29202129575e-05	2.23128649955e-05	-4.0607347962e-05
+UniRef50_U6ED29	Ferrous iron transport protein B	0.0037477827622	0.000722463488991	-0.00302531927321
+UniRef50_Q21SX1	D alanine  D alanine ligase	0.00486232265292	0.00134949699205	-0.00351282566087
+UniRef50_X7X2Q6		2.99192168505e-05	1.04641759106e-05	-1.94550409399e-05
+UniRef50_A6M1J5		0.000186720699949	0.000479394136731	0.000292673436782
+UniRef50_A6M1J9		0.000784941123248	0.0030897850838	0.00230484396055
+UniRef50_Q98IL5	Mlr2349 protein	0.000102756812312	5.51135375225e-05	-4.76432747895e-05
+UniRef50_B2IM62	Cmp binding factor 1	0.00685109997428	0.00481311565228	-0.002037984322
+UniRef50_U3SS19		0.00483975215599	0.000342065681693	-0.0044976864743
+UniRef50_UPI0003D32881	hypothetical protein	0.00101020864089	1.04850860876e-05	-0.000999723554802
+UniRef50_R5ZJK5	Pyruvate dehydrogenase complex repressor	0.000165564030199	0.000565809443022	0.000400245412823
+UniRef50_P23173	Low affinity tryptophan permease	0.00385371302162	0.000605733083301	-0.00324797993832
+UniRef50_E0TBL9		3.47367607272e-05	1.1184156012e-05	-2.35526047152e-05
+UniRef50_J3KZC6		0.000108190273645	0.00046189898304	0.000353708709395
+UniRef50_P08987	Glucosyltransferase I	0.00469119221995	0.0019732121045	-0.00271798011545
+UniRef50_S5N864	Molecular chaperone GroES	0.00762707122606	0.00231030505892	-0.00531676616714
+UniRef50_UPI0001FFE2F2	2 amino 4 hydroxy 6 hydroxymethyldihydropteridin epyrophosphokinase	0.000111894335927	0.000115583837648	3.689501721e-06
+UniRef50_E8P8Z7	Transposase	5.35260825662e-05	1.8088448861e-05	-3.54376337052e-05
+UniRef50_B7H383	Fumarate reductase flavoprotein subunit	7.09115821271e-05	0.00957584426058	0.00950493267845
+UniRef50_UPI0003B789C4	DNA mismatch repair protein MutS	2.01800429941e-06	7.38274774422e-05	7.18094731428e-05
+UniRef50_Q49WG0	Organic hydroperoxide resistance protein like 2	0.00925329932551	0.0074116136236	-0.00184168570191
+UniRef50_X5MDF7	Thioesterase family protein domain protein	1.04842235922e-05	1.14341128037e-05	9.498892115e-07
+UniRef50_A4WNH8	Major facilitator superfamily MFS_1	0.00635630223941	0.000293368202811	-0.0060629340366
+UniRef50_A2SMC9	Phosphoheptose isomerase	2.06739875477e-05	1.97260897133e-05	-9.478978344e-07
+UniRef50_A8F5R0	Holliday junction ATP dependent DNA helicase RuvB	1.03102797246e-05	1.07474888836e-05	4.37209159e-07
+UniRef50_Q6MAC7	Glutamate 1 semialdehyde 2,1 aminomutase	3.8063877297e-06	6.88982650623e-06	3.08343877653e-06
+UniRef50_Q9JSQ9	Dihydrofolate reductase	1.37734124348e-05	0.00831015680389	0.00829638339146
+UniRef50_Q8UEB0	Phosphoribosylformylglycinamidine synthase 2	6.73114358529e-05	1.61416090264e-05	-5.11698268265e-05
+UniRef50_A5UKW8	Prephenate dehydrogenase 	0.00241892254872	0.00027871060906	-0.00214021193966
+UniRef50_I1VJZ3	PhoH	0.000228938364882	0.00688393220252	0.00665499383764
+UniRef50_A3M2Y1	Pseudouridine synthase	0.000127385598041	0.00302870484292	0.00290131924488
+UniRef50_C7MCQ3	Pseudouridine synthase	0.000154075913818	0.00713291459184	0.00697883867802
+UniRef50_UPI0002F44DE1	amino acid dehydrogenase	2.04340808687e-05	1.10657337888e-05	-9.3683470799e-06
+UniRef50_D2SFI0	SAF domain protein	0.000149165601091	2.45476866008e-05	-0.00012461791449
+UniRef50_Q041N3		1.13739241886e-05	1.92577607478e-05	7.8838365592e-06
+UniRef50_Q2NEB6	Phosphoribosylformylglycinamidine synthase 2	0.00404265552258	0.000690512270379	-0.0033521432522
+UniRef50_UPI000472CD1A	anhydro N acetylmuramic acid kinase	2.59910544547e-06	2.59577889735e-05	2.3358683528e-05
+UniRef50_F0S3X5		4.39325474021e-05	6.14604192458e-05	1.75278718437e-05
+UniRef50_UPI00035C5DE1	hypothetical protein	0.00028201575767	9.02944725924e-05	-0.000191721285078
+UniRef50_K9SGR1	Transposase IS4 family protein	6.4290731221e-05	1.72704547517e-05	-4.70202764693e-05
+UniRef50_A0A022S5M2	NAD binding domain of 6 phosphogluconate dehydrogenase family protein	8.1839675541e-05	0.000277514886541	0.000195675211
+UniRef50_P77211	Cation efflux system protein CusC	0.00627290823104	0.00341711104428	-0.00285579718676
+UniRef50_Q3IUV3	TraH	0.0366612917254	0.00983177993298	-0.0268295117924
+UniRef50_UPI0003B5C889	6 phosphofructokinase	2.27206508363e-05	9.3115154918e-06	-1.34091353445e-05
+UniRef50_E4BA85		8.43449572516e-06	6.02015836948e-05	5.17670879696e-05
+UniRef50_UPI00016A5A20	ABC type spermidine putrescine transport system, permease component II	3.96802204763e-05	0.000114820200813	7.51399803367e-05
+UniRef50_A3M530	Phage tail tape meausure protein lambda family	6.15466286206e-05	0.00534266354363	0.00528111691501
+UniRef50_G1UVN7		8.49230890476e-05	2.60476582826e-05	-5.8875430765e-05
+UniRef50_D5AUR3	Tyrosine protein kinase Wzc	0.0019106135318	0.000895621616885	-0.00101499191491
+UniRef50_UPI00040C0F6B	hypothetical protein	3.70014875625e-06	8.71714428149e-06	5.01699552524e-06
+UniRef50_Q6A666		9.89046258984e-05	0.00627880106146	0.00617989643556
+UniRef50_A8AQ52		0.00278632419218	0.00131338164962	-0.00147294254256
+UniRef50_Q2GCH6	Malate dehydrogenase	3.42967318858e-05	1.76359014312e-05	-1.66608304546e-05
+UniRef50_E2ZRH0		0.000320621656529	0.000622844134027	0.000302222477498
+UniRef50_UPI00047014CA	hypothetical protein	0.000186307243351	7.40277057652e-05	-0.000112279537586
+UniRef50_UPI000161E9D3	2 methyl branched chain enoyl CoA reductase isoform I	3.74463278101e-06	3.06672046248e-05	2.69225718438e-05
+UniRef50_P0ADV7	Probable phospholipid binding protein MlaC	0.00607319025028	0.00186853258617	-0.00420465766411
+UniRef50_UPI00039F6CD4	glutathione ABC transporter permease	1.53736692184e-05	2.6495755142e-05	1.11220859236e-05
+UniRef50_Q47NN7	Uroporphyrinogen decarboxylase	1.03579746867e-05	1.00471023132e-05	-3.108723735e-07
+UniRef50_Q9RXX4		0.000405898912746	0.0188208162243	0.0184149173116
+UniRef50_A4WS74		0.000330741114618	8.7435946252e-05	-0.000243305168366
+UniRef50_P39310		0.00114051067353	0.00275961606811	0.00161910539458
+UniRef50_B3DX01	Aspartate  tRNA ligase	2.75347321435e-06	3.92312955488e-06	1.16965634053e-06
+UniRef50_M9RV27	UPF0301 protein OA238_c37660	5.05275766811e-05	0.000110945811078	6.04182343969e-05
+UniRef50_P0AE13	AMP nucleosidase	0.00458100208324	0.00066283845966	-0.00391816362358
+UniRef50_UPI00046665BD	hypothetical protein	6.18100265434e-05	2.85437845488e-05	-3.32662419946e-05
+UniRef50_UPI000473A39B	30S ribosomal protein S15, partial	0.000164852158096	0.000133539151667	-3.1313006429e-05
+UniRef50_UPI00026CDD90	putative esterase	0.000182992757039	0.000113772798055	-6.9219958984e-05
+UniRef50_M2JJ86	Aryl alcohol dehydrogenase	0.00035985959882	0.00175435666453	0.00139449706571
+UniRef50_M9RIF3		5.95076213481e-05	0.000227692871371	0.000168185250023
+UniRef50_UPI000467C7F7	hypothetical protein	1.49539822438e-05	0.00010157590637	8.66219241262e-05
+UniRef50_Q4L8I6	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0277376706018	0.00566421499871	-0.0220734556031
+UniRef50_G7M6V2	Cof like hydrolase	0.0012355547902	0.00142666982638	0.00019111503618
+UniRef50_UPI0003B6B463	protein phosphatase	8.57644775715e-06	1.0581766776e-05	2.00531901885e-06
+UniRef50_Q9RS72		0.000129720271086	0.0445737677852	0.0444440475141
+UniRef50_L0LHI9		8.82023075829e-05	7.20336255997e-05	-1.61686819832e-05
+UniRef50_Q3IVA7	Phosphoglucomutase phosphomannomutase	0.000802297378384	0.000376567163405	-0.000425730214979
+UniRef50_W5X4J6	Glycoside hydrolase family protein	7.48994529727e-06	0.000100935265689	9.34453203917e-05
+UniRef50_P0A635	Cysteine  tRNA ligase	4.56035083835e-06	1.15090948905e-05	6.94874405215e-06
+UniRef50_Q838S5	Glyoxalase	4.20870301763e-05	0.00119523348917	0.00115314645899
+UniRef50_K7RWW8	3 5 exonuclease	0.000543019546019	0.003928756062	0.00338573651598
+UniRef50_Q1GDK6	Uroporphyrinogen decarboxylase	0.0142716639859	0.00348555649866	-0.0107861074872
+UniRef50_B0RVK3	Succinyl CoA	0.0133136531123	0.0399481304585	0.0266344773462
+UniRef50_A8ACZ6	Xaa Pro dipeptidase	0.00451495223133	0.00080613097734	-0.00370882125399
+UniRef50_A8LRK2		0.000437041328714	0.000204775113178	-0.000232266215536
+UniRef50_R7S2B2	HD domain PDEase like protein	2.41597887256e-06	6.70515302197e-06	4.28917414941e-06
+UniRef50_F0XZC7		0.000269520191837	0.000535785712312	0.000266265520475
+UniRef50_Q6GBA6	Histidinol phosphate aminotransferase	0.0186552743932	0.00669131202621	-0.011963962367
+UniRef50_UPI00037E8A1E	hypothetical protein	1.17587631553e-05	0.000174776342465	0.00016301757931
+UniRef50_UPI000255621F	hypothetical protein	3.3329442087e-05	3.02511250281e-05	-3.0783170589e-06
+UniRef50_G2RRU8	Glycerol uptake facilitator Permease 	0.0148307840887	0.000525786418738	-0.01430499767
+UniRef50_UPI0003FB737F	DNA gyrase subunit A	6.87623927077e-06	1.39678457209e-05	7.09160645013e-06
+UniRef50_J3I8M6		3.09107475349e-05	0.000591634499551	0.000560723752016
+UniRef50_Q8XBT3	Universal stress protein G	0.00657223082255	0.000566102310275	-0.00600612851228
+UniRef50_M9VBX6		0.000224004066923	0.00475112126189	0.00452711719497
+UniRef50_M4WZP2		0.000238412203486	0.000661156802679	0.000422744599193
+UniRef50_UPI00016C466B	Extracellular ligand binding receptor	7.59667976638e-06	2.38021061735e-05	1.62054264071e-05
+UniRef50_Q1IL91	NADH quinone oxidoreductase subunit B 2	2.91782887407e-05	0.000134068517014	0.000104890228273
+UniRef50_A6VB56		0.00140130727096	0.000383528188565	-0.0010177790824
+UniRef50_T1A5J7		1.08886392692e-05	4.41908693859e-05	3.33022301167e-05
+UniRef50_UPI0003B56320	DNA repair protein RadA	8.88224326416e-06	2.19455277163e-05	1.30632844521e-05
+UniRef50_UPI000382943F	hypothetical protein, partial	0.00013233442521	2.71424058965e-05	-0.000105192019314
+UniRef50_S8UV07		0.000149500838014	4.5608757559e-05	-0.000103892080455
+UniRef50_UPI0001913D8E	hypothetical protein, partial	5.60626694013e-05	6.13547616856e-05	5.2920922843e-06
+UniRef50_W4TLW8	ABC type multidrug transport system	0.000416344840642	0.000714475899663	0.000298131059021
+UniRef50_Q93K67	Arginine deiminase	0.00034531198059	0.00609572905263	0.00575041707204
+UniRef50_UPI00036FB25E	GMP synthase	1.35509705451e-05	1.07792058092e-05	-2.7717647359e-06
+UniRef50_V9U0L1	Transcriptional regulator	0.000238387123302	0.00026057356341	2.2186440108e-05
+UniRef50_F8FR22	ABC transporter permease protein	0.0245589962513	0.00768157444921	-0.0168774218021
+UniRef50_UPI00035D0F9F	hypothetical protein, partial	1.50770599952e-05	0.000144315739263	0.000129238679268
+UniRef50_S5S114	CarD family transcriptional regulator protein	0.00476040117614	0.00083803972742	-0.00392236144872
+UniRef50_UPI00037BA794	hypothetical protein	1.33490158393e-05	1.64159890884e-05	3.0669732491e-06
+UniRef50_E8SJL6	Manganese ABC transporter, ATP binding protein SitB	0.0194900015167	0.00492071690459	-0.0145692846121
+UniRef50_E1W2A8	Deoxyribose phosphate aldolase	0.000393113982	0.0012902373158	0.0008971233338
+UniRef50_UPI0003175B32	hypothetical protein	1.88641176413e-05	2.55057759843e-05	6.641658343e-06
+UniRef50_A6LZB7		0.000672355115255	0.0044009909253	0.00372863581005
+UniRef50_A6LZB6		0.000216945970609	0.000301856938874	8.4910968265e-05
+UniRef50_Q6GB21		0.00295060832698	0.000896840665248	-0.00205376766173
+UniRef50_UPI0003B57978	siderophore interacting protein	1.14355928213e-05	0.000610495452829	0.000599059860008
+UniRef50_C1N717	Predicted protein 	6.18829489886e-05	0.000157460542253	9.55775932644e-05
+UniRef50_Q5HIS8	Single stranded DNA binding protein 1	0.055049965532	0.0245721877675	-0.0304777777645
+UniRef50_UPI00046AB08C	hypothetical protein	8.68352887165e-06	0.000109258858791	0.000100575329919
+UniRef50_U7I8Y0		0.00129634534954	0.000474642211084	-0.000821703138456
+UniRef50_Q8DW20	AguR protein	0.00545234688493	0.00100319420213	-0.0044491526828
+UniRef50_UPI00046CE535	hypothetical protein	5.24391124012e-05	9.07922112568e-06	-4.33598912755e-05
+UniRef50_Q4EE14		0.000283498777876	0.000438160392755	0.000154661614879
+UniRef50_A6M0G1	Extracellular solute binding protein, family 5	0.000834814193266	0.00194451863003	0.00110970443676
+UniRef50_M1Y549		0.000165011658617	4.22318236215e-05	-0.000122779834996
+UniRef50_P37597	Inner membrane transport protein YdhC	0.00314854546762	0.000317902734364	-0.00283064273326
+UniRef50_UPI00046FDF41	hypothetical protein	1.16432129652e-05	2.66589005524e-05	1.50156875872e-05
+UniRef50_M3EIH0	Alkaline phosphatase	8.92785718753e-06	0.000371051242698	0.00036212338551
+UniRef50_Q88FX9	Nicotinate dehydrogenase subunit A	0.000249085644463	0.00101493398536	0.000765848340897
+UniRef50_P77923	Delta aminolevulinic acid dehydratase	0.000279099075769	0.00633465280423	0.00605555372846
+UniRef50_K5YXR4		2.56515961025e-06	1.58673936802e-05	1.330223407e-05
+UniRef50_Q6FED0	UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000373009181642	0.00588864850608	0.00551563932444
+UniRef50_B0KA54	GTPase Era	0.00169028099822	0.000719824693411	-0.000970456304809
+UniRef50_UPI00037E38E9	hypothetical protein, partial	1.93050692661e-05	0.000132412544879	0.000113107475613
+UniRef50_B9DIA5	Methylenetetrahydrofolate reductase	0.0237864330294	0.00515324347738	-0.018633189552
+UniRef50_W5XBY9	Sugar ABC transporter permease	3.88534849052e-05	7.3502942433e-05	3.46494575278e-05
+UniRef50_P71348	Glutamate pyruvate aminotransferase AlaA	0.000716282105868	0.00231379459493	0.00159751248906
+UniRef50_UPI00036FDD71	hypothetical protein	5.21628421797e-06	9.220967669e-06	4.00468345103e-06
+UniRef50_Q8CVL1	Multidrug resistance protein MdtE	0.00404971879983	0.0018552535062	-0.00219446529363
+UniRef50_A6LTI4		0.000150592814697	0.0013614924166	0.0012108996019
+UniRef50_A6LTI6		0.000152416953778	0.00374207894439	0.00358966199061
+UniRef50_A6LTI7		0.000138803792491	0.00162901646139	0.0014902126689
+UniRef50_Q98QY9	Glycerol kinase	2.17158329999e-06	8.02616276262e-05	7.80900443262e-05
+UniRef50_Q03ZA4	Ribosomal RNA small subunit methyltransferase G	0.0147534322414	0.0128532572221	-0.0019001750193
+UniRef50_X6FLX7	C4 dicarboxylate ABC transporter	1.28831672507e-05	2.86776151455e-05	1.57944478948e-05
+UniRef50_X0T626	Marine sediment metagenome DNA, contig	3.95622022752e-05	1.29442402025e-05	-2.66179620727e-05
+UniRef50_A4WNY5		0.0150506381063	0.00980029789019	-0.00525034021611
+UniRef50_F2D9R2	Predicted protein	5.16745400073e-06	0.000122148700345	0.000116981246344
+UniRef50_O25042		0.000182360381085	0.00698167885197	0.00679931847088
+UniRef50_UPI000377F130	hypothetical protein	0.000121574936125	8.00361562986e-05	-4.15387798264e-05
+UniRef50_Q2LUS9	2 C methyl D erythritol 4 phosphate cytidylyltransferase	1.73045032e-05	8.36942852922e-06	-8.93507467078e-06
+UniRef50_B7V621		0.000657658069571	0.00109985116255	0.000442193092979
+UniRef50_Q18CF3	DNA directed RNA polymerase subunit beta	4.24912972522e-06	3.0088349183e-06	-1.24029480692e-06
+UniRef50_X4QVT5	Antitoxin HicB	5.99138378937e-05	0.000176523274017	0.000116609436123
+UniRef50_R0U5E9		3.26576008664e-05	1.08033761939e-05	-2.18542246725e-05
+UniRef50_H7CZX2	DNA replication protein DnaC	0.000246086316459	0.00157599001565	0.00132990369919
+UniRef50_X5K1L0		0.000247832284945	0.000462096708163	0.000214264423218
+UniRef50_B1LXW0		0.00254370283955	0.00117886895209	-0.00136483388746
+UniRef50_UPI0003ACEF34	dihydrofolate synthase	2.00470741962e-06	2.02209855765e-05	1.82162781569e-05
+UniRef50_B2UX43	Chromosomal replication initiator protein DnaA	0.0112623430536	0.00456642502132	-0.00669591803228
+UniRef50_Q6G904	DNA primase	0.0190406576145	0.00471023152792	-0.0143304260866
+UniRef50_Q0TMX8	Threonine  tRNA ligase	0.000204451528796	0.000833818936025	0.000629367407229
+UniRef50_D0CZU1	2 oxoglutarate dehydrogenase E1 component	0.00835458268566	0.0021186019053	-0.00623598078036
+UniRef50_A5UN27	Putative antimicrobial peptide ABC transporter, permease component	0.00123730632132	0.000673240753426	-0.000564065567894
+UniRef50_UPI0003093DAF	hypothetical protein	8.82278766945e-06	5.10323507815e-06	-3.7195525913e-06
+UniRef50_Q9HZS1	Histidine transport ATP binding protein HisP	0.00054202023741	0.000244737600989	-0.000297282636421
+UniRef50_Q02F58	Phosphoserine phosphatase	0.00039839037489	0.00577165786004	0.00537326748515
+UniRef50_Q04849	Nitrogen assimilation regulatory protein NtrX	0.0042029536618	0.00092009278594	-0.00328286087586
+UniRef50_UPI0002378F3D	ABC transporter	3.81340870863e-06	3.00118447326e-06	-8.1222423537e-07
+UniRef50_A0M4U6	Phosphopantetheine adenylyltransferase	1.26616957756e-05	1.68303758117e-05	4.1686800361e-06
+UniRef50_Q9CHW5	Phosphoserine aminotransferase	0.00447947331171	0.00131520116333	-0.00316427214838
+UniRef50_UPI0002E6BDE4	hypothetical protein	7.77256900993e-05	1.06899487625e-05	-6.70357413368e-05
+UniRef50_P66901	Diaminopropionate ammonia lyase	0.00335974377099	0.00232366285866	-0.00103608091233
+UniRef50_P0A2E0	Nitrogen regulation protein NR	0.00350135714236	0.000418586134499	-0.00308277100786
+UniRef50_B9KU76	Gas vesicle protein	0.0012505997281	0.00081279827118	-0.00043780145692
+UniRef50_A6M095	Pentapeptide repeat protein	0.000342525236349	0.00135590410539	0.00101337886904
+UniRef50_Q8D653	Sulfate thiosulfate import ATP binding protein CysA	0.000116661898341	4.376729536e-05	-7.2894602981e-05
+UniRef50_A5UM14	Proteasome subunit beta	0.00158955364513	0.00216260462366	0.00057305097853
+UniRef50_P68209	Succinyl CoA ligase [ADP forming] subunit alpha 1, mitochondrial	5.60996344374e-05	3.62113745594e-05	-1.9888259878e-05
+UniRef50_Q9RZP0	Potassium transporting ATPase B chain	1.38425487671e-05	0.00784244833036	0.00782860578159
+UniRef50_V9ZQ34		0.000223384954315	0.000315846743525	9.246178921e-05
+UniRef50_B0K4D2	N acetyl gamma glutamyl phosphate reductase	5.3310024025e-06	1.70557550182e-05	1.17247526157e-05
+UniRef50_UPI0003B7561B	transposase, partial	9.69707931002e-05	8.32649203064e-05	-1.37058727938e-05
+UniRef50_UPI00029A0E68	dgpfaetke family protein	2.63646142194e-05	1.51699170307e-05	-1.11946971887e-05
+UniRef50_Q2CH80		2.78907460348e-05	0.000326119481191	0.000298228735156
+UniRef50_UPI000467FCE1	ABC transporter ATP binding protein	2.5975302123e-05	4.54469068407e-05	1.94716047177e-05
+UniRef50_L2Q9X2		9.66958834137e-05	1.61625606657e-05	-8.0533322748e-05
+UniRef50_UPI000361DBC6	hypothetical protein	6.53103590256e-06	6.82083735101e-05	6.16773376075e-05
+UniRef50_D8J0Q1	2 isopropylmalate synthase	3.21998901321e-06	1.2083083206e-05	8.86309419279e-06
+UniRef50_A0A014L0D1	Polyketide cyclase	2.79246277729e-05	4.74736117826e-05	1.95489840097e-05
+UniRef50_UPI00031B5027	hypothetical protein	8.94809452849e-06	2.11444371808e-06	-6.83365081041e-06
+UniRef50_B0CEH5		0.000116660721695	4.58869325352e-05	-7.07737891598e-05
+UniRef50_P0AA79	Hexuronate transporter	0.0034566739948	0.00069089442604	-0.00276577956876
+UniRef50_X2GRS8	FAD dependent pyridine nucleotide disulfide oxidoreductase	0.0158425986149	0.00172405589693	-0.014118542718
+UniRef50_A4W853	Negative modulator of initiation of replication	0.00269488381753	0.000326316801329	-0.0023685670162
+UniRef50_Q2NUD2	Cytidine deaminase	0.00291438493102	0.000755369253966	-0.00215901567705
+UniRef50_F0Y8N9		6.72786260995e-05	4.58191542328e-05	-2.14594718667e-05
+UniRef50_T1YB06	Ribosomal RNA small subunit methyltransferase E	0.0200712432531	0.00498183350878	-0.0150894097443
+UniRef50_Q8DWK3		0.00605372499495	0.00204170473111	-0.00401202026384
+UniRef50_M1XHY8	Membrane protein, putative	0.0048650516939	0.00205254462429	-0.00281250706961
+UniRef50_Q9RVM4	Transcriptional regulator	0.000436232529273	0.0420832337783	0.041647001249
+UniRef50_D7AF64	NADPH Fe oxidoreductase subunit beta	3.03344909874e-06	3.92985887758e-06	8.9640977884e-07
+UniRef50_UPI000427FE74	hypothetical protein	6.26062635493e-06	8.81401445695e-06	2.55338810202e-06
+UniRef50_A1WXT0	Zinc import ATP binding protein ZnuC	2.19873152004e-05	3.53139133472e-05	1.33265981468e-05
+UniRef50_UPI000380220D	hypothetical protein, partial	3.97351870416e-05	0.000198504469146	0.000158769282104
+UniRef50_P35630	NADP dependent isopropanol dehydrogenase	0.00220148601437	0.00137493197121	-0.00082655404316
+UniRef50_UPI0003641C87	hypothetical protein	1.00212644815e-06	1.75723760438e-05	1.65702495957e-05
+UniRef50_Q47152		0.00549178776369	0.00403200465087	-0.00145978311282
+UniRef50_UPI00036884C8	hypothetical protein	0.000200884117885	6.63884889273e-05	-0.000134495628958
+UniRef50_Q8KA76	RNA polymerase sigma factor RpoH	0.0022789234777	0.000414479586229	-0.00186444389147
+UniRef50_W4KQX7		1.72670631544e-06	9.4363042766e-06	7.70959796116e-06
+UniRef50_UPI0003734279	hypothetical protein	2.74371199291e-06	2.59455287883e-06	-1.4915911408e-07
+UniRef50_UPI000395CB52		2.44573020013e-05	4.11891037648e-05	1.67318017635e-05
+UniRef50_C5N1M7		0.000761034404067	2.45897694793e-05	-0.000736444634588
+UniRef50_UPI0003F148E4	glutamate rich protein 2 isoform 3	3.49335774146e-06	0.000598228434046	0.000594735076305
+UniRef50_UPI0003A99930	hypothetical protein	3.4046696582e-06	1.13995932104e-05	7.9949235522e-06
+UniRef50_B1M288		1.97176912657e-05	9.95149945399e-06	-9.76619181171e-06
+UniRef50_Q5Y0N1	RNA binding tegument protein	0.000124384520751	0.00013493960599	1.0555085239e-05
+UniRef50_A9M0X9		0.00108390792412	0.00386389038262	0.0027799824585
+UniRef50_W5V8H5	O methyltransferase	0.000137267632307	0.000497740449558	0.000360472817251
+UniRef50_Q8E7H4	Sensor protein LytS	0.00577726689744	0.00158359786283	-0.00419366903461
+UniRef50_UPI00021977F6	DNA repair ATPase	3.0831970033e-06	5.20041056974e-06	2.11721356644e-06
+UniRef50_A0LBS6	Plasmid pRiA4b ORF 3 family protein	0.000121394663855	1.01435046007e-05	-0.000111251159254
+UniRef50_Q5PJK8	sn glycerol 3 phosphate binding periplasmic protein UgpB	0.00223863487834	0.000543540262579	-0.00169509461576
+UniRef50_Q58400	Putative hydrogenase expression formation protein MJ0993	0.00450158673608	0.000933629868734	-0.00356795686735
+UniRef50_Q3IF99	Twitching motility protein PilU 	0.000245428490074	0.00494108344441	0.00469565495434
+UniRef50_B9KX88		0.0358514246382	0.00541999804001	-0.0304314265982
+UniRef50_UPI0003B52C75	ATP binding protein	4.92991863429e-05	1.65065199187e-05	-3.27926664242e-05
+UniRef50_UPI00037FF3F7	hypothetical protein	9.33313758677e-06	5.01751984567e-05	4.08420608699e-05
+UniRef50_Q3JNU0	NAD transhydrogenase subunit beta	0.000935208884628	0.0101613367368	0.00922612785217
+UniRef50_Q87NA5	Probable intracellular septation protein A	0.00331967903984	0.0010287948211	-0.00229088421874
+UniRef50_A4WC00	Protein MtfA	0.00172841700889	0.000516954293387	-0.0012114627155
+UniRef50_V6USS0	Leucyl tRNA synthetase 	0.000331184007446	0.000205214057872	-0.000125969949574
+UniRef50_P25131		0.00457780669233	0.00186285211532	-0.00271495457701
+UniRef50_A4XZS6	GCN5 related N acetyltransferase	0.000768644479962	0.000575292282856	-0.000193352197106
+UniRef50_I6SSZ2	Transcriptional regulator	0.00666524396169	0.00288034041398	-0.00378490354771
+UniRef50_UPI0004777E62	molecular chaperone GroES	1.23073522032e-05	0.000134086356488	0.000121779004285
+UniRef50_L7WXY9		0.120662254724	0.0336332433747	-0.0870290113493
+UniRef50_X1NEY9	Marine sediment metagenome DNA, contig	0.000230812002296	5.86934495774e-05	-0.000172118552719
+UniRef50_Q4L9U1	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0108801536274	0.00283087359372	-0.00804928003368
+UniRef50_A3PS34	Methyltransferase type 11	0.000201864165162	0.000299813913899	9.7949748737e-05
+UniRef50_F2DK91	Predicted protein 	7.83506406181e-05	4.48228842268e-05	-3.35277563913e-05
+UniRef50_Q9RUN0	UvrABC system protein C	6.14131218259e-05	0.0159052575331	0.0158438444113
+UniRef50_A6Q9M2	Imidazoleglycerol phosphate dehydratase	1.14988276095e-05	2.39261597791e-05	1.24273321696e-05
+UniRef50_B0VKB6	Type II secretion system protein L	0.000315693634753	0.0100234597846	0.00970776614985
+UniRef50_W8T948		3.73374070743e-05	0.000135562049752	9.82246426777e-05
+UniRef50_Q1CHM2	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	6.12250743721e-05	2.020250005e-05	-4.10225743221e-05
+UniRef50_D2ATJ4	2 isopropylmalate synthase	2.35739608585e-06	1.17798286299e-05	9.42243254405e-06
+UniRef50_UPI000349D801	hypothetical protein	1.09341186113e-05	0.00159030631402	0.00157937219541
+UniRef50_L7VSY8		0.000100800241366	0.00270507731418	0.00260427707281
+UniRef50_UPI00035C1945	hypothetical protein, partial	2.55300425828e-05	1.00574178025e-05	-1.54726247803e-05
+UniRef50_F5XRW0		0.000781403775608	0.00447389694955	0.00369249317394
+UniRef50_E9USM4		3.23090073268e-06	4.03717959656e-06	8.0627886388e-07
+UniRef50_B8A2U2		0.000124141865608	2.29945034618e-05	-0.000101147362146
+UniRef50_D8JJP8		8.95931935559e-05	0.0064113700103	0.00632177681674
+UniRef50_L7VTK0		0.00013198810799	0.000978427621959	0.000846439513969
+UniRef50_A0A017HMR2		0.000481737024421	8.39305871475e-05	-0.000397806437273
+UniRef50_UPI0003F79B23	N anthranilate isomerase	7.6025546299e-06	8.23527065541e-05	7.47501519242e-05
+UniRef50_B9KL86		0.00228494165222	0.00157007379245	-0.00071486785977
+UniRef50_Q2YXZ9	Probable CtpA like serine protease	0.0159507206765	0.00423847117099	-0.0117122495055
+UniRef50_C5MZV6		0.00200184172698	0.00212563122969	0.00012378950271
+UniRef50_A3PGB9	Two component, sigma54 specific, transcriptional regulator, Fis family	8.90297143505e-05	0.000134438560782	4.54088464315e-05
+UniRef50_UPI000308CCAF	hypothetical protein	1.15697317314e-05	1.08862330483e-05	-6.834986831e-07
+UniRef50_I6SVD2	ABC transporter permease	0.0054905474429	0.00137523189429	-0.00411531554861
+UniRef50_X5NVN5	Oxidoreductase 	6.60304303512e-05	4.78625120955e-05	-1.81679182557e-05
+UniRef50_E5ANB9	Transposase	8.41450708557e-05	4.46984999313e-05	-3.94465709244e-05
+UniRef50_UPI00035E5C37	hypothetical protein	1.90399327373e-05	0.000590036323223	0.000570996390486
+UniRef50_B0VTM3	Signal peptidase I	0.000380643142163	0.00462802623346	0.0042473830913
+UniRef50_Q6ASN4	GMP synthase [glutamine hydrolyzing]	2.58234881714e-05	3.22168882966e-05	6.3934001252e-06
+UniRef50_Q8RBE5	Dephospho CoA kinase	1.59608343145e-05	1.35740187458e-05	-2.3868155687e-06
+UniRef50_A6LWC7	Glycerol 1 phosphate dehydrogenase (+))	0.000119206101737	0.000718768717791	0.000599562616054
+UniRef50_W1GFB3	ABC peptide transporter, inner membrane subunit	0.000672732690309	0.000285336752184	-0.000387395938125
+UniRef50_U5UCP9	Putative transposase	0.000399030676636	0.000192226710349	-0.000206803966287
+UniRef50_UPI000255CD61	peptidase M24	5.11554200297e-06	2.17259459547e-05	1.66104039517e-05
+UniRef50_U3TGB3	ATPase components of ABC transporters	0.00564049648223	0.000637189910954	-0.00500330657128
+UniRef50_F8ACN4	TraU family protein	0.000105155868877	1.56713989583e-05	-8.94844699187e-05
+UniRef50_UPI0003710E05	hypothetical protein	5.48727988055e-06	8.86800168774e-06	3.38072180719e-06
+UniRef50_UPI000287BD0C	iron siderophore uptake system transmembrane protein	1.85570698396e-05	2.46666861624e-05	6.1096163228e-06
+UniRef50_U2SDU2	Macro domain protein	1.86379009635e-05	0.000170827956918	0.000152190055955
+UniRef50_P21362	Protein YciF	0.00246758976008	0.000392882534625	-0.00207470722546
+UniRef50_L8FTT7		0.000174130730822	0.000293779615222	0.0001196488844
+UniRef50_Q1GEB3		0.000428390235975	7.15630141786e-05	-0.000356827221796
+UniRef50_D8JLE3	Cell division protein FtsQ	0.00014334910969	0.0052397511638	0.00509640205411
+UniRef50_Q1GEB7		0.000144532557278	8.38466394581e-05	-6.06859178199e-05
+UniRef50_G9F1Y9	2 enoate reductase FldZ	0.00033784934993	0.00168181456954	0.00134396521961
+UniRef50_J3PLS0		1.76417593292e-05	6.45814050655e-05	4.69396457363e-05
+UniRef50_Q01V55	Dihydroorotase	1.89253211283e-05	7.18785523468e-06	-1.17374658936e-05
+UniRef50_R0VGG6		6.24316632184e-05	1.11943812053e-05	-5.12372820131e-05
+UniRef50_UPI00021958FB	inosine 5 monophosphate dehydrogenase	1.16221459969e-05	6.74000538166e-05	5.57779078197e-05
+UniRef50_C5N5S9	Streptolysin associated protein SagD	0.0065610370904	0.00158912095191	-0.00497191613849
+UniRef50_UPI000472128D	hypothetical protein, partial	8.55214457501e-06	1.20275982234e-05	3.47545364839e-06
+UniRef50_P36647	Prepilin peptidase dependent protein D	0.000267089143052	0.000404543431768	0.000137454288716
+UniRef50_Q3KIW4	Nicotinate phosphoribosyltransferase	0.00184569590458	0.000481871637809	-0.00136382426677
+UniRef50_UPI00040FE5F8	hypothetical protein	0.000140245922481	0.000111898014332	-2.8347908149e-05
+UniRef50_P45394	Inner membrane protein YrbG	0.00248425803855	0.000438650232183	-0.00204560780637
+UniRef50_Q8PWQ2	UPF0107 protein MM_1524	0.000687448771559	0.0221487528896	0.021461304118
+UniRef50_P25718	Alpha amylase	0.00293335089222	0.000944551521626	-0.00198879937059
+UniRef50_UPI00047A8026	D ribose transporter ATP binding protein	3.1122563277e-06	1.14662674595e-05	8.3540111318e-06
+UniRef50_Q3IV67		0.00452853633036	0.00113110222496	-0.0033974341054
+UniRef50_Q5FL71	Prolipoprotein diacylglyceryl transferase	7.28625190608e-06	0.000677372903543	0.000670086651637
+UniRef50_K7RVZ0	TIGR01777 family protein	0.000126249494601	0.00810572466251	0.00797947516791
+UniRef50_B0VR24		9.03442746157e-06	0.00300645552726	0.0029974210998
+UniRef50_Q17ZN4	NADPH dependent 7 cyano 7 deazaguanine reductase	0.000451427665587	0.00765920185557	0.00720777418998
+UniRef50_A0A017TGF9		0.000117392175095	5.00305302093e-05	-6.73616448857e-05
+UniRef50_R7C015	ABC transporter permease protein	0.000658106748512	0.000983244159752	0.00032513741124
+UniRef50_P23874	Serine threonine protein kinase HipA	0.00188077423819	0.00165633768778	-0.00022443655041
+UniRef50_P54385	Glutamate dehydrogenase, mitochondrial	6.52898490794e-06	1.27182257874e-05	6.18924087946e-06
+UniRef50_V9T176	Phage tail length tape measure protein	0.000690280184256	0.000828016336657	0.000137736152401
+UniRef50_UPI0004690011	hypothetical protein	1.4585432813e-06	3.19258010404e-06	1.73403682274e-06
+UniRef50_Q729V5	1,4 alpha glucan branching enzyme GlgB	3.77878698851e-06	7.6275014235e-06	3.84871443499e-06
+UniRef50_P76251	D malate dehydrogenase [decarboxylating]	0.00279773383952	0.00723658526859	0.00443885142907
+UniRef50_M4QX58		0.000154919010474	0.00433940503256	0.00418448602209
+UniRef50_P05417	Ubiquinol cytochrome c reductase iron sulfur subunit	0.0039820486114	0.000602687153456	-0.00337936145794
+UniRef50_B4V7N1	Integral membrane protein	3.56200252365e-05	3.51090316775e-05	-5.10993559e-07
+UniRef50_S5XTF2		0.000275438385494	6.99930109575e-05	-0.000205445374536
+UniRef50_P76418		0.00334559105602	0.0014774852516	-0.00186810580442
+UniRef50_P65264	Lipoprotein signal peptidase	0.000678118542849	7.33652145062e-05	-0.000604753328343
+UniRef50_Q8NXI7	MW0768 protein	0.0165691126842	0.000600644146164	-0.015968468538
+UniRef50_J7M936	Competence protein	9.31772114203e-06	2.36436077487e-05	1.43258866067e-05
+UniRef50_UPI000466F951	hypothetical protein	1.11235640618e-05	4.83065357461e-05	3.71829716843e-05
+UniRef50_A0A023S2A4	Anhydratase	0.000226319551871	0.0104032284435	0.0101769088916
+UniRef50_UPI00036D0961	hypothetical protein	1.08090106798e-05	6.91415519432e-05	5.83325412634e-05
+UniRef50_F4AWZ4	Acetyl CoA acetyltransferase	0.0119538864178	0.00416581225511	-0.00778807416269
+UniRef50_UPI0004692135	cell division protein	2.41999729773e-06	2.92030284286e-05	2.67830311309e-05
+UniRef50_I6T6L1		0.00490303065892	0.00115237180559	-0.00375065885333
+UniRef50_F9YRZ6	HD domain containing protein 2	2.69534117763e-05	2.25242321922e-05	-4.4291795841e-06
+UniRef50_X1T676	Marine sediment metagenome DNA, contig	1.63419450484e-05	0.00021614616051	0.000199804215462
+UniRef50_I0I0B9		2.982452067e-05	1.82535131153e-05	-1.15710075547e-05
+UniRef50_Q8CPM1	Protoheme IX farnesyltransferase	0.0209683406444	0.00601370238337	-0.014954638261
+UniRef50_UPI0003613269	hypothetical protein	9.33464011615e-05	8.58097414564e-05	-7.5366597051e-06
+UniRef50_A5UJC1	Predicted transcription regulator 	0.00308898325174	0.000303407573826	-0.00278557567791
+UniRef50_Q9HSC3	Archaeal Lon protease	0.00252692122893	0.000281117718886	-0.00224580351004
+UniRef50_A3I3T9		0.000214034627228	0.000197007803564	-1.7026823664e-05
+UniRef50_D6SE14	4 phosphopantetheinyl transferase family protein	0.0172477035074	0.000998060263055	-0.0162496432443
+UniRef50_O26872		0.00220884133646	0.00154178300083	-0.00066705833563
+UniRef50_F6DA35		2.36597432698e-05	1.36035498907e-05	-1.00561933791e-05
+UniRef50_A0A016QP53		0.000369661543406	0.000100050246086	-0.00026961129732
+UniRef50_C6D6V1	Extradiol ring cleavage dioxygenase class III protein subunit B	0.000964540787351	0.00192377730863	0.000959236521279
+UniRef50_Q9RX31		0.000409285711357	0.0576873507816	0.0572780650702
+UniRef50_Q5HH87	Regulatory protein Spx	0.0108788541575	0.0120331991202	0.0011543449627
+UniRef50_UPI0003641212	hypothetical protein	1.82340779019e-05	9.99261487502e-06	-8.24146302688e-06
+UniRef50_UPI00034C12E9	hypothetical protein	6.9637076968e-07	1.39642356514e-05	1.32678648817e-05
+UniRef50_Q9RX39		0.000230044792465	0.0220865498423	0.0218565050498
+UniRef50_UPI00026C7577	oxidoreductase	1.38659649176e-05	1.86974401265e-05	4.8314752089e-06
+UniRef50_UPI000428654A	hypothetical protein	4.47392491801e-05	2.09588827432e-05	-2.37803664369e-05
+UniRef50_A8LTG8	NADH dehydrogenase 	0.00934019849585	0.00102085984401	-0.00831933865184
+UniRef50_E3I8L4		0.00611876282111	0.00200808416269	-0.00411067865842
+UniRef50_J0XSF7		0.0513049709221	0.00233144767259	-0.0489735232495
+UniRef50_UPI000454614C		1.66461712178e-06	1.64901363444e-05	1.48255192226e-05
+UniRef50_E7EWU3	Acetyl coenzyme A synthetase, cytoplasmic	3.81541307996e-06	2.14397251516e-05	1.76243120716e-05
+UniRef50_D0C8Q0		0.000117110441217	0.00563391484364	0.00551680440242
+UniRef50_A3U071		1.47238885055e-05	3.25295088891e-05	1.78056203836e-05
+UniRef50_M1MFW2	Cobalamin biosynthesis protein CobD	0.000779562398727	0.00031361066038	-0.000465951738347
+UniRef50_P19318	Respiratory nitrate reductase 2 beta chain	0.00288732484574	0.00143133738948	-0.00145598745626
+UniRef50_UPI000376E605	hypothetical protein	2.6674446554e-05	2.61901875984e-05	-4.842589556e-07
+UniRef50_X5EIL9	Tandem five TM family protein	0.00795500277792	0.00106777734317	-0.00688722543475
+UniRef50_H0PXP7		0.000786677190994	0.000118144031415	-0.000668533159579
+UniRef50_Q4L3J2	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0206001290036	0.00575165995132	-0.0148484690523
+UniRef50_B9KQG2	Chemotaxis MotB protein	0.0142613161985	0.00325941138405	-0.0110019048145
+UniRef50_Q3J6K8	Transcriptional regulator AcuR	0.010457243851	0.00266519052993	-0.00779205332107
+UniRef50_D5BS88	Aerobic glycerol 3 phosphate dehydrogenase	0.00123740947687	0.000654333801122	-0.000583075675748
+UniRef50_A6M2L9	Capsular exopolysaccharide family	0.000170038733717	0.00146291508511	0.00129287635139
+UniRef50_J9DL69		1.61626434882e-05	5.78101069547e-06	-1.03816327927e-05
+UniRef50_UPI0003EFB221	hypothetical protein	4.53211126404e-05	5.01662530361e-05	4.8451403957e-06
+UniRef50_UPI00046939D9	hypothetical protein	1.74752379989e-05	1.01333503721e-05	-7.3418876268e-06
+UniRef50_UPI00038308DC	hypothetical protein M271_48570	9.66337255591e-06	4.15433201229e-05	3.1879947567e-05
+UniRef50_A6M0I9		0.00016508133623	0.000708465746741	0.000543384410511
+UniRef50_R9YNN7	ABC 2 transporter family protein	0.00546480751441	0.00722300561842	0.00175819810401
+UniRef50_P0A1A6	Branched chain amino acid aminotransferase	0.0020358755766	0.000993391537532	-0.00104248403907
+UniRef50_R7PVV7	Conserved hypothetical membrane protein Msm_1770	0.00139895125516	0.00053693946399	-0.00086201179117
+UniRef50_T0MQ15		2.07086548719e-05	4.62836384938e-06	-1.60802910225e-05
+UniRef50_UPI000364254B	hypothetical protein	1.81432309913e-05	6.19993327076e-06	-1.19432977205e-05
+UniRef50_UPI0003B3327B	16S rRNA methyltransferase	7.16663046167e-06	1.09414866562e-05	3.77485619453e-06
+UniRef50_Q9ZKX6	Putative	0.000521395803504	0.00245194622331	0.00193055041981
+UniRef50_UPI000469FF0C	hypothetical protein	7.41243022549e-06	1.08800575862e-05	3.46762736071e-06
+UniRef50_P39829	D galactarate dehydratase	0.00292883297348	0.00618345656555	0.00325462359207
+UniRef50_UPI00035E2496	hypothetical protein	5.44078358104e-05	3.22410668852e-05	-2.21667689252e-05
+UniRef50_A3PPP4		0.000114161201013	1.13822235914e-05	-0.000102778977422
+UniRef50_Q74IL5	50S ribosomal protein L27	0.00662760749953	0.0024620569401	-0.00416555055943
+UniRef50_UPI000379C346	hypothetical protein	3.16654567748e-05	0.000414242237802	0.000382576781027
+UniRef50_UPI0003FF1625	hypothetical protein	3.5415317548e-05	3.0683708334e-05	-4.731609214e-06
+UniRef50_B4QTQ4	GD21117	3.60705131652e-05	2.22494684607e-05	-1.38210447045e-05
+UniRef50_S4GRW5	Polyphosphate kinase 	0.000292512079526	0.0233776446907	0.0230851326112
+UniRef50_UPI000380F5C4	hypothetical protein	9.00158313422e-07	8.46389058594e-07	-5.3769254828e-08
+UniRef50_Q6F8V1	2,3 dihydroxybenzoate AMP ligase	0.00019719975882	0.00670947507743	0.00651227531861
+UniRef50_O34987	Guanine hypoxanthine permease PbuG	0.0210958936531	0.0105009596311	-0.010594934022
+UniRef50_X4UKI9	Membrane protein	7.80810490109e-06	8.24156514316e-06	4.3346024207e-07
+UniRef50_U5PB64	Uroporphyrinogen decarboxylase	0.00291163590113	0.00189291625163	-0.0010187196495
+UniRef50_N2JS66	Cyanate hydratase	0.00238476753563	0.000345399655201	-0.00203936788043
+UniRef50_UPI00031EB597	hypothetical protein	3.44031671482e-05	7.15982024871e-05	3.71950353389e-05
+UniRef50_Q9KN37	Ribose import ATP binding protein RbsA	1.76644650209e-05	1.82101642495e-05	5.456992286e-07
+UniRef50_Q1XDM0	Pyruvate dehydrogenase E1 component subunit alpha	5.09700187677e-06	1.57494231675e-05	1.06524212907e-05
+UniRef50_UPI0001FFE0CA	DEAD DEAH box helicase	2.14073724003e-06	0.00010708786431	0.00010494712707
+UniRef50_UPI0003175780	hypothetical protein	5.15056249552e-06	1.00541843327e-05	4.90362183718e-06
+UniRef50_G7M2K8	YibE F family protein	0.000104277897476	0.00139816367086	0.00129388577338
+UniRef50_A6LWW9		0.000229707498285	0.000569742839604	0.000340035341319
+UniRef50_Q1QA11	Ribosomal protein S12 methylthiotransferase RimO	0.00315974778708	0.0577544898855	0.0545947420984
+UniRef50_Q03224	Fructose 1,6 bisphosphatase class 2	0.00274947101137	0.00149352001702	-0.00125595099435
+UniRef50_B2TBY2	VRR NUC domain protein	0.000810055288423	0.000107453015844	-0.000702602272579
+UniRef50_Q160T4	Histidine  tRNA ligase	0.00123608981799	0.000126473963685	-0.0011096158543
+UniRef50_Q8VQS9	MntC	0.0118001290659	0.000459207073564	-0.0113409219923
+UniRef50_A6LW09	Response regulator receiver protein	8.48283121002e-05	0.00153786222414	0.00145303391204
+UniRef50_E4GYP5	Phenylalanine  tRNA ligase beta subunit	0.000156956296637	0.00433814918197	0.00418119288533
+UniRef50_Q05756	Glutamate synthase [NADPH] small chain	0.00182548531874	0.000385792153819	-0.00143969316492
+UniRef50_Q58569	Protein FwdA	0.00372795827053	0.000448156465229	-0.0032798018053
+UniRef50_W0RSQ0		1.94683583351e-05	5.80051521861e-05	3.8536793851e-05
+UniRef50_UPI00045E8969	hypothetical protein	1.30023489956e-05	1.77161130512e-05	4.7137640556e-06
+UniRef50_UPI00035A2281	PREDICTED	1.05773835482e-05	4.84319633896e-05	3.78545798414e-05
+UniRef50_X6ZDD4		0.000158557191652	4.64836144275e-05	-0.000112073577224
+UniRef50_U6ED09	ATP dependent RNA helicase, DEAD DEAH box family	0.00276072421958	0.00085373104716	-0.00190699317242
+UniRef50_V6EN15	Oligopeptidase A	0.00537317263568	0.00241130511707	-0.00296186751861
+UniRef50_UPI0003761157	hypothetical protein	6.19705686204e-05	9.0598183929e-06	-5.29107502275e-05
+UniRef50_W9EJG3	Tandem lipoprotein	5.52826268501e-05	8.12209023577e-05	2.59382755076e-05
+UniRef50_Q8XDN0	Septum site determining protein MinC	0.00295121637515	0.00147212539437	-0.00147909098078
+UniRef50_A9B6J1	DNA directed RNA polymerase subunit beta	9.42652847353e-07	3.60212737802e-06	2.65947453067e-06
+UniRef50_UPI0003AB99D7		0.000405189863182	1.20865445599e-05	-0.000393103318622
+UniRef50_A3DEM3	4 hydroxy tetrahydrodipicolinate reductase	0.000281705961835	0.000631980646712	0.000350274684877
+UniRef50_B5YHP1	Adenylate kinase	2.87008915949e-05	5.48688779862e-05	2.61679863913e-05
+UniRef50_A0A024L5Z4	Glycyl radical enzyme activating protein family	0.000726139519627	0.00154078280971	0.000814643290083
+UniRef50_Q1Q8C1	Sec independent protein translocase protein TatC	0.000347379744345	0.00446130776241	0.00411392801807
+UniRef50_R4LTT1		2.53735323054e-05	6.16975961362e-05	3.63240638308e-05
+UniRef50_Q7BQS4	Se3	9.5563583074e-05	6.47729163482e-05	-3.07906667258e-05
+UniRef50_A0A013GNM0	Penicillin binding transpeptidase domain protein	0.000452675413254	0.00697751451027	0.00652483909702
+UniRef50_W7T589		4.8865870735e-05	1.45747900163e-05	-3.42910807187e-05
+UniRef50_U3SVP2	Signal peptidase type IV	0.00346104486116	0.00239060605953	-0.00107043880163
+UniRef50_UPI000463AB2B	proline iminopeptidase	6.90262166838e-06	9.19897813907e-06	2.29635647069e-06
+UniRef50_UPI00046A179B	dihydropteroate synthase	5.19730628353e-06	9.26754626421e-05	8.74781563586e-05
+UniRef50_UPI0003A95978	hypothetical protein	3.87422294827e-05	3.85563551135e-05	-1.858743692e-07
+UniRef50_F3ZGB9	Putative AraC family transcription regulator	1.92649951006e-06	0.000156722388568	0.000154795889058
+UniRef50_A0A011NPY8	Phosphofructokinase	1.13278885152e-05	0.000329593880414	0.000318265991899
+UniRef50_D3DJ42	2 oxoglutarate carboxylase small subunit	0.0357993525907	0.0158055817562	-0.0199937708345
+UniRef50_UPI00037C16F6	ABC transporter permease	5.13008799522e-06	2.08503899299e-05	1.57203019347e-05
+UniRef50_UPI0003B5FDE5	PREDICTED	1.12113284331e-06	8.81558939275e-07	-2.39573904035e-07
+UniRef50_L2Y6Z3	Inner membrane ABC transporter ATP binding protein YddA	0.00158184742444	0.00174776241254	0.0001659149881
+UniRef50_UPI0003B5FA7B	diacylglycerol kinase	1.11200722409e-05	8.94418242077e-05	7.83217519668e-05
+UniRef50_UPI00035D784B	hypothetical protein	1.07665698244e-05	3.42478378076e-05	2.34812679832e-05
+UniRef50_C8KCZ1		1.63128915561e-06	9.31824982898e-06	7.68696067337e-06
+UniRef50_A4WTQ5	Cytochrome c biogenesis factor like protein	0.000308658515242	0.000269526413726	-3.9132101516e-05
+UniRef50_UPI00026CD046	cell wall hydrolase	4.63368908805e-06	6.81650702886e-06	2.18281794081e-06
+UniRef50_M3K7Q0	Replication initiation protein RepC	8.41080854467e-05	3.34422769452e-05	-5.06658085015e-05
+UniRef50_W0ISJ9	Sulfate thiosulfate transporter subunit	0.00695766637868	0.00237123855438	-0.0045864278243
+UniRef50_UPI000378F5B1	hypothetical protein, partial	9.77547095748e-06	4.15153315766e-05	3.17398606191e-05
+UniRef50_N7TQJ5		0.000239646540089	0.000365166229343	0.000125519689254
+UniRef50_C9R5I1	Lipopolysaccharide biosynthesis protein	3.12894684428e-06	5.41625872492e-06	2.28731188064e-06
+UniRef50_A5D5F2		1.78563270122e-06	2.46849605136e-06	6.8286335014e-07
+UniRef50_A0A023L0Z2	Tail assembly protein	0.000519235789519	0.000538571498834	1.9335709315e-05
+UniRef50_UPI0003799A1D	hypothetical protein	2.02649546358e-05	0.00039076128183	0.000370496327194
+UniRef50_UPI0003836BE8		1.16835891119e-06	5.25259459081e-06	4.08423567962e-06
+UniRef50_P23101	Toluate 1,2 dioxygenase electron transfer component	0.00105164845735	0.000221408825359	-0.000830239631991
+UniRef50_X7EHW6		0.000387392749395	0.000301386165342	-8.6006584053e-05
+UniRef50_UPI0003646727	hypothetical protein	6.93350505529e-05	6.85112377367e-05	-8.238128162e-07
+UniRef50_A5N1Z0		0.000158997433803	0.00225674895649	0.00209775152269
+UniRef50_H0PW14	Transcriptional regulator, LuxR family	0.00050800391874	0.00130151586895	0.00079351195021
+UniRef50_B1LE56	Cysteine desulfurase	0.000623482142684	0.00101949863082	0.000396016488136
+UniRef50_E3G1U2	Alpha L rhamnosidase	0.000799906236806	0.000248148876585	-0.000551757360221
+UniRef50_UPI000265785F	PREDICTED	5.01642342693e-06	8.08781842324e-06	3.07139499631e-06
+UniRef50_Q9ZS97	UPF0051 protein ABCI8, chloroplastic	0.0123884638089	0.00359875269364	-0.00878971111526
+UniRef50_UPI00047644EC	glycogen debranching protein	3.25812123978e-06	1.07034997416e-05	7.44537850182e-06
+UniRef50_UPI0003B33C48	hypothetical protein	0.000154015127585	0.000321355637372	0.000167340509787
+UniRef50_Q3J226	Phage protein, HK97 gp10 family	0.00508585783294	0.0011743897636	-0.00391146806934
+UniRef50_Q8DRY1		0.00558598359346	0.000750590748787	-0.00483539284467
+UniRef50_UPI0003B70F3D	multidrug ABC transporter ATP binding protein	1.06783807927e-05	2.32430738122e-05	1.25646930195e-05
+UniRef50_UPI00042929E4	hypothetical protein	3.65831068215e-05	2.74822333085e-05	-9.100873513e-06
+UniRef50_P37056	Probable endopeptidase YaeF	0.002005502287	0.000316976785549	-0.00168852550145
+UniRef50_A7IM59	Pyridoxine 5 phosphate synthase	0.000482003584857	0.00764284989672	0.00716084631186
+UniRef50_Q8TQ79	Enolase	8.58745161339e-06	7.43581556257e-05	6.57707040123e-05
+UniRef50_UPI0002DF017A	hypothetical protein	7.00675146039e-05	1.26460936427e-05	-5.74214209612e-05
+UniRef50_UPI00038FD033	KDP operon transcriptional regulatory protein KdpE	2.41348165212e-05	3.97396415166e-05	1.56048249954e-05
+UniRef50_E8U6Y9		3.38849076462e-05	0.00022134952232	0.000187464614674
+UniRef50_Q7CJM5	Outer membrane protein assembly factor BamB	0.002310704462	0.00183072346489	-0.00047998099711
+UniRef50_UPI000370F145	hypothetical protein	7.15946695159e-06	4.33823841614e-06	-2.82122853545e-06
+UniRef50_K8C533	2 ketogluconate transporter	4.81146857949e-05	6.1138344272e-05	1.30236584771e-05
+UniRef50_UPI00046A53B5	nickel transporter permease NikC	7.83920258189e-06	8.73067670882e-06	8.9147412693e-07
+UniRef50_Q3IWB5	Zinc import ATP binding protein ZnuC	0.00017861401246	1.05175051994e-05	-0.000168096507261
+UniRef50_F4DWP9	Methyl accepting chemotaxis sensory transducer	0.000468115415633	0.000285984355477	-0.000182131060156
+UniRef50_D9UC41	Membrane protein 	4.48853793592e-05	2.63910373091e-06	-4.22462756283e-05
+UniRef50_X8APG4	FeS assembly SufB domain protein	3.01690121525e-06	3.94588810191e-05	3.64419798038e-05
+UniRef50_E6WPS1	Appr 1 p processing domain protein	1.25609106857e-05	0.000207488831115	0.000194927920429
+UniRef50_UPI00047CA54F	chemotaxis protein CheY	0.000829526474472	9.55028964568e-05	-0.000734023578015
+UniRef50_P10482	Beta glucosidase A	3.15703538041e-06	7.68800377198e-06	4.53096839157e-06
+UniRef50_Q7UF84	Biotin synthase	6.61076097737e-06	0.000882401865048	0.000875791104071
+UniRef50_A9M323		0.00169228986145	0.0104597686755	0.00876747881405
+UniRef50_A3CP26		0.000519476131447	0.00124580779575	0.000726331664303
+UniRef50_UPI000374A30D	hypothetical protein	0.000269299040371	4.11904180894e-05	-0.000228108622282
+UniRef50_S0RSE8		1.48469144131e-05	0.000130806730846	0.000115959816433
+UniRef50_UPI000474435D	Phyllosphere induced regulator PhyR	0.000331370467465	5.24076867529e-05	-0.000278962780712
+UniRef50_UPI0003A55370	tRNA synthetase RNA binding protein	6.33410463306e-06	1.28190600404e-05	6.48495540734e-06
+UniRef50_F2EPT9	Transporting ATPase YfcM	0.000281164778654	9.88859968553e-05	-0.000182278781799
+UniRef50_UPI00047D26C2	branched chain amino acid ABC transporter ATP binding protein	1.09777596683e-05	1.83477044788e-05	7.3699448105e-06
+UniRef50_A3PJ45	Histidine kinase	0.00304653473166	0.000693604921494	-0.00235292981017
+UniRef50_UPI00047C6448	ribosomal protein S3 	3.01173807326e-05	4.4705426059e-05	1.45880453264e-05
+UniRef50_UPI000421C8B5	cation	0.000249817127137	0.000514471137146	0.000264654010009
+UniRef50_UPI0004792DA6	DSBA oxidoreductase	2.50302560182e-05	1.05228545308e-05	-1.45074014874e-05
+UniRef50_F4BY74	Acyl coenzyme A synthetase	0.0028741246228	0.000356919098857	-0.00251720552394
+UniRef50_P34897	Serine hydroxymethyltransferase, mitochondrial	7.05503156805e-05	0.000100935017392	3.03847017115e-05
+UniRef50_B7MGN9	Cyclic pyranopterin monophosphate synthase	0.00330987781524	0.0013184955654	-0.00199138224984
+UniRef50_V9WDD5	Deacetylase	0.00123122913801	0.000440311476324	-0.000790917661686
+UniRef50_UPI0003819A1B	hypothetical protein	8.02084964377e-06	6.73676450172e-06	-1.28408514205e-06
+UniRef50_A1A1W2	Tyrosine  tRNA ligase	0.000643103339528	0.00682843678021	0.00618533344068
+UniRef50_Q1GTK0	NADH quinone oxidoreductase subunit D	0.0116929002798	0.00363099731956	-0.00806190296024
+UniRef50_D9PVP5	F420 dependent NADP reductase	0.00151987522171	0.000680202050891	-0.000839673170819
+UniRef50_I4E028	Hydrolase homolog	0.00731864863656	0.0014992249874	-0.00581942364916
+UniRef50_UPI000379680D	hypothetical protein	1.96280875449e-05	0.00644027175759	0.00642064367005
+UniRef50_Q890M8	Tetracycline resistance protein	0.000247802618498	0.00117216524735	0.000924362628852
+UniRef50_F0YEB9		0.000541332395452	0.000199584384148	-0.000341748011304
+UniRef50_Q1QIW5	Prolipoprotein diacylglyceryl transferase	7.700206674e-05	1.26862258717e-05	-6.43158408683e-05
+UniRef50_Q5HL74	Abortive infection family protein	0.0115231647495	0.00195733636432	-0.00956582838518
+UniRef50_Q3J4Z5	Valine  tRNA ligase	0.00826419911155	0.00162811758998	-0.00663608152157
+UniRef50_UPI0004731B78	4 alpha glucanotransferase, partial	1.6272736737e-05	0.000442375209303	0.000426102472566
+UniRef50_W2GPF9		8.58381750483e-05	2.94628994452e-05	-5.63752756031e-05
+UniRef50_UPI0004724CFB	hypothetical protein	1.08151292936e-05	1.62936773492e-05	5.4785480556e-06
+UniRef50_S9S8F9		3.20913733553e-05	5.07126284481e-05	1.86212550928e-05
+UniRef50_UPI0003B55E14	ammonium transporter	5.0134854799e-06	4.66810920171e-06	-3.4537627819e-07
+UniRef50_UPI00040CCFDE	Fur family transcriptional regulator	7.56307758571e-05	0.000115599588495	3.99688126379e-05
+UniRef50_UPI00037BF338	hypothetical protein	4.01029163123e-05	0.000303534761746	0.000263431845434
+UniRef50_UPI0004410CB8	ClpX, ATPase regulatory subunit	1.68281664312e-05	1.35535079021e-05	-3.2746585291e-06
+UniRef50_Y0KNL3	Hemagglutinin 	3.59107075597e-07	1.02330906184e-06	6.64201986243e-07
+UniRef50_V5VFP2	OsmC family protein	0.000213671314441	0.00636314923485	0.00614947792041
+UniRef50_Q57NA5	Zinc import ATP binding protein ZnuC	0.000863080774716	7.80432315716e-05	-0.000785037543144
+UniRef50_F6EKX3	Tartrate dehydrogenase	0.00197523441112	0.000382020315467	-0.00159321409565
+UniRef50_B2HMS4		3.67369319959e-05	8.75781235443e-05	5.08411915484e-05
+UniRef50_G1Q986		3.28684299998e-05	1.46296030058e-05	-1.8238826994e-05
+UniRef50_Q7G491	Transposon protein, putative, CACTA, En Spm sub class	2.3308408978e-06	2.41658807462e-06	8.574717682e-08
+UniRef50_L8P6V5	Putative Non ribosomal peptide synthetase	0.000208926916398	0.000268257275904	5.9330359506e-05
+UniRef50_X6G717	Transposase	0.000241860069485	9.85911331836e-05	-0.000143268936301
+UniRef50_P45508		0.00304124058859	0.000995689179185	-0.0020455514094
+UniRef50_C1MS99	Predicted protein	8.6270624122e-05	7.39140245093e-06	-7.88792216711e-05
+UniRef50_B6IWR2		2.34744647776e-05	3.75418278904e-05	1.40673631128e-05
+UniRef50_F3U250	McpJ	0.00315581788163	0.00168306035032	-0.00147275753131
+UniRef50_UPI00036970FF	hypothetical protein	3.88987340299e-06	1.30163996522e-06	-2.58823343777e-06
+UniRef50_D4HBY8	Alanine racemase domain protein	0.000461377385892	0.00448844410466	0.00402706671877
+UniRef50_UPI00031FC917	hypothetical protein	1.3266108784e-05	2.17266184439e-05	8.4605096599e-06
+UniRef50_Q5F8E8	Chaperone protein HscA homolog	0.00347263625001	0.0134614546163	0.00998881836629
+UniRef50_J9PAT3		5.63630486903e-05	6.44451526532e-05	8.0821039629e-06
+UniRef50_UPI0003B753D6	glutamyl tRNA amidotransferase	2.33925093268e-05	4.81914533953e-06	-1.85733639873e-05
+UniRef50_I6TW73	Putative transcriptional regulator	0.00813667244045	0.000840358355689	-0.00729631408476
+UniRef50_Q3HKF1	Transcriptional regulator, AraC family	0.0016145544307	0.000232532838735	-0.00138202159197
+UniRef50_K7SJ58	Cof like hydrolase	0.000257376810578	0.0110258101865	0.0107684333759
+UniRef50_U3U4T1		1.31718641598e-05	2.53051877882e-05	1.21333236284e-05
+UniRef50_UPI00047935B6	cytochrome C oxidase	3.75058053632e-05	0.000118017700935	8.05118955718e-05
+UniRef50_UPI00045E9BEE	hypothetical protein	0.000151010198331	4.34258095203e-05	-0.000107584388811
+UniRef50_X1UXC6	Marine sediment metagenome DNA, contig	5.94114739228e-06	4.16462256031e-05	3.57050782108e-05
+UniRef50_UPI0001BF6223	hypothetical protein SMAC_10415, partial	7.89868783907e-05	3.36444731406e-05	-4.53424052501e-05
+UniRef50_P05704	Methyl accepting chemotaxis protein III	0.0035633590764	0.00152065099726	-0.00204270807914
+UniRef50_A0A013Y7Z1	His Kinase A domain protein	0.000238626828392	0.00683471039618	0.00659608356779
+UniRef50_B8EMX2	Alpha,alpha trehalose phosphate synthase 	0.00842480781385	0.000861012552018	-0.00756379526183
+UniRef50_A8AQY2	Glycogen debranching enzyme	3.13527384277e-05	5.54389298125e-05	2.40861913848e-05
+UniRef50_Q88NS8	Hydrolase, putative	0.000176281644805	0.000196878046531	2.0596401726e-05
+UniRef50_B2TH59		7.48322539702e-05	2.17626178751e-05	-5.30696360951e-05
+UniRef50_Q7N3N2	ProP effector	0.00358148557637	0.000816580961978	-0.00276490461439
+UniRef50_UPI00036B28F1	hypothetical protein	0.000127872616119	0.00027120266627	0.000143330050151
+UniRef50_Q9RX36	Penicillin binding protein 1	5.25258797111e-05	0.0342474652614	0.0341949393817
+UniRef50_F3U3S2	Serine threonine protein kinase	0.00422230041635	0.000316411007811	-0.00390588940854
+UniRef50_Q0P9X7	Probable ABC transporter ATP binding protein PEB1C	0.00153510308042	0.00226073373775	0.00072563065733
+UniRef50_UPI000363DE89	hypothetical protein	0.000403606592508	0.00036439927948	-3.9207313028e-05
+UniRef50_UPI00047A233F	hypothetical protein	5.81258633147e-05	3.28293989457e-05	-2.5296464369e-05
+UniRef50_Q837R5	UPF0042 nucleotide binding protein EF_0766	0.00514746982934	0.00833648927281	0.00318901944347
+UniRef50_K7S1A1	Membrane associated protein	0.000160404811127	0.00442794777195	0.00426754296082
+UniRef50_UPI0002F99648	MFS transporter	5.29925797496e-06	8.55827313752e-06	3.25901516256e-06
+UniRef50_Q9RVG7	FemA related protein	0.000220752040266	0.021228711111	0.0210079590707
+UniRef50_C6SQR5		0.00341999350939	0.00171121230295	-0.00170878120644
+UniRef50_W5X8X9	30S ribosomal protein S2	2.1572894563e-05	0.000170829856554	0.000149256961991
+UniRef50_H4SSE2	Putative MFS family efflux protein	2.25848739051e-05	2.23581836828e-05	-2.266902223e-07
+UniRef50_UPI0001AF2B76	hypothetical protein	9.23443831462e-06	6.08285203936e-06	-3.15158627526e-06
+UniRef50_Q6FD60		9.3437125959e-05	0.00474711118343	0.00465367405747
+UniRef50_UPI0003ABA7EF	PREDICTED	8.59890718334e-05	0.000107416870798	2.14277989646e-05
+UniRef50_UPI0003FBECCD	flagellin	1.2604370674e-05	5.37014252303e-06	-7.23422815097e-06
+UniRef50_R7PVE4	Glycosyltransferase GT2 family	0.00270820645013	0.000924321479	-0.00178388497113
+UniRef50_A1WI30	Endoribonuclease L PSP	0.000170936059991	9.53615163247e-05	-7.55745436663e-05
+UniRef50_P46855		0.00275224374224	0.000401405775434	-0.00235083796681
+UniRef50_P46854		0.00219214000515	0.000635089688595	-0.00155705031656
+UniRef50_P46853		0.00428164554385	0.00395698224055	-0.0003246633033
+UniRef50_B8DKX1	4Fe 4S ferredoxin iron sulfur binding domain protein	0.000547375962807	0.000431561830731	-0.000115814132076
+UniRef50_Q0C1N8	Macrolide export ATP binding permease protein MacB	2.21376173093e-06	2.54554451051e-05	2.32416833742e-05
+UniRef50_Q9RS60	DNA modification methyltransferase related protein	0.00014454168712	0.0503735329407	0.0502289912536
+UniRef50_X2HAY5	SUN family protein	0.000100752488128	0.00400374723183	0.0039029947437
+UniRef50_A8ESW7	Aspartate  tRNA ligase	8.14968288292e-05	0.00407133114359	0.00398983431476
+UniRef50_B2HZZ5		0.000125410627529	0.00510458401914	0.00497917339161
+UniRef50_E7B4R3	Trap type C4 dicarboxylate transport system,large permease component	0.00777087935318	0.000474065069405	-0.00729681428377
+UniRef50_O34319		0.000137601211005	0.00393670200305	0.00379910079204
+UniRef50_Q8EUY3	Orotidine 5 phosphate decarboxylase	1.06615424111e-05	1.54805640986e-05	4.8190216875e-06
+UniRef50_C0MHK2	Phosphoglycerate mutase family protein	0.0115743545876	0.0037713592142	-0.0078029953734
+UniRef50_UPI00035C8FD2	hypothetical protein	4.92197646649e-06	1.21681034265e-05	7.24612696001e-06
+UniRef50_UPI000328B62B	PREDICTED	2.0173282605e-05	2.54648761325e-05	5.2915935275e-06
+UniRef50_P76536	Probable deferrochelatase peroxidase YfeX	0.00333416638731	0.00235903236722	-0.00097513402009
+UniRef50_Q97BK5	Nucleoside diphosphate kinase	2.81504836949e-05	3.75766775356e-05	9.4261938407e-06
+UniRef50_Q2UJU5	Mannose 1 phosphate guanyltransferase	9.84461536427e-06	7.66521394558e-06	-2.17940141869e-06
+UniRef50_M2HJP8		0.00695934136265	0.0018015002488	-0.00515784111385
+UniRef50_E8R1M1		2.44265059733e-05	3.81229987629e-05	1.36964927896e-05
+UniRef50_A0A023YKE2	LemA family protein	2.26448279738e-05	1.02951584584e-05	-1.23496695154e-05
+UniRef50_Q6HHL1		0.00226573241326	0.00142036661101	-0.00084536580225
+UniRef50_B2II06		1.59348905292e-05	4.28487924601e-05	2.69139019309e-05
+UniRef50_N6V6H2		0.000308351183352	0.0001735505138	-0.000134800669552
+UniRef50_A3PM06	RNA polymerase, sigma 24 subunit, ECF subfamily	0.0102226334813	0.00200723177373	-0.00821540170757
+UniRef50_UPI00023B21D9		7.15054746349e-06	0.000208923299366	0.000201772751903
+UniRef50_UPI0004769BB2	hypothetical protein	0.000100441420779	2.05126701755e-05	-7.99287506035e-05
+UniRef50_D3FUC5	[Ni Fe] hydrogenase, large subunit	0.000280410616358	0.000545173065257	0.000264762448899
+UniRef50_V9VZS0		0.000500169377934	0.000168627845899	-0.000331541532035
+UniRef50_G8PG31	Ferric anguibactin binding protein	1.70370806914e-05	1.62704178984e-05	-7.66662793e-07
+UniRef50_C5B1E9		5.21456768009e-05	2.75908403208e-05	-2.45548364801e-05
+UniRef50_UPI0003C186B8	PREDICTED	1.02776111547e-05	4.24145935179e-06	-6.03615180291e-06
+UniRef50_UPI000255891A	TonB dependent siderophore receptor	4.62854555117e-05	4.1016051802e-06	-4.21838503315e-05
+UniRef50_Q9K4U8	Nitric oxide reductase transcription regulator NorR2	2.99105009897e-06	1.29539098696e-05	9.96285977063e-06
+UniRef50_Q9RYH2	Serine protease, subtilase family	8.4574904144e-05	0.0454124818458	0.0453279069417
+UniRef50_W9QZ02	F box like WD repeat containing protein	1.13155663193e-06	4.20467610281e-06	3.07311947088e-06
+UniRef50_UPI0003C12BAB	PREDICTED	9.07965576036e-06	8.92600083377e-05	8.01803525773e-05
+UniRef50_D3E2Y7	Poly gamma glutamate biosynthesis protein	0.00304871459303	0.000163913064863	-0.00288480152817
+UniRef50_Q4L8D2	Cyclic pyranopterin monophosphate synthase	0.00762540631274	0.00149539706111	-0.00613000925163
+UniRef50_A6M1L8	Putative cell wall binding repeat containing protein	0.000622251968849	0.0018278829389	0.00120563097005
+UniRef50_UPI0003697AAB	hypothetical protein	5.7114235397e-05	6.22075283093e-05	5.0932929123e-06
+UniRef50_U5NMN3		0.0170444915299	0.00217022691981	-0.0148742646101
+UniRef50_O26778	Exosome complex component Rrp42	0.00323624141242	0.000225719774668	-0.00301052163775
+UniRef50_I6T2I9	Type 4 fimbrial biogenesis protein PilW	0.00132306618415	0.00141295791279	8.989172864e-05
+UniRef50_F2AE29		0.00196794277604	0.000605867311565	-0.00136207546448
+UniRef50_UPI00036B7282	hypothetical protein	8.89218531649e-07	6.56024477075e-06	5.6710262391e-06
+UniRef50_A5WCX2	30S ribosomal protein S2	0.000157285828689	0.00591025012365	0.00575296429496
+UniRef50_UPI0002377ACD	calcium binding hemolysin protein	1.04799702387e-05	3.38662181974e-06	-7.09334841896e-06
+UniRef50_Q8CPR8	Alcohol dehydrogenase	0.00145936560009	0.00220477513343	0.00074540953334
+UniRef50_UPI0003A88A02	molecular chaperone Hsp33	1.82202718123e-05	2.38751615669e-05	5.6548897546e-06
+UniRef50_Q4V2F4		3.0002725422e-05	2.7532756244e-05	-2.469969178e-06
+UniRef50_UPI0003B71C77	dihydrolipoamide dehydrogenase	3.156344649e-06	3.50913682242e-05	3.19350235752e-05
+UniRef50_S9S2N5	Transposase	0.000110209404129	5.34852280284e-05	-5.67241761006e-05
+UniRef50_M9VCM8	2 amino 3 ketobutyrate coenzyme A ligase	0.0001033264568	0.00492676877642	0.00482344231962
+UniRef50_B2ICH3	6,7 dimethyl 8 ribityllumazine synthase	1.69136773131e-05	1.5991001086e-05	-9.226762271e-07
+UniRef50_E3EYN7	Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC	0.00909006346632	0.00228761020337	-0.00680245326295
+UniRef50_UPI00047B3379	hypothetical protein	2.50696880234e-05	4.78101163677e-06	-2.02886763866e-05
+UniRef50_R6HE72		0.000225140748821	0.0027347963805	0.00250965563168
+UniRef50_C5WEU2	Aminodeoxychorismate lyase family	0.00590731015886	0.00119507734092	-0.00471223281794
+UniRef50_A1W8H0	Ribosomal RNA large subunit methyltransferase E	1.85884378042e-05	2.35304656643e-05	4.9420278601e-06
+UniRef50_A0A009NBC4		5.52891319945e-05	0.000432940504095	0.0003776513721
+UniRef50_T5E2V5	ThiC associated domain protein	2.83767197944e-05	8.00205248783e-05	5.16438050839e-05
+UniRef50_C7ZS16	Membrane protein	0.00418141283125	0.00148157246071	-0.00269984037054
+UniRef50_A5UN23	Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE	0.00324282049437	0.00150330185974	-0.00173951863463
+UniRef50_B0X4X0		6.93196604378e-06	1.55370600211e-05	8.60509397732e-06
+UniRef50_UPI000479C781	hypothetical protein	1.56698517994e-05	7.2933346853e-05	5.72634950536e-05
+UniRef50_Q033R5	Fructosamine 3 kinase	0.030538318404	0.00840488775066	-0.0221334306533
+UniRef50_K0T107		5.29590301274e-05	8.39412795021e-05	3.09822493747e-05
+UniRef50_H3VZC8		0.00887478403467	0.000515087276506	-0.00835969675816
+UniRef50_G2DQA0	Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase	0.000124754625602	0.00489309030068	0.00476833567508
+UniRef50_E3CJI9	DNA ligase	0.00755478665068	0.00244522764585	-0.00510955900483
+UniRef50_Q2YUD5	Membrane anchored Ser Asp rich fibrinogen binding protein	0.00577887054116	0.00116652747034	-0.00461234307082
+UniRef50_UPI0003B7AB15	magnesium chelatase	1.41012549505e-05	0.000133419077023	0.000119317822073
+UniRef50_J0D169		6.0545117233e-06	8.37630268351e-05	7.77085151118e-05
+UniRef50_W8RQ15	Type IV secretion protein Rhs	0.000347486809367	0.00025841069091	-8.9076118457e-05
+UniRef50_W5WGU1		0.000630677394866	0.0037037786916	0.00307310129673
+UniRef50_J9YS58		0.00442215143228	0.00295773816031	-0.00146441327197
+UniRef50_P18775	Dimethyl sulfoxide reductase DmsA	0.00210598937471	0.000802724450294	-0.00130326492442
+UniRef50_O27719		0.00351147148896	0.000304911461639	-0.00320656002732
+UniRef50_Q4MQ56		0.000351837842848	0.000680131471693	0.000328293628845
+UniRef50_UPI000379EBC4	hypothetical protein	3.11620229595e-05	1.98658488225e-05	-1.1296174137e-05
+UniRef50_Q54Z26	Serine hydroxymethyltransferase 1	5.30607948274e-05	0.000132265373628	7.92045788006e-05
+UniRef50_Q9RJ16	Cobyrinic acid A,C diamide synthase	5.82417625057e-06	0.000261579339181	0.00025575516293
+UniRef50_V9XXT7		0.000125121145634	0.00091717389817	0.000792052752536
+UniRef50_T9IBZ3	Protein icc	0.000153866571546	0.000239122838212	8.5256266666e-05
+UniRef50_B9DIE1	MarR family regulatory protein	0.0133926798052	0.000435356322155	-0.012957323483
+UniRef50_Q8DZB5	Membrane protein, putative	0.000530719837873	0.000303282243973	-0.0002274375939
+UniRef50_P37837	Transaldolase	0.00257630553125	0.00165758168455	-0.0009187238467
+UniRef50_A1TL16		9.81663276505e-05	0.00118731633383	0.00108915000618
+UniRef50_Q9RTF6	Deoxyguanosinetriphosphate triphosphohydrolase like protein 2	0.000610475865724	0.0501739544973	0.0495634786316
+UniRef50_UPI00021A5788	PREDICTED	1.51872319612e-05	4.89913529305e-05	3.38041209693e-05
+UniRef50_UPI0004692177	hypothetical protein	1.10348698633e-05	1.1486159662e-05	4.512897987e-07
+UniRef50_B2TPF4	Cobyrinic acid a,c diamide adenosyltransferase	0.0021301041578	0.0013120439764	-0.0008180601814
+UniRef50_Q3J098	RhtB family transporter	0.0105711746592	0.00158619998401	-0.00898497467519
+UniRef50_UPI0004113202	hypothetical protein	6.06304949379e-06	0.000405428611373	0.000399365561879
+UniRef50_N4EZP0	FAD binding domain protein	0.00417910734816	0.000421324643037	-0.00375778270512
+UniRef50_R9SH54	Oxidoreductase aldo keto reductase family	0.00300334438134	0.000640983350009	-0.00236236103133
+UniRef50_P58991	Polyphosphate kinase 1	2.39656085362e-06	0.000229690377311	0.000227293816457
+UniRef50_UPI0003790149	hypothetical protein, partial	0.000113849986966	4.73061642873e-05	-6.65438226787e-05
+UniRef50_I1EEC9		7.36732126513e-07	5.2525319187e-06	4.51579979219e-06
+UniRef50_N9BDB1		2.55479678749e-05	6.87607483993e-05	4.32127805244e-05
+UniRef50_E6CCB2		4.78597595523e-05	0.00051797088769	0.000470111128138
+UniRef50_A5UKL7	Predicted transcriptional regulator	0.00176074857349	0.000122031696369	-0.00163871687712
+UniRef50_K9ZE84		0.000187319166319	4.3782624813e-05	-0.000143536541506
+UniRef50_UPI0001BF6909	hypothetical protein SMAC_10569, partial	3.00559933004e-06	2.97060291052e-06	-3.499641952e-08
+UniRef50_Q2LQU2	Porphobilinogen deaminase	1.33147676378e-05	8.12304812327e-06	-5.19171951453e-06
+UniRef50_A3PR63	Glyoxalase bleomycin resistance protein dioxygenase	0.00577103534748	0.00113296871704	-0.00463806663044
+UniRef50_P07464	Galactoside O acetyltransferase	0.00464807711369	0.00131964205227	-0.00332843506142
+UniRef50_R5UMD4		1.63756008612e-05	9.77521791956e-06	-6.60038294164e-06
+UniRef50_UPI000371DE88	hypothetical protein	1.2015283944e-05	7.0178312545e-06	-4.9974526895e-06
+UniRef50_UPI00021965CD	3 keto L gulonate 6 phosphate decarboxylase	2.54844520333e-05	4.20939699962e-05	1.66095179629e-05
+UniRef50_Q1M6X3		0.000144424149999	5.43066362882e-05	-9.01175137108e-05
+UniRef50_UPI000225B96A	conjugal transfer protein TraW	0.000258207304041	8.70345144229e-05	-0.000171172789618
+UniRef50_UPI00036AEC1C	hypothetical protein	1.95649152685e-06	7.36908635977e-06	5.41259483292e-06
+UniRef50_Q53222	2 vinyl bacteriochlorophyllide hydratase	0.0147498326847	0.000406399135599	-0.0143434335491
+UniRef50_B5SDA9	Hemagglutinin related protein	2.18206417582e-07	6.56922672792e-07	4.3871625521e-07
+UniRef50_UPI00037FDE39	histidinol phosphate aminotransferase, partial	1.52951537333e-05	1.66619200518e-05	1.3667663185e-06
+UniRef50_UPI00047119F6	hypothetical protein, partial	0.000421332458301	8.59123338065e-05	-0.000335420124495
+UniRef50_P45499	Cell division protein FtsZ	0.000334031035322	0.0101610578236	0.00982702678828
+UniRef50_Q3A7A3	Cobyrinic acid A,C diamide synthase	1.1700405388e-05	0.00041160707049	0.000399906665102
+UniRef50_A2RE15	Cell envelope related transcriptional attenuator domain protein	0.00561918856303	0.00144889657695	-0.00417029198608
+UniRef50_UPI00037A3F8A	hypothetical protein	6.5907662429e-06	2.72100577207e-05	2.06192914778e-05
+UniRef50_R5A8C5		0.000146107889251	7.6780599671e-05	-6.932728958e-05
+UniRef50_UPI0003B46C21	alcohol dehydrogenase	0.000237494452879	1.02903150932e-05	-0.000227204137786
+UniRef50_O32068		0.0123955048755	0.00336562588311	-0.00902987899239
+UniRef50_Q02LX8	Adenylate cyclase ExoY	0.000185042151398	0.000255685459043	7.0643307645e-05
+UniRef50_H4F527	Na+ H+ antiporter MnhB subunit related protein 	6.80010327006e-05	1.89452033056e-05	-4.9055829395e-05
+UniRef50_Q48662	Malolactic enzyme	0.00561092101531	0.00208791204426	-0.00352300897105
+UniRef50_K2LWC9		4.27573799271e-05	1.45601143058e-05	-2.81972656213e-05
+UniRef50_I4SXS6	Choline transport protein BetT	0.00122560859231	0.000353672700827	-0.000871935891483
+UniRef50_UPI00035D7CEB	hypothetical protein	9.22314525125e-07	2.26169241915e-06	1.33937789402e-06
+UniRef50_UPI0004713CDC	methionine synthase, partial	1.41229752451e-05	9.23927996375e-05	7.82698243924e-05
+UniRef50_L0FJC9	Sodium	0.00175006015661	0.000814238824702	-0.000935821331908
+UniRef50_UPI000362C162	hypothetical protein	0.000321089500135	2.67582292394e-05	-0.000294331270896
+UniRef50_O26134	Protein translocase subunit SecY	0.00187712737577	0.000662687738033	-0.00121443963774
+UniRef50_D3DZ14	ABC transporter ATP binding protein	0.00279780477395	0.00140993158868	-0.00138787318527
+UniRef50_R9ZEH0	Ring hydroxylating dioxygenase subunit	0.000594079514485	0.000490861889379	-0.000103217625106
+UniRef50_I6S279	Flagellar hook associated protein FlgL	0.00107143407317	0.000334845143421	-0.000736588929749
+UniRef50_UPI0004719539	hypothetical protein	4.20462934777e-06	2.92203904107e-06	-1.2825903067e-06
+UniRef50_UPI0004779E49	quinone oxidoreductase	1.00768143419e-05	6.89046016435e-05	5.88277873016e-05
+UniRef50_A6UJ92		0.0159920560835	0.00276490553281	-0.0132271505507
+UniRef50_Q8X800	D methionine transport system permease protein MetI	0.00382312818186	0.00112408288806	-0.0026990452938
+UniRef50_F9YY95		0.000241264145619	0.00443288701656	0.00419162287094
+UniRef50_UPI000252BB00	PREDICTED	1.64506806726e-05	1.3274986484e-05	-3.1756941886e-06
+UniRef50_Q2YKR3	Adenine deaminase	0.00572208066794	0.00152790838885	-0.00419417227909
+UniRef50_S8F394		1.23076400401e-06	2.81704741406e-06	1.58628341005e-06
+UniRef50_P26899	Aspartate ammonia lyase	0.000675772979986	0.00159342285875	0.000917649878764
+UniRef50_UPI000479F1A9	peptidase S1 and S6 chymotrypsin Hap	4.62201385411e-06	3.43204678563e-05	2.96984540022e-05
+UniRef50_G7MCG2	7TM receptor with intracellular metal dependent phosphohydrolase	0.000340611285754	0.000535336256847	0.000194724971093
+UniRef50_UPI0003B66F39	DNA gyrase subunit A	2.06424301116e-06	3.53656793769e-06	1.47232492653e-06
+UniRef50_UPI0002EC0588	hypothetical protein	1.78121241201e-06	4.22113064167e-06	2.43991822966e-06
+UniRef50_T2ERE8	Zinc binding dehydrogenase family protein	0.000719664581671	0.000491015202922	-0.000228649378749
+UniRef50_E7BGF6		6.12563604033e-06	4.6068281598e-05	3.99426455577e-05
+UniRef50_UPI00034FCB25	PREDICTED	0.000122663424055	3.35909124416e-05	-8.90725116134e-05
+UniRef50_UPI00036E0F49	hypothetical protein	4.29316048369e-06	9.48551141668e-06	5.19235093299e-06
+UniRef50_UPI00042B506F	Translation initiation factor 3 family protein, putative isoform 1	6.62549461791e-06	1.65244132582e-05	9.89891864029e-06
+UniRef50_UPI0003EB658E	hypothetical protein	8.23250858574e-06	2.71011056132e-05	1.88685970275e-05
+UniRef50_X0TKS1	Marine sediment metagenome DNA, contig	2.42855635616e-05	4.83692113125e-05	2.40836477509e-05
+UniRef50_Q9KP38	Probable aromatic acid decarboxylase	5.62598240481e-05	9.44809975973e-05	3.82211735492e-05
+UniRef50_K9DMW3		3.10742435378e-05	1.21846747513e-05	-1.88895687865e-05
+UniRef50_P67586	Tryptophan  tRNA ligase	0.00918688837973	0.000566246187334	-0.0086206421924
+UniRef50_A0AK10	CCA adding enzyme	1.52165488179e-05	0.00172677118275	0.00171155463393
+UniRef50_O83796	1 deoxy D xylulose 5 phosphate synthase	2.29782747183e-06	0.000151587334786	0.000149289507314
+UniRef50_B2TPF9	Precorrin 6x reductase	0.000299592054644	0.00136898659386	0.00106939453922
+UniRef50_A0A011N6I9		1.51918001834e-07	4.01161738419e-07	2.49243736585e-07
+UniRef50_P23485	Protein FecR	0.00483654908614	0.000612226884417	-0.00422432220172
+UniRef50_Q839D4	Energy coupling factor transporter ATP binding protein EcfA2	5.09868159505e-06	0.00171026528269	0.00170516660109
+UniRef50_A8I2E1	Ribonuclease R	0.00330884834172	0.000996243787342	-0.00231260455438
+UniRef50_C7QFW5	Nucleic acid binding OB fold tRNA helicase type	7.45038135845e-05	0.00641402011208	0.0063395162985
+UniRef50_Q1JBS9	Short chain dehydrogenase	0.00438029932662	0.014920154065	0.0105398547384
+UniRef50_G0DT71		0.000113814871007	0.0059984507223	0.00588463585129
+UniRef50_Q8U5S6	ABC transporter, membrane spanning protein 	0.0169268753561	0.0053760734939	-0.0115508018622
+UniRef50_A0AKE9	UPF0348 protein lwe2063	2.67265019322e-05	0.000918633020216	0.000891906518284
+UniRef50_O08437	FKBP type peptidyl prolyl cis trans isomerase FkpA	6.17831122416e-06	1.35240788541e-05	7.34576762994e-06
+UniRef50_UPI00034BD3ED	hypothetical protein	1.24081759212e-05	0.00310949114955	0.00309708297363
+UniRef50_B0SXA7	Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.000785653419287	0.000361612292071	-0.000424041127216
+UniRef50_C9U024	Replication initiation protein RepC	6.93384818212e-05	2.5306105349e-05	-4.40323764722e-05
+UniRef50_T2GFI0	Putative anti sigma regulatory factor	1.86958375698e-05	0.000946909395129	0.000928213557559
+UniRef50_UPI00030A24CF	hypothetical protein	1.01600470694e-05	0.000216523365891	0.000206363318822
+UniRef50_A0A024PW13		0.000658240640477	0.005562001892	0.00490376125152
+UniRef50_J0USZ4	ABC transporter permease protein	2.48782464005e-05	5.93865535669e-05	3.45083071664e-05
+UniRef50_Q5WKY5	6 phospho 5 dehydro 2 deoxy D gluconate aldolase	1.58775035275e-05	2.40454216882e-05	8.1679181607e-06
+UniRef50_Q82WT5	Sulfate thiosulfate import ATP binding protein CysA	0.000128625228738	0.00693231697643	0.00680369174769
+UniRef50_P77031	Inner membrane protein YqcE	0.00170148971795	0.000510394988325	-0.00119109472962
+UniRef50_U6JNN9		9.72836141953e-05	8.17941718665e-05	-1.54894423288e-05
+UniRef50_UPI00047CF42A	aldo keto reductase	8.03032126173e-06	5.96560617539e-05	5.16257404922e-05
+UniRef50_UPI0003608BB9	hypothetical protein	5.24213951303e-06	5.34062704177e-06	9.848752874e-08
+UniRef50_Q9CL63	Ribose import ATP binding protein RbsA 2	4.6283280377e-05	5.31932586317e-05	6.9099782547e-06
+UniRef50_P23886	ATP binding permease protein CydC	0.00250865488251	0.000483041824818	-0.00202561305769
+UniRef50_F0YQI4		0.000325214207009	0.00183319522719	0.00150798102018
+UniRef50_Q3KFI9	Methylthioribulose 1 phosphate dehydratase	0.000562887990554	0.000602730735611	3.9842745057e-05
+UniRef50_L8A867	Glycerol dehydrogenase	0.000107853139674	0.000534689303488	0.000426836163814
+UniRef50_M1IWL8		0.00438653516404	0.000452015365101	-0.00393451979894
+UniRef50_V7ZHE5	Potassium transporting ATPase A chain	0.000185837285921	0.00526789577783	0.00508205849191
+UniRef50_C1CAY3	Transposase protein B	6.20231587339e-05	4.52339138902e-05	-1.67892448437e-05
+UniRef50_UPI0002DC9866	hypothetical protein	1.30826781236e-05	2.20847933335e-05	9.0021152099e-06
+UniRef50_Q09AD1		6.8364900086e-05	3.4696640663e-05	-3.3668259423e-05
+UniRef50_UPI00031EE013	hypothetical protein	3.86313915974e-05	5.78540911886e-06	-3.28459824785e-05
+UniRef50_UPI0003F0CAAC	PREDICTED	2.40743436396e-06	1.82455789359e-05	1.58381445719e-05
+UniRef50_UPI0003B6428F	prolipoprotein diacylglyceryl transferase	2.66348963769e-05	7.40145033012e-06	-1.92334460468e-05
+UniRef50_P59952	Methionine  tRNA ligase	5.7947118686e-06	1.91434482877e-05	1.33487364191e-05
+UniRef50_P16256	Sodium pantothenate symporter	0.00149268364943	0.00232568396625	0.00083300031682
+UniRef50_V9TIA6	FAD linked oxidoreductase	0.000540846487693	0.000141525577565	-0.000399320910128
+UniRef50_Q1GE40		0.000103418820932	3.78457387961e-05	-6.55730821359e-05
+UniRef50_Q1GE41		0.000133876601203	4.05184742565e-05	-9.33581269465e-05
+UniRef50_UPI00029A1476	large conductance mechanosensitive channel protein MscL	0.000302968559292	8.70364239287e-05	-0.000215932135363
+UniRef50_Q28UC9	ATP synthase F0 subunit I	3.99963057228e-05	7.53271278961e-05	3.53308221733e-05
+UniRef50_Q2FK78	N acetyl gamma glutamyl phosphate reductase	0.0123017086062	0.00473288708206	-0.00756882152414
+UniRef50_A3UCX1		3.21156217719e-05	5.15375710997e-06	-2.69618646619e-05
+UniRef50_Q57714	Pyruvate synthase subunit PorB	0.00261614267694	0.00023688505764	-0.0023792576193
+UniRef50_B1LDG8		0.0151668477663	0.00177190023117	-0.0133949475351
+UniRef50_UPI00041FFD36	hypothetical protein	0.000138953488655	0.00112396107969	0.000985007591035
+UniRef50_D3DZ23	GMC oxidoreductase family protein	0.00283513583057	0.000506879780025	-0.00232825605054
+UniRef50_P31806	Bifunctional NADH hydrate repair enzyme Nnr	0.00349387460562	0.00151515902239	-0.00197871558323
+UniRef50_W8KGC4	Flagellar biosynthesis protein FlhB	0.000411009779397	0.000204135971329	-0.000206873808068
+UniRef50_F8LHA2	Acetyltransferase, including N acetylase of ribosomal protein	0.000530495328908	0.000559613457528	2.911812862e-05
+UniRef50_A1B2J7		0.0017627622719	0.00160826934277	-0.00015449292913
+UniRef50_I7ZAU8		7.05686831409e-05	6.64167214818e-05	-4.1519616591e-06
+UniRef50_F9YXK8		0.000190649489319	0.0013119871208	0.00112133763148
+UniRef50_UPI0002377E10	FAD dependent oxidoreductase, partial	1.13758206593e-05	1.47236602542e-05	3.3478395949e-06
+UniRef50_R6BDT2		0.000943433287974	0.00232425162529	0.00138081833732
+UniRef50_A9N4N9		0.000263348335306	0.000215708090639	-4.7640244667e-05
+UniRef50_C3KDN7	Ferrochelatase	0.000569083175843	0.000189710945528	-0.000379372230315
+UniRef50_UPI00041EEA6A	hypothetical protein	3.51542205647e-05	9.27948146877e-05	5.7640594123e-05
+UniRef50_UPI0002F4135C	hypothetical protein	7.66941211709e-06	2.22294511089e-05	1.45600389918e-05
+UniRef50_B9KWR6	ABC sugar transporter, periplasmic lignad binding protein	0.00562456176975	0.000961188052067	-0.00466337371768
+UniRef50_UPI000200107B	putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	2.08668255253e-05	5.95367829764e-06	-1.49131472277e-05
+UniRef50_F2QGL0	Competence protein	0.000169923786482	0.00103424912004	0.000864325333558
+UniRef50_Q1D8I9	Triosephosphate isomerase	0.000705086242439	0.00312883228154	0.0024237460391
+UniRef50_E2Q677	Transcriptional regulator	1.7574079134e-05	2.56652457115e-06	-1.50075545628e-05
+UniRef50_P18256	Threonine  tRNA ligase 2	8.81188665171e-06	8.72380200171e-06	-8.808465e-08
+UniRef50_UPI0003B50469	MULTISPECIES	5.35970811351e-05	0.000639088190285	0.00058549110915
+UniRef50_P39187		0.00263109519152	0.000656766108858	-0.00197432908266
+UniRef50_G4LES1	AsmA family protein	4.64053046482e-05	5.3554876288e-05	7.1495716398e-06
+UniRef50_A4WX29	NH dependent NAD(+) synthetase	0.0027661491707	0.00247867042243	-0.00028747874827
+UniRef50_Q46906		0.00155107167279	0.000316410755563	-0.00123466091723
+UniRef50_UPI00034690F7	hypothetical protein	3.87141437211e-06	1.7480214073e-05	1.36087997009e-05
+UniRef50_Q60759	Glutaryl CoA dehydrogenase, mitochondrial	0.00122127935186	0.0222356432992	0.0210143639473
+UniRef50_B6TP29		0.000955660731271	4.5942225497e-05	-0.000909718505774
+UniRef50_E8SI80	Disulfide bond regulator	0.00744334668654	0.00519267137046	-0.00225067531608
+UniRef50_I4E0I3	Arabinose efflux permease homolog	0.0039646496868	0.000841015482165	-0.00312363420464
+UniRef50_UPI0004758598	hypothetical protein	0.000103322863703	0.00012014684595	1.6823982247e-05
+UniRef50_S9QAC1	Mobile element protein	1.75690414174e-05	1.29538176776e-05	-4.6152237398e-06
+UniRef50_UPI00036AF80F	hypothetical protein	3.3492886665e-05	2.43792539112e-05	-9.1136327538e-06
+UniRef50_UPI00036D58A4	hypothetical protein	1.71947717262e-05	0.000153584672502	0.000136389900776
+UniRef50_Q3JVF3		0.000133507487321	0.000453350341598	0.000319842854277
+UniRef50_C8PGN6	NLPA lipoprotein	9.3853897817e-05	8.98200582303e-05	-4.0338395867e-06
+UniRef50_Q6FFC1	Lipid II flippase FtsW	9.48457258396e-05	0.00742819281348	0.00733334708764
+UniRef50_D9VLM5	Predicted protein	2.72881676196e-06	0.000233759924953	0.000231031108191
+UniRef50_UPI0003B4E250	phosphohydrolase	5.05283365151e-05	0.000446014519245	0.00039548618273
+UniRef50_P56431	Thioredoxin reductase	0.000293352938116	0.00297950758623	0.00268615464811
+UniRef50_V4R4P9	Amino acid ABC transporter substrate binding protein	0.000528592450262	0.000311954266055	-0.000216638184207
+UniRef50_Q5L0Z2	UPF0348 protein GK1103	5.33717073118e-06	0.000603177239407	0.000597840068676
+UniRef50_V9W180	Transposase	0.000208172420321	0.028190081614	0.0279819091937
+UniRef50_UPI000476CA5A	hypothetical protein	0.000108159826629	2.11898835158e-05	-8.69699431132e-05
+UniRef50_Q47129	Transcriptional activator FeaR	0.0057719588533	0.000431006693396	-0.0053409521599
+UniRef50_B0VAR2		0.000310262456591	0.00824925253297	0.00793899007638
+UniRef50_UPI0003C12F22	PREDICTED	1.00212523302e-05	1.38971306711e-05	3.8758783409e-06
+UniRef50_K9AD18	Putative relaxase	0.000165116274744	2.45830705802e-05	-0.000140533204164
+UniRef50_F0P9I7	Conserved integral membrane protein, putative	0.0214175323826	0.00553038332947	-0.0158871490531
+UniRef50_UPI00035F08CC	hypothetical protein	7.11423311508e-06	6.12048326664e-06	-9.9374984844e-07
+UniRef50_UPI0004692399	spermidine putrescine ABC transporter ATPase	4.65941328524e-05	2.25009538529e-05	-2.40931789995e-05
+UniRef50_A5FZW4	50S ribosomal protein L4	0.0161045284736	0.000861087213001	-0.0152434412606
+UniRef50_C5CJ75	Glycogen synthase	0.00485630786845	0.000485998855931	-0.00437030901252
+UniRef50_UPI0003600771	hypothetical protein	1.40228097457e-05	9.96411839586e-06	-4.05869134984e-06
+UniRef50_V4R4P8	Phosphoribosylformylglycinamidine cyclo ligase	0.000133702129055	0.000214104543468	8.0402414413e-05
+UniRef50_U6R7W5		4.98625704559e-06	8.04118694745e-05	7.54256124289e-05
+UniRef50_E8U4E2		8.23413949508e-05	0.0709306429242	0.0708483015292
+UniRef50_H9KEJ9		2.12844644722e-06	2.21847098839e-06	9.002454117e-08
+UniRef50_L1BUX8		2.08156706662e-05	0.000513217935299	0.000492402264633
+UniRef50_Q8SDJ9	Amidase	0.0185940463825	0.00485060747131	-0.0137434389112
+UniRef50_A8ARE5		0.000260040996763	3.45971725452e-05	-0.000225443824218
+UniRef50_P0AFV6	Murein DD endopeptidase MepS Murein LD carboxypeptidase	0.00245758881366	0.00290730719629	0.00044971838263
+UniRef50_M9RIA5		0.0286609732276	0.00175862905252	-0.0269023441751
+UniRef50_F8ETX3	ParB like partition protein	0.00508878308153	0.00194378626674	-0.00314499681479
+UniRef50_I0P9H0	Cellobiose phosphorylase	5.59718780152e-05	1.75678653173e-05	-3.84040126979e-05
+UniRef50_UPI000380D689	hypothetical protein	7.53590808564e-06	1.8465251277e-05	1.09293431914e-05
+UniRef50_UPI000362D231	hypothetical protein	1.84505432559e-05	9.22579209264e-06	-9.22475116326e-06
+UniRef50_Q50245	ORF492	1.81400632233e-05	5.57851705111e-06	-1.25615461722e-05
+UniRef50_UPI00037B94E6	hypothetical protein	5.80896567536e-06	2.37692786564e-05	1.7960312981e-05
+UniRef50_UPI0003B6AEBD	ATPase AAA	4.28792879967e-06	3.89942195503e-06	-3.8850684464e-07
+UniRef50_A3VC61		0.000575193348679	0.000148939998204	-0.000426253350475
+UniRef50_UPI0004785D9F	hypothetical protein	2.11763211688e-05	0.000306866241995	0.000285689920826
+UniRef50_A4WUP0	30S ribosomal protein S4	0.0223286660813	0.00766989852299	-0.0146587675583
+UniRef50_L9IWH1	CarD like TRCF domain protein	0.00197320793986	0.000668998565575	-0.00130420937428
+UniRef50_A1APL2	Carbonic anhydrase	0.00210305619399	0.00255540773338	0.00045235153939
+UniRef50_UPI00036630BD	hypothetical protein, partial	2.18362737097e-05	0.00080044626609	0.00077860999238
+UniRef50_A3K318	Flagellar protein FlaF, putative	0.000110318707228	0.000215945770765	0.000105627063537
+UniRef50_B9KP57		0.00167077292697	0.00123961789519	-0.00043115503178
+UniRef50_G9RRJ9		2.70857963504e-05	1.92731318228e-05	-7.8126645276e-06
+UniRef50_V5SXS6	Multidrug transporter	0.000924099335345	0.000680228272872	-0.000243871062473
+UniRef50_L1K935		0.000717974040016	0.000782531669559	6.4557629543e-05
+UniRef50_K4TPI5	LysE family efflux protein	0.000723683791117	0.000824584446383	0.000100900655266
+UniRef50_UPI0003B59697	transketolase	2.31652842518e-05	1.12423272131e-05	-1.19229570387e-05
+UniRef50_UPI000376937D	hypothetical protein	8.54503017963e-06	1.87584368174e-05	1.02134066378e-05
+UniRef50_UPI0004561BB0	hypothetical protein PFL1_05640	1.86796112704e-06	7.45079128412e-06	5.58283015708e-06
+UniRef50_Q7VHW3	Dihydroxy acid dehydratase	7.02203490247e-05	9.78701946437e-05	2.7649845619e-05
+UniRef50_X5DHG9	Membrane protein	5.82886316341e-05	2.70248089712e-05	-3.12638226629e-05
+UniRef50_M9R6L8		0.00122880219295	0.000244063392719	-0.000984738800231
+UniRef50_O27115	Succinyl CoA ligase [ADP forming] subunit beta	0.00255977515612	3.26764381874e-05	-0.00252709871793
+UniRef50_Q0FGA1	ArsC family protein	3.36816800802e-05	6.32920284748e-05	2.96103483946e-05
+UniRef50_M0LR14		1.56671892774e-06	1.26040490372e-05	1.10373301095e-05
+UniRef50_Q2G6B7		9.04922605423e-05	1.96758324388e-05	-7.08164281035e-05
+UniRef50_G7ZM83	LysR family regulatory protein	0.0100596731468	0.00132789202267	-0.00873178112413
+UniRef50_UPI0003737615	hypothetical protein	4.88062952016e-06	2.68209586006e-06	-2.1985336601e-06
+UniRef50_UPI000225B453	superfamily II DNA RNA helicase	2.10154509848e-05	4.25262794549e-05	2.15108284701e-05
+UniRef50_R0DQJ6		9.81542836656e-06	8.84457661741e-06	-9.7085174915e-07
+UniRef50_Q2G6B8		0.000260032384171	7.36737421688e-05	-0.000186358642002
+UniRef50_UPI000470B11D	hypothetical protein, partial	9.05990986426e-05	0.000119472416867	2.88733182244e-05
+UniRef50_U5UEE2	Putative transposase	0.000794579813612	0.000425549426858	-0.000369030386754
+UniRef50_D5APM3	Response regulator receiver protein	0.00573606833002	0.00152859377045	-0.00420747455957
+UniRef50_Q89LH6	UPF0271 protein blr4568	0.00334743294007	0.00178581042589	-0.00156162251418
+UniRef50_UPI00035D3C47	MULTISPECIES	3.76546728857e-05	0.000412827848174	0.000375173175288
+UniRef50_UPI000470BC53	4 alpha glucanotransferase, partial	1.17772791602e-05	0.000513795743814	0.000502018464654
+UniRef50_UPI000255652B	arginyl tRNA synthetase	2.48446608002e-06	5.20173887474e-06	2.71727279472e-06
+UniRef50_G7M9U0	Flagellar hook length control protein	0.000477484479373	0.00175016469241	0.00127268021304
+UniRef50_Q7NNG3	Phosphate import ATP binding protein PstB 2	0.00284611287239	0.000374294022347	-0.00247181885004
+UniRef50_T0UHU4	4 carboxymuconolactone decarboxylase	0.00362610164857	0.000945013456618	-0.00268108819195
+UniRef50_D3LR53		0.000153190505464	0.00021067185738	5.7481351916e-05
+UniRef50_F8DFL1	DHHA1 domain protein	0.000269332731969	0.00266160559166	0.00239227285969
+UniRef50_A6M0Z6		0.000429176598265	0.00130610906882	0.000876932470555
+UniRef50_Q9RY66	GTPase Obg	0.000487021664979	0.0483118291317	0.0478248074667
+UniRef50_D4HCN2		0.000372519067945	0.00180833181262	0.00143581274467
+UniRef50_UPI000367C16B	MULTISPECIES	3.13205186056e-05	3.91998659723e-05	7.8793473667e-06
+UniRef50_A0A058ZKH3	HupH hydrogenase expression protein	0.000210498323396	9.15873718623e-05	-0.000118910951534
+UniRef50_E6JKQ2		0.00278306881583	0.000770391404865	-0.00201267741096
+UniRef50_S5MQR6		3.35196496251e-05	5.68746720068e-05	2.33550223817e-05
+UniRef50_Q6A9F2		0.000284117166548	0.00544885458829	0.00516473742174
+UniRef50_UPI00035E22E6	hypothetical protein	1.03103298132e-06	1.62102524768e-06	5.8999226636e-07
+UniRef50_O07319	Transcriptional regulator MraZ	0.011630499547	0.00242971734755	-0.00920078219945
+UniRef50_B9KXA3	2 dehydro 3 deoxyphosphooctonate aldolase	0.00680399872152	0.000436429290281	-0.00636756943124
+UniRef50_F0KLN9	Alkanesulfonate monooxygenase	0.000498067367165	0.00747921768352	0.00698115031635
+UniRef50_Q9X6A2		0.00157310789199	0.00037755569733	-0.00119555219466
+UniRef50_UPI00047341A0	3 isopropylmalate dehydrogenase, partial	1.70827308988e-05	4.28890039641e-05	2.58062730653e-05
+UniRef50_A5CW53	UDP N acetylmuramate  L alanine ligase	3.93384244249e-06	6.08193954618e-06	2.14809710369e-06
+UniRef50_Q9ZN31	ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT	0.000104080915098	0.00477422529246	0.00467014437736
+UniRef50_Q92UW6	Probable sulfoacetaldehyde acetyltransferase	0.0035996341033	0.00123617120207	-0.00236346290123
+UniRef50_UPI00047B8BC4	hypothetical protein	1.48984379325e-05	1.28767861933e-05	-2.0216517392e-06
+UniRef50_Q5HLP5		0.0243081285757	0.00089040212621	-0.0234177264495
+UniRef50_W1MLM9		5.76377878717e-05	0.000185932252757	0.000128294464885
+UniRef50_UPI0002651735		6.29648843361e-06	9.61603403342e-05	8.98638519006e-05
+UniRef50_P0ACM1	Pyruvate dehydrogenase complex repressor	0.00276770458698	0.000996507867737	-0.00177119671924
+UniRef50_R6M784		9.70700149224e-05	6.12839599899e-05	-3.57860549325e-05
+UniRef50_C3DTJ7	Carbon starvation protein A	0.000236560785725	0.0111471603305	0.0109105995448
+UniRef50_Q3KFU0		3.07103943511e-05	2.62924668182e-05	-4.4179275329e-06
+UniRef50_Q3J1W1	Chemotaxis histidine protein kinase, CheA4	0.00029177334441	0.000314237246508	2.2463902098e-05
+UniRef50_UPI00036536A6	hypothetical protein	3.62750760237e-05	5.10358019115e-06	-3.11714958325e-05
+UniRef50_UPI0004672B34	molecular chaperone	0.000384233683506	0.000121421235011	-0.000262812448495
+UniRef50_F9NYD0	Cobalt transport protein	0.000205155428724	0.00926790208234	0.00906274665362
+UniRef50_Q3JP97		3.06003056662e-05	2.27326996034e-05	-7.8676060628e-06
+UniRef50_A7MKS2		0.000220341252157	2.92718630493e-05	-0.000191069389108
+UniRef50_V9VW16	Short chain dehydrogenase	0.00210200881844	0.00114123418586	-0.00096077463258
+UniRef50_UPI0004792999	hypothetical protein	7.91885140831e-06	0.000211191922662	0.000203273071254
+UniRef50_Q7N3Z6	D amino acid dehydrogenase small subunit	2.66758935861e-05	2.5544815252e-05	-1.1310783341e-06
+UniRef50_P0A1I8	Flagellar basal body rod protein FlgC	0.00729981178358	0.000558959063463	-0.00674085272012
+UniRef50_Q166G1	Oligopeptide ABC transporter, permease protein, putative	0.000335162883982	0.000434289272355	9.9126388373e-05
+UniRef50_B9KSM2	Alcohol dehydrogenase GroES domain protein	0.00381265161128	0.000463339605172	-0.00334931200611
+UniRef50_Q8CQN2		0.0122954271695	0.00157026861228	-0.0107251585572
+UniRef50_UPI0003FD0CB4	ribonucleotide diphosphate reductase subunit alpha	5.1041979337e-06	2.84045098594e-05	2.33003119257e-05
+UniRef50_I1ZLL6	Glutamine amidotransferase	0.00329992149264	0.00113718275107	-0.00216273874157
+UniRef50_C5WGZ9		0.000195423301531	0.000128136437524	-6.7286864007e-05
+UniRef50_A0A016ULG1		1.0334150104e-05	1.02480028067e-05	-8.61472973e-08
+UniRef50_A0A023RVX8	Protein TniQ	0.000754492273666	0.0250971120869	0.0243426198132
+UniRef50_A0NZT5		0.000164870192273	3.54631234886e-05	-0.000129407068784
+UniRef50_A0A017HEA9	Transport protein	4.58034513117e-05	6.34801634195e-06	-3.94554349698e-05
+UniRef50_P44595	S adenosylmethionine	0.00220367576955	0.00821909583901	0.00601542006946
+UniRef50_E3EXK7	Peptidase, M48 family, putative	0.00904542431408	0.00442658819906	-0.00461883611502
+UniRef50_P65742	Phosphate acyltransferase	0.0198432634069	0.0101572824026	-0.0096859810043
+UniRef50_G0DTI5	Iron chelate uptake ABC transporter, FeCT family, permease protein	0.000997700502833	0.00367843500875	0.00268073450592
+UniRef50_P0ACL7	Putative L lactate dehydrogenase operon regulatory protein	0.00257106029993	0.00391159728505	0.00134053698512
+UniRef50_UPI00047E9930	ABC transporter permease	0.000149820153733	5.85388505556e-05	-9.12813031774e-05
+UniRef50_UPI0002D53BE1	hypothetical protein	3.55164984885e-05	0.000125481695144	8.99651966555e-05
+UniRef50_A5UKI1		0.00112241721228	0.000499126825692	-0.000623290386588
+UniRef50_UPI000380963E	hypothetical protein	2.69994222525e-05	1.75395288762e-05	-9.4598933763e-06
+UniRef50_C1DH36		0.000134930295167	0.000184335031093	4.9404735926e-05
+UniRef50_A0A010D0D1	Ribonuclease R	0.000405239932148	0.00590488475736	0.00549964482521
+UniRef50_UPI0002630D1B	hypothetical protein	1.31392680446e-05	0.000107984511547	9.48452435024e-05
+UniRef50_UPI00035EED6C	hypothetical protein	9.26224322665e-05	7.49295799483e-05	-1.76928523182e-05
+UniRef50_E6YJ75		8.1286825971e-06	0.00101445041805	0.00100632173545
+UniRef50_UPI000315AE23	hypothetical protein	0.000278627140287	8.02381318748e-05	-0.000198389008412
+UniRef50_A6LR92	AMP dependent synthetase and ligase	8.41976183323e-05	0.00133383467156	0.00124963705323
+UniRef50_Q4L3C7	Transcription activator of glutamate synthase operon	0.0181089007795	0.00469507687983	-0.0134138238997
+UniRef50_O05267	NADH dehydrogenase like protein YumB	0.0108935172027	0.00384170912194	-0.00705180808076
+UniRef50_UPI0003AEB97B	PREDICTED	1.67041915013e-05	0.000345399655201	0.0003286954637
+UniRef50_P0ABU3	Ribosome binding ATPase YchF	0.00403226623261	0.051238621047	0.0472063548144
+UniRef50_Q59829	Putative cystathionine gamma lyase	2.20070183609e-05	3.11388734628e-05	9.1318551019e-06
+UniRef50_E6PJS8		7.60253689221e-05	0.000117472433191	4.14470642689e-05
+UniRef50_T2GDK5		2.30137774795e-05	6.51203412961e-06	-1.65017433499e-05
+UniRef50_UPI00036891D5	hypothetical protein	2.17302023173e-05	6.07627279662e-06	-1.56539295207e-05
+UniRef50_Q2GKK2	Ribosomal RNA large subunit methyltransferase E	9.39633076161e-05	4.26220018819e-05	-5.13413057342e-05
+UniRef50_P72622	Peptide methionine sulfoxide reductase MsrA 1	8.82127461275e-05	9.02387653957e-05	2.0260192682e-06
+UniRef50_UPI0003F87E98	hypothetical protein	6.48121695892e-07	1.48504368275e-05	1.42023151316e-05
+UniRef50_UPI0003AA29AA	flagellar basal body P ring protein	2.97679158004e-05	1.7232214983e-05	-1.25357008174e-05
+UniRef50_G8SD75		2.87613702974e-06	8.22785508283e-06	5.35171805309e-06
+UniRef50_UPI00046737F8	hypothetical protein	2.6625117591e-05	2.925875198e-05	2.633634389e-06
+UniRef50_V4NZE7		0.000297816355649	0.000107483552135	-0.000190332803514
+UniRef50_UPI000469A681	hypothetical protein	1.42772106637e-05	5.80756907016e-05	4.37984800379e-05
+UniRef50_UPI00029A7A9B	30S ribosomal protein S17	1.82272082306e-05	0.000203679016919	0.000185451808688
+UniRef50_UPI0003608DE6	hypothetical protein	0.000109147639092	9.34767852255e-06	-9.97999605695e-05
+UniRef50_K2I8R3		3.28297044332e-05	1.89365796444e-05	-1.38931247888e-05
+UniRef50_A6UWL8	N acetyl gamma glutamyl phosphate reductase	0.00318066399445	0.000292444432406	-0.00288821956204
+UniRef50_UPI0003EC17DE	PREDICTED	1.57166635462e-05	4.0899559249e-05	2.51828957028e-05
+UniRef50_D3EJM2	Peptidyl prolyl cis trans isomerase	0.000541845917011	0.00130467347959	0.000762827562579
+UniRef50_M4ZCL2	DNA polymerase III subunit delta	0.00424997687245	0.00191617420191	-0.00233380267054
+UniRef50_Q1REU7		0.000272607979711	0.000127200303739	-0.000145407675972
+UniRef50_UPI000444942A	GIDA domain containing protein	9.28899600597e-06	9.21096842847e-06	-7.80275775e-08
+UniRef50_N1MZ98		8.2577830148e-05	5.68391109791e-05	-2.57387191689e-05
+UniRef50_Q9RYF7	Cation transporter, putative	0.000108058966276	0.0542342682921	0.0541262093258
+UniRef50_A5ULI1		0.00172036473231	0.00293105347974	0.00121068874743
+UniRef50_B8GZV6	Prolipoprotein diacylglyceryl transferase	0.000123644673244	8.70299119297e-06	-0.000114941682051
+UniRef50_Q9RV78	3 hydroxybutyryl CoA dehydratase	0.000268992391105	0.0177578846902	0.0174888922991
+UniRef50_A3PPE9		0.00596690696791	0.00087054853906	-0.00509635842885
+UniRef50_U1J219		2.87447238108e-05	4.90123661611e-05	2.02676423503e-05
+UniRef50_UPI00047A7925	nitrate reductase	2.5192530971e-05	9.30408375773e-05	6.78483066063e-05
+UniRef50_D8JNU4	Patatin like phospholipase family protein	0.000136770285816	0.00759635910017	0.00745958881435
+UniRef50_B9KX78		0.00091851766883	0.000379293370738	-0.000539224298092
+UniRef50_D3SQB6	Urea ABC transporter, urea binding protein	0.000128688405295	0.0618487860277	0.0617200976224
+UniRef50_B9KX77		0.00109867249485	0.000282515018784	-0.000816157476066
+UniRef50_UPI000360A512	single stranded DNA binding protein, partial	2.07733649357e-05	0.000476190512958	0.000455417148022
+UniRef50_A8Z136		0.00772150459114	0.00433666362347	-0.00338484096767
+UniRef50_R7CC37		2.56217476247e-05	2.29716559246e-05	-2.6500917001e-06
+UniRef50_Q9HYQ2		0.000767475317639	0.000737121468519	-3.035384912e-05
+UniRef50_J5K8F9	Phosphate starvation inducible E	5.72100298805e-05	3.74015636479e-05	-1.98084662326e-05
+UniRef50_UPI0003C1568F	PREDICTED	5.9952218072e-06	6.31849921281e-06	3.2327740561e-07
+UniRef50_J8G7J1		4.35950683145e-05	3.88036940467e-05	-4.7913742678e-06
+UniRef50_H5UTL4		1.86714398839e-05	2.66000917684e-05	7.9286518845e-06
+UniRef50_A9D8H9		3.25946618424e-05	5.55862262664e-05	2.2991564424e-05
+UniRef50_Q5HNG8	FtsK SpoIIIE family protein	0.00923194586035	0.0054246635279	-0.00380728233245
+UniRef50_F4CQG8	Amidohydrolase 2	0.0147318179917	0.00283234314216	-0.0118994748495
+UniRef50_M7ECE4	NADH dehydrogenase subunit B	0.000413355379642	5.91969440825e-05	-0.000354158435559
+UniRef50_U5W2D0	Cellulose synthesis regulatory protein	2.60578034524e-06	6.01811832403e-05	5.75754028951e-05
+UniRef50_UPI0003B6414D	polynucleotide phosphorylase, partial	3.9454300695e-06	1.2730723301e-05	8.7852932315e-06
+UniRef50_B2TMR9		0.000264236791467	0.00234978666762	0.00208554987615
+UniRef50_UPI000393CC0B		1.62757991185e-05	2.40881767194e-06	-1.38669814466e-05
+UniRef50_UPI000472C56D	ABC transporter permease	6.56644040707e-05	4.31914850348e-05	-2.24729190359e-05
+UniRef50_A6LYF9	HAD superfamily hydrolase, subfamily IA, variant 1	0.000754168816027	0.00114580788056	0.000391639064533
+UniRef50_UPI00035D9B42	hypothetical protein	6.85547744323e-06	8.10728450146e-06	1.25180705823e-06
+UniRef50_M1MIG9	Methyl accepting chemotaxis protein	0.00028552964153	0.00153995975188	0.00125443011035
+UniRef50_Q5FAD3	Shikimate kinase	1.50716256125e-05	0.0038363489849	0.00382127735929
+UniRef50_Q6A8V3	1 deoxy D xylulose 5 phosphate synthase	0.000139932985774	0.00541676813877	0.005276835153
+UniRef50_Q60AI1	Spermidine putrescine import ATP binding protein PotA	0.00372957701979	0.000914842873652	-0.00281473414614
+UniRef50_M0WIY9		4.6876150298e-05	0.000537528435832	0.000490652285534
+UniRef50_A6LRS1		0.000715813189066	0.00150598707512	0.000790173886054
+UniRef50_J7MB25	Transposase	0.00235590746396	0.00187721445581	-0.00047869300815
+UniRef50_UPI00037C3240	hypothetical protein	5.48597857197e-05	1.28356194049e-05	-4.20241663148e-05
+UniRef50_UPI0003A6B902	calcium binding protein	5.78782445176e-05	2.02561946162e-05	-3.76220499014e-05
+UniRef50_Q8CS10		0.00823331486545	0.00387249481842	-0.00436082004703
+UniRef50_Q8CS11		0.00194400419344	0.00111440266111	-0.00082960153233
+UniRef50_I0GNK9		8.81444873594e-06	1.18734742659e-05	3.05902552996e-06
+UniRef50_Q8CS13		0.00815329953045	0.00230065736676	-0.00585264216369
+UniRef50_Q8CS14		0.00804306199481	0.00165604434775	-0.00638701764706
+UniRef50_A1VUK8		4.8776090849e-06	7.23005814175e-06	2.35244905685e-06
+UniRef50_Q98FZ6	Mlr3554 protein	0.00440984587446	0.000941128479584	-0.00346871739488
+UniRef50_B5EPN2	CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase	0.000463284621103	0.000348113994329	-0.000115170626774
+UniRef50_D3QJ51	Rhodanese like domain protein	0.00507984219759	0.00141752018494	-0.00366232201265
+UniRef50_Q9RTE5		0.000159276788545	0.0356110179335	0.035451741145
+UniRef50_UPI00037196F6	hypothetical protein	8.12062391296e-06	5.12016024434e-05	4.30809785304e-05
+UniRef50_Q9CBQ2	Ribonucleoside diphosphate reductase subunit beta	0.000113221590412	0.000571729163774	0.000458507573362
+UniRef50_Q8BIG7	Catechol O methyltransferase domain containing protein 1	1.46444276445e-05	1.81569509493e-05	3.5125233048e-06
+UniRef50_Q8CPK8	Penicillin binding protein 1	0.0199481914462	0.00494624654849	-0.0150019448977
+UniRef50_T1XRT4	Competence protein ComGF, putative	0.0118698365882	0.00105790219461	-0.0108119343936
+UniRef50_B8DMV4	Integral membrane protein MviN	5.00164091291e-05	3.90412577959e-05	-1.09751513332e-05
+UniRef50_A6M167		0.000207983258652	0.00228430180642	0.00207631854777
+UniRef50_A6M161		0.000383140797233	0.000940410881359	0.000557270084126
+UniRef50_A6LUR8		0.000155771384668	0.00174260392332	0.00158683253865
+UniRef50_UPI000366A76F	hypothetical protein, partial	1.09585347221e-05	1.99912497457e-05	9.0327150236e-06
+UniRef50_O05253		0.000797613011656	0.00272358384753	0.00192597083587
+UniRef50_O05255		0.00282833464044	0.00468627791081	0.00185794327037
+UniRef50_Q1IZU9	Serine  tRNA ligase	9.25967266145e-05	0.0200639303506	0.019971333624
+UniRef50_M9VH54	Transporter, major facilitator family protein	0.000139809625497	0.00386088035741	0.00372107073191
+UniRef50_Q9PEV8	DNA topoisomerase 1	5.62756909166e-05	0.00437707701427	0.00432080132335
+UniRef50_D7CV09	ATP dependent zinc metalloprotease FtsH	0.000192775420736	0.0620828788116	0.0618901033909
+UniRef50_F5X6L2	Thiamine transporter protein	0.0026632988611	0.00286202509202	0.00019872623092
+UniRef50_Q7NMY2	Gsl0633 protein	2.30903238694e-05	0.000141420698737	0.000118330374868
+UniRef50_UPI000225C104	PhoP family transcriptional regulator	1.63473903479e-05	6.03633039479e-05	4.40159136e-05
+UniRef50_UPI00037A9D80	hypothetical protein	8.45543840624e-06	8.04193253294e-06	-4.135058733e-07
+UniRef50_UPI0003626827	hypothetical protein	5.27403769438e-06	1.66955763931e-05	1.14215386987e-05
+UniRef50_Q2YYZ3		0.00460131953246	0.0020366669324	-0.00256465260006
+UniRef50_UPI0002490914	transcriptional regulator	1.59367230047e-05	2.26936951888e-05	6.7569721841e-06
+UniRef50_I0C454	Nitrogen regulation protein NIFR3	0.000110831171716	4.14853337665e-05	-6.93458379495e-05
+UniRef50_E7C5A1	MoxR like ATPases	2.69302501344e-05	4.79892533018e-05	2.10590031674e-05
+UniRef50_D2ZNN2		0.00204929816724	0.00100428328925	-0.00104501487799
+UniRef50_B2ITM7	30S ribosomal protein S9	0.0288692210003	0.000477601140485	-0.0283916198598
+UniRef50_A4WTC5		0.000717761607152	0.000333691192315	-0.000384070414837
+UniRef50_M4YY80	Ribose ABC transporter permease	0.000649422652878	0.000579920873349	-6.9501779529e-05
+UniRef50_P77453	Hydrogenase 4 component J	0.000462229666611	0.000392013325476	-7.0216341135e-05
+UniRef50_P06225	DNA polymerase	1.89393207435e-05	9.31201518538e-06	-9.62730555812e-06
+UniRef50_R8T1N5		3.2742992727e-05	0.000972204752947	0.00093946176022
+UniRef50_E8SF08	N acetyl L,L diaminopimelate deacetylase like protein	0.0243524177879	0.0061210757926	-0.0182313419953
+UniRef50_UPI00037C81CE	hypothetical protein	1.34195091168e-05	4.10166321171e-05	2.75971230003e-05
+UniRef50_K6VNK5	Putative ABC transporter substrate binding protein	4.07047724799e-05	1.21350655317e-05	-2.85697069482e-05
+UniRef50_UPI00046779B7	secretin	2.69256767708e-06	4.71974861155e-06	2.02718093447e-06
+UniRef50_L7WTQ2	Serine threonine rich antigen	0.000441576898586	5.8362985223e-05	-0.000383213913363
+UniRef50_UPI0003B4AC14	general secretion pathway protein I	3.97486276189e-05	2.64272190157e-05	-1.33214086032e-05
+UniRef50_A6TVR2	Aspartate carbamoyltransferase	0.000362658213269	0.000652725909678	0.000290067696409
+UniRef50_P10151	HTH type transcriptional regulator LeuO	0.000914623912942	0.000213225057899	-0.000701398855043
+UniRef50_D8JPC9	NUDIX domain protein	0.000345261575169	0.00631925724759	0.00597399567242
+UniRef50_Q6GGG1	Shikimate kinase	0.0115576285403	0.000365340253849	-0.0111922882865
+UniRef50_I9PDN2		0.000359510465573	0.000558959063463	0.00019944859789
+UniRef50_UPI000470E9F4	uroporphyrinogen decarboxylase	4.02946166679e-06	1.06858031716e-05	6.65634150481e-06
+UniRef50_Q43923	Putative porin QuiX	8.86811250236e-05	0.00584402323672	0.0057553421117
+UniRef50_A5UNK1	Nitroreductase, NfnB	0.00203394135176	0.00039907662865	-0.00163486472311
+UniRef50_F0MEP6	Acetyltransferase PglI	6.46380117888e-05	0.00338773567771	0.00332309766592
+UniRef50_H4G9C2		0.00634882130816	0.00334320798334	-0.00300561332482
+UniRef50_UPI000429B909	ribonucleotide diphosphate reductase subunit alpha	3.98872813898e-06	3.34971783169e-05	2.95084501779e-05
+UniRef50_Q0TPV7	Stage V sporulation protein B	0.000156905386118	0.0017071025982	0.00155019721208
+UniRef50_UPI00024917F8	transcriptional regulator	1.99986538608e-05	2.67748715997e-05	6.7762177389e-06
+UniRef50_UPI000377B35F	hypothetical protein	7.93661496278e-06	1.31248640088e-05	5.18824904602e-06
+UniRef50_UPI00037AAF89	hypothetical protein	8.45833243654e-06	2.66927805075e-05	1.8234448071e-05
+UniRef50_J4KJZ5	TonB dependent siderophore receptor	0.000235085127254	0.00972025109182	0.00948516596457
+UniRef50_P75824	NADH oxidoreductase hcr	0.00334663307471	0.00115202491063	-0.00219460816408
+UniRef50_Q0F3C9		2.09997779138e-05	0.000336168293794	0.00031516851588
+UniRef50_P74241	Sulfate adenylyltransferase	0.0116975100777	0.00261589694111	-0.00908161313659
+UniRef50_B2TX82		0.00327154021598	0.000369916540948	-0.00290162367503
+UniRef50_A3PNK5	PTS IIA like nitrogen regulatory protein PtsN	0.00672088823442	0.00156998050926	-0.00515090772516
+UniRef50_Q73TT9		2.35365498718e-05	0.000791026888919	0.000767490339047
+UniRef50_P76552	Ethanolamine utilization protein EutH	0.0024427510306	0.000756495595641	-0.00168625543496
+UniRef50_Q73TT2		0.000115216776329	0.000165137306153	4.9920529824e-05
+UniRef50_A6LRT3		0.00147072463189	0.00108996252638	-0.00038076210551
+UniRef50_A8IJV0	BioY family protein	0.000506559858125	0.000671825604273	0.000165265746148
+UniRef50_B2AGC3		0.000148329850475	3.28531998182e-05	-0.000115476650657
+UniRef50_I4W6U8	Putative NAD specific glutamate dehydrogenase	2.52732430622e-05	1.43516863018e-05	-1.09215567604e-05
+UniRef50_R7N6I4	Amino acid transporters Alcohol dehydrogenase class IV	0.000204647714421	0.00247340480424	0.00226875708982
+UniRef50_A6LR22	Binding protein dependent transport systems inner membrane component	0.000433338977621	0.000226296325824	-0.000207042651797
+UniRef50_UPI0002F61CB0	hypothetical protein	0.00014733738634	8.25342595979e-06	-0.00013908396038
+UniRef50_UPI00034BD8C9	hypothetical protein	3.43273522016e-05	3.62213920152e-06	-3.07052130001e-05
+UniRef50_UPI00047221AF	bifunctional glyoxylate hydroxypyruvate reductase B	3.73201983903e-05	9.3457149736e-06	-2.79744834167e-05
+UniRef50_P13511	Cobalt zinc cadmium resistance protein CzcA	0.000636812986412	0.00687374501912	0.00623693203271
+UniRef50_E8SJT4	Lipid A export ATP binding permease protein MsbA	0.0168473947198	0.00572730624667	-0.0111200884731
+UniRef50_A3PG03	Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03	0.00245506229071	0.001308352585	-0.00114670970571
+UniRef50_UPI00046F85CB	L threonine 3 dehydrogenase	7.17556608728e-06	5.79518336705e-05	5.07762675832e-05
+UniRef50_S1T400		3.36401700486e-05	4.23304245184e-05	8.6902544698e-06
+UniRef50_X7DMX2		0.00362287185685	0.000540213485111	-0.00308265837174
+UniRef50_A6LRT8		0.00014334910969	0.00201882224934	0.00187547313965
+UniRef50_P76134	Anaerobic sulfatase maturating enzyme homolog YdeM	0.00136385636199	0.000245755926652	-0.00111810043534
+UniRef50_A6LZF4	Virginiamycin B lyase	0.000748679098248	0.000533675014833	-0.000215004083415
+UniRef50_P16431	Formate hydrogenlyase subunit 5	0.00687312360461	0.0026984294597	-0.00417469414491
+UniRef50_A8FP74	Methionyl tRNA formyltransferase	0.003521665815	0.00168539264391	-0.00183627317109
+UniRef50_B0V5A3		0.000142987116986	0.00666431884964	0.00652133173265
+UniRef50_F8I069	Spermidine putrescine binding periplasmic protein	0.00709307934009	0.00331790905842	-0.00377517028167
+UniRef50_UPI000464AFE5	hypothetical protein	2.52303004713e-05	2.65922321505e-05	1.3619316792e-06
+UniRef50_UPI0002491C94	N 6 DNA methylase	3.26698126137e-05	2.15029564568e-05	-1.11668561569e-05
+UniRef50_A6M1E5	Transposase, IS4 family protein	0.000209079791089	0.00147778559951	0.00126870580842
+UniRef50_UPI0003781939	30S ribosomal protein S2	2.01132048946e-05	1.63961366473e-05	-3.7170682473e-06
+UniRef50_Q2JFL7	NADH quinone oxidoreductase subunit D	0.000248631699718	0.0491417942289	0.0488931625292
+UniRef50_C3A9F0	Beta glucosidase	0.000406286439817	0.00161150897409	0.00120522253427
+UniRef50_UPI00037F85FD	hypothetical protein	0.000251272699936	1.50580758753e-05	-0.000236214624061
+UniRef50_A3K670	NADP dependent isocitrate dehydrogenase protein	0.000419709008393	9.9184753374e-05	-0.000320524255019
+UniRef50_B7MFR7	Pyrimidine specific ribonucleoside hydrolase RihA	0.00244733732991	0.000792212748529	-0.00165512458138
+UniRef50_Q925Z1	Lin1243 protein	0.000120499050039	7.4057380629e-06	-0.000113093311976
+UniRef50_UPI000366F76E	hypothetical protein	7.68153527215e-06	5.82544259988e-06	-1.85609267227e-06
+UniRef50_Q8NUG3		0.0075844509417	0.001072666723	-0.0065117842187
+UniRef50_P11961	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	7.0615459272e-06	8.66837023811e-05	7.96221564539e-05
+UniRef50_D2SAY9	ATPase involved in chromosome partitioning like protein	0.000171676391487	6.00223650408e-05	-0.000111654026446
+UniRef50_F3R5J1		8.99494302583e-05	1.63425567409e-05	-7.36068735174e-05
+UniRef50_Q3JPV0		7.62582162546e-05	1.09256542847e-05	-6.53325619699e-05
+UniRef50_Q036S8	Glucose 1 phosphate adenylyltransferase	4.49378779022e-06	0.00364863359982	0.00364413981203
+UniRef50_B6JGW9	Replicative DNA helicase	0.00650011849208	0.00107466508921	-0.00542545340287
+UniRef50_Q8CNU7	Multidrug resistance protein like protein	0.00983015157263	0.0037811319924	-0.00604901958023
+UniRef50_H3UQK1		0.000435495026938	0.000301349651069	-0.000134145375869
+UniRef50_UPI000475A83D	hypothetical protein	2.47063053415e-05	1.8397109239e-05	-6.3091961025e-06
+UniRef50_P0AA74		0.00153943678432	0.000332439067766	-0.00120699771655
+UniRef50_Q9RYX0	Pyridoxamine kinase	5.47434663642e-05	0.00268819853244	0.00263345506608
+UniRef50_N1N3N6	Mobile element protein	0.0063255603062	0.000593074004909	-0.00573248630129
+UniRef50_V9W2G7	Nitrate reductase	0.00693561683809	0.000899406346395	-0.0060362104917
+UniRef50_P52196	Thiosulfate sulfurtransferase	3.6146229101e-05	1.15355356642e-05	-2.46106934368e-05
+UniRef50_Q9NJP9	Glycerol kinase, glycosomal	2.81083823504e-06	5.36105207239e-06	2.55021383735e-06
+UniRef50_R6CPB8	Methionine  tRNA ligase	7.61572270731e-05	0.00102081946198	0.000944662234907
+UniRef50_P24252		0.00300040104459	0.000349487225087	-0.0026509138195
+UniRef50_Q2YX94	Iron regulated surface determinant protein C	0.00812975078207	0.00346241069239	-0.00466734008968
+UniRef50_B7V9D9	Glutamate 1 semialdehyde 2,1 aminomutase	0.00168314435661	0.000589807824604	-0.00109333653201
+UniRef50_E0NC84		9.14851879891e-05	0.000184940509885	9.34553218959e-05
+UniRef50_P33913		0.00107561712744	0.000874731953247	-0.000200885174193
+UniRef50_Q3IWW9		0.0155892846467	0.00113153930161	-0.0144577453451
+UniRef50_B9DJK9	UPF0042 nucleotide binding protein Sca_0414	0.0105302911569	0.00311176490031	-0.00741852625659
+UniRef50_P33916		0.00251994775363	0.00204350723066	-0.00047644052297
+UniRef50_D8HEB7		0.0173873045571	0.00476957997903	-0.0126177245781
+UniRef50_UPI000375905C	hypothetical protein	4.61692733082e-05	4.51763639174e-05	-9.929093908e-07
+UniRef50_R4XS51	ABC transporter, periplasmic spermidine putrescine binding protein PotD 	0.00793009865866	0.00202095332423	-0.00590914533443
+UniRef50_E6VA72	ABC transporter related protein	0.000145186918795	0.000744084444311	0.000598897525516
+UniRef50_E3GWS4	Oxidoreductase domain protein	0.00288791918355	0.000685884161275	-0.00220203502228
+UniRef50_UPI00035E9C46	hypothetical protein	1.41237259742e-05	5.60530703086e-06	-8.51841894334e-06
+UniRef50_UPI00032913FE	PREDICTED	2.22371218383e-05	1.13306078541e-05	-1.09065139842e-05
+UniRef50_F2A5X0	6 pyruvoyl tetrahydropterin synthase	2.21458549105e-05	8.21690040535e-05	6.0023149143e-05
+UniRef50_UPI00016A2F14	potassium transporting ATPase subunit A, partial	2.99809487876e-05	0.00569127869408	0.00566129774529
+UniRef50_A4WNG3	Histidine kinase	0.00135006226483	0.0001488060628	-0.00120125620203
+UniRef50_A4WWM3	Outer membrane lipoprotein carrier protein LolA	0.00710456835784	0.00886214222692	0.00175757386908
+UniRef50_P28249	Protein AsmA	0.00281614356189	0.000434798932434	-0.00238134462946
+UniRef50_Q8DFM1	Adenylate kinase	2.57944081683e-05	2.86360223214e-05	2.8416141531e-06
+UniRef50_B0K5G6	50S ribosomal protein L10	0.0114714954327	0.000879203595179	-0.0105922918375
+UniRef50_R5P840		3.30488570308e-05	0.000132681864341	9.96330073102e-05
+UniRef50_Q1R7P6		0.00303365266544	0.00107718886632	-0.00195646379912
+UniRef50_B4KEQ1	GI22193	2.02625207005e-06	8.66083866101e-06	6.63458659096e-06
+UniRef50_Q3JSW3		7.85643680285e-05	3.68012859322e-05	-4.17630820963e-05
+UniRef50_A5UNT1	Putative Gp40 related protein, ERF family single strand annealing protein 	0.00265479455166	0.00031983758685	-0.00233495696481
+UniRef50_UPI0004686FFD	hypothetical protein	1.82261617715e-05	2.81943627224e-05	9.9682009509e-06
+UniRef50_Q48RL4	Xaa Pro dipeptidase	0.00631110062102	0.00824579642618	0.00193469580516
+UniRef50_I2FE21	Riboflavin synthase subunit alpha	0.00018294959072	0.00850610275909	0.00832315316837
+UniRef50_UPI0003761549	hypothetical protein	5.36408134229e-05	2.61282928728e-05	-2.75125205501e-05
+UniRef50_M9R9R9	Methylenetetrahydrofolate reductase	0.00610159751872	0.000744368906608	-0.00535722861211
+UniRef50_K2CW16	Short chain dehydrogenase reductase SDR	4.8865538721e-06	5.14684494134e-05	4.65818955413e-05
+UniRef50_F6AYF9	ABC type transporter, integral membrane subunit	0.000469001381553	0.00402249145926	0.00355349007771
+UniRef50_Q28TZ9	Protein MurJ homolog	0.0024160809991	0.000611732986985	-0.00180434801211
+UniRef50_K4SH63		6.57297906535e-05	4.5472997044e-05	-2.02567936095e-05
+UniRef50_J8ST30		3.19164994001e-05	0.00480553833288	0.00477362183348
+UniRef50_E7S6W5		0.000491028659405	0.000780379842539	0.000289351183134
+UniRef50_U0CZ19		7.10808439944e-05	0.000626113155893	0.000555032311899
+UniRef50_UPI000368BB4B	hypothetical protein	1.00566704627e-05	2.60486945075e-05	1.59920240448e-05
+UniRef50_Q8CQ95	Histidinol dehydrogenase	0.00969720235544	0.00468322482678	-0.00501397752866
+UniRef50_P15713	Non hemolytic phospholipase C	0.000681265816543	0.000625523251695	-5.5742564848e-05
+UniRef50_D0K1D5		0.000111792494231	0.00346006906629	0.00334827657206
+UniRef50_A4VLC1	Rad3 related DNA helicase	0.000174621930468	0.000162376611368	-1.22453191e-05
+UniRef50_S5Y961	Phage terminase	0.00109174991792	0.000350875569572	-0.000740874348348
+UniRef50_UPI000289E091	6 pyruvoyl tetrahydropterin synthase	0.000522431132873	0.000623523758693	0.00010109262582
+UniRef50_O24990	Enoyl [acyl carrier protein] reductase [NADH] FabI	2.41213351301e-05	0.00244947618799	0.00242535485286
+UniRef50_A6LX16	Zinc finger, SWIM domain protein	0.000167692230552	0.00121534271162	0.00104765048107
+UniRef50_B2VB14	TraU protein	9.35781268509e-05	8.1059802057e-06	-8.54721466452e-05
+UniRef50_UPI0003943901	PREDICTED	1.59857054583e-05	0.000272425337655	0.000256439632197
+UniRef50_Q58811		0.0040673964371	0.000585546207708	-0.00348185022939
+UniRef50_X7ZA42	Integral membrane nitrite extrusion NarU domain protein	2.21214070116e-05	1.83188997953e-05	-3.8025072163e-06
+UniRef50_Q5HYK3	2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	6.68709754544e-06	7.0573538081e-06	3.7025626266e-07
+UniRef50_Q59659	Succinate dehydrogenase cytochrome b556 subunit	0.00581920965314	0.000463848228053	-0.00535536142509
+UniRef50_M3H3A2	CRISPR associated helicase Cas3	3.18408876843e-05	1.02760345164e-05	-2.15648531679e-05
+UniRef50_UPI0003347ABB	PREDICTED	2.59274261715e-06	4.75901200702e-06	2.16626938987e-06
+UniRef50_UPI0003697ED9	hypothetical protein, partial	9.87500695752e-06	2.22133773691e-05	1.23383704116e-05
+UniRef50_D3E1C7	Xylose isomerase like TIM barrel domain containing protein	0.0022864169283	0.000283958370386	-0.00200245855791
+UniRef50_F1U7I1		2.96049839993e-05	5.40870788903e-05	2.4482094891e-05
+UniRef50_UPI0004727931	hypothetical protein	4.98240243046e-05	1.13157059074e-05	-3.85083183972e-05
+UniRef50_UPI000468C176	hypothetical protein	6.07452314229e-05	7.94187198909e-05	1.8673488468e-05
+UniRef50_P0AGH4	Peptide transport system permease protein SapB	0.00202190115476	0.000643645314655	-0.0013782558401
+UniRef50_A6M060	PfkB domain protein	0.00100356483133	0.00175371248917	0.00075014765784
+UniRef50_B1GYM8	UDP N acetylmuramate  L alanine ligase	1.25775450324e-05	6.36184159349e-06	-6.21570343891e-06
+UniRef50_Q9I0K4	Isocitrate lyase	0.000498819853153	0.00901115400854	0.00851233415539
+UniRef50_Q21KT5	Tetratricopeptide TPR_2	7.72789238238e-06	1.99831961578e-05	1.22553037754e-05
+UniRef50_D6DNI5	Cation multidrug efflux pump	0.00158890227015	0.00036874383908	-0.00122015843107
+UniRef50_UPI000023E6F1	hypothetical protein FG03809.1	1.14531060573e-06	3.32584107032e-06	2.18053046459e-06
+UniRef50_H7CZP9	ABC transporter, ATP binding protein	0.000186871904876	0.000723172021518	0.000536300116642
+UniRef50_UPI0003650601	30S ribosomal protein S4	5.03937248265e-05	0.000155151661348	0.000104757936522
+UniRef50_C7NH75	Chromosome segregation ATPase	1.0720748933e-05	4.06528973413e-05	2.99321484083e-05
+UniRef50_U7G8A4		2.12763906924e-05	1.36856425068e-05	-7.5907481856e-06
+UniRef50_L7WSV6		0.0208110411396	0.00294384330578	-0.0178671978338
+UniRef50_E0QAI5	TQXA domain protein 	8.26423419184e-06	0.000105450547113	9.71863129212e-05
+UniRef50_Q9L883		0.000684137332974	0.000538345552708	-0.000145791780266
+UniRef50_H6SQS4	Cyclic nucleotide binding	0.000110903970089	0.000675509359373	0.000564605389284
+UniRef50_B5XNE4	3 dehydroquinate dehydratase	0.00106066752266	1.47115546141e-05	-0.00104595596805
+UniRef50_P38135	Short chain fatty acid  CoA ligase	0.00309957241856	0.000814990096881	-0.00228458232168
+UniRef50_Q9RNH6	Glycogen synthase	0.00296091135405	0.0008706735064	-0.00209023784765
+UniRef50_R4R8F1	Transcriptional regulator, LysR family	0.000279619251005	0.000297798358178	1.8179107173e-05
+UniRef50_Q5HR55		0.00874170233776	0.00155512799746	-0.0071865743403
+UniRef50_Q97QF9	Putative 3 isopropylmalate dehydratase small subunit	2.13626211155e-05	0.0027431953502	0.00272183272908
+UniRef50_P76524	Aminopeptidase YpdF	0.00573786613051	0.0012032102586	-0.00453465587191
+UniRef50_UPI0004663E5A	spermidine putrescine ABC transporter permease	6.79019900333e-05	0.000289056145141	0.000221154155108
+UniRef50_M7D3U9		0.00554402087679	0.00208121531034	-0.00346280556645
+UniRef50_UPI00044496EC	mannitol 1 phosphate dehydrogenase M1PDH1	2.22039048191e-05	1.18965866313e-05	-1.03073181878e-05
+UniRef50_A0A058ZQ19	Putative cation transport protein	7.76279430658e-06	3.45729977485e-05	2.68102034419e-05
+UniRef50_F4FMY2	Group 2 glycosyl transferase	0.0113482289735	0.000954524416758	-0.0103937045567
+UniRef50_Q9I4G8	Arachidonate 15 lipoxygenase	0.000548856310141	0.000492696825262	-5.6159484879e-05
+UniRef50_D4HAN6	ABC transporter, ATP binding protein	0.000157504585052	0.00340993991455	0.0032524353295
+UniRef50_I3GFM4		0.0012368876137	0.00144401183055	0.00020712421685
+UniRef50_UPI0002F4F624	hypothetical protein	2.99466639964e-05	2.41311659071e-05	-5.8154980893e-06
+UniRef50_D9XXK0		0.000237412571605	0.000727669038904	0.000490256467299
+UniRef50_UPI000382A772	hypothetical protein	4.76973672202e-05	4.62804987576e-05	-1.4168684626e-06
+UniRef50_A7HVG2		7.36637439323e-05	3.96149586029e-05	-3.40487853294e-05
+UniRef50_UPI00042B174B	Beta carbonic anhydrase 5, putative isoform 3	1.1733833101e-05	1.52502201871e-05	3.5163870861e-06
+UniRef50_Q9KAF4	BH2333 protein	0.012144786948	0.000632821511128	-0.0115119654369
+UniRef50_M7MZC8	Cytoplasmic protein	3.22471803311e-06	9.68828248747e-06	6.46356445436e-06
+UniRef50_U5UPA0	Transcription termination factor NusA	0.0246171850219	0.00358436003725	-0.0210328249846
+UniRef50_S6AFF6		8.92401864878e-05	0.000114168829327	2.49286428392e-05
+UniRef50_A6LUU0		8.14132254934e-05	0.000630980644676	0.000549567419183
+UniRef50_Q9JZ56	Aspartate 1 decarboxylase	0.000302796247737	0.00621472997773	0.00591193372999
+UniRef50_A7ZI94	3 propionate 3 hydroxycinnamic acid hydroxylase	0.000879836348917	0.000116419200473	-0.000763417148444
+UniRef50_Q830B9	Probable nicotinate nucleotide adenylyltransferase	0.00439049541418	0.00617097548013	0.00178048006595
+UniRef50_UPI0003637298	hypothetical protein	3.08735039141e-05	1.32229969289e-05	-1.76505069852e-05
+UniRef50_UPI0002F798B9	hypothetical protein	4.14840343257e-06	6.32428485689e-06	2.17588142432e-06
+UniRef50_UPI0003680D49	hypothetical protein	8.83531079733e-06	0.00010668911023	9.78537994327e-05
+UniRef50_F9YXS7	Tyrosine recombinase XerC	0.000405192966456	0.00493891817861	0.00453372521215
+UniRef50_I3XDQ4	TOP1E	0.00015344958896	0.000656139274964	0.000502689686004
+UniRef50_Q00518	Type II secretion system protein K	0.000689954749221	0.00019218006846	-0.000497774680761
+UniRef50_A6LUU6		0.000290373837578	0.00228147001429	0.00199109617671
+UniRef50_P0AFY4	Protein SanA	0.00413161446614	0.00259867378184	-0.0015329406843
+UniRef50_P34896	Serine hydroxymethyltransferase, cytosolic	8.00527001523e-05	0.00012054364263	4.04909424777e-05
+UniRef50_F4DTG1	TetR family transcriptional regulator	0.000160632335681	0.000499126825692	0.000338494490011
+UniRef50_M5JL13	YaeC family lipoprotein 	6.47576439463e-05	2.08769302488e-05	-4.38807136975e-05
+UniRef50_UPI0003A8766A	hypothetical protein	3.1051190023e-05	2.66290425096e-05	-4.4221475134e-06
+UniRef50_A0RGM3		7.37601891602e-06	0.000349487225087	0.000342111206171
+UniRef50_U6I6N8	Mechanosensory protein 2	4.44830441661e-06	7.70382742575e-06	3.25552300914e-06
+UniRef50_D5SMQ9		0.000231767657539	9.27589780055e-05	-0.000139008679533
+UniRef50_UPI00035E630D	hypothetical protein	9.6952148618e-06	5.69142231235e-05	4.72190082617e-05
+UniRef50_D6AZ23	Integral membrane protein	9.02898588779e-06	6.60884833075e-06	-2.42013755704e-06
+UniRef50_D2NRU7	Cytosine deaminase	1.94734193464e-06	3.86462821333e-05	3.66989401987e-05
+UniRef50_UPI00041D1FA9	hypothetical protein	3.86153910082e-06	6.03383241947e-06	2.17229331865e-06
+UniRef50_S5VIT0	Relaxase mobilization nuclease domain protein	0.000457819746427	5.90424993402e-05	-0.000398777247087
+UniRef50_P77339		0.0012013631812	0.000468445833732	-0.000732917347468
+UniRef50_UPI00047C5809	short chain dehydrogenase	1.87741603106e-05	4.18647560786e-05	2.3090595768e-05
+UniRef50_UPI000441CA6F	PREDICTED	0.000187705338427	7.48656594271e-05	-0.000112839679
+UniRef50_P71015	HTH type transcriptional repressor GbsR	0.0267089046572	0.00386938121516	-0.022839523442
+UniRef50_A3JNE7		0.000149229721474	8.52516392897e-05	-6.39780821843e-05
+UniRef50_A0REF7	DNA binding response regulator	0.000977727025268	0.00992519376363	0.00894746673836
+UniRef50_Q6NCE2		3.52595635827e-05	1.18003008639e-05	-2.34592627188e-05
+UniRef50_A7ZJJ2	Cyclic pyranopterin monophosphate synthase accessory protein	0.000987988099604	0.000673726323636	-0.000314261775968
+UniRef50_Q888H1	Uronate dehydrogenase	6.96161873087e-06	5.0203135352e-05	4.32415166211e-05
+UniRef50_A6LV74	Integral membrane sensor signal transduction histidine kinase	0.000199475307231	0.000724256541209	0.000524781233978
+UniRef50_C8VDQ3	Putative glutathione dependent formaldehyde activating enzyme	8.91023047476e-05	2.49646046077e-05	-6.41377001399e-05
+UniRef50_K8B5X1		3.83331743519e-05	0.0001182843946	7.99512202481e-05
+UniRef50_F4H898	CRISPR associated HD domain protein	1.42027855374e-05	6.96184103225e-06	-7.24094450515e-06
+UniRef50_M4UMY3	Transcriptional regulator, Crp Fnr family	0.000183542620181	0.000322163678398	0.000138621058217
+UniRef50_I1AQG2	IS5 family transposase OrfA	9.62907484674e-05	7.80155010848e-05	-1.82752473826e-05
+UniRef50_UPI0003B76181	hypothetical protein	2.92105033648e-05	3.17162967487e-05	2.5057933839e-06
+UniRef50_UPI000474B984	sugar ABC transporter ATP binding protein	1.37329812279e-05	4.65897606602e-05	3.28567794323e-05
+UniRef50_W4UB24	L xylulose 5 phosphate 3 epimerase	1.12346353354e-05	0.000252765520183	0.000241530884848
+UniRef50_UPI0002BA5A10	MerR family transcriptional regulator	0.00144268123538	0.00249045105171	0.00104776981633
+UniRef50_Q893S7	Chemotaxis protein methyltransferase cheR	0.000368878816464	0.00162061810776	0.0012517392913
+UniRef50_S5Y8D8	DNA topoisomerase 1	0.005545819188	0.00124078986083	-0.00430502932717
+UniRef50_D4MGJ2	Cyclopropane fatty acyl phospholipid synthase	0.000115087191723	0.000956930029311	0.000841842837588
+UniRef50_UPI00036A03D0	hypothetical protein, partial	0.000153215269274	0.000232182404569	7.8967135295e-05
+UniRef50_UPI000473270B	hypothetical protein	8.94454828167e-06	1.57686001425e-05	6.82405186083e-06
+UniRef50_G7M9J3	Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.000940292506537	0.00074930822433	-0.000190984282207
+UniRef50_UPI0003595AF6		0.000112942660081	0.000121114164807	8.171504726e-06
+UniRef50_B4SRW3	Acetyl CoA acetyltransferase	0.000106035390125	0.00568825099663	0.0055822156065
+UniRef50_A6LX32		0.000255097986351	0.000384774759058	0.000129676772707
+UniRef50_B5GLS3		9.90513790878e-05	0.000324318294177	0.000225266915089
+UniRef50_X4QTL9		0.000209565552343	0.0135372652476	0.0133276996953
+UniRef50_V8R9C6	Cytochrome C assembly protein	0.000622310584964	0.000268877121583	-0.000353433463381
+UniRef50_UPI000470A12B	hypothetical protein	4.98012429875e-06	1.83618579394e-05	1.33817336406e-05
+UniRef50_C5C6A7		2.30846910008e-06	1.83656647608e-05	1.60571956607e-05
+UniRef50_U2Z7C1		6.67267421198e-05	4.03016204772e-05	-2.64251216426e-05
+UniRef50_F8LKD4		0.00615826928226	0.00107432749897	-0.00508394178329
+UniRef50_I0C2E4	Hydrogen peroxide inducible genes activator	0.0157288754141	0.00311570116055	-0.0126131742536
+UniRef50_UPI0004728112	shikimate dehydrogenase, partial	3.85580903565e-05	3.38828718271e-05	-4.6752185294e-06
+UniRef50_UPI0003B52B26	ABC transporter	1.89613097026e-05	7.15774437721e-06	-1.18035653254e-05
+UniRef50_M7DCE8	Anticodon nuclease	0.00333468321886	0.0021962252729	-0.00113845794596
+UniRef50_UPI0004773C4C	peptidylprolyl isomerase	6.44559936658e-06	2.53633220983e-05	1.89177227317e-05
+UniRef50_L8N8P7	HflK protein	0.00116066238137	0.00156205134455	0.00040138896318
+UniRef50_B2TPA5	Cell division protein FtsA	0.000380561247775	0.00150451390765	0.00112395265987
+UniRef50_N0AQS7	D 3 phosphoglycerate dehydrogenase	0.00367858797636	0.00222687901887	-0.00145170895749
+UniRef50_U3TMH1	Chloride channel protein	0.0115080046447	0.00162874223364	-0.00987926241106
+UniRef50_UPI00022337B0	PREDICTED	4.97875541753e-07	7.7248953018e-06	7.22701976005e-06
+UniRef50_UPI000370CB23	hypothetical protein	0.000151167679488	8.93179447265e-05	-6.18497347615e-05
+UniRef50_F4DXM1	Short chain dehydrogenase	0.000281705961835	0.000234068722742	-4.7637239093e-05
+UniRef50_E1R075	FAD dependent oxidoreductase	0.000734509607042	0.000597391113129	-0.000137118493913
+UniRef50_UPI0003A40543	hypothetical protein	0.000192532944305	5.45928348185e-05	-0.000137940109486
+UniRef50_B9KSE8	FAD dependent oxidoreductase	0.00302282200461	0.000529762607153	-0.00249305939746
+UniRef50_Q11NV4	Isoleucine  tRNA ligase	2.61784077345e-06	4.13882837431e-06	1.52098760086e-06
+UniRef50_X0YWS3	Marine sediment metagenome DNA, contig	1.12947381864e-05	2.11295975518e-05	9.8348593654e-06
+UniRef50_U3STL6		0.00335445708426	0.0019635407469	-0.00139091633736
+UniRef50_D9VBW9	Predicted protein	3.32320876086e-05	4.69074606352e-05	1.36753730266e-05
+UniRef50_B9KLG3	Membrane protein	0.000129571849717	0.000273864023365	0.000144292173648
+UniRef50_S5YCD9		6.49824300693e-05	1.15094696474e-05	-5.34729604219e-05
+UniRef50_K5RU55		0.000406513133883	0.00793056907271	0.00752405593883
+UniRef50_L8P717	Putative UPF0225 protein	8.11625701915e-06	5.30623068058e-05	4.49460497866e-05
+UniRef50_P97089	Electron transfer flavoprotein subunit beta	0.00123269506041	0.00502244926693	0.00378975420652
+UniRef50_D3P6N7	Peptide nickel transport system ATP binding protein	0.000190434500872	0.000385158373492	0.00019472387262
+UniRef50_J2GHT5		5.17778347599e-05	1.23377137212e-05	-3.94401210387e-05
+UniRef50_D7I331	Phenylalanine hydroxylase transcriptional activator PhhR	0.000338415015832	0.000159630651457	-0.000178784364375
+UniRef50_Q8DSP8	Membrane protein insertase YidC 2	0.00653334374049	0.00699150135768	0.00045815761719
+UniRef50_D2JDJ5	Replication initiator protein	0.000152293368515	3.15623109994e-05	-0.000120731057516
+UniRef50_UPI000273B72B	PREDICTED	9.5420187226e-06	4.42176667899e-05	3.46756480673e-05
+UniRef50_F0RNI2		0.000467147949714	0.0186302563141	0.0181631083644
+UniRef50_Q9I4X3	Anthranilate  CoA ligase	0.000896382203803	0.000155566306503	-0.0007408158973
+UniRef50_UPI000477551D	acetyl CoA hydrolase	6.45123520899e-05	4.09232928958e-05	-2.35890591941e-05
+UniRef50_E8SEC6	Acid phosphatase	0.0197872925081	0.00652914356851	-0.0132581489396
+UniRef50_Q2W0I4		0.000628173082596	0.000168201568715	-0.000459971513881
+UniRef50_Q0D8N0-3	Isoform 3 of DEAD box ATP dependent RNA helicase 53	1.06555769396e-05	0.00017226997901	0.00016161440207
+UniRef50_UPI0003700CC6	hypothetical protein, partial	7.60524286994e-07	1.03685676294e-05	9.60804334241e-06
+UniRef50_I6T7T0	Transposase	0.00042896135097	0.000311670146086	-0.000117291204884
+UniRef50_F7YG57		7.09008418504e-06	5.57908908074e-05	4.87008066224e-05
+UniRef50_A3PRI3		0.000427809343597	0.000219498346369	-0.000208310997228
+UniRef50_UPI00046735F8	methionine gamma lyase, partial	5.56661806243e-06	8.90237086444e-06	3.33575280201e-06
+UniRef50_UPI0004753FFF	hypothetical protein	3.12109510551e-06	2.36978900896e-05	2.05767949841e-05
+UniRef50_UPI0002883A7C	phosphoribosylaminoimidazole carboxylase	3.64934125607e-06	6.46133519128e-06	2.81199393521e-06
+UniRef50_Q8CPQ1	Bifunctional autolysin	0.0187552720207	0.00469974413244	-0.0140555278883
+UniRef50_UPI000225B6E8	flagellar biosynthesis protein FliQ	0.000468296934658	0.000149756290545	-0.000318540644113
+UniRef50_F2FNL1		0.000171385230033	9.42515328672e-05	-7.71336971658e-05
+UniRef50_R9VQB8	Major facilitator transporter	0.000375773105201	0.00227920907105	0.00190343596585
+UniRef50_Q56318		3.09902032432e-05	0.00043845233274	0.000407462129497
+UniRef50_A7FAU5		0.000650837911816	0.015686549076	0.0150357111642
+UniRef50_U5P8L4	Membrane protein	0.00558026408043	0.00255596465028	-0.00302429943015
+UniRef50_Q826Q0	Peptide deformylase 2	1.40409634433e-05	4.75203004678e-05	3.34793370245e-05
+UniRef50_Q7UJL3	Inosine 5 monophosphate dehydrogenase	0.00867871221614	0.00255875222324	-0.0061199599929
+UniRef50_A3K7K9		0.000288438103518	0.000160638752866	-0.000127799350652
+UniRef50_E3JT91		2.37562605899e-05	9.3430345138e-06	-1.44132260761e-05
+UniRef50_Q89ZA3		6.53597731495e-06	0.00374432355559	0.00373778757828
+UniRef50_Q9HXE9	Phosphatidylcholine synthase	0.00263114249638	6.41905360119e-05	-0.00256695196037
+UniRef50_UPI0003D71460	PREDICTED	6.00943169724e-06	3.86548482433e-05	3.26454165461e-05
+UniRef50_Q3J224	Phage related protein, putative DNA packing	0.000333075872518	0.000522684433979	0.000189608561461
+UniRef50_P43671	Paraquat inducible protein B	0.00405579005205	0.000767517498713	-0.00328827255334
+UniRef50_UPI00006CBA16	Carbonic anhydrase family protein	1.81786432917e-05	9.50550847316e-05	7.68764414399e-05
+UniRef50_W7WVT2		0.000386805509454	0.000102319047865	-0.000284486461589
+UniRef50_UPI000362D292	hypothetical protein	1.27606570305e-05	1.89459236717e-05	6.1852666412e-06
+UniRef50_P37906	Gamma glutamylputrescine oxidoreductase	0.00448105289624	0.000728979094331	-0.00375207380191
+UniRef50_UPI0001FFEB3E	acyltransferase 3, partial	6.39145599516e-05	1.44080514404e-05	-4.95065085112e-05
+UniRef50_UPI00037F5E94	hypothetical protein	1.363233158e-05	1.23792924587e-05	-1.2530391213e-06
+UniRef50_P0ADP7		0.00291741151191	0.000294335586571	-0.00262307592534
+UniRef50_G9E7X5	Protein fecR	2.95138286299e-05	1.36285921389e-05	-1.5885236491e-05
+UniRef50_A6LS23	Helix turn helix domain protein	0.000145001020044	0.00119249429921	0.00104749327917
+UniRef50_UPI0003A885D5	translation initiation factor IF 2	2.63013036585e-06	7.58688947198e-05	7.32387643539e-05
+UniRef50_E6C679		0.000752976542231	0.00687258354044	0.00611960699821
+UniRef50_W4TI22	Lysophospholipase L2	3.95370910729e-05	0.00035402877194	0.000314491680867
+UniRef50_E7T8A0	Mg chelatase subunit ChlD	0.00490348905408	0.00154027580513	-0.00336321324895
+UniRef50_Q1IVF1	Queuine tRNA ribosyltransferase	6.46852211643e-06	4.6756597222e-05	4.02880751056e-05
+UniRef50_P23910	Protein AraJ	0.00246757895168	0.00143330075411	-0.00103427819757
+UniRef50_A6LPC4	ATP dependent helicase nuclease subunit A	0.00041999196467	0.00115353815113	0.00073354618646
+UniRef50_UPI000379410F	hypothetical protein	0.000262342987558	1.46378192363e-05	-0.000247705168322
+UniRef50_N2DXX0	Dihydrouridine synthase family protein	0.000400802427531	0.000553718822241	0.00015291639471
+UniRef50_M9RF98	Peptidyl prolyl cis trans isomerase	0.00401723530971	0.000623153372152	-0.00339408193756
+UniRef50_Q9L6V4	Transposase 	1.00184098154e-05	3.26347939783e-05	2.26163841629e-05
+UniRef50_Q1IQY5	Bifunctional protein GlmU	4.10585882136e-06	5.30013897974e-06	1.19428015838e-06
+UniRef50_A0A011NHH5	Periplasmic [NiFeSe] hydrogenase small subunit	0.00010971566267	1.10355598163e-05	-9.86801028537e-05
+UniRef50_D4HEK1	Bacterial type II secretion system domain protein F	0.00106312334069	0.00613748913487	0.00507436579418
+UniRef50_V9VZ19	Membrane protein	0.00466072222998	4.65498952615e-05	-0.00461417233472
+UniRef50_Q9I3X4		0.00139341763647	0.000242172737698	-0.00115124489877
+UniRef50_A5IV60	Molybdate ABC transporter, inner membrane subunit	0.0209006427244	0.00357607465006	-0.0173245680743
+UniRef50_UPI0004625430	PREDICTED	1.26918562342e-05	4.41524394923e-05	3.14605832581e-05
+UniRef50_UPI000376710A	hypothetical protein, partial	2.30396987402e-05	2.55688421838e-05	2.5291434436e-06
+UniRef50_Q6F6X6		0.000391769482445	0.00819260071316	0.00780083123071
+UniRef50_B7V4B9		0.00208375718604	0.000424916122588	-0.00165884106345
+UniRef50_O31766		1.42187698079e-05	0.00029460116961	0.000280382399802
+UniRef50_W0Z2F6	Putative major facilitator superfamily transporter	0.000268773044517	0.00037631903353	0.000107545989013
+UniRef50_P0A6G4	Nicotinamide nucleotide amidohydrolase PncC	0.00413301879053	0.000971841663992	-0.00316117712654
+UniRef50_A6LT79	Periplasmic binding protein LacI transcriptional regulator	0.000259959046035	0.000905519268575	0.00064556022254
+UniRef50_UPI00046F3756	50S ribosomal protein L3	3.18885010302e-05	9.83781746433e-05	6.64896736131e-05
+UniRef50_M2GKY0		0.00232349308678	0.000712771551959	-0.00161072153482
+UniRef50_UPI0003B5DDE6	ATPase	5.02070069802e-05	2.0190129812e-05	-3.00168771682e-05
+UniRef50_Q8F4Q4	Inosine 5 monophosphate dehydrogenase	2.58031064534e-05	4.35773474071e-06	-2.14453717127e-05
+UniRef50_J9YME8	ABC superfamily ATP binding cassette transporter, membrane protein	0.000421485147643	0.000258671566595	-0.000162813581048
+UniRef50_UPI00039B3F34	aldehyde activating protein	6.24089332808e-05	0.000102345566425	3.99366331442e-05
+UniRef50_A0A017SYI4		9.76617089557e-06	4.08607911706e-06	-5.68009177851e-06
+UniRef50_G1WMK0		1.13022738335e-05	7.26703929428e-05	6.13681191093e-05
+UniRef50_Q5LMW0	Ribonuclease HII	1.34569502043e-05	3.029848459e-05	1.68415343857e-05
+UniRef50_P39814	DNA topoisomerase 1	0.0220510460708	0.0049457739908	-0.01710527208
+UniRef50_A0A023KT22	DNA polymerase II	0.000792370158037	0.000162782198958	-0.000629587959079
+UniRef50_A0A014PEH8		3.46158632631e-05	8.12425598867e-05	4.66266966236e-05
+UniRef50_B9KJL3		0.0103562773928	0.00141752018494	-0.00893875720786
+UniRef50_UPI000350C992	PREDICTED	9.3073579535e-05	1.40336191537e-05	-7.90399603813e-05
+UniRef50_A8HYP6		3.95861867723e-05	9.14682872319e-06	-3.04393580491e-05
+UniRef50_UPI00042B224B	Tubulin FtsZ family protein, putative isoform 4	3.20329347985e-06	1.33144282389e-05	1.01111347591e-05
+UniRef50_I2C5T3	Ribonucleoside diphosphate reductase	0.010004639477	0.0042595998408	-0.0057450396362
+UniRef50_G9EUU6		0.000470454097827	0.0239414267189	0.0234709726211
+UniRef50_I4CQD2		5.48359523491e-05	7.90088972637e-05	2.41729449146e-05
+UniRef50_Q5HR38	Cys tRNA Cys tRNA(Cys) deacylase	0.014542394519	0.00211327855548	-0.0124291159635
+UniRef50_Q9HVZ2		0.000520626827673	0.000131935981468	-0.000388690846205
+UniRef50_UPI000363B12A	NADH dehydrogenase, partial	0.000114582432049	4.73088528801e-06	-0.000109851546761
+UniRef50_Z5X6G1		2.79755658908e-05	3.90549550631e-05	1.10793891723e-05
+UniRef50_P0AG42	Riboflavin biosynthesis protein RibF	0.00400826467786	0.000861049857057	-0.0031472148208
+UniRef50_C6S7Y9		0.000222924796565	0.00504770345406	0.0048247786575
+UniRef50_P76422	Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.00415509071857	0.000454909502082	-0.00370018121649
+UniRef50_B8H627	Ribonuclease 3	1.99106079718e-05	1.41145614699e-05	-5.7960465019e-06
+UniRef50_P49376	ATP synthase subunit beta, mitochondrial	2.37544018979e-05	0.000977517537553	0.000953763135655
+UniRef50_W0YWB6	Protein PelB	1.32995650804e-05	1.65574701479e-05	3.2579050675e-06
+UniRef50_UPI00036635D2	hypothetical protein	0.000423636293519	0.000392324677706	-3.1311615813e-05
+UniRef50_Q2T4E0	DNA binding response regulator	0.000171584540393	0.00643806753779	0.0062664829974
+UniRef50_UPI0003ACD19D	PREDICTED	0.000139972127338	9.28995362949e-05	-4.70725910431e-05
+UniRef50_UPI0003711349	hypothetical protein	0.00036627084632	0.000122071493478	-0.000244199352842
+UniRef50_UPI000378A2B6	hypothetical protein	1.47202043254e-05	1.48936210484e-05	1.73416723e-07
+UniRef50_UPI0004253BDC	phosphopentomutase	8.92103776348e-06	1.60697768643e-05	7.14873910082e-06
+UniRef50_UPI00034DE29F	hypothetical protein	2.92713625505e-05	0.000100444004967	7.11726424165e-05
+UniRef50_Q8CU58		0.00582953518667	0.00577027629805	-5.925888862e-05
+UniRef50_Q8CU59		0.00708778879664	0.00270396869368	-0.00438382010296
+UniRef50_X8BCV4	FAD binding domain protein	4.26204407769e-05	0.00175477472867	0.00171215428789
+UniRef50_UPI0004769DD4	hypothetical protein, partial	0.000250241001873	0.000198427422761	-5.1813579112e-05
+UniRef50_P94132	Probable electron transfer flavoprotein ubiquinone oxidoreductase	8.94942108975e-06	0.00606438667237	0.00605543725128
+UniRef50_Q8CU51		0.0153658943739	0.0028005218736	-0.0125653725003
+UniRef50_UPI0003074F79	hypothetical protein	7.72744111147e-05	2.76852406622e-05	-4.95891704525e-05
+UniRef50_A6LT48		0.0002881572434	0.000357959642661	6.9802399261e-05
+UniRef50_O67610	3 oxoacyl [acyl carrier protein] reductase FabG	1.29087399635e-05	3.73124738155e-05	2.4403733852e-05
+UniRef50_A6LT46		0.000246186514471	0.00037540259135	0.000129216076879
+UniRef50_B4REX9	UPF0301 protein PHZ_c0553	4.84866925293e-05	9.12973086759e-05	4.28106161466e-05
+UniRef50_Q0IS03	Os11g0579700 protein 	5.19157162963e-06	0.000179631578807	0.000174440007177
+UniRef50_A6LT42		8.2002749205e-05	0.000250990709374	0.000168987960169
+UniRef50_Q2NGX9	Phenylalanine  tRNA ligase beta subunit	0.00360382400105	0.000216098972538	-0.00338772502851
+UniRef50_UPI00016C0C74	DNA mismatch repair protein MutS	2.14564311589e-06	3.31929308211e-05	3.10472877052e-05
+UniRef50_UPI0004723041	hypothetical protein	0.00197739518055	0.000261811851881	-0.00171558332867
+UniRef50_F2JLI9	MATE efflux family protein	0.000464833609578	0.000442080971927	-2.2752637651e-05
+UniRef50_UPI000464D0AC	hypothetical protein	4.29365125812e-05	3.40182117107e-05	-8.9183008705e-06
+UniRef50_UPI0003B58353	preprotein translocase subunit SecB	5.21614936035e-05	9.16598403316e-05	3.94983467281e-05
+UniRef50_Q8FT41	Carbamoyl phosphate synthase small chain	4.86765306937e-06	7.95470631431e-06	3.08705324494e-06
+UniRef50_F5XZV5	Candidate signal transduction protein , STAS domain protein	2.50703971573e-05	0.00556343690481	0.00553836650765
+UniRef50_A6VBI2	Membrane protein, putative	0.00055774807656	0.000469477201255	-8.8270875305e-05
+UniRef50_UPI00030DD393	hypothetical protein	3.49878184027e-05	0.000212340242704	0.000177352424301
+UniRef50_P0AFT0	Murein DD endopeptidase MepM	0.00277489039148	0.000420682623693	-0.00235420776779
+UniRef50_Q2FK43	Pyruvate formate lyase activating enzyme	0.0249632559056	0.00427335225639	-0.0206899036492
+UniRef50_I7L6K8	Rhodanese like domain protein	2.10893064847e-05	2.89865110268e-05	7.8972045421e-06
+UniRef50_O33367	DNA gyrase subunit B	1.4741424855e-05	1.20167081245e-05	-2.7247167305e-06
+UniRef50_J9ZQJ4		0.000251099327394	0.000490831088969	0.000239731761575
+UniRef50_B2HGA4	Isopentenyl diphosphate delta isomerase	0.000142806805364	0.00587166537189	0.00572885856653
+UniRef50_UPI0002626EA5	hypothetical protein	1.15228457292e-05	5.11895670415e-05	3.96667213123e-05
+UniRef50_A4EG23		6.37334960829e-05	2.57806518948e-05	-3.79528441881e-05
+UniRef50_O33818	4 hydroxybenzoyl CoA reductase subunit gamma	0.000615068737902	0.000227424037889	-0.000387644700013
+UniRef50_F0QNA7		0.000243539347646	0.00237210857846	0.00212856923081
+UniRef50_UPI000467E119	hypothetical protein	7.27970005919e-06	1.28422223556e-05	5.56252229641e-06
+UniRef50_W1K4B0	ABC transporter glycerol 3 phosphate binding protein 	7.75238429883e-05	2.9140143902e-05	-4.83836990863e-05
+UniRef50_Q65GR3	Histidine  tRNA ligase	0.0106715233029	0.00109291647713	-0.00957860682577
+UniRef50_UPI00047342DF	hypothetical protein, partial	2.63105914219e-05	2.56093625476e-05	-7.012288743e-07
+UniRef50_F0MV13	CoA binding domain acetyltransferase, GNAT family	9.69868945575e-05	0.00424945530025	0.00415246840569
+UniRef50_Q3JS21	EutG protein	0.00014842175184	0.00306474867415	0.00291632692231
+UniRef50_A9IBR9		6.4386472309e-05	6.29141111262e-05	-1.4723611828e-06
+UniRef50_P0ABI1	ATP dependent Clp protease ATP binding subunit ClpA	0.00302631730226	0.0110599480006	0.00803363069834
+UniRef50_UPI000347EC3A	cell division protein FtsW	1.03774201338e-05	6.71910728558e-06	-3.65831284822e-06
+UniRef50_I0C1D1		0.0152956111508	0.00245054159883	-0.012845069552
+UniRef50_Q5F4X8	Lipid A export ATP binding permease protein MsbA	6.3301171976e-05	0.00411609759999	0.00405279642801
+UniRef50_V5VD21		0.000291120299886	0.00445790363574	0.00416678333585
+UniRef50_A6LW40	NUDIX hydrolase	0.000215296191359	0.0011734438617	0.000958147670341
+UniRef50_A0A011R4M2	N formylmethionyl tRNA deformylase	1.25143292356e-05	0.00130466144873	0.00129214711949
+UniRef50_Q31N84	3 oxoacyl [acyl carrier protein] synthase 3	1.81201588023e-05	2.34286401925e-05	5.3084813902e-06
+UniRef50_F9YZY2		0.000119457591412	0.00565632369959	0.00553686610818
+UniRef50_B6B233	PucC protein	0.000147214940286	3.79736872511e-05	-0.000109241253035
+UniRef50_A6LYW0	Lysine exporter protein 	0.000643443565143	0.000528925442146	-0.000114518122997
+UniRef50_P77733	Probable formate transporter 2	0.00296658010794	0.00023688505764	-0.0027296950503
+UniRef50_K0C8T6	Oxidoreductase, short chain dehydrogenase reductase family	0.000348954021977	0.00778331598507	0.00743436196309
+UniRef50_UPI0003B430E0	preprotein translocase subunit SecA	8.92039028064e-06	1.93822003087e-05	1.04618100281e-05
+UniRef50_Q9RR67	Thymidylate synthase	0.000196266545327	0.0399768523249	0.0397805857796
+UniRef50_X0TUW0	Marine sediment metagenome DNA, contig	9.00394108045e-05	5.56900715447e-05	-3.43493392598e-05
+UniRef50_A6LRF1	Glycosyl hydrolase, BNR repeat containing protein	0.000398289525115	0.000352146686695	-4.614283842e-05
+UniRef50_Q8XU08		2.09185418909e-05	5.74538965356e-06	-1.51731522373e-05
+UniRef50_A5UJG2	Coenzyme F420 reducing hydrogenase, beta subunit	0.00230374770485	0.00189654404796	-0.00040720365689
+UniRef50_A3CX71	Glycerol 1 phosphate dehydrogenase [NAD+]	0.00192676720314	0.000366887969667	-0.00155987923347
+UniRef50_Q5HM56	Heme degrading monooxygenase	0.000703390041336	0.000567916740756	-0.00013547330058
+UniRef50_D9UMJ7	Secreted protein	4.08137245055e-05	1.15734616825e-05	-2.9240262823e-05
+UniRef50_UPI0001FFDC99	DEAD DEAH box helicase domain protein, partial	3.39560496635e-05	0.000162512728265	0.000128556678601
+UniRef50_A6LWX4	Efflux transporter, RND family, MFP subunit	0.000443601321544	0.000367539916684	-7.606140486e-05
+UniRef50_Z6ADI2		5.84187962169e-05	5.87645765409e-05	3.45780324e-07
+UniRef50_A9M186	Imidazoleglycerol phosphate dehydratase	0.000186819427941	0.00237721283452	0.00219039340658
+UniRef50_Q31TM6		5.88070452071e-06	1.25539138289e-05	6.67320930819e-06
+UniRef50_UPI00035E404B	ABC transporter	5.99677005843e-06	2.00761006079e-05	1.40793305495e-05
+UniRef50_G1Y0V7		0.000152418055466	4.84870768046e-05	-0.000103930978661
+UniRef50_G8R9K4		0.00939670421942	0.00196907053381	-0.00742763368561
+UniRef50_M7MVN0	5 formyltetrahydrofolate cyclo ligase	0.0045721643028	0.00995763014749	0.00538546584469
+UniRef50_A1KSK9	Sec independent protein translocase protein TatB	0.000165564030199	0.00153817002584	0.00137260599564
+UniRef50_L1KLU3		0.000207433296092	9.79651469675e-05	-0.000109468149124
+UniRef50_UPI00042C20EE	PREDICTED	9.29036540359e-05	8.54121402629e-05	-7.491513773e-06
+UniRef50_A5UP53	TPR repeat protein	0.00138543198662	0.00107331649067	-0.00031211549595
+UniRef50_UPI000474AE63	MerR family transcriptional regulator	1.05167551913e-05	8.72318063174e-06	-1.79357455956e-06
+UniRef50_A6QHZ9	Lantibiotic ABC transporter protein	0.000431172703782	0.00031361066038	-0.000117562043402
+UniRef50_Q3IV58	Site specific recombinase and resolvase superfamily	0.00724804969167	0.00134246987694	-0.00590557981473
+UniRef50_S1FXN2		1.51986187015e-05	0.000100072425741	8.48738070395e-05
+UniRef50_Q2CBI1	ISxac3 transposase	0.000656962133133	0.000650449797428	-6.512335705e-06
+UniRef50_UPI000311BF3E	hypothetical protein	3.9527842787e-05	4.60580464467e-05	6.5302036597e-06
+UniRef50_G7ZQ52	Ammonium transporter family protein	0.0222808854984	0.00500572796551	-0.0172751575329
+UniRef50_A5IR30		0.0111682032066	0.00165544625296	-0.00951275695364
+UniRef50_UPI000381D79B	hypothetical protein	1.4144977386e-05	1.93099320289e-05	5.1649546429e-06
+UniRef50_F0M765	GAF domain containing protein	4.4005151332e-05	4.02309753996e-05	-3.7741759324e-06
+UniRef50_Q8XLH3	3 oxoacyl [acyl carrier protein] synthase 3	0.000217979243354	4.56963730996e-05	-0.000172282870254
+UniRef50_UPI0001FFE008	error prone DNA polymerase	1.52768092279e-05	5.78849924198e-05	4.26081831919e-05
+UniRef50_Q9RYV3	Oxidoreductase, putative	0.000227594145271	0.0295205947652	0.0292930006199
+UniRef50_A7INL3	Integration host factor subunit alpha	0.00104757946018	0.00204141256406	0.00099383310388
+UniRef50_A5IR39		0.000536709936758	0.000787511213846	0.000250801277088
+UniRef50_B9KKS1	Non homologous end joining protein Ku	0.000481303355044	0.000221211015129	-0.000260092339915
+UniRef50_D8J4V6		1.05481019223e-05	3.76767781686e-05	2.71286762463e-05
+UniRef50_Q8H8U0	Cardiolipin synthase, mitochondrial	6.63792098858e-06	2.69286954149e-05	2.02907744263e-05
+UniRef50_H0ABG8		9.34537072161e-05	4.9973405404e-05	-4.34803018121e-05
+UniRef50_W7QLC2		0.000318272232416	0.000328215428467	9.943196051e-06
+UniRef50_B9R471	Transporter, major facilitator family	2.98026445605e-05	1.52720242345e-05	-1.4530620326e-05
+UniRef50_L3RWN4	Transcriptional regulator	0.000353070979283	0.000275996920751	-7.7074058532e-05
+UniRef50_P42912	Putative galactosamine 6 phosphate isomerase	0.00245010903402	0.00193981339456	-0.00051029563946
+UniRef50_Q97J66	Protein CA_C1420	0.000177657439292	0.00153125434169	0.0013535969024
+UniRef50_UPI0001BF5ACC	hypothetical protein SMAC_10820, partial	0.00101409996284	9.31851078381e-05	-0.000920914855002
+UniRef50_Z6NK79	ABC transporter, permease	0.0107142757125	0.0012531601458	-0.0094611155667
+UniRef50_R9PQX7		1.89631882126e-05	2.80422996974e-05	9.0791114848e-06
+UniRef50_Q9F7B2	Low molecular weight protein tyrosine phosphatase wzb	0.00132208368756	0.00210014848429	0.00077806479673
+UniRef50_I4W6D9		4.26788677261e-05	5.72908213811e-05	1.4611953655e-05
+UniRef50_Q9X0C4	Putative UDP N acetylglucosamine 2 epimerase	8.09625970267e-06	5.91659604223e-05	5.10697007196e-05
+UniRef50_B9E6S4	Exogenous DNA binding protein comGC homolog	0.00207900680528	0.0010361989656	-0.00104280783968
+UniRef50_UPI00037DFA06	hypothetical protein	2.66427995971e-05	2.6532199958e-05	-1.105996391e-07
+UniRef50_C9QWV1	Autotransporter  family porin	0.000496110121037	0.000224893517213	-0.000271216603824
+UniRef50_G0DVD7	CBS domain protein	0.000416324534108	0.00631040328758	0.00589407875347
+UniRef50_F8J6S6	Dihydrodipicolinate synthase	0.000471378691141	0.000342727317444	-0.000128651373697
+UniRef50_UPI0003782A09	hypothetical protein	1.83687879783e-05	8.65825767569e-06	-9.71053030261e-06
+UniRef50_E0SUZ8		0.00251747209223	0.00182930011172	-0.00068817198051
+UniRef50_D8TJ66		1.99097777103e-06	4.4221469465e-06	2.43116917547e-06
+UniRef50_P00892	Acetolactate synthase isozyme 2 large subunit	0.00443890317642	0.000687836501052	-0.00375106667537
+UniRef50_UPI0003B4985D	lipase	1.09039583792e-05	0.000140566138454	0.000129662180075
+UniRef50_F4CKZ8	PE PGRS family protein	0.000155872867906	0.000134448460885	-2.1424407021e-05
+UniRef50_A4WYR6	Alcohol dehydrogenase, zinc binding domain protein	0.00029224246766	0.00036878919223	7.654672457e-05
+UniRef50_I3TIJ2	Ornithine cyclodeaminase mu crystallin	0.00391273889278	0.000689406569852	-0.00322333232293
+UniRef50_UPI00047B0B98	hypothetical protein	6.84476966812e-06	1.17697263002e-05	4.92495663208e-06
+UniRef50_K9BMT1	Alkyl hydroperoxide reductase subunit F domain protein	4.02806911721e-05	0.000388964060348	0.000348683369176
+UniRef50_R6LGJ5	Methionine synthase vitamin B12 independent	0.000105639735687	0.000173715708945	6.8075973258e-05
+UniRef50_A1B479	NADH quinone oxidoreductase subunit N	0.00934928840233	0.001790344957	-0.00755894344533
+UniRef50_UPI0003B7991F	hypothetical protein	8.12225280766e-05	0.000343424025975	0.000262201497898
+UniRef50_M9XAR7	2 nitropropane dioxygenase	0.000112013646546	0.0132666431113	0.0131546294648
+UniRef50_UPI0003B68CBF	isomerase	8.64166534329e-06	2.42152662458e-05	1.55736009025e-05
+UniRef50_V9WST0	Phage terminase like protein, large subunit	0.0112989734633	0.00397970376628	-0.00731926969702
+UniRef50_A6M1B5		0.000999154317139	0.000994116719189	-5.03759795e-06
+UniRef50_A6M1B4		0.000367658467971	0.000669289904245	0.000301631436274
+UniRef50_UPI000371C67C	hypothetical protein	3.74374854311e-05	4.50404923928e-05	7.6030069617e-06
+UniRef50_UPI000412F481	hypothetical protein	1.78940174216e-05	7.25445671181e-06	-1.06395607098e-05
+UniRef50_B2VDT9		0.000517104094322	0.0020526704875	0.00153556639318
+UniRef50_UPI0001C39674	dehydrogenase	2.3038297867e-05	4.29774687056e-05	1.99391708386e-05
+UniRef50_P57041	Major outer membrane protein P.IA	0.000464408840608	0.00247659906486	0.00201219022425
+UniRef50_R9SN55	Phosphopantothenate cysteine ligase CoaB	0.00263989396921	0.000632917699228	-0.00200697626998
+UniRef50_J9UQD4		0.00161042853938	0.00141721158092	-0.00019321695846
+UniRef50_UPI000467BC4C	type I secretion protein	2.88135520354e-06	8.53324359379e-06	5.65188839025e-06
+UniRef50_Q5LSU1	Lipid A disaccharide synthase	0.000151398123869	0.000466698919528	0.000315300795659
+UniRef50_Q9RRX9	Probable L asparaginase	1.74774173576e-05	0.00443193311577	0.00441445569841
+UniRef50_Q0ARD7	Pyridoxine pyridoxamine 5 phosphate oxidase	0.00184372989813	0.000777267929574	-0.00106646196856
+UniRef50_W0YV34		0.000272293666138	0.00170375022228	0.00143145655614
+UniRef50_Q2GCI6	Uridylate kinase	8.24467954184e-06	1.1261468821e-05	3.01678927916e-06
+UniRef50_B9KJE9	Flagellar hook associated 2 domain protein	0.00474307812168	0.00129889310699	-0.00344418501469
+UniRef50_S5CLC3		0.000300643564515	0.00640348392577	0.00610284036126
+UniRef50_UPI000381DE4F	hypothetical protein	5.59717388927e-05	0.000278542166094	0.000222570427201
+UniRef50_Q9RSN5	Ferripyochelin binding protein	4.4387673018e-05	0.00791450170799	0.00787011403497
+UniRef50_Q1YEW0		0.00108999629045	0.00317769596398	0.00208769967353
+UniRef50_A8J5U5	Predicted protein	7.53136887589e-05	9.72072263005e-05	2.18935375416e-05
+UniRef50_U5MSZ1		0.00018874299443	0.000756904160379	0.000568161165949
+UniRef50_UPI000248490E	Resolvase	2.51124537924e-05	5.80101009795e-06	-1.93114436944e-05
+UniRef50_E0Y0D2	Nuclease subunit of the excinuclease complex	0.000361232877188	7.72536841864e-05	-0.000283979193002
+UniRef50_Q2NF24	Predicted thioesterase	0.000900868386582	0.00174976876848	0.000848900381898
+UniRef50_B1JX98	Serine  tRNA ligase	0.00429866099047	0.0126044756765	0.00830581468603
+UniRef50_UPI00047A8CC8	hypothetical protein	0.000305089044288	3.92740496053e-05	-0.000265814994683
+UniRef50_A6UY58		0.000256832733503	0.000933243904903	0.0006764111714
+UniRef50_G0JNN6	Integral membrane protein MviN	4.03294040779e-05	3.42751020719e-05	-6.054302006e-06
+UniRef50_Q8ZH57	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.0021139604217	0.000784600436967	-0.00132935998473
+UniRef50_I0GCY5		0.000695993328778	0.00024920390399	-0.000446789424788
+UniRef50_W1MH71		4.3951530342e-06	0.00037932076754	0.000374925614506
+UniRef50_UPI00035C5743	hypothetical protein	2.71462072187e-06	1.14907084665e-05	8.77608774463e-06
+UniRef50_A3UG89		1.27368875872e-06	2.49056560031e-06	1.21687684159e-06
+UniRef50_B6J655	Methionyl tRNA formyltransferase	6.32262001443e-06	5.47331691219e-05	4.84105491075e-05
+UniRef50_F5XDX0	Diaminopimelate epimerase	0.000138442294196	0.00672061300365	0.00658217070945
+UniRef50_UPI0003B3BC3C	acetoacetate metabolism regulatory protein AtoC	5.05151450558e-06	9.50665823088e-06	4.4551437253e-06
+UniRef50_UPI0002E4BD4A	hypothetical protein	4.21855300906e-06	9.37878150949e-05	8.95692620858e-05
+UniRef50_A5UJF5		0.00370809153955	0.000460233826278	-0.00324785771327
+UniRef50_A5UJF0		0.00309672956657	0.000533718096869	-0.0025630114697
+UniRef50_D2P269		4.0240429698e-05	0.00115831433797	0.00111807390827
+UniRef50_W4UBC8		0.000343108868539	0.00459337104676	0.00425026217822
+UniRef50_A5IPS9	Phage envelope protein like protein	0.00298810917937	0.00160236626432	-0.00138574291505
+UniRef50_UPI000234E1DF	PREDICTED	5.35348652987e-05	2.87153219976e-05	-2.48195433011e-05
+UniRef50_N5MF41		0.00125023751016	0.00045699401107	-0.00079324349909
+UniRef50_Q6GIN8	Protein translocase subunit SecA 1	0.0263615777707	0.00668538907199	-0.0196761886987
+UniRef50_UPI00037BBD41	hypothetical protein	1.07820983598e-05	6.3752980063e-06	-4.4068003535e-06
+UniRef50_P56690	Isoleucine  tRNA ligase	3.6271550682e-06	7.46995573177e-06	3.84280066357e-06
+UniRef50_B7I7J4	Gp12	6.43697788028e-05	1.67973178235e-05	-4.75724609793e-05
+UniRef50_A4XRT9		0.000209714438257	0.000524235426359	0.000314520988102
+UniRef50_Q5KYA3	Glutamate 5 kinase	4.50948462023e-06	1.30324641959e-05	8.52297957567e-06
+UniRef50_D2ZQE3	Topoisomerase DNA binding C4 zinc finger domain protein	0.00312598734959	0.00105311394093	-0.00207287340866
+UniRef50_UPI00047AE2E4	hypothetical protein	1.55301952936e-05	2.41081799138e-05	8.5779846202e-06
+UniRef50_Q9RSF1		0.000532889630565	0.0426798148613	0.0421469252307
+UniRef50_R7E1V4		2.72131888346e-05	8.5021082059e-06	-1.87110806287e-05
+UniRef50_Q650K4	4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.000146570997778	0.00848172218468	0.0083351511869
+UniRef50_O23404	Pyruvate, phosphate dikinase 1, chloroplastic	5.3450631818e-06	1.51984399466e-05	9.8533767648e-06
+UniRef50_UPI000262D9D9	ABC transporter ATP binding protein, partial	0.00232173908504	0.00024231643939	-0.00207942264565
+UniRef50_A6LZA1	Transcriptional regulator like protein	0.000177262648794	0.00163319366473	0.00145593101594
+UniRef50_C6AUH7	Acriflavin resistance protein	0.00606721395648	0.0012301847637	-0.00483702919278
+UniRef50_S9R213	TRAP type mannitol chloroaromatic compound transport system, large permease component	4.27747540973e-05	0.000105814169692	6.30394155947e-05
+UniRef50_A8IC01	Aminotransferase	0.000940435703163	0.000151186026547	-0.000789249676616
+UniRef50_R7II06	Oligopeptide transport ATP binding protein OppD	0.000131375634168	0.00305765515478	0.00292627952061
+UniRef50_C5N1T5		0.00998338770953	0.00598672507348	-0.00399666263605
+UniRef50_C5N1T1		0.00930784972031	0.00121973853774	-0.00808811118257
+UniRef50_Q6A6S6	ABC transporter associated permease	0.000182825274275	0.00744661276013	0.00726378748586
+UniRef50_A0A023S256	LysR family transcriptional regulator	0.00025844995223	0.0121824555466	0.0119240055944
+UniRef50_Q6FFA8	Uroporphyrinogen III synthase  (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing])	0.000223805922247	0.00710997283463	0.00688616691238
+UniRef50_Q9R9D5	Lipopolysaccharide core heptosyltransferase RfaQ	0.00323524453727	0.000331661323203	-0.00290358321407
+UniRef50_R0DKH2	Binding protein dependent transport systems inner membrane component 	1.86320994153e-05	4.99971063768e-05	3.13650069615e-05
+UniRef50_UPI00036FA71C	hypothetical protein	5.92837316449e-06	9.27582841116e-06	3.34745524667e-06
+UniRef50_UPI00037E9002	hypothetical protein	0.0423848837478	0.000608194912561	-0.0417766888352
+UniRef50_A0A023B3E8		1.70853790725e-06	4.41606052237e-07	-1.26693185501e-06
+UniRef50_I0C5P0	CobB CobQ like glutamine amidotransferase domain protein	0.0215385728682	0.00442743007176	-0.0171111427964
+UniRef50_A8L8V5	Cobyrinic acid ac diamide synthase	9.11023536428e-06	1.45874398602e-05	5.47720449592e-06
+UniRef50_P32712	Formate dependent nitrite reductase complex subunit NrfG	0.0036331233913	0.000298299702217	-0.00333482368908
+UniRef50_UPI0003B66B13	hypothetical protein	4.08610093254e-05	1.95525529941e-05	-2.13084563313e-05
+UniRef50_UPI0004672483	hypothetical protein	0.00042384777163	0.000632821511128	0.000208973739498
+UniRef50_Q5F629	NADH quinone oxidoreductase subunit N	7.86429143391e-05	0.00106878018414	0.000990137269801
+UniRef50_W4UKK8	DNA binding protein	0.000187383008162	0.00539007325924	0.00520269025108
+UniRef50_Q87LZ7	Phosphoglucosamine mutase	4.17461772813e-06	8.10450830413e-05	7.68704653132e-05
+UniRef50_Q8XMU3	Diaminopimelate decarboxylase	0.000207257297833	0.00150093142864	0.00129367413081
+UniRef50_Q58197		0.00446884734839	0.00103472934489	-0.0034341180035
+UniRef50_UPI00037BD840	hypothetical protein	7.96841393742e-05	2.96158090307e-05	-5.00683303435e-05
+UniRef50_Q1IS93	DNA directed RNA polymerase subunit alpha	0.0128356428086	0.00440918622334	-0.00842645658526
+UniRef50_UPI00026CC0A8	cell wall hydrolase	2.45775202057e-05	1.78947830185e-05	-6.6827371872e-06
+UniRef50_UPI000377CCD2	hypothetical protein	1.95951013886e-06	6.05348479528e-06	4.09397465642e-06
+UniRef50_UPI000380B7CD	hypothetical protein	7.46249120938e-06	3.56681407973e-05	2.82056495879e-05
+UniRef50_UPI0003450375	hypothetical protein	7.93213199202e-06	4.89403613806e-06	-3.03809585396e-06
+UniRef50_B9KW49	Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00308357767643	0.000243059016624	-0.00284051865981
+UniRef50_Q1G991	Orotidine 5 phosphate decarboxylase	1.647912984e-05	1.85393006001e-05	2.0601707601e-06
+UniRef50_A0LDR9	NADH quinone oxidoreductase subunit I	3.81039098334e-05	1.57425800357e-05	-2.23613297977e-05
+UniRef50_F1BCI2		0.000281032373911	0.000409091265907	0.000128058891996
+UniRef50_Q9RXP2		0.00017184491147	0.0640882879768	0.0639164430653
+UniRef50_Q9RXP3		7.43570562389e-05	0.00589429468746	0.00581993763122
+UniRef50_M5JML7	Inner membrane translocator	6.21868805603e-05	0.000450152708175	0.000387965827615
+UniRef50_W9V4Y7		4.37646018133e-05	3.87564821193e-05	-5.008119694e-06
+UniRef50_Y9M1E8	Nitrate reductase, alpha subunit	0.013263697848	0.00231696803401	-0.010946729814
+UniRef50_A3K427	Possible phenol degradation enzyme	0.00615001607609	0.00139959996445	-0.00475041611164
+UniRef50_UPI00017453E0	probable helicase	5.51662841208e-06	0.000627575390458	0.000622058762046
+UniRef50_UPI00046FF946	hypothetical protein	0.000148753252773	8.41800360771e-05	-6.45732166959e-05
+UniRef50_B2JWI7	Major facilitator superfamily MFS_1	9.4766357036e-05	0.00489354478327	0.00479877842623
+UniRef50_E3NTU6		0.000438069876142	0.000420800787856	-1.7269088286e-05
+UniRef50_UPI00046C1753	PREDICTED	1.4031919668e-05	6.07647541518e-05	4.67328344838e-05
+UniRef50_G2AN26	4 alpha L fucosyltransferase family protein	0.000833797486433	0.000318114942752	-0.000515682543681
+UniRef50_P24169	Ornithine decarboxylase, inducible	0.00417644607316	0.000819058828315	-0.00335738724485
+UniRef50_G4KST8	Aminopeptidase	0.000261064235557	0.000147045662343	-0.000114018573214
+UniRef50_Q21VQ3	Transposase, IS4 family	7.88169233005e-05	1.65997815307e-05	-6.22171417698e-05
+UniRef50_X4YVT9	Nitronate monooxygenase family protein	0.00743873686032	0.00801951731881	0.00058078045849
+UniRef50_A5F974	Pantothenate synthetase	0.00268498612858	0.00116905671335	-0.00151592941523
+UniRef50_UPI0003C1ACBA	PREDICTED	1.42532056124e-05	1.9025709132e-05	4.7725035196e-06
+UniRef50_B7UFR8	Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD	0.00347182694892	0.000852848478275	-0.00261897847065
+UniRef50_UPI0002555659	inner membrane translocator	1.7451607157e-05	2.09116261108e-05	3.4600189538e-06
+UniRef50_P76017		0.00246487907319	0.000315089770205	-0.00214978930298
+UniRef50_UPI000380A70F	hypothetical protein	0.000171168184271	5.88902687112e-05	-0.00011227791556
+UniRef50_UPI00035FC337	general secretion pathway protein I, partial	0.00067380566763	9.17955376606e-05	-0.000582010129969
+UniRef50_P0DD78	DNA repair protein RadA homolog	9.85603103999e-05	0.00308994113823	0.00299138082783
+UniRef50_P9WPR0		7.9806762976e-05	0.00738719073985	0.00730738397687
+UniRef50_A7WYY2	Ribulokinase	0.0220242009424	0.00394761243042	-0.018076588512
+UniRef50_D3ZPT0	Protein RGD1566084	1.98648664883e-05	1.51384834852e-05	-4.7263830031e-06
+UniRef50_S1S766		0.000115374790714	2.83473428829e-05	-8.70274478311e-05
+UniRef50_Q5HFZ9	Glucose specific phosphotransferase enzyme IIA component	0.0237000252558	0.000741680068775	-0.022958345187
+UniRef50_G4L4Q8	Cation transporting ATPase	0.00947563118184	0.00373889441871	-0.00573673676313
+UniRef50_D5V8P7	23S ribosomal RNA G745 methyltransferase	0.000297092631875	0.00807238626402	0.00777529363214
+UniRef50_F3U2V4	Heat shock protein Hsp20	0.0100007569525	0.00894115872954	-0.00105959822296
+UniRef50_I7EN44	Acetylornithine deacetylase ArgE	0.0014200836406	0.000525503072435	-0.000894580568165
+UniRef50_Q0A8Z1	Ribonuclease 3	2.30263064621e-05	5.41485144986e-05	3.11222080365e-05
+UniRef50_O59469	3 hydroxy 3 methylglutaryl coenzyme A reductase	0.0029299139847	0.000967870203856	-0.00196204378084
+UniRef50_B1Y4X6	Mg2 transporter protein CorA family protein	0.000839843190883	0.000470811396981	-0.000369031793902
+UniRef50_J8V3X8		0.000162737238304	0.000920726248106	0.000757989009802
+UniRef50_F2QCR4	ABC transporter, ATP binding permease protein	0.00414869679308	0.0039511032403	-0.00019759355278
+UniRef50_UPI0003799B60	hypothetical protein	4.95041079867e-06	1.1217148564e-05	6.26673776533e-06
+UniRef50_D7T3T0		5.91356721652e-06	6.9181370599e-06	1.00456984338e-06
+UniRef50_UPI00037A9531	hypothetical protein, partial	5.48281957028e-06	7.89531889862e-06	2.41249932834e-06
+UniRef50_Q5VJ09		3.95221564212e-05	8.85744192428e-06	-3.06647144969e-05
+UniRef50_A4WGI4	Transcriptional regulator, MarR family	0.00134850994534	0.000664423667769	-0.000684086277571
+UniRef50_R9SJH6	Energy converting hydrogenase A subunit J EhaJ	0.00214704736384	0.000211443941661	-0.00193560342218
+UniRef50_UPI0001BF5D71	hypothetical protein SMAC_11478, partial	0.00100550959349	0.000123354759653	-0.000882154833837
+UniRef50_G7UA16	UDP glucose 4 epimerase	0.000136935667056	0.00461290382191	0.00447596815485
+UniRef50_UPI00046386D9	aldehyde activating protein	0.000259727270574	8.96305328935e-05	-0.000170096737681
+UniRef50_A4ACP7	Arabinose efflux permease	6.87495341457e-05	1.64830945294e-05	-5.22664396163e-05
+UniRef50_T9BKP2		0.00196144680482	0.00113549836751	-0.00082594843731
+UniRef50_T1ZVL8	TetR AcrR family transcriptional regulator	0.00288938029336	0.00216098845638	-0.00072839183698
+UniRef50_B2I6G9	Beta hexosaminidase	4.71467724987e-06	1.14975335073e-05	6.78285625743e-06
+UniRef50_P19940	RNA polymerase sigma G factor	0.000146312398781	0.00182856844879	0.00168225605001
+UniRef50_M9RAR4		3.25873353263e-05	1.11332846147e-05	-2.14540507116e-05
+UniRef50_D7CI61	Two component system response regulator	0.00182774032426	0.00509338498578	0.00326564466152
+UniRef50_P39336		0.00233050519877	0.00045698479377	-0.001873520405
+UniRef50_UPI000373730F	hypothetical protein	1.68660482147e-05	7.17189443581e-06	-9.69415377889e-06
+UniRef50_M9VFS5		0.000136276530269	0.00479390722486	0.00465763069459
+UniRef50_UPI000479ED1E	50S ribosomal protein L4	1.49263388996e-05	4.48869899116e-05	2.9960651012e-05
+UniRef50_E6U991	Cys Met metabolism pyridoxal phosphate dependent protein	0.000217848032856	0.00162473756342	0.00140688953056
+UniRef50_E3QJF9	THO complex subunit 2	9.53890596936e-06	2.09871419826e-05	1.14482360132e-05
+UniRef50_Q2JDK2	Elongation factor 4	0.0275981586261	0.068332859228	0.0407347006019
+UniRef50_UPI000262AF83	anhydrase	2.64089175491e-05	8.42254449895e-06	-1.79863730502e-05
+UniRef50_P42403	Aryl phospho beta D glucosidase BglC	0.00121746087969	0.00680641567764	0.00558895479795
+UniRef50_B0JXE8	N acetyl gamma glutamyl phosphate reductase	1.17499261781e-05	2.5407562425e-05	1.36576362469e-05
+UniRef50_B9DV71	ABC transporter ATP binding protein	0.00444841646062	0.000952587404094	-0.00349582905653
+UniRef50_UPI000469FAB8	MULTISPECIES	2.77093944878e-05	2.87288784341e-05	1.0194839463e-06
+UniRef50_UPI00036048A6	hypothetical protein	9.49489645015e-05	5.99640612838e-05	-3.49849032177e-05
+UniRef50_R4Q5Z5	Phosphoribosylglycinamide formyltransferase	0.0102107997844	0.00575428048635	-0.00445651929805
+UniRef50_V5PK16	Response regulator receiver protein ExsF	2.43007156907e-05	4.97213616151e-05	2.54206459244e-05
+UniRef50_UPI000361FBB1	hypothetical protein	7.79901561225e-06	5.82155248329e-05	5.04165092206e-05
+UniRef50_UPI00047CDCB7	ABC transporter permease	3.78768270404e-05	9.13657493146e-06	-2.87402521089e-05
+UniRef50_UPI00041FB107	symporter	8.06112057043e-05	0.000210052302028	0.000129441096324
+UniRef50_G7LZ27	Transcriptional regulator, TetR family	0.00121454345351	0.00134412873477	0.00012958528126
+UniRef50_A5F649	Glutamate  tRNA ligase	0.00224585750647	0.000462977585948	-0.00178287992052
+UniRef50_B1MB87	Urease accessory protein UreG	0.0252455685787	0.0464607963299	0.0212152277512
+UniRef50_A5UN12	Predicted acyltransferase	0.000560904700247	0.000244063392719	-0.000316841307528
+UniRef50_Q6GFH6	Low molecular weight protein tyrosine phosphatase PtpA	0.0602798153093	0.000937329667736	-0.0593424856416
+UniRef50_P20580	Anthranilate synthase component 1	0.00107137371998	0.000478253038084	-0.000593120681896
+UniRef50_G3TAD7		0.000386599249733	3.60085752092e-05	-0.000350590674524
+UniRef50_K0DH79	Alpha beta hydrolase fold protein	0.000818432918586	0.000716026379468	-0.000102406539118
+UniRef50_B9EBX9	DNA damage repair protein homolog	0.0167956175137	0.00732120057833	-0.00947441693537
+UniRef50_U6IMY1	Growth factor receptor bound protein	1.15911126283e-05	7.07463750768e-06	-4.51647512062e-06
+UniRef50_D4KGU1	Transcriptional regulator, LacI family	0.00111127647533	0.00124935010227	0.00013807362694
+UniRef50_Q2YXL5	ATP dependent protease subunit HslV	0.032602442122	0.0130957267463	-0.0195067153757
+UniRef50_Q5LFB0		0.000146312398781	0.00403402987726	0.00388771747848
+UniRef50_UPI000248515B	hypothetical protein	5.26650162827e-06	2.52907117708e-05	2.00242101425e-05
+UniRef50_E8RRB9	Fe S metabolism associated SufE	0.000178665097311	2.63449781625e-05	-0.000152320119148
+UniRef50_Q54J34	Adenylosuccinate lyase	2.71477811088e-06	0.00362350523105	0.00362079045294
+UniRef50_Q6GC63	Exotoxin	0.0139026155469	0.00306395030568	-0.0108386652412
+UniRef50_Q8ZJR1	UPF0761 membrane protein YPO0028 y3801 YP_0029	0.00197095925607	0.000247472099328	-0.00172348715674
+UniRef50_UPI000372EDA6	hypothetical protein	5.05846124056e-06	4.56076928064e-05	4.05492315658e-05
+UniRef50_A5UN19	Formate dehydrogenase accessory protein FdhD, FdhD	0.00442383343158	0.000367614155849	-0.00405621927573
+UniRef50_Q89ZL8	Alpha N acetylglucosaminidase	3.65321426232e-06	0.00409620997556	0.0040925567613
+UniRef50_W8RNU6	PhbF	0.00037519764091	4.47892959973e-05	-0.000330408344913
+UniRef50_P57099	Glycerate kinase	0.00585627605924	0.0102439860954	0.00438771003616
+UniRef50_X2HW61	Iron ABC transporter substrate binding protein	0.000112347020496	0.0121133877849	0.0120010407644
+UniRef50_UPI00047EF55F	amidohydrolase	1.39886147811e-05	2.37297030521e-05	9.741088271e-06
+UniRef50_Q5HM69	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.0261802491718	0.013839224818	-0.0123410243538
+UniRef50_UPI0002886FB4	histidine ammonia lyase	0.000114158806351	2.1406582573e-05	-9.2752223778e-05
+UniRef50_B0V4X0	Type IV pilus biogenesis protein	0.000122028536353	0.00750919244064	0.00738716390429
+UniRef50_D3QJ04	DNA repair exonuclease family protein YhaO	0.0195842396823	0.00282669271731	-0.016757546965
+UniRef50_Q1GKI8	Peptidase M16 like protein	0.00419620753013	0.000749823240174	-0.00344638428996
+UniRef50_A6LXP5	NADH quinone oxidoreductase subunit N	0.000108369183398	0.00178184843867	0.00167347925527
+UniRef50_E0NA78		0.000299988912829	0.000510357041009	0.00021036812818
+UniRef50_E2XU95	Transcription factor jumonji	0.000443949146643	0.000346074588866	-9.7874557777e-05
+UniRef50_V9WFJ2		0.0463255626377	0.00443972613021	-0.0418858365075
+UniRef50_UPI0003958BDE	endonuclease	7.78154268047e-07	0.000327438093957	0.000326659939689
+UniRef50_Q5GWI0	Phenol hydroxylase	0.000147065317888	2.17133020999e-05	-0.000125352015788
+UniRef50_Q49YF5	OsmC like protein	0.00707660991824	0.00199538314321	-0.00508122677503
+UniRef50_A4T2T4	Peptide deformylase	9.64759829975e-06	5.32643944902e-05	4.36167961904e-05
+UniRef50_U5NRQ9		0.00109248292142	0.00448469382986	0.00339221090844
+UniRef50_G2JHQ9	Histone acetyltransferase HPA2	0.000231586496233	0.00183692709911	0.00160534060288
+UniRef50_UPI00036803C3	hypothetical protein	4.07414486826e-06	0.000190993644128	0.00018691949926
+UniRef50_Q3IV36		0.0163512920163	0.000575947224952	-0.0157753447913
+UniRef50_R9SMB0	Dihydropteroate synthase related protein	0.00275224760895	0.00219908147813	-0.00055316613082
+UniRef50_Q8R7B8	N acetyl gamma glutamyl phosphate reductase	5.98860314529e-06	2.91103422057e-05	2.31217390604e-05
+UniRef50_UPI0003721DDA	hypothetical protein	2.85847882784e-06	5.64687380804e-06	2.7883949802e-06
+UniRef50_P0AFD8	NADH quinone oxidoreductase subunit I	0.0153623825534	0.00662627301432	-0.00873610953908
+UniRef50_F8DZR5	Pyruvate	0.000191850396126	0.00862315452881	0.00843130413268
+UniRef50_K7RJP7	Molybdenum cofactor synthesis domain containing protein	0.00290972546522	0.0100150474729	0.00710532200768
+UniRef50_R9ZCH5	NADH dehydrogenase	2.30268795425e-05	0.000199059997274	0.000176033117732
+UniRef50_B1KCA5	Transcriptional regulator, LysR family	0.000610688476316	0.00583035794767	0.00521966947135
+UniRef50_UPI00039CA1F9	hypothetical protein	5.62031342102e-06	0.000105329796542	9.9709483121e-05
+UniRef50_C1CY21		0.000151393573381	0.00257986490857	0.00242847133519
+UniRef50_A1AZ65		0.000148899910315	3.28399845965e-05	-0.000116059925718
+UniRef50_H8FQH1		0.000466864224341	0.000131805538018	-0.000335058686323
+UniRef50_X2HD61	Phosphopantothenoylcysteine decarboxylase   Phosphopantothenoylcysteine synthetase	0.000240620241729	0.0045521835064	0.00431156326467
+UniRef50_UPI0003503787	PREDICTED	6.6815079696e-05	0.000255008737831	0.000188193658135
+UniRef50_L0A294		1.68250939369e-05	0.00061020541397	0.000593380320033
+UniRef50_M4YWX8	Acetyl transferase GNAT family	0.0101882247088	0.0113517936388	0.00116356893
+UniRef50_UPI0003B796E5	hydrolase	1.00451697405e-05	5.33177551417e-06	-4.71339422633e-06
+UniRef50_R5QRF5		5.0122610437e-06	2.91026892623e-05	2.40904282186e-05
+UniRef50_E1ZM28	Expressed protein	1.93707655196e-05	0.000766271832032	0.000746901066512
+UniRef50_F8KP37	Phospholipase A1	0.00015344958896	0.0032847708167	0.00313132122774
+UniRef50_E4CH69		0.00036296729697	0.00339511860912	0.00303215131215
+UniRef50_B2TQB7	LicD family protein	0.000974408304798	0.00139840642983	0.000423998125032
+UniRef50_F2A4B5		0.000107138880474	5.06931692096e-06	-0.000102069563553
+UniRef50_B9TM50		0.000190576807068	0.000899441741714	0.000708864934646
+UniRef50_T1IZI3		5.16367131933e-06	1.68537003267e-06	-3.47830128666e-06
+UniRef50_Q8Y489	Lipoyl [GcvH]	6.42906118825e-06	0.00104936613748	0.00104293707629
+UniRef50_UPI00047DCDB5	hypothetical protein	8.70414937975e-06	1.1451826951e-05	2.74767757125e-06
+UniRef50_UPI0003668AD0	hypothetical protein	8.018520941e-05	0.000116964075422	3.6778866012e-05
+UniRef50_R7KQ82	ABC type antimicrobial peptide transport system ATPase component	0.000835092905202	0.00185230689413	0.00101721398893
+UniRef50_UPI00035D87E2	hypothetical protein, partial	0.000110036544522	6.94733390921e-05	-4.05632054299e-05
+UniRef50_Q08WK0		6.63170275248e-06	2.41908881056e-06	-4.21261394192e-06
+UniRef50_C6VMG4	Bifunctional protein	0.00599672343014	0.00396685622436	-0.00202986720578
+UniRef50_UPI0003800150	hypothetical protein	2.88067384887e-06	1.47620535935e-05	1.18813797446e-05
+UniRef50_A5UJI5	Type I restriction modification system methylase, subunit S	0.00165950697979	0.000302372053093	-0.0013571349267
+UniRef50_UPI0003C11576	PREDICTED	0.000153373935604	9.96009123698e-05	-5.37730232342e-05
+UniRef50_UPI00037C0DCF	MULTISPECIES	6.18036895804e-05	9.63828935724e-05	3.4579203992e-05
+UniRef50_B5YFK5	Queuine tRNA ribosyltransferase	4.97834995228e-06	6.70574443087e-05	6.20790943564e-05
+UniRef50_Q5HKG6	Diacetyl reductase [ acetoin forming]	0.0118060912709	0.00326473860871	-0.00854135266219
+UniRef50_D4H9E3		0.000142447542961	0.00724002882446	0.0070975812815
+UniRef50_Q5HKY5		0.0126351677471	0.00154011986029	-0.0110950478868
+UniRef50_UPI00046A628C	PAS sensor protein	0.000237981553299	7.59611350085e-05	-0.00016202041829
+UniRef50_A5UP86		0.000270922958506	0.000801764810481	0.000530841851975
+UniRef50_B9KX55	AcrB AcrD AcrF family protein	0.00196494400835	0.000353186430201	-0.00161175757815
+UniRef50_Q8XS05	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	9.04790631602e-06	3.59592143921e-06	-5.45198487681e-06
+UniRef50_E8QNX4	Type II adenine specific DNA methyltransferase	0.000137267632307	0.00312030774909	0.00298304011678
+UniRef50_K7E6V3		4.5867758379e-05	2.6470728522e-05	-1.9397029857e-05
+UniRef50_X0UE20	Marine sediment metagenome DNA, contig	2.11539601747e-05	3.95847297191e-05	1.84307695444e-05
+UniRef50_Q1GLI8	Inner membrane protein	0.0223609477621	0.000553718822241	-0.0218072289399
+UniRef50_E5QR95		0.00243688858955	0.00172957573403	-0.00070731285552
+UniRef50_O32037	tRNA threonylcarbamoyladenosine dehydratase	0.00872754530524	0.00147079260956	-0.00725675269568
+UniRef50_UPI0002375EA2	ABC transporter like protein	3.09280551505e-05	6.32267070895e-06	-2.46053844415e-05
+UniRef50_Q9ZK41	Putative glucose galactose transporter	9.42929197787e-05	0.00546910420443	0.00537481128465
+UniRef50_U6MX87		3.95121475878e-05	3.02166697193e-05	-9.2954778685e-06
+UniRef50_UPI000478606A	phosphodiesterase	2.85727387897e-05	1.56260222767e-05	-1.2946716513e-05
+UniRef50_Q5HRH5	Hydrolase, haloacid dehalogenase like family	0.00806485397718	0.00364355297745	-0.00442130099973
+UniRef50_P19581	Capsule biosynthesis protein CapC	0.0260090826627	0.00526870309618	-0.0207403795665
+UniRef50_B3E8Z1	Glucose 1 phosphate adenylyltransferase	4.41758046959e-06	2.63465882349e-05	2.19290077653e-05
+UniRef50_H8H606		4.85408472581e-05	0.00343647983281	0.00338793898555
+UniRef50_Q5HKS4	IS1272 like transposase, degenerate	0.00560407353273	0.00327916601224	-0.00232490752049
+UniRef50_Q72PA7	Adenylosuccinate synthetase	4.8197237564e-06	9.02609937956e-06	4.20637562316e-06
+UniRef50_UPI0003B5996F	coproporphyrinogen III oxidase	4.32175726922e-05	1.27271392252e-05	-3.0490433467e-05
+UniRef50_A6U4R9	PTS system glucoside specific EIICBA component	0.0405297631219	0.00692904236015	-0.0336007207617
+UniRef50_Q2FEB2	HTH type transcriptional regulator SarZ	0.00853992392461	0.000798153257284	-0.00774177066733
+UniRef50_T2FXM3	Sulfatase	0.00179932205866	0.000401791435631	-0.00139753062303
+UniRef50_UPI000372A769	hypothetical protein	7.4136398718e-06	7.86772038307e-06	4.5408051127e-07
+UniRef50_F5ZKR4	Oxidoreductase	0.000181774954504	0.000922098481126	0.000740323526622
+UniRef50_N9B926		9.07418242453e-05	0.00614008279025	0.006049340966
+UniRef50_UPI00047A6086	AMP binding protein	6.76094308422e-05	0.000239991459267	0.000172382028425
+UniRef50_A7WXZ6	Putative N acetylmannosamine 6 phosphate 2 epimerase	0.0125288834037	0.00540050450354	-0.00712837890016
+UniRef50_UPI00046EFEDF	ABC transporter substrate binding protein	7.01895217862e-06	4.82083142133e-05	4.11893620347e-05
+UniRef50_C1N027	Predicted protein	0.000209495082077	0.000463177670129	0.000253682588052
+UniRef50_F0XWK7	Expressed protein 	3.05331708627e-05	0.000237157257432	0.000206624086569
+UniRef50_UPI000455FDEB	hypothetical protein CONPUDRAFT_131066	1.58456162517e-05	2.33181913963e-05	7.4725751446e-06
+UniRef50_L8MS48		1.72015231234e-05	1.26613840431e-05	-4.5401390803e-06
+UniRef50_A9GPH2	Serine hydroxymethyltransferase	7.55849061455e-05	7.94781646276e-05	3.8932584821e-06
+UniRef50_C3A4D2	Permease, probably tetracycline resistance protein	0.000712165429876	0.00215620013285	0.00144403470297
+UniRef50_U4QA39	Xanthine dehydrogenase, iron sulfur binding subunit	0.00997156568122	0.00272763895826	-0.00724392672296
+UniRef50_B1LL17	D galactonate dehydratase 2	0.00211680353613	0.000839149493093	-0.00127765404304
+UniRef50_Q6GIA3	3 oxoacyl [acyl carrier protein] synthase 2	0.0142773923639	0.00712598335296	-0.00715140901094
+UniRef50_Q9Z913	Putative GMP synthase [glutamine hydrolyzing]	1.34882106984e-05	2.18266354433e-05	8.3384247449e-06
+UniRef50_UPI00035C8380	hypothetical protein	0.00185071072853	0.000478850859645	-0.00137185986888
+UniRef50_A5UMB3		0.00139143036675	0.00133321449211	-5.821587464e-05
+UniRef50_UPI000370ED97	hypothetical protein, partial	2.32651918679e-05	3.69070203753e-05	1.36418285074e-05
+UniRef50_P27243	O antigen ligase	0.00263937895003	0.000972610698141	-0.00166676825189
+UniRef50_A0A014MKE4		0.000548811665997	0.0154443280694	0.0148955164034
+UniRef50_UPI000350731C	PREDICTED	2.3073715705e-05	3.61022867067e-05	1.30285710017e-05
+UniRef50_M4WZV5	Dicarboxylate transporter	0.000599184109289	0.000647861144854	4.8677035565e-05
+UniRef50_K1X7T9		1.22774148162e-05	7.92890767729e-06	-4.34850713891e-06
+UniRef50_A5UM90	Adhesin like protein	0.00379875505127	0.000323189022329	-0.00347556602894
+UniRef50_UPI00037FBFF6	hypothetical protein	7.9962931421e-06	0.00100297576993	0.000994979476788
+UniRef50_L7WZN3		0.00737517567007	0.0025899977473	-0.00478517792277
+UniRef50_B1N6N2	Putative hemolysin activator related protein	2.51414277974e-05	0.000255082714311	0.000229941286514
+UniRef50_Q2KWY0	Ribonuclease 3	6.91259732074e-06	5.15514829972e-05	4.46388856765e-05
+UniRef50_A5IT97	Diacylglycerol kinase	0.00421577180547	0.0017730616839	-0.00244271012157
+UniRef50_K6ZP91		3.22896389661e-05	1.44504775538e-05	-1.78391614123e-05
+UniRef50_UPI00037C95EF	hypothetical protein, partial	0.000268083552852	2.75735429243e-05	-0.000240510009928
+UniRef50_P77228	Putative inner membrane metabolite transport protein YdfJ	0.00305053395198	0.000909304605775	-0.0021412293462
+UniRef50_UPI00042356A9	exodeoxyribonuclease III	8.45882300374e-05	2.46361785765e-05	-5.99520514609e-05
+UniRef50_B5E2W4	Acetate kinase	0.00700227893116	0.00810106834429	0.00109878941313
+UniRef50_R4YDZ3	Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000436770336414	0.000137569893719	-0.000299200442695
+UniRef50_B9DND6	Pyrrolidone carboxylate peptidase	3.30425434305e-05	5.832169449e-05	2.52791510595e-05
+UniRef50_UPI0004754876	shikimate kinase	1.84592757073e-05	1.45019687619e-05	-3.9573069454e-06
+UniRef50_UPI000252B25E	PREDICTED	0.000215375695616	0.000234678585836	1.930289022e-05
+UniRef50_I3UA32	Transketolase	0.000121813938717	3.07901362632e-05	-9.10238024538e-05
+UniRef50_A0A024J8E7	Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit	3.36976957085e-05	6.54536719473e-05	3.17559762388e-05
+UniRef50_G4KZ65	ATP dependent zinc metalloprotease FtsH	0.000282389844379	0.00184294018492	0.00156055034054
+UniRef50_UPI00046FC736	hypothetical protein	1.33169101916e-05	9.24807512013e-06	-4.06883507147e-06
+UniRef50_Q7W2B7	Shikimate kinase	1.51015677332e-05	1.41973602414e-05	-9.042074918e-07
+UniRef50_R9SIK3	2 5 RNA ligase LigT	0.00299703261793	0.000660899396553	-0.00233613322138
+UniRef50_P33924		0.00390289729606	0.000481982532273	-0.00342091476379
+UniRef50_UPI00047E33F6	ABC transporter ATP binding protein	9.75603447948e-06	3.0628788109e-05	2.08727536295e-05
+UniRef50_UPI0004649A94	hypothetical protein	4.78784669426e-05	4.58787879958e-06	-4.3290588143e-05
+UniRef50_UPI000471C14A	tryptophan synthase subunit alpha, partial	9.70385336441e-06	1.94486019864e-05	9.74474862199e-06
+UniRef50_UPI000225DE65	nitrogen regulatory IIA	1.4768953368e-05	3.66114899909e-05	2.18425366229e-05
+UniRef50_UPI0002558CA8	membrane protein	1.65377251517e-05	3.94865898355e-05	2.29488646838e-05
+UniRef50_Q4K9S7	NADH quinone oxidoreductase subunit K	6.37780455637e-05	0.00524558314715	0.00518180510159
+UniRef50_A4XGW8		0.000342914982539	0.00026134221699	-8.1572765549e-05
+UniRef50_B4RKU4	Drug resistance translocase family protein	0.000126390398057	0.00283004940982	0.00270365901176
+UniRef50_G3GQA9		2.2672675387e-06	1.4187648155e-05	1.19203806163e-05
+UniRef50_Q9JPD1	Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	7.09666095732e-06	1.73053226474e-05	1.02086616901e-05
+UniRef50_Q9LV91	4 alpha glucanotransferase DPE1, chloroplastic amyloplastic	8.6937134172e-06	0.000490259193479	0.000481565480062
+UniRef50_UPI0002491571	tRNA delta isopentenylpyrophosphate transferase	2.56385431654e-05	9.62958256908e-06	-1.60089605963e-05
+UniRef50_Q6BSU5	Sulfate adenylyltransferase	6.64377924913e-05	4.05552810896e-05	-2.58825114017e-05
+UniRef50_I3TNE9		5.85087720182e-05	1.67487468487e-05	-4.17600251695e-05
+UniRef50_UPI00036C6220	MULTISPECIES	3.31066369954e-06	1.1749367326e-05	8.43870362646e-06
+UniRef50_UPI00046D83DE	hypothetical protein	1.92573511679e-05	2.59776496185e-06	-1.66595862061e-05
+UniRef50_UPI00036A4575	hypothetical protein	6.06509876934e-05	1.15977455752e-05	-4.90532421182e-05
+UniRef50_G2LQE7		6.88290388782e-06	2.8311956795e-05	2.14290529072e-05
+UniRef50_UPI0003619428	Cro Cl family transcriptional regulator	0.000170891160263	2.21229077935e-05	-0.00014876825247
+UniRef50_A7HCR8	tRNA dimethylallyltransferase	2.40210377898e-05	9.24970101577e-06	-1.4771336774e-05
+UniRef50_UPI00044020B0	PREDICTED	1.95561353559e-05	1.48932452284e-05	-4.6628901275e-06
+UniRef50_A6LRG0	ErfK YbiS YcfS YnhG family protein	0.000265765921374	0.00309480315259	0.00282903723122
+UniRef50_UPI0004724C7E	30S ribosomal protein S15, partial	0.000267370777035	0.000409628047311	0.000142257270276
+UniRef50_UPI0004545041	PREDICTED	1.66897971451e-05	8.74826914429e-06	-7.94152800081e-06
+UniRef50_UPI00047AA68A	protein phosphatase	9.28596304572e-06	1.32390658846e-05	3.95310283888e-06
+UniRef50_A5UX75	Dihydroorotate dehydrogenase 	8.97886785067e-06	1.58302236431e-05	6.85135579243e-06
+UniRef50_UPI000365F67B	hypothetical protein	4.35313762625e-05	1.24329168043e-05	-3.10984594582e-05
+UniRef50_V6U9N7	LacI family transcriptional regulator	5.64343859773e-06	1.26471651462e-05	7.00372654847e-06
+UniRef50_P76498		0.000931155044788	0.000746871350035	-0.000184283694753
+UniRef50_P76499		0.00353293480451	0.000720284646817	-0.00281265015769
+UniRef50_W8EV27		1.07989108761e-05	2.08548832562e-05	1.00559723801e-05
+UniRef50_Q5HGC3	Glutamine synthetase	0.0142097980388	0.0309080522931	0.0166982542543
+UniRef50_Q2FEH9	Phosphosugar binding transcriptional regulator, RpiR family	0.0272650312859	0.0111762501149	-0.016088781171
+UniRef50_P33361	Putative osmoprotectant uptake system permease protein YehY	0.00290695454741	0.000163459430921	-0.00274349511649
+UniRef50_E8LCX8	Lipoprotein	7.88247515973e-06	1.11570387623e-05	3.27456360257e-06
+UniRef50_A0A059FU98	Dehydrogenase	1.41400017054e-05	8.29958870596e-05	6.88558853542e-05
+UniRef50_Q82BB8	3 oxoacyl [acyl carrier protein] synthase 3 protein 1	1.51288475812e-05	2.31623581222e-05	8.033510541e-06
+UniRef50_UPI0003C18AE4	PREDICTED	4.4369607437e-06	9.48666853842e-06	5.04970779472e-06
+UniRef50_Q2FH00	Alanine dehydrogenase 1	0.00756553594373	0.000724035293526	-0.0068415006502
+UniRef50_A5UKT6	Ferredoxin, iron sulfur binding	0.00178225761195	0.00024781821415	-0.0015344393978
+UniRef50_A6M115	Metal dependent phosphohydrolase	0.00021049404583	0.00442526318907	0.00421476914324
+UniRef50_D8TH60		4.544817456e-06	1.14394249783e-05	6.8946075223e-06
+UniRef50_UPI000479FA8A	hypothetical protein	0.000107765987204	3.9621945613e-05	-6.8144041591e-05
+UniRef50_P0AET6	Protein HdeD	0.000198676836237	0.000348113994329	0.000149437158092
+UniRef50_Q1GSN3	DNA mismatch repair protein MutL	7.22230845972e-05	0.000230657339484	0.000158434254887
+UniRef50_UPI000378A614	hypothetical protein	2.00347906511e-07	1.1435229597e-06	9.43175053189e-07
+UniRef50_R5A3J3		0.000968393999545	0.000253128604458	-0.000715265395087
+UniRef50_U5MM11	Response regulator GtcR	0.000553650214931	0.00203291194923	0.0014792617343
+UniRef50_Q9RT94	Chloromuconate cycloisomerase, putative	0.000133387275209	0.00283701782407	0.00270363054886
+UniRef50_UPI00046B9072	PREDICTED	1.76117037477e-06	8.88867178989e-06	7.12750141512e-06
+UniRef50_UPI00036EA45A	hypothetical protein	0.000385778194956	0.000113987488734	-0.000271790706222
+UniRef50_UPI00046E002C	hypothetical protein	2.02372731164e-06	0.000414552208057	0.000412528480745
+UniRef50_UPI0003ABC022	PREDICTED	2.61479896871e-06	6.4089809969e-06	3.79418202819e-06
+UniRef50_B8H9Q5	Pyridoxal 5 phosphate dependent protein beta subunit	1.10386635635e-05	6.57305468802e-06	-4.46560887548e-06
+UniRef50_Q2FIE3	D alanine  poly ligase subunit 1	0.0198247832664	0.00794660540071	-0.0118781778657
+UniRef50_Q9RXK8		8.11797825447e-05	0.0331584097141	0.0330772299316
+UniRef50_O27113	2 oxoglutarate synthase subunit KorB	0.0034485042802	0.000207725701201	-0.003240778579
+UniRef50_I3USW1	Multi sensor signal transduction histidine kinase	0.000878779187298	0.000389056146569	-0.000489723040729
+UniRef50_B2VKE4	Cation acetate symporter ActP	0.0127578199634	0.0133974896044	0.000639669641
+UniRef50_A7HME6	Cytidylate kinase	1.06297795698e-05	1.18826781713e-05	1.2528986015e-06
+UniRef50_UPI0003B60C69	translation factor Sua5	3.03886109838e-05	8.61776802427e-05	5.57890692589e-05
+UniRef50_B0RVB2	Ribosomal RNA small subunit methyltransferase H	1.88894591176e-05	8.8755190985e-06	-1.00139400191e-05
+UniRef50_F7U1Y8	Ribonucleoside diphosphate reductase subunit alpha	8.63849769869e-05	0.0126447878802	0.0125584029032
+UniRef50_P19642	PTS system maltose  and glucose specific EIICB component	0.00348452658119	0.00166961774741	-0.00181490883378
+UniRef50_K7S7B0	Peptidase dimerization domain containing protein	0.000316725541448	0.00545668026469	0.00513995472324
+UniRef50_G0LRP3	Haloacid dehalogenase like hydrolase	0.016471640274	0.00856123556742	-0.00791040470658
+UniRef50_W0YRX8		0.00369081143881	0.00122264372525	-0.00246816771356
+UniRef50_UPI0003506C1B	PREDICTED	3.03414288326e-05	0.000111238744476	8.08973156434e-05
+UniRef50_A0A011R518	CRISPR associated endonuclease helicase Cas3	6.24966168059e-05	6.28857904726e-06	-5.62080377586e-05
+UniRef50_UPI000366C818	hypothetical protein	1.39762740695e-05	1.66702496839e-05	2.6939756144e-06
+UniRef50_P09143	Succinyl CoA ligase [ADP forming] subunit alpha	2.82939774891e-05	5.19471214745e-05	2.36531439854e-05
+UniRef50_Q24TX4	Guanylate kinase	1.03385757157e-05	1.28003960305e-05	2.4618203148e-06
+UniRef50_A3TWR1	Phenol hydroxylase, putative	0.000105973706805	3.05164321458e-05	-7.54572746592e-05
+UniRef50_UPI0003513255		2.93176517926e-05	0.000149664378147	0.000120346726354
+UniRef50_P26840	Probable macrolide acetyltransferase 	1.65438521456e-05	0.00103210362294	0.00101555977079
+UniRef50_P05823	Transposon Tn2501 resolvase	0.00108912845703	0.00100676149498	-8.236696205e-05
+UniRef50_F0YCT2	Expressed protein 	0.000146918110199	0.000230887322796	8.3969212597e-05
+UniRef50_F0GIC2	Putative exported alkaline phosphatase 	6.78439904738e-06	0.000153485379855	0.000146700980808
+UniRef50_D9UFT2		0.000240294930518	4.20372328648e-05	-0.000198257697653
+UniRef50_Q1AS32	N acetyl gamma glutamyl phosphate reductase	6.7926635784e-06	9.30933885413e-06	2.51667527573e-06
+UniRef50_UPI00046F7B75	hypothetical protein	8.49556580971e-05	6.64925818111e-05	-1.8463076286e-05
+UniRef50_A0A022NVZ1		0.00103148076066	0.000341443648143	-0.000690037112517
+UniRef50_R5W852		5.90257362713e-05	3.22493384344e-05	-2.67763978369e-05
+UniRef50_A3LL65	Aflatoxin B1 aldehyde reductase member 1	0.000397428711086	0.00122890830151	0.000831479590424
+UniRef50_UPI000258F562	PREDICTED	3.0344593645e-06	5.97989015065e-05	5.6764442142e-05
+UniRef50_M9UY12		2.95247270203e-05	7.32099277214e-05	4.36852007011e-05
+UniRef50_F0RLX6		0.00026583520342	0.0081147119939	0.00784887679048
+UniRef50_B1ZI45		2.09287667406e-05	0.000184853831095	0.000163925064354
+UniRef50_V1UZX9	Thiamine biosynthesis protein ThiC	1.07333557156e-05	3.40260234162e-05	2.32926677006e-05
+UniRef50_G6XLM0		8.9289854724e-05	5.63414591201e-05	-3.29483956039e-05
+UniRef50_I0C0X1	AmrA	0.0137990897548	0.00150732073288	-0.0122917690219
+UniRef50_Q2RMS9	Endoribonuclease YbeY	0.00167024032482	0.00265295787897	0.00098271755415
+UniRef50_P21822	Methyl accepting chemotaxis serine transducer	0.00418358039712	0.000487685969885	-0.00369589442724
+UniRef50_A3PPX9		0.00218610505484	0.00117681285142	-0.00100929220342
+UniRef50_W2F2K9		8.2334764183e-06	9.52877283924e-06	1.29529642094e-06
+UniRef50_D2ZRM1		0.00312684121942	0.000117111713888	-0.00300972950553
+UniRef50_A3M9B5		0.000180615305666	0.00610091303075	0.00592029772508
+UniRef50_D3AVG0	RNase P protein subunit, RNase MRP protein subunit	9.73415350036e-06	6.18609152283e-06	-3.54806197753e-06
+UniRef50_A3M9B3		0.000101687329291	0.00862773406449	0.0085260467352
+UniRef50_Q1GY83	Outer membrane autotransporter barrel	3.78876780148e-05	9.83510447954e-06	-2.80525735353e-05
+UniRef50_M5Y1W9		3.96247105123e-05	0.000310224891056	0.000270600180544
+UniRef50_U7DKX9	Glutathione S transferase	0.000888899502794	0.00495683034939	0.0040679308466
+UniRef50_Q1D0T1	UDP N acetylmuramate  L alanine ligase	1.63212475218e-05	4.91353669745e-06	-1.14077108244e-05
+UniRef50_G9G286	IS5 transposase	0.00205405338176	0.000424407240993	-0.00162964614077
+UniRef50_V6ET42		0.000344259763556	0.000492558914032	0.000148299150476
+UniRef50_R7PSW3		0.00284162898078	0.000202974864068	-0.00263865411671
+UniRef50_I6TY91	Phosphoglycerate mutase	0.00924846529452	0.00159563255196	-0.00765283274256
+UniRef50_Q3J3M8	Alpha 1,4 glucan	0.0105803303394	0.0029891816198	-0.0075911487196
+UniRef50_F4RCY2		3.33201057751e-06	0.000448078451278	0.0004447464407
+UniRef50_E2ZZ10	Peptide chain release factor 3	0.000943714972126	0.000678888977457	-0.000264825994669
+UniRef50_UPI00036CAA44	hypothetical protein	6.78214739253e-06	1.12233578694e-05	4.44121047687e-06
+UniRef50_D3QD86		0.00356563985316	0.000486785777803	-0.00307885407536
+UniRef50_D4J7S8	FAD FMN containing dehydrogenases	0.000905017179151	0.00326654113725	0.0023615239581
+UniRef50_B0D259	Predicted protein 	0.000275120487342	0.000112004748003	-0.000163115739339
+UniRef50_M9VAJ1		0.000227401198102	0.00556040137569	0.00533300017759
+UniRef50_Q6G9H0	Conserved virulence factor B	0.0208976058795	0.00395898866511	-0.0169386172144
+UniRef50_K9Z9U6	Plasmid maintenance system killer	0.000416344840642	0.00149336463372	0.00107701979308
+UniRef50_M5A5P1	Geranyltranstransferase	0.000357120404745	0.00359702477028	0.00323990436553
+UniRef50_Q5WAG0	Ribonuclease P protein component	0.00263897056914	0.000513594269898	-0.00212537629924
+UniRef50_UPI00021A4D09	PREDICTED	1.75518316009e-06	4.3719775937e-07	-1.31798540072e-06
+UniRef50_C3I9I9		0.000175303090798	0.00275645982594	0.00258115673514
+UniRef50_I2QLC8		4.09622871137e-05	5.11715971912e-05	1.02093100775e-05
+UniRef50_UPI0003C1A367	PREDICTED	7.08418270876e-06	6.15747714143e-06	-9.2670556733e-07
+UniRef50_UPI0001E2AEC5	hypothetical protein, partial	1.37657663957e-05	0.000140475453415	0.000126709687019
+UniRef50_Q3B4Y6	Imidazoleglycerol phosphate dehydratase	0.000181219588941	3.07671247899e-05	-0.000150452464151
+UniRef50_V9WJV3	2 polyprenyl 6 methoxyphenol hydroxylase	0.0014458717797	0.000183236838799	-0.0012626349409
+UniRef50_H5SYI3		1.49917534994e-05	2.38810135155e-05	8.8892600161e-06
+UniRef50_UPI00035C6608	hypothetical protein	4.88519287279e-06	5.74876753327e-06	8.6357466048e-07
+UniRef50_J9YRR4		0.000314454583716	0.000202271715884	-0.000112182867832
+UniRef50_U6EZ18	Rubrerythrin	0.00681176625195	0.00043007287164	-0.00638169338031
+UniRef50_UPI0004670A8C	hypothetical protein	1.11817872931e-05	6.12794977072e-06	-5.05383752238e-06
+UniRef50_P23382	Immune inhibitor A	2.35666150226e-05	0.000545681492822	0.000522114877799
+UniRef50_Q897Q2	NH3 dependent NAD+ synthetase	7.28737430216e-05	0.00137088377339	0.00129801003037
+UniRef50_F6G8K0	Lipoprotein	2.70807099381e-05	8.00106308709e-06	-1.9079646851e-05
+UniRef50_A4WT68	NADH quinone oxidoreductase subunit	0.000706824376332	0.00113772993221	0.000430905555878
+UniRef50_Q9RU53		0.00014842175184	0.0123773187149	0.0122288969631
+UniRef50_D2ZUU5		2.62699209946e-05	0.000656259344878	0.000629989423883
+UniRef50_UPI0003B370CA	taurine ABC transporter substrate binding protein	2.72756881027e-05	5.65361333867e-05	2.9260445284e-05
+UniRef50_Q9RU59		0.000103610060989	0.00808585709169	0.0079822470307
+UniRef50_P25888	ATP dependent RNA helicase RhlE	0.00111619192147	0.000630647411922	-0.000485544509548
+UniRef50_S6ETI6		2.02243322926e-05	3.26281289402e-05	1.24037966476e-05
+UniRef50_F9Y8Y0	Oxidoreductase, aldo keto reductase family protein	0.000149203948168	0.00438106733407	0.0042318633859
+UniRef50_F0XZ87		1.65566406425e-05	8.19945478244e-06	-8.35718586006e-06
+UniRef50_G8VGA8	Protease	0.000163649995166	0.00354839161829	0.00338474162312
+UniRef50_S1SW71		0.000142626947925	0.000137256393928	-5.370553997e-06
+UniRef50_A8LI88	Rhomboid family protein	0.00276595968193	0.000758258887237	-0.00200770079469
+UniRef50_Q1MFZ6	Pseudouridine 5 phosphate glycosidase 1	0.000120859975083	0.00926146026174	0.00914060028666
+UniRef50_UPI00047858B2	hypothetical protein	9.64586650427e-05	8.64005586956e-05	-1.00581063471e-05
+UniRef50_UPI0003B760AC	citrate synthase, partial	1.76923480839e-05	9.83189193583e-06	-7.86045614807e-06
+UniRef50_P56902	3 oxoacyl [acyl carrier protein] synthase 2	0.00283841465137	0.00037366579436	-0.00246474885701
+UniRef50_Q5HQM9	DltB protein	0.0193753840766	0.00905398509003	-0.0103213989866
+UniRef50_Q57RM6	Dipeptide permease D	0.00476377060849	0.00111918718808	-0.00364458342041
+UniRef50_P26612	Cytoplasmic alpha amylase	0.00303487843724	0.000946361467673	-0.00208851696957
+UniRef50_UPI0002625B7F	glutaredoxin	0.000151639177376	0.000202333961764	5.0694784388e-05
+UniRef50_P10423	Alkaline phosphatase isozyme conversion protein	0.00584935992427	0.00390921693153	-0.00194014299274
+UniRef50_U3KIJ5		0.000100306285793	1.23362746369e-05	-8.79700111561e-05
+UniRef50_G8UQE5	FAD dependent oxidoreductase	3.49797191879e-06	7.13931193699e-06	3.6413400182e-06
+UniRef50_W1WTC0		0.00115184492656	0.00157531237624	0.00042346744968
+UniRef50_Q9I3D2	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.000210546186166	0.000640976225501	0.000430430039335
+UniRef50_W4STC6		0.000245551154116	0.000168645251753	-7.6905902363e-05
+UniRef50_F0YPY3	Expressed protein 	0.000506178427924	0.00033384129576	-0.000172337132164
+UniRef50_W4MCA9		0.000230194937626	0.000100274026064	-0.000129920911562
+UniRef50_UPI000225AF78	chemotaxis protein CheY	6.55886830048e-05	5.99686926589e-05	-5.6199903459e-06
+UniRef50_UPI000367F02C	hypothetical protein	4.65259054762e-06	6.65222150704e-06	1.99963095942e-06
+UniRef50_C6W4P9	Aldehyde Dehydrogenase	0.0040503937086	0.00088213402259	-0.00316825968601
+UniRef50_R9BZ13	ABC transporter periplasmic protein	1.17805336745e-05	1.97220940783e-05	7.9415604038e-06
+UniRef50_UPI00037C0FB7	hypothetical protein, partial	1.52338356982e-05	2.65965170129e-05	1.13626813147e-05
+UniRef50_B5YEP5	Glutamate  tRNA ligase	4.40635389283e-06	6.27205104542e-06	1.86569715259e-06
+UniRef50_Q9KYS1	1 deoxy D xylulose 5 phosphate reductoisomerase	0.000578357361836	0.00410091389546	0.00352255653362
+UniRef50_A8AXV1	Transporter	0.00497484296298	0.00269751357433	-0.00227732938865
+UniRef50_L5N6N7	Transducer protein Htr38 	1.49849224224e-05	0.000218371924905	0.000203387002483
+UniRef50_Q49WX1	Cell division protein SepF	0.0160646866225	0.00554511218203	-0.0105195744405
+UniRef50_UPI0004769219	glycerophosphodiester phosphodiesterase	9.39608466264e-06	0.00159814949027	0.00158875340561
+UniRef50_UPI0002F2BD70	hypothetical protein	6.35060328633e-05	0.00011850954975	5.50035168867e-05
+UniRef50_Q2YUG1		4.86188445306e-05	2.21961210099e-05	-2.64227235207e-05
+UniRef50_I6SW45	Enoyl ACP reductase	0.0071489070075	0.00158560160088	-0.00556330540662
+UniRef50_H8LF45	Xanthine uracil vitamin C permease	0.00574149914444	0.0057639337417	2.243459726e-05
+UniRef50_UPI0003B35348	amino acid ABC transporter permease	6.49304400225e-05	1.51459404032e-05	-4.97844996193e-05
+UniRef50_UPI0002487593	citrate lyase, partial	0.000146180603765	2.36873484171e-05	-0.000122493255348
+UniRef50_UPI0004418637	hypothetical protein PUNSTDRAFT_120887	4.28253670298e-06	7.50487179661e-05	7.07661812631e-05
+UniRef50_D4HBG9	Zinc binding alcohol dehydrogenase family protein	0.000112347020496	0.00362778240351	0.00351543538301
+UniRef50_UPI000477DEB8	hypothetical protein	6.00198442829e-05	5.10850563969e-05	-8.934787886e-06
+UniRef50_Q89BK7	Phosphoenolpyruvate carboxykinase [ATP]	0.0110368987713	0.00215068283114	-0.00888621594016
+UniRef50_B5YHP2	Non canonical purine NTP pyrophosphatase	7.7502729793e-06	4.16827437049e-05	3.39324707256e-05
+UniRef50_W1DH05	Shikimate transporter	0.00191943054766	0.000486118033249	-0.00143331251441
+UniRef50_Q57242	ABC transporter ATP binding protein uup 1	0.00209485243691	0.00022039632969	-0.00187445610722
+UniRef50_Q1QVP8		2.05437352787e-05	0.000186996043467	0.000166452308188
+UniRef50_C3JXG2		0.000367029645114	9.32854758332e-05	-0.000273744169281
+UniRef50_Q28S78	YjeF related protein like protein	1.94738188209e-05	1.96375041106e-05	1.636852897e-07
+UniRef50_A0A011QSB3	Multiple resistance and pH homeostasis protein B	7.76284445182e-06	2.17945365846e-05	1.40316921328e-05
+UniRef50_M2L7K7	Putative type I restriction modification system, specificity determinant	0.00056693040472	0.000929334277671	0.000362403872951
+UniRef50_Q5HLR4	Formimidoylglutamase	0.0148528999508	0.00174109860626	-0.0131118013445
+UniRef50_P45793	Type IV pilus assembly protein TapC	0.000277393359766	0.00566652306322	0.00538912970345
+UniRef50_H9K906		4.31069336779e-05	4.45779258594e-05	1.4709921815e-06
+UniRef50_P00632	3 oxoadipate enol lactonase 2	0.000340077467434	0.0151477871992	0.0148077097318
+UniRef50_Q0W662	Pyruvate carboxylase, subunit B	0.00369344684918	0.00108716449443	-0.00260628235475
+UniRef50_D0D597		9.51258804145e-05	0.00013426422327	3.91383428555e-05
+UniRef50_Q0JR18	Os01g0126200 protein 	6.51045149722e-06	6.98515090606e-05	6.33410575634e-05
+UniRef50_Q87CM2	Ketol acid reductoisomerase	2.04759517127e-05	3.84332302317e-05	1.7957278519e-05
+UniRef50_W5X9Y1	50S ribosomal protein L21	0.000357865914587	0.000525751207925	0.000167885293338
+UniRef50_UPI000383BB6B	PREDICTED	4.24659264566e-06	0.000109931348706	0.00010568475606
+UniRef50_Q9JZG4	DNA translocase FtsK 2	0.000157592301055	0.00285431975419	0.00269672745313
+UniRef50_I3Y8S8	Alkyl sulfatase like hydrolase	0.000462216033901	0.000290441846676	-0.000171774187225
+UniRef50_D3E4K2	MFS transporter	0.00242142277609	0.000281052812108	-0.00214036996398
+UniRef50_B2TIE4	Putative ATP	0.000480976230066	0.00141885111969	0.000937874889624
+UniRef50_A3NQD4	Multifunctional CCA protein	0.00557373180286	0.0150195145802	0.00944578277734
+UniRef50_C7LD35		0.000223597114788	7.5308575835e-05	-0.000148288538953
+UniRef50_E7SW38		0.000255385853633	3.92555272236e-05	-0.000216130326409
+UniRef50_A0A023XLY7		0.000196664983143	4.82817041415e-05	-0.000148383279001
+UniRef50_E7GLY7		6.06707874525e-06	7.95678243208e-06	1.88970368683e-06
+UniRef50_D3B9J3	Electron transfer flavoprotein ubiquinone oxidoreductase	1.16378622033e-05	3.07168523126e-05	1.90789901093e-05
+UniRef50_I2GQ39	UvrABC system protein A Short=UvrA protein	5.71015212688e-06	0.000188076002093	0.000182365849966
+UniRef50_UPI00047D4973	hypothetical protein	4.04682651678e-06	6.6167702185e-05	6.21208756682e-05
+UniRef50_UPI00046D0079	hypothetical protein	1.8215671519e-05	0.000211146574471	0.000192930902952
+UniRef50_H7CVL3	Beta lactamase	0.000632231981035	0.000565151631228	-6.7080349807e-05
+UniRef50_Q48838	Probable L serine dehydratase, alpha chain 	2.07811754869e-05	1.4119558831e-05	-6.6616166559e-06
+UniRef50_L0FK70		5.05580598562e-05	6.52156998636e-05	1.46576400074e-05
+UniRef50_Q24UB9	NADH quinone oxidoreductase subunit H	0.000158164520469	0.00317611604452	0.00301795152405
+UniRef50_A3SBX3		4.47365814602e-06	2.3998701605e-06	-2.07378798552e-06
+UniRef50_UPI000255C58A	amino acid permease associated protein, partial	1.58186036073e-05	8.03473744677e-05	6.45287708604e-05
+UniRef50_Q38XW7	Phosphoribosylformylglycinamidine synthase 2	1.51032290944e-05	3.41735658098e-06	-1.16858725134e-05
+UniRef50_E8WDB2	Prevent host death family protein	8.13551367075e-05	8.86099895376e-05	7.2548528301e-06
+UniRef50_UPI0003B627AC	NAD dependent epimerase	1.00581306653e-05	2.43261656893e-05	1.4268035024e-05
+UniRef50_UPI00046A94A2	MFS transporter permease	3.26918874016e-06	0.000164364515663	0.000161095326923
+UniRef50_UPI0003FD0D46	peptide ABC transporter permease	6.16355774297e-06	6.01695993539e-05	5.40060416109e-05
+UniRef50_A3JZB9		0.000983654153861	0.000148302226566	-0.000835351927295
+UniRef50_P51601	GTP cyclohydrolase 1	3.2640448862e-05	1.30504462899e-05	-1.95900025721e-05
+UniRef50_A0A037YFV8	Transposase	0.00275561179728	0.00120435106898	-0.0015512607283
+UniRef50_B9KT97	ABC transporter related	0.0077655580059	0.000648041933358	-0.00711751607254
+UniRef50_UPI0002DCE8E8	hypothetical protein	4.68985942221e-06	1.06959485762e-05	6.00608915399e-06
+UniRef50_B9KQ64		0.00168577660971	0.000609880727552	-0.00107589588216
+UniRef50_B2V2R9		0.000299592054644	0.000919741390482	0.000620149335838
+UniRef50_A6WC54	Triosephosphate isomerase	6.50666978973e-06	0.00659893916741	0.00659243249762
+UniRef50_UPI0003615D0A	30S ribosomal protein S15, partial	0.000375016582941	7.39062837505e-05	-0.000301110299191
+UniRef50_P0C0C8	S ribosylhomocysteine lyase	0.0026854542958	0.00932380943447	0.00663835513867
+UniRef50_UPI00037B7B2D	hypothetical protein	6.08925832862e-05	1.03799398977e-05	-5.05126433885e-05
+UniRef50_B9AFV8	Transcriptional regulator, MarR family	0.00128360092158	0.000705178068698	-0.000578422852882
+UniRef50_UPI000375A8C0	hypothetical protein	7.60377006306e-06	2.29213778303e-05	1.53176077672e-05
+UniRef50_Q3JHR7		3.5088691428e-06	5.61300070671e-05	5.26211379243e-05
+UniRef50_Q9CI68	DegV domain containing protein YejH	0.00406596168558	0.00722095005853	0.00315498837295
+UniRef50_Q3JHR1		6.26504097732e-05	7.73080380057e-05	1.46576282325e-05
+UniRef50_Q8EBR2	2 C methyl D erythritol 4 phosphate cytidylyltransferase	5.6229333059e-06	7.77056158277e-06	2.14762827687e-06
+UniRef50_D6B6K5	Deaminase	0.000257341602245	0.000353771381212	9.6429778967e-05
+UniRef50_Q8UDF7	Carbamoyl phosphate synthase small chain	0.00238562670839	0.00965060876847	0.00726498206008
+UniRef50_UPI00047BA94E	hypothetical protein	7.08238053779e-06	2.52217165451e-05	1.81393360073e-05
+UniRef50_B7GJX4	Predicted dithiol disulfide isomerase involved in polyketide biosynthesis	0.000177779900556	0.000564193826766	0.00038641392621
+UniRef50_W1CVX6	Potassium efflux system KefA protein   Small conductance mechanosensitive channel	0.00269667925213	0.000811633639819	-0.00188504561231
+UniRef50_O69762	Hydroxycinnamoyl CoA hydratase lyase	0.000423018810486	0.0101261400964	0.00970312128591
+UniRef50_UPI00047E8386	hypothetical protein	5.01224808839e-06	2.66863896531e-05	2.16741415647e-05
+UniRef50_Q6A5D0	Uronate isomerase	0.000115729023204	0.00466194750909	0.00454621848589
+UniRef50_A4KKZ2	Integral membrane protein	3.73569140138e-05	2.94512025292e-05	-7.9057114846e-06
+UniRef50_L8A4F6	ATP dependent DNA helicase RecG	5.62013879147e-05	0.00211363286974	0.00205743148183
+UniRef50_B5FHH0	Protein FixA	0.000848634949623	0.000500982907698	-0.000347652041925
+UniRef50_K7RV74		2.77022252248e-05	0.000132839462127	0.000105137236902
+UniRef50_Q7N253	Complete genome; segment 12 17	1.80785787962e-06	1.10319243023e-05	9.22406642268e-06
+UniRef50_F1WXM9		8.04793256855e-05	0.0019896929736	0.00190921364791
+UniRef50_B7UXK4		0.000416344840642	0.000410162090547	-6.182750095e-06
+UniRef50_T1Y6Z9	Transcription antiterminator, BglG family	0.0119335605342	0.00275654756203	-0.00917701297217
+UniRef50_A0A011NCB6	Endonuclease III	6.28370743373e-06	1.33601972724e-05	7.07648983867e-06
+UniRef50_P61653	2 dehydro 3 deoxyphosphooctonate aldolase	0.00348581006844	0.0146052026306	0.0111193925622
+UniRef50_UPI0003760644	hypothetical protein	0.000471702405281	0.000191841128628	-0.000279861276653
+UniRef50_F7WSN7	PE PGRS family protein	6.69981599401e-05	0.000172787419362	0.000105789259422
+UniRef50_V6ICR3	Peptidase	0.000504079082691	0.000300220762586	-0.000203858320105
+UniRef50_UPI0002ED547D	hypothetical protein	2.6163040914e-05	1.88445620658e-05	-7.3184788482e-06
+UniRef50_UPI00037F3F52	hypothetical protein	0.000405034301632	6.4274643633e-05	-0.000340759657999
+UniRef50_UPI000473CF45	magnesium transporter	0.000172991116152	2.37795079427e-05	-0.000149211608209
+UniRef50_W2ELZ6		4.64690927099e-05	6.02498720692e-05	1.37807793593e-05
+UniRef50_A1KAD0	GTPase Obg	0.00107324554186	0.00361806054868	0.00254481500682
+UniRef50_R9SJH3	MATE efflux family protein	0.00712111820969	0.000924117333518	-0.00619700087617
+UniRef50_V5SG04	NAD NADP transhydrogenase subunit alpha	2.04776273881e-05	1.6000457558e-05	-4.4771698301e-06
+UniRef50_UPI000289DD7B	protein export cytoplasm protein SecA ATPase RNA helicase	2.36371257514e-05	5.60627129897e-05	3.24255872383e-05
+UniRef50_A5IQ87	RNA polymerase, sigma 24 subunit, ECF subfamily	0.00631954881368	0.00178840449647	-0.00453114431721
+UniRef50_Q51368	Protein TonB	0.000184439408233	0.000548982512883	0.00036454310465
+UniRef50_UPI0002FEF856	hypothetical protein	1.22128516096e-05	1.10156253539e-05	-1.1972262557e-06
+UniRef50_U5NMV6		0.0032428446394	0.00215298537194	-0.00108985926746
+UniRef50_U5UNI0		0.0211711439897	0.00436810590223	-0.0168030380875
+UniRef50_Q4FBH4	Superfamily I DNA helicase	0.000133408830187	0.000154274456624	2.0865626437e-05
+UniRef50_UPI000371EB10	hypothetical protein	1.13742843895e-05	4.39721540659e-06	-6.97706898291e-06
+UniRef50_Q03U25	4 deoxy L threo 5 hexosulose uronate ketol isomerase	4.34639281418e-06	7.45230684356e-06	3.10591402938e-06
+UniRef50_L7MHU7	Putative glycine rich protein 	1.1455558112e-05	2.21939040262e-05	1.07383459142e-05
+UniRef50_UPI00047BE3BA	hypothetical protein	1.07937967412e-05	8.38168699571e-06	-2.41210974549e-06
+UniRef50_P45207	Stringent starvation protein A homolog	1.22137164791e-05	5.4876164855e-05	4.26624483759e-05
+UniRef50_T2E6P2	Outer membrane autotransporter barrel domain protein	0.000454809645883	0.000415994549764	-3.8815096119e-05
+UniRef50_Q87UP6	Polyphosphate kinase	0.00105330587512	0.0119892544016	0.0109359485265
+UniRef50_UPI0001B412E7	histidine transporter permease	8.99426628706e-05	0.000175833604537	8.58909416664e-05
+UniRef50_A3M5I7	AdeS	0.00148370731676	0.00603766790133	0.00455396058457
+UniRef50_A8GDW2	Isopentenyl diphosphate Delta isomerase	4.02743418312e-05	9.54498119029e-06	-3.07293606409e-05
+UniRef50_P76014	PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL	0.00143125628549	0.00181553184676	0.00038427556127
+UniRef50_R7PTX8	Hydrolase TatD family	0.00245137427705	0.000827443186981	-0.00162393109007
+UniRef50_UPI00047C0852	glycine cleavage system protein H	8.75776946726e-05	3.16549518795e-05	-5.59227427931e-05
+UniRef50_Q839B2	Hypoxanthine guanine phosphoribosyltransferase	3.12911457716e-05	0.000352784343301	0.000321493197529
+UniRef50_B2UYP0	WblI protein	0.000297444520913	0.00239951448613	0.00210206996522
+UniRef50_Q1PY54		2.64981722691e-05	2.22005871553e-05	-4.2975851138e-06
+UniRef50_P40727	Flagellar biosynthetic protein FlhB	0.00303280264224	0.00374753857016	0.00071473592792
+UniRef50_B9KW14	Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32	0.0031099238158	0.000547988466506	-0.00256193534929
+UniRef50_UPI00036FCE04	50S ribosomal protein L13	0.00016025339571	7.38949428271e-05	-8.63584528829e-05
+UniRef50_O29458	Diaminopimelate decarboxylase	5.13512760304e-06	0.000133052340701	0.000127917213098
+UniRef50_B1YMX6	Transposase, IS4	6.33869285446e-05	5.81391298683e-06	-5.75730155578e-05
+UniRef50_U3SU32		0.00329413616876	0.000673726323636	-0.00262040984512
+UniRef50_Q4ZX12	Exodeoxyribonuclease 7 large subunit	0.000173823172146	0.000171363658722	-2.459513424e-06
+UniRef50_UPI0002F5B1BD	hypothetical protein	1.6393428139e-05	0.000175602855711	0.000159209427572
+UniRef50_I3TX99	Sulfite reductase 	0.00828798106504	0.0059691824769	-0.00231879858814
+UniRef50_UPI0003EBBF6F	PREDICTED	3.16307625095e-06	1.50963772352e-05	1.19333009842e-05
+UniRef50_Q8CUD0		0.00271715603282	0.000487605167142	-0.00222955086568
+UniRef50_Q8CUD7		0.0337973615811	0.0095621073783	-0.0242352542028
+UniRef50_M0FQF4		0.000522032318356	9.62021548053e-05	-0.000425830163551
+UniRef50_Q1QVC8	UPF0042 nucleotide binding protein Csal_2229	0.000700876816112	0.0012380459907	0.000537169174588
+UniRef50_H6CMH0		0.000189003079664	0.00128094471297	0.00109194163331
+UniRef50_UPI00035CA530	hypothetical protein	8.33271950809e-06	1.22703095555e-05	3.93759004741e-06
+UniRef50_UPI0004777D24	phosphate starvation inducible E	2.62183551667e-05	2.83260904812e-05	2.1077353145e-06
+UniRef50_Q7VRW1	NADH quinone oxidoreductase subunit K	4.59366177349e-05	5.50764921917e-05	9.1398744568e-06
+UniRef50_G4LBC3		2.53890301285e-05	0.000231335216862	0.000205946186734
+UniRef50_F3U4G5		0.00211872700608	0.000122014787727	-0.00199671221835
+UniRef50_G7M1G9	Calcium transporting ATPase	0.000278428181941	0.000966798628852	0.000688370446911
+UniRef50_UPI00034DCD19	hypothetical protein	1.30549585875e-05	0.000232300114808	0.00021924515622
+UniRef50_M9VKR8		0.000147678170721	0.00145338287171	0.00130570470099
+UniRef50_H4WKP6	Conjugal transfer pilus assembly protein TraU	0.000450409544857	8.12128046143e-05	-0.000369196740243
+UniRef50_V8GU79	Transposase 	0.000351418873432	0.000399810952284	4.8392078852e-05
+UniRef50_UPI0004697DC4	hypothetical protein	1.7691636017e-05	0.000414934456923	0.000397242820906
+UniRef50_W0YRC1	5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase	0.000466319169037	0.000582433654521	0.000116114485484
+UniRef50_G7LZV6	Xenobiotic transporting ATPase	0.000312669926367	0.000358171905251	4.5501978884e-05
+UniRef50_Q9S7G6	Polyribonucleotide nucleotidyltransferase 2, mitochondrial	1.76896391652e-06	8.43792677239e-06	6.66896285587e-06
+UniRef50_UPI00039AB780	elongation factor P	1.98234833713e-05	3.38986798349e-05	1.40751964636e-05
+UniRef50_D3E3L9		0.000678672588022	0.000435356322155	-0.000243316265867
+UniRef50_M1MSP8	Lactose binding protein LacE	8.90297143505e-05	0.000790265526973	0.000701235812623
+UniRef50_W5X7C7	Dihydrolipoyl dehydrogenase	3.18576357751e-05	3.03595849903e-05	-1.4980507848e-06
+UniRef50_B2UX27	ATP phosphoribosyltransferase regulatory subunit	0.000369265408737	0.000343168439732	-2.6096969005e-05
+UniRef50_E4G4A0		8.87490624453e-05	0.00073257481342	0.000643825750975
+UniRef50_UPI0004628EFB	hypothetical protein	0.000843817974988	0.00048327235487	-0.000360545620118
+UniRef50_F5M013	Phage integrase family protein	0.0163883479143	0.000279039406483	-0.0161093085078
+UniRef50_Q8FP97	Proline  tRNA ligase	0.000155119067611	0.00519760659706	0.00504248752945
+UniRef50_B2TK67	Sterol regulatory element binding protein	0.00055678913232	0.00069033799591	0.00013354886359
+UniRef50_UPI00029B24E7	30S ribosomal protein S10	0.000121661376437	0.000967470368209	0.000845808991772
+UniRef50_Q02MJ3	Pyoverdine synthetase D	0.000264286330954	0.000391171544172	0.000126885213218
+UniRef50_A6LWJ6		0.000128251185346	0.000367867372334	0.000239616186988
+UniRef50_C1DKJ6	Type III pantothenate kinase	0.000724902498396	0.00124986842306	0.000524965924664
+UniRef50_Q0C348	Histidinol phosphate aminotransferase	2.01922765412e-05	2.57565274909e-05	5.5642509497e-06
+UniRef50_Q6F755		0.000252498989202	0.00784201618484	0.00758951719564
+UniRef50_UPI0003B54DE9	peptide chain release factor 3	2.10761379011e-05	9.10066435929e-05	6.99305056918e-05
+UniRef50_Q1J276	Acyl CoA dehydrogenase like protein	0.000672350459777	0.000204315377964	-0.000468035081813
+UniRef50_K5VLJ3		0.000286555936363	0.000137814154189	-0.000148741782174
+UniRef50_UPI000468B1D5	hypothetical protein	2.15993982242e-05	9.171725463e-06	-1.24276727612e-05
+UniRef50_UPI0003687009	hypothetical protein, partial	4.10014439316e-06	9.83316820012e-06	5.73302380696e-06
+UniRef50_R9VAP8	LysR family transcriptional regulator	0.000654260306819	0.00524283480283	0.00458857449601
+UniRef50_Q6GHY8	UPF0223 protein SAR1071	0.004844023293	0.0042067884795	-0.0006372348135
+UniRef50_D4I0J4	Protein CreA	2.30783372321e-05	1.59493724517e-05	-7.1289647804e-06
+UniRef50_Q6NAB4		1.23627546063e-05	3.80045506522e-05	2.56417960459e-05
+UniRef50_UPI0003664B75	hypothetical protein	0.000242451652096	1.43914308745e-05	-0.000228060221222
+UniRef50_I6TNU2		0.00135483613969	0.00207278156552	0.00071794542583
+UniRef50_A0A011NYR8		1.37240791457e-05	0.000364486060402	0.000350761981256
+UniRef50_A0A022NSH9		0.000277603564518	0.000134442192823	-0.000143161371695
+UniRef50_Q4FPU1	Imidazole glycerol phosphate synthase subunit HisH	0.000506182081834	1.05711113831e-05	-0.000495610970451
+UniRef50_A3M4F0	Transporter LysE family	0.000190649489319	0.00727538407615	0.00708473458683
+UniRef50_I0C381	1,4 dihydroxy 2 naphthoate polyprenyltransferase	0.0165060182837	0.00548337201447	-0.0110226462692
+UniRef50_UPI0003794EB4	hypothetical protein	0.000182562347908	2.90823985241e-05	-0.000153479949384
+UniRef50_Q8CQA3	Dihydrolipoyl dehydrogenase	0.0102468733009	0.00232993945533	-0.00791693384557
+UniRef50_UPI000363BDDF	hypothetical protein	7.54909502641e-06	6.42635912814e-05	5.6714496255e-05
+UniRef50_Q9WYD1	Transaldolase	0.000191665019551	0.00156688825397	0.00137522323442
+UniRef50_F0S5S6		3.81689562598e-06	0.00016771912419	0.000163902228564
+UniRef50_A9A450	Malate dehydrogenase	2.86800635299e-05	7.82078191315e-06	-2.08592816167e-05
+UniRef50_R0DXB9	Xanthine dehydrogenase, molybdenum binding subunit apoprotein 	0.000819836513727	3.92725078927e-05	-0.000780564005834
+UniRef50_Q3HKN1	Hemolysin type calcium binding protein	0.00592265129916	0.00115913371379	-0.00476351758537
+UniRef50_UPI00046A80FC	anthranilate synthase	6.87777030864e-06	1.40677714852e-05	7.19000117656e-06
+UniRef50_I6TXL9		0.00380837574833	0.00147658352597	-0.00233179222236
+UniRef50_UPI0003704CF4	hypothetical protein	1.56774465267e-05	0.000193727418557	0.00017804997203
+UniRef50_G3VGY4		0.000344884622118	3.87205276236e-05	-0.000306164094494
+UniRef50_Q9KNK2	33 kDa chaperonin	0.00218167187132	0.000808164301569	-0.00137350756975
+UniRef50_A0A023S0I7	Rod shape determining protein MreD	0.0012506844993	0.00123239839793	-1.828610137e-05
+UniRef50_Q9KVL7	Diaminopimelate decarboxylase	0.000489289122748	0.00743741344272	0.00694812431997
+UniRef50_B1LBM8	50S ribosomal protein L5	0.000727592398308	0.0482839205738	0.0475563281755
+UniRef50_UPI0003739253	hypothetical protein, partial	0.000316088626613	4.73148021591e-05	-0.000268773824454
+UniRef50_UPI0003EDF954	PREDICTED	2.86292100406e-05	2.77297029724e-05	-8.995070682e-07
+UniRef50_Q74LG2	CTP synthase	8.59428914546e-06	0.000167714476779	0.000159120187634
+UniRef50_Q6F9J2	Coenzyme PQQ synthesis protein B	0.000178777062219	0.00568493917273	0.00550616211051
+UniRef50_UPI0003679109	hypothetical protein	3.49580104331e-05	6.0754970392e-05	2.57969599589e-05
+UniRef50_P31049	Probable fatty acid methyltransferase	0.00104239874653	0.000698168724668	-0.000344230021862
+UniRef50_Q1IYR1	NH dependent NAD(+) synthetase	0.000170968813824	0.00563738763957	0.00546641882575
+UniRef50_P39671	Phosphoglucomutase	0.00551805352326	0.000275775041881	-0.00524227848138
+UniRef50_UPI00036E3AFC	hypothetical protein	4.49338876866e-06	0.000270740211807	0.000266246823038
+UniRef50_Q0IAT1	Two component response regulator	0.000503434517162	0.00606694230887	0.00556350779171
+UniRef50_W1WM64		0.00106453343623	0.000250064482336	-0.000814468953894
+UniRef50_G5LNV5	Respiratory nitrate reductase alpha chain 	4.90081520632e-05	1.71178924762e-05	-3.1890259587e-05
+UniRef50_M4YXM6		0.00396904435117	0.00415223072005	0.00018318636888
+UniRef50_Q2NQH3	Rhomboid protease GlpG	0.00478841872084	0.00124037835444	-0.0035480403664
+UniRef50_N0GIW3		1.14716156977e-05	1.78567583231e-05	6.3851426254e-06
+UniRef50_F2NB99	Nucleoside ABC transporter membrane protein	0.00147087608227	0.00330624730476	0.00183537122249
+UniRef50_UPI00046AD244	carbonic anhydrase	9.04369490869e-06	9.66183071032e-06	6.1813580163e-07
+UniRef50_UPI0004626526	hypothetical protein	5.84583158743e-06	4.62241011753e-05	4.03782695879e-05
+UniRef50_P27897	UTP  glucose 1 phosphate uridylyltransferase	0.000383970746052	0.00026117075777	-0.000122799988282
+UniRef50_P22256	4 aminobutyrate aminotransferase GabT	0.0122335533159	0.00539273839892	-0.00684081491698
+UniRef50_Q9RU94	NADH quinone oxidoreductase subunit H	9.52825487377e-06	0.0260376145002	0.0260280862453
+UniRef50_A6TI09	Probable phosphoglycerate mutase GpmB	0.00277235416766	0.000329024001791	-0.00244333016587
+UniRef50_A6F5Z7	NAD dependent 4 hydroxybutyrate dehydrogenase	0.00567942515837	0.000130722835427	-0.00554870232294
+UniRef50_E8SH67	Zn peptidase with DNA binding domain	0.0111030342812	0.00207493502593	-0.00902809925527
+UniRef50_UPI0003B5F4E2	N acetyl gamma glutamyl phosphate reductase	1.966641144e-05	2.27919884659e-05	3.1255770259e-06
+UniRef50_Q89WH6	Blr0711 protein	0.000112884760857	1.66103549201e-05	-9.62744059369e-05
+UniRef50_G9MRN8		0.000472227014612	9.87080454821e-06	-0.000462356210064
+UniRef50_I0C7B0	ATP dependent dethiobiotin synthetase BioD	0.0147915496597	0.00128502006866	-0.013506529591
+UniRef50_UPI000328AD5C		2.88292949224e-05	4.18144497047e-05	1.29851547823e-05
+UniRef50_UPI0003A730C5	pyruvate kinase	1.67044562134e-05	6.745549335e-06	-9.9589068784e-06
+UniRef50_UPI00044428D0	PREDICTED	5.30260981272e-06	4.45303386968e-05	3.92277288841e-05
+UniRef50_F9I1V8		0.00300182514456	0.000787002116894	-0.00221482302767
+UniRef50_UPI0003B495EE	exonuclease subunit SbcD	8.0532360051e-06	1.79453086473e-05	9.8920726422e-06
+UniRef50_Q5WHY0	Glucosamine 6 phosphate deaminase	6.28482314263e-06	0.00419083756032	0.00418455273718
+UniRef50_I3U5U5	Mobilization protein C	0.113317013222	0.0618804861852	-0.0514365270368
+UniRef50_UPI0003734C10	hypothetical protein	0.0011202885584	0.000180420100493	-0.000939868457907
+UniRef50_UPI00047099BD	hypothetical protein	7.58028491194e-06	3.43928733877e-05	2.68125884758e-05
+UniRef50_A4XUQ2		0.000641980769516	0.00112508861926	0.000483107849744
+UniRef50_P48812	Glyceraldehyde 3 phosphate dehydrogenase	9.55543030906e-06	8.1817438777e-06	-1.37368643136e-06
+UniRef50_K9NNF0	LysR family transcriptional regulator	0.000275537218136	0.000398179827223	0.000122642609087
+UniRef50_Q8X5L9	Endoglucanase	0.0044222616687	0.0006994108916	-0.0037228507771
+UniRef50_O54537	Glucose 6 phosphate 1 dehydrogenase	1.06819159075e-05	0.00436204469986	0.00435136278395
+UniRef50_Q2CB82		7.55593300012e-06	1.47404604022e-05	7.18452740208e-06
+UniRef50_H3NTE5		3.239869152e-05	2.62876213621e-05	-6.1110701579e-06
+UniRef50_Q8DWT2	Membrane protein, putative	0.000195790967962	7.13038322365e-05	-0.000124487135725
+UniRef50_Q6GFS7	RNA polymerase sigma factor SigS	0.0115843250797	0.0021644985149	-0.0094198265648
+UniRef50_X4ZMG7	Enoyl  reductase family protein	6.46704411723e-05	0.00015791583324	9.32453920677e-05
+UniRef50_Q3HKI6	TraI	0.0282669681769	0.00664516987275	-0.0216217983042
+UniRef50_A9FGM6	PhoH family protein	0.00679385006258	0.00406179090732	-0.00273205915526
+UniRef50_U5MSH8	Signal transduction and transcriptional control protein Stc	0.000628883106539	0.0014520799739	0.000823196867361
+UniRef50_P0CF89	Transposase InsI for insertion sequence element IS30C	0.00484720797524	0.00184781077051	-0.00299939720473
+UniRef50_Q9RSL3	50S ribosomal protein L6	0.000220752040266	0.0500645173627	0.0498437653224
+UniRef50_U3AK46	Hypotheical conserved protein	0.000597651633194	0.000303079901881	-0.000294571731313
+UniRef50_P0ABH6	Rod shape determining protein MreD	0.00103727625684	0.00154491510429	0.00050763884745
+UniRef50_S5XQY4	Cytochrome b561	0.00116432762227	0.0011852192031	2.089158083e-05
+UniRef50_UPI0003825EF9	hypothetical protein	7.04998149293e-06	1.14304381484e-05	4.38045665547e-06
+UniRef50_Q6A834		8.16151459085e-05	0.00140275108861	0.0013211359427
+UniRef50_UPI0004744DBC	hypothetical protein	3.91432963682e-05	9.22235361923e-05	5.30802398241e-05
+UniRef50_A4VSE4	3 methyladenine DNA glycosylase	0.00910898931407	0.00336191686088	-0.00574707245319
+UniRef50_A6L4N0	2 aminoethylphosphonate  pyruvate transaminase	1.77471256079e-05	0.0018467462766	0.00182899915099
+UniRef50_Q9L6R5	UDP N acetylglucosamine 2 epimerase	6.08051888097e-06	5.33762701444e-05	4.72957512634e-05
+UniRef50_G9ZVF4		7.09681836332e-05	6.4194085199e-05	-6.7740984342e-06
+UniRef50_J9JHL4		0.000372691554418	0.000355465398277	-1.7226156141e-05
+UniRef50_D8TYM2		4.28697862213e-06	5.15758783423e-06	8.706092121e-07
+UniRef50_UPI00036C70D3	hypothetical protein	1.91671464743e-05	5.66684041263e-06	-1.35003060617e-05
+UniRef50_F0N5W3	Rhodanese domain protein	0.000185648846977	0.000272175910237	8.652706326e-05
+UniRef50_B9GC78	Os12g0188566 protein	6.34711525125e-05	0.000133008534525	6.95373820125e-05
+UniRef50_W8ZGJ2		0.000183245625651	0.000286715247755	0.000103469622104
+UniRef50_A6M046	Transcriptional regulator, TetR family	0.000183840578989	0.00111398945006	0.000930148871071
+UniRef50_Q8DRN9		0.00207808048828	0.00371757178312	0.00163949129484
+UniRef50_UPI000475D486	pseudouridine synthase	0.0001224482672	5.48829504709e-05	-6.75653167291e-05
+UniRef50_B2S7V7	Glyoxalase Bleomycin resistance protein	0.00591721865607	0.000450865198773	-0.0054663534573
+UniRef50_UPI00035ECC54	hypothetical protein	1.00138563831e-05	1.39230182398e-05	3.9091618567e-06
+UniRef50_UPI00037E3E52	hypothetical protein	5.40514946274e-05	3.91999289988e-05	-1.48515656286e-05
+UniRef50_Q9HXZ1	DNA polymerase III subunit alpha	0.000709095521666	0.000674647887156	-3.444763451e-05
+UniRef50_A6M0Z1	Methyl accepting chemotaxis sensory transducer	0.00108619768978	0.00114994972905	6.375203927e-05
+UniRef50_C7IW70	Os01g0561500 protein 	0.00013129895143	0.000251946170197	0.000120647218767
+UniRef50_B2TPI9		0.00043543623929	0.000204371422282	-0.000231064817008
+UniRef50_P75883		0.00177561483703	6.40590329834e-05	-0.00171155580405
+UniRef50_V4REQ5	Bacteriophytochrome heme oxygenase BphO	2.89382400061e-05	2.79350992374e-05	-1.0031407687e-06
+UniRef50_UPI0002000915	NRPS siderophore biosynthesis protein	3.22637597309e-05	0.000106962200756	7.46984410251e-05
+UniRef50_Q54430	Sucrose operon repressor	0.00405992107902	0.00178205600625	-0.00227786507277
+UniRef50_A6LTD5	Lipoprotein, putative	0.000113359155811	0.00172308340428	0.00160972424847
+UniRef50_Q2FJI0	Methionine import ATP binding protein MetN 1	0.0247257056837	0.00673051906752	-0.0179951866162
+UniRef50_UPI000470E6C8	hypothetical protein	1.11705950525e-05	3.42235449316e-05	2.30529498791e-05
+UniRef50_P39636	Amino acid permease RocC	0.00122384584998	0.00162295916673	0.00039911331675
+UniRef50_A7GKI0	Phosphoribosylformylglycinamidine cyclo ligase	2.43998777417e-06	9.46726695737e-06	7.0272791832e-06
+UniRef50_P22608	Type 4 fimbrial assembly protein PilB	0.00169203240639	0.00096174613359	-0.0007302862728
+UniRef50_UPI0003627506	Cro Cl family transcriptional regulator	0.000171136209819	2.18980312572e-05	-0.000149238178562
+UniRef50_C1D205	Putative diguanylate cyclase	3.16548291664e-06	0.00013168081389	0.000128515330973
+UniRef50_Q9KU46	Lipoprotein signal peptidase	1.86195772501e-05	1.70684160959e-05	-1.5511611542e-06
+UniRef50_I6Y4U3	NAD dependent malic enzyme	1.37917729531e-05	1.28807427933e-05	-9.110301598e-07
+UniRef50_E0DCF6		0.00051445369767	0.0182942495379	0.0177797958402
+UniRef50_K0WMD7	Glycosyltransferase	0.00151054400983	0.000208213893202	-0.00130233011663
+UniRef50_W7VMD9	Peptidase M23 	0.000146481743545	0.000227616506777	8.1134763232e-05
+UniRef50_UPI0004724D89	hypothetical protein	3.92340660451e-06	4.95742120871e-06	1.0340146042e-06
+UniRef50_C6S911	Deoxyribodipyrimidine photolyase	8.87506243427e-05	0.0025977328384	0.00250898221406
+UniRef50_X5MKP4	FIG003603	1.67802005625e-06	4.41277098959e-06	2.73475093334e-06
+UniRef50_UPI00047E4FB4	hypothetical protein	0.000164687805049	0.000166464014484	1.776209435e-06
+UniRef50_A6LX64	ABC transporter related	0.000584154764232	0.00139860132819	0.000814446563958
+UniRef50_U4VGY9		0.000106436640526	2.16645479638e-05	-8.47720925622e-05
+UniRef50_A0A024E6B6	Cytochrome B561	0.00174259606357	0.00137356607068	-0.00036902999289
+UniRef50_UPI00046BD92F	PREDICTED	6.17918487358e-05	7.85352274896e-06	-5.39383259868e-05
+UniRef50_A9M1B3	Potassium uptake protein	0.000381960850639	0.00310080548537	0.00271884463473
+UniRef50_P0A9J2	Ribonuclease G	0.00426004794361	0.00792478167688	0.00366473373327
+UniRef50_C7ZY18		0.0049096229059	0.00112567615605	-0.00378394674985
+UniRef50_P69955	Low calcium response locus protein D	0.000410352372292	0.000549664559346	0.000139312187054
+UniRef50_T1JU83		7.86192350507e-06	1.88855631107e-05	1.10236396056e-05
+UniRef50_B0TEJ5	1 deoxy D xylulose 5 phosphate synthase	1.98501182392e-06	0.000357841472046	0.000355856460222
+UniRef50_R6STG9	Putative glutamate binding periplasmic protein	8.94101527327e-06	0.000357524488061	0.000348583472788
+UniRef50_O67546	Succinyl CoA ligase [ADP forming] subunit beta	8.42002469031e-06	3.66883338309e-05	2.82683091406e-05
+UniRef50_F0YAV0	Expressed protein	8.76257844775e-05	3.23736101786e-05	-5.52521742989e-05
+UniRef50_UPI00016C49DC	histidinol phosphate phosphatase, putative	6.01969953508e-06	0.000152555607759	0.000146535908224
+UniRef50_Q08653	Anthranilate synthase component 1	7.72206193387e-06	0.000312795323146	0.000305073261212
+UniRef50_A6M2V0	Methyl accepting chemotaxis sensory transducer	0.00041346384146	0.00150171352841	0.00108824968695
+UniRef50_UPI0003AE1EC3	PREDICTED	3.15622314758e-06	7.54000098382e-05	7.22437866906e-05
+UniRef50_Q2FIM4	Epimerase family protein SAUSA300_0753	0.0219596516598	0.00538802337317	-0.0165716282866
+UniRef50_UPI0003752D61	hypothetical protein	0.00150102311343	0.000644566176804	-0.000856456936626
+UniRef50_Q9HWF9	Bacterioferritin	0.00289881212598	0.000322489892283	-0.0025763222337
+UniRef50_F9Z1G0	DNA primase	6.05592495497e-05	0.00698334080533	0.00692278155578
+UniRef50_K4RZ48		5.02644459164e-05	4.72510527858e-06	-4.55393406378e-05
+UniRef50_V9U4M1		0.000129534797437	0.000738291762994	0.000608756965557
+UniRef50_C7ZTX4	SSS sodium solute transporter superfamily protein	0.00955989008909	0.00604764664588	-0.00351224344321
+UniRef50_UPI0002F68D16	hypothetical protein	8.30130371985e-06	3.52691292777e-05	2.69678255579e-05
+UniRef50_A3DK16	Diaminopimelate epimerase	4.77606624477e-06	1.75014019244e-05	1.27253356796e-05
+UniRef50_F9YXC7		0.000199381964576	0.0057706712088	0.00557128924422
+UniRef50_P69740	Hydrogenase 1 small chain	0.00353433071634	4.85548468854e-05	-0.00348577586945
+UniRef50_J9NRS4		8.86811250236e-05	1.11866619574e-05	-7.74944630662e-05
+UniRef50_A1VYJ5	DNA directed RNA polymerase subunit beta	3.35481735234e-06	1.46557461534e-06	-1.889242737e-06
+UniRef50_Q28M41	Kef type potassium proton antiporter, CPA2 family	0.00171619171337	0.000991779207053	-0.000724412506317
+UniRef50_P0A9H6	Cobyrinic acid a,c diamide adenosyltransferase	0.00494984621138	0.00188839693665	-0.00306144927473
+UniRef50_UPI000466B185	hydrolase	1.15889222849e-05	8.06826111519e-05	6.9093688867e-05
+UniRef50_UPI0004738B15	MFS transporter	1.00781317642e-05	4.12420822351e-05	3.11639504709e-05
+UniRef50_Q9RCA1	DNA polymerase III subunit beta	0.0188437795847	0.00767141116464	-0.0111723684201
+UniRef50_A8GHR1	Putative multidrug resistance protein MdtD	0.0010995547975	0.000178439096792	-0.000921115700708
+UniRef50_UPI00016A58F4	hypothetical protein, partial	7.11546619533e-05	0.000219928727789	0.000148774065836
+UniRef50_P76345	Cytochrome b561 homolog 1	0.00496316258967	0.000364588524928	-0.00459857406474
+UniRef50_A0A023VMN5	DNA polymerase III subunit epsilon	0.000386834771105	0.00410034998887	0.00371351521777
+UniRef50_UPI00036CE3D7	hypothetical protein, partial	3.86987674786e-05	7.71998788235e-06	-3.09787795963e-05
+UniRef50_A0A024GR22	Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763	0.000518041383486	0.00256615948379	0.0020481181003
+UniRef50_Q7VGX8	Isoleucine  tRNA ligase	8.22413465362e-05	0.00245674715692	0.00237450581038
+UniRef50_G1P8T6		7.97070917265e-06	5.21797079207e-06	-2.75273838058e-06
+UniRef50_B1ZT49	Tryptophan synthase alpha chain	6.67968532493e-06	9.08665724165e-06	2.40697191672e-06
+UniRef50_C9X0B4	Cystathionine beta lyase 	0.000177501248674	0.00252986390946	0.00235236266079
+UniRef50_UPI0004680597	hypothetical protein	1.52544471013e-05	1.56314532927e-05	3.770061914e-07
+UniRef50_P59019	3 isopropylmalate dehydratase small subunit	1.04805145886e-05	1.53438588772e-05	4.8633442886e-06
+UniRef50_G7D6B1		0.00102521133079	0.000435895748475	-0.000589315582315
+UniRef50_D0K7S8		0.00558332118742	5.59379743674e-05	-0.00552738321305
+UniRef50_A8WP91	Probable medium chain specific acyl CoA dehydrogenase 2, mitochondrial	3.03142666471e-06	2.21974185725e-05	1.91659919078e-05
+UniRef50_P07654	Phosphate transport system permease protein PstA	0.00228669852005	0.000292392777421	-0.00199430574263
+UniRef50_UPI00046BF57D	PREDICTED	1.38818464288e-05	1.00907034622e-05	-3.7911429666e-06
+UniRef50_D5AUV7		1.60777963965e-05	1.24047297343e-05	-3.6730666622e-06
+UniRef50_E6WAB3	Thymidine phosphorylase	0.000428519336342	0.00066356430709	0.000235044970748
+UniRef50_P16919	Protein RhsD	0.00484954582135	0.000996077702367	-0.00385346811898
+UniRef50_Q8CNS3	Integrase	0.00785160938702	0.00179204034191	-0.00605956904511
+UniRef50_UPI00038257CA	hypothetical protein	6.83880852264e-06	2.36795046223e-05	1.68406960997e-05
+UniRef50_B3E616	Phosphoribosyl ATP pyrophosphatase	0.000111853768214	4.81819890207e-05	-6.36717791933e-05
+UniRef50_UPI000255D14E	uracil xanthine permease	2.53026562798e-05	6.7637007731e-05	4.23343514512e-05
+UniRef50_A0A011PEE7		0.00424676589076	0.000595872852833	-0.00365089303793
+UniRef50_Q2J8T7	NAD NADP transhydrogenase alpha subunit like	1.83450686689e-05	2.68237798202e-05	8.4787111513e-06
+UniRef50_X1LFP4	Marine sediment metagenome DNA, contig	1.92213537492e-05	8.89434529748e-05	6.97220992256e-05
+UniRef50_F5H1R7	Protein FLJ22184	1.07167977419e-06	3.61869434395e-06	2.54701456976e-06
+UniRef50_B5YJV0	GTP cyclohydrolase 1	0.000212070780251	0.00259996471084	0.00238789393059
+UniRef50_I6SZZ6	Glutathione synthase	0.00107632511589	0.000671756349428	-0.000404568766462
+UniRef50_A4IWK9	Ribonuclease 3	7.55124492991e-06	1.45028689935e-05	6.95162406359e-06
+UniRef50_P0AAD4	Tyrosine specific transport protein	0.00198736736912	0.000242394012474	-0.00174497335665
+UniRef50_UPI0004573F1D	PREDICTED	0.000165041695185	1.74606595238e-05	-0.000147581035661
+UniRef50_UPI0003805ECB	hypothetical protein	2.79384434769e-05	2.26324843107e-05	-5.3059591662e-06
+UniRef50_G5LNP8	Glucans biosynthesis protein G 	3.93808099937e-05	0.000217783843728	0.000178403033734
+UniRef50_A6LZ85	O acetylhomoserine aminocarboxypropyltransferase	0.000867498566062	0.00192631588812	0.00105881732206
+UniRef50_Q04LT6	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.38650992893e-06	0.00346756180107	0.00346617529114
+UniRef50_I6U4A9		0.00263590785676	4.48588694827e-05	-0.00259104898728
+UniRef50_A0A017HQJ0	Mobile element protein	0.000104471362314	3.02093758868e-05	-7.42619864272e-05
+UniRef50_Q49UU5	UPF0355 protein SSP2326	0.00296687845538	0.000437506229925	-0.00252937222545
+UniRef50_Q1JF79	ComE operon protein 2	0.00635302784126	0.00582690077184	-0.00052612706942
+UniRef50_Q93GF3	Rep	0.410004761703	0.131513750747	-0.278491010956
+UniRef50_A1U4H5	D 3 phosphoglycerate dehydrogenase	0.000159726088367	0.0076288399733	0.00746911388493
+UniRef50_B6VK40	Type iii secretion component protein sctt	0.000472631611028	0.000519520793169	4.6889182141e-05
+UniRef50_UPI00036474E6	hypothetical protein	2.34510016302e-06	1.77062695784e-05	1.53611694154e-05
+UniRef50_P0ADM6		0.00285776723549	0.000336863161818	-0.00252090407367
+UniRef50_U7R6W7		4.19126630413e-05	2.4592809316e-05	-1.73198537253e-05
+UniRef50_E3I502	Oligoendopeptidase, pepF M3 family	0.00998412673087	0.00221708312703	-0.00776704360384
+UniRef50_R6WGW0	Macro domain protein	3.80640496571e-06	1.72239453829e-05	1.34175404172e-05
+UniRef50_UPI0003661C28	hypothetical protein, partial	1.14581658908e-05	2.56216461218e-05	1.4163480231e-05
+UniRef50_A0YRN0	Putative transposase	1.08015430708e-05	0.00101446595357	0.0010036644105
+UniRef50_Q1GHV9	YjeF related protein like protein	1.9045333418e-05	1.73331521479e-05	-1.7121812701e-06
+UniRef50_A0A023YXN9	Type 1 fimbriae anchoring protein FimD	0.000403664049756	6.78369154289e-05	-0.000335827134327
+UniRef50_Q4L8X8	Ppx GppA, Ppx GppA phosphatase family protein	0.00819689273811	0.00144506122901	-0.0067518315091
+UniRef50_B0V1R4	Novel protein	0.000316928750669	0.000185173704217	-0.000131755046452
+UniRef50_B9KPX1	Periplasmic binding protein LacI transcriptional regulator	0.0127659845375	0.00165325258792	-0.0111127319496
+UniRef50_C7ZSW5	ABC transporter	0.0122512577802	0.00142808143217	-0.010823176348
+UniRef50_D8JP76		0.000129720271086	0.00593238323664	0.00580266296555
+UniRef50_I6TX73	Acetyltransferase	0.00215644753586	0.000596599404435	-0.00155984813143
+UniRef50_P51995	NAD transhydrogenase subunit alpha part 2	2.01399775711e-05	0.000791140163099	0.000771000185528
+UniRef50_C5N4H6		0.0152087068687	0.00326213299753	-0.0119465738712
+UniRef50_R6RWM5	Prophage LambdaSa04 DNA polymerase	0.00017104095588	0.00499753408088	0.004826493125
+UniRef50_Q9JY85		0.000267431008715	0.0021931560169	0.00192572500819
+UniRef50_A4WW73		0.00491223134508	0.00109832298906	-0.00381390835602
+UniRef50_UPI00016AAA4C	MFS transporter	5.30389645485e-06	8.14194767184e-06	2.83805121699e-06
+UniRef50_Q46915	Glucarate dehydratase related protein	0.00468365670371	0.000743707890032	-0.00393994881368
+UniRef50_Q5HRD9	AIR carboxylase, putative	0.0103709130938	0.00367530658485	-0.00669560650895
+UniRef50_Q3IW48		0.00535357754704	0.000816543885337	-0.0045370336617
+UniRef50_J9NUI2		4.69515057499e-05	5.01796159812e-05	3.2281102313e-06
+UniRef50_UPI0003B47644	ABC transporter	1.83672405538e-05	0.000103730443885	8.53632033312e-05
+UniRef50_A8LE21	Peptide deformylase	1.696153339e-05	0.000193122815757	0.000176161282367
+UniRef50_UPI0003B50607	MarR family transcriptional regulator, partial	3.0900146007e-05	8.12584791168e-05	5.03583331098e-05
+UniRef50_A0A023L4E6	Multidrug transporter membrane component ATP binding component	0.00117657751455	0.000145356868839	-0.00103122064571
+UniRef50_G8AI77		0.00229120217543	0.00129545146294	-0.00099575071249
+UniRef50_W7WQX4		0.000798181908449	0.000330170971717	-0.000468010936732
+UniRef50_UPI00036C7DC7	hypothetical protein	6.15263919252e-05	9.07270591586e-05	2.92006672334e-05
+UniRef50_UPI0003B4B204	hypothetical protein	1.84678636003e-05	2.95382614627e-05	1.10703978624e-05
+UniRef50_P76518		0.00334107914555	0.000762727160681	-0.00257835198487
+UniRef50_O32177	3 ketoacyl CoA thiolase	0.000121238847423	0.0342031515765	0.0340819127291
+UniRef50_Q6MGU4	Nucleoside diphosphate kinase	7.25805057486e-05	4.44787777822e-05	-2.81017279664e-05
+UniRef50_P76514		0.00182054674941	0.000716176659606	-0.0011043700898
+UniRef50_Q7P1W4		7.6165503042e-05	7.23003177589e-06	-6.89354712661e-05
+UniRef50_E0SN31	Oxidoreductase	0.000315976689791	0.000193650298495	-0.000122326391296
+UniRef50_B4EH82	Catalase related peroxidase	0.000335375767292	0.00475938632788	0.00442401056059
+UniRef50_H8FXV9		0.000810729358581	0.00447904146487	0.00366831210629
+UniRef50_M9VA45		0.000159138626748	0.00593386507711	0.00577472645036
+UniRef50_B7V4I1	LPS assembly protein LptD	0.000511203357662	0.000488725577381	-2.2477780281e-05
+UniRef50_Q8CU34	ABC transporter 	0.0106969552657	0.00372461379786	-0.00697234146784
+UniRef50_C6B907	NAD dependent epimerase dehydratase	0.00221361893687	0.000365877338409	-0.00184774159846
+UniRef50_Q88EH6	Acetyl coenzyme A synthetase 1	0.0151427980615	0.00319060675343	-0.0119521913081
+UniRef50_A0A059LIS0		7.28405287655e-06	7.52696297692e-05	6.79855768927e-05
+UniRef50_Q00X46	WGS project CAID00000000 data, contig chromosome 13	7.27289578742e-07	6.60833575544e-07	-6.6456003198e-08
+UniRef50_S6ASW9		0.000215831558213	3.58999369761e-05	-0.000179931621237
+UniRef50_UPI0002D680F8	hydroxymethylglutaryl CoA lyase	2.5264454022e-06	1.56204284232e-05	1.3093983021e-05
+UniRef50_G4MEB0	Protein containing domains DUF404, DUF407	5.63163527146e-06	1.66738390577e-05	1.10422037862e-05
+UniRef50_A1AYY2	Phage major capsid protein, HK97 family	0.0103398344141	0.00274959383635	-0.00759024057775
+UniRef50_I0C4W3	Enterotoxin	0.00835627548538	0.00133541063328	-0.0070208648521
+UniRef50_B2GK44		2.24052420409e-06	1.46040817952e-05	1.23635575911e-05
+UniRef50_A8ZUK6	Tyrosine  tRNA ligase	3.48333187251e-05	2.39419345286e-05	-1.08913841965e-05
+UniRef50_UPI00047522DD	hypothetical protein	6.79500627155e-06	5.34219322439e-05	4.66269259723e-05
+UniRef50_F9PNH7	RDD family protein	4.20792043256e-05	3.98273878766e-05	-2.251816449e-06
+UniRef50_R6Q8V3	O 6 methylguanine DNA methyltransferase	0.00397910536368	0.000592608772976	-0.0033864965907
+UniRef50_A7X782	Pyrrolidone carboxylate peptidase	0.012958682208	0.00377134784834	-0.00918733435966
+UniRef50_A7HQ81	Thioesterase superfamily protein	6.61333752309e-06	9.71734329914e-06	3.10400577605e-06
+UniRef50_Q722V6	Homoserine O acetyltransferase	3.23983775801e-05	0.000650659733354	0.000618261355774
+UniRef50_E5S583	Glycine cleavage system H protein	1.1053599948e-05	7.95195916018e-06	-3.10164078782e-06
+UniRef50_W8Z324		0.000178596510549	0.000107780104746	-7.0816405803e-05
+UniRef50_D3HCJ2	2 isopropylmalate synthase	0.0325299845153	0.0102834088525	-0.0222465756628
+UniRef50_A3DJH8	30S ribosomal protein S3	0.000237412571605	0.00110541003727	0.000867997465665
+UniRef50_T2E8G6	Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein	0.000711361824182	0.000272181295113	-0.000439180529069
+UniRef50_U7JH15		2.85594305966e-05	9.55191819211e-05	6.69597513245e-05
+UniRef50_S9Q8I1		3.18800240954e-06	1.44620329834e-06	-1.7417991112e-06
+UniRef50_UPI0003497FAE	hypothetical protein	4.60002496307e-06	2.35791847876e-05	1.89791598245e-05
+UniRef50_A7GB27	Transcriptional regulator, AraC family	0.00100509758833	0.000385195702433	-0.000619901885897
+UniRef50_UPI0004687B18	hypothetical protein	3.4445770466e-06	4.0115550257e-05	3.66709732104e-05
+UniRef50_D2UWK2	Probable membrane protein	0.00103126608158	0.000412069821193	-0.000619196260387
+UniRef50_P23862	Primosomal replication protein N	0.0010358695633	0.00067500961187	-0.00036085995143
+UniRef50_L1KG88		0.0103058147219	0.000199340585259	-0.0101064741366
+UniRef50_U8CNV5		0.000303339457655	0.000451305691949	0.000147966234294
+UniRef50_Q88U22	Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00789963687168	0.00533031842319	-0.00256931844849
+UniRef50_G0DXB0		0.000128834808487	0.00402822417894	0.00389938937045
+UniRef50_UPI0004548C9D		7.26695443163e-05	0.000172100242396	9.94306980797e-05
+UniRef50_P0A232	Phospholipase A1	0.00180049533662	9.0168451203e-05	-0.00171032688542
+UniRef50_F3LPE7	Outer membrane autotransporter 	0.000152372987829	0.00010047976645	-5.1893221379e-05
+UniRef50_O26834	Putative nickel responsive regulator 2	0.000561939947183	0.000387724339418	-0.000174215607765
+UniRef50_UPI00037DF050	hypothetical protein	2.65827695857e-05	6.02606020945e-06	-2.05567093762e-05
+UniRef50_Q9ZJU5	Anthranilate synthase component 1	3.17734809777e-06	0.00700497237441	0.00700179502631
+UniRef50_U5RZU5		0.000118210643688	0.00227849388766	0.00216028324397
+UniRef50_M4MKF6		0.000132993263525	4.86892572658e-05	-8.43040062592e-05
+UniRef50_G4STG9	Pyrophosphate  fructose 6 phosphate 1 phosphotransferase	0.000484937658063	0.00694317847354	0.00645824081548
+UniRef50_F3WSY6	MazG family protein	1.71453090991e-05	1.43330302478e-05	-2.8122788513e-06
+UniRef50_UPI00047EE3D3	hypothetical protein	1.3724154624e-05	4.2644265968e-05	2.8920111344e-05
+UniRef50_UPI00047A45E7	hypothetical protein	3.1945837796e-06	4.54948336944e-06	1.35489958984e-06
+UniRef50_Q92GE0	3 oxoacyl [acyl carrier protein] reductase FabG	0.00563328565342	0.00190110756164	-0.00373217809178
+UniRef50_UPI000366025E	MULTISPECIES	6.0343034299e-06	1.17576622643e-05	5.7233588344e-06
+UniRef50_O07329	Catabolite control protein A	0.00775324485625	0.00143682834209	-0.00631641651416
+UniRef50_Q03UU4	Ketol acid reductoisomerase	1.61763794219e-05	4.76643938576e-05	3.14880144357e-05
+UniRef50_C6PR80		8.59958840324e-06	0.000837314712711	0.000828715124308
+UniRef50_G4B1K2	Transcription repair coupling factor	7.67656962516e-06	2.51827087108e-05	1.75061390856e-05
+UniRef50_A4IS03	S ribosylhomocysteine lyase	1.37257987945e-05	0.00149446556353	0.00148073976474
+UniRef50_A0A011NLS4		2.65868900793e-06	0.000162134824985	0.000159476135977
+UniRef50_Q59094	Superoxide dismutase [Mn]	1.11953640826e-05	7.67772889463e-05	6.55819248637e-05
+UniRef50_A4WT79	Proton translocating NADH quinone oxidoreductase, chain M	0.00322850470546	0.000520835782613	-0.00270766892285
+UniRef50_P23621	Phosphate regulon sensor protein PhoR	0.000993159616954	0.00105765974777	6.4500130816e-05
+UniRef50_B9E752		1.47793850838e-05	1.7308604313e-05	2.5292192292e-06
+UniRef50_S5YGB9		0.00757046076543	0.00443825608546	-0.00313220467997
+UniRef50_B9E750		0.0100627651212	0.00291008267101	-0.00715268245019
+UniRef50_A3NT46	Oxygen dependent coproporphyrinogen III oxidase	0.00076262879123	0.000206756152991	-0.000555872638239
+UniRef50_UPI00034B714A	hypothetical protein	1.99770194631e-05	6.26937490907e-06	-1.3707644554e-05
+UniRef50_I6STQ9		0.00960206659121	0.00405190869683	-0.00555015789438
+UniRef50_U4TS42	Phosphorylase 	0.00233377451391	0.00171165407588	-0.00062212043803
+UniRef50_G4LBK7	Two component sensor	0.00038118130373	0.000244184573207	-0.000136996730523
+UniRef50_UPI0003F8C513	acetolactate synthase	1.24514609108e-05	0.000331298606118	0.000318847145207
+UniRef50_S0L1H4	Diphosphomevalonate decarboxylase	0.0224097743413	0.00827111886757	-0.0141386554737
+UniRef50_UPI00037B22BE	hypothetical protein	5.60411553498e-06	2.28570770593e-05	1.72529615243e-05
+UniRef50_A6TQQ4		2.41172753023e-05	3.71459436328e-05	1.30286683305e-05
+UniRef50_G7SBD4		0.00528946620781	0.00519678615034	-9.268005747e-05
+UniRef50_J9NTF4		3.48785187238e-05	0.000126663710155	9.17851914312e-05
+UniRef50_P31440	Adenine permease AdeQ	0.003833588985	0.00112276001969	-0.00271082896531
+UniRef50_UPI00037ECA28	hypothetical protein, partial	0.000150557666723	4.11869905611e-05	-0.000109370676162
+UniRef50_UPI00035E1B99	hypothetical protein	1.41812304231e-05	2.08689040547e-05	6.6876736316e-06
+UniRef50_A4T5H7		7.58097985609e-06	0.000152733662239	0.000145152682383
+UniRef50_P15977	4 alpha glucanotransferase	0.00302820226699	0.00118934239425	-0.00183885987274
+UniRef50_I4N9F9	Lipoprotein	0.000169982398226	0.000225488709275	5.5506311049e-05
+UniRef50_A0KCX4	Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.000134336650837	0.00020994078568	7.5604134843e-05
+UniRef50_D3H3M8		0.00187379828837	0.000337504805945	-0.00153629348243
+UniRef50_E8U8Y0	Oligoendopeptidase F	6.4971770888e-05	0.0283176471771	0.0282526754062
+UniRef50_W4TXL6	Iron ABC transporter	0.000493445737057	0.00179578795789	0.00130234222083
+UniRef50_A1B3M6		0.00215590058288	0.000359858680012	-0.00179604190287
+UniRef50_Q9I5L2		0.00249770293208	0.00122523496665	-0.00127246796543
+UniRef50_Q9I5L3		0.0025091048076	0.0015206475195	-0.0009884572881
+UniRef50_A6LZM7	ABC transporter related	0.000612118787511	0.00176004050141	0.0011479217139
+UniRef50_UPI00047CD6DA	hypothetical protein	0.000161038052937	0.000521836076233	0.000360798023296
+UniRef50_Q9TKX3	Sulfate thiosulfate import ATP binding protein CysA	1.48581398574e-05	3.79247889356e-05	2.30666490782e-05
+UniRef50_D5AUK2	Transcriptional regulator, GntR family	0.000113245796655	0.000161669729117	4.8423932462e-05
+UniRef50_Q14VU5	ORF13	1.93518972071e-06	1.94596379658e-05	1.75244482451e-05
+UniRef50_UPI0003B67745	exonuclease, partial	2.50358626704e-05	1.97468816337e-05	-5.2889810367e-06
+UniRef50_D5ANZ3	Cytochrome b	0.0126426079407	0.0033334568963	-0.0093091510444
+UniRef50_Q5HQP3		0.00121954699548	0.000916896867559	-0.000302650127921
+UniRef50_C8NEG6	ABC transporter, substrate binding protein, family 3	0.00229294731724	0.000443700710633	-0.00184924660661
+UniRef50_A6LW01		0.000841611976392	0.000676307631791	-0.000165304344601
+UniRef50_UPI00047A328A	ABC transporter substrate binding protein	7.32498305569e-06	3.73056864454e-05	2.99807033897e-05
+UniRef50_O83668	Fructose bisphosphate aldolase	1.39281752955e-05	0.0057998256801	0.0057858975048
+UniRef50_X6KYL5	ATPase	4.06935588584e-05	4.00442577627e-05	-6.493010957e-07
+UniRef50_Q2CBA4		0.000523034630674	0.000527351259279	4.316628605e-06
+UniRef50_I6T7T2	Permease	0.00392482061747	0.000879043425551	-0.00304577719192
+UniRef50_P0ACQ6	Hydrogen peroxide inducible genes activator	0.00443159449783	0.00116770140896	-0.00326389308887
+UniRef50_Q8D0W8	Sulfate thiosulfate import ATP binding protein CysA	0.000259261559997	0.000437233491368	0.000177971931371
+UniRef50_R9SKE9	Radical SAM domain containing protein	0.00308670795166	0.000279971292315	-0.00280673665935
+UniRef50_G9ZYG4	ABC transporter, solute binding protein	8.28349461792e-06	1.86651188944e-05	1.03816242765e-05
+UniRef50_UPI0003B488FD	histidinol dehydrogenase	4.17337978171e-06	6.66248458354e-06	2.48910480183e-06
+UniRef50_W5X7W3	Preprotein translocase subunit SecA	3.37029915123e-05	6.82188862652e-06	-2.68811028858e-05
+UniRef50_Q8YMN9	All4894 protein	6.81247790327e-05	1.55701436842e-05	-5.25546353485e-05
+UniRef50_P76407	Lipid kinase YegS	0.00185186760525	0.000547872620502	-0.00130399498475
+UniRef50_UPI00046E91F0	ATP dependent DNA helicase RuvB	7.69870648316e-06	1.26859993343e-05	4.98729285114e-06
+UniRef50_F2KCE9	Protein tldE, 	9.13769319381e-05	0.000149780239319	5.84033073809e-05
+UniRef50_R7CNB5		0.000424838133132	0.00174538209066	0.00132054395753
+UniRef50_A4W3H4	Ribosomal RNA small subunit methyltransferase H	1.72877259824e-05	0.00238205449579	0.00236476676981
+UniRef50_B4UFY0	Holliday junction ATP dependent DNA helicase RuvA	1.26924115802e-05	8.83077160094e-06	-3.86163997926e-06
+UniRef50_Q089C0	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.19221837037e-05	5.62072362602e-06	-1.63014600777e-05
+UniRef50_UPI0003B490B8	ArsR family transcriptional regulator	0.000104827875076	6.71874375898e-05	-3.76404374862e-05
+UniRef50_UPI0002003580	Rhamnan synthesis F, partial	9.34932539392e-06	1.05091762229e-05	1.15985082898e-06
+UniRef50_A2BPB2	S adenosylmethionine synthase	0.0135892131308	0.00741983032761	-0.00616938280319
+UniRef50_A5I6S3		0.000216226306108	0.000164674742667	-5.1551563441e-05
+UniRef50_Q1JDC3	SAM dependent methyltransferase	0.00675928954462	0.00534677932484	-0.00141251021978
+UniRef50_UPI0002555D97	glutamine ABC transporter ATP binding protein	0.000160097709647	0.000131743554077	-2.835415557e-05
+UniRef50_A6TC48	Cell division protein ZipA homolog	0.00205184445951	0.00295328780334	0.00090144334383
+UniRef50_UPI00021940CD	3 phosphoshikimate 1 carboxyvinyltransferase	4.45028863019e-06	7.3057439033e-06	2.85545527311e-06
+UniRef50_UPI00016C05A2	alpha amylase, catalytic region	4.05949264013e-06	6.26836083283e-06	2.2088681927e-06
+UniRef50_Q5JCY6	3 methyl 2 oxobutanoate hydroxymethyltransferase	4.04570743768e-05	1.95754533339e-05	-2.08816210429e-05
+UniRef50_M8VH72	Mechanosensitive ion channel family protein	0.0015737790242	0.000759188153723	-0.000814590870477
+UniRef50_F0YHZ1		6.07856218612e-06	3.85281084015e-05	3.24495462154e-05
+UniRef50_Q251B6	Nitrate reductase gamma chain	0.0063023160944	0.00235881727735	-0.00394349881705
+UniRef50_UPI00047789D2	hypothetical protein, partial	0.000449010851424	4.7884433868e-05	-0.000401126417556
+UniRef50_UPI00046CC1E2	hypothetical protein	0.000134674404318	7.71772579833e-05	-5.74971463347e-05
+UniRef50_D1CT73	Replication protein RepA 	0.000272968042264	8.45758248116e-05	-0.000188392217452
+UniRef50_Q7W0R9	DNA directed RNA polymerase subunit beta	7.60029842256e-06	6.92035962524e-06	-6.7993879732e-07
+UniRef50_B2TQ13	Thiamine phosphate synthase	0.00022248683036	0.00231163709501	0.00208915026465
+UniRef50_Q6LQV5		1.63350827495e-05	0.000157920637463	0.000141585554714
+UniRef50_U6LL89		3.99386249955e-06	1.749187447e-06	-2.24467505255e-06
+UniRef50_I6TNX3		0.00523875341133	0.00288666764683	-0.0023520857645
+UniRef50_UPI000371A755	hypothetical protein	4.14615818744e-06	0.000282952112497	0.00027880595431
+UniRef50_Q9RY41	Putative GTP cyclohydrolase 1 type 2	0.000334058397217	0.0377857979011	0.0374517395039
+UniRef50_B7UYR5		0.000526851875572	0.000460233826278	-6.6618049294e-05
+UniRef50_M9VDI6		0.00027565167683	0.000486423162389	0.000210771485559
+UniRef50_Q097V6	NTR	1.67351199363e-05	0.000114500822689	9.77657027527e-05
+UniRef50_P77301		0.00185344238781	0.000606428443274	-0.00124701394454
+UniRef50_Q3JVY5		0.000106960636822	0.000354108125162	0.00024714748834
+UniRef50_W7CT60	XRE family transcriptional regulator	4.03886623871e-05	5.64007903666e-05	1.60121279795e-05
+UniRef50_UPI0004707E78	hypothetical protein	0.000116165537314	3.40778121796e-05	-8.20877251344e-05
+UniRef50_M5U388		5.5510866732e-06	2.12902135391e-06	-3.42206531929e-06
+UniRef50_UPI0003738D5A	hypothetical protein	0.000174775047618	6.98364877408e-05	-0.000104938559877
+UniRef50_Q167I1		0.000197397444238	4.69496575001e-05	-0.000150447786738
+UniRef50_A3M3F4	Urease accessory protein UreF	0.000302796247737	0.00470890023083	0.00440610398309
+UniRef50_Q63060	Glycerol kinase	4.18707507153e-06	4.56472314666e-06	3.7764807513e-07
+UniRef50_UPI00042B2928	Chloroplast heat shock protein 70 isoform 1	1.65512041081e-05	9.37853173534e-06	-7.17267237276e-06
+UniRef50_M9VEF8	Glucoamylase S1 S2	0.000283767961447	0.000911239439799	0.000627471478352
+UniRef50_A5V2F8	Phosphoribosylaminoimidazole succinocarboxamide synthase	0.000119399629891	3.62130472155e-05	-8.31865826755e-05
+UniRef50_UPI00036140A6	hypothetical protein	2.8346551216e-05	2.55882409651e-05	-2.7583102509e-06
+UniRef50_W8S0L8	Flagellar protein FlgJ, putative	0.000137968433853	0.000115718910595	-2.2249523258e-05
+UniRef50_W0PCE9		5.09321514118e-06	1.37532608598e-05	8.66004571862e-06
+UniRef50_UPI0002EE0684	hypothetical protein	1.2069164233e-05	2.47984120959e-06	-9.58932302341e-06
+UniRef50_B9KPQ7	Ribonuclease BN	0.00257933656796	0.000979770789844	-0.00159956577812
+UniRef50_Q9RS22		0.000486033462046	0.0400403389859	0.0395543055239
+UniRef50_Q2A1U9	Lipid A export ATP binding permease protein MsbA	3.31853988807e-06	4.57945793233e-06	1.26091804426e-06
+UniRef50_Q83QP2	Fructose like permease IIC component	0.00155343295917	0.000369439691128	-0.00118399326804
+UniRef50_Q4L8U4	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0106294602453	0.00321301323198	-0.00741644701332
+UniRef50_H8GX31		9.79096584758e-06	0.00306632169627	0.00305653073042
+UniRef50_U1KQC4	Branched chain amino acid transport	3.82393626324e-05	3.90854927715e-05	8.461301391e-07
+UniRef50_UPI0004709E67	membrane protein	1.14674010968e-05	1.34000682525e-05	1.9326671557e-06
+UniRef50_UPI000407D6C0	MULTISPECIES	3.60985479097e-05	5.04164491759e-05	1.43179012662e-05
+UniRef50_K9QPP2	Mannose 1 phosphate guanylyltransferase	0.00047469097309	0.0571037799429	0.0566290889698
+UniRef50_UPI0003F78AFE	serine protease	8.5754265292e-06	4.00950421952e-05	3.1519615666e-05
+UniRef50_UPI0004714520	hypothetical protein	2.06772670667e-05	1.25788225822e-05	-8.0984444845e-06
+UniRef50_E7Q0E7		9.69401391164e-05	1.69128734311e-05	-8.00272656853e-05
+UniRef50_T1UAW5	CobW HypB UreG, nucleotide binding domain protein	0.000118581986021	0.00511122365075	0.00499264166473
+UniRef50_Q9UTM8	Putative succinate semialdehyde dehydrogenase C139.05 [NADP]	3.82118012215e-06	6.86081670759e-06	3.03963658544e-06
+UniRef50_UPI0003B349C5	2 hydroxy acid oxidase, partial	1.20057820554e-05	1.8338811223e-05	6.3330291676e-06
+UniRef50_S5SX20	Amino acid ABC transporter ATP binding protein	0.000815351264251	0.000687397337742	-0.000127953926509
+UniRef50_Q3IUW9	TraL	0.00666372010756	0.0030291105647	-0.00363460954286
+UniRef50_I2B6D3		5.86381905036e-05	9.35600269367e-05	3.49218364331e-05
+UniRef50_G2JEX5		0.000119331714078	0.00714952761314	0.00703019589906
+UniRef50_R1DUC8		4.2229519084e-05	0.000102341758949	6.0112239865e-05
+UniRef50_C8S343		2.06150960869e-05	6.69573156264e-06	-1.39193645243e-05
+UniRef50_W0ACQ7		4.55814597666e-06	7.98606375673e-06	3.42791778007e-06
+UniRef50_J4SHG0	PTS system N acetylmuramic acid transporter subunits EIIBC	3.18136347097e-05	5.49032302234e-05	2.30895955137e-05
+UniRef50_UPI00047B5F70	iron ABC transporter ATP binding protein	0.000181664410594	1.18999859333e-05	-0.000169764424661
+UniRef50_A6QJP6	Zn binding lipoprotein adcA like protein	0.0132101779348	0.00230858690386	-0.0109015910309
+UniRef50_E6SMQ6	L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.0348640666911	0.0103510307359	-0.0245130359552
+UniRef50_C0M7M5	Thymidylate kinase	0.00375126159729	0.00730833487767	0.00355707328038
+UniRef50_Q1J230	TatD related deoxyribonuclease	0.000210103518845	0.0302188966039	0.0300087930851
+UniRef50_UPI00041E2B86	hypothetical protein	1.91921822435e-06	2.42544412233e-05	2.23352229989e-05
+UniRef50_S9SAD7		0.000218405197906	2.71388424458e-05	-0.00019126635546
+UniRef50_UPI00037D7D9D	hypothetical protein	4.45902826129e-06	0.000935053533002	0.000930594504741
+UniRef50_UPI0003648262	hypothetical protein	6.83420315356e-05	1.83896522323e-05	-4.99523793033e-05
+UniRef50_B8GAP1		1.1262094893e-05	2.44379317871e-05	1.31758368941e-05
+UniRef50_C3KRZ1		1.16653090434e-05	1.89902066833e-05	7.3248976399e-06
+UniRef50_K0AWK4	Signal transduction response regulator	0.00034485110672	0.000309772767695	-3.5078339025e-05
+UniRef50_F2MTK1	Cysteine synthase	0.00404609803256	0.00165486259673	-0.00239123543583
+UniRef50_A5WC68	Short chain dehydrogenase reductase SDR	0.000413215248013	0.000475040276462	6.1825028449e-05
+UniRef50_E3EXD1	Flagellar biosynthesis regulatory protein FlaF	9.92641436033e-05	0.000106292919008	7.0287754047e-06
+UniRef50_UPI0003713DCA	hypothetical protein	8.73847807637e-06	0.000498005929809	0.000489267451733
+UniRef50_T2H287		0.000535853192817	0.000103104535349	-0.000432748657468
+UniRef50_P0ACK4	Putative aga operon transcriptional repressor	0.00386527900076	0.000564228969712	-0.00330105003105
+UniRef50_X5ET90	M23 peptidase domain protein	0.000126673150626	0.00191181472931	0.00178514157868
+UniRef50_P46333	Probable metabolite transport protein CsbC	0.0121403459608	0.00207179873112	-0.0100685472297
+UniRef50_I0TGY1		0.00307319972126	0.00120888942708	-0.00186431029418
+UniRef50_P76268	Transcriptional regulator KdgR	0.00448900218816	0.000675749033314	-0.00381325315485
+UniRef50_UPI0004410E83	hypothetical protein AURDEDRAFT_58877, partial	3.37857074765e-05	2.12392714251e-05	-1.25464360514e-05
+UniRef50_H8GVU2	ABC transporter, ATP binding protein	0.000124173022652	0.0129759961736	0.0128518231509
+UniRef50_B2AGK5		5.12890227549e-05	2.05391591804e-05	-3.07498635745e-05
+UniRef50_UPI000473B328	ABC transporter ATP binding protein, partial	8.79557546893e-05	6.31648074203e-05	-2.4790947269e-05
+UniRef50_Q3IXI2		0.00323927395556	0.00160749233432	-0.00163178162124
+UniRef50_W8S015	Chromosome  partitioning protein ParA   Sporulation initiation inhibitor protein Soj	9.89335753291e-06	3.95055436573e-05	2.96121861244e-05
+UniRef50_B9KSK5		0.0013938905445	0.000175262139585	-0.00121862840491
+UniRef50_H2PRE9		6.636561201e-05	0.000151399236449	8.5033624439e-05
+UniRef50_K7E9E4		6.36125515652e-05	0.00213885938448	0.00207524683291
+UniRef50_A7X538		0.00447993564031	0.000509166733097	-0.00397076890721
+UniRef50_B2UUZ0	RNA pyrophosphohydrolase	0.000381298978638	0.00310228041941	0.00272098144077
+UniRef50_UPI00036109FB	hypothetical protein	4.04573095656e-05	3.84114796426e-05	-2.045829923e-06
+UniRef50_UPI00037C9F7B	hypothetical protein	1.90335792403e-06	4.55954634524e-06	2.65618842121e-06
+UniRef50_UPI00037F00C2	hypothetical protein	8.74258589778e-06	5.63583277875e-06	-3.10675311903e-06
+UniRef50_UPI0003A983A5	amidophosphoribosyltransferase	8.17854053128e-06	6.03716547012e-05	5.21931141699e-05
+UniRef50_B8GWS6	DNA polymerase III subunit alpha	1.11023881397e-05	5.60117892858e-06	-5.50120921112e-06
+UniRef50_W1JGI9		0.000116744393623	4.91756503465e-05	-6.75687432765e-05
+UniRef50_D2T8K9	Aromatic amino acid transaminase	0.000160177930206	0.0118484525728	0.0116882746426
+UniRef50_UPI00046FDA71	acyl transferase	0.00019679621671	1.90938039666e-05	-0.000177702412743
+UniRef50_M9VAR4	Response regulator MprA	0.000215706279348	0.00881764770999	0.00860194143064
+UniRef50_A0A016QSU1		5.61820336645e-05	0.00815484568749	0.00809866365383
+UniRef50_UPI000379C227	dehydrogenase	3.62774354659e-05	2.08413466472e-05	-1.54360888187e-05
+UniRef50_A6QIG0	GntR family regulatory protein	0.0105588467751	0.00325332184047	-0.00730552493463
+UniRef50_I6SY16		0.000240760195392	6.04125547655e-05	-0.000180347640626
+UniRef50_D2PY67	ABC transporter related protein	0.000301988791085	0.00680960494108	0.00650761614999
+UniRef50_P22344		0.0351935426953	0.00642975647167	-0.0287637862236
+UniRef50_H4CJE2	Bacterial regulatory s, gntR family protein	0.00389415190696	0.000456675317307	-0.00343747658965
+UniRef50_UPI00021A48D6	PREDICTED	8.32206896854e-05	8.6570499113e-05	3.3498094276e-06
+UniRef50_A6VAY7	Membrane protein, putative	0.00183908970067	0.00254914428892	0.00071005458825
+UniRef50_P17802	A G specific adenine glycosylase	0.00541156774029	0.00141551153993	-0.00399605620036
+UniRef50_Q8ET44	2 hydroxypenta 2,4 dienoate hydratase	0.00815080018727	0.00491796919772	-0.00323283098955
+UniRef50_G2JI07	Transcriptional regulator	0.000784345074076	0.00361623073966	0.00283188566558
+UniRef50_Q2NFZ8	50S ribosomal protein L13	0.00189180433271	0.0274751738243	0.0255833694916
+UniRef50_P47385	Ribonuclease J	4.55987292977e-06	3.11483224045e-06	-1.44504068932e-06
+UniRef50_C1CA92	Mobile genetic element	2.6428768201e-05	0.00012287974001	9.6450971809e-05
+UniRef50_UPI00037DF719	hypothetical protein, partial	5.76331182378e-05	2.03944170625e-05	-3.72387011753e-05
+UniRef50_Q8DUT9		0.00551095360208	0.00208127453603	-0.00342967906605
+UniRef50_UPI00037DF44A	molybdate ABC transporter permease	4.24050906562e-05	4.48225756857e-05	2.4174850295e-06
+UniRef50_Q21RX2		0.000381076924197	0.000107670793581	-0.000273406130616
+UniRef50_A0A024HLH2		9.21628968707e-05	2.31199679607e-05	-6.904292891e-05
+UniRef50_A3X988		0.00023671967473	1.80090402131e-05	-0.000218710634517
+UniRef50_C4ZT30	Endoribonuclease SymE	0.000666157507638	0.0010361989656	0.000370041457962
+UniRef50_K1LFR3		1.87187419284e-05	9.06098124848e-05	7.18910705564e-05
+UniRef50_A0Q196	DNA gyrase, A subunit	0.000454878417847	0.000705479092612	0.000250600674765
+UniRef50_P25748	HTH type transcriptional regulator GalS	0.00906802042389	0.00125388142012	-0.00781413900377
+UniRef50_D6AT21		0.000121900749898	9.99867107053e-05	-2.19140391927e-05
+UniRef50_UPI000367E513	hypothetical protein	0.000142653801834	3.14117731554e-05	-0.000111242028679
+UniRef50_Q5HGH1	Isoprenyl transferase	0.00639455120327	0.0030854806892	-0.00330907051407
+UniRef50_A0A058ZPK5		2.86432061453e-05	5.89014362011e-05	3.02582300558e-05
+UniRef50_UPI000466E6FA	3 oxoacyl ACP synthase, partial	3.39841490146e-05	3.26659521527e-05	-1.3181968619e-06
+UniRef50_O26091	RlpA like lipoprotein	0.000340685847228	0.00355536265083	0.0032146768036
+UniRef50_UPI000380CA6B	hypothetical protein	4.68509779545e-05	4.07735366546e-05	-6.0774412999e-06
+UniRef50_A8MM09	Diguanylate cyclase	0.000477780525616	0.000165443532329	-0.000312336993287
+UniRef50_P33772	N acetylmuramoyl L alanine amidase AmiA	0.0017278024531	0.000619934767226	-0.00110786768587
+UniRef50_UPI00036F5D2F	hypothetical protein, partial	8.00072190209e-06	3.48437832804e-05	2.68430613783e-05
+UniRef50_UPI000416A546	hypothetical protein	3.22802967201e-05	9.06029141938e-06	-2.32200053007e-05
+UniRef50_B5FV81	KLLA0D19929p	0.00264584140756	0.00522324190859	0.00257740050103
+UniRef50_Q6MIR4	NADH quinone oxidoreductase subunit B	1.03992571282e-05	3.35844194903e-05	2.31851623621e-05
+UniRef50_I0C718	Integral membrane protein	0.01477288785	0.000477601140485	-0.0142952867095
+UniRef50_UPI0004640768	hypothetical protein	5.40357463613e-05	2.45202074406e-05	-2.95155389207e-05
+UniRef50_UPI0003B6DF5B	hemin receptor	1.15137464635e-05	5.52635647935e-05	4.374981833e-05
+UniRef50_D4X8Q2	ParB like protein	4.16891923588e-05	1.54690481469e-05	-2.62201442119e-05
+UniRef50_G7EHM5		0.00010656326808	0.000195590001222	8.9026733142e-05
+UniRef50_P45563	Purine nucleoside phosphorylase 2	0.0028885442046	0.000218753114953	-0.00266979108965
+UniRef50_B6TQL9		6.96584544903e-06	0.000151517577573	0.000144551732124
+UniRef50_Q9C550	2 isopropylmalate synthase 2, chloroplastic	1.15794674952e-05	5.14381570425e-06	-6.43565179095e-06
+UniRef50_A5EYT7	NH dependent NAD(+) synthetase	1.44185027218e-05	0.000106878215892	9.24597131702e-05
+UniRef50_I8HVI3		0.00131681158902	3.62998440141e-05	-0.00128051174501
+UniRef50_R7BPR1	D amino acid transaminase	0.000358628526425	0.00221779501072	0.00185916648429
+UniRef50_P59872	Acetyl coenzyme A synthetase	0.000273613063041	0.0468117745856	0.0465381615226
+UniRef50_UPI000474B8D5	ABC transporter ATP binding protein	2.62477395065e-05	1.51588743181e-05	-1.10888651884e-05
+UniRef50_UPI0004772A28	phospholipase	3.32334991836e-05	4.04094670606e-05	7.175967877e-06
+UniRef50_UPI0003806FFB	hypothetical protein	0.000203647012719	3.11288361973e-05	-0.000172518176522
+UniRef50_X5PNE7		0.00139836171138	0.000278010385417	-0.00112035132596
+UniRef50_C5C445	YCII related protein	3.86717879019e-05	1.93713029451e-05	-1.93004849568e-05
+UniRef50_S5XXL2		3.22692709622e-06	6.46454656554e-06	3.23761946932e-06
+UniRef50_Q9LCJ9	FmtB	0.000670591900274	0.000121159347838	-0.000549432552436
+UniRef50_UPI00041BC991	mechanosensitive ion channel protein MscL	1.33203356731e-05	1.98705563716e-05	6.5502206985e-06
+UniRef50_A0A017HRC2		0.00026345740223	2.74169289687e-05	-0.000236040473261
+UniRef50_UPI00037F91DA	hypothetical protein	2.52918923461e-06	1.17066579213e-05	9.17746868669e-06
+UniRef50_Q1GDV5		4.50863202773e-05	6.20203134595e-05	1.69339931822e-05
+UniRef50_F8UHK9	IS4 family transposase 	1.4757032753e-05	3.03000379087e-05	1.55430051557e-05
+UniRef50_A2SD53	8 amino 7 oxononanoate synthase	2.78247957257e-05	5.42821088302e-06	-2.23965848427e-05
+UniRef50_UPI000479CA29	ABC transporter permease	5.14586969163e-06	5.59848395694e-05	5.08389698778e-05
+UniRef50_Q5SJ45	Valine  tRNA ligase	2.01663350434e-06	4.20065913411e-06	2.18402562977e-06
+UniRef50_P37127	Protein AegA	0.00559429278276	0.00384082208818	-0.00175347069458
+UniRef50_P45537		0.00230285736921	0.000480143836312	-0.0018227135329
+UniRef50_UPI0003730FF4	hypothetical protein	2.0507725822e-06	6.87904131277e-05	6.67396405455e-05
+UniRef50_UPI0003792FEF	thioredoxin, partial	0.000241897474492	7.1392197663e-05	-0.000170505276829
+UniRef50_UPI00039C7ED5	UDP N acetylglucosamine 1 carboxyvinyltransferase	8.46256784066e-06	1.33416252064e-05	4.87905736574e-06
+UniRef50_P0ACN0		0.00165098908463	0.000546882787401	-0.00110410629723
+UniRef50_Q83GA7	Oligoribonuclease	4.64134230695e-05	1.8172971284e-05	-2.82404517855e-05
+UniRef50_UPI00037DBB4D	hypothetical protein	4.94693563624e-06	7.82835838134e-06	2.8814227451e-06
+UniRef50_E1VBT7	Na H(+) antiporter NhaD	0.0129402022105	0.00213583080506	-0.0108043714054
+UniRef50_Q3M8C8	Lysine  tRNA ligase	3.70186612876e-06	1.46029912792e-05	1.09011251504e-05
+UniRef50_UPI00037733AF	hypothetical protein, partial	6.90420791812e-05	0.000196108699003	0.000127066619822
+UniRef50_UPI000364EBAA	hypothetical protein	1.13175177822e-05	3.01349704651e-05	1.88174526829e-05
+UniRef50_A4EBS8		5.85008665216e-05	1.68311918781e-06	-5.68177473338e-05
+UniRef50_D8LTU3		0.000218438073365	2.36353112865e-05	-0.000194802762078
+UniRef50_Q5HEZ3	Putative fluoride ion transporter CrcB 1	0.0039885252192	0.00147963431839	-0.00250889090081
+UniRef50_W2EZB5		6.44563408774e-06	9.85697653249e-06	3.41134244475e-06
+UniRef50_B1YHH7	Na+ H+ antiporter MnhB subunit related protein	7.97976087521e-06	7.49897557177e-05	6.70099948425e-05
+UniRef50_F0P908	Transcriptional regulator, GntR family	0.00521188900623	0.0015092310375	-0.00370265796873
+UniRef50_V9W7G7		2.97935388736e-05	0.000182954545271	0.000153161006397
+UniRef50_A0A038GMN1		0.000413305827211	0.000256425503788	-0.000156880323423
+UniRef50_U4QJA4	Extracellular ligand binding receptor	0.000695194900568	0.00200064694203	0.00130545204146
+UniRef50_UPI00045E1D0A	PREDICTED	3.02749735265e-06	7.14136420501e-06	4.11386685236e-06
+UniRef50_A9KHS7	Radical SAM domain protein	8.57273252495e-05	0.000282527757878	0.000196800432629
+UniRef50_Q9KWU8	DNA directed RNA polymerase subunit alpha	1.66600072268e-05	0.0001094389646	9.27789573732e-05
+UniRef50_P46707	Probable acetyl CoA acetyltransferase	6.26475621396e-06	6.09770284373e-05	5.47122722233e-05
+UniRef50_D9X888	Integral membrane protein	1.42132163247e-05	6.13919298622e-05	4.71787135375e-05
+UniRef50_Q3IV17	Putative threonine efflux protein	0.00991865729053	0.00238140564875	-0.00753725164178
+UniRef50_P31126		0.00319862055069	0.000832040179338	-0.00236658037135
+UniRef50_UPI000475237F	hypothetical protein	0.000154174154842	5.68930370085e-05	-9.72811178335e-05
+UniRef50_Q6MBY2	Protoheme IX farnesyltransferase	5.4557248113e-06	1.59576093072e-05	1.05018844959e-05
+UniRef50_UPI0002558CFD	HD superfamily hydrolase like protein, partial	0.000185163183024	0.000291960368577	0.000106797185553
+UniRef50_UPI00016C46AD	probable chromosome partitioning protein parB	7.56617608243e-06	0.000592340631102	0.00058477445502
+UniRef50_UPI00037F23A8	hypothetical protein	3.81823609609e-05	4.05665449352e-05	2.3841839743e-06
+UniRef50_B2ICS4	Putative DNA topology modulation protein FlaR	1.08381131848e-05	2.174523502e-05	1.09071218352e-05
+UniRef50_E3A1I0	Putative transcriptional accessory protein	0.000513718119008	0.000697316913152	0.000183598794144
+UniRef50_B1GZT3	Chorismate synthase	1.63136524433e-05	0.000158076098603	0.00014176244616
+UniRef50_UPI0002B47979	PREDICTED	6.35580399989e-06	4.18161164959e-05	3.5460312496e-05
+UniRef50_Q02C42	Allantoinase	9.99641442404e-06	3.97076371003e-05	2.97112226763e-05
+UniRef50_A0A011PY56	Putative acetyltransferase	0.000255571688864	5.1126970555e-05	-0.000204444718309
+UniRef50_UPI0003B33483	MULTISPECIES	4.9594058738e-05	2.7088950413e-05	-2.2505108325e-05
+UniRef50_A4WVT7	Lytic transglycosylase, catalytic	0.00354223458085	0.00026134221699	-0.00328089236386
+UniRef50_A6FVD1		4.71569952194e-05	2.46568339008e-05	-2.25001613186e-05
+UniRef50_W4YP60		3.62713540647e-05	8.74686114986e-05	5.11972574339e-05
+UniRef50_W4YP61		2.9119806403e-05	2.61324401648e-06	-2.65065623865e-05
+UniRef50_A0A024HY78		7.33608045297e-06	7.29619251054e-05	6.56258446524e-05
+UniRef50_A0A024HY79		4.28769904659e-06	6.44825016876e-06	2.16055112217e-06
+UniRef50_L6T5N5	CRISPR associated helicase Cas3 	1.99475568817e-05	3.18868695041e-05	1.19393126224e-05
+UniRef50_UPI000368B121	hypothetical protein	6.66846154536e-06	5.97946071645e-05	5.31261456191e-05
+UniRef50_Q2FDY2	Putative NADH nitroreductase SAUSA300_2462	0.0163025235974	0.00437974558027	-0.0119227780171
+UniRef50_UPI000471156C	MULTISPECIES	0.000157818309519	1.55737033255e-05	-0.000142244606193
+UniRef50_UPI0003683BB9	hypothetical protein	7.64237766151e-06	0.00089575464249	0.000888112264828
+UniRef50_Z9JK63	Transposase	6.03336371628e-06	0.000908198255688	0.000902164891972
+UniRef50_A0A023Y025	Multidrug transporter	0.00584173558641	0.001378610379	-0.00446312520741
+UniRef50_UPI000474A653	guanine permease	2.25674243247e-05	5.92086387479e-06	-1.66465604499e-05
+UniRef50_D0K5S8	Ftsk spoiiie family protein	0.00854272438723	0.000912030060158	-0.00763069432707
+UniRef50_UPI00036ED578	hypothetical protein, partial	4.36651411896e-05	4.2235817148e-05	-1.4293240416e-06
+UniRef50_J7N103	Cell wall surface anchor family protein 	1.77054004094e-05	8.71998145347e-05	6.94944141253e-05
+UniRef50_P77828	10 kDa chaperonin 1	0.00040300995251	0.0100291862261	0.00962617627359
+UniRef50_R5QB36		0.0060207087997	0.00518220577343	-0.00083850302627
+UniRef50_UPI00040C1A22	succinate semialdehyde dehydrogenase	9.88462858088e-06	2.81851516231e-05	1.83005230422e-05
+UniRef50_O54151	3 oxoacyl [acyl carrier protein] synthase 3 protein 3	4.45758900914e-06	7.47580764492e-06	3.01821863578e-06
+UniRef50_E3DNN6	Binding protein dependent transport systems inner membrane component	0.000136605303564	0.0563983677778	0.0562617624742
+UniRef50_Q46834	Putative type II secretion system C type protein YghF	0.00413750315515	0.00193058979619	-0.00220691335896
+UniRef50_UPI0003677725	hypothetical protein	1.45210897562e-05	2.09982697464e-05	6.4771799902e-06
+UniRef50_R9K990		0.000141367985016	7.68845884024e-05	-6.44833966136e-05
+UniRef50_Q6GJM8		0.0755007529771	0.01629437357	-0.0592063794071
+UniRef50_Q9LXS6	Citrate synthase 2, peroxisomal	9.69541613356e-06	4.03679563109e-05	3.06725401773e-05
+UniRef50_R6ND25	N acetylmannosamine kinase	0.000985350082675	0.00164154672689	0.000656196644215
+UniRef50_G2JIZ7	Methionine import ATP binding protein MetN	0.000438987184999	0.00327827958547	0.00283929240047
+UniRef50_A5IQI8		0.0125731150065	0.00442567338981	-0.00814744161669
+UniRef50_Q9I1X7	Multifunctional non homologous end joining protein LigD	9.36179702101e-05	0.000238244598237	0.000144626628027
+UniRef50_C9WZF0		0.000996210958277	0.000832357385113	-0.000163853573164
+UniRef50_L1ITB2		0.000206659019779	6.49339461628e-05	-0.000141725073616
+UniRef50_UPI00036D7E16	hypothetical protein	5.24416439317e-06	6.60785268229e-06	1.36368828912e-06
+UniRef50_G2U6X6		0.000201603468197	0.000109936523364	-9.1666944833e-05
+UniRef50_Y1DKJ6	Alpha glucosidase yihQ	0.00224037425686	0.000481869487784	-0.00175850476908
+UniRef50_UPI0003762D52	hypothetical protein	2.36734195231e-05	1.6921106725e-05	-6.7523127981e-06
+UniRef50_P78285	Lysozyme RrrD	0.000845679486144	0.00234885877881	0.00150317929267
+UniRef50_O26565		0.00297764657233	0.000436386296078	-0.00254126027625
+UniRef50_Q8XAS8	Ferrous iron permease EfeU	0.0033069104539	0.000232228077477	-0.00307468237642
+UniRef50_A5UMC5	Predicted metal dependent membrane protease	0.00395799030476	0.000711609072484	-0.00324638123228
+UniRef50_Q05762	Bifunctional dihydrofolate reductase thymidylate synthase 1	9.39046864504e-06	1.98891741525e-05	1.04987055075e-05
+UniRef50_P76065		0.00144194394776	0.000913545328939	-0.000528398618821
+UniRef50_UPI0003F08F9D	PREDICTED	1.41126510563e-05	2.10916002321e-05	6.9789491758e-06
+UniRef50_Q2NBI6		0.000289726178842	8.42070123898e-05	-0.000205519166452
+UniRef50_E3A6K9		5.35868456969e-05	4.02338835485e-05	-1.33529621484e-05
+UniRef50_UPI00031A8C2B	hypothetical protein	5.2269522121e-05	3.28552967736e-05	-1.94142253474e-05
+UniRef50_Q8P013		0.000235142866621	0.00023455441151	-5.88455111e-07
+UniRef50_A0LH56	Bifunctional protein PyrR	1.97230956949e-05	7.88110498961e-05	5.90879542012e-05
+UniRef50_C9A4C5	Universal bacterial protein YeaZ	0.00475317918058	0.00300126290854	-0.00175191627204
+UniRef50_UPI00036C9E20	hypothetical protein	2.35852343077e-05	2.48210644939e-05	1.2358301862e-06
+UniRef50_P0AEA0	Curli production assembly transport component CsgF	0.00185648846977	0.000866454880764	-0.000990033589006
+UniRef50_UPI00035005CE	PREDICTED	0.000242659520452	0.000363094309672	0.00012043478922
+UniRef50_E2CI08	Membrane bound lytic murein transglycosylase A	0.000256230695123	0.000336626033459	8.0395338336e-05
+UniRef50_UPI000299DD27	signal recognition particle protein, partial	1.3826971185e-05	7.07536180026e-05	5.69266468176e-05
+UniRef50_P32701	Putative cyclic di GMP phosphodiesterase YjcC	0.00115728853815	0.00102980320599	-0.00012748533216
+UniRef50_G9RRR3		1.11519059968e-05	0.000349501736738	0.000338349830741
+UniRef50_UPI00047ACFC0	glutamyl tRNA amidotransferase	1.29682592136e-05	5.49689336837e-06	-7.47136584523e-06
+UniRef50_J1CAV3		0.0004438756278	8.72091777161e-05	-0.000356666450084
+UniRef50_Q5HL30	Transcriptional regulator, LysR family	0.00785878644397	0.00256951626669	-0.00528927017728
+UniRef50_UPI00046AB4F5	hypothetical protein	0.000371846177253	2.06689908995e-05	-0.000351177186354
+UniRef50_A6LTS7	Stage V sporulation protein E	0.000124582834604	0.00124398430982	0.00111940147522
+UniRef50_R7EZW8		6.66559876749e-05	5.44434779106e-05	-1.22125097643e-05
+UniRef50_U8X5K1		7.54222420008e-06	0.00310507668615	0.00309753446195
+UniRef50_D7A419	ABC transporter related protein	0.00269122528164	0.00139676538112	-0.00129445990052
+UniRef50_Q2NRT0		0.00059968629877	0.000138537938329	-0.000461148360441
+UniRef50_Q0AW39	Imidazoleglycerol phosphate dehydratase	1.0143461962e-05	1.53887614515e-05	5.2452994895e-06
+UniRef50_J4J838	Proline glycine betaine ABC transporter periplasmic protein	5.39796058107e-05	7.94777510129e-06	-4.60318307094e-05
+UniRef50_Q8CUB7		0.037625246692	0.0112208022931	-0.0264044443989
+UniRef50_Q9RV62	NADH pyrophosphatase	0.000141028389365	0.0311817471377	0.0310407187483
+UniRef50_Q52664	Glutamate glutamine aspartate asparagine transport system permease protein BztB	0.00901788248812	0.00299393813178	-0.00602394435634
+UniRef50_A3MLT7	Histidine ammonia lyase	0.000813483937471	0.0078150551855	0.00700157124803
+UniRef50_M4WY62	Non specific serine threonine protein kinase	5.83741219845e-05	7.64079444229e-05	1.80338224384e-05
+UniRef50_UPI0003123F96	hypothetical protein	2.077372337e-05	2.09310507443e-05	1.573273743e-07
+UniRef50_UPI00036BA2FA	hypothetical protein	1.87425802593e-05	0.000587294078934	0.000568551498675
+UniRef50_UPI0004279204	ABC transporter substrate binding protein	9.93880033057e-06	4.8305296426e-05	3.83664960954e-05
+UniRef50_I0C5Y5		0.0127271333544	0.0170454250119	0.0043182916575
+UniRef50_V9VWJ8	2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	7.30273036311e-05	4.63605909159e-05	-2.66667127152e-05
+UniRef50_W4TIC1	Lysophospholipase L2	1.37000918514e-05	7.36587209376e-05	5.99586290862e-05
+UniRef50_UPI000475C78C	hypothetical protein	4.05272102845e-06	4.51399431638e-06	4.6127328793e-07
+UniRef50_UPI000478596D	hypothetical protein, partial	5.46589816024e-05	0.000179831154806	0.000125172173204
+UniRef50_UPI0004776897	50S ribosomal protein L21	1.75735937399e-05	0.000427376557539	0.000409802963799
+UniRef50_Q57725	Probable acetolactate synthase large subunit	0.00317878869786	0.000755076734394	-0.00242371196347
+UniRef50_I0DU68	Pirin like protein	6.40012533574e-06	9.73732670135e-06	3.33720136561e-06
+UniRef50_G4RE73	Glutaredoxin	0.00321116601003	0.00195250714179	-0.00125865886824
+UniRef50_B5EZL8	UPF0208 membrane protein YfbV	0.00319075492974	0.000473770115279	-0.00271698481446
+UniRef50_UPI0003792331	hypothetical protein	0.000122042895546	2.60174489607e-05	-9.60254465853e-05
+UniRef50_P63482	Alanine racemase 2	0.0194382773403	0.00493593055764	-0.0145023467827
+UniRef50_U9FP56		0.000345281634012	0.000271763839138	-7.3517794874e-05
+UniRef50_B4UAT5	MJ0042 family finger like protein	1.93000214367e-05	0.000140330047224	0.000121030025787
+UniRef50_A7FBU7		0.000612830389931	0.0091483827415	0.00853555235157
+UniRef50_Q8FDG8	L tartrate dehydratase subunit alpha	0.00474467535037	0.000147448845305	-0.00459722650506
+UniRef50_G5Q5Z8	Outer membrane protein NlpB	0.0016344332665	0.000649697949665	-0.000984735316835
+UniRef50_A5IPG6		0.0137905195811	0.00246252002941	-0.0113279995517
+UniRef50_UPI0002ADAB72		0.000357916926859	0.000107403963639	-0.00025051296322
+UniRef50_A5IPG3		0.0140582363333	0.000300831957759	-0.0137574043755
+UniRef50_D0LXH2		1.12636842298e-05	7.26125288652e-05	6.13488446354e-05
+UniRef50_A6M239	PTS system fructose subfamily IIA component	0.000268354968373	0.000420878914765	0.000152523946392
+UniRef50_Q6MBM7	Succinyl CoA ligase [ADP forming] subunit beta	8.02649982762e-06	1.88494142906e-05	1.0822914463e-05
+UniRef50_UPI000463ADD2	hypothetical protein	3.13657862573e-06	3.92441346315e-05	3.61075560058e-05
+UniRef50_P24735	Beta lactamase	0.00159601701204	0.000224575441206	-0.00137144157083
+UniRef50_UPI00036198F2	hypothetical protein	2.11409597385e-06	1.74394885941e-05	1.53253926203e-05
+UniRef50_UPI0003B66134	deoxyguanosinetriphosphate triphosphohydrolase	7.86416237334e-05	2.10119971713e-05	-5.76296265621e-05
+UniRef50_Q4KJK0	Arginine  tRNA ligase	0.00645536126859	0.00196814494161	-0.00448721632698
+UniRef50_A5UMU3	Glycosyltransferase, GT2 family	0.00466841516088	0.000531396657464	-0.00413701850342
+UniRef50_Q8XE72	2 dehydropantoate 2 reductase	0.00502073030654	0.00109589483159	-0.00392483547495
+UniRef50_B5YKP8	Phenylacrylic acid decarboxylase	0.000846406121886	0.000324523851863	-0.000521882270023
+UniRef50_Q0SR44	Cell division topological specificity factor	0.000477830365635	0.0011734438617	0.000695613496065
+UniRef50_S4X915	Beta hemolysin	0.00343307767155	0.00089489910665	-0.0025381785649
+UniRef50_W6M0A7		0.000192414723598	0.00325572043706	0.00306330571346
+UniRef50_G0DV19	Efflux ABC transporter, permease protein	0.00024066891731	0.00457644486667	0.00433577594936
+UniRef50_UPI000362EEF4	hypothetical protein	2.58021666945e-06	5.27664686068e-06	2.69643019123e-06
+UniRef50_Q0A4X2	DNA polymerase IV	3.56584603617e-06	8.80782033673e-06	5.24197430056e-06
+UniRef50_UPI0003736343	hypothetical protein, partial	2.87496441029e-05	9.98253651381e-05	7.10757210352e-05
+UniRef50_U5MKI7	Subtilisin like serine protease	0.000317632099203	0.00152716326649	0.00120953116729
+UniRef50_Q2GEH7	Adenylosuccinate synthetase	3.83765424865e-06	1.31342562849e-05	9.29660203625e-06
+UniRef50_I1Q3T9		7.45960385152e-05	0.000127305251015	5.27092124998e-05
+UniRef50_R5PZK9	Aldo keto reductase	0.000299371166668	0.0015931120747	0.00129374090803
+UniRef50_Q4UUD9	Flagellar biosynthesis switch protein	0.000852955945528	0.000212968777781	-0.000639987167747
+UniRef50_Q9I3P5		0.000145560149942	0.000183807077915	3.8246927973e-05
+UniRef50_A4WCP8	2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase	0.00244889870577	0.000262893209369	-0.0021860054964
+UniRef50_A9LZI0	ABC transporter ATP binding protein	0.000183542620181	0.00240146314219	0.00221792052201
+UniRef50_F4FKW9		0.005389676597	0.00242726059064	-0.00296241600636
+UniRef50_B5EZK0	NADH quinone oxidoreductase subunit K	6.16442237463e-05	8.22490148817e-05	2.06047911354e-05
+UniRef50_U5MVT4	Nodulation protein NolG	0.000624701597215	0.00248638227097	0.00186168067376
+UniRef50_A5G6M1	Tryptophan synthase alpha chain	1.46743032333e-05	8.24713619239e-06	-6.42716704091e-06
+UniRef50_UPI000372C358	hypothetical protein	4.38937431636e-06	1.17332775682e-05	7.34390325184e-06
+UniRef50_K7RNR2	Succinate dehydrogenase subunit C	0.00117113257725	0.00761459230597	0.00644345972872
+UniRef50_M1CWG1		2.34057918923e-05	0.000209732892648	0.000186327100756
+UniRef50_P28304	Quinone oxidoreductase 1	0.00388343496321	0.000794674597738	-0.00308876036547
+UniRef50_T0V3S5		8.55779831705e-05	1.5291291665e-05	-7.02866915055e-05
+UniRef50_UPI0003291247	PREDICTED	1.20396535447e-05	0.000880102260044	0.000868062606499
+UniRef50_Q94523	Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	2.74739080526e-06	4.4004260012e-06	1.65303519594e-06
+UniRef50_Q46832	Putative type II secretion system M type protein YghD	0.00474062141734	0.00191710303513	-0.00282351838221
+UniRef50_UPI000378EA8F	hypothetical protein	1.77333219193e-06	2.82764477725e-06	1.05431258532e-06
+UniRef50_I1ZM50	Cytosine specific methyltransferase	0.000813507857067	0.00486354440158	0.00405003654451
+UniRef50_D8JGN7	Surface antigen family protein	0.000129127810593	0.00618591702472	0.00605678921413
+UniRef50_UPI0002BA2677	hypothetical protein, partial	1.9838755858e-05	0.000655513760179	0.000635675004321
+UniRef50_A6M2Z1	Membrane protein containing C terminal PDZ domain	0.000102392221207	0.000961970691309	0.000859578470102
+UniRef50_A0JW97	4 hydroxyphenylacetate 3 monooxygenase oxygenase component	0.000188307819643	0.000348748837992	0.000160441018349
+UniRef50_UPI000255C63D	FhuG, partial	0.00012800735402	3.39194000109e-05	-9.40879540091e-05
+UniRef50_UPI0002653F14	PREDICTED	4.25237102377e-05	4.65983926492e-07	-4.20577263112e-05
+UniRef50_UPI0003B5B2C4	NADH dehydrogenase subunit L, partial	9.34724069736e-06	7.78127528894e-06	-1.56596540842e-06
+UniRef50_X7EC41		0.000118063471479	0.000379988849641	0.000261925378162
+UniRef50_U5W2Y7		1.14247247241e-05	7.7444781128e-06	-3.6802466113e-06
+UniRef50_B9KUD4		0.00108890189092	0.0015542984484	0.00046539655748
+UniRef50_F0RMA7	Polyphosphate	0.000448502806262	0.0500165458335	0.0495680430272
+UniRef50_R6CQ31		1.84534311822e-05	0.000129756681949	0.000111303250767
+UniRef50_U6LIN1	TPR domain containing protein, putative	2.37272158289e-06	3.20404851566e-06	8.3132693277e-07
+UniRef50_I0THL6	Branched chain amino acid transport protein AzlD	0.000250918091595	8.21251801589e-05	-0.000168792911436
+UniRef50_Q2FX83		0.00295250778181	0.000258463341208	-0.0026940444406
+UniRef50_Q2FX82		0.00600738176552	0.000282186342579	-0.00572519542294
+UniRef50_Q87VA4	Glutathione synthetase	0.00250477832542	1.47756337913e-05	-0.00249000269163
+UniRef50_Q92W60	Ribose import ATP binding protein RbsA 2	2.85111657138e-05	1.43370311099e-05	-1.41741346039e-05
+UniRef50_G7LXK1		0.000382028850527	0.00101946315988	0.000637434309353
+UniRef50_Q8ZP50	Outer membrane protein W	0.00214371774459	0.00265284403128	0.00050912628669
+UniRef50_A9M0L0	ATP dependent RNA helicase HrpA	8.21669762549e-05	0.00291963578525	0.002837468809
+UniRef50_W4TIL7		0.000431371003163	0.00335523347021	0.00292386246705
+UniRef50_E1HJW0	Pertactin 	0.00228474159094	0.000276362630948	-0.00200837895999
+UniRef50_U5US72		0.00160775083463	0.0113542326449	0.00974648181027
+UniRef50_UPI00036A56E1	hypothetical protein	2.7243295977e-05	9.33061411336e-06	-1.79126818636e-05
+UniRef50_S9SLK2		9.9059743932e-05	2.9423694168e-05	-6.9636049764e-05
+UniRef50_UPI0004203E19	hypothetical protein	8.30973138143e-06	1.08022290303e-05	2.49249764887e-06
+UniRef50_UPI0003C154AA	PREDICTED	1.8195759318e-06	2.75172738936e-05	2.56976979618e-05
+UniRef50_G7U653		0.000146123608583	0.00168723475994	0.00154111115136
+UniRef50_C6W3G1	Aminotransferase class I and II	0.00058010425734	0.00277925056774	0.0021991463104
+UniRef50_UPI00042431D1	hypothetical protein	2.08164410094e-05	7.53906005341e-06	-1.3277380956e-05
+UniRef50_T2HSJ7	F pilus assembly protein	8.75712949714e-05	2.40291068814e-05	-6.354218809e-05
+UniRef50_I0C7C9	dTDP glucose 4,6 dehydratase	0.0106241732942	0.00110387198207	-0.00952030131213
+UniRef50_R7PW61	Type IV leader peptidase	0.000518067696928	0.00107603825425	0.000557970557322
+UniRef50_E8SGS1		0.0118104355609	0.00184705884496	-0.00996337671594
+UniRef50_Q8DUK2		0.0108637471843	0.00300698495088	-0.00785676223342
+UniRef50_A8GY42	ATP synthase subunit alpha	4.03695507321e-06	1.0537664197e-05	6.50070912379e-06
+UniRef50_Q6FUF3	GMP synthase [glutamine hydrolyzing]	3.01478731712e-05	3.14852876128e-05	1.3374144416e-06
+UniRef50_G4Q6V2	Carbamoyl phosphate synthase large chain	0.0053950695308	0.00909900178838	0.00370393225758
+UniRef50_K4PQ99	Clostridial hydrophobic W	0.000370043538567	0.000180502254133	-0.000189541284434
+UniRef50_UPI00035C4E3D	hypothetical protein	8.62094795342e-06	0.000166166518087	0.000157545570134
+UniRef50_P13570	Bacterioferritin 	0.000121118115786	4.95380389212e-05	-7.15800768648e-05
+UniRef50_G7M0S1	Lysine  tRNA ligase	0.000498355565453	0.000534690105858	3.6334540405e-05
+UniRef50_R9YJ81	Thioester reductase domain protein	0.0139008014083	0.00316885958878	-0.0107319418195
+UniRef50_UPI0003B42AEE	C4 dicarboxylate ABC transporter	1.21380618432e-05	5.35186028148e-05	4.13805409716e-05
+UniRef50_B3QR98	DNA directed RNA polymerase subunit alpha	1.70546956108e-05	5.2309565297e-05	3.52548696862e-05
+UniRef50_C4LJ74	Polyribonucleotide nucleotidyltransferase	2.43187919393e-06	7.08024576682e-06	4.64836657289e-06
+UniRef50_UPI0003B4EE97	helicase SNF2	1.57710266133e-06	0.000145822703997	0.000144245601336
+UniRef50_UPI00036D95BA	hypothetical protein	1.24205654077e-05	1.57224219241e-05	3.3018565164e-06
+UniRef50_B4RQR5	MafB5	7.73008850942e-05	0.0112981725091	0.011220871624
+UniRef50_S2WYG7		4.4949093766e-06	1.39708656945e-05	9.4759563179e-06
+UniRef50_Q2NFU2	Glutamate  tRNA ligase	0.00417260545942	0.00025223600293	-0.00392036945649
+UniRef50_C5N0Q7	Transition metal uptake transporter, Ni2+ Co2+ transporter  family	0.0119055975031	0.00189995209721	-0.0100056454059
+UniRef50_P0A084	Peptide methionine sulfoxide reductase MsrA 1	0.00359161530083	0.00157319561264	-0.00201841968819
+UniRef50_J9P4P6		0.000187498079265	0.000366771152395	0.00017927307313
+UniRef50_F0Y4U2		0.000248090074845	0.000406830410055	0.00015874033521
+UniRef50_UPI0002652BE7	PREDICTED	2.43837977446e-05	1.37315801897e-05	-1.06522175549e-05
+UniRef50_A6LTC6	Methyl accepting chemotaxis sensory transducer	0.000376434544841	0.00169311165696	0.00131667711212
+UniRef50_P0AGG1	Thiamine monophosphate kinase	0.00213029514292	0.00128822028526	-0.00084207485766
+UniRef50_O31875	Ribonucleoside diphosphate reductase NrdEB subunit alpha	1.32583882405e-05	0.00618116651266	0.00616790812442
+UniRef50_W4FVH2		5.9417141252e-05	4.83822280636e-05	-1.10349131884e-05
+UniRef50_A5UKG7	SAM dependent methyltransferase, UbiE CobQ family	0.00233279535001	0.000406399135599	-0.00192639621441
+UniRef50_UPI0002629825	monosaccharide ABC transporter ATP binding protein	1.98586295553e-05	5.45882800605e-05	3.47296505052e-05
+UniRef50_J3LY38		0.00336713743001	0.00220120321928	-0.00116593421073
+UniRef50_O85673	Anthranilate 1,2 dioxygenase large subunit	0.000551156015442	0.00752400659321	0.00697285057777
+UniRef50_Q1GKJ0		2.9560558398e-05	2.35686286387e-05	-5.9919297593e-06
+UniRef50_O24457	Pyruvate dehydrogenase E1 component subunit alpha 3, chloroplastic	4.11267291154e-06	1.48091951232e-05	1.06965222117e-05
+UniRef50_UPI0002FF342B	hypothetical protein	1.32109089438e-05	4.07281135847e-06	-9.13809758533e-06
+UniRef50_I0JK96	Hit like protein involved in cell cycle regulation	0.00788202306286	0.00492513605913	-0.00295688700373
+UniRef50_A4G1V2	Valine  tRNA ligase	3.32539668324e-06	1.84665725121e-06	-1.47873943203e-06
+UniRef50_W7VMY1		3.61027535641e-05	0.00235043235336	0.0023143295998
+UniRef50_UPI000262925E	hypothetical protein	6.33125089561e-06	2.10032995687e-05	1.46720486731e-05
+UniRef50_Q53143	Diheme cytochrome c type	0.00414200089627	0.000362351785524	-0.00377964911075
+UniRef50_UPI0003760E73	hypothetical protein	0.000206083504335	1.87444355275e-05	-0.000187339068807
+UniRef50_P36547	HTH type transcriptional regulator eutR	0.00467455047681	0.00100464669488	-0.00366990378193
+UniRef50_UPI0003C7FEAE	cation	0.000194262517925	0.000875624012626	0.000681361494701
+UniRef50_M7DZA1	Transcriptional regulator	0.00706374476827	0.00194175979174	-0.00512198497653
+UniRef50_UPI00046569ED	MULTISPECIES	8.68274969527e-06	0.000104171394334	9.54886446387e-05
+UniRef50_S9S8N1		2.55010418744e-05	1.64202098079e-05	-9.0808320665e-06
+UniRef50_A3SJL5		3.73345220017e-05	4.82590790839e-05	1.09245570822e-05
+UniRef50_P0AAP2	Protein AdrA	0.00174797592104	0.00156902743598	-0.00017894848506
+UniRef50_E8SHK7		0.0060322112258	0.00229383215423	-0.00373837907157
+UniRef50_Q4K5Z7	Hemin import ATP binding protein HmuV	1.15190688688e-05	0.00228224289719	0.00227072382832
+UniRef50_A6DX59	FlgJ	7.35022472387e-05	3.94961655918e-05	-3.40060816469e-05
+UniRef50_E6DXQ9		0.000218621229065	0.00298319847351	0.00276457724445
+UniRef50_A3NGC1		3.58875481148e-05	0.00015255365112	0.000116666103005
+UniRef50_C3P501	ATP phosphoribosyltransferase	0.00301331552906	0.00202051483892	-0.00099280069014
+UniRef50_P58939	Carbamoyl phosphate synthase large chain	1.22039021227e-05	1.0202939716e-05	-2.0009624067e-06
+UniRef50_O52058	Biotin carboxylase	0.000292925225503	0.00203149462811	0.00173856940261
+UniRef50_D3QZW7		0.00980680125511	0.00345261939479	-0.00635418186032
+UniRef50_B9JEG2	Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.00771781921498	0.00174667507939	-0.00597114413559
+UniRef50_A0A031JSK7	FAD dependent oxidoreductase	1.89086488443e-05	3.71663561538e-06	-1.51920132289e-05
+UniRef50_UPI00025555DE	ribose transport ATP binding protein RbsA	3.39473502347e-06	4.75876652797e-06	1.3640315045e-06
+UniRef50_UPI0003C17A60	PREDICTED	6.85570190773e-06	3.39654147539e-05	2.71097128462e-05
+UniRef50_Q6A948	Pyridoxal biosynthesis lyase PdxS	0.000163763416959	0.00308210759861	0.00291834418165
+UniRef50_C6D7D6		3.21318552284e-06	5.81024279496e-05	5.48892424268e-05
+UniRef50_Q9VMC6	CG9547	0.00568403392361	0.00624238946759	0.00055835554398
+UniRef50_Q04D50	Dipeptidase A, Cysteine peptidase, MEROPS family C69	0.00625520797827	0.00131196366206	-0.00494324431621
+UniRef50_X1BPY3	Marine sediment metagenome DNA, contig	1.56859376853e-05	1.13933600198e-05	-4.2925776655e-06
+UniRef50_UPI0003DEC72F	PREDICTED	1.03534241082e-05	9.52733061877e-06	-8.2609348943e-07
+UniRef50_A3M193	Transposition Helper	0.000160404811127	0.0102587095515	0.0100983047404
+UniRef50_UPI000471875A	TetR family transcriptional regulator	9.26285140189e-06	1.75328009356e-05	8.26994953371e-06
+UniRef50_UPI00037E1773	DeoR family transcripitonal regulator	3.59992831786e-05	7.5506123645e-06	-2.84486708141e-05
+UniRef50_UPI00036F7656	MULTISPECIES	6.38815966369e-05	1.62419008121e-05	-4.76396958248e-05
+UniRef50_A9B436	30S ribosomal protein S4	0.0168491938428	0.00825516082248	-0.00859403302032
+UniRef50_J7TT99	Transport protein SgaT, putative	0.000199049651704	0.000738472278661	0.000539422626957
+UniRef50_A5UNM1	Glycosyltransferase CDP glycerol	0.00329511126452	0.000256960016771	-0.00303815124775
+UniRef50_C4S247	Hydrogenase nickel incorporation protein	0.000658094955333	0.000123668170407	-0.000534426784926
+UniRef50_W7CHL0		4.11514823816e-06	1.20703088507e-05	7.95516061254e-06
+UniRef50_F2U144		7.35776316135e-05	2.53679291629e-05	-4.82097024506e-05
+UniRef50_J0ZPP4		0.000104784471121	0.00100107357693	0.000896289105809
+UniRef50_W4U3A3	Valyl tRNA synthetase	0.000197807464495	0.00480105231662	0.00460324485213
+UniRef50_P05096	DNA primase	4.15172593969e-06	3.45062285609e-06	-7.011030836e-07
+UniRef50_P44808		0.0010815860551	0.000699858047475	-0.000381728007625
+UniRef50_Q9ZSS6	Threonine dehydratase biosynthetic, chloroplastic	2.12151621216e-06	2.07767117667e-05	1.86551955545e-05
+UniRef50_Q8RLE0	Thymidine kinase	1.20864204236e-05	2.690913555e-05	1.48227151264e-05
+UniRef50_UPI000377E217	hypothetical protein	9.70316545848e-05	0.00111759193717	0.00102056028259
+UniRef50_UPI000467D001	hypothetical protein	7.54851052634e-05	5.24087867663e-05	-2.30763184971e-05
+UniRef50_X7U6C1	PPE family protein	0.000174808702695	4.20955336095e-05	-0.000132713169085
+UniRef50_A3PGB8	Histidine kinase	0.000765268017034	9.94890640735e-05	-0.000665778952961
+UniRef50_G8R7R2	Methyltransferase family protein	0.000565439845776	0.00179088111745	0.00122544127167
+UniRef50_O86564	L serine dehydratase	0.000957011210521	0.000226770720448	-0.000730240490073
+UniRef50_Q040L6	Pyrrolidone carboxylate peptidase	1.79060036398e-05	0.0047394824134	0.00472157640976
+UniRef50_UPI0003F05B0E	PREDICTED	1.19402384799e-05	1.85724110366e-05	6.6321725567e-06
+UniRef50_V4HTY9		0.000283061874041	0.000386506188734	0.000103444314693
+UniRef50_A4XXI2	AzlC family protein	3.45280353157e-05	1.25711181296e-05	-2.19569171861e-05
+UniRef50_F8JSP7		9.36826702177e-07	0.000445451068846	0.000444514242144
+UniRef50_E8UAV0	Ferripyochelin binding protein	6.39937393516e-05	2.70821797696e-05	-3.6911559582e-05
+UniRef50_UPI00047643BC	hypothetical protein	1.34814383621e-05	2.57719857434e-05	1.22905473813e-05
+UniRef50_A6LZP3	LuxR family transcriptional regulator	0.000248772061791	0.000556971100481	0.00030819903869
+UniRef50_UPI00045EBBEF	hypothetical protein	0.000104358822424	8.85737719854e-05	-1.57850504386e-05
+UniRef50_UPI0003799247	hypothetical protein	2.66700391635e-05	3.74003767051e-05	1.07303375416e-05
+UniRef50_F5TD70	Type I site specific deoxyribonuclease, HsdR family	0.00559880477804	0.00146444714773	-0.00413435763031
+UniRef50_UPI00036F6A1E	hypothetical protein	1.38135283087e-05	6.97845353602e-06	-6.83507477268e-06
+UniRef50_H3W5C9		0.000323244902479	0.0016406483622	0.00131740345972
+UniRef50_UPI000479F12E	hypothetical protein	6.12922761945e-06	1.06620708538e-05	4.53284323435e-06
+UniRef50_P0AEV5	Formate hydrogenlyase regulatory protein HycA	0.00312321793233	0.00162559654236	-0.00149762138997
+UniRef50_UPI0004766E4B	hemolysin secretion protein D	1.63186940329e-05	2.74038489784e-05	1.10851549455e-05
+UniRef50_UPI000441FC52	PREDICTED	8.09156270868e-06	1.13267357206e-05	3.23517301192e-06
+UniRef50_A5VUC7	Tetracycline resistance protein	8.65696593872e-05	7.56746574395e-05	-1.08950019477e-05
+UniRef50_UPI0002DF600A	hypothetical protein	2.67984579038e-05	3.77087794666e-06	-2.30275799571e-05
+UniRef50_E0RHV7	Predicted transcriptional regulator	0.000323112341457	0.000883943065643	0.000560830724186
+UniRef50_Q9RY38	Oxidoreductase, short chain dehydrogenase reductase family	0.000118830846434	0.00854821222625	0.00842938137982
+UniRef50_E1VLU5	Short chain dehydrogenase reductase SDR	0.000312396270696	0.00682340946668	0.00651101319598
+UniRef50_W7X1H4		0.00179053598994	0.00023000036649	-0.00156053562345
+UniRef50_UPI000289460A	xanthine permease	7.57070346026e-05	0.000216710396056	0.000141003361453
+UniRef50_H8H074	Phosphoglucomutase phosphomannomutase alpha beta alpha domain I	0.000320127685782	0.0611466447986	0.0608265171128
+UniRef50_R9SM76	CDP glycerol	0.00320596217537	0.00065750923437	-0.002548452941
+UniRef50_Q9YAS0	UPF0219 protein APE_1873.1	0.00309430619939	0.00149517423546	-0.00159913196393
+UniRef50_P0A9E1	Arabinose operon regulatory protein	0.00503968012991	0.000661023478047	-0.00437865665186
+UniRef50_Q3JGP6		5.6645440651e-05	1.70727389123e-06	-5.49381667598e-05
+UniRef50_Q99ZP1	Serine hydroxymethyltransferase	0.000127483777174	0.00851200866412	0.00838452488695
+UniRef50_Q8XMJ3	3 dehydroquinate synthase	0.000147840465605	0.00195151448496	0.00180367401935
+UniRef50_UPI000362B451	PTS fructose transporter subunit IIA	5.68516927744e-06	0.000465761661879	0.000460076492602
+UniRef50_I7DVA3		0.0112495100977	0.00375996269249	-0.00748954740521
+UniRef50_UPI000473C32B	branched chain amino acid aminotransferase, partial	0.000531434996234	5.37079496503e-05	-0.000477727046584
+UniRef50_C4RR63	Secreted protein	1.35657630168e-06	0.000162933354593	0.000161576778291
+UniRef50_Q4UTD4	Serine  tRNA ligase	2.78132886957e-05	1.19513497594e-05	-1.58619389363e-05
+UniRef50_Q97DA2	3 oxoacyl [acyl carrier protein] synthase 3	0.000367413304853	0.000132802062717	-0.000234611242136
+UniRef50_Q5HQF6	Transposase, putative, truncation	0.000608848369114	4.87380049521e-05	-0.000560110364162
+UniRef50_P11901	Transposase for insertion sequence element IS421	0.0121123026975	0.00351301569196	-0.00859928700554
+UniRef50_UPI000467ECCA	hypothetical protein	1.10996397435e-05	2.46013044436e-05	1.35016647001e-05
+UniRef50_Q04JH1	Adenine phosphoribosyltransferase	0.000864296606538	0.00456015581562	0.00369585920908
+UniRef50_A6M3C4	ATPase like protein	0.000477774808878	0.000422284350448	-5.549045843e-05
+UniRef50_Q4PJD9	Predicted acetyl CoA carboxylase	2.52208017196e-05	4.17310028785e-05	1.65102011589e-05
+UniRef50_W5XBC3	50S ribosomal protein L24	7.23894009866e-05	9.32581063359e-06	-6.3063590353e-05
+UniRef50_E8PH61	AdeT, RND type efflux pump	0.000255663786733	0.0150266631524	0.0147709993657
+UniRef50_B9M8U3	8 amino 7 oxononanoate synthase	2.50071097098e-05	5.85229974351e-05	3.35158877253e-05
+UniRef50_Q1GGF9	Endoribonuclease L PSP	0.000114021392599	1.91445928643e-05	-9.48767997347e-05
+UniRef50_X1CCA7	Marine sediment metagenome DNA, contig	0.000138381650314	4.62192843001e-05	-9.21623660139e-05
+UniRef50_A6LSR6	Ribosomal protein S12 methylthiotransferase RimO	0.000750680178348	0.00214731201104	0.00139663183269
+UniRef50_UPI00030C0032	hypothetical protein	7.73314708927e-05	2.86575260671e-05	-4.86739448256e-05
+UniRef50_UPI0003B76375	acetyl CoA carboxylase biotin carboxylase subunit	2.6273768849e-06	1.93268379593e-05	1.66994610744e-05
+UniRef50_S4XY12		0.000335619750061	0.000165135156678	-0.000170484593383
+UniRef50_A6LY74	Resolvase helix turn helix domain protein	0.000283114491639	0.00358695557167	0.00330384108003
+UniRef50_UPI00035E0C27	hypothetical protein	3.96740022967e-06	6.17925468122e-06	2.21185445155e-06
+UniRef50_A7FB80		0.000115556935367	0.00604809169925	0.00593253476388
+UniRef50_A6LR67	Accessory gene regulator B	0.00110247393114	0.000652642456561	-0.000449831474579
+UniRef50_Q8CP92	Membrane spanning protein	0.00744565362627	0.00483684485023	-0.00260880877604
+UniRef50_Q47482	ORF114	0.000493688641771	0.00057158071973	7.7892077959e-05
+UniRef50_C7ZV35	II DNA RNA helicase ComFC	0.0210091560338	0.00754229594776	-0.013466860086
+UniRef50_M3ID57	E1 E2 ATPase	0.000249990721098	0.000789265136377	0.000539274415279
+UniRef50_A0A023FF30		3.62139561122e-05	0.00142827675171	0.0013920627956
+UniRef50_H0DLY7	Surface protein G	0.00157394557062	0.000319912896401	-0.00125403267422
+UniRef50_UPI00046D439D	hypothetical protein	2.38020122541e-05	9.0603070688e-05	6.68010584339e-05
+UniRef50_UPI0003B4EBBD	nitrogen regulatory protein P II 1	0.00159542406813	0.00135634088186	-0.00023908318627
+UniRef50_M1MAL1	Glycosyltransferase	0.000250972966228	0.00160676762963	0.0013557946634
+UniRef50_P55294	dTDP glucose 4,6 dehydratase	0.030414237891	0.0248018092279	-0.0056124286631
+UniRef50_G1Y1D6		9.64896299881e-05	2.63589067334e-06	-9.38537393148e-05
+UniRef50_A1U6L0	Acetylglutamate kinase	5.78979809045e-05	2.84418948458e-05	-2.94560860587e-05
+UniRef50_D2J655	Replication initiation protein	0.0122474735701	0.00604259091261	-0.00620488265749
+UniRef50_A8LJQ4	Pyrophosphate phospho hydrolase	0.0163185787048	0.00175023911835	-0.0145683395864
+UniRef50_R6VGJ2	Transcriptional regulator	3.43311342375e-06	4.50064458968e-06	1.06753116593e-06
+UniRef50_P34750	Fimbrial assembly protein PilQ	0.000762210711383	0.000636221986797	-0.000125988724586
+UniRef50_Q4L4Y3	ATP dependent helicase nuclease subunit A	0.010431432022	0.00238436368062	-0.00804706834138
+UniRef50_UPI00037D8E01	hypothetical protein	2.33980037298e-05	5.80809211738e-06	-1.75899116124e-05
+UniRef50_Q46PF7	Flagellar P ring protein	0.00153967282916	0.000247472099328	-0.00129220072983
+UniRef50_UPI0003B3AA9D	alpha amylase	1.93087461307e-05	2.18815178027e-05	2.572771672e-06
+UniRef50_Q88BP2		3.39033404267e-05	8.75099966028e-06	-2.51523407664e-05
+UniRef50_F2EDD7	Predicted protein 	2.80319485155e-05	3.2441954798e-05	4.4100062825e-06
+UniRef50_Q89DX7	Arginine deiminase	0.000510375683227	0.00699897750424	0.00648860182101
+UniRef50_Q9PBX0	Ribose 5 phosphate isomerase A	0.000715213027021	0.00381047271182	0.0030952596848
+UniRef50_P0A925	Phosphatidylglycerophosphatase B	0.00137073378749	0.00313813200463	0.00176739821714
+UniRef50_UPI00037F38F9	hypothetical protein	1.2004610822e-06	3.86118987638e-06	2.66072879418e-06
+UniRef50_D8JJE0		0.000334568976163	0.0108057389389	0.0104711699627
+UniRef50_UPI00046934E1	hypothetical protein	0.000266495917335	2.3411680485e-05	-0.00024308423685
+UniRef50_Q8ZPK6	ATP dependent dethiobiotin synthetase BioD 2	0.00209755211865	0.00198044188274	-0.00011711023591
+UniRef50_B9KRH6	CBR SDC 3 protein	0.00210983179633	0.0018639736818	-0.00024585811453
+UniRef50_UPI0002EB1E79	hypothetical protein	4.64891720504e-06	2.72914598628e-05	2.26425426578e-05
+UniRef50_Q0C397	Intracellular protease, PfpI family	0.00662979260241	0.00136300017782	-0.00526679242459
+UniRef50_K2EJR9		1.10642568531e-05	3.11507874188e-05	2.00865305657e-05
+UniRef50_O48917	UDP sulfoquinovose synthase, chloroplastic	0.000374055007741	3.74532390097e-05	-0.000336601768731
+UniRef50_A5UJN9		0.00133111087142	0.000859534186694	-0.000471576684726
+UniRef50_A9U6J3	Predicted protein	2.79313676191e-06	6.25435518412e-06	3.46121842221e-06
+UniRef50_UPI00035E9CFE	50S ribosomal protein L24	0.000110607488233	0.000271515398775	0.000160907910542
+UniRef50_UPI000472DFA0	hypothetical protein, partial	2.74092417244e-05	1.75612436021e-05	-9.8479981223e-06
+UniRef50_UPI00040078F0	hypothetical protein	0.000135155001406	9.24941621294e-05	-4.26608392766e-05
+UniRef50_W5V1P4	Type II secretion system protein E	0.00086047314663	0.000302051193502	-0.000558421953128
+UniRef50_P65904	Phosphoribosylformylglycinamidine synthase 1	0.0241475662707	0.00262203693888	-0.0215255293318
+UniRef50_Q7MAB8	GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE	0.000252851661188	0.0037854676914	0.00353261603021
+UniRef50_K1Y7A4		3.3965001404e-06	4.97122702253e-06	1.57472688213e-06
+UniRef50_T1Y669	Multidrug resistance protein B	0.0136958739464	0.00174634284999	-0.0119495310964
+UniRef50_Q8RHI7	DNA directed RNA polymerase subunit beta	2.4971001548e-06	2.13760256041e-06	-3.5949759439e-07
+UniRef50_C3AKR0	Cobalamin synthesis protein	4.05000960698e-06	6.67603705106e-06	2.62602744408e-06
+UniRef50_Q9VLJ8	Adenylyltransferase and sulfurtransferase MOCS3	9.47662301215e-06	1.59556152992e-05	6.47899228705e-06
+UniRef50_Q9RSN4		9.05242179512e-05	0.00757152767279	0.00748100345484
+UniRef50_A3CP54	ABC transporter membrane spanning permease, arginine histidine transport, putative	0.00353588336533	0.00386679912588	0.00033091576055
+UniRef50_UPI000345D7AA	diaminopimelate decarboxylase	4.34609108208e-06	2.39633102191e-05	1.9617219137e-05
+UniRef50_I6TNC0	Serine acetyltransferase	0.00851035619071	0.0063426358078	-0.00216772038291
+UniRef50_G7U472	Membrane spanning protein	0.000110161280792	0.00601291757033	0.00590275628954
+UniRef50_UPI000374B781	hypothetical protein, partial	0.000214689757061	2.24315485918e-05	-0.000192258208469
+UniRef50_M9VCZ7		1.71256856409e-05	9.66367756369e-05	7.9511089996e-05
+UniRef50_Q2GW43	Predicted protein	4.3477166281e-05	0.000177385147269	0.000133907980988
+UniRef50_UPI00029AD767	Gnt II system L idonate transporter IdnT	1.72851080794e-05	7.85614078471e-06	-9.42896729469e-06
+UniRef50_A5UDU8		0.000524025360031	0.000135881919561	-0.00038814344047
+UniRef50_UPI0003718E98	30S ribosomal protein S1	2.18921912679e-05	7.2780034869e-05	5.08878436011e-05
+UniRef50_R9SII2	Hmd co occurring protein HcgC	0.00172424918664	0.000460542401304	-0.00126370678534
+UniRef50_K4ADF5		1.25559604402e-05	0.000442420454189	0.000429864493749
+UniRef50_UPI0002195D49	NADPH	9.73611157681e-06	6.47032043887e-05	5.49670928119e-05
+UniRef50_Q0TM34	Pyridine nucleotide disulphide oxidoreductase	0.00033207216226	0.00170295475624	0.00137088259398
+UniRef50_A5W887		0.000241705488396	0.000898421567906	0.00065671607951
+UniRef50_A1AT17	Cobyrinic acid A,C diamide synthase	1.51923968868e-05	0.000219469456068	0.000204277059181
+UniRef50_W9AMV1	3 oxoadipate enol lactonase	2.28444236225e-06	1.4579366498e-05	1.22949241358e-05
+UniRef50_P31469	UPF0167 protein CbrC	0.00216536828323	0.00171556918863	-0.0004497990946
+UniRef50_A6D355		1.74580398694e-05	8.23222475182e-05	6.48642076488e-05
+UniRef50_E3B8X8	CobQ CobB MinD ParA nucleotide binding domain protein	2.61866800002e-06	7.4442877724e-06	4.82561977238e-06
+UniRef50_B2TKG7		0.000216399407732	0.00086928381685	0.000652884409118
+UniRef50_UPI000289DAB7	ABC transporter	0.000113413739141	2.64098519837e-05	-8.70038871573e-05
+UniRef50_B2TKG9		0.00102643486032	0.000993315951759	-3.3118908561e-05
+UniRef50_A6LPH0		0.000750394818849	0.00128100895609	0.000530614137241
+UniRef50_Q2YTW8		0.000439193115912	0.000753213285907	0.000314020169995
+UniRef50_Q39242	Thioredoxin reductase 2	6.00663567777e-05	2.0663385369e-05	-3.94029714087e-05
+UniRef50_U6ZY01		0.00020564138946	8.17945692505e-05	-0.00012384682021
+UniRef50_A0RWW0	N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase	6.32058527058e-06	3.50662434408e-05	2.87456581702e-05
+UniRef50_Q6LLR8	UPF0761 membrane protein PBPRA3489	0.00177760099104	0.000808242823505	-0.000969358167535
+UniRef50_B5XXZ2	4 hydroxybenzoate octaprenyltransferase	0.000596847879521	0.000324082819905	-0.000272765059616
+UniRef50_UPI000406F7B4	MULTISPECIES	1.58434904583e-05	2.49197695075e-05	9.0762790492e-06
+UniRef50_I6ST36	Transcriptional regulator MutR	0.00624037941467	0.00443695388435	-0.00180342553032
+UniRef50_O34453	Nitric oxide synthase oxygenase	0.017196129162	0.00620526817423	-0.0109908609878
+UniRef50_UPI0003B677CD	streptomycin 3 kinase	4.04359492681e-05	3.30317809956e-05	-7.4041682725e-06
+UniRef50_D9RG71	Colicin V production protein	0.00672710458867	0.00273586636745	-0.00399123822122
+UniRef50_P57067	Outer membrane lipoprotein carrier protein	0.000841162307276	0.00507186423073	0.00423070192345
+UniRef50_A9LZF1	P type cation transporting ATPase	4.68344899327e-05	7.25891123e-05	2.57546223673e-05
+UniRef50_A7HZX6	Serine  tRNA ligase	0.000104893050104	0.00256121763324	0.00245632458314
+UniRef50_A9TBR6	Predicted protein	0.0145760983376	0.00435395015742	-0.0102221481802
+UniRef50_F6D6D0	Peptidyl tRNA hydrolase	0.000337041061476	0.00290475447734	0.00256771341586
+UniRef50_UPI0003B5DDB2	ABC transporter ATP binding protein, partial	6.78812102337e-05	0.000125750896615	5.78696863813e-05
+UniRef50_E2BKF3		3.96643296335e-06	0.000136438871888	0.000132472438925
+UniRef50_K4A2U8		0.000304970727084	4.61271704896e-06	-0.000300358010035
+UniRef50_F4FN41	Transcriptional regulator, AraC family	0.0155775375806	0.00293833408134	-0.0126392034993
+UniRef50_E3A746		0.000140156412891	5.64479207156e-05	-8.37084921754e-05
+UniRef50_F2D3N2	Predicted protein 	0.000133567755941	0.000259395788164	0.000125828032223
+UniRef50_Q7WFR5	Ribosomal RNA small subunit methyltransferase H	1.36602863729e-05	0.0038174383672	0.00380377808083
+UniRef50_UPI000475712A	MFS transporter	1.75256842449e-05	7.44057420618e-06	-1.00851100387e-05
+UniRef50_UPI0002FE50F2	ABC transporter ATP binding protein	1.85584804407e-05	3.70529158408e-05	1.84944354001e-05
+UniRef50_I0C492	Transposase	0.00130975222434	0.000231620945253	-0.00107813127909
+UniRef50_P37105	Signal recognition particle protein	0.0224193313677	0.00663389889878	-0.0157854324689
+UniRef50_Q9HU72	Lactoylglutathione lyase	0.000680299541495	0.00241787225508	0.00173757271358
+UniRef50_Q49VK4	Sensor histidine kinase GraS	0.0220620443689	0.00195780223641	-0.0201042421325
+UniRef50_U6LXV1		1.27464680231e-05	1.0041373937e-05	-2.7050940861e-06
+UniRef50_UPI0004712B82	deoxyguanosinetriphosphate triphosphohydrolase	7.23374901893e-05	5.49917380398e-06	-6.68383163853e-05
+UniRef50_X7ECQ0		2.99058323184e-06	4.02256535327e-06	1.03198212143e-06
+UniRef50_C7J660	Os08g0537001 protein	7.25487460329e-05	0.00186602925987	0.00179348051384
+UniRef50_UPI0003B571D7	NAD synthetase	1.39661225465e-05	5.49529399806e-06	-8.47082854844e-06
+UniRef50_A6QIL3		0.00287740971635	0.00171699017539	-0.00116041954096
+UniRef50_Q8CR15		0.00316949491293	0.00255735160822	-0.00061214330471
+UniRef50_O03077	ATP synthase subunit beta, chloroplastic 	2.17568855978e-05	1.33017848625e-05	-8.4551007353e-06
+UniRef50_UPI000359A7EA	PREDICTED	1.04670684848e-05	2.64353075984e-05	1.59682391136e-05
+UniRef50_Q8H107	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2, mitochondrial	6.03303344623e-06	5.79615092735e-06	-2.3688251888e-07
+UniRef50_R4LTE6		4.53103929857e-05	7.91328701238e-05	3.38224771381e-05
+UniRef50_A6LZR2		0.00042555437847	0.000629305670241	0.000203751291771
+UniRef50_A6LZR6		0.000260727048894	0.00160567895302	0.00134495190413
+UniRef50_Q2Y639	UDP N acetylmuramate  L alanine ligase	0.00018293613576	0.00731875406767	0.00713581793191
+UniRef50_V8B5L5		0.000863045765934	0.000156252224977	-0.000706793540957
+UniRef50_F3SUZ8	Radical SAM domain protein	0.00201568528409	0.000629795527281	-0.00138588975681
+UniRef50_Y1QUK6		8.13734964445e-05	3.69775393467e-05	-4.43959570978e-05
+UniRef50_UPI00047377E9	hypothetical protein, partial	3.94525681701e-05	8.87784107276e-05	4.93258425575e-05
+UniRef50_A3M2I8	Histidinol phosphate aminotransferase	0.00046885235971	0.00567610350902	0.00520725114931
+UniRef50_A4WVN9		0.00290065566427	0.000323945366127	-0.00257671029814
+UniRef50_UPI000237EED8	CP4 like integrase	7.58327646046e-05	5.910362196e-05	-1.67291426446e-05
+UniRef50_UPI000463B864	lysine transporter LysE	5.39093855123e-05	7.24673588335e-05	1.85579733212e-05
+UniRef50_Q89KP5	Uridylate kinase	8.17442297073e-06	2.76865616493e-05	1.95121386786e-05
+UniRef50_B1M0V9		1.3377247099e-05	2.36096310302e-05	1.02323839312e-05
+UniRef50_B1M0V4		4.05579581943e-05	6.49182479773e-05	2.4360289783e-05
+UniRef50_UPI0003C18CC4		6.59008925046e-05	2.15749481963e-05	-4.43259443083e-05
+UniRef50_G5RK09	Membrane bound lytic murein transglycosylase A	0.000277436384188	0.000141726147669	-0.000135710236519
+UniRef50_UPI0003B301C3	transcriptional regulator	4.51441636142e-06	8.83461974299e-06	4.32020338157e-06
+UniRef50_T1Y750	IolE protein like protein	0.0135275379538	0.00604186639642	-0.00748567155738
+UniRef50_A6M054	Glycosyl hydrolase family 32, N terminal domain protein	0.000296335201666	0.00221755969591	0.00192122449424
+UniRef50_U5MWS1	Cna B domain protein	0.00147754306325	0.000986657194776	-0.000490885868474
+UniRef50_Q8E2K7	DNA replication and repair protein RecF	0.000688625625614	0.00317949993775	0.00249087431214
+UniRef50_UPI00047CBDF2	hypothetical protein	0.000240575889047	0.000278700690247	3.81248012e-05
+UniRef50_Q92PH0	Glutaminase	0.000395056542981	3.31770832467e-05	-0.000361879459734
+UniRef50_UPI0004777D5E	competence protein	1.67227393961e-05	4.62272983391e-05	2.9504558943e-05
+UniRef50_A6LTY9		0.000403648665065	0.00086916539709	0.000465516732025
+UniRef50_Q8NZX4	Transketolase	0.0100067845775	0.0089052511478	-0.0011015334297
+UniRef50_UPI0003FFF64C	hypothetical protein	4.05869280772e-06	9.74515360993e-06	5.68646080221e-06
+UniRef50_A4WVF5	L malyl CoA beta methylmalyl CoA lyase	0.0110867481252	0.00625155815433	-0.00483518997087
+UniRef50_Q9SR52	Urease	2.73049017245e-06	2.21385589703e-05	1.94080687979e-05
+UniRef50_UPI00040A8344	potassium ABC transporter ATPase	6.70967284587e-06	1.02219574503e-05	3.51228460443e-06
+UniRef50_UPI000380F703	hypothetical protein	2.47089203454e-05	1.46005608877e-05	-1.01083594577e-05
+UniRef50_D6SH06		0.0183974481137	0.00231373795736	-0.0160837101563
+UniRef50_Q892X8	Oligoendopeptidase F	0.000226404643234	0.00157831737671	0.00135191273348
+UniRef50_F7Y3H5	Enoyl CoA hydratase	0.000246186514471	0.0590711926567	0.0588250061422
+UniRef50_A1VBP9	Binding protein dependent transport systems inner membrane component	0.000154075913818	0.00997984902347	0.00982577310965
+UniRef50_A4WQT8	Membrane protein like protein	0.00595654681931	0.000169416164506	-0.0057871306548
+UniRef50_UPI0004686834	glycoside hydrolase family 13	1.39139135503e-06	0.000133664790574	0.000132273399219
+UniRef50_P37182	Hydrogenase 2 maturation protease	0.0012659285297	0.0159027051226	0.0146367765929
+UniRef50_Q93SE0	Vitamin B12 transporter BtuB	0.00289727394483	0.000389327202494	-0.00250794674234
+UniRef50_R7PWN2		0.00335139666452	0.000526319731719	-0.0028250769328
+UniRef50_A0A009DJS4		7.55210588108e-05	0.000216302604238	0.000140781545427
+UniRef50_UPI000467756F	N succinylarginine dihydrolase, partial	1.73659323971e-05	6.10571141461e-05	4.3691181749e-05
+UniRef50_A0A011P1Z9	Inner membrane protein YgaZ	2.79496348456e-05	1.4148988127e-05	-1.38006467186e-05
+UniRef50_Q126M1	Tryptophan synthase beta chain	0.0390244254185	0.034919170447	-0.0041052549715
+UniRef50_Q87EJ9	Divalent metal cation transporter MntH	0.000533505103497	0.00169933831719	0.00116583321369
+UniRef50_UPI00045E71E0	hypothetical protein	6.35215729272e-06	9.87891253154e-05	9.24369680227e-05
+UniRef50_Q9RYV0	Oligoendopeptidase F, putative	6.53844091497e-05	0.042862623316	0.0427972389069
+UniRef50_UPI000299DE22	insertion element transposase	2.13229361984e-05	4.98160277947e-05	2.84930915963e-05
+UniRef50_UPI0002C37426	PREDICTED	8.2749926433e-05	6.47373315948e-05	-1.80125948382e-05
+UniRef50_UPI00032A12CA	PREDICTED	8.21602733608e-05	0.000113563759223	3.14034858622e-05
+UniRef50_N6V3L4		0.000599909796145	0.000267276486635	-0.00033263330951
+UniRef50_Q46793		0.000685965317271	0.000270932757067	-0.000415032560204
+UniRef50_UPI000470AE3D	phage infection protein	2.15417488433e-06	1.50393423538e-06	-6.5024064895e-07
+UniRef50_UPI00037632C6	hypothetical protein	9.33547047284e-07	4.0935953938e-06	3.16004834652e-06
+UniRef50_UPI00037FBEB2	hypothetical protein	4.27434906246e-05	5.85990885898e-06	-3.68835817656e-05
+UniRef50_V5VD88		0.000378420750072	0.00438671684144	0.00400829609137
+UniRef50_UPI0003C0FBBA	PREDICTED	7.48071362449e-06	6.66086152294e-06	-8.1985210155e-07
+UniRef50_P0A9X5	Rod shape determining protein MreB	0.00330849815233	0.000474401201749	-0.00283409695058
+UniRef50_Q2YWJ9	3 dehydroquinate dehydratase	0.0129695489765	0.00174171401473	-0.0112278349618
+UniRef50_Q2LRC2	UDP N acetylglucosamine pyrophosphorylase	0.000157723950778	0.00465736058541	0.00449963663463
+UniRef50_Q9KDA5	DNA binding protein HU 1	0.0013591268233	0.000656259344878	-0.000702867478422
+UniRef50_A0A017SZJ0		7.69620674074e-06	0.000230694069895	0.000222997863154
+UniRef50_D3P3K9	Transposase	0.000197329598523	0.000319289732468	0.000121960133945
+UniRef50_Q9RWI1		2.54771196058e-05	0.0111339034122	0.0111084262926
+UniRef50_UPI0004650D81	DNA polymerase III subunit alpha	3.28332557535e-06	2.04905317529e-06	-1.23427240006e-06
+UniRef50_A5N5C6	Redox sensing transcriptional repressor Rex	0.000593527946053	0.000372247947718	-0.000221279998335
+UniRef50_A6LXW2	FMN binding domain protein	0.000407947092057	0.000839336190158	0.000431389098101
+UniRef50_W5X9T1	Capsule biosynthesis protein, putative	4.89792640796e-05	0.00226521937824	0.00221624011416
+UniRef50_Q5HJ91	Virulence factor EsxA	0.00372004184177	0.00340750044457	-0.0003125413972
+UniRef50_UPI00035D6DF9	hypothetical protein	3.73643105384e-05	2.04757585346e-05	-1.68885520038e-05
+UniRef50_A6LUC6	HIRAN	0.00104182623438	0.000375130960621	-0.000666695273759
+UniRef50_O34760	Probable quorum quenching lactonase YtnP	0.00764133599172	0.00479555153508	-0.00284578445664
+UniRef50_P32709	Protein NrfD	0.0016338349976	0.000375802375719	-0.00125803262188
+UniRef50_A8LAR7	Pyrimidine nucleoside phosphorylase	0.000212341184589	0.00447234074609	0.0042599995615
+UniRef50_W5FVF8		6.9311237827e-05	0.00023199549927	0.000162684261443
+UniRef50_UPI00040BC8B6	hypothetical protein	8.16253013499e-06	2.05466357489e-05	1.23841056139e-05
+UniRef50_UPI00036FB676	hypothetical protein	0.000610333952445	4.84818932346e-05	-0.00056185205921
+UniRef50_R7PY44		0.00116355851109	0.000153752720228	-0.00100980579086
+UniRef50_Q8NSL1	2 methylcitrate synthase 2	1.41759844362e-05	1.19090337343e-05	-2.2669507019e-06
+UniRef50_A9FRC1	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.22092137243e-05	8.4996594575e-06	-3.7095542668e-06
+UniRef50_Q74GU4	Acetylglutamate kinase	5.65200365026e-05	1.94846213692e-05	-3.70354151334e-05
+UniRef50_A1B414	General secretory system II, protein E domain protein	0.00210708305497	0.00034781511842	-0.00175926793655
+UniRef50_O34990	Formyltetrahydrofolate deformylase	9.69478794779e-06	0.0420678430526	0.0420581482647
+UniRef50_UPI0003B4C8ED	3 5 exonuclease, partial	0.000486049074949	0.000615903480777	0.000129854405828
+UniRef50_D3E1K6	Cytidyltransferase related domain containing protein	0.00300214912185	0.000313833281181	-0.00268831584067
+UniRef50_M9RAZ0		5.05876655689e-05	5.34024642696e-05	2.8147987007e-06
+UniRef50_P32144		0.00199228377555	0.00110530096434	-0.00088698281121
+UniRef50_C2ZP74	Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein	0.0103726473532	0.00303941058357	-0.00733323676963
+UniRef50_UPI00047AA5CF	hypothetical protein, partial	1.64180391911e-05	8.53622670478e-05	6.89442278567e-05
+UniRef50_V4QYP1	HupE UreJ family metal transporter	0.000142095862126	1.90912916601e-05	-0.000123004570466
+UniRef50_A5IUJ4	DNA mismatch repair protein MutS domain protein	0.0107425217306	0.00215060550812	-0.00859191622248
+UniRef50_I1ZMC2	Multidrug ABC transporter, ATPase and permease component	0.00558132555468	0.00526401058772	-0.00031731496696
+UniRef50_A3JX48		0.000159893359667	9.91594747543e-05	-6.07338849127e-05
+UniRef50_UPI0003B4645F	hypothetical protein	9.41212324581e-06	3.7632110885e-05	2.82199876392e-05
+UniRef50_UPI00047B8895	DNA primase	3.25774208154e-06	7.41038416249e-06	4.15264208095e-06
+UniRef50_P37662		0.00492642113745	0.000784772776271	-0.00414164836118
+UniRef50_P37663		0.00286626541508	0.00104841250564	-0.00181785290944
+UniRef50_P37664		0.000258552047156	0.00194714311118	0.00168859106402
+UniRef50_Q28WI0	Chromosomal replication initiator protein DnaA	0.00835778969479	0.00197801508343	-0.00637977461136
+UniRef50_Q31DK9	Ribosomal RNA small subunit methyltransferase G	3.29002600525e-05	3.93699810458e-05	6.4697209933e-06
+UniRef50_B0SXH8	Transglutaminase domain protein	7.13480526043e-05	6.95608355963e-05	-1.787217008e-06
+UniRef50_U4GBY1	Putative signal peptide protein	0.000165295635543	0.000235417567459	7.0121931916e-05
+UniRef50_Q4ZUG2	Phenylalanine  tRNA ligase beta subunit	0.000210874217451	0.000170239220598	-4.0634996853e-05
+UniRef50_C5WFX1	Ribosomal protein L21	0.00130175416232	0.00089040212621	-0.00041135203611
+UniRef50_Q51392	Probable alginate O acetylase AlgI	0.000747853101288	0.000968536553959	0.000220683452671
+UniRef50_C7ZXN9	Peptidase A24A	0.0124913439708	0.000874758491299	-0.0116165854795
+UniRef50_U5NRI8		0.000492737936354	0.00210146179404	0.00160872385769
+UniRef50_A4WPL6		0.0167966931418	0.0069845382664	-0.0098121548754
+UniRef50_A3ZQR3		0.000151110456182	3.40474006485e-05	-0.000117063055534
+UniRef50_W1JLJ8		0.000247076569867	4.10305972424e-05	-0.000206045972625
+UniRef50_B2V4B1	Peptide deformylase	1.50756821902e-05	2.68779406796e-05	1.18022584894e-05
+UniRef50_A9GXK1	Peptidyl tRNA hydrolase	4.41622785726e-05	2.15409242388e-05	-2.26213543338e-05
+UniRef50_P0A4K2	Cystathionine beta lyase	7.72438350101e-05	0.00490272783015	0.00482548399514
+UniRef50_A6LWY3	Transcriptional antiterminator, BglG	0.000220351590581	0.000998516514623	0.000778164924042
+UniRef50_A5UN38	Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD	0.00210743012443	0.00103745359071	-0.00106997653372
+UniRef50_UPI0003A61C77	hypothetical protein	4.04609101818e-05	0.000161322566286	0.000120861656104
+UniRef50_Q72L31	Uroporphyrinogen decarboxylase	1.58948273712e-05	2.51241192528e-05	9.2292918816e-06
+UniRef50_E6NII4	Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase	9.87321679628e-05	0.00301672439636	0.0029179922284
+UniRef50_A5IPW8	Uracil xanthine permease	0.0144146479779	0.00319911161925	-0.0112155363587
+UniRef50_UPI0003B7912D	D ribose transporter ATP binding protein	4.23903796195e-06	6.0308726196e-06	1.79183465765e-06
+UniRef50_Q5HRP0	Dihydropteroate synthase	0.0286146329528	0.00601408980101	-0.0226005431518
+UniRef50_R9ZGA8	AraC family transcriptional regulator	0.000382300568732	0.000598390490412	0.00021608992168
+UniRef50_C5DAG0	Extracellular solute binding protein family 1	2.2219893676e-05	0.000797002201073	0.000774782307397
+UniRef50_K9NKD1	NAD dependent epimerase dehydratase	0.00459788822913	0.00359675538793	-0.0010011328412
+UniRef50_I1ZK66	Oligoendopeptidase F	0.000153928255183	0.00507883314062	0.00492490488544
+UniRef50_F4EDJ1	Phosphatidate cytidylyltransferase	0.00643715005119	0.00576353629175	-0.00067361375944
+UniRef50_R6UCD8	Aminotransferase class I and II	0.00674578927021	0.00367682280454	-0.00306896646567
+UniRef50_W8EXQ8		2.83637118726e-06	4.1713364533e-06	1.33496526604e-06
+UniRef50_UPI0001584DF8	conserved hypothetical protein	2.59693270029e-06	1.1985325149e-05	9.38839244871e-06
+UniRef50_R7PWY7		0.00396490603807	0.000661420965292	-0.00330348507278
+UniRef50_P19317	Probable nitrate reductase molybdenum cofactor assembly chaperone NarW	0.00444603370354	0.000303407573826	-0.00414262612971
+UniRef50_Q18JB5	Formate  tetrahydrofolate ligase	0.0331755428504	0.0230001547629	-0.0101753880875
+UniRef50_Q7VL09	8 amino 7 oxononanoate synthase	0.000258702422127	0.0146959408894	0.0144372384673
+UniRef50_E2XWM2	Amidotransferase	0.000949809775798	0.000390286394531	-0.000559523381267
+UniRef50_B7RLJ4		0.00114523459095	0.000109458496327	-0.00103577609462
+UniRef50_R4R6C5	HlyD family secretion protein domain protein	0.000463043204404	0.000588437754967	0.000125394550563
+UniRef50_Q9XAQ9	NADH quinone oxidoreductase subunit F	0.000129720271086	0.00613986998772	0.00601014971663
+UniRef50_T5JDW5		8.47623822773e-06	0.000268710233989	0.000260233995761
+UniRef50_Q6LTY5	Na translocating NADH quinone reductase subunit E	0.000117706487853	0.00010927429796	-8.432189893e-06
+UniRef50_Q2NEW4	Alanine  tRNA ligase	0.00330038608059	0.00200041518123	-0.00129997089936
+UniRef50_Q5HNU8	5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.0106082168038	0.00338301680929	-0.00722519999451
+UniRef50_Q6GGZ6	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.0105951139712	3.94944358452e-05	-0.0105556195354
+UniRef50_C7NZH8	Chorismate synthase	4.20192635179e-06	1.94741746707e-05	1.52722483189e-05
+UniRef50_A5UP06		0.00223265652286	0.000953286768366	-0.00127936975449
+UniRef50_UPI000361F275	hypothetical protein	3.36439162762e-06	6.18237852361e-06	2.81798689599e-06
+UniRef50_A6LQ11	Erythronolide synthase., Aspartate racemase	0.000438115619619	0.0011981649277	0.000760049308081
+UniRef50_A0A023X8X0		0.000181149506258	0.000195319865074	1.4170358816e-05
+UniRef50_Q6A7E9	ATP dependent Clp protease proteolytic subunit 2	0.000208555794952	0.0102651487825	0.0100565929875
+UniRef50_A1R5F0	Ribosomal RNA small subunit methyltransferase H	6.80470288626e-06	0.00359082503308	0.00358402033019
+UniRef50_A5UP09		0.00195575710316	0.000835757948297	-0.00111999915486
+UniRef50_X2H8Z5		0.000185042151398	0.0040240633382	0.0038390211868
+UniRef50_V7FG71		5.00727469764e-05	0.000270369689397	0.000220296942421
+UniRef50_UPI00032911E8	PREDICTED	1.96502606983e-06	2.92197862106e-05	2.72547601408e-05
+UniRef50_R7B346		0.0045825992868	0.000926976715102	-0.0036556225717
+UniRef50_K0TNG1		7.23799936697e-06	5.26275926482e-05	4.53895932812e-05
+UniRef50_UPI0003604578	hypothetical protein	9.7420849302e-06	8.23942497118e-06	-1.50265995902e-06
+UniRef50_UPI0003A753CE	hypothetical protein	0.000341496392274	9.87091553117e-05	-0.000242787236962
+UniRef50_UPI00037FE958	hypothetical protein	4.8793045217e-06	2.04239654656e-05	1.55446609439e-05
+UniRef50_B7UR12	Purine nucleoside phosphorylase DeoD type	0.00439971004135	0.00241404502703	-0.00198566501432
+UniRef50_C7ZTK0		0.0109440861639	0.00403931476013	-0.00690477140377
+UniRef50_UPI0004704B3B	ABC transporter permease	2.40406699e-05	4.70773513151e-05	2.30366814151e-05
+UniRef50_B9KCQ6	Polyphosphate kinase	6.0591651505e-05	0.00240530526739	0.00234471361588
+UniRef50_C5X9K2		9.90454725722e-05	0.000953050437718	0.000854004965146
+UniRef50_G7M2R9	ABC type transporter, periplasmic subunit family 3	0.000279619251005	0.000739837358076	0.000460218107071
+UniRef50_I0E8W5		8.53397111153e-05	0.00219286963168	0.00210752992056
+UniRef50_UPI000470B5F1	hypothetical protein, partial	0.000165226214149	0.000180399754985	1.5173540836e-05
+UniRef50_Q41805	Extensin like protein	3.466733666e-06	1.8099495206e-06	-1.6567841454e-06
+UniRef50_Q5X5I2	Ribonuclease H	4.95919986044e-05	2.73818670852e-05	-2.22101315192e-05
+UniRef50_G8VGX4		0.000412722542063	0.00686393774067	0.00645121519861
+UniRef50_A3PR71	Transcriptional regulator, GntR family	0.00476397688187	0.000670022927747	-0.00409395395412
+UniRef50_A1W649	Membrane lipoprotein lipid attachment site	0.000125389147293	9.51908017289e-06	-0.00011587006712
+UniRef50_U3B280		1.05079898647e-05	7.10833080719e-05	6.05753182072e-05
+UniRef50_A6M1W5	Periplasmic binding protein LacI transcriptional regulator	0.000475383202959	0.0015816981088	0.00110631490584
+UniRef50_C4RK38	Polyketide synthase	0.000133860279732	0.000226353014903	9.2492735171e-05
+UniRef50_A7HH59	Ribosomal RNA small subunit methyltransferase H	6.13104205493e-06	0.00017040101598	0.000164269973925
+UniRef50_UPI00038ED75B	PREDICTED	9.8600309257e-06	1.10516635721e-05	1.1916326464e-06
+UniRef50_UPI00037D470D	hypothetical protein	0.000169069567209	7.80030842106e-06	-0.000161269258788
+UniRef50_A9GG06		3.64478080255e-06	0.000228597461204	0.000224952680401
+UniRef50_Q03283	Urease subunit beta	2.19499168179e-05	0.00353325343717	0.00351130352035
+UniRef50_R7H8U8	Nitroreductase	0.000555126454193	0.000341406595601	-0.000213719858592
+UniRef50_P75858		0.00467126415092	0.000856589379178	-0.00381467477174
+UniRef50_Q0ST10	Transcriptional regulator, Crp Fnr family	0.00306264660003	0.00103939205231	-0.00202325454772
+UniRef50_G8VPJ1	NAD specific glutamate dehydrogenase	9.62826894095e-06	0.00316864463512	0.00315901636618
+UniRef50_F0P4A3	Acetyltransferase, GNAT family	0.0229276700966	0.00649948025381	-0.0164281898428
+UniRef50_UPI000365B96C	cytochrome C oxidase subunit I, partial	3.76491108749e-05	5.55042274723e-05	1.78551165974e-05
+UniRef50_Q5HW32	2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.000191711901895	0.00422387100072	0.00403215909882
+UniRef50_Q129M4	Ribosomal RNA large subunit methyltransferase E	4.52416574076e-05	4.01809671834e-05	-5.0606902242e-06
+UniRef50_Q9SFH9	Delta aminolevulinic acid dehydratase 1, chloroplastic	1.27871054051e-05	2.35862525078e-05	1.07991471027e-05
+UniRef50_UPI00036BED26	hypothetical protein	5.66051980098e-06	1.52793417572e-05	9.61882195622e-06
+UniRef50_E8SNN7	Ribosomal protein	8.46591860258e-06	0.000221052354027	0.000212586435424
+UniRef50_UPI000379BCC8	hypothetical protein	8.4442287031e-06	2.78851101755e-05	1.94408814724e-05
+UniRef50_Q92947	Glutaryl CoA dehydrogenase, mitochondrial	2.53509656796e-05	0.000240517076478	0.000215166110798
+UniRef50_Q5HS21	Lipase, putative	0.0124046045783	0.00518442855378	-0.00722017602452
+UniRef50_I2HEM4		3.6544216505e-05	0.000644327253476	0.000607783036971
+UniRef50_A0RIM4	L cystine uptake protein TcyP	0.00851916075504	0.0102571248938	0.00173796413876
+UniRef50_UPI0003C1735E	PREDICTED	8.21900938102e-07	1.33362698152e-06	5.11726043418e-07
+UniRef50_Q49ZB9		0.0233936410807	0.00597432165255	-0.0174193194281
+UniRef50_W1WJ70		4.95299346306e-05	3.63500087069e-05	-1.31799259237e-05
+UniRef50_C5N256	Bacteriocin, lactococcin 972 family	0.0109756638068	0.000608900423076	-0.0103667633837
+UniRef50_Q1R4E5		0.000865327217169	0.000294335586571	-0.000570991630598
+UniRef50_Q9X5W3	Cyclic pyranopterin monophosphate synthase	1.06380096741e-05	7.97185750055e-05	6.90805653314e-05
+UniRef50_UPI0003B792B2	FAD dependent oxidoreductase	1.42125134306e-05	1.69452598868e-05	2.7327464562e-06
+UniRef50_M9VD00		0.0006738233878	0.00566662922101	0.00499280583321
+UniRef50_A7IJF9	Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding	0.00202519472778	0.000487002524188	-0.00153819220359
+UniRef50_UPI000373BD8F	hypothetical protein	0.000199730517482	4.13157993623e-05	-0.00015841471812
+UniRef50_Q2G607	Phosphate import ATP binding protein PstB	1.9246639282e-05	0.000193023861011	0.000173777221729
+UniRef50_G0A719	Type VI secretion protein, VC_A0114 family	3.57544057112e-06	6.3434105708e-06	2.76796999968e-06
+UniRef50_Q9I696	Component of chemotactic signal transduction system	0.000193068430848	0.000285978824189	9.2910393341e-05
+UniRef50_M1FEG3	Sporulation initiation inhibitor protein soj	0.000648522788994	2.30725731556e-05	-0.000625450215838
+UniRef50_C0ERG4		0.00027008406986	0.000316902353442	4.6818283582e-05
+UniRef50_UPI0003B646B9	hypothetical protein	3.66028307627e-06	4.50495268159e-06	8.4466960532e-07
+UniRef50_B9KQI0	Type III secretion system inner membrane R protein	0.0146759790381	0.00319868674853	-0.0114772922896
+UniRef50_P44614	Tryptophan specific transport protein	0.00485095542886	0.000963352338842	-0.00388760309002
+UniRef50_G2JMU8		0.000243016731023	0.0133790551135	0.0131360383825
+UniRef50_B1J5I1		6.89853022232e-06	1.18341773461e-05	4.93564712378e-06
+UniRef50_B4VCX3		3.8983717979e-05	5.41642554932e-06	-3.35672924297e-05
+UniRef50_UPI0003B55D0D	CTP synthetase	3.30068040309e-06	1.95316094877e-05	1.62309290846e-05
+UniRef50_P56860	Phosphoadenosine phosphosulfate reductase	1.18425721906e-05	0.0139365158458	0.0139246732736
+UniRef50_Q03T56	Ribosomal RNA small subunit methyltransferase A	2.72266313712e-05	3.76328447706e-05	1.04062133994e-05
+UniRef50_W6KBC4		3.2801619204e-05	5.87263941285e-06	-2.69289797911e-05
+UniRef50_P42628	Inner membrane transport protein YhaO	0.002577755407	0.00441545478478	0.00183769937778
+UniRef50_R4KE37		0.00104523293712	0.000561183422741	-0.000484049514379
+UniRef50_A4WUY8	Substrate binding region of ABC type glycine betaine transport system	0.00920759330504	0.00069423888041	-0.00851335442463
+UniRef50_UPI00026C5B6F	transcriptional regulator	6.84447946218e-05	0.000374176062183	0.000305731267561
+UniRef50_UPI00035D359F	hypothetical protein, partial	3.56834704693e-06	2.51514632171e-06	-1.05320072522e-06
+UniRef50_UPI0004648BE1	chemotaxis protein CheW	2.82681472667e-05	4.79417105607e-05	1.9673563294e-05
+UniRef50_UPI0002B4606A	PREDICTED	0.000117872905744	7.0167976165e-06	-0.000110856108127
+UniRef50_P30177		0.00536453528811	0.00128311148592	-0.00408142380219
+UniRef50_UPI0004723693	PTS system lactose specific transporter subunit IIA	5.06920177655e-05	4.63991260427e-05	-4.2928917228e-06
+UniRef50_Q04804	Sensor protein PfeS	0.000942034586082	0.00020632363615	-0.000735710949932
+UniRef50_O33566	ORF700 protein	0.00256060600159	5.80317228756e-05	-0.00250257427871
+UniRef50_UPI0004678A2B	cystathionine beta lyase, partial	2.93689426824e-05	0.000101260101921	7.18911592386e-05
+UniRef50_UPI00037D0482	50S ribosomal protein L6	8.61366620339e-06	0.000269362574228	0.000260748908025
+UniRef50_F0VF06		1.06869509062e-06	1.68125183531e-06	6.1255674469e-07
+UniRef50_P37047	Carbohydrate diacid regulator	0.0026678854304	0.00055877126603	-0.00210911416437
+UniRef50_UPI000475D4DC	hypothetical protein	3.67780271062e-06	4.85887077572e-06	1.1810680651e-06
+UniRef50_UPI0003124421	hypothetical protein	2.05663687536e-05	5.50077780602e-05	3.44414093066e-05
+UniRef50_P50735	Cryptic catabolic NAD specific glutamate dehydrogenase GudB	4.96965260715e-06	0.000377390158577	0.00037242050597
+UniRef50_A4XNZ9	Lysine exporter protein 	0.000501087595826	0.00478388132025	0.00428279372442
+UniRef50_U4V580	UPF0301 protein HIMB11_01782	3.76897860925e-05	7.26699372455e-05	3.4980151153e-05
+UniRef50_UPI00036AF0AB	hypothetical protein	1.51049159358e-05	5.07284145377e-05	3.56234986019e-05
+UniRef50_B8D1K3	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	1.54160793162e-05	0.00346950774597	0.00345409166665
+UniRef50_A5UJ58	Adhesin like protein	0.00229880269678	0.000476317266442	-0.00182248543034
+UniRef50_UPI0003703272	hypothetical protein	1.61316082511e-06	8.23581394483e-06	6.62265311972e-06
+UniRef50_E2ZSG3	Glycolate oxidase, iron sulfur subunit	1.31330069224e-05	2.24412737548e-05	9.3082668324e-06
+UniRef50_L6WWY8		0.000302396989976	0.000137044480224	-0.000165352509752
+UniRef50_UPI000225FE4D	coenzyme PQQ biosynthesis protein D	0.000106206693939	7.11232719528e-05	-3.50834219862e-05
+UniRef50_UPI0004700C7A	hypothetical protein, partial	5.57525325827e-06	1.6687846053e-05	1.11125927947e-05
+UniRef50_K1ZX87		1.78410397243e-05	3.86097305425e-05	2.07686908182e-05
+UniRef50_D3QET9		0.0137331681876	0.00329273510606	-0.0104404330815
+UniRef50_M5X9E3		3.44256423507e-05	2.68035573355e-05	-7.6220850152e-06
+UniRef50_A0A024HK83	DNA polymerase III subunit epsilon	0.000220752040266	0.00072121761978	0.000500465579514
+UniRef50_Q0FDU0		2.19411619326e-05	2.26554242169e-05	7.142622843e-07
+UniRef50_O34591	Acetoin	0.0116559460306	0.0115344620238	-0.0001214840068
+UniRef50_UPI00034B0D3D	hypothetical protein	1.99674784254e-05	6.36726592939e-06	-1.3600212496e-05
+UniRef50_A7ZKH0	Multidrug resistance protein MdtH	0.00279545926657	0.00149043239446	-0.00130502687211
+UniRef50_A6M3F8	Metal dependent phosphohydrolase	0.000262143047812	0.00207258329605	0.00181044024824
+UniRef50_A7ZMQ9	UPF0756 membrane protein YeaL	0.00514753621162	0.000407333386473	-0.00474020282515
+UniRef50_A4WXX3	Transcriptional regulator, DeoR family	0.00138947465983	0.000233144767263	-0.00115632989257
+UniRef50_F6AYF6	TonB dependent siderophore receptor	0.000213304303761	0.0096243078876	0.00941100358384
+UniRef50_UPI00037C438D	hypothetical protein	1.24226973165e-06	2.03582519587e-06	7.9355546422e-07
+UniRef50_UPI00047806EC	hypothetical protein	3.68664442149e-06	2.51068396993e-05	2.14201952778e-05
+UniRef50_D6B3T3	Polyketide synthase 	0.000380166456054	6.73002942567e-05	-0.000312866161797
+UniRef50_L8UIS8		8.76434499951e-05	4.95871227016e-05	-3.80563272935e-05
+UniRef50_Q9RXC5		0.000209496058222	0.0390166753048	0.0388071792466
+UniRef50_C1D4B9	Recombination associated protein RdgC	0.000851879013176	0.00344743405807	0.00259555504489
+UniRef50_Q71YN8	Peptidase T	0.0323403818888	0.0188104559663	-0.0135299259225
+UniRef50_Q2RMC1	Peptidyl tRNA hydrolase	4.53925548609e-05	1.30148930409e-05	-3.237766182e-05
+UniRef50_A0A009R5V4	TetR family transcriptional regulator domain protein 	0.000216014603453	8.7780808855e-05	-0.000128233794598
+UniRef50_UPI000466D206	50S ribosomal protein L17	7.04515482458e-05	9.68359430347e-05	2.63843947889e-05
+UniRef50_R7PX92	Chlamydial polymorphic outer membrane protein repeat containing domain protein	7.13851464801e-05	4.91934179698e-06	-6.64658046831e-05
+UniRef50_Q5H1S4	Acyl CoA dehydrogenase	0.00518503437907	0.00270163367077	-0.0024834007083
+UniRef50_Q2NGB7	Transporter	0.00443202770759	0.00101835446879	-0.0034136732388
+UniRef50_A5UNH0		0.0022498671239	0.000896201212874	-0.00135366591103
+UniRef50_A5UNH3		0.0019004762106	0.0021572463838	0.0002567701732
+UniRef50_E6UB19	Arginine biosynthesis bifunctional protein ArgJ	0.000434972063444	0.00113807229048	0.000703100227036
+UniRef50_UPI00036661AC	hypothetical protein	3.44615632153e-05	4.88145171633e-05	1.4352953948e-05
+UniRef50_K2EUH3		5.69023122866e-05	1.85209847686e-05	-3.8381327518e-05
+UniRef50_P06971	Ferrichrome iron receptor	0.00295515708199	0.000350439699142	-0.00260471738285
+UniRef50_Q04CP4	Fhu operon transcription regulator	0.00497367021258	0.00112074036404	-0.00385292984854
+UniRef50_O19889	Uroporphyrinogen III C methyltransferase	2.11040011233e-05	3.01510580434e-05	9.0470569201e-06
+UniRef50_Q47427	Tail fiber assembly protein homolog	0.00205524027409	2.27201665278e-05	-0.00203252010756
+UniRef50_Q04G79	30S ribosomal protein S3	0.00481408644045	0.00521175482733	0.00039766838688
+UniRef50_A4WDR5	Anaerobic nitric oxide reductase transcription regulator NorR	0.00330482542509	0.000200291431097	-0.00310453399399
+UniRef50_I2JKJ5	Bifunctional adenylate cyclase hybrid sensor diguanylate cyclase response regulator	1.96575340115e-05	9.81945340175e-05	7.8537000006e-05
+UniRef50_K7Y9Y7	Outer membrane protein	0.000154707372483	0.00417709019422	0.00402238282174
+UniRef50_Q4L6H4	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0198217411377	0.0228644933931	0.0030427522554
+UniRef50_UPI0003B53166	hypothetical protein	0.00025846962913	0.000339476459576	8.1006830446e-05
+UniRef50_UPI00046E53C7	hypothetical protein	1.36957664735e-06	2.28230021775e-05	2.14534255301e-05
+UniRef50_U3SZE2		0.000295172210686	0.00449701408499	0.0042018418743
+UniRef50_A6LP67	Aminomethyltransferase	3.7794114564e-05	1.43697569023e-05	-2.34243576617e-05
+UniRef50_C3K475	Acetylglutamate kinase	0.000879493298011	0.00833109184008	0.00745159854207
+UniRef50_UPI0003677E0E	hypothetical protein	1.00606321404e-05	0.000156532233852	0.000146471601712
+UniRef50_UPI0002BC90CC	PREDICTED	3.58747273317e-06	1.37844349105e-05	1.01969621773e-05
+UniRef50_Q1M667	Blue light activated histidine kinase	3.50797147394e-05	3.28226154736e-05	-2.2570992658e-06
+UniRef50_E3A0D4		0.000926455114066	0.000304974222238	-0.000621480891828
+UniRef50_Q3J430	ATP synthase epsilon chain 1	0.00648982891585	0.000760472202226	-0.00572935671362
+UniRef50_R0TGF0		0.000228140541416	0.000632821511128	0.000404680969712
+UniRef50_E3HHW2	Pirin C terminal cupin domain protein 2	1.9741991764e-05	4.82260231688e-06	-1.49193894471e-05
+UniRef50_UPI0003B4B661	hypothetical protein, partial	0.0001321497423	4.16887110219e-05	-9.04610312781e-05
+UniRef50_C6BYG5	UDP N acetylmuramate  L alanine ligase	3.94110094315e-06	7.09810001829e-06	3.15699907514e-06
+UniRef50_Q2J728	Translation initiation factor IF 2	0.0003308209786	0.0105939275634	0.0102631065848
+UniRef50_W8SB38	Pe pgrs family protein	7.43773360583e-06	6.66474944059e-05	5.92097608001e-05
+UniRef50_A0A009HBV1	Ferrous iron transport protein B	0.000153768728707	0.0110218444381	0.0108680757094
+UniRef50_UPI000382BA5B	DNA glycosylase	6.91541118095e-05	4.88608850105e-05	-2.0293226799e-05
+UniRef50_E2PFC0		4.14773871599e-05	0.000219345176899	0.000177867789739
+UniRef50_D6SIZ2	Luciferase family oxidoreductase, FMN dependent, PP_0088 family	0.0264795109874	0.00766559231302	-0.0188139186744
+UniRef50_E8SJV4	Secretory antigen SsaA	0.0105223202959	0.000222880532219	-0.0102994397637
+UniRef50_Q8FJN9	Cardiolipin synthase B	0.00269441546301	0.000796215476306	-0.0018981999867
+UniRef50_A8TW43	Beta lactamase like protein	4.44002558944e-05	9.32076139124e-06	-3.50794945032e-05
+UniRef50_UPI0004652B1C	hypothetical protein	1.12853808788e-05	7.37062759403e-06	-3.91475328477e-06
+UniRef50_UPI00031CBF3C	hypothetical protein	2.7158762497e-05	3.12182724186e-06	-2.40369352551e-05
+UniRef50_UPI000310C5E8	hypothetical protein	7.92521408376e-05	0.000109597617659	3.03454768214e-05
+UniRef50_F5M2T1	Diguanylate cyclase	0.0091085131109	0.000725118959036	-0.00838339415186
+UniRef50_UPI0003769589	hypothetical protein	8.12213480441e-06	5.6289108381e-05	4.81669735766e-05
+UniRef50_P26276	Phosphomannomutase phosphoglucomutase	0.000394684521467	0.000364709898942	-2.9974622525e-05
+UniRef50_C8RWL5		0.000203803755852	0.000103253912421	-0.000100549843431
+UniRef50_Q3Z396	Deferrochelatase peroxidase EfeB	0.00426707625365	0.000313407946967	-0.00395366830668
+UniRef50_A9UTR3	Predicted protein	8.24993790657e-06	1.29082644261e-05	4.65832651953e-06
+UniRef50_T0I6W5		2.58476803046e-05	2.00381440775e-05	-5.8095362271e-06
+UniRef50_P0AC04	Outer membrane protein assembly factor BamD	0.00367800029486	0.00119036375135	-0.00248763654351
+UniRef50_A0A022S625	UvrD REP helicase N terminal domain protein	6.73652114688e-05	0.00815320498135	0.00808583976988
+UniRef50_A1B5D2		0.00153811082933	0.000710995997344	-0.000827114831986
+UniRef50_A1B5D1		6.37106323794e-05	2.6083315932e-05	-3.76273164474e-05
+UniRef50_C1A399	Arginine deiminase	6.52745271495e-06	1.17929395753e-05	5.26548686035e-06
+UniRef50_W5XHV0	Glycosyltransferase 36	0.000147953364439	0.000291414085125	0.000143460720686
+UniRef50_C4Z0Q8	Galactose 6 phosphate isomerase	0.000537362878444	0.00427524006556	0.00373787718712
+UniRef50_Q3IX62		0.00138206341026	0.000101729979102	-0.00128033343116
+UniRef50_Q3IX61		0.00759564519592	0.00224270375944	-0.00535294143648
+UniRef50_A3YTK8	MazG	1.46690931906e-05	9.38683732276e-06	-5.28225586784e-06
+UniRef50_W5X9I3	UDP glucose pyrophosphorylase	4.93940207852e-05	1.41117955691e-05	-3.52822252161e-05
+UniRef50_A3CQV0	33 kDa chaperonin	0.00347770362184	0.00409774080656	0.00062003718472
+UniRef50_UPI0003666D5F	hypothetical protein	5.19693405252e-05	4.26306526711e-05	-9.3386878541e-06
+UniRef50_L0DXM3	ADP heptose  lipooligosaccharide heptosyltransferase II	0.000161548925324	0.00399347606755	0.00383192714223
+UniRef50_UPI000370C5F4	MULTISPECIES	6.85062166732e-06	0.000197348534025	0.000190497912358
+UniRef50_Q8DV84		0.00565142415826	0.00216863125405	-0.00348279290421
+UniRef50_G0EVT1	D lactate dehydrogenase	0.00124223561794	0.000190118050557	-0.00105211756738
+UniRef50_F4BQ82	NADH peroxidase	0.00867277368233	0.00169250067474	-0.00698027300759
+UniRef50_A4WXA2	Sulfotransferase	0.000925636674667	8.38967912513e-05	-0.000841739883416
+UniRef50_W0Z1I7		0.000329279650037	0.000195263113306	-0.000134016536731
+UniRef50_W7JJV3		0.000248346045292	8.0920393093e-05	-0.000167425652199
+UniRef50_Q5XAQ1	Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase	0.00463445492129	0.00441034321433	-0.00022411170696
+UniRef50_Q9MA93	Glucose and ribitol dehydrogenase homolog 2	2.59182594791e-05	6.19301784008e-05	3.60119189217e-05
+UniRef50_UPI000255EED3	acetolactate synthase 3 regulatory subunit	1.25558028247e-05	0.000225534882495	0.00021297907967
+UniRef50_UPI0003B75ED8	3 hydroxyacyl CoA dehydrogenase	2.37520368161e-06	4.9808186197e-06	2.60561493809e-06
+UniRef50_I6TX78	Competence protein transcription factor	0.00562646504624	0.00262115587353	-0.00300530917271
+UniRef50_A9FDL0	tRNA N6 adenosine threonylcarbamoyltransferase	5.88576930307e-06	1.28147942615e-05	6.92902495843e-06
+UniRef50_D3DZK4	Sortase family protein	0.00546430550572	0.00105267516554	-0.00441163034018
+UniRef50_Q9RWY1	Serine threonine protein kinase related protein	0.000239043627327	0.0579704021936	0.0577313585663
+UniRef50_Q47153	Putative protein FhiA	0.00547909844496	0.000411373672018	-0.00506772477294
+UniRef50_U6GAH2		6.61143300058e-06	3.22046580918e-06	-3.3909671914e-06
+UniRef50_I4YVM4		3.00215148816e-05	1.8691572408e-05	-1.13299424736e-05
+UniRef50_V9XXU2		0.000417092972124	0.00053921152176	0.000122118549636
+UniRef50_P77766	Protein TrpH	0.00240220542502	0.00129411112873	-0.00110809429629
+UniRef50_P69827	PTS system mannitol specific cryptic EIICB component	0.00168743322254	0.00127301288228	-0.00041442034026
+UniRef50_T2EKM2	Fic DOC family protein	0.000345092107772	0.000357341313693	1.2249205921e-05
+UniRef50_UPI000309099A	hypothetical protein	8.04936175202e-05	0.000201972825941	0.000121479208421
+UniRef50_S5Y902		2.73905820559e-05	2.67366148739e-05	-6.53967182e-07
+UniRef50_UPI0003B7338D	proline iminopeptidase	8.27447744401e-06	1.2374039873e-05	4.09956242899e-06
+UniRef50_Q3IWE2	Integrase family protein	0.012260760857	0.00277028221382	-0.00949047864318
+UniRef50_P0DH75	Orotate phosphoribosyltransferase	0.0214324677234	0.00643371012611	-0.0149987575973
+UniRef50_A0A037X3F6	Sodium	0.000638143883878	0.000128959259902	-0.000509184623976
+UniRef50_X1CKD2	Marine sediment metagenome DNA, contig	2.43074058672e-05	1.04917836046e-05	-1.38156222626e-05
+UniRef50_UPI000382C157	MULTISPECIES	1.16472740954e-05	6.30917958462e-06	-5.33809451078e-06
+UniRef50_Q8PY83	CoB  CoM heterodisulfide reductase 1 subunit B	0.00316998445477	0.000360875810829	-0.00280910864394
+UniRef50_P58253	Stage 0 sporulation protein A homolog	0.00013827325599	0.00116843210215	0.00103015884616
+UniRef50_Q06400	UPF0394 inner membrane protein YedE	0.00239822768777	0.000350907583857	-0.00204732010391
+UniRef50_A6L2R5	L arabinose isomerase	1.56083842572e-05	0.00583986046704	0.00582425208278
+UniRef50_UPI000382BAEE	hypothetical protein, partial	7.69763534325e-05	2.22378650835e-05	-5.4738488349e-05
+UniRef50_Q12SM7	Argininosuccinate synthase	4.28170401796e-06	6.36284076096e-05	5.93467035916e-05
+UniRef50_UPI0003760F37	hypothetical protein	7.75438859203e-06	1.31032623301e-05	5.34887373807e-06
+UniRef50_G7U6J5	Transporter, major facilitator family protein	0.000189834543044	0.00796609843678	0.00777626389374
+UniRef50_UPI00040DB596	hypothetical protein	8.94430757772e-06	5.13048862245e-06	-3.81381895527e-06
+UniRef50_P31446	Inner membrane protein YidI	0.0021773525917	0.00212403689804	-5.331569366e-05
+UniRef50_G2QV25		0.000149994432661	0.000226875829852	7.6881397191e-05
+UniRef50_UPI0003B518FF	glycerophosphoryl diester phosphodiesterase	6.36631692428e-06	1.32402635297e-05	6.87394660542e-06
+UniRef50_D5ATD5	Flagellar protein, putative	0.000149956634045	5.75843959422e-05	-9.23722381028e-05
+UniRef50_UPI00046CA2CA	hypothetical protein	1.8191231751e-06	0.000297830893155	0.00029601176998
+UniRef50_UPI0003C18CFE	PREDICTED	6.73724572859e-06	2.29166212526e-05	1.6179375524e-05
+UniRef50_P57487	Endonuclease 1	0.00237116977459	0.00195932616735	-0.00041184360724
+UniRef50_P0C0R4	Lipase	0.0228640233925	0.00621830992186	-0.0166457134706
+UniRef50_Q5QKR8	UDP N acetylglucosamine 4,6 dehydratase 	0.00529579086442	0.00437979518392	-0.0009159956805
+UniRef50_L7LQU6	Putative monotil peptide	0.0001081934572	0.000111490969176	3.297511976e-06
+UniRef50_U6MR10		2.09210782683e-05	7.51430106113e-06	-1.34067772072e-05
+UniRef50_W4TVZ8	Heme ABC transporter	0.000147698784763	0.00063988827649	0.000492189491727
+UniRef50_E1PY25		0.000115793248112	0.0030632883327	0.00294749508459
+UniRef50_W6R6D1		3.66191644304e-06	5.24363577465e-06	1.58171933161e-06
+UniRef50_M0DCT7	ABC transporter	0.000170001773494	0.000220143564313	5.0141790819e-05
+UniRef50_A1TM37	Adenylosuccinate synthetase	8.4201052194e-06	1.48190700826e-05	6.3989648632e-06
+UniRef50_C7ND01	Diphosphomevalonate decarboxylase	0.000465935712518	0.000188099812232	-0.000277835900286
+UniRef50_A6LU62		0.00025679318969	0.000417900997911	0.000161107808221
+UniRef50_A3PMY6	ABC transporter related	0.00227250364417	0.000837480395854	-0.00143502324832
+UniRef50_R6SI27	MATE family multi antimicrobial extrusion protein	0.000323989112238	0.00126778811233	0.000943799000092
+UniRef50_K9GVE2	Flp pilus assembly protein TadB	0.000104393563199	2.08546251968e-05	-8.35389380022e-05
+UniRef50_UPI000464BD2D	hypothetical protein	9.46996333261e-06	5.1657024994e-06	-4.30426083321e-06
+UniRef50_UPI0004702CEA	UDP diphosphatase	3.5680475922e-05	2.49229883237e-05	-1.07574875983e-05
+UniRef50_K6DGD7		0.000144486421937	4.85375355443e-05	-9.59488863927e-05
+UniRef50_Q6GIU7	Quinolone resistance protein NorA	0.0179421536492	0.00516981772652	-0.0127723359227
+UniRef50_D9SRN1	Cation diffusion facilitator family transporter	0.000294339764276	0.00128103038671	0.000986690622434
+UniRef50_B0BXC2	Holliday junction ATP dependent DNA helicase RuvA	1.39302050565e-05	1.10428037697e-05	-2.8874012868e-06
+UniRef50_UPI0003592A52	PREDICTED	3.64537532825e-05	5.72209603517e-05	2.07672070692e-05
+UniRef50_F8LQS7		0.00369522145188	0.00256434807235	-0.00113087337953
+UniRef50_UPI00047D9DA7	membrane protein	2.80203427805e-05	1.99766895275e-05	-8.043653253e-06
+UniRef50_G7M6Q3	Lysophospholipase	0.000115556935367	0.00086050984064	0.000744952905273
+UniRef50_UPI00034C319E	hypothetical protein	0.00150171477598	0.000548501996132	-0.000953212779848
+UniRef50_B0KR46	N succinylarginine dihydrolase	0.00548156161458	0.0100844671499	0.00460290553532
+UniRef50_UPI000360EE81	hypothetical protein, partial	0.00476070088473	0.000993782766318	-0.00376691811841
+UniRef50_UPI000373527A	hypothetical protein, partial	6.57580309844e-06	0.000180891701378	0.00017431589828
+UniRef50_UPI000273E344		1.75723901069e-05	0.000206515178457	0.00018894278835
+UniRef50_UPI0003B4641B	tRNA delta isopentenylpyrophosphate transferase	5.85922950512e-06	6.47617179033e-06	6.1694228521e-07
+UniRef50_P65858	tRNA pseudouridine synthase B	0.00472598894426	0.00228511505579	-0.00244087388847
+UniRef50_A6LF29	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.12815880732e-05	4.85591010407e-05	3.72775129675e-05
+UniRef50_W0Z6N6	Rhs element Vgr protein	1.3950637452e-05	2.8895959412e-05	1.494532196e-05
+UniRef50_Q49UP7		0.000986091429104	0.000107946332005	-0.000878145097099
+UniRef50_E4A2Y9		0.000120843330125	0.000333756487901	0.000212913157776
+UniRef50_Q3JRD1		4.77007516841e-06	1.3897682051e-06	-3.38030696331e-06
+UniRef50_Q65UG3	Zinc import ATP binding protein ZnuC	1.83482592107e-05	6.27546989148e-06	-1.20727893192e-05
+UniRef50_C6SJL2	Glutaminyl tRNA synthetase	0.000101839745189	0.000938655064242	0.000836815319053
+UniRef50_Q6FFB2	Argininosuccinate lyase	0.000276989087549	0.0091263797547	0.00884939066715
+UniRef50_O67691	Phosphoribosylformylglycinamidine synthase 2	1.32131126277e-05	2.42464281413e-06	-1.07884698136e-05
+UniRef50_Q1I3E4		4.01668764398e-05	9.58809611391e-05	5.57140846993e-05
+UniRef50_I3DVS9	Ribosylpyrimidine nucleosidase	8.61534528749e-06	4.07296790408e-05	3.21143337533e-05
+UniRef50_A5UKN8	Formate dehydrogenase, iron sulfur subunit	0.00278333064957	0.000353672700827	-0.00242965794874
+UniRef50_A0A029LKQ2	Transposase IS66 family protein	1.65370147268e-05	3.4898894268e-05	1.83618795412e-05
+UniRef50_I0BK74	Transcriptional regulator	0.000147647714023	0.000767527508587	0.000619879794564
+UniRef50_UPI0004281C6D	hypothetical protein	8.78828452901e-06	2.66158836521e-06	-6.1266961638e-06
+UniRef50_UPI0004776DB1	hypothetical protein, partial	2.51637073451e-05	0.000101320463775	7.61567564299e-05
+UniRef50_Q3JKK7		9.83702684725e-05	0.000351928292478	0.000253558024005
+UniRef50_Q5F973	Phosphoribosylformylglycinamidine cyclo ligase	0.0258141219175	0.0179972795609	-0.0078168423566
+UniRef50_M9S656	Short chain dehydrogenase	0.000189691451679	0.00145539612703	0.00126570467535
+UniRef50_Q48P72	Acyl CoA dehydrogenase family protein	0.000327102125375	0.000523577800771	0.000196475675396
+UniRef50_J1KAC8		0.00773985994521	0.00272877465217	-0.00501108529304
+UniRef50_D3E112	Polysaccharide biosynthesis protein	0.00135832960428	0.00166877178344	0.00031044217916
+UniRef50_UPI000443C5AC	PREDICTED	5.08267091565e-06	5.92579757507e-05	5.4175304835e-05
+UniRef50_P64634	Putative DNA utilization protein HofN	0.000212070780251	0.00292405338383	0.00271198260358
+UniRef50_UPI0003B6BEF2	3 dehydroquinate dehydratase	7.33240170063e-05	6.43211608159e-05	-9.0028561904e-06
+UniRef50_X6KT46		7.1725400588e-05	8.1206852571e-05	9.481451983e-06
+UniRef50_A7FFL7	Protein NrdI	2.00179836386e-05	6.50117522155e-05	4.49937685769e-05
+UniRef50_UPI000381D661	hypothetical protein	5.20169759313e-06	3.01022016333e-05	2.49005040402e-05
+UniRef50_UPI00031610FF	hypothetical protein	6.30823079966e-06	3.16510609459e-05	2.53428301462e-05
+UniRef50_W8AT56	Putative transposase, IS630 family	3.33182604122e-05	0.000464386041358	0.000431067780946
+UniRef50_UPI0003B5E3DD	GTPase Era	6.86347782843e-06	8.35234719837e-05	7.66599941553e-05
+UniRef50_A3VZS1		1.84528921436e-05	6.18775269702e-06	-1.22651394466e-05
+UniRef50_P21893	Single stranded DNA specific exonuclease RecJ	0.00341374718866	0.000626122744708	-0.00278762444395
+UniRef50_W6RJG6		8.70158500796e-06	1.69582412709e-05	8.25665626294e-06
+UniRef50_Q5HDD6	Gamma hemolysin component A	0.0287295199174	0.00455629671131	-0.0241732232061
+UniRef50_UPI0002F9333F	hypothetical protein	4.14411895905e-06	1.20072126175e-05	7.86309365845e-06
+UniRef50_Q3IV09	O acetylhomoserine sulfhydrylase	0.022417953824	0.00400494112946	-0.0184130126945
+UniRef50_A4VNQ6	Long chain fatty acid  CoA ligase	0.000844313373164	0.000728833268361	-0.000115480104803
+UniRef50_UPI00046FBE0E	purine nucleoside phosphorylase	2.07941840203e-05	9.29909893461e-05	7.21968053258e-05
+UniRef50_UPI00016C0F2D	oligopeptide transport system permease protein	4.9244683723e-06	4.50967561077e-06	-4.1479276153e-07
+UniRef50_V4RCH7		2.08972145252e-05	2.84080852529e-05	7.5108707277e-06
+UniRef50_W8RY81	ATP phosphoribosyltransferase regulatory subunit	0.000376530714836	0.000259429023591	-0.000117101691245
+UniRef50_F9JWB9	Tandem lipoprotein	4.10940930017e-05	5.05991465309e-05	9.5050535292e-06
+UniRef50_W7Q3C9		2.5314171067e-05	9.84306664612e-05	7.31164953942e-05
+UniRef50_Q9RSL6	Molybdate metabolism regulator related protein	0.000118581986021	0.0339540040705	0.0338354220845
+UniRef50_Q89DJ1	Ribose phosphate pyrophosphokinase	0.00783753989287	0.00262088552144	-0.00521665437143
+UniRef50_V5SZD4	Chemotaxis protein	0.000713818312355	0.000667165698207	-4.6652614148e-05
+UniRef50_P31069	Voltage gated potassium channel Kch	0.00270026405514	0.00176148646986	-0.00093877758528
+UniRef50_UPI00037DB293	glutaredoxin, partial	0.000154490156105	0.000129934472292	-2.4555683813e-05
+UniRef50_X3EPV1		1.74051061113e-05	2.42703907175e-05	6.8652846062e-06
+UniRef50_N6UFE0		4.08838834928e-05	0.000347020118898	0.000306136235405
+UniRef50_A5ULK1	Adenine deaminase	0.00301534187372	0.000549811784091	-0.00246553008963
+UniRef50_K8EIP5	Radical SAM superfamily protein	0.00506574266553	0.00122666056066	-0.00383908210487
+UniRef50_UPI0001CE17CF	PREDICTED	4.57914633382e-06	3.7486955631e-06	-8.3045077072e-07
+UniRef50_A8LML0	Major facilitator superfamiy transporter	0.00804211490641	0.00248969110144	-0.00555242380497
+UniRef50_D8UEV7		3.77171590964e-06	4.8541817855e-05	4.47701019454e-05
+UniRef50_Q49ZY7		0.00228693613597	0.00419304919855	0.00190611306258
+UniRef50_Q8FP91	Probable malate	3.07473975058e-06	1.03634110099e-05	7.28867125932e-06
+UniRef50_D3E2A1	Adhesin like protein	9.04497122279e-08	2.28645810921e-07	1.38196098693e-07
+UniRef50_C6M427		0.0001771428932	0.00131784323675	0.00114070034355
+UniRef50_B0VBR0		1.22767796998e-05	0.0054060114159	0.0053937346362
+UniRef50_F2HSU2		0.000205600681968	0.000289162496845	8.3561814877e-05
+UniRef50_UPI00037460BA	hypothetical protein	0.000344723354045	0.000311406016025	-3.331733802e-05
+UniRef50_UPI00046ED203	hypothetical protein	3.42862577594e-06	2.7790672943e-05	2.43620471671e-05
+UniRef50_Q5HHH0	Probable cysteine desulfurase	0.0135115519945	0.00325912101124	-0.0102524309833
+UniRef50_K0LZ01	Aminoacylase	0.0154030767049	0.00126939282875	-0.0141336838761
+UniRef50_O05158	PAGS 5	0.00542398282029	0.000453379909403	-0.00497060291089
+UniRef50_UPI00036B729E	hypothetical protein	1.31138581793e-05	1.63627005533e-05	3.248842374e-06
+UniRef50_UPI0001CBAA68	PREDICTED	1.35280573419e-05	1.11812774006e-05	-2.3467799413e-06
+UniRef50_UPI000476A0F0	hypothetical protein	8.08136948849e-06	0.000126264849105	0.000118183479617
+UniRef50_UPI000225A96D	DNA replication and repair protein	6.77785150383e-06	9.36341710742e-06	2.58556560359e-06
+UniRef50_I3TRT4		1.27970421916e-05	4.0302512434e-05	2.75054702424e-05
+UniRef50_A3PS72		0.0321057999872	0.0247517978237	-0.0073540021635
+UniRef50_D0D1V0	ISSpo9, transposase	0.000322852848804	5.27379461516e-06	-0.000317579054189
+UniRef50_E1RJD9	Radical SAM domain protein	0.00366313905256	0.0011019615324	-0.00256117752016
+UniRef50_P56480	ATP synthase subunit beta, mitochondrial	2.10459577151e-05	6.5573744164e-06	-1.44885832987e-05
+UniRef50_UPI0003663FE6	hypothetical protein	7.5032212379e-06	3.04894990675e-05	2.29862778296e-05
+UniRef50_Q1CT84	Outer membrane lipoprotein carrier protein	0.000205155428724	0.0014441743997	0.00123901897098
+UniRef50_UPI0003B62AA1	MULTISPECIES	6.75688760049e-06	5.76319452037e-05	5.08750576032e-05
+UniRef50_Q74I98	tRNA  ) methyltransferase	0.0174224187073	0.00594022313677	-0.0114821955705
+UniRef50_UPI0002629E92	molybdenum cofactor biosynthesis protein	7.3835195362e-06	2.64159803486e-06	-4.74192150134e-06
+UniRef50_R4ZNC7	Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.000477843286018	0.000144644916828	-0.00033319836919
+UniRef50_UPI00036F9B44	hypothetical protein, partial	6.15284834845e-06	1.22263262076e-05	6.07347785915e-06
+UniRef50_Q0BGD7	Putative ribose galactose methyl galactoside import ATP binding protein 1	1.24595346227e-05	1.93302950253e-05	6.8707604026e-06
+UniRef50_T2EKK2	Type I restriction modification DNA specificity domain protein	0.00111828402562	0.000170211357467	-0.000948072668153
+UniRef50_B4RVP1	Lipoprotein signal peptidase	8.20562129306e-06	3.22802041214e-05	2.40745828283e-05
+UniRef50_Q2YYZ8	UPF0060 membrane protein SAB2216c	0.00305000736918	0.0019978107061	-0.00105219666308
+UniRef50_B5F8H0	Glutathione regulated potassium efflux system ancillary protein KefG	0.00688455291034	0.00096825149244	-0.0059163014179
+UniRef50_UPI000374D55A	MULTISPECIES	3.59359338876e-05	0.00153745336461	0.00150151743072
+UniRef50_A0A024JQ60	Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial  (Fragment)	2.30009104127e-05	5.05836967834e-05	2.75827863707e-05
+UniRef50_A6LWE1	Multi sensor hybrid histidine kinase	0.00034557873077	0.000586993701942	0.000241414971172
+UniRef50_G7LY47	Multi sensor signal transduction histidine kinase	6.45275194619e-05	0.00194883387429	0.00188430635483
+UniRef50_D3P6U6	ATP dependent helicase Lhr and Lhr like helicase	0.0143689982943	0.00473817093866	-0.00963082735564
+UniRef50_C4ZIQ5	Transcriptional regulator, BadM Rrf2 family	1.8870070735e-05	2.5112341999e-05	6.242271264e-06
+UniRef50_UPI0003B7698F	hypothetical protein	1.08765144268e-05	2.0407747564e-05	9.5312331372e-06
+UniRef50_UPI00046423BB	MULTISPECIES	5.87092710625e-05	2.23733678578e-05	-3.63359032047e-05
+UniRef50_P0AAC5	Inner membrane protein YbhL	0.00218575393679	0.00278728730773	0.00060153337094
+UniRef50_Q67JV0	50S ribosomal protein L16	0.0206450779195	0.0136209186424	-0.0070241592771
+UniRef50_S3XCS7		5.50306351345e-06	7.55404738801e-05	7.00374103666e-05
+UniRef50_Q89AM3	Adenylosuccinate lyase	2.75143678314e-06	9.59641371305e-06	6.84497692991e-06
+UniRef50_K0RMT8		2.3883482039e-05	4.35249437589e-05	1.96414617199e-05
+UniRef50_C7ZXZ9		0.0146302537775	0.0017738603728	-0.0128563934047
+UniRef50_UPI0002D7A7D9	hypothetical protein	4.75934573618e-05	9.43348172102e-05	4.67413598484e-05
+UniRef50_Q6G7M7	D alanine  D alanine ligase	0.0183743927206	0.00529793732398	-0.0130764553966
+UniRef50_A5ULE1	Phosphoribosylformylglycinamidine synthase related protein 	0.00252084535205	0.000437318496723	-0.00208352685533
+UniRef50_Q46856	Alcohol dehydrogenase YqhD	0.00164692097917	0.00330937667248	0.00166245569331
+UniRef50_Q4JIU1		0.00011083265784	1.27192495205e-05	-9.81134083195e-05
+UniRef50_B6YWH0	Glyoxylate reductase	0.0108289555712	0.000888291245996	-0.0099406643252
+UniRef50_T2HA74	Polysaccharide biosynthesis protein WbpM	0.000740280554145	0.000182443948742	-0.000557836605403
+UniRef50_Q9I4V0	Nitronate monooxygenase	0.000382129693134	0.000271763839138	-0.000110365853996
+UniRef50_UPI00021A5C77	PREDICTED	1.06611313742e-05	5.88649092397e-06	-4.77464045023e-06
+UniRef50_UPI0001AF28DC	putative NRPS	8.88131607553e-06	0.000170972538076	0.000162091222
+UniRef50_P0AC61	Glutaredoxin 2	0.00271683729835	0.00074138084986	-0.00197545644849
+UniRef50_B2THH4	HDIG domain HD domain protein	0.00059784359491	0.00444841180885	0.00385056821394
+UniRef50_H7QP44	Thioesterase superfamily protein	0.000755819453827	0.000332508871333	-0.000423310582494
+UniRef50_F7ZCY2	High affinity branched chain amino acid transport system permease protein	0.00615122281328	0.00249991667745	-0.00365130613583
+UniRef50_A5IQI7	Iron dependent repressor	0.0232660925804	0.00768758985763	-0.0155785027228
+UniRef50_UPI000479C12C	hypothetical protein	6.02602611344e-06	6.90276423422e-05	6.30016162288e-05
+UniRef50_U3QQX1	C4 dicarboxylate ABC transporter	3.8443589434e-06	1.00981124681e-05	6.2537535247e-06
+UniRef50_Q8XHH1	Prolipoprotein diacylglyceryl transferase 2	0.000925760004832	0.00164255456126	0.000716794556428
+UniRef50_UPI000371D403	hypothetical protein	1.4740653753e-05	2.14141258889e-05	6.6734721359e-06
+UniRef50_UPI00036A9BE8	hypothetical protein, partial	2.94180246904e-06	1.6815662466e-05	1.3873859997e-05
+UniRef50_T5YMK1	Putrescine aminotransferase	0.000272278290666	0.000154886383839	-0.000117391906827
+UniRef50_A6X0F3	Glutathione S transferase domain protein	0.00264457427067	0.000854494036845	-0.00179008023383
+UniRef50_P0AAS6		0.00301479302705	0.000770104003268	-0.00224468902378
+UniRef50_A1B5Z0	UPF0042 nucleotide binding protein Pden_2850	0.00700874022664	0.000794654133621	-0.00621408609302
+UniRef50_P76221	TVP38 TMEM64 family inner membrane protein YdjZ	0.00155573092963	0.000510634072383	-0.00104509685725
+UniRef50_UPI000464FB5D	hypothetical protein	0.000237132667756	4.09555212804e-05	-0.000196177146476
+UniRef50_E7I7N1	Cryptic beta glucoside bgl operon antiterminator	0.000954801304345	0.000400882405239	-0.000553918899106
+UniRef50_V4JK35		0.00197016763895	0.000173886185593	-0.00179628145336
+UniRef50_UPI00040B5335	peptide ABC transporter ATP binding protein	8.69241183796e-06	3.43539528549e-05	2.56615410169e-05
+UniRef50_Q49UZ0	Orn Lys Arg decarboxylase family protein	0.0202895657818	0.00587962248506	-0.0144099432967
+UniRef50_J7GCQ9		0.00256455449198	0.000957397270738	-0.00160715722124
+UniRef50_V5V9H0	SAM dependent methyltransferase	0.000259143699447	0.00588214827094	0.00562300457149
+UniRef50_Q8ESX1	Rhamnulokinase	0.000280994464564	0.00164436613851	0.00136337167395
+UniRef50_Q7MDH6	Sugar phosphate permease	0.0238094070165	0.00486401042311	-0.0189453965934
+UniRef50_U5T5B4		0.000864431759734	0.00296617766466	0.00210174590493
+UniRef50_L5TAD4		9.98448045177e-05	0.000535886123772	0.000436041319254
+UniRef50_T9KFG8	Phage protein	0.00104748831144	0.000625584547041	-0.000421903764399
+UniRef50_Q0TD54	Glutamate ammonia ligase adenylyltransferase	0.0012656267177	0.000133808174176	-0.00113181854352
+UniRef50_D5AQD8		6.7804990909e-05	2.21095397275e-05	-4.56954511815e-05
+UniRef50_K1YSK2		6.12396331385e-05	0.00011110249862	4.98628654815e-05
+UniRef50_W0H8V7	GGDEF domain EAL domain protein	0.000782519312829	0.000442905096598	-0.000339614216231
+UniRef50_Q9HXI1	Protein translocase subunit SecD	0.000643077416886	0.00265285813075	0.00200978071386
+UniRef50_UPI0003B4F453	uridine cytidine kinase	1.18723353037e-05	3.85310012767e-05	2.6658665973e-05
+UniRef50_UPI00037F9CB9	hypothetical protein	3.87295067252e-05	0.000216620761222	0.000177891254497
+UniRef50_UPI00047891B3	hypothetical protein	0.000157924934525	6.08227769029e-05	-9.71021576221e-05
+UniRef50_G2FHS7	Phosphate ABC transporter, periplasmic phosphate binding protein PstS	5.40513820837e-06	8.43963892416e-06	3.03450071579e-06
+UniRef50_Q6GEF4	Protein FdhD homolog	0.016648549859	0.00292836153648	-0.0137201883225
+UniRef50_D2QKI4	AMP dependent synthetase and ligase	0.000913356729407	0.000242506213982	-0.000670850515425
+UniRef50_UPI000377E954	hypothetical protein	6.0421387367e-06	3.28961181655e-05	2.68539794288e-05
+UniRef50_S9SK01		1.61523697842e-05	2.53453578297e-05	9.1929880455e-06
+UniRef50_Q8NMT1	Uronate isomerase	1.03021610202e-05	2.22559137301e-05	1.19537527099e-05
+UniRef50_Q8DSG4	Aspartyl glutamyl tRNA amidotransferase subunit C	0.00124987846965	0.00074138084986	-0.00050849761979
+UniRef50_B4F1G9	Argininosuccinate lyase	4.75591485511e-05	1.20014105834e-05	-3.55577379677e-05
+UniRef50_UPI0003592D1E	PREDICTED	4.77048258149e-06	1.15095785661e-05	6.73909598461e-06
+UniRef50_UPI000317A305	hypothetical protein	0.000321737431657	0.000135637366249	-0.000186100065408
+UniRef50_Q6FEF0		0.000225589236365	0.00633991003753	0.00611432080117
+UniRef50_P07024	Protein UshA	0.0015439512631	0.000227167628864	-0.00131678363424
+UniRef50_UPI000381BCCD	hypothetical protein	2.88109959191e-05	6.66095275099e-05	3.77985315908e-05
+UniRef50_A1WG04	Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.0149789830921	0.00315943209358	-0.0118195509985
+UniRef50_Q6FEF8		7.86429143391e-05	0.00579589388412	0.00571725096978
+UniRef50_M1MKU0		0.000513241402379	0.00093852908226	0.000425287679881
+UniRef50_D5AT19		4.63438560633e-06	4.73956676633e-06	1.0518116e-07
+UniRef50_W0M3M5	RNA pseudouridine synthase family protein	1.74322341986e-05	9.11896896221e-05	7.37574554235e-05
+UniRef50_UPI000472066C	hypothetical protein	2.77891824027e-05	1.15261445221e-05	-1.62630378806e-05
+UniRef50_R7N6I1	Thiamine pyrophosphate protein domain protein TPP binding	6.86754376362e-05	0.00103036665919	0.000961691221554
+UniRef50_W5LSB3		3.75221782819e-05	9.3547261122e-05	5.60250828401e-05
+UniRef50_UPI00047AC46D	hypothetical protein	3.80168977992e-05	7.45856714779e-05	3.65687736787e-05
+UniRef50_A3W953		0.000190085568398	0.000122538051944	-6.7547516454e-05
+UniRef50_G2T956	Thioesterase superfamily protein	9.66680118566e-06	0.000604595219791	0.000594928418605
+UniRef50_A4WT88	Autoinducer binding domain protein	0.00448971747239	0.00158544849517	-0.00290426897722
+UniRef50_Q883F3	Urease subunit gamma beta	0.000207467420505	0.0257169777574	0.0255095103369
+UniRef50_G8VJT5	Lysophospholipase	1.93823857275e-05	0.000153978666532	0.000134596280804
+UniRef50_UPI0004638C41	D alanyl D alanine carboxypeptidase	7.93593623542e-06	1.24220730052e-05	4.48613676978e-06
+UniRef50_UPI00038F7D5E	Allantoinase	9.98666050696e-06	1.39260278478e-05	3.93936734084e-06
+UniRef50_B4T534	Isopentenyl diphosphate Delta isomerase	0.000903556888214	0.00117107907278	0.000267522184566
+UniRef50_M1MET0	Cell wall binding repeat containing protein	0.00036550513354	0.00139822002058	0.00103271488704
+UniRef50_W6M800		1.84503154394e-05	3.54459088754e-05	1.6995593436e-05
+UniRef50_Q9RYT6	TDP glucose 4,6 dehydratase related protein	0.000440012030796	0.0311743831295	0.0307343710987
+UniRef50_O85342	Mannose 1 phosphate guanylyltransferase 2	2.13623819176e-05	1.10212775562e-05	-1.03411043614e-05
+UniRef50_F0QHU9	Lipid A phosphoethanolamine transferase, associated with polymyxin resistance	0.000306490256408	0.0054900629274	0.00518357267099
+UniRef50_W8V286	Beta hydroxyacyl ACP dehydratase	1.08741288248e-05	3.23312192553e-05	2.14570904305e-05
+UniRef50_Q8XRC2	UPF0271 protein RSp0936	0.0012512724306	0.00835377675494	0.00710250432434
+UniRef50_UPI000470CB6A	hypothetical protein, partial	1.26733500137e-05	3.1825497064e-05	1.91521470503e-05
+UniRef50_V9QR17	GntR family transcriptional regulator	0.00190857951352	0.000509166733097	-0.00139941278042
+UniRef50_S5XZH4	Replication protein C	0.000184642246177	3.13422065627e-05	-0.000153300039614
+UniRef50_S2ZMR6		1.02866352819e-05	3.0152447036e-05	1.98658117541e-05
+UniRef50_P42604	Altronate dehydratase	0.00313392792794	0.00640670936184	0.0032727814339
+UniRef50_UPI0004081C8A	ABC transporter ATP binding protein	1.20953506588e-05	9.49766499023e-05	8.28812992435e-05
+UniRef50_UPI00037C4CDF	hypothetical protein	2.53745218018e-05	2.88784410243e-05	3.5039192225e-06
+UniRef50_A0A035VXH8		0.000967583739845	0.000198724759845	-0.00076885898
+UniRef50_UPI0002F80216	ABC transporter ATP binding protein	2.08447367061e-06	5.05992499922e-06	2.97545132861e-06
+UniRef50_UPI00036DADFE	hypothetical protein	0.000697208023748	0.000251333366122	-0.000445874657626
+UniRef50_UPI0003FA02C9	hypothetical protein	1.97810536707e-05	7.8648812496e-05	5.88677588253e-05
+UniRef50_Q67N85	L threonine 3 dehydrogenase	7.19269073162e-06	5.21037960824e-05	4.49111053508e-05
+UniRef50_P70971		2.20248668497e-05	6.30162755622e-05	4.09914087125e-05
+UniRef50_Q6SSE6	Plus agglutinin	3.68410569987e-06	2.91717431202e-05	2.54876374203e-05
+UniRef50_Q8YI99	Pyrazinamidase   nicotinamidase	0.00133796852055	0.00135133707812	1.336855757e-05
+UniRef50_B7V5U6		0.000259035845508	0.000427013063902	0.000167977218394
+UniRef50_M3VMM8	Insoluble matrix protein	1.43744135852e-05	2.9879449446e-05	1.55050358608e-05
+UniRef50_Q8CT01		0.00902546522588	0.00417425620137	-0.00485120902451
+UniRef50_T5MN46	Inner membrane amino acid ABC transporter permease yhdY	0.000154496311943	0.000233451940873	7.895562893e-05
+UniRef50_G7ZNW2		0.0154060712507	0.00475080998459	-0.0106552612661
+UniRef50_Q28RH4		0.000454887226161	0.00177734319615	0.00132245596999
+UniRef50_Q2W825	Predicted transcriptional regulator	0.000148174061495	2.25362641568e-05	-0.000125637797338
+UniRef50_C6S923	Thiol	0.00175606438739	0.00450851826651	0.00275245387912
+UniRef50_UPI0004449CBD	SKN1 domain containing protein	1.43157328522e-06	1.00999994179e-05	8.66842613268e-06
+UniRef50_B2J5F8	Malate dehydrogenase	2.88278501439e-05	7.66585811992e-06	-2.1161992024e-05
+UniRef50_UPI00036B8B42	hypothetical protein	4.34231434949e-05	1.20113109164e-05	-3.14118325785e-05
+UniRef50_P30847	Signal transduction histidine protein kinase BaeS	0.00283913936315	0.00110697990601	-0.00173215945714
+UniRef50_N4UTL9		0.000523658787645	0.000227775885127	-0.000295882902518
+UniRef50_UPI0002375E1A	epimerase	0.0001376674116	3.05813491483e-05	-0.000107086062452
+UniRef50_H8GXK1	Coenzyme F390 synthetase FtsA	2.00579423501e-05	0.000346570489416	0.000326512547066
+UniRef50_A5IVA2	Bile acid	0.00795558545244	0.00335820270768	-0.00459738274476
+UniRef50_Q83MN8	Chromosome partitioning protein ParA	5.55397165518e-06	7.68949897227e-06	2.13552731709e-06
+UniRef50_Q1IWN0	Carbamoyl phosphate synthase small chain	0.000301118567589	0.0550800785935	0.0547789600259
+UniRef50_P0AFN8	Inner membrane transport permease YadH	0.00244864436126	0.00123289537138	-0.00121574898988
+UniRef50_P0AD69	Peptidoglycan synthase FtsI	0.00261793849627	0.000567080351345	-0.00205085814492
+UniRef50_Q931T2		0.0122302880241	0.0025435732345	-0.0096867147896
+UniRef50_UPI0004769FCE	hypothetical protein	4.97505730809e-06	1.57074115725e-05	1.07323542644e-05
+UniRef50_Q7UKI3	Succinyl CoA ligase [ADP forming] subunit beta	0.0014845285354	0.000606322096462	-0.000878206438938
+UniRef50_Q9PQK7	CTP synthase	2.94704100442e-06	4.09975345587e-06	1.15271245145e-06
+UniRef50_Y1DSI1	Nitrite extrusion protein 1	6.58300129118e-05	3.9422910718e-05	-2.64071021938e-05
+UniRef50_W0RI86	von Willebrand factor type A	0.000143895548483	0.0610781603149	0.0609342647664
+UniRef50_Q6GDQ8	Holin like protein CidB	0.0259488486569	0.00796754149783	-0.0179813071591
+UniRef50_Q9RVB8	Transcriptional regulator, MerR family	0.00198676836238	0.0381449868971	0.0361582185347
+UniRef50_D0IUG7	Type III R M system restriction enzyme	0.0001707555879	0.00475460780327	0.00458385221537
+UniRef50_N1M5F6		0.000147343818849	0.000266370749727	0.000119026930878
+UniRef50_U3SRF9		0.000666151745035	0.00167160399168	0.00100545224664
+UniRef50_X3EWC3		1.32467294272e-05	6.33690691732e-06	-6.90982250988e-06
+UniRef50_D7A0M4	Short chain dehydrogenase reductase SDR	0.00877924111885	0.000872234390519	-0.00790700672833
+UniRef50_Q1NBV4		0.00110871202587	4.34268147368e-05	-0.00106528521113
+UniRef50_C0MBF3	Energy coupling factor transporter transmembrane protein EcfT	0.00564031534735	0.00452306164188	-0.00111725370547
+UniRef50_D4HEP8	Sugar binding domain protein	0.000111572213456	0.00486377036047	0.00475219814701
+UniRef50_UPI000363A6EC	hypothetical protein	2.98388335005e-06	3.6893903618e-05	3.3910020268e-05
+UniRef50_UPI00037796C2	hypothetical protein	2.89873871077e-05	1.03616020415e-05	-1.86257850662e-05
+UniRef50_Q58158	Type A flavoprotein FprA	0.00697409339168	0.00128788814155	-0.00568620525013
+UniRef50_C2R4M4	Phage infection protein	2.700486933e-06	1.8829256746e-06	-8.175612584e-07
+UniRef50_M9VCW9	Proteasome subunit beta	0.000352790643786	0.00241366787056	0.00206087722677
+UniRef50_U5VGF8		0.000142987116986	0.000581565935203	0.000438578818217
+UniRef50_Q2JLL9	LL diaminopimelate aminotransferase	0.00420088824962	0.00487632106739	0.00067543281777
+UniRef50_Q8FMN9	Phosphate import ATP binding protein PstB	1.38779177283e-05	0.000332644324494	0.000318766406766
+UniRef50_Q2G260		0.0111926408092	0.00310509037974	-0.00808755042946
+UniRef50_W4S5W1	Translation initiation inhibitor	0.000101692942466	0.000165651161136	6.395821867e-05
+UniRef50_M5T1U6	Permease large protein, C4 dicarboxylate transport system	4.41260130784e-05	1.60643652507e-05	-2.80616478277e-05
+UniRef50_Q0TNA9	Protein  methyltransferase, release factor specific	0.000265022765889	0.00104215524505	0.000777132479161
+UniRef50_P0A2C8	Spermidine putrescine binding periplasmic protein	0.00299187353789	0.000234688772347	-0.00275718476554
+UniRef50_G6CLR5		1.35237877262e-05	4.41822506859e-05	3.06584629597e-05
+UniRef50_D8U8L9		2.56811730167e-05	7.825235028e-05	5.25711772633e-05
+UniRef50_B7H0C7	AraC like ligand binding domain protein	0.000280936493587	0.0055995603536	0.00531862386001
+UniRef50_UPI0004671146	hypothetical protein	2.64411489676e-05	5.35062801878e-06	-2.10905209488e-05
+UniRef50_Q47163	Type I restriction enzyme EcoprrI M protein	0.00489734158324	0.00579547465568	0.00089813307244
+UniRef50_Q4L635	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0198611736033	0.00473540929011	-0.0151257643132
+UniRef50_U3SR89	Tellurite resistance protein TehB	0.00366285990988	0.00133839258884	-0.00232446732104
+UniRef50_UPI00047D168D	amino acid permease	2.46105033951e-05	5.28461779285e-05	2.82356745334e-05
+UniRef50_UPI00046D0817	hypothetical protein	5.10636954303e-05	3.66510568241e-05	-1.44126386062e-05
+UniRef50_Q4L3Y7	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00564789907553	0.000983595794895	-0.00466430328064
+UniRef50_T2EA26	Methyltransferase domain protein	0.00283945806736	0.00239439423374	-0.00044506383362
+UniRef50_X1QW39	Marine sediment metagenome DNA, contig	0.000105202302099	0.000246626196089	0.00014142389399
+UniRef50_E0NML2	Transcriptional regulator, PadR family	8.66901159514e-05	2.35070981275e-05	-6.31830178239e-05
+UniRef50_D0JDL8	Ribonucleoside diphosphate reductase 2 alpha chain	3.81348963068e-05	0.00602952176116	0.00599138686485
+UniRef50_UPI0003B62F85	damage inducible protein CinA	1.99272415598e-05	8.16656957218e-06	-1.17606719876e-05
+UniRef50_Q6N6K5	Aliphatic sulfonates import ATP binding protein SsuB	0.00389664261975	0.00177473358414	-0.00212190903561
+UniRef50_Q3K2F6	Fructose 1,6 bisphosphatase class 3	0.000178127109519	0.000103317797734	-7.4809311785e-05
+UniRef50_UPI0004158481	multidrug transporter	3.45771356581e-05	5.76813688346e-06	-2.88089987746e-05
+UniRef50_Q6GAW6	Argininosuccinate lyase	0.0122654042128	0.00536687885828	-0.00689852535452
+UniRef50_Q07QW9	NADH quinone oxidoreductase subunit H 1	0.00233150045958	0.000801684589787	-0.00152981586979
+UniRef50_F0Y0E3	Expressed protein 	1.78850695994e-05	0.000159963203925	0.000142078134326
+UniRef50_W4UDN2	Maltose phosphorylase	0.000472441474382	0.00760944279293	0.00713700131855
+UniRef50_M7TQJ9		2.89254899563e-06	1.00572915369e-06	-1.88681984194e-06
+UniRef50_UPI000287CF8F	thioredoxin	2.02419041673e-05	2.74146982525e-05	7.1727940852e-06
+UniRef50_UPI00036E2E8C	hypothetical protein, partial	0.000489337402342	4.83465119948e-05	-0.000440990890347
+UniRef50_UPI0003800615	hypothetical protein, partial	0.000475890717744	0.000325584313987	-0.000150306403757
+UniRef50_UPI000479B301	hypothetical protein	7.36339304023e-06	2.13900097419e-05	1.40266167017e-05
+UniRef50_I5ASV0	Anthranilate synthase component I	0.00172051101113	0.000981332947463	-0.000739178063667
+UniRef50_F8FZ21	Acyl CoA synthetase	0.000332794437405	0.000366523901933	3.3729464528e-05
+UniRef50_J8HFC8		0.000491411054244	6.45934746829e-05	-0.000426817579561
+UniRef50_U7JJA9		1.55021816583e-05	6.57876117424e-05	5.02854300841e-05
+UniRef50_UPI0003710DBF	hypothetical protein	6.32855892977e-06	3.96347081498e-06	-2.36508811479e-06
+UniRef50_Q71YR0	DNA ligase	0.0220782850341	0.00652495408817	-0.0155533309459
+UniRef50_F0KGW3		0.00323559419016	0.00391656799256	0.0006809738024
+UniRef50_Q3SMI5	Phosphoheptose isomerase	2.39696147082e-05	2.35092708847e-05	-4.603438235e-07
+UniRef50_Q05825	ATP synthase subunit beta, mitochondrial	0.000283631546115	0.00564877390879	0.00536514236268
+UniRef50_UPI00047AF754	2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase	1.11076657223e-05	3.10322575173e-05	1.9924591795e-05
+UniRef50_B4F0Z5	Cell division protein ZapD	0.0019909416466	0.00393537816325	0.00194443651665
+UniRef50_R6FIZ1		0.000262143047812	0.00345435819611	0.0031922151483
+UniRef50_UPI0001BF61D0	hypothetical protein SMAC_10790, partial	5.79136296957e-05	3.05510581239e-05	-2.73625715718e-05
+UniRef50_E2NSK7		1.44700467954e-05	0.000535678710623	0.000521208663828
+UniRef50_A6F174		0.000497127201061	9.5440856542e-06	-0.000487583115407
+UniRef50_Q75LR2	Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic	9.23534473397e-05	0.0067368257392	0.00664447229186
+UniRef50_L0BJA1		0.000261584803461	0.00132084978881	0.00105926498535
+UniRef50_E0R9G5	ABC type multidrug transport system protein	0.000507023896072	0.000492565949362	-1.445794671e-05
+UniRef50_UPI0003B6C406	3 oxoacyl ACP synthase, partial	1.86953739527e-05	5.83344361892e-05	3.96390622365e-05
+UniRef50_H5MQG0	Putative transport domain protein	0.00108575814295	0.000604744106207	-0.000481014036743
+UniRef50_UPI0003665115	hypothetical protein	2.33658479595e-05	1.18268482351e-05	-1.15389997244e-05
+UniRef50_E8SES7		0.0214601544789	0.00951057482903	-0.0119495796499
+UniRef50_F4GHR3	Glutamate synthase 	0.000333686259254	0.000740169443101	0.000406483183847
+UniRef50_UPI0001744B3D	possible HAD superfamily hydrolase	1.30415176251e-05	0.00015114801142	0.000138106493795
+UniRef50_E3EXE9		1.67253200754e-05	7.34209255833e-06	-9.38322751707e-06
+UniRef50_UPI00037D9792	hypothetical protein	3.86101563685e-05	5.45383300156e-05	1.59281736471e-05
+UniRef50_P55785	Heptaprenyl diphosphate synthase component 2	3.85552455315e-05	4.23101809126e-05	3.7549353811e-06
+UniRef50_U5WDI7		0.000116628008914	1.13408568086e-05	-0.000105287152105
+UniRef50_A1B739		3.99393433136e-06	5.96230132098e-06	1.96836698962e-06
+UniRef50_A6LT02	RNA polymerase, sigma 24 subunit, ECF subfamily	0.000836046935096	0.000333063953224	-0.000502982981872
+UniRef50_I4E1N1		0.00362766682043	0.00337731875774	-0.00025034806269
+UniRef50_P36646	Protein transport protein HofC homolog	0.0022147536356	0.000812052714213	-0.00140270092139
+UniRef50_UPI00018167BC	putative redox regulated molecular chaperone heat shock like  protein	1.65209891556e-05	1.43595343314e-05	-2.1614548242e-06
+UniRef50_P55393	Putative replication protein A	0.0358742848444	0.00531238549544	-0.030561899349
+UniRef50_UPI000363A7D4	hypothetical protein	2.45180147715e-05	2.54075172947e-05	8.895025232e-07
+UniRef50_B9KRZ0	AMP dependent synthetase and ligase	0.000281051579798	0.000291053422665	1.0001842867e-05
+UniRef50_F9Z1W7	Acyl CoA thioesterase 2	0.000486214821984	0.00761211321461	0.00712589839263
+UniRef50_Q9I692		7.73536862413e-05	0.000297369481369	0.000220015795128
+UniRef50_G2I8Q0		4.21980094491e-05	2.83023336403e-05	-1.38956758088e-05
+UniRef50_UPI00046CEC40	hypothetical protein	0.000271171961937	0.000164573219357	-0.00010659874258
+UniRef50_O05103	HTH type transcriptional regulator MalR	0.000183245625651	0.00170092504709	0.00151767942144
+UniRef50_P27294	Protein InaA	0.00328990296069	0.00351022651577	0.00022032355508
+UniRef50_UPI00037C8975	hypothetical protein	1.94321941732e-05	0.000143256513695	0.000123824319522
+UniRef50_Q3J6L3	Putative Pre  type recombination enzyme	0.00178065259978	0.000658668145238	-0.00112198445454
+UniRef50_C6KV56	UDP glucose pyrophosphorylase	0.00283650970942	0.000426963911123	-0.0024095457983
+UniRef50_UPI0002880FB3	FAD dependent oxidoreductase	2.11162533447e-05	1.24399616847e-05	-8.67629166e-06
+UniRef50_UPI000362260F	hypothetical protein	3.25354219129e-06	0.000158916484676	0.000155662942485
+UniRef50_A5UJF1	Geranylgeranylglyceryl phosphate synthase	0.00119219032156	0.00120760424101	1.541391945e-05
+UniRef50_Q0A6T1	Phosphoadenosine phosphosulfate reductase	3.86156438181e-05	2.08068915864e-05	-1.78087522317e-05
+UniRef50_C3PFR3	ATP synthase subunit alpha	0.0240277761545	0.0153294774359	-0.0086982987186
+UniRef50_UPI0003F0E940	PREDICTED	4.51425535422e-05	4.42171335188e-05	-9.254200234e-07
+UniRef50_A4ELE1	Transcriptional regulator, LuxR family protein	0.000103901544877	0.00014787896365	4.3977418773e-05
+UniRef50_Q54431	Signal recognition particle protein	0.00426226049327	0.0108936639526	0.00663140345933
+UniRef50_Q6N143	Acetate kinase	0.00174198349438	0.000396684881891	-0.00134529861249
+UniRef50_UPI0003B5831F	3 phosphoshikimate 1 carboxyvinyltransferase	6.69884612869e-06	5.41171029246e-06	-1.28713583623e-06
+UniRef50_UPI00046A2E06	hypothetical protein	1.1848347715e-05	0.000197294892723	0.000185446545008
+UniRef50_B8HW51	Urease subunit beta	8.33232234602e-05	4.10671373868e-05	-4.22560860734e-05
+UniRef50_UPI0004743F92	GMP synthase, partial	1.77844166674e-05	3.21860592347e-05	1.44016425673e-05
+UniRef50_G8AZ63		0.000101843620483	0.000159263612335	5.7419991852e-05
+UniRef50_UPI00047CA294	ATP dependent DNA helicase PcrA	1.87357624206e-05	9.93293968501e-06	-8.80282273559e-06
+UniRef50_A7ZV50		4.11475880512e-05	9.03496939694e-05	4.92021059182e-05
+UniRef50_R5EU95	Serine type site specific recombinase	5.34563921787e-06	0.000122193134571	0.000116847495353
+UniRef50_Q928B5	Thioredoxin reductase	0.0292537242529	0.0145177471353	-0.0147359771176
+UniRef50_G0J229	Carbohydrate binding CenC domain protein	5.57223722826e-07	1.07856417584e-05	1.02284180356e-05
+UniRef50_UPI00046D1393	transcription elongation factor GreA	1.83144151382e-05	3.04884210611e-05	1.21740059229e-05
+UniRef50_Q8XCB3	Valine  tRNA ligase	0.00117339827899	0.00079733562092	-0.00037606265807
+UniRef50_A0A017SM38		1.97398119636e-05	6.29731471563e-05	4.32333351927e-05
+UniRef50_F9D1U7	Saccharopine dehydrogenase	0.000506281391558	0.0550079101617	0.0545016287701
+UniRef50_UPI000367DEE0	hypothetical protein	8.95315899716e-05	8.70618213898e-05	-2.4697685818e-06
+UniRef50_Q07806	Penicillin binding protein 1A	0.000790534358864	0.000300828421596	-0.000489705937268
+UniRef50_P11557	Protein DamX	0.00361087114036	0.00125955078296	-0.0023513203574
+UniRef50_A1U6F9	4 hydroxythreonine 4 phosphate dehydrogenase	3.35240707976e-05	6.56985467164e-05	3.21744759188e-05
+UniRef50_UPI00035C0B1A	hypothetical protein	5.67599645851e-06	2.81706251065e-06	-2.85893394786e-06
+UniRef50_Q9FN42	ATP dependent Clp protease proteolytic subunit 2, mitochondrial	6.21149074774e-06	6.44156327244e-05	5.82041419767e-05
+UniRef50_Q49YA8		0.0119785947914	0.00395184140683	-0.00802675338457
+UniRef50_F8K305		8.64963227569e-06	0.000243773621366	0.00023512398909
+UniRef50_A0A023YXD9	Anaerobic dimethyl sulfoxide reductase chain A	6.92634841923e-05	0.000317587236346	0.000248323752154
+UniRef50_C4K9M3	NADH	0.00018641364977	0.00822295439131	0.00803654074154
+UniRef50_UPI0004655D13	type VI secretion protein	6.13110916438e-06	8.61008234854e-06	2.47897318416e-06
+UniRef50_UPI000479C70C	hypothetical protein	4.58629542771e-06	1.5694018328e-05	1.11077229003e-05
+UniRef50_P06131	Formate dehydrogenase subunit alpha	0.00281948850349	0.00110971446987	-0.00170977403362
+UniRef50_D2U3Z3		1.98364621323e-05	8.58033498578e-05	6.59668877255e-05
+UniRef50_U5NMC4		0.0310048799419	0.0042970219004	-0.0267078580415
+UniRef50_A0A020LY90		4.02836358685e-05	0.000267947791132	0.000227664155264
+UniRef50_A5UL75	50S ribosomal protein L5	0.000935517168202	0.000347431417872	-0.00058808575033
+UniRef50_Q9RSR5	Glycine  tRNA ligase	7.56484947587e-05	0.0416666311895	0.0415909826947
+UniRef50_F0J7L0		0.00015401192538	7.17237333259e-05	-8.22881920541e-05
+UniRef50_P56900	Transketolase	0.00753905414224	0.0102792807092	0.00274022656696
+UniRef50_M5FH04		4.20263226947e-05	7.04266987598e-06	-3.49836528187e-05
+UniRef50_D7AH61		4.21471842938e-05	1.97145795203e-05	-2.24326047735e-05
+UniRef50_P39270	Inner membrane protein YjdF	0.00329065740032	0.000950638432417	-0.0023400189679
+UniRef50_F4TUJ1	NADH quinone oxidoreductase subunit I	0.000541797588994	0.000100946852693	-0.000440850736301
+UniRef50_I6S3Y4		0.000417683559236	9.3964145764e-05	-0.000323719413472
+UniRef50_F5LY46		0.007336089401	0.000339444488737	-0.00699664491226
+UniRef50_Q6A651	Putative pyruvate, phosphate dikinase regulatory protein	0.000173689872173	0.00234292480256	0.00216923493039
+UniRef50_D9UMS0	Lipoprotein	3.77704423875e-05	0.000181375126013	0.000143604683626
+UniRef50_UPI00029A9C68	phenylacetate CoA ligase	9.43775428021e-06	0.000146757795143	0.000137320040863
+UniRef50_A6T5Z2	Putative glutamate  cysteine ligase 2	0.00503022649029	0.000452867913463	-0.00457735857683
+UniRef50_I0C5L3	Integral membrane protein	0.0178260243422	0.00382954969333	-0.0139964746489
+UniRef50_UPI0003B39740	50S ribosomal protein L5	0.000135128879021	0.000105622043206	-2.9506835815e-05
+UniRef50_P77510	Sensor histidine kinase DpiB	0.00390216362572	0.00175754268296	-0.00214462094276
+UniRef50_P37710	Autolysin	5.05033084919e-06	0.000593141447913	0.000588091117064
+UniRef50_B1HUK4	Alanine  tRNA ligase	0.0112107694589	0.00192283739056	-0.00928793206834
+UniRef50_Q9K6G3	UPF0340 protein BH3766	0.0284885260525	0.00630060159755	-0.0221879244549
+UniRef50_Q1GJP7	Urease subunit beta	8.73352489095e-05	3.16158949634e-05	-5.57193539461e-05
+UniRef50_UPI0000164CD8	hypothetical protein DR_0251	0.000284598252313	0.00383419427424	0.00354959602193
+UniRef50_F0F251		2.39069405547e-05	3.09198785015e-05	7.0129379468e-06
+UniRef50_H7CPK2		0.0190035357371	0.00804454476465	-0.0109589909725
+UniRef50_V8RAR8		0.0161475072447	0.00705792891766	-0.00908957832704
+UniRef50_H9KEV5		3.96739753443e-06	6.16428373669e-06	2.19688620226e-06
+UniRef50_Q7UNZ2	Isoleucine  tRNA ligase	1.2034398317e-06	2.88278181182e-06	1.67934198012e-06
+UniRef50_UPI00034D189F	aldehyde activating protein	0.000106080760536	0.000412414924368	0.000306334163832
+UniRef50_Q8ZRW8	Ferredoxin like protein FixX	0.00196693702436	0.000137676785639	-0.00182926023872
+UniRef50_Q8XCN6	Long chain fatty acid transport protein	0.0030173134943	0.000487377034738	-0.00252993645956
+UniRef50_F0RM21	Serine threonine protein kinase	0.00034952981194	0.0316877879209	0.031338258109
+UniRef50_P0AAC2	Universal stress protein E	0.00251558309524	0.00206528111656	-0.00045030197868
+UniRef50_T2S877		0.000138822232327	9.25675644253e-05	-4.62546679017e-05
+UniRef50_Q7N4I9	Complete genome; segment 8 17	0.000440645123179	0.00861901001715	0.00817836489397
+UniRef50_Q5JGR7	Nucleoside diphosphate kinase	0.021381397079	0.00104824877617	-0.0203331483028
+UniRef50_UPI0003C11FE8	PREDICTED	5.71180374095e-05	6.56421888604e-05	8.5241514509e-06
+UniRef50_UPI000417E643	hypothetical protein	0.000120045833248	0.000411043995059	0.000290998161811
+UniRef50_M1XGX9		0.000100788929923	0.000140153652767	3.9364722844e-05
+UniRef50_Q7N3U5	Cysteine desulfurase	0.000471357894479	0.000606637450263	0.000135279555784
+UniRef50_UPI000379DB36	hypothetical protein, partial	6.49868853174e-06	0.000219373194044	0.000212874505512
+UniRef50_UPI00046F039B	DNA gyrase subunit B	1.24684212581e-05	4.21721120721e-05	2.9703690814e-05
+UniRef50_Q8CUA4	Mobilization protein	0.00590071374576	0.00106740977781	-0.00483330396795
+UniRef50_Q3J611	Putative sensor histidine protein kinase	0.0189560659285	0.00414201157734	-0.0148140543512
+UniRef50_W9T208	AsmA family protein	2.54539119975e-05	2.79687171638e-05	2.5148051663e-06
+UniRef50_B9MJY9	Ribosomal protein L11 methyltransferase	6.5834730777e-06	2.15463652128e-05	1.49628921351e-05
+UniRef50_A6LZQ4	Methyltransferase type 11	0.000285074490886	0.000843882759885	0.000558808268999
+UniRef50_UPI0003EC04D4	PREDICTED	5.2206804198e-06	2.43613867957e-05	1.91407063759e-05
+UniRef50_UPI0002EC1250	patatin	2.11122327112e-05	2.72975723515e-05	6.1853396403e-06
+UniRef50_UPI0002493F15	oxidoreductase	1.29891624285e-05	2.75393679302e-05	1.45502055017e-05
+UniRef50_G2PAE6	Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000235295251898	0.00383254128439	0.00359724603249
+UniRef50_UPI0003AE4F02	PREDICTED	4.13886492145e-05	0.000469069334647	0.000427680685433
+UniRef50_V2EDG8	Porin thermoregulatory protein EnvY	2.31831780843e-05	5.88423127631e-05	3.56591346788e-05
+UniRef50_B5EWS4	Recombination associated protein RdgC	0.00191341840512	0.000465050509721	-0.0014483678954
+UniRef50_UPI000467B16B	hypothetical protein	7.85765155653e-06	1.01093559547e-05	2.25170439817e-06
+UniRef50_UPI000050FD81	peptide ABC transporter permease	1.04094897579e-05	0.00010351556379	9.31060740321e-05
+UniRef50_P0A9L3	FKBP type 22 kDa peptidyl prolyl cis trans isomerase	0.00422851125853	0.00214978026674	-0.00207873099179
+UniRef50_UPI00036605E2	hypothetical protein	1.36485500088e-05	2.95295507657e-05	1.58810007569e-05
+UniRef50_C4JA46		1.05578835166e-05	0.000942733670122	0.000932175786605
+UniRef50_P30149	Inner membrane protein YabI	0.0046284194217	0.000930131354942	-0.00369828806676
+UniRef50_Q89B04	Phosphoenolpyruvate protein phosphotransferase	0.00309963184691	0.000523884471679	-0.00257574737523
+UniRef50_Q3J217	Putative Endonuclease	0.0177400029565	0.00434655175628	-0.0133934512002
+UniRef50_B7GQS6	Phosphoribosyl AMP cyclohydrolase	1.33029630545e-05	6.23335768974e-05	4.90306138429e-05
+UniRef50_C0ZZE5	Riboflavin biosynthesis protein RibBA	1.00873968671e-05	7.851320401e-06	-2.2360764661e-06
+UniRef50_C1N2I9	Predicted protein	2.84236666888e-06	4.2044413969e-06	1.36207472802e-06
+UniRef50_Q5HMG3	Dihydroxy acid dehydratase	0.0278417200064	0.00997571700595	-0.0178660030004
+UniRef50_R6V2L6	YhgE Pip domain protein	1.37149606168e-06	1.94437019558e-06	5.728741339e-07
+UniRef50_Q5XA33		0.00897848608486	0.00733581451576	-0.0016426715691
+UniRef50_F8KRE5	Chemotaxis protein Che	0.000117474892792	0.00393178877904	0.00381431388625
+UniRef50_D4MWH4	Lysophospholipase	0.000252674474934	0.000612637372854	0.00035996289792
+UniRef50_A6M2R6		4.62394367686e-05	0.000674694394134	0.000628454957365
+UniRef50_UPI00037C1A9F	hypothetical protein	7.62932694411e-06	0.000372918563175	0.000365289236231
+UniRef50_Q6ABL2	DNA replication and repair protein RecF	0.00109947375394	0.0169823561784	0.0158828824245
+UniRef50_Q983N4	Isoleucine  tRNA ligase	3.81298978638e-05	5.69672735505e-06	-3.24331705088e-05
+UniRef50_UPI00037926CF	hypothetical protein	3.82243688097e-05	1.03420626775e-05	-2.78823061322e-05
+UniRef50_D6GPL1	RNA polymerase sigma factor, sigma 70 family	0.00877626901761	0.000419881571359	-0.00835638744625
+UniRef50_O25751	Protein TolB	9.07418242453e-05	0.0021652883405	0.00207454651625
+UniRef50_N0B087	Transporter	2.43820164448e-05	3.98234848235e-05	1.54414683787e-05
+UniRef50_UPI000378CCBF	hypothetical protein	2.04076438527e-05	5.74602985705e-05	3.70526547178e-05
+UniRef50_L9BMS0	Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 	0.000156850133866	0.000777570127407	0.000620719993541
+UniRef50_J0HGY2		0.000610118134256	0.000152448715308	-0.000457669418948
+UniRef50_D2SC05		2.43321325773e-05	6.58648433981e-05	4.15327108208e-05
+UniRef50_T0T191		1.48976615759e-05	2.32681182578e-05	8.3704566819e-06
+UniRef50_Q11IE7	Putative 3 methyladenine DNA glycosylase	4.52369476735e-05	1.35206731201e-05	-3.17162745534e-05
+UniRef50_Q6A923	Endo beta N acetylglucosaminidase H	0.000540130200985	0.00334218049256	0.00280205029157
+UniRef50_V6EZI7		2.80061647579e-05	2.19185043949e-05	-6.087660363e-06
+UniRef50_Q4A0N2	Ornithine aminotransferase 1	5.15106177358e-06	1.4151613144e-05	9.00055137042e-06
+UniRef50_O26837	Phenylalanine  tRNA ligase alpha subunit	0.00215766086932	0.00139550726349	-0.00076215360583
+UniRef50_Q9CGF7	Oxygen independent coproporphyrinogen III oxidase like protein LL1139	0.00696048032706	0.00821433143512	0.00125385110806
+UniRef50_UPI00037C546A	hypothetical protein	0.0001030943203	1.7867677357e-05	-8.5226642943e-05
+UniRef50_C5B1H6	Amidase, hydantoinase carbamoylase	0.000707200560896	0.000283512927957	-0.000423687632939
+UniRef50_G8YPB5	Piso0_001875 protein	4.24551452304e-06	0.000120594920288	0.000116349405765
+UniRef50_I5C3W2	6 pyruvoyl tetrahydropterin synthase	5.22148831758e-05	0.000415042995505	0.000362828112329
+UniRef50_Q58787	 citramalate synthase CimA	9.32536865333e-06	5.59145360609e-06	-3.73391504724e-06
+UniRef50_Q9I0J1	NADH quinone oxidoreductase subunit L	0.000511070398343	0.000154018909841	-0.000357051488502
+UniRef50_Q27527-2	Isoform b of Enolase	1.0736412095e-05	5.84563935484e-05	4.77199814534e-05
+UniRef50_F3T921	DoxX family protein	0.000302989164364	0.000487523180539	0.000184534016175
+UniRef50_E0Y1Z2		0.00633631576555	0.000510634072383	-0.00582568169317
+UniRef50_I1AXI9	Transposase IS4 family protein	6.84369146396e-05	2.55404883603e-05	-4.28964262793e-05
+UniRef50_C3MZM4	Nucleoside diphosphate kinase	1.69572866386e-05	0.000109297174681	9.23398880424e-05
+UniRef50_L1JUV8		6.31120983793e-05	3.80735356896e-05	-2.50385626897e-05
+UniRef50_U2YT78		0.000201741583823	0.000284371308104	8.2629724281e-05
+UniRef50_A9V5N5	Predicted protein	0.000427428881343	6.06545267013e-06	-0.000421363428673
+UniRef50_E6JPP5	Sodium	7.41137412691e-05	0.000115358087973	4.12443467039e-05
+UniRef50_Q1IZ16	Acyl CoA dehydrogenase like protein	0.000101839745189	0.0261731496901	0.0260713099449
+UniRef50_Q8K9X9	NADH quinone oxidoreductase subunit J	5.42235242221e-05	0.000135933735682	8.17102114599e-05
+UniRef50_UPI000467B0DE	arginine ABC transporter ATP binding protein	2.41270846872e-05	2.70264831867e-05	2.8993984995e-06
+UniRef50_A3PRL7	ABC transporter related	0.00405176363618	0.000623379548785	-0.0034283840874
+UniRef50_G5SBT2	Respiratory nitrate reductase alpha chain	4.46055850191e-05	4.44199046251e-05	-1.85680394e-07
+UniRef50_Q72HC1	Probable dual specificity RNA methyltransferase RlmN	0.000128106104819	0.0370130584752	0.0368849523704
+UniRef50_UPI000470C939	5 nucleotidase	1.60836945321e-05	8.64254946121e-06	-7.44114507089e-06
+UniRef50_UPI00045EBAFF	hypothetical protein	1.49409141998e-05	8.8222923673e-06	-6.1186218325e-06
+UniRef50_C5N3B0		0.0221744339752	0.00814028246988	-0.0140341515053
+UniRef50_O43414	ERI1 exoribonuclease 3	1.31640634156e-05	0.000200911759369	0.000187747695953
+UniRef50_P37049	Phosphodiesterase YaeI	0.00221819713783	0.00202961135234	-0.00018858578549
+UniRef50_D8JDR3	NADH	0.000678474817046	0.0216023908292	0.0209239160122
+UniRef50_V9TSS5	Thymidylate synthase	0.000106449664279	2.51028653802e-05	-8.13467988988e-05
+UniRef50_UPI0004401CD8	PREDICTED	4.38379304258e-06	8.78184286181e-06	4.39804981923e-06
+UniRef50_B1HZV3	HTH type transcriptional regulator	0.00755730833363	0.000470000061318	-0.00708730827231
+UniRef50_Q5ZVR0	Histidine ammonia lyase	5.94715228461e-06	1.35496058943e-05	7.60245360969e-06
+UniRef50_R5Y1H5	Cassette chromosome recombinase B	7.16434922814e-05	4.27836966907e-05	-2.88597955907e-05
+UniRef50_B2N3Y4	Transketolase 2	0.00249971598778	0.000571819965561	-0.00192789602222
+UniRef50_UPI0002E7F1BB	hypothetical protein	0.000126801541191	4.37895592331e-05	-8.30119819579e-05
+UniRef50_Q6A7E7	Trigger factor	0.000322508423853	0.00671194017356	0.00638943174971
+UniRef50_UPI00046F5CB6	hypothetical protein	4.45340343316e-06	8.18667704286e-06	3.7332736097e-06
+UniRef50_P45059	Peptidoglycan synthase FtsI	3.90992342407e-06	7.03408016436e-06	3.12415674029e-06
+UniRef50_UPI00034B1305	MULTISPECIES	3.77718131373e-05	0.0042946509886	0.00425687917546
+UniRef50_UPI0002193AE6	excinuclease ABC subunit A	2.09848798857e-05	3.37778503435e-05	1.27929704578e-05
+UniRef50_G8VI88	Molybdopterin guanine dinucleotide biosynthesis protein A	3.04687093507e-05	0.00556136170989	0.00553089300054
+UniRef50_F0RNI0	DEAD DEAH box helicase domain protein	0.000202104336689	0.00869243819248	0.00849033385579
+UniRef50_UPI00035D0365	hypothetical protein	0.000918423020553	0.00018077021033	-0.000737652810223
+UniRef50_F7WRG0		2.51793568383e-05	2.90534813073e-06	-2.22740087076e-05
+UniRef50_Q8T6Z1	Thioredoxin reductase 	3.2709694737e-05	1.8004269797e-05	-1.470542494e-05
+UniRef50_Q7MU65	Lipoprotein releasing system ATP binding protein LolD	7.6507873374e-05	5.55574264911e-05	-2.09504468829e-05
+UniRef50_UPI000465AFEA	GABA permease	1.93310624153e-05	2.92272062554e-05	9.8961438401e-06
+UniRef50_K0HE29		9.93384181239e-05	0.00808485284325	0.00798551442513
+UniRef50_D3S8T8	Flagellar hook capping protein	8.93857676286e-06	1.23236670352e-05	3.38509027234e-06
+UniRef50_F0PEG3	Maltose Maltotriose maltodextrin ABC transporter, MalX subunit	7.76010824086e-06	0.000344508200748	0.000336748092507
+UniRef50_D3QGU6	Cystathionine gamma lyase	0.0115934488544	0.00175972216375	-0.00983372669065
+UniRef50_Q32FA3		0.00025679318969	0.000870703284919	0.000613910095229
+UniRef50_Q9RVF4		0.000327401032446	0.00984087094509	0.00951346991264
+UniRef50_G8V619	HMGL like family protein	0.00972349490448	0.00332747917869	-0.00639601572579
+UniRef50_A6LQC0		0.0102950724232	0.00158337032744	-0.00871170209576
+UniRef50_Q5JGT7	Thymidine kinase	1.54529703237e-05	3.34862514866e-05	1.80332811629e-05
+UniRef50_Q00853	Homocitrate synthase subunit alpha	0.000379517719931	0.000578487596381	0.00019896987645
+UniRef50_Q5HMY5	Accessory gene regulator protein B	0.0071665246348	0.000308156561946	-0.00685836807285
+UniRef50_UPI00036F3EF0	hypothetical protein	7.58243675421e-05	8.32581504958e-05	7.4337829537e-06
+UniRef50_Q9I509	NADH dehydrogenase (quinone)	0.000761851590707	0.00831087570182	0.00754902411111
+UniRef50_P97532	3 mercaptopyruvate sulfurtransferase	3.979460334e-05	1.28988716716e-05	-2.68957316684e-05
+UniRef50_UPI00025564EE	bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase, partial	7.87835450758e-06	2.4515723399e-05	1.66373688914e-05
+UniRef50_W0YLC7		0.000387510204934	0.000203208475363	-0.000184301729571
+UniRef50_A9IQX3	Single stranded DNA specific exonuclease	0.000507530772989	0.00303570739452	0.00252817662153
+UniRef50_A7ZNH9	UPF0265 protein YeeX	0.000344212147888	0.000102674584023	-0.000241537563865
+UniRef50_J3RWH0	WbhQ	0.00100479921392	0.00114518323135	0.00014038401743
+UniRef50_A9M4D7	Lipoprotein	0.000135786326927	0.00187558179737	0.00173979547044
+UniRef50_A5UNI6	Polysaccharide biosynthesis protein, MviN like family	0.00655439402026	0.00154505000471	-0.00500934401555
+UniRef50_P76016	PTS dependent dihydroxyacetone kinase operon regulatory protein	0.00385106209914	0.000653816933714	-0.00319724516543
+UniRef50_M9TX56		0.000175258571181	1.42422395861e-05	-0.000161016331595
+UniRef50_P53381	Protein mrp homolog	0.000426487092165	0.00170765807063	0.00128117097847
+UniRef50_A6V8Q7	Signal peptidase I	0.00380241208883	0.000357959642661	-0.00344445244617
+UniRef50_Q6MN06	Adenylosuccinate synthetase	1.20895064055e-05	1.29133177616e-05	8.238113561e-07
+UniRef50_Q8Y303	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.12081588883e-05	1.73534510015e-05	-3.8547078868e-06
+UniRef50_V6K8C7		9.3477188766e-05	5.61697358523e-05	-3.73074529137e-05
+UniRef50_A8LJB0	NADH	0.00204417660808	0.00398153074428	0.0019373541362
+UniRef50_UPI000328E67C	PREDICTED	7.13449271789e-05	9.99960886291e-05	2.86511614502e-05
+UniRef50_T1DQZ2		0.000189023937943	0.000111658158719	-7.7365779224e-05
+UniRef50_P36999	23S rRNA  N(1)) methyltransferase	0.00277424420379	0.00148655894267	-0.00128768526112
+UniRef50_A1VRZ2	LPS biosynthesis protein WbpG	0.00172103585868	0.000157362365106	-0.00156367349357
+UniRef50_P51776	Pyruvate, phosphate dikinase	5.84735500387e-06	1.42729671888e-05	8.42561218493e-06
+UniRef50_UPI000288452E	heme peroxidase	7.39790400596e-06	1.70871873412e-06	-5.68918527184e-06
+UniRef50_M4QXM9	Tetraacyldisaccharide 4 kinase	0.00103721523468	0.00725125543768	0.006214040203
+UniRef50_UPI0002625F2D	dipeptide transport system permease, partial	1.00642983485e-05	1.64529143729e-05	6.3886160244e-06
+UniRef50_A0A011PAY1	ATP dependent Clp protease ATP binding subunit ClpX	7.35471580755e-06	2.08586526197e-05	1.35039368121e-05
+UniRef50_A7Z4X0	L threonine 3 dehydrogenase	5.45376253231e-05	4.40860151698e-05	-1.04516101533e-05
+UniRef50_B5SL97	Choline dehydrogenase lipoprotein	0.00431846814926	0.00123787649314	-0.00308059165612
+UniRef50_UPI0004216EAC	tRNA delta isopentenylpyrophosphate transferase	1.04837980938e-05	1.58579744889e-05	5.3741763951e-06
+UniRef50_Q8DW27		0.00458769054685	0.00120134029755	-0.0033863502493
+UniRef50_Q5FAC7	Penicillin binding protein 1A	0.000115491267187	0.00302519999064	0.00290970872345
+UniRef50_Q24751	ATP synthase subunit beta, mitochondrial 	2.44156839332e-05	2.34600763429e-05	-9.556075903e-07
+UniRef50_UPI00047ECC3E	4 alpha glucanotransferase	1.15540305867e-05	0.000633452529062	0.000621898498475
+UniRef50_F4WQV6	U6 snRNA associated Sm like protein LSm6	6.6654913799e-06	7.1168373848e-06	4.513460049e-07
+UniRef50_A0B2R8		1.54204126213e-05	0.000968628250913	0.000953207838292
+UniRef50_R7WKM5		9.54483149226e-05	4.42265085189e-05	-5.12218064037e-05
+UniRef50_V8G079		0.000194546412126	0.0011885662969	0.000994019884774
+UniRef50_T3G6D1	Bacterial regulatory s, gntR family protein	0.00017132495712	0.00168080571582	0.0015094807587
+UniRef50_A3QD88	Leucyl phenylalanyl tRNA  protein transferase	9.254905805e-06	5.76925125987e-05	4.84376067937e-05
+UniRef50_Q8CMQ4	NADPH dependent oxidoreductase	0.0316362653507	0.00534895192664	-0.0262873134241
+UniRef50_B7V2Q5	Thymidylate synthase	0.00216837010033	0.00308090504584	0.00091253494551
+UniRef50_UPI000476F303	transcriptional regulator	4.36391684813e-05	0.000144916941397	0.000101277772916
+UniRef50_Q9RZ67		0.00162969107833	0.045601538748	0.0439718476697
+UniRef50_UPI0002194D92	SSU ribosomal protein S1P	4.73045478222e-05	0.000284983197772	0.00023767864995
+UniRef50_G7M597	Peptidase M56 BlaR1	6.72480977733e-05	0.000956863553371	0.000889615455598
+UniRef50_UPI0003B6979D	thioredoxin reductase	1.56655545743e-05	7.93480484476e-06	-7.73074972954e-06
+UniRef50_Q0SRR9	Polysaccharide deacetylase family protein	0.000148811822151	0.00079108261465	0.000642270792499
+UniRef50_A0A024C6Z7	HrgA like protein	0.000374279108692	0.00338853478266	0.00301425567397
+UniRef50_UPI0003B569E4	hypothetical protein	2.32953878291e-05	7.41844540488e-06	-1.58769424242e-05
+UniRef50_J0NAX3	Glucose 6 phosphate 1 dehydrogenase	0.00293462497108	0.000801764810481	-0.0021328601606
+UniRef50_UPI00047D6EDF	fasciclin	5.45626444904e-05	1.69978680831e-05	-3.75647764073e-05
+UniRef50_P15567	Phosphoribosylaminoimidazole carboxylase	2.68727365352e-05	2.42878655697e-05	-2.5848709655e-06
+UniRef50_Q6AJM7	UDP N acetylglucosamine 1 carboxyvinyltransferase	2.13908644359e-05	3.33120995991e-05	1.19212351632e-05
+UniRef50_UPI000470F989	argininosuccinate lyase	4.38501341778e-05	2.55665682688e-05	-1.8283565909e-05
+UniRef50_A0A024KA53	Auxin binding protein, putative	0.000198139791579	8.23669582666e-05	-0.000115772833312
+UniRef50_G4CKE5	YjbE family integral membrane protein	1.05698215261e-05	1.44526983295e-05	3.8828768034e-06
+UniRef50_A4FE07		0.000110210020356	0.000244063392719	0.000133853372363
+UniRef50_C1MUY0	Predicted protein	5.83548789303e-05	8.08825747708e-05	2.25276958405e-05
+UniRef50_I1QZW6		2.32345039331e-05	3.18141933328e-05	8.5796893997e-06
+UniRef50_A3PL14	Regulatory protein, PpaA	0.00286739884442	0.000231016979293	-0.00263638186513
+UniRef50_UPI000361C323	hypothetical protein	2.47260219103e-05	6.4747931102e-05	4.00219091917e-05
+UniRef50_O67258	Lysine  tRNA ligase	2.70904922119e-06	3.06091537182e-06	3.5186615063e-07
+UniRef50_X0U279	Marine sediment metagenome DNA, contig	5.45576066492e-06	5.34497397728e-05	4.79939791079e-05
+UniRef50_O83833	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.61499445359e-05	1.58240461965e-05	-1.03258983394e-05
+UniRef50_D3E1H7	DNA polymerase II small subunit	0.00247488635045	0.00025035956941	-0.00222452678104
+UniRef50_X7FC77	Flagellar protein FlgJ	0.000157369054181	8.7725751042e-05	-6.9643303139e-05
+UniRef50_P07771	Benzoate 1,2 dioxygenase electron transfer component	0.000234949785595	0.00717333129157	0.00693838150598
+UniRef50_E0TD47		0.000162033811619	2.40515488838e-05	-0.000137982262735
+UniRef50_B2TQ92	Ser Thr protein phosphatase family protein	0.000221183196593	0.000778459318204	0.000557276121611
+UniRef50_E3HVR7	Aspartate aminotransferase	9.58897516131e-05	0.000762006286372	0.000666116534759
+UniRef50_A1B2A8		0.000491432385076	3.37332386089e-05	-0.000457699146467
+UniRef50_UPI0004688DE5	hypothetical protein	0.000137706740517	4.10380736337e-05	-9.66686668833e-05
+UniRef50_UPI00045E7101	hypothetical protein	9.325894329e-05	1.80681130102e-05	-7.51908302798e-05
+UniRef50_UPI00046779A8	UGMP family protein	4.95734977632e-06	8.66876355568e-06	3.71141377936e-06
+UniRef50_W7W844		0.00025135219425	0.000219192199981	-3.2159994269e-05
+UniRef50_UPI00047A6C43	hypothetical protein, partial	5.06747060277e-05	9.53815124139e-06	-4.11365547863e-05
+UniRef50_A6LPV7	Tetratricopeptide TPR_2 repeat protein	0.000390547980192	0.000346369534932	-4.417844526e-05
+UniRef50_R6IK84	Lipoprotein	1.93685426405e-05	2.1724875461e-05	2.3563328205e-06
+UniRef50_UPI00046A2248	integrase	0.00194862242842	0.000870903832291	-0.00107771859613
+UniRef50_N1U5S5	Winged helix turn helix	7.22168025357e-05	0.00128248186273	0.00121026506019
+UniRef50_C3K6N0	Succinyl CoA ligase [ADP forming] subunit beta	0.00201538613998	0.00263212067666	0.00061673453668
+UniRef50_I6TXK4	Prephenate dehydrogenase	0.00381289350851	0.00416541324067	0.00035251973216
+UniRef50_UPI00041D4010	hypothetical protein	3.18315926619e-05	1.6129962716e-05	-1.57016299459e-05
+UniRef50_UPI00037D201C	hypothetical protein	1.09445413241e-05	0.000369322158221	0.000358377616897
+UniRef50_M5RF68	Glutamate binding periplasmic protein	0.000269567345224	7.92089737881e-05	-0.000190358371436
+UniRef50_Q7N0A6	Isopentenyl diphosphate Delta isomerase 2	5.15215713675e-05	9.63827124133e-06	-4.18833001262e-05
+UniRef50_Q8X4L9	Ribosomal large subunit pseudouridine synthase F	0.00252454833992	0.000231923123861	-0.00229262521606
+UniRef50_D8JG12	Copper resistance protein A	0.000524241950828	0.00883711014326	0.00831286819243
+UniRef50_UPI000366B651	hypothetical protein	1.45759240617e-05	5.53260661999e-06	-9.04331744171e-06
+UniRef50_Q3BZD0	4 deoxy L threo 5 hexosulose uronate ketol isomerase	7.48859370868e-06	1.06587181173e-05	3.17012440862e-06
+UniRef50_Q8DJY0	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	9.8322802131e-06	4.00790791106e-06	-5.82437230204e-06
+UniRef50_UPI00034D05EE	hypothetical protein	0.000163833346204	7.55068960341e-05	-8.83264501699e-05
+UniRef50_L0A753	PRPP binding protein, adenine guanine phosphoribosyltransferase	0.00138104630068	0.0188960615746	0.0175150152739
+UniRef50_G0D380		5.76774076497e-05	1.30380961276e-05	-4.46393115221e-05
+UniRef50_P77268	Probable D,D dipeptide transport ATP binding protein DdpD	0.00196116113863	0.00169090038935	-0.00027026074928
+UniRef50_P61614	LexA repressor	0.00157319010669	0.00131885519435	-0.00025433491234
+UniRef50_UPI0002653AC6	PREDICTED	2.74726729261e-05	1.46052986122e-05	-1.28673743139e-05
+UniRef50_K9ZKB4	SNARE associated Golgi family protein	0.00114536214939	0.0374541272953	0.0363087651459
+UniRef50_UPI000413BC23	hypothetical protein	0.000383890031311	0.000533581829112	0.000149691797801
+UniRef50_F0K2U2	Phosphate starvation inducible protein family	0.000127099659549	0.00438062943966	0.00425352978011
+UniRef50_UPI00040DC67E	hypothetical protein	1.46794670038e-05	4.15109483206e-05	2.68314813168e-05
+UniRef50_A6TUT9	Membrane spanning protein	0.000177223468942	0.00140837775611	0.00123115428717
+UniRef50_T1A735	UDP N acetylglucosamine pyrophosphorylase	1.00855106338e-05	1.361318171e-05	3.5276710762e-06
+UniRef50_Q5HPS0	tRNA pseudouridine synthase B	0.0155060684356	0.00275916333653	-0.0127469050991
+UniRef50_W5XJD4	Translation initiation factor IF 2	8.51931272736e-06	1.20923669355e-05	3.57305420814e-06
+UniRef50_A5UL38	Ribonuclease P protein component 4	0.000311971891609	0.00150249699774	0.00119052510613
+UniRef50_UPI0002491B34	amino acid	0.000128136857337	0.000118720032609	-9.416824728e-06
+UniRef50_UPI000368B66A	hypothetical protein	2.95170288089e-06	9.76114674597e-06	6.80944386508e-06
+UniRef50_P11460	Ferric anguibactin binding protein	0.000303826063881	0.00590062806842	0.00559680200454
+UniRef50_P19906	Nitrogen regulation protein NtrB	1.62978715283e-05	2.34660104544e-05	7.1681389261e-06
+UniRef50_B5XYC7	Isocitrate dehydrogenase kinase phosphatase	0.000992593992974	0.000330575863979	-0.000662018128995
+UniRef50_A5EV79	Dihydroorotate dehydrogenase 	9.47349283038e-06	1.63944322388e-05	6.92093940842e-06
+UniRef50_B9J9J5		0.00458344520386	0.00315692339651	-0.00142652180735
+UniRef50_G7M6P0		0.000286995034155	0.00159784731786	0.0013108522837
+UniRef50_A6L1E7	Thymidine kinase	2.01187252421e-05	0.00124542289424	0.001225304169
+UniRef50_C1D5X5	Protein export membrane protein SecF	0.000423496731925	0.00479101777982	0.00436752104789
+UniRef50_S5YUZ3	Homoserine dehydrogenase	0.00115924945427	0.000622501869013	-0.000536747585257
+UniRef50_R9P548	Glycoside hydrolase	0.000136734263788	0.0011051466973	0.000968412433512
+UniRef50_D0K2M7		0.0226619215243	0.000476317266442	-0.0221856042579
+UniRef50_P32057	Putative colanic acid biosynthesis glycosyl transferase WcaI	0.00343250562133	0.000472761530975	-0.00295974409035
+UniRef50_F1VXE0	Structural constituent of cell wall	1.98840147218e-05	7.41527650307e-06	-1.24687382187e-05
+UniRef50_V5UK09	Formate dehydrogenase subunit beta	0.00210430502271	0.000550945453515	-0.00155335956919
+UniRef50_X1RXD5	Marine sediment metagenome DNA, contig	6.51937653887e-05	0.00010577378169	4.05800163013e-05
+UniRef50_UPI000465978A	hypothetical protein	4.09615569275e-05	6.62596708413e-06	-3.43355898434e-05
+UniRef50_S1SMM7		0.000147087991781	0.000110175365929	-3.6912625852e-05
+UniRef50_B5YZ54		0.000820621714897	3.62156086568e-05	-0.00078440610624
+UniRef50_Q7TUK9	Glutathione synthetase	4.65311950741e-06	8.40970938525e-06	3.75658987784e-06
+UniRef50_UPI000377FA81	hypothetical protein	3.48602426756e-05	1.49144849256e-05	-1.994575775e-05
+UniRef50_A2D765		1.1771103176e-05	2.49951883145e-05	1.32240851385e-05
+UniRef50_G3VCD6		3.2992866078e-05	3.27425355059e-05	-2.503305721e-07
+UniRef50_N0C6M2	Integrase recombinase, phage associated protein	0.000597651544228	0.000358018986097	-0.000239632558131
+UniRef50_Q4L884	Energy coupling factor transporter ATP binding protein EcfA2	0.00739544804854	0.000901613223168	-0.00649383482537
+UniRef50_K0YRV5		7.24120891139e-06	4.44751703172e-05	3.72339614058e-05
+UniRef50_P26277	Chlorophyllide reductase subunit Z	0.00968912381287	0.00337752784376	-0.00631159596911
+UniRef50_UPI00028A2E90	glycoside hydrolase family 3 domain containing protein	4.31965219746e-06	2.00158425337e-05	1.56961903362e-05
+UniRef50_A6WZN8	Glycoside hydrolase family 25	0.00407202681989	0.000536159497837	-0.00353586732205
+UniRef50_A6V3Q5	Major facilitator superfamily MFS_1	0.000522225000813	0.000130191052996	-0.000392033947817
+UniRef50_A4XKS9	Bifunctional protein PyrR	0.0116595986579	0.00311958449445	-0.00854001416345
+UniRef50_UPI00046FC8FA	5 hydroxymethyluracil DNA glycosylase	6.85011326164e-06	0.000101781477911	9.49313646494e-05
+UniRef50_Q1RKI0	Transcription elongation factor GreA	0.0038920506607	0.00355890695659	-0.00033314370411
+UniRef50_X7FDX5		0.000151899243654	7.5198281885e-05	-7.6700961769e-05
+UniRef50_B9DNY9	Peptide methionine sulfoxide reductase MsrB	2.70405509402e-05	9.72982012043e-05	7.02576502641e-05
+UniRef50_P0A0Q1		0.00953817216138	0.00458823744912	-0.00494993471226
+UniRef50_B0V512		0.000177779900556	0.00424091626018	0.00406313635962
+UniRef50_R7PVB1	Formate dehydrogenase alpha subunit FdhA	0.00380454465566	0.00162457344837	-0.00217997120729
+UniRef50_F0YC19		4.75003182884e-05	5.83417328566e-05	1.08414145682e-05
+UniRef50_UPI00036B39EC	hypothetical protein	6.81075721039e-06	0.000387313116175	0.000380502358965
+UniRef50_F3N0H6	TPR repeats containing protein	1.72560709512e-05	2.48489921398e-05	7.5929211886e-06
+UniRef50_A0A024HEL1		0.00128419923616	0.000359581890218	-0.000924617345942
+UniRef50_Q4JT56	30S ribosomal protein S17	0.0199426560148	0.0182401494385	-0.0017025065763
+UniRef50_UPI0004707041	flagellar motor protein MotA	3.84695688012e-05	0.00010844084613	6.99712773288e-05
+UniRef50_P15005	5 methylcytosine specific restriction enzyme B	0.00301289823091	0.000429364413392	-0.00258353381752
+UniRef50_K2JGI2		4.0016631271e-05	1.1436053566e-05	-2.8580577705e-05
+UniRef50_UPI0003B70013	phytoene dehydrogenase	1.07987814814e-05	8.63453572346e-06	-2.16424575794e-06
+UniRef50_P37769	2 dehydro 3 deoxy D gluconate 5 dehydrogenase	0.00430956673109	0.00234193606269	-0.0019676306684
+UniRef50_M4R3K2		0.000292852633973	0.00641654026862	0.00612368763465
+UniRef50_G3XD01	UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase	0.00290533867476	8.04837182746e-05	-0.00282485495649
+UniRef50_K0JWH3	Putative membrane protein	8.5362456375e-05	8.78827532743e-05	2.5202968993e-06
+UniRef50_A8IMX0	Ribonuclease VapC	0.00396939063587	0.0165862952757	0.0126169046398
+UniRef50_I1PF78		0.000152416953778	2.73265051256e-06	-0.000149684303265
+UniRef50_UPI000466F096	hypothetical protein	0.00115780608925	0.000203956712401	-0.000953849376849
+UniRef50_B7LNV2	Alkanesulfonate monooxygenase	0.00162112557046	0.000780887635834	-0.000840237934626
+UniRef50_D0J2L9	Transcriptional regulator, LysR family	0.000120218467792	0.000223161238178	0.000102942770386
+UniRef50_F5M0P1	Gifsy 1 prophage protein	0.0114219327633	0.00480379288109	-0.00661813988221
+UniRef50_UPI00037B280F	lysyl tRNA synthetase	6.98866724026e-06	9.08185225577e-06	2.09318501551e-06
+UniRef50_UPI0003754233	hypothetical protein	0.000120140696659	6.05602076369e-05	-5.95804890221e-05
+UniRef50_Q03G75	tRNA dimethylallyltransferase	2.57213951039e-05	9.49414686105e-06	-1.62272482429e-05
+UniRef50_P59588	Lysophospholipase L2	0.0029489420786	0.0021366537172	-0.0008122883614
+UniRef50_T1C6H9	Acyl CoA dehydrogenase domain containing protein 	0.000875520798991	0.000886758559896	1.1237760905e-05
+UniRef50_UPI00047960F2	PTS mannose transporter subunit IID	1.02498666254e-05	4.00148300791e-05	2.97649634537e-05
+UniRef50_P26381	Fructose permease IIC component	0.0026701964215	0.00192592937028	-0.00074426705122
+UniRef50_B2TLW3	Flagellar biosynthetic protein FliR FlhB	0.000481169260526	0.000750222775946	0.00026905351542
+UniRef50_UPI0004720299	hypothetical protein	2.94636820662e-05	3.22703334321e-05	2.8066513659e-06
+UniRef50_D5ZRU0	Predicted protein	0.000161311165684	0.00017522198666	1.3910820976e-05
+UniRef50_UPI0003605DC7	hypothetical protein	9.87806786005e-05	2.03280359034e-05	-7.84526426971e-05
+UniRef50_W6RN06		0.000333507365367	7.5307103758e-05	-0.000258200261609
+UniRef50_UPI00047B8AE5	acetylornithine aminotransferase	1.99972552186e-05	2.84572483613e-05	8.4599931427e-06
+UniRef50_B4RRC4		7.59020084865e-05	0.00302427920053	0.00294837719204
+UniRef50_X0ZZA4	Marine sediment metagenome DNA, contig	4.01387658661e-05	2.89942342969e-05	-1.11445315692e-05
+UniRef50_P62087		0.0327288898215	0.00128509363861	-0.0314437961829
+UniRef50_A8AZX9		0.00840303727242	0.00232336340322	-0.0060796738692
+UniRef50_UPI0002E4B515	hypothetical protein	2.94503811662e-06	8.86958468569e-06	5.92454656907e-06
+UniRef50_UPI00036DD363	hypothetical protein	7.38496337481e-06	4.74455424024e-06	-2.64040913457e-06
+UniRef50_B3CLB3	Lon protease	6.08164819071e-06	3.09102364229e-06	-2.99062454842e-06
+UniRef50_P32719	D allulose 6 phosphate 3 epimerase	0.00324611413719	0.000435356322155	-0.00281075781503
+UniRef50_Q4A0X5	Probable transglycosylase SceD 1	0.031396573588	0.00806031017998	-0.023336263408
+UniRef50_U5MQS6		0.000203157967427	0.00028647152185	8.3313554423e-05
+UniRef50_D9SWT2	Peptidase S8 and S53 subtilisin kexin sedolisin	0.00126380276027	0.00338026991817	0.0021164671579
+UniRef50_F3U1Z7		0.000750245327852	0.00022745116196	-0.000522794165892
+UniRef50_T2E5I8	Aminotransferase	0.000618819791379	0.000725770298117	0.000106950506738
+UniRef50_B1N6N5		0.000175882948698	9.98160252925e-05	-7.60669234055e-05
+UniRef50_E3NW25		2.33661547537e-05	0.000119457122285	9.60909675313e-05
+UniRef50_UPI00047D9B65	diaminopimelate decarboxylase	4.09545332192e-06	1.92779447645e-05	1.51824914426e-05
+UniRef50_W8S2N5	Transamidase GatB domain protein	0.00544791810618	0.000777149224201	-0.00467076888198
+UniRef50_UPI0004762BB1	hypothetical protein	7.65220972952e-06	1.17290669309e-05	4.07685720138e-06
+UniRef50_UPI00035C4CBC	hypothetical protein	1.21541344001e-05	1.28816090754e-05	7.274746753e-07
+UniRef50_B8ET52	Major facilitator superfamily MFS_1	0.000335604557333	0.00706067967682	0.00672507511949
+UniRef50_X2MTV9	ABC transporter ATP binding protein	0.000181672056531	0.000194429484835	1.2757428304e-05
+UniRef50_P45543	Fructoselysine kinase	0.00466679239644	0.00100465188097	-0.00366214051547
+UniRef50_P36634	Peptide transport periplasmic protein SapA	0.00370878016206	0.00146986070418	-0.00223891945788
+UniRef50_F0PCZ7	Purine catabolism regulatory protein family protein	3.29575012276e-06	0.000668192687577	0.000664896937454
+UniRef50_W8H188		0.0164734291377	0.00325138839181	-0.0132220407459
+UniRef50_A0A024H2L6		0.000732171040279	0.0033313356393	0.00259916459902
+UniRef50_A5UNJ9	ADP ribosylglycohydrolase	0.00232805861492	0.000429073490513	-0.00189898512441
+UniRef50_O67589	Aspartate  tRNA ligase	4.30621813173e-06	8.59134643497e-06	4.28512830324e-06
+UniRef50_B7N653	Succinyl diaminopimelate desuccinylase	0.00363875712286	0.000874884065336	-0.00276387305752
+UniRef50_H0AAM1	FeS assembly ATPase SufC	2.87776688251e-05	0.000160934711767	0.000132157042942
+UniRef50_Q59787	Sorbitol dehydrogenase	0.00250653198203	0.000893052862394	-0.00161347911964
+UniRef50_D0UZ77	PCQ3_28	4.15623592636e-05	5.39601139639e-05	1.23977547003e-05
+UniRef50_V1SPC6	Pheromone autoinducer 2 transporter 	8.5909099192e-05	5.99226595592e-05	-2.59864396328e-05
+UniRef50_UPI000478598D	hypothetical protein	7.10373662491e-05	6.73410119392e-06	-6.43032650552e-05
+UniRef50_Q74JW2	Peptide deformylase	2.41731385704e-05	2.23474274156e-05	-1.8257111548e-06
+UniRef50_F2E297	Predicted protein 	4.86956681008e-05	0.000523252489599	0.000474556821498
+UniRef50_UPI0004752275	hypothetical protein	0.00114028249723	0.000459041510662	-0.000681240986568
+UniRef50_C6EBU6	Protein phosphatase CheZ	0.000723433061809	0.000678888977457	-4.4544084352e-05
+UniRef50_A4WNW7	IS66 Orf2 family protein	0.0070523954477	0.000780792468577	-0.00627160297912
+UniRef50_A7Z5S1	Peptide methionine sulfoxide reductase MsrB	1.56517462426e-05	6.19181240749e-05	4.62663778323e-05
+UniRef50_R5XIL5	Lactate dehydrogenase and related dehydrogenases	0.00022248683036	0.00216256098738	0.00194007415702
+UniRef50_Q1QYW1	NADH	0.000455243224798	0.000482544212137	2.7300987339e-05
+UniRef50_UPI000463660C	enolase	0.000280812897045	0.000497759078396	0.000216946181351
+UniRef50_UPI000376E944	hypothetical protein	0.00043877914092	6.63507474169e-05	-0.000372428393503
+UniRef50_Q98DS8	Mll4564 protein	0.00676823217318	0.00112745575856	-0.00564077641462
+UniRef50_R4K6M8	Glucose inhibited division protein A	0.00171984288714	0.00242275307553	0.00070291018839
+UniRef50_B3CL83	Adenylosuccinate synthetase	1.93766977761e-05	1.48099357066e-05	-4.5667620695e-06
+UniRef50_A4SQR5	Short chain dehydrogenase reductase	0.000982568100816	0.000224860435429	-0.000757707665387
+UniRef50_UPI0003695FD7	D alanyl D alanine carboxypeptidase, partial	2.36203726778e-05	0.000104757275838	8.11369031602e-05
+UniRef50_O34113	LctF	0.00581812747746	0.000846471370218	-0.00497165610724
+UniRef50_S4P7C3		8.85163895114e-05	0.000308156561946	0.000219640172435
+UniRef50_UPI00036089CB	hypothetical protein	1.6381062638e-05	3.2229661057e-05	1.5848598419e-05
+UniRef50_Q03075	Cbb3 type cytochrome c oxidase subunit FixP	5.14392962691e-05	3.31098721828e-05	-1.83294240863e-05
+UniRef50_UPI0003658182	hypothetical protein, partial	2.41254644682e-05	1.50789038183e-05	-9.0465606499e-06
+UniRef50_UPI0004674DF5	amino acid permease	1.33139121903e-05	6.32123518271e-05	4.98984396368e-05
+UniRef50_L1K8T7		0.00378891467489	0.00226151214981	-0.00152740252508
+UniRef50_Q9RUV1		0.000517104094322	0.0242074170036	0.0236903129093
+UniRef50_Q3J2V7	Cysteine  tRNA ligase	0.013321024907	0.00366749135977	-0.00965353354723
+UniRef50_Q7UDG1	IS150 orfB	2.15112910013e-05	3.79095398557e-05	1.63982488544e-05
+UniRef50_UPI00047119E7	hypothetical protein	1.3482816269e-05	1.72602988575e-05	3.7774825885e-06
+UniRef50_U5P9Q9	PTS sorbitol transporter subunit IIB	0.00455599138761	0.00137658153812	-0.00317940984949
+UniRef50_UPI000377D2DD	hypothetical protein	1.32659532636e-06	1.58533270959e-06	2.5873738323e-07
+UniRef50_P76015	PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK	0.00222489802156	0.00126748420619	-0.00095741381537
+UniRef50_UPI00037EA2E6	50S ribosomal protein L22	2.44714247261e-05	0.000485340727426	0.0004608693027
+UniRef50_M4RZJ4		0.00805921539269	0.00283257047125	-0.00522664492144
+UniRef50_Q9K1M2	Putative outer membrane protein NMB0088	0.000182584478593	0.0042871878156	0.00410460333701
+UniRef50_E3GXS5		0.00207712611303	0.000461491420949	-0.00161563469208
+UniRef50_Q2YY67	L threonine dehydratase catabolic TdcB	0.00955045652567	0.00271362620379	-0.00683683032188
+UniRef50_A6LZV8	Glycoside hydrolase, family 3 domain protein	0.000108375534935	0.0012283847382	0.00112000920327
+UniRef50_Q4V182	L carnitine dehydrogenase	0.0101480539402	0.00356905336446	-0.00657900057574
+UniRef50_Q0TTK8	ATP dependent zinc metalloprotease FtsH	0.00018612263233	0.00126585669549	0.00107973406316
+UniRef50_Q493R1	3 isopropylmalate dehydrogenase	4.7371828611e-05	5.00492365676e-06	-4.23669049542e-05
+UniRef50_I1P669		0.00101280628442	0.000336931000897	-0.000675875283523
+UniRef50_Q97PA9	Serine threonine protein kinase StkP	0.00696820233415	0.00270429604159	-0.00426390629256
+UniRef50_Q601J1	30S ribosomal protein S13	0.000496692090597	0.000584785554841	8.8093464244e-05
+UniRef50_P08967	Phosphoglycerate kinase, glycosomal	1.06910205071e-05	7.47959375274e-06	-3.21142675436e-06
+UniRef50_O62584	Thymidylate synthase 1 2	2.9258513422e-05	0.000205602591933	0.000176344078511
+UniRef50_S5CQF3		0.000399553315002	0.00715075457254	0.00675120125754
+UniRef50_A7MER9	Outer membrane lipoprotein carrier protein	0.00202636880284	0.000368378426439	-0.0016579903764
+UniRef50_A6TF99	Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase	0.00210514683691	0.000472480396285	-0.00163266644063
+UniRef50_B2GGG9	Serine  tRNA ligase	0.000512995877055	0.0122645969753	0.0117516010982
+UniRef50_A0A023RZA8	Membrane protein	0.000190433602957	0.00864352207243	0.00845308846947
+UniRef50_Q8X4V6		0.00179725305493	0.000337282909284	-0.00145997014565
+UniRef50_P0ABG6	Lipid II flippase FtsW	0.00235333090038	0.000385869110511	-0.00196746178987
+UniRef50_Q5HP96	UPF0398 protein SERP1017	0.0267946354678	0.00399158954331	-0.0228030459245
+UniRef50_A3PIJ2		0.0159060543423	0.00940274233268	-0.00650331200962
+UniRef50_UPI00047E8C89	hypothetical protein	0.000102988680736	1.14711632553e-05	-9.15175174807e-05
+UniRef50_R5IVN1		0.000755024440023	0.0012043787995	0.000449354359477
+UniRef50_U5MNN1	ABC transporter permease protein YtlD	0.0007072841997	0.00129521100198	0.00058792680228
+UniRef50_Q0TLV3	Carnitinyl CoA dehydratase	0.00279965172778	0.000997654519112	-0.00180199720867
+UniRef50_UPI0003B62712	dihydropteroate synthase	9.18529581076e-06	9.25593165488e-06	7.063584412e-08
+UniRef50_P36204	Bifunctional PGK TIM	2.72064941961e-05	5.97239697416e-05	3.25174755455e-05
+UniRef50_Q040Z6	PTS system IIC component, Glc family   PTS system IIA component, Glc family   PTS system IIB component, Glc family	7.77253237152e-05	0.0058361120881	0.00575838676438
+UniRef50_UPI0003791F03	hypothetical protein	3.72904934968e-05	4.38467538158e-05	6.556260319e-06
+UniRef50_E2XKU2	Amino acid ABC transporter, permease protein	0.000189691451679	0.000306027673785	0.000116336222106
+UniRef50_Q9HYZ2		0.000935915674838	0.000412069821193	-0.000523845853645
+UniRef50_UPI00035E2D1C	hypothetical protein, partial	0.000140661884157	9.18979706105e-05	-4.87639135465e-05
+UniRef50_J3X3P8		9.61872981717e-06	0.00185844440888	0.00184882567906
+UniRef50_B4RBF7	Shikimate dehydrogenase	7.14829064464e-06	3.51008448781e-05	2.79525542335e-05
+UniRef50_Q1QDQ1	DNA polymerase I	0.000126294524063	0.00652444139612	0.00639814687206
+UniRef50_UPI000237E1F7	glutathione S transferase domain containing protein	0.000189719968907	0.00015044558316	-3.9274385747e-05
+UniRef50_Q9RZD1		0.000181785552974	0.0390509033601	0.0388691178071
+UniRef50_UPI000368F5E5	hypothetical protein	3.621121288e-05	0.000361975321753	0.000325764108873
+UniRef50_UPI0003B79537	ArsR family transcriptional regulator	0.000298520184878	0.000650198267348	0.00035167808247
+UniRef50_A5V938	3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00359135230845	0.00282243281589	-0.00076891949256
+UniRef50_W6I678	ThiJ PfpI family protein	0.000309414744966	0.00473497887393	0.00442556412896
+UniRef50_X2HDH4	Prolyl endopeptidase	0.000192831070286	0.00297778804545	0.00278495697516
+UniRef50_UPI00037D6405	hypothetical protein	8.09772237406e-06	0.000606515826502	0.000598418104128
+UniRef50_UPI0000557872	hemolysin E	1.85850226055e-05	0.000126798194406	0.0001082131718
+UniRef50_P09432	Nitrogen regulation protein NtrC	0.00238181079388	0.000129524870691	-0.00225228592319
+UniRef50_D5AL29	Two component response regulator receiver protein	0.0084743438328	0.00154412879824	-0.00693021503456
+UniRef50_UPI00036494B1	hypothetical protein	1.14520053082e-05	1.33906661955e-05	1.9386608873e-06
+UniRef50_Q052H7	Phosphoglycerate kinase	4.16179339248e-05	8.1299334423e-05	3.96814004982e-05
+UniRef50_UPI0003EABFC2	PREDICTED	7.10896622294e-06	1.53219417471e-05	8.21297552416e-06
+UniRef50_Q9RSL1	30S ribosomal protein S5	0.00104045668665	0.0333469280332	0.0323064713466
+UniRef50_K1UC05	Protein containing DUF939, bacterial 	0.000269290506802	0.000769210317071	0.000499919810269
+UniRef50_A4A5I0	Transcriptional regulator, LysR family	0.000115439140317	0.00900198469442	0.0088865455541
+UniRef50_E0SZL8	Transposase like protein, IS1381 ISSpn7	0.000322620719948	0.0125389865674	0.0122163658475
+UniRef50_E4ZDR8		0.000134816424593	0.00165133884099	0.0015165224164
+UniRef50_N1UYX5	Phenol hydroxylase	5.89116420825e-06	0.000155200713376	0.000149309549168
+UniRef50_S9SLF7	Autoinducer binding domain protein	0.00093932713066	0.000191993246635	-0.000747333884025
+UniRef50_D2NRK7		3.3230263015e-06	9.39544695055e-06	6.07242064905e-06
+UniRef50_A0A023RRK9	Threonine transporter	0.000184139506761	0.00828312346459	0.00809898395783
+UniRef50_B8D184	Undecaprenyl phosphate galactose phosphotransferase	0.0178802662006	0.00203197898556	-0.015848287215
+UniRef50_B8GW31	Chromosome partitioning protein ParA	0.00164223749933	0.00270776806683	0.0010655305675
+UniRef50_Q2YX06	Serine protease HtrA like	0.00719860748447	0.00169102115768	-0.00550758632679
+UniRef50_R1DBW6		2.43095049914e-05	0.00220676144991	0.00218245194492
+UniRef50_F0KH23	Leucine responsive regulatory protein	0.000357242260744	0.0157264629202	0.0153692206595
+UniRef50_UPI00037AFA99	hypothetical protein	1.61645342173e-05	2.68569374246e-05	1.06924032073e-05
+UniRef50_F6BRI2	ABC transporter related protein	0.00458187885437	0.00136207816973	-0.00321980068464
+UniRef50_UPI000475B74E	thioredoxin	6.44921637278e-05	3.00267419484e-05	-3.44654217794e-05
+UniRef50_UPI0003B651BF	hypothetical protein	3.59877954457e-06	1.51365858863e-05	1.15378063417e-05
+UniRef50_E8SGD2	Histidinol phosphate aminotransferase	0.0113688942098	0.00288484775792	-0.00848404645188
+UniRef50_UPI00035E63FD	hypothetical protein	2.26884410251e-05	5.66026617906e-05	3.39142207655e-05
+UniRef50_Q6G9C7		0.0569236867706	0.00719891760732	-0.0497247691633
+UniRef50_D7ZSZ7	PAS domain S box protein	0.00125882278881	0.0002365687892	-0.00102225399961
+UniRef50_UPI00036BE173	hypothetical protein	0.000213194056304	0.0166347881054	0.0164215940491
+UniRef50_X0ZMI1	Marine sediment metagenome DNA, contig	1.09933861727e-05	1.37482681765e-05	2.7548820038e-06
+UniRef50_B9TQ51		2.34613584905e-05	2.38969980578e-05	4.356395673e-07
+UniRef50_UPI000361BC07	hypothetical protein	8.18239258705e-06	1.2240346634e-05	4.05795404695e-06
+UniRef50_D4GML0		2.92979205697e-05	0.00016259441306	0.00013329649249
+UniRef50_UPI0003B5D96D	isoleucyl tRNA synthase	1.30225950678e-06	9.47509600995e-06	8.17283650317e-06
+UniRef50_P21979	Cell surface antigen I II	0.00168513266848	0.000558986200168	-0.00112614646831
+UniRef50_U6JYK1		1.18503624596e-06	9.5229616426e-05	9.404458018e-05
+UniRef50_UPI000388F8F9	PREDICTED	3.95096325119e-05	3.74273189267e-05	-2.0823135852e-06
+UniRef50_Q83I82	Ribonuclease 3	1.36958573419e-05	3.17529083359e-05	1.8057050994e-05
+UniRef50_A0A010CBA8	Sensory box protein	0.000126314455301	0.00407593419031	0.00394961973501
+UniRef50_UPI00036F9D46	hypothetical protein	0.00128250611703	0.000286046940196	-0.000996459176834
+UniRef50_I3URK7		0.000357242260744	0.000166419186879	-0.000190823073865
+UniRef50_UPI0003840A4F		4.26474190853e-05	2.6737376543e-05	-1.59100425423e-05
+UniRef50_Q046F5	Ribose xylose arabinose galactoside ABC type transport system, permease component	0.00497908598323	0.000711740139129	-0.0042673458441
+UniRef50_UPI00047D7A3C	hypothetical protein	4.26630180822e-06	9.73429077711e-05	9.30766059629e-05
+UniRef50_UPI00047EF134	hypothetical protein	1.42436275094e-05	5.48506620011e-06	-8.75856130929e-06
+UniRef50_M0E9W2	ABC transporter 	3.71357906449e-05	8.37799471534e-05	4.66441565085e-05
+UniRef50_Q4JX51	Glucose 6 phosphate isomerase	0.000353900328692	0.0586143601304	0.0582604598017
+UniRef50_E0WQQ5	Methionine import ATP binding protein MetN	0.00122423816102	0.00107365529275	-0.00015058286827
+UniRef50_Q02UV9	C4 dicarboxylate transport protein 1	0.00148177567685	0.00648072472859	0.00499894905174
+UniRef50_M4RCM3	Transcriptional regulator, LysR family	0.000135623708568	0.00628328739222	0.00614766368365
+UniRef50_F0K514	PTS cellobiose specific component IIC	0.000591433385354	0.00134115428163	0.000749720896276
+UniRef50_Q1QEI9	Ubiquinone biosynthesis O methyltransferase	0.000834226009116	0.00611269719309	0.00527847118397
+UniRef50_Q8GFF3	Putative PHA synthase	7.85591894568e-05	0.00016609176027	8.75325708132e-05
+UniRef50_P37690	Murein hydrolase activator EnvC	0.00302434250169	0.000771325695306	-0.00225301680638
+UniRef50_E4PQ84		1.2040700253e-05	9.92077130194e-06	-2.11992895106e-06
+UniRef50_J0QIU8		5.85101560969e-05	5.21675004671e-05	-6.3426556298e-06
+UniRef50_A6TEB9	Transcriptional regulator LsrR	0.00175953018171	0.000336223952777	-0.00142330622893
+UniRef50_UPI00047D6083	hypothetical protein	0.000189691451679	0.000727618187069	0.00053792673539
+UniRef50_R9SM88	Cell wall biosynthesis glycosyl transferase GT2 family	0.00168402716208	0.00162444142754	-5.958573454e-05
+UniRef50_A1B0F4	Trigger factor	0.01941329768	0.00572273330803	-0.013690564372
+UniRef50_A5UMS8	Predicted Fe S oxidoreductase	0.00363183121526	0.000271347661734	-0.00336048355353
+UniRef50_Q9KVQ7	DNA recombination protein RmuC homolog	0.00256967020238	0.000729789765887	-0.00183988043649
+UniRef50_UPI0003940AB8	PREDICTED	0.000179755232787	7.60655666265e-05	-0.00010368966616
+UniRef50_A6LVE6		0.000611295128081	0.000166531976621	-0.00044476315146
+UniRef50_UPI00045EBD23	ribonuclease	1.19504333421e-05	6.88081965385e-06	-5.06961368825e-06
+UniRef50_UPI00037A1E81	hypothetical protein	8.87392739883e-06	2.06787931047e-05	1.18048657059e-05
+UniRef50_UPI00034A9AF9	hypothetical protein	3.26363488318e-06	8.04327478279e-07	-2.4593074049e-06
+UniRef50_A0A046SME3		2.96200792677e-05	1.44724594823e-05	-1.51476197854e-05
+UniRef50_F9EX65		4.73639024017e-06	0.000106345959956	0.000101609569716
+UniRef50_UPI0004420089	PREDICTED	6.45264576919e-06	1.31355339313e-05	6.68288816211e-06
+UniRef50_B2TRU1		0.000227401198102	0.000355090226682	0.00012768902858
+UniRef50_UPI0004713B45	molecular chaperone GroEL	1.41056271895e-05	7.91225073426e-06	-6.19337645524e-06
+UniRef50_A3VY81		0.000198337229906	9.01256656242e-05	-0.000108211564282
+UniRef50_UPI0002192600	putative ATP dependent DNA helicase	0.000232984283383	0.000728006461457	0.000495022178074
+UniRef50_Q4FNX4	Argininosuccinate synthase	4.60417650868e-06	0.000115503887791	0.000110899711282
+UniRef50_D7GFL4	Permease	0.000303017887677	0.00422676574533	0.00392374785765
+UniRef50_UPI00047891E2	phytoene desaturase	5.3667327197e-06	7.2543480766e-06	1.8876153569e-06
+UniRef50_A3U7R8	O acetylhomoserine sulfhydrylase	0.00365375674043	0.00106991692891	-0.00258383981152
+UniRef50_UPI0004412677	hypothetical protein DICSQDRAFT_154134	5.55126454158e-05	1.99279368089e-05	-3.55847086069e-05
+UniRef50_Z3FT61	Fructose 1,6 bisphosphatase class 3	0.00921474306472	0.00581094762015	-0.00340379544457
+UniRef50_M7TDD9		1.71223410963e-05	0.000211344316552	0.000194221975456
+UniRef50_UPI00036A8806	hypothetical protein	1.47694365878e-05	1.20058522411e-05	-2.7635843467e-06
+UniRef50_X0VQS5	Marine sediment metagenome DNA, contig	6.85867987582e-06	2.2722108619e-05	1.58634287432e-05
+UniRef50_UPI0003B398BB	UDP N acetylglucosamine 1 carboxyvinyltransferase	3.77740652225e-06	5.39125423055e-05	5.01351357833e-05
+UniRef50_P20708	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.68746688471e-05	0.000219307359587	0.00020243269074
+UniRef50_UPI000464E54F	MULTISPECIES	4.820905431e-06	0.000130193572939	0.000125372667508
+UniRef50_B1JTI2	Probable chemoreceptor glutamine deamidase CheD	0.000109289381948	2.20349851648e-05	-8.72543967832e-05
+UniRef50_E4BFD9		0.00061631723639	5.80557912342e-05	-0.000558261445156
+UniRef50_UPI000466A1C5	sugar ABC transporter	3.91315781462e-06	2.76754962563e-05	2.37623384417e-05
+UniRef50_F0J4U6		0.0111589484345	0.000773554567154	-0.0103853938673
+UniRef50_P22348	Probable N5 carboxyaminoimidazole ribonucleotide mutase	0.00218475570302	0.000402932550225	-0.00178182315279
+UniRef50_UPI00034A55E9	hypothetical protein	7.05684739646e-05	9.35797057316e-05	2.3011231767e-05
+UniRef50_R4Q3N6	Membrane protein	0.000182123770809	0.00472225207694	0.00454012830613
+UniRef50_UPI0004634E35	hypothetical protein, partial	3.7630948582e-07	1.76644394791e-06	1.39013446209e-06
+UniRef50_Q39189	DEAD box ATP dependent RNA helicase 7	9.34927762685e-07	7.86056544817e-05	7.7670726719e-05
+UniRef50_T0YWI9	Molecular chaperone DnaK 	0.000161053846977	6.58745568312e-05	-9.51792901458e-05
+UniRef50_W6K8T3	Putative TRAP_TAXI	0.000114743225202	2.26318262268e-05	-9.21113989752e-05
+UniRef50_A4WWQ1	Lipoprotein signal peptidase	0.00371567398925	0.00272756744012	-0.00098810654913
+UniRef50_Q4L4B4	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	3.39971236081e-05	7.46491246428e-05	4.06520010347e-05
+UniRef50_A4WY58	CobB CobQ domain protein glutamine amidotransferase	0.000246320457081	0.000196877803461	-4.944265362e-05
+UniRef50_D8GTF6		0.000422402401927	0.000260190929686	-0.000162211472241
+UniRef50_A6LQW7	ExsB family protein	0.000373206855759	0.00068955586235	0.000316349006591
+UniRef50_P28297	Isocitrate lyase	4.26335849334e-06	2.36275284275e-05	1.93641699342e-05
+UniRef50_P42597		0.00631196308603	0.000812811340909	-0.00549915174512
+UniRef50_C6STB3		0.0107871716727	0.00206669624854	-0.00872047542416
+UniRef50_P42591		0.00193054519094	0.00320678251048	0.00127623731954
+UniRef50_Q8X7Z7	2,5 diketo D gluconic acid reductase B	0.00313150716317	0.00760622112409	0.00447471396092
+UniRef50_P28629	Biodegradative arginine decarboxylase	0.00409763984274	0.00085685515374	-0.003240784689
+UniRef50_Q12S01	4 hydroxybenzoate octaprenyltransferase	0.0042587374413	0.0011077741925	-0.0031509632488
+UniRef50_P42599		0.004950465828	0.001822522206	-0.003127943622
+UniRef50_O26899	Cobalt precorrin 5B C methyltransferase	0.00260262151464	0.0012322035567	-0.00137041795794
+UniRef50_V5VH70	Phosphatase	5.77897974214e-05	0.00572430436815	0.00566651457073
+UniRef50_Q3AAW2	Homoserine O acetyltransferase	1.08403569238e-05	3.86216739475e-05	2.77813170237e-05
+UniRef50_UPI0003B4A61E	DEAD DEAH box helicase	3.38437072626e-05	3.77751647364e-05	3.9314574738e-06
+UniRef50_A0A023XYH0	Chromosome partitioning protein ParB	0.000260335164724	0.00039551344445	0.000135178279726
+UniRef50_Q28TB6	Amino acid ABC transporter membrane protein 2, PAAT family	0.0187706893392	0.00522536824028	-0.0135453210989
+UniRef50_UPI00046853C2	riboflavin synthase subunit alpha	1.67601060698e-05	1.82718435472e-05	1.5117374774e-06
+UniRef50_G9ETY0		1.11146514251e-05	6.48812752766e-06	-4.62652389744e-06
+UniRef50_K2HGL3		0.000243492123435	7.08970167188e-05	-0.000172595106716
+UniRef50_A7ZPD3	tRNA pseudouridine synthase A	0.00290047114457	0.000392013325476	-0.00250845781909
+UniRef50_UPI000288F464	putative sugar permease	5.30496442386e-05	2.92260381479e-05	-2.38236060907e-05
+UniRef50_A6LW08	Signal transduction histidine kinase, LytS	0.000451598522543	0.000149653735742	-0.000301944786801
+UniRef50_UPI00017458E1	hypothetical protein	5.17666048763e-06	0.000215387750992	0.000210211090504
+UniRef50_D0LK45		1.52058451083e-05	1.33784034764e-05	-1.8274416319e-06
+UniRef50_UPI00037DE0EA	hypothetical protein	3.35671865527e-05	0.00360582251116	0.00357225532461
+UniRef50_D2G3Z9	FemAB family protein	0.00296593495892	0.00090988641634	-0.00205604854258
+UniRef50_N8EHW1		0.00034027458933	3.87422662346e-05	-0.000301532323095
+UniRef50_UPI000429DAEA	LamB YcsF family protein	0.000194408159709	7.36805082408e-05	-0.000120727651468
+UniRef50_Q2S6G3	N acetylmuramic acid 6 phosphate etherase	6.34452877274e-06	1.19211350155e-05	5.57660624276e-06
+UniRef50_U3KRA1		2.01935365818e-05	5.93521871013e-05	3.91586505195e-05
+UniRef50_UPI0004002A98	peroxiredoxin	2.14039525811e-05	0.00146770844706	0.00144630449448
+UniRef50_O26293	Putative glutamine amidotransferase MTH_191	0.00246585552814	0.000631636943427	-0.00183421858471
+UniRef50_M9REL9		0.000120005114013	2.49764231824e-05	-9.50286908306e-05
+UniRef50_UPI000262CE83	molybdopterin biosynthesis protein MoeB	3.08415629599e-05	3.93587812719e-05	8.517218312e-06
+UniRef50_M9R8D3		0.00149498981563	0.000257918519823	-0.00123707129581
+UniRef50_M0XFB3		6.75989933849e-06	4.94023284623e-05	4.26424291238e-05
+UniRef50_Q8DUC6		0.000124417927162	0.000658698970703	0.000534281043541
+UniRef50_N6YKC6	ISPsy6, transposase	0.000202453183491	2.62525826019e-05	-0.000176200600889
+UniRef50_UPI00029CD3E9	cation transport ATPase, partial	3.66033828133e-05	2.00560950748e-05	-1.65472877385e-05
+UniRef50_UPI0003B71BA4	ABC transporter permease, partial	2.95187469514e-05	0.000111775702274	8.22569553226e-05
+UniRef50_O27280	Probable dihydroorotate dehydrogenase B ), electron transfer subunit	0.00327646536977	0.000701064507089	-0.00257540086268
+UniRef50_W0YRK3	Putative thioesterase	7.1434913512e-05	0.000122569586611	5.1134673099e-05
+UniRef50_P50456	Protein mlc	0.00450629227192	0.00192374181264	-0.00258255045928
+UniRef50_UPI0001CB956C	PREDICTED	7.42741603044e-06	3.6137647226e-06	-3.81365130784e-06
+UniRef50_A3UCU0		5.89282781618e-05	1.64214993614e-05	-4.25067788004e-05
+UniRef50_G3XCV3	Pseudaminidase	0.000894680172104	0.000348423188776	-0.000546256983328
+UniRef50_UPI00046CA980	hypothetical protein	0.000103134540428	0.000830384340167	0.000727249799739
+UniRef50_UPI0000222793	Hypothetical protein CBG15144	4.76798104979e-06	7.43423387758e-05	6.9574357726e-05
+UniRef50_UPI000475010A	CoA transferase	1.77751223697e-05	1.03484718355e-05	-7.4266505342e-06
+UniRef50_B4D594		4.8185079133e-05	4.41455210369e-06	-4.37705270293e-05
+UniRef50_F4LXR7	PTS system transcriptional activator	0.000258344947161	0.00115214692699	0.000893801979829
+UniRef50_UPI000362454E	hypothetical protein, partial	0.000279195077368	7.40173396883e-05	-0.00020517773768
+UniRef50_UPI00047529B6	XRE family transcriptional regulator	0.000134734766548	0.00209618877371	0.00196145400716
+UniRef50_I1ZJL0	Nicotinate phosphoribosyltransferase	0.00887987135156	0.00801017535971	-0.00086969599185
+UniRef50_F8HYA2	Nucleoside permease	0.0119047796699	0.00354020740774	-0.00836457226216
+UniRef50_J9P4X2		0.000166866507466	0.000895894213725	0.000729027706259
+UniRef50_A0A058Z6X5		2.32379403655e-05	2.89762915922e-05	5.7383512267e-06
+UniRef50_A6M027	YCII related	0.00283495056924	0.00124343875871	-0.00159151181053
+UniRef50_P65213	Potassium transporting ATPase C chain 1	0.00553997013872	0.00309685078509	-0.00244311935363
+UniRef50_Q6FE54		0.000512424419253	0.0132589333071	0.0127465088878
+UniRef50_J0MDM2		0.000269631637761	7.1028548275e-05	-0.000198603089486
+UniRef50_A6LW35		0.000547508094968	0.000713710053181	0.000166201958213
+UniRef50_A6LW34		0.000436399987111	0.000885387665832	0.000448987678721
+UniRef50_P23504	Cell surface antigen I II	0.00181275939383	0.000650220892318	-0.00116253850151
+UniRef50_A5UL13	Acetolactate synthase , large subunit, IlvB	0.00279597425515	0.000584644573848	-0.0022113296813
+UniRef50_P76655	Putative outer membrane usher protein YqiG	0.00162472913007	0.000645227681151	-0.000979501448919
+UniRef50_UPI00035C946D	hypothetical protein	2.47893644858e-05	0.000340754936465	0.000315965571979
+UniRef50_UPI000377D66B	hypothetical protein	1.31790862294e-05	8.04769440166e-05	6.72978577872e-05
+UniRef50_E8SK78	ABC transporter ATP binding protein	0.0217874363306	0.00634562869259	-0.015441807638
+UniRef50_P43085	Phosphoenolpyruvate carboxykinase [ATP]	0.00676049522965	0.00353198982013	-0.00322850540952
+UniRef50_F5HTK1	Alcaligin biosynthesis enzyme family protein	0.000337213365454	0.0086628498287	0.00832563646325
+UniRef50_Q48KB4	Tat  pathway signal sequence domain protein	0.00117050282886	0.00050992959632	-0.00066057323254
+UniRef50_W4THQ3	Exodeoxyribonuclease V alpha chain	8.82891222297e-05	0.000184990175522	9.67010532923e-05
+UniRef50_UPI0003604119	hypothetical protein	1.13143981663e-05	1.54021950422e-05	4.0877968759e-06
+UniRef50_UPI0003B700CE	molybdopterin biosynthesis MoeZ	3.57262595896e-05	5.10606179944e-05	1.53343584048e-05
+UniRef50_B6BAZ3		2.23612922757e-05	1.41637150277e-05	-8.197577248e-06
+UniRef50_A0A058T111	Glycerol 3 phosphate acyltransferase	0.00333973788365	0.000701930699578	-0.00263780718407
+UniRef50_Q1QVF5	Phosphoheptose isomerase	2.80360261003e-05	0.000996154590681	0.000968118564581
+UniRef50_UPI0002BA0065	hypothetical protein, partial	0.000365959281483	0.000368773989167	2.814707684e-06
+UniRef50_B5Y0W4	UPF0234 protein KPK_4305	0.000771382803832	0.000809076916587	3.7694112755e-05
+UniRef50_UPI0003B69561	IMP cyclohydrolase	3.64198487707e-06	1.13631075166e-05	7.72112263953e-06
+UniRef50_UPI0001744350	glycine hydroxymethyltransferase	5.43278517763e-05	0.00011810801453	6.37801627537e-05
+UniRef50_UPI000470759E	ATP dependent DNA helicase PcrA	2.2767975394e-05	3.54729822884e-06	-1.92206771652e-05
+UniRef50_Q2G1Q2	1 phosphatidylinositol phosphodiesterase	0.0122526986999	0.000767549261549	-0.0114851494384
+UniRef50_B9KLG1	Membrane anchored oxidoreductase	0.00316724992267	0.000923417572624	-0.00224383235005
+UniRef50_UPI00047BB328	phosphoenolpyruvate carboxykinase	3.70943559105e-06	3.01753922579e-05	2.64659566669e-05
+UniRef50_P03014	DNA invertase from lambdoid prophage e14	0.00383349400254	0.00212528194228	-0.00170821206026
+UniRef50_Q5L3T0	Type III pantothenate kinase	0.000587109070158	0.00280214634288	0.00221503727272
+UniRef50_G8LV00	Transposase	0.000284407251873	0.000671530690386	0.000387123438513
+UniRef50_D0KD36	Lipid A palmitoyltransferase PagP	0.0014690437816	0.000319261302914	-0.00114978247869
+UniRef50_UPI00047780D2	alanine dehydrogenase	1.27751402393e-05	1.35502889441e-05	7.751487048e-07
+UniRef50_D6CRU4		2.54366637794e-05	7.21115035386e-06	-1.82255134255e-05
+UniRef50_B9JWD9		5.9942485479e-05	4.89198339163e-05	-1.10226515627e-05
+UniRef50_UPI0003479767	hypothetical protein	2.21732765988e-06	0.000101266775305	9.90494476451e-05
+UniRef50_UPI0003605B2B	hydrogenase nickel incorporation protein HypA	0.000864059133047	0.000349089772983	-0.000514969360064
+UniRef50_A4WW77	Ribosome maturation factor RimP	0.0117719189282	0.00247377764146	-0.00929814128674
+UniRef50_E3EZC8		0.00176408721327	0.000459099731777	-0.00130498748149
+UniRef50_W7DGX3	Bleomycin resistance protein	0.00025492751768	0.000186448281897	-6.8479235783e-05
+UniRef50_B2TRM3	NAD kinase	0.000135786326927	0.000586882801755	0.000451096474828
+UniRef50_C1A7Q5		0.00932520563225	0.00179019189762	-0.00753501373463
+UniRef50_N6UYT1		2.25987607162e-05	3.62094898069e-06	-1.89778117355e-05
+UniRef50_Q3ABL6	Dephospho CoA kinase	1.20243908199e-05	2.08714931199e-05	8.8471023e-06
+UniRef50_UPI0003C0FD63	PREDICTED	1.92332436971e-06	6.0561121335e-06	4.13278776379e-06
+UniRef50_O34011	Fructose 1,6 bisphosphatase class 1	0.014432083949	0.00263944714889	-0.0117926368001
+UniRef50_UPI00046969A6	glutamine amidotransferase	2.42198891871e-05	0.000193209237267	0.00016898934808
+UniRef50_UPI000191383D	hypothetical protein, partial	0.000219393285239	0.000570092336986	0.000350699051747
+UniRef50_D2J6T4		0.0146825025136	0.0184641894148	0.0037816869012
+UniRef50_H8L0H5	Plasmid stabilization system protein	0.000786429143437	0.00133388549242	0.000547456348983
+UniRef50_D5MJN8		3.4300926193e-05	2.01767967235e-05	-1.41241294695e-05
+UniRef50_U5ULW6		0.000200748310105	1.91019005938e-05	-0.000181646409511
+UniRef50_Q57QS3	Ribosomal RNA large subunit methyltransferase I	0.00379190236464	0.00175416308921	-0.00203773927543
+UniRef50_J3CV04		0.0011256696039	0.000345886947823	-0.000779782656077
+UniRef50_S5KGZ8		2.44073701629e-05	0.00277223710451	0.00274782973435
+UniRef50_Q66FE1	Thiol	0.000696968325316	0.000272439138384	-0.000424529186932
+UniRef50_B4U9I4	Cysteine  tRNA ligase	2.53322269882e-06	1.05301970904e-05	7.99697439158e-06
+UniRef50_A0A038GF87	Plasmid pRiA4b ORF 3 family protein	5.63196768525e-05	1.35083780639e-05	-4.28112987886e-05
+UniRef50_R4QCF3	Membrane protein	0.000171703875971	0.00616852914197	0.005996825266
+UniRef50_Q8CTK1		0.0324925758293	0.00518341774847	-0.0273091580808
+UniRef50_P77935	Amidophosphoribosyltransferase	0.00644337706952	0.00276435319734	-0.00367902387218
+UniRef50_UPI00030EA43E	hypothetical protein	3.03099895798e-06	5.64913886355e-06	2.61813990557e-06
+UniRef50_B3R9A8	YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal	0.00313301799874	0.0411856486794	0.0380526306807
+UniRef50_UPI00040764A3	amidohydrolase	4.027611842e-06	6.82205019724e-05	6.41928901304e-05
+UniRef50_B2K1F3		0.000312549922843	0.000485734848502	0.000173184925659
+UniRef50_E0TI30		0.000143836894815	5.26031724255e-05	-9.12337223895e-05
+UniRef50_UPI000471B390	hypothetical protein, partial	3.29708045511e-06	6.5103841184e-06	3.21330366329e-06
+UniRef50_F3IHL1	Transcriptional regulator, AsnC family protein	7.158995421e-05	0.000112538268527	4.0948314317e-05
+UniRef50_UPI000288AE42	MarR family transcriptional regulator	1.50946792519e-05	3.70789004918e-05	2.19842212399e-05
+UniRef50_Q8D2C5	Oligoribonuclease	0.00199303131102	5.14815856262e-05	-0.00194154972539
+UniRef50_Q6M0B4	UDP N acetylglucosamine 2 epimerase homolog	0.000961199021542	0.00133927003941	0.000378071017868
+UniRef50_P77562		0.00143411795248	0.000335732882396	-0.00109838507008
+UniRef50_Q8CWZ2		0.000555126454193	0.0015542984484	0.000999171994207
+UniRef50_F6D1U5	Sulfate transporting ATPase	0.00423660680077	0.00149112131277	-0.002745485488
+UniRef50_Q70AC7	Methylmalonyl CoA carboxyltransferase 5S subunit	0.00554549785474	0.00183141626312	-0.00371408159162
+UniRef50_UPI000380FAC7	hypothetical protein, partial	1.08593169994e-05	6.49801391588e-06	-4.36130308352e-06
+UniRef50_O25369	Outer membrane protein assembly factor BamA	0.000366470436589	0.00418504270778	0.00381857227119
+UniRef50_G5P5B1	Potassium transporting ATPase B chain	8.00975621009e-06	0.000824558971844	0.000816549215634
+UniRef50_C5N6G1		0.0027401988873	0.000588847750693	-0.00215135113661
+UniRef50_A9M2U6	Oxygen independent coproporphyrinogen III oxidase	0.000131681158905	0.00244451735921	0.0023128362003
+UniRef50_B9L274	Ribosomal RNA small subunit methyltransferase H	1.14168869486e-05	0.0321372181383	0.0321258012514
+UniRef50_P35159	Ribosomal large subunit pseudouridine synthase B	1.53937981152e-05	0.0066519374124	0.00663654361428
+UniRef50_A7ZIN4	Adenylate kinase	0.00274337209643	0.00155478157458	-0.00118859052185
+UniRef50_I4CR94		6.01972024774e-06	1.29901047237e-05	6.97038447596e-06
+UniRef50_U3HDX0		4.34886805021e-05	6.23068150023e-05	1.88181345002e-05
+UniRef50_M9S9D1		0.000102642635941	0.000320511788102	0.000217869152161
+UniRef50_A8LU40	Replication protein C	0.00238194922091	0.000292132676889	-0.00208981654402
+UniRef50_S5XWE5	Sarcosine oxidase	0.000405759707163	0.000132034294431	-0.000273725412732
+UniRef50_R7D072		6.78633164352e-06	1.19527736585e-05	5.16644201498e-06
+UniRef50_Q895M3	Ribosome maturation factor RimM	0.000905966373245	0.000455501344774	-0.000450465028471
+UniRef50_P78271		0.00298557451354	0.00124006736609	-0.00174550714745
+UniRef50_Q5M3Y0	Cell division protein	0.0042033385397	0.00310893202238	-0.00109440651732
+UniRef50_Q3JY00	CarR	6.30810512401e-05	0.000707586644453	0.000644505593213
+UniRef50_R4K7H3	DNA repair protein RecN	0.000372408169587	0.000923721794552	0.000551313624965
+UniRef50_A3PGQ0	ErfK YbiS YcfS YnhG family protein	0.00548844726795	0.00095184917707	-0.00453659809088
+UniRef50_B9KM31		0.000811676282119	0.000915562800384	0.000103886518265
+UniRef50_A4WW68	Flagellar M ring protein	0.00135440902046	0.000436405557855	-0.000918003462605
+UniRef50_UPI000467700F	hypothetical protein	2.10324750216e-06	2.8180648569e-06	7.1481735474e-07
+UniRef50_I6U0E0	Stress response protein	0.0050821074154	0.00137879705175	-0.00370331036365
+UniRef50_UPI0003653B40	hypothetical protein	0.000118262841564	2.08634390892e-05	-9.73994024748e-05
+UniRef50_A4J700	Endoribonuclease L PSP	0.00683772871804	0.00472523032654	-0.0021124983915
+UniRef50_L5RDB7	Putative gluconolactonase domain protein	0.000294144926378	0.00212555573097	0.00183141080459
+UniRef50_Q4JVZ1	Thiamine phosphate synthase	0.00210065254141	0.00600514836908	0.00390449582767
+UniRef50_UPI0003318BBF		2.60408591974e-05	2.24369714747e-05	-3.6038877227e-06
+UniRef50_J0CD84		3.39176229073e-05	0.000189403013897	0.00015548539099
+UniRef50_C5YXG0		1.23072411431e-05	1.78250453312e-05	5.5178041881e-06
+UniRef50_UPI0003B2FF21	hydantoinase	3.77970207116e-06	6.94631480963e-06	3.16661273847e-06
+UniRef50_I4KQZ4		1.01044746277e-05	1.73338582147e-05	7.229383587e-06
+UniRef50_UPI0003595520	PREDICTED	3.81360134766e-05	0.00012552185264	8.73858391634e-05
+UniRef50_I6RQF7		0.00143349109691	0.00224291168503	0.00080942058812
+UniRef50_UPI00047616F1	hypothetical protein	4.2441254048e-06	3.45654141749e-05	3.03212887701e-05
+UniRef50_D8JKH6	Acyl CoA dehydrogenase	0.000298272492969	0.00607280268115	0.00577453018818
+UniRef50_E8SH59	Chromosome replication initiation protein dnaD	0.0153268633487	0.0033208542881	-0.0120060090606
+UniRef50_Q4LA96		0.00175064309322	0.000360065744148	-0.00139057734907
+UniRef50_F6EZI7	Diguanylate cyclase with GAF sensor	0.00262519084803	0.00105644592491	-0.00156874492312
+UniRef50_P77381		0.00336650823539	0.000719478523288	-0.0026470297121
+UniRef50_A1WPN7	Peptidase C39, bacteriocin processing	0.00120873094671	0.00969341301591	0.0084846820692
+UniRef50_Q2T3A1	Transcriptional regulator, LysR family	0.0001909709893	0.000223161238178	3.2190248878e-05
+UniRef50_C6SR09		0.00387280221803	0.000719678751628	-0.0031531234664
+UniRef50_E4PKD1	Adenylate guanylate cyclase	0.00103831307265	0.000560886954259	-0.000477426118391
+UniRef50_Q4L4W9	Putative peptidyl prolyl cis trans isomerase	7.77862301132e-06	0.000297577405515	0.000289798782504
+UniRef50_Q9RZC3	Glucose 1 phosphate thymidylyltransferase, putative	0.000487500640715	0.0653683785222	0.0648808778815
+UniRef50_UPI00046624C5	ribonuclease E	2.15714332845e-06	2.80005668047e-06	6.4291335202e-07
+UniRef50_P45092	Arginine transport ATP binding protein ArtP	0.00253248980406	0.002121031902	-0.00041145790206
+UniRef50_Q1YHY0		0.000321687752459	4.10844560814e-05	-0.000280603296378
+UniRef50_X2HE44	DNA polymerase III delta prime subunit	0.000709831890636	0.00252572322166	0.00181589133102
+UniRef50_Q890R3	Energy coupling factor transporter ATP binding protein EcfA2	0.000292525046714	0.00317174375859	0.00287921871188
+UniRef50_UPI00047DDBCA	molecular chaperone DnaJ	1.04507773522e-05	2.13350803741e-05	1.08843030219e-05
+UniRef50_UPI000476F810	alkylhydroperoxidase	4.12207709729e-05	0.000254622433705	0.000213401662732
+UniRef50_Q81L09	S adenosylmethionine decarboxylase proenzyme 1	1.29976962468e-05	0.00250575289812	0.00249275520187
+UniRef50_UPI0003B4E07A	peptide deformylase	2.48539670114e-05	8.77124661315e-05	6.28584991201e-05
+UniRef50_A5IW20	LPXTG motif cell wall anchor domain	0.00581041161264	0.0025407396483	-0.00326967196434
+UniRef50_A6W2Y5	Short chain dehydrogenase reductase SDR	0.00698268786814	0.00302390183661	-0.00395878603153
+UniRef50_P70720	3 oxoacyl [acyl carrier protein] reductase FabG	0.00166978133217	0.0193489412926	0.0176791599604
+UniRef50_UPI000363345A	hypothetical protein	0.000155330571043	0.000157250349826	1.919778783e-06
+UniRef50_R5PT01	6 pyruvoyl tetrahydropterin synthase	0.000165703016709	0.000105785492798	-5.9917523911e-05
+UniRef50_E1S9J4	Signal transduction histidine kinase	0.00021821731031	0.00518512110986	0.00496690379955
+UniRef50_A3IDC9		0.000707315649066	0.000456403040261	-0.000250912608805
+UniRef50_M4K0X3		0.000775693449478	0.000553299269543	-0.000222394179935
+UniRef50_J9M4I5		6.25602599357e-06	1.50104862497e-06	-4.7549773686e-06
+UniRef50_O31440	Fatty acid peroxygenase	7.22193721735e-06	1.29426314057e-05	5.72069418835e-06
+UniRef50_UPI000371B5AE	hypothetical protein	5.37853417855e-05	1.70369201795e-05	-3.6748421606e-05
+UniRef50_S5YFU3	SMP 30 Gluconolaconase LRE domain protein	0.000223400713147	0.000215297719466	-8.102993681e-06
+UniRef50_UPI000225EF72	magnesium transporter	0.000106497184209	7.85751203881e-05	-2.79220638209e-05
+UniRef50_B2V488	Metallo beta lactamase family protein	0.000366794708838	0.000604560087828	0.00023776537899
+UniRef50_G7RAI1		0.000370084302795	0.00159456500466	0.00122448070187
+UniRef50_U6LJB2		1.70234329309e-05	3.49829073229e-05	1.7959474392e-05
+UniRef50_UPI0003B686A2	AraC family transcriptional regulator	8.52065457567e-05	1.16493741055e-05	-7.35571716512e-05
+UniRef50_P09394	Glycerophosphoryl diester phosphodiesterase	0.00394757382618	0.00104354922623	-0.00290402459995
+UniRef50_D7GCV1	Folylpolyglutamate synthase 	0.000118087379206	0.00523841012773	0.00512032274852
+UniRef50_X9G8K3	Surface protein G	0.00158805050229	0.000167793582503	-0.00142025691979
+UniRef50_G8VA48	Lactate malate dehydrogenase, NAD binding domain protein	0.000228779387182	0.00631749488628	0.0060887154991
+UniRef50_Q21DG3	Ribosomal RNA small subunit methyltransferase G	2.29568351826e-05	3.55005037617e-05	1.25436685791e-05
+UniRef50_UPI0002D3A901	transaldolase	0.000101589045223	6.94478239413e-05	-3.21412212817e-05
+UniRef50_W1BA41	Chromosome partition protein MukF	0.000449241696888	0.000322676294362	-0.000126565402526
+UniRef50_F3U217	GntR family transcriptional regulator	0.00630367019057	0.00225580969172	-0.00404786049885
+UniRef50_V9XEY4	Glutaminase	0.000196622159211	0.00620868217029	0.00601206001108
+UniRef50_D9XFH8		0.000654978288092	0.00220493869669	0.0015499604086
+UniRef50_UPI00035F6847	cold shock protein	2.57376312444e-05	1.96995627722e-05	-6.0380684722e-06
+UniRef50_D5WIA8	Acyl CoA dehydrogenase domain protein	0.000578069824507	0.00862829250615	0.00805022268164
+UniRef50_A0A013SXP0	Phosphoenolpyruvate protein phosphotransferase	8.25829468874e-05	0.00253833850772	0.00245575556083
+UniRef50_U3T0Z6	dGTP pyrophosphohydrolase thiamine phosphate synthase	0.000547145136573	0.00313359720103	0.00258645206446
+UniRef50_P50600	Protein TolA	0.00126554723212	0.000294335586571	-0.000971211645549
+UniRef50_Q6GK25	Protein EssB	0.0119329809133	0.00254262469166	-0.00939035622164
+UniRef50_C8UCL7		0.00100072855528	0.000355803259269	-0.000644925296011
+UniRef50_X5J954	Transposase ISCca5, IS5 ssgr IS5 family	4.45942749009e-05	1.31710752731e-05	-3.14231996278e-05
+UniRef50_A0QL30		1.49369550588e-05	6.96787679778e-05	5.4741812919e-05
+UniRef50_Q892Q8	Heat inducible transcription repressor HrcA	0.000142806805364	0.000742270567195	0.000599463761831
+UniRef50_UPI000370A1E5	hypothetical protein	6.44574868682e-05	9.22253716506e-06	-5.52349497031e-05
+UniRef50_Q9FDM1	Prolipoprotein diacylglyceryl transferase	9.18026690241e-05	1.12085412574e-05	-8.05941277667e-05
+UniRef50_P36638	Peptide transport system ATP binding protein SapF	0.00424071720815	0.00119102980072	-0.00304968740743
+UniRef50_UPI00037F8A46	hypothetical protein	4.30682170917e-06	5.63542892726e-06	1.32860721809e-06
+UniRef50_P75905	Poly beta 1,6 N acetyl D glucosamine synthase	0.002431219069	0.00599056576316	0.00355934669416
+UniRef50_I1FPH4		2.60639077406e-06	7.03007481933e-06	4.42368404527e-06
+UniRef50_S1EVH2	Transcriptional regulator	0.00134492173059	0.000630291045772	-0.000714630684818
+UniRef50_P25519	GTPase HflX	0.00370532114766	0.000506708949174	-0.00319861219849
+UniRef50_F3J1W5		0.000503119092704	0.00305500039855	0.00255188130585
+UniRef50_UPI0004286E00	hypothetical protein	5.49754718614e-06	6.52530133892e-06	1.02775415278e-06
+UniRef50_Q9A2A6		9.22732239607e-05	2.50293809212e-05	-6.72438430395e-05
+UniRef50_UPI0003B41A8E	MerR family transcriptional regulator	0.000518794096916	0.000130833047108	-0.000387961049808
+UniRef50_UPI00047DA8A6	transcriptional regulator	3.37829415838e-05	1.44823157659e-05	-1.93006258179e-05
+UniRef50_UPI000380DF8A	hypothetical protein	4.67356673812e-06	1.10739915172e-05	6.40042477908e-06
+UniRef50_A0A023RW94	Acyltransferase	0.000492253223462	0.00753322163417	0.00704096841071
+UniRef50_UPI0004074116	hypothetical protein	1.81753631272e-05	2.3802491491e-05	5.6271283638e-06
+UniRef50_A7IK15	Chromosomal replication initiator, DnaA	4.50718373516e-05	1.21896824604e-05	-3.28821548912e-05
+UniRef50_Q0AMH8	UPF0301 protein Mmar10_2223	3.07703332223e-05	2.3100879244e-05	-7.6694539783e-06
+UniRef50_Q8DY37	UPF0348 protein SAG1656	0.00596244851989	0.00239852503203	-0.00356392348786
+UniRef50_UPI00038154C1	hypothetical protein	1.57646450315e-05	1.41896326655e-05	-1.575012366e-06
+UniRef50_G7D6S7		0.000201932427667	6.04803049477e-05	-0.000141452122719
+UniRef50_F7U6Q0		3.81006170307e-05	4.56870186004e-06	-3.35319151707e-05
+UniRef50_D7FE46	RBL01243	0.000112309283497	0.00612568863742	0.00601337935392
+UniRef50_A5UNG5	CMP sialic acid synthetase, NeuA	0.00406270603338	0.000707610763133	-0.00335509527025
+UniRef50_UPI0001745DFF	Response regulator consisting of a CheY like receiver domain and a winged helix DNA binding domain	9.54160152509e-06	0.000124488313335	0.00011494671181
+UniRef50_C5WGS2	Amino acid ABC transporter extracellular binding protein	0.00380953621996	0.00183643653005	-0.00197309968991
+UniRef50_P13716	Delta aminolevulinic acid dehydratase	1.75799955361e-05	8.07306120531e-06	-9.50693433079e-06
+UniRef50_F7ZTM8	Riboflavin biosynthesis protein RibD	0.000314684211198	0.000679962167477	0.000365277956279
+UniRef50_Q6G7T8		0.00671469129317	0.00223391417608	-0.00448077711709
+UniRef50_UPI00037BBACA	hypothetical protein, partial	4.11444894537e-06	6.01750962138e-06	1.90306067601e-06
+UniRef50_R9ZHE0	Type II secretion system protein	0.00156136021166	0.00222017253215	0.00065881232049
+UniRef50_P46354	Purine nucleoside phosphorylase 1	0.00940296002323	0.0059824157719	-0.00342054425133
+UniRef50_A1VVY8	LemA family protein	2.69446105961e-05	1.39501559727e-05	-1.29944546234e-05
+UniRef50_UPI0002490C4B	DeoR faimly transcriptional regulator	0.000162474778373	1.22968628094e-05	-0.000150177915564
+UniRef50_H2A790	Amino acid ABC transporter, amino acid binding permease protein	0.00779444803455	0.00754774716137	-0.00024670087318
+UniRef50_UPI0003C13A29	PREDICTED	1.8100239229e-05	5.30812739702e-06	-1.2792111832e-05
+UniRef50_UPI000360760D	hypothetical protein	2.35823071417e-05	8.52589376936e-06	-1.50564133723e-05
+UniRef50_UPI0001FFDEF3	hypothetical protein	2.60430978063e-06	0.000124112749991	0.00012150844021
+UniRef50_UPI00036476ED	hypothetical protein	1.82202713707e-05	2.82817237649e-05	1.00614523942e-05
+UniRef50_UPI0002555726	macrolide ABC transporter ATP binding protein	5.29845423556e-06	3.96332700578e-05	3.43348158222e-05
+UniRef50_UPI000287EE3A	rhizobiocin RTX toxin and hemolysin type calcium binding protein	2.79745432699e-05	4.18818086338e-06	-2.37863624065e-05
+UniRef50_U3SUU9		0.00525092837966	0.00194749894873	-0.00330342943093
+UniRef50_P10249	Sucrose phosphorylase	0.00499788296314	0.00848982805772	0.00349194509458
+UniRef50_C3Z7Q3		6.93080651327e-05	5.49170719359e-06	-6.38163579391e-05
+UniRef50_Q09067	Urease accessory protein UreH	0.000255633852495	0.00418986501494	0.00393423116244
+UniRef50_UPI000464113C	multidrug ABC transporter	6.2276009702e-06	3.46831031503e-05	2.84555021801e-05
+UniRef50_I2BZM7	Transcriptional regulator, AraC family	0.000332530554699	0.000790316694578	0.000457786139879
+UniRef50_UPI00047C04E2	diguanylate cyclase	5.45297305169e-06	8.51236180273e-06	3.05938875104e-06
+UniRef50_A0KL52	Adenylate kinase	8.53103151564e-06	1.44153518997e-05	5.88432038406e-06
+UniRef50_UPI000262D071	pyrroline 5 carboxylate reductase	1.10598522484e-05	1.53571852148e-05	4.2973329664e-06
+UniRef50_L7WZS3	Lipase	0.00779010151918	0.00311786590358	-0.0046722356156
+UniRef50_A6LR40	Ribonuclease R	0.000279850845443	0.00186752537675	0.00158767453131
+UniRef50_U6HJZ8	Succinate dehydrogenase iron sulfur protein	3.7476923495e-05	0.000136065769359	9.8588845864e-05
+UniRef50_Q9B6E7	Cytochrome c oxidase subunit 1	2.07046673402e-05	1.03680969772e-05	-1.0336570363e-05
+UniRef50_UPI000288E3B9	DNA polymerase I, partial	0.000121075766092	6.88984415082e-05	-5.21773245838e-05
+UniRef50_Q87U89		0.000558983172193	0.000320771188731	-0.000238211983462
+UniRef50_UPI0001BF7861	hypothetical protein SMAC_10214, partial	5.08393907492e-05	0.000150504638575	9.96652478258e-05
+UniRef50_Q97K95	L aspartate oxidase	0.000288047013599	0.000743680229215	0.000455633215616
+UniRef50_O31462		0.00640013399744	0.00343945847283	-0.00296067552461
+UniRef50_A6QIT1		0.00153908507774	0.00146283289675	-7.625218099e-05
+UniRef50_D0CS40	Outer membrane transporter, ompp1 fadl todx family	1.42236894092e-05	5.62289464677e-06	-8.60079476243e-06
+UniRef50_G9PLE0		3.56914126801e-05	0.000179815884782	0.000144124472102
+UniRef50_B9KU12		0.000124016601692	0.000518889107334	0.000394872505642
+UniRef50_UPI0003B6C6DF	histidine kinase	0.000383086464505	7.33909615101e-05	-0.000309695502995
+UniRef50_Q9Z4W7	Anthranilate synthase component 1	2.87569026375e-06	6.6070863e-06	3.73139603625e-06
+UniRef50_K0I5D9	Protease	0.000233016042498	0.000209692335056	-2.3323707442e-05
+UniRef50_Q3J615		0.0110028199121	0.00300144665437	-0.00800137325773
+UniRef50_Q3J617		0.0145977411356	0.00627458025541	-0.00832316088019
+UniRef50_Q9RWA3		0.000200793136132	0.01954974652	0.0193489533839
+UniRef50_B7GLM2	ABC type oligopeptide transport system, permease component	0.0234645505474	0.00643591413794	-0.0170286364095
+UniRef50_A6LYT7		0.00084818820978	0.0019924469491	0.00114425873932
+UniRef50_Q9RWA8		0.000367416162542	0.00773262416766	0.00736520800512
+UniRef50_A6LYT5		0.000322637597309	0.000252048397039	-7.058920027e-05
+UniRef50_R7LD69		1.46581612115e-05	0.000308718426884	0.000294060265673
+UniRef50_UPI0003B71B68	molybdopterin dehydrogenase, partial	1.47504267633e-05	4.24301559936e-05	2.76797292303e-05
+UniRef50_UPI0004679659	hypothetical protein	0.000164377266094	3.16029364193e-05	-0.000132774329675
+UniRef50_UPI0003604091	hypothetical protein	3.12885741974e-05	7.63406363828e-06	-2.36545105591e-05
+UniRef50_UPI000367D1C3	hypothetical protein	3.14901085121e-05	4.6210633582e-05	1.47205250699e-05
+UniRef50_U5MT62	Nodulation protein NolG	0.000397447769323	0.00246574377197	0.00206829600265
+UniRef50_A0KEB8	Tetratricopeptide repeat family	4.50246784272e-06	8.23583706457e-05	7.7855902803e-05
+UniRef50_H6NKR1		6.75751366856e-06	0.000796761159791	0.000790003646122
+UniRef50_A5UMM4	Serine threonine protein kinase related protein 	0.00371371749971	0.000854600463143	-0.00285911703657
+UniRef50_C5YW74		9.9400863872e-05	5.99955498646e-05	-3.94053140074e-05
+UniRef50_Q8D954	sn glycerol 3 phosphate import ATP binding protein UgpC	0.00113757837482	6.91402132548e-06	-0.00113066435349
+UniRef50_E6US82	TROVE domain containing protein	0.000584131469492	0.00161814837078	0.00103401690129
+UniRef50_O32168	Methionine import system permease protein MetP	0.0205838245752	0.0113935068067	-0.0091903177685
+UniRef50_UPI0003B3F610	peptidylprolyl isomerase	8.87647443269e-06	1.4272946369e-05	5.39647193631e-06
+UniRef50_A5INZ6		0.00838553059702	0.00452688570361	-0.00385864489341
+UniRef50_U3QUF7	Chemotaxis protein	0.00175134628674	0.000884700872465	-0.000866645414275
+UniRef50_D4HF48		8.75670734285e-06	0.00281789063998	0.00280913393264
+UniRef50_UPI0003B6D344	MarR family transcriptional regulator	1.98043609353e-05	0.000117973947863	9.81695869277e-05
+UniRef50_G8VM83	Serine threonine protein kinase	0.00013214499857	0.00629469775834	0.00616255275977
+UniRef50_Q9RSR9	Oligoendopeptidase F, putative	0.000245113602402	0.0167108129191	0.0164656993167
+UniRef50_J3L6D3		0.000160804316036	0.000259699546669	9.8895230633e-05
+UniRef50_Q6F8Q1	Protease HtpX	0.000228779387182	0.0094073233205	0.00917854393332
+UniRef50_W1EDI8	Error prone, lesion bypass DNA polymerase V 	0.00328856517855	0.000885735765023	-0.00240282941353
+UniRef50_F1XKP7		0.000266221352618	0.00020319956779	-6.3021784828e-05
+UniRef50_N2GZC1	Inner membrane transport protein YhjV	0.00126002025586	0.000217945907889	-0.00104207434797
+UniRef50_UPI00036F024D	hypothetical protein	2.11663099346e-05	2.21282658602e-05	9.619559256e-07
+UniRef50_A4X0E7	Transport system permease protein	6.10599482752e-05	5.34558720004e-05	-7.6040762748e-06
+UniRef50_B9KGQ3	Transcriptional activator protein 	0.00968448593373	0.0023318276558	-0.00735265827793
+UniRef50_Q9PB21	3 phosphoshikimate 1 carboxyvinyltransferase	1.1719286871e-05	5.41456039399e-06	-6.30472647701e-06
+UniRef50_UPI0003F0BF74	PREDICTED	4.47457613344e-05	3.42524106214e-05	-1.0493350713e-05
+UniRef50_A4WX47	Heat shock protein DnaJ domain protein	0.0124123753124	0.00333487280647	-0.00907750250593
+UniRef50_R9ZG29	Chemotaxis protein CheY	0.000873554667212	0.00162470352679	0.000751148859578
+UniRef50_A8LHQ6	Protein TolB	0.00335261676944	0.000867576778374	-0.00248503999107
+UniRef50_D4HB86	ABC transporter, ATP binding protein	0.000122693170804	0.00582952625621	0.00570683308541
+UniRef50_Q2NAE1	Bifunctional enzyme IspD IspF	4.21011749954e-06	8.94643206959e-05	8.52542031964e-05
+UniRef50_UPI000478A42E	peptide ABC transporter permease	1.08031624291e-05	3.21643854929e-05	2.13612230638e-05
+UniRef50_Q12BS8	Prolipoprotein diacylglyceryl transferase	2.29538173633e-05	2.82769538627e-05	5.3231364994e-06
+UniRef50_L0WHY8	Ppx GppA phosphatase	0.000102763880809	0.00752989454377	0.00742713066296
+UniRef50_P0A2J6	Peptide transport system permease protein SapC	0.00162156892181	0.000826934852159	-0.000794634069651
+UniRef50_A9WJ95	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.32847458146e-05	9.21340891981e-06	-4.07133689479e-06
+UniRef50_U4V848		2.67494990054e-05	4.01361224971e-05	1.33866234917e-05
+UniRef50_M9VBD0	2 dehydropantoate 2 reductase	0.000450336783549	0.00308168074534	0.00263134396179
+UniRef50_UPI000349B178	hypothetical protein	4.55180592093e-05	4.76336786757e-05	2.1156194664e-06
+UniRef50_UPI00046469DD	competence protein	1.28414290628e-05	4.33445910534e-05	3.05031619906e-05
+UniRef50_P02915	Histidine transport ATP binding protein HisP	0.00685999148608	0.0134109215993	0.00655093011322
+UniRef50_M9VL55		0.000160154949157	0.00633562160272	0.00617546665356
+UniRef50_UPI0002C58260		1.26261422577e-06	0.000149683041838	0.000148420427612
+UniRef50_A1ARJ7	3 dehydroquinate dehydratase	1.45604886031e-05	0.000106337860936	9.17773723329e-05
+UniRef50_P0A9N6	Pyruvate formate lyase 1 activating enzyme	0.00601868320962	0.000231620945253	-0.00578706226437
+UniRef50_B7K5B1	Adenylyl sulfate kinase	9.75498311682e-06	0.000353388667842	0.000343633684725
+UniRef50_A7ZSR5	Shikimate kinase 1	0.00525713490787	0.00163677609501	-0.00362035881286
+UniRef50_S0U1N3		0.000499834642214	0.000472886993363	-2.6947648851e-05
+UniRef50_P42199	L cystine binding protein TcyA	0.0114896460309	0.00629208601573	-0.00519756001517
+UniRef50_UPI0004292B6B	hypothetical protein	2.41984150549e-05	4.46471776208e-05	2.04487625659e-05
+UniRef50_G1XC43		0.00114017675518	0.000279301707413	-0.000860875047767
+UniRef50_P65942	Bifunctional protein PyrR	9.21955804342e-06	4.22062422726e-05	3.29866842292e-05
+UniRef50_UPI0002D9966A	hypothetical protein	0.000103519685204	0.000590574614253	0.000487054929049
+UniRef50_W5XD81	UDP N acetylglucosamine 2 epimerase	7.18094234088e-06	3.40355660737e-05	2.68546237328e-05
+UniRef50_R6V945	ATP dependent protease La	0.0021754033241	0.00029101479221	-0.00188438853189
+UniRef50_E2PXX4	Putative regulator	1.51124735866e-05	4.0498032003e-05	2.53855584164e-05
+UniRef50_Q57947		0.00414096473853	0.000715197592501	-0.00342576714603
+UniRef50_P0AF33	Respiratory nitrate reductase 2 gamma chain	0.0044851366167	0.00276428664807	-0.00172084996863
+UniRef50_Q57942		0.00175042492011	0.000836424207519	-0.000914000712591
+UniRef50_O27477	UPF0284 protein MTH_1426	0.00357850911503	0.000566488133949	-0.00301202098108
+UniRef50_V8FR31	Histidine kinase	0.00039372983494	0.000540373763642	0.000146643928702
+UniRef50_K2AHW0		0.000588733301473	0.000389092338127	-0.000199640963346
+UniRef50_A4TIY8	Alkaline phosphatase	0.00132590129434	0.00183950852537	0.00051360723103
+UniRef50_I3X7J2		0.00011437196751	5.26123058271e-05	-6.17596616829e-05
+UniRef50_C6SPX6		0.00930701633793	0.00224596537411	-0.00706105096382
+UniRef50_C6SPX8		8.47767079612e-05	5.04814880674e-05	-3.42952198938e-05
+UniRef50_UPI000361A3EB	hypothetical protein	1.64371302355e-05	3.99193813927e-05	2.34822511572e-05
+UniRef50_Q6A9R6	Aminomethyltransferase	0.000251627241247	0.0048984124473	0.00464678520605
+UniRef50_A4WVB3	CDP alcohol phosphatidyltransferase	0.00918299573764	0.00315883965281	-0.00602415608483
+UniRef50_UPI0003B32207	adenosylcobinamide kinase	3.05216719863e-05	4.12456694471e-05	1.07239974608e-05
+UniRef50_UPI00047017D2	hypothetical protein	1.35133781385e-05	1.05584870192e-05	-2.9548911193e-06
+UniRef50_Q6F856	UPF0042 nucleotide binding protein ACIAD3059	0.000133387275209	0.00675668462065	0.00662329734544
+UniRef50_UPI00047859F1	hypothetical protein	1.98337833257e-06	7.89900020386e-05	7.7006623706e-05
+UniRef50_A4ZNV6	Truncated internalin A	2.1781502233e-05	9.61514581704e-06	-1.2166356416e-05
+UniRef50_E9C0L1	Cobalamin synthesis protein P47K	5.04717407731e-06	9.20136414449e-06	4.15419006718e-06
+UniRef50_UPI0003C13F84	PREDICTED	1.37984256e-05	1.10826202284e-05	-2.7158053716e-06
+UniRef50_A6LXV4	Methyl accepting chemotaxis sensory transducer	0.000383207940757	0.000510109131453	0.000126901190696
+UniRef50_N6U8E6		0.000792875117908	0.00016988496944	-0.000622990148468
+UniRef50_Q0SNA5	Proline  tRNA ligase	4.2240035066e-06	2.86562140638e-05	2.44322105572e-05
+UniRef50_UPI00029A8E4B	MFS transporter	3.38944857379e-06	4.89725397974e-06	1.50780540595e-06
+UniRef50_UPI00021A5132	PREDICTED	3.65016156333e-06	6.64635600343e-06	2.9961944401e-06
+UniRef50_UPI0002B43A90	PREDICTED	7.19553211168e-05	0.000513608747989	0.000441653426872
+UniRef50_B1J909	Peptidase C39 bacteriocin processing	0.00233852197222	0.00152261998247	-0.00081590198975
+UniRef50_A6V4I6	Transcriptional regulator, LuxR family	0.000176946557275	0.00157769544621	0.00140074888894
+UniRef50_Q8ZBZ2	Na translocating NADH quinone reductase subunit C	0.000376231882575	0.00256640646819	0.00219017458562
+UniRef50_F7XFJ7		0.000316597803972	0.000136976954789	-0.000179620849183
+UniRef50_J9ZMG3	Sulfatase	0.00106336595782	0.000349487225087	-0.000713878732733
+UniRef50_UPI00025561EE	acetyl transferase	1.36337218307e-05	2.03879841079e-05	6.7542622772e-06
+UniRef50_H1XS41	UDP N acetylglucosamine 2 epimerase	0.0142640826506	0.00132368405204	-0.0129403985986
+UniRef50_UPI000440B669	GTP binding protein TypA	4.40734722834e-06	1.05360835202e-05	6.12873629186e-06
+UniRef50_O34996	DNA polymerase I	0.00982209783596	0.00381261050911	-0.00600948732685
+UniRef50_UPI0003C8E764	PREDICTED	1.53252988244e-05	1.23413255449e-05	-2.9839732795e-06
+UniRef50_A1A1J0	Prolipoprotein diacylglyceryl transferase	1.23395672917e-05	5.45854487587e-06	-6.88102241583e-06
+UniRef50_UPI000422F3ED	selenocysteine specific elongation factor	8.61093315199e-07	7.85166322825e-06	6.99056991305e-06
+UniRef50_Q6AL48	DNA polymerase IV	4.21910786817e-06	8.2810095914e-06	4.06190172323e-06
+UniRef50_D8ULE3		6.05268669368e-05	0.00107170768154	0.0010111808146
+UniRef50_F0J3V7	Spermidine putrescine ABC transporter ATP binding protein	0.000159053085188	0.0298462876047	0.0296872345195
+UniRef50_W6B709	Polyketide synthase module	7.43089220076e-06	3.58533568197e-06	-3.84555651879e-06
+UniRef50_A5UMQ8	Sirohydrochlorin cobaltochelatase	0.000976860718184	0.000830350615323	-0.000146510102861
+UniRef50_I0C110	ABC transporter ATP binding protein	0.0127319458355	0.00399872566427	-0.00873322017123
+UniRef50_W9R7E8		0.000197460722377	6.26499385029e-05	-0.000134810783874
+UniRef50_Q0AQ30	Cupin 2, conserved barrel domain protein	0.000179654636704	6.64589877522e-05	-0.000113195648952
+UniRef50_Q7R6Z1		4.03418588281e-05	4.09073072904e-05	5.654484623e-07
+UniRef50_W4UBI3	Methionine aminopeptidase	0.000505419007863	0.00323559328821	0.00273017428035
+UniRef50_UPI00036C6884	hypothetical protein	1.50251759691e-05	1.33356450077e-05	-1.6895309614e-06
+UniRef50_UPI0004773996	glutathione dependent formaldehyde activating protein	0.000106449046546	2.51234401897e-05	-8.13256063563e-05
+UniRef50_L0GI71		3.12763205378e-05	0.000123181196302	9.19048757642e-05
+UniRef50_L3S9H3	Ribonucleoside diphosphate reductase subunit beta	3.11647079041e-05	3.1755083627e-05	5.903757229e-07
+UniRef50_A5UMT8	Glycosyltransferase, GT2 family	0.00207778081188	0.00073274760759	-0.00134503320429
+UniRef50_UPI0002D9EB50	hypothetical protein	0.000165823926834	0.00017304324272	7.219315886e-06
+UniRef50_Q4QN88	Autotransported protein Lav	5.88289852779e-05	0.00332850886158	0.0032696798763
+UniRef50_UPI0003C7D864	glutamine ABC transporter permease, partial	0.000115141974253	6.24198187368e-05	-5.27221555162e-05
+UniRef50_Q3JNJ8		7.75502670264e-05	1.40137015244e-05	-6.3536565502e-05
+UniRef50_Q2YUE8	L threonine dehydratase biosynthetic IlvA	0.018827011969	0.00724451459336	-0.0115824973756
+UniRef50_F7ZM05	Transcriptional repressor protein, GntR family	0.00445347944015	0.00138381121022	-0.00306966822993
+UniRef50_A7ZR72	Putative Holliday junction resolvase	0.0006505796702	2.07034705365e-05	-0.000629876199663
+UniRef50_A0A023RUU7	Amino acid transporter LysE	0.000213268920259	0.00696996595112	0.00675669703086
+UniRef50_P0C2U0	Ornithine carbamoyltransferase, catabolic	0.0295050067199	0.00999124110298	-0.0195137656169
+UniRef50_UPI0003819001	hypothetical protein	0.000204966655252	0.000120043324752	-8.49233305e-05
+UniRef50_D8JNQ8	TonB dependent receptor family protein	5.7397768196e-05	0.00939099981864	0.00933360205044
+UniRef50_P00927	Threonine dehydratase, mitochondrial	8.80547639605e-06	1.37606657017e-05	4.95518930565e-06
+UniRef50_B1JZ61	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	1.03356108728e-05	1.25732171049e-05	2.2376062321e-06
+UniRef50_UPI0004763D11	phospholipase C	3.43978032837e-06	5.41026465223e-06	1.97048432386e-06
+UniRef50_UPI0003C19153		2.87191293888e-06	3.25073466698e-06	3.788217281e-07
+UniRef50_UPI0004775FF2	hypothetical protein	0.000103673245258	4.85830007678e-05	-5.50902444902e-05
+UniRef50_A0A011QW65	Peroxiredoxin OsmC	1.74850914136e-05	0.0022598909459	0.00224240585449
+UniRef50_A0A059IQB9	Intracellular septation protein	0.00812817760958	0.0013563348077	-0.00677184280188
+UniRef50_K8EXK1		0.00355880363919	0.00360660255706	4.779891787e-05
+UniRef50_UPI0003632065	hypothetical protein	0.000142597570754	0.00061673910237	0.000474141531616
+UniRef50_A6LZ50	Type I phosphodiesterase nucleotide pyrophosphatase	0.00058711732273	0.000830234785445	0.000243117462715
+UniRef50_L9LRB5	Phage like baseplate assembly protein	0.000237333191273	0.00663186863478	0.00639453544351
+UniRef50_B7K765	tRNA N6 adenosine threonylcarbamoyltransferase	5.34433307483e-06	4.21542372312e-06	-1.12890935171e-06
+UniRef50_J9GQJ1		0.000110425064815	0.000157625480542	4.7200415727e-05
+UniRef50_C1DCA4	NADH quinone oxidoreductase subunit B	3.29010767813e-05	3.15816401984e-05	-1.3194365829e-06
+UniRef50_A0A024HWH6		6.56748887516e-06	1.53868259162e-05	8.81933704104e-06
+UniRef50_UPI0003B3FB93	phosphoglyceromutase, partial	2.72469684363e-05	1.72497032308e-05	-9.9972652055e-06
+UniRef50_K0LDS3		0.117476636053	0.0364053648054	-0.0810712712476
+UniRef50_UPI00047CA582	hypothetical protein, partial	4.13977621038e-05	5.83649452105e-05	1.69671831067e-05
+UniRef50_G7W9E1		0.000117353157162	0.00105347548955	0.000936122332388
+UniRef50_UPI0003678819	30S ribosomal protein S4	4.49903194599e-05	0.000145600803013	0.000100610483553
+UniRef50_Q74M23	50S ribosomal protein L9	0.00248180294505	0.0105642783415	0.00808247539645
+UniRef50_R1FCU5		5.85484551006e-05	0.000356195151825	0.000297646696724
+UniRef50_UPI0002F40D47	hypothetical protein	7.89521503667e-05	8.32518483605e-06	-7.06269655307e-05
+UniRef50_UPI0003B5C775	serine hydroxymethyltransferase	5.11351828926e-06	5.75250346088e-06	6.3898517162e-07
+UniRef50_P04424	Argininosuccinate lyase	3.64537628291e-06	1.13340510461e-05	7.68867476319e-06
+UniRef50_F0MZR9	Division cluster competence associated protein Dca	0.000395175533181	0.00308298142422	0.00268780589104
+UniRef50_UPI00046E5BF5	molybdopterin converting factor	2.85198526403e-05	0.000153393233725	0.000124873381085
+UniRef50_UPI0004285813	LysR family transcriptional regulator	4.06204007828e-05	0.000334446640774	0.000293826239991
+UniRef50_E1UN96	Acetoin utilization protein AcuA	0.0109976347622	0.00143462369291	-0.00956301106929
+UniRef50_UPI00047EB5DF	GTP binding protein Der	3.92410933432e-05	8.15770978929e-05	4.23360045497e-05
+UniRef50_G7LY49	Transcriptional regulator, GntR family with LacI sensor	0.000107138880474	0.00216360782098	0.00205646894051
+UniRef50_UPI00037C0A9E	hypothetical protein	4.84249425861e-06	1.65707148363e-05	1.17282205777e-05
+UniRef50_D7A512	Phosphoesterase PA phosphatase related protein	0.00938876887294	0.00107784142672	-0.00831092744622
+UniRef50_Q18DL1	Imidazoleglycerol phosphate dehydratase	0.00249770903956	0.000339750673168	-0.00215795836639
+UniRef50_D4HC08	Acetyltransferase, GNAT family	0.000454802396205	0.00358749940603	0.00313269700983
+UniRef50_C7ZRN4	Ferrichrome ABC transporter lipoprotein	0.0174759500666	0.00526883332903	-0.0122071167376
+UniRef50_B1GZJ8	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.64299537135e-05	1.38398800962e-05	-2.5900736173e-06
+UniRef50_R7PT43		0.0026658983673	0.00100878681768	-0.00165711154962
+UniRef50_UPI00037A8649	hypothetical protein	3.8983062535e-05	6.46594232678e-06	-3.25171202082e-05
+UniRef50_UPI00035EAC91	hypothetical protein	7.41049517192e-06	1.46466068515e-05	7.23611167958e-06
+UniRef50_P58115	Pirin like protein YhaK	0.00320708062047	0.000643648938937	-0.00256343168153
+UniRef50_UPI000255F0AC	hypothetical protein	0.000248537621893	0.000420917449006	0.000172379827113
+UniRef50_A0L4V9	Holliday junction ATP dependent DNA helicase RuvA	1.19688803803e-05	9.31464856579e-06	-2.65423181451e-06
+UniRef50_UPI0002195D67	branched chain amino acid transporter II carrier protein	1.18329702381e-05	8.20476773667e-06	-3.62820250143e-06
+UniRef50_UPI000466B529	hypothetical protein	4.08420978095e-06	1.64574307339e-05	1.23732209529e-05
+UniRef50_W4UAD6		0.000128525962353	0.000415548640033	0.00028702267768
+UniRef50_T1UCZ0		5.56276600439e-05	0.00192575512206	0.00187012746202
+UniRef50_R5EMC4	High affinity branched chain amino acid ABC transporter permease protein	0.000304424184557	0.0020662400917	0.00176181590714
+UniRef50_T2J2D2		1.44973390097e-05	0.00132613907844	0.00131164173943
+UniRef50_P39399	Probable HTH type transcriptional regulator YjjM	0.00260266046293	0.00101931496087	-0.00158334550206
+UniRef50_M1MSH2		0.00016508133623	0.00055267694285	0.00038759560662
+UniRef50_UPI0002F5C7CD	alpha beta hydrolase	1.51696291932e-05	0.000102605566348	8.74359371548e-05
+UniRef50_Q93PU4	Toluene efflux pump membrane transporter TtgH	0.00250666853077	0.00059345301947	-0.0019132155113
+UniRef50_D9SQU7	Integral membrane sensor signal transduction histidine kinase	0.000144033330159	0.000841740202064	0.000697706871905
+UniRef50_E6MUI2		9.80794368573e-05	0.000656747023401	0.000558667586544
+UniRef50_UPI00047B6725	hypothetical protein	1.06633597457e-05	8.77705209188e-05	7.71071611731e-05
+UniRef50_D2N524		0.017992293918	0.00455666665755	-0.0134356272604
+UniRef50_A6LT70	Phage portal protein, SPP1	8.55977298968e-05	0.00188320343794	0.00179760570804
+UniRef50_Q9HZX3	Protein glutamine gamma glutamyltransferase	0.000129612184348	0.000211277513186	8.1665328838e-05
+UniRef50_UPI0003B4BDBC	ammonia channel protein, partial	5.56072361872e-06	1.97273490028e-05	1.41666253841e-05
+UniRef50_UPI0003825C93	hypothetical protein	4.21165474215e-05	2.60926426477e-05	-1.60239047738e-05
+UniRef50_A6E305		0.00117001108687	0.000440141575438	-0.000729869511432
+UniRef50_B7VHW1		4.40053634301e-05	4.42692030221e-05	2.63839592e-07
+UniRef50_Q8RFZ3	UPF0324 membrane protein FN0533	0.00510608146403	0.0064889686054	0.00138288714137
+UniRef50_UPI00046D88F2	chemotaxis protein CheY	0.000212329841369	0.000124014358267	-8.8315483102e-05
+UniRef50_J9NWV1		0.000146619056202	1.38566019263e-05	-0.000132762454276
+UniRef50_UPI0004656FEC	exodeoxyribonuclease III, partial	0.000115242140884	3.31921655198e-05	-8.20499753642e-05
+UniRef50_J9NWV5		0.000186367862954	0.000131385092849	-5.4982770105e-05
+UniRef50_G7LHS1	50S ribosomal protein L11 	0.000127966030119	0.00107634812363	0.000948382093511
+UniRef50_Q1GI13	Sarcosine oxidase delta subunit heterotetrameric	0.0013059350353	0.000584785554841	-0.000721149480459
+UniRef50_P0AEZ1	5,10 methylenetetrahydrofolate reductase	0.003265715104	0.00496821647135	0.00170250136735
+UniRef50_UPI000371CC88	hypothetical protein	5.92390921903e-06	1.44421765379e-05	8.51826731887e-06
+UniRef50_UPI00046F08F9	hypothetical protein	6.22515870003e-06	1.65123695283e-05	1.02872108283e-05
+UniRef50_O24339	Catalase	1.28731583493e-05	3.99030818598e-05	2.70299235105e-05
+UniRef50_U1WYS6		3.14411773589e-05	3.27789641976e-05	1.3377868387e-06
+UniRef50_Q0PAB6	Methionine import ATP binding protein MetN	5.05238817765e-05	7.07785350661e-06	-4.34460282699e-05
+UniRef50_P76340	Probable transcriptional regulatory protein YedW	0.00314392418503	0.000652742079738	-0.00249118210529
+UniRef50_Q7CYZ1		0.00588388808465	0.000691259520325	-0.00519262856433
+UniRef50_UPI0003653AAE	hypothetical protein	2.09634422185e-05	3.7200749198e-05	1.62373069795e-05
+UniRef50_UPI00036708EA	hypothetical protein	1.08760833453e-05	4.13817692101e-05	3.05056858648e-05
+UniRef50_Q5HP06	ComG operon protein 2, putative	0.00761373105567	0.00427481076298	-0.00333892029269
+UniRef50_U3SS47		0.00613601895476	0.00276704045436	-0.0033689785004
+UniRef50_X5X320		0.000803209253459	3.62952899294e-05	-0.00076691396353
+UniRef50_X1XW63		8.61472439476e-07	3.72888720691e-05	3.64273996296e-05
+UniRef50_P31904	Hydrogenase expression formation protein hypD2	0.00238867649176	0.000673703378874	-0.00171497311289
+UniRef50_UPI00038BE2EA	PREDICTED	9.97878154277e-05	6.96934046356e-05	-3.00944107921e-05
+UniRef50_UPI00037774DA	hypothetical protein, partial	1.13094008105e-05	6.90680109783e-06	-4.40259971267e-06
+UniRef50_C6X1R3		9.0582828132e-06	1.2863918831e-05	3.8056360178e-06
+UniRef50_UPI0003B3A17D	diguanylate cyclase	3.51950136031e-06	6.03642121887e-06	2.51691985856e-06
+UniRef50_F3NZ35	DeaD DeaH box helicase	0.000107893232944	0.00522110099308	0.00511320776014
+UniRef50_A5UMR2		0.0033681173745	0.000438012851869	-0.00293010452263
+UniRef50_A4WV08	Diguanylate cyclase	0.000927445709589	0.000262893209369	-0.00066455250022
+UniRef50_A0A011T5F4	Endoribonuclease L PSP	0.000260275134305	0.000101977974932	-0.000158297159373
+UniRef50_B0S9J5	Phosphopantetheine adenylyltransferase	1.18176026702e-05	3.51256386528e-05	2.33080359826e-05
+UniRef50_B9JJI7	Taurine uptake ABC transporter	0.0112127263255	0.00172877541624	-0.00948395090926
+UniRef50_P50933	L lactate dehydrogenase	0.000127529050285	0.0132898486497	0.0131623195994
+UniRef50_V9WHB8	Glycosidase	0.00807762967539	0.00207450535687	-0.00600312431852
+UniRef50_V4XDY8		0.000373886772526	0.0021251265856	0.00175123981307
+UniRef50_R5PCX4	Exo poly alpha D galacturonosidase	4.50593096713e-06	9.67740039764e-06	5.17146943051e-06
+UniRef50_UPI0003B768A4	recombinase	4.5199645901e-06	5.74372865655e-06	1.22376406645e-06
+UniRef50_UPI00036E0818	hypothetical protein	0.000205790536235	5.03367443727e-05	-0.000155453791862
+UniRef50_W5PP12		0.000138810376398	0.000115327315612	-2.3483060786e-05
+UniRef50_M5D5M6	Sel1 repeat protein	8.2360579389e-05	0.00409570297522	0.00401334239583
+UniRef50_UPI000440198D	PREDICTED	7.00474893723e-05	4.8471628333e-05	-2.15758610393e-05
+UniRef50_UPI000161C024	Centromere kinetochore Zw10 family protein	2.3199443646e-06	1.12713598516e-05	8.951415487e-06
+UniRef50_S5Y0K2		0.00169391620219	8.05878861274e-05	-0.00161332831606
+UniRef50_UPI0003760BC3	MULTISPECIES	4.89424047585e-06	2.31013675797e-05	1.82071271038e-05
+UniRef50_Q9I190	Macrolide export ATP binding permease protein MacB	0.000455447095804	0.000135034294035	-0.000320412801769
+UniRef50_R6EZ78		3.81873320664e-05	0.00100869720292	0.000970509870854
+UniRef50_UPI00047838E9	hypothetical protein	6.98116780916e-06	0.00119247077706	0.00118548960925
+UniRef50_Y0F5P3		4.56871183667e-05	9.36827734116e-05	4.79956550449e-05
+UniRef50_UPI000289CB1A	major facilitator superfamily protein, partial	1.07816483097e-05	1.48881112715e-05	4.1064629618e-06
+UniRef50_A3PSA8	Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00736660458483	0.000985693114313	-0.00638091147052
+UniRef50_UPI0003C1628B	PREDICTED	7.98279663603e-05	5.66855738396e-06	-7.41594089763e-05
+UniRef50_UPI0002B4638C	PREDICTED	2.9622551027e-05	1.85519084676e-05	-1.10706425594e-05
+UniRef50_I1QQ05		1.64209631864e-05	0.000244059077488	0.000227638114302
+UniRef50_UPI0002D42EAE	hypothetical protein	1.27617033424e-05	0.000127253073745	0.000114491370403
+UniRef50_P33218	Inner membrane protein YebE	0.00718146866408	0.000284871419803	-0.00689659724428
+UniRef50_Q2FEZ8	Type II pantothenate kinase	0.00837728495441	0.00498212897562	-0.00339515597879
+UniRef50_W0A724		9.65574988622e-05	3.11998371079e-05	-6.53576617543e-05
+UniRef50_Q2NAY0	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.00247660068201	0.000937907685442	-0.00153869299657
+UniRef50_Q08T18		3.95785337346e-05	0.000147654682969	0.000108076149234
+UniRef50_UPI000379B915	hypothetical protein	1.28128443628e-05	1.34702476568e-05	6.57403294e-07
+UniRef50_Q83P86	Multidrug resistance protein MdtN	0.00349633074957	0.000224575441206	-0.00327175530836
+UniRef50_J0S1W5		0.0100519370973	0.00825894786802	-0.00179298922928
+UniRef50_X0Y200	Marine sediment metagenome DNA, contig	0.000257872450093	0.000519784693273	0.00026191224318
+UniRef50_F9NYE7		8.95461295654e-06	6.40177234507e-05	5.50631104942e-05
+UniRef50_Q929Y1	UDP N acetylmuramoylalanine  D glutamate ligase	0.00769029302553	0.00752038726644	-0.00016990575909
+UniRef50_UPI00035EF123	RNA helicase, partial	0.00508005154185	0.00129224588278	-0.00378780565907
+UniRef50_D8JM33	Transcriptional regulator	0.000161318798655	0.00576074415175	0.00559942535309
+UniRef50_UPI0004642A6F	hypothetical protein	4.44720228586e-06	2.53742864399e-05	2.0927084154e-05
+UniRef50_Q2RPX0	Bifunctional protein GlmU	4.02604257234e-06	8.94799120005e-06	4.92194862771e-06
+UniRef50_P0ACS3	Redox sensitive transcriptional activator SoxR	0.0109616726199	0.00486518883354	-0.00609648378636
+UniRef50_O27492	Probable acetolactate synthase small subunit	4.16845121931e-05	0.000476732928314	0.000435048416121
+UniRef50_Q5HKP7	Probable poly beta 1,6 N acetyl D glucosamine export protein	0.0140034374031	0.00187437927169	-0.0121290581314
+UniRef50_E4PHF9	Acyl CoA dehydrogenase domain protein	0.00210715970442	0.00899283327745	0.00688567357303
+UniRef50_Q4FRE8		0.000148811822151	0.00378412614624	0.00363531432409
+UniRef50_Q7F1Y2	B1065G12.2 protein	6.18880855235e-05	0.000101020537696	3.91324521725e-05
+UniRef50_Q9KG60	Urease subunit beta	4.75823324231e-05	2.45806091628e-05	-2.30017232603e-05
+UniRef50_Q8ERU3	UPF0736 protein OB1207	3.32028304098e-05	0.00023815863322	0.00020495580281
+UniRef50_C5N1I8		0.00834218501901	0.000447449553334	-0.00789473546568
+UniRef50_UPI000381384D	hypothetical protein	3.51619133743e-05	2.06081518015e-05	-1.45537615728e-05
+UniRef50_UPI0003618EAB	hypothetical protein, partial	5.43648348073e-05	9.71650887234e-05	4.28002539161e-05
+UniRef50_Q9RXH3	Folyl polyglutamate synthetase	9.20697533807e-05	0.00168304273219	0.00159097297881
+UniRef50_Q1B677	Methionine import ATP binding protein MetN	5.01470944613e-05	8.14555327617e-06	-4.20015411851e-05
+UniRef50_P45756	Putative general secretion pathway protein A	0.00306506657814	0.000490316835839	-0.0025747497423
+UniRef50_M0X8Z7		7.53570987378e-05	0.00173711773053	0.00166176063179
+UniRef50_S5XST5	Apolipoprotein N acyltransferase	0.00131256940276	0.000413993030489	-0.000898576372271
+UniRef50_P77775	Epimerase family protein YfcH	0.00462617505083	0.00238109626062	-0.00224507879021
+UniRef50_B3E5B6	Carbon starvation protein CstA	0.00016823606177	0.000792005695395	0.000623769633625
+UniRef50_U9LZ47		0.000778813866117	0.000297551213411	-0.000481262652706
+UniRef50_D9RBR2		7.08175081756e-05	5.29053836182e-05	-1.79121245574e-05
+UniRef50_Q0AAE8	Choline carnitine betaine transporter	0.00746092788761	0.00307461818209	-0.00438630970552
+UniRef50_P43924	Pyruvate kinase	0.00084739262491	0.00185659826242	0.00100920563751
+UniRef50_Q98NZ9	Mll9669 protein	0.00813232557983	0.00104703439739	-0.00708529118244
+UniRef50_P31459	2 dehydro 3 deoxygalactonokinase	0.00964904222789	0.000905922907199	-0.00874311932069
+UniRef50_A3M531		0.000319488031859	0.00842750609	0.00810801805814
+UniRef50_A3M532		0.000322542287064	0.0164587911412	0.0161362488541
+UniRef50_UPI0003B75002	NAD synthetase, partial	6.8785157491e-06	6.02225722074e-05	5.33440564583e-05
+UniRef50_UPI000369E819	hypothetical protein	0.00235928743033	0.000770391404865	-0.00158889602547
+UniRef50_UPI0003B3957E	50S ribosomal protein L21	0.000354746208623	0.00018040743114	-0.000174338777483
+UniRef50_B5XIZ5		0.000231586496233	0.00780749523569	0.00757590873946
+UniRef50_Q747W9	Cyclic pyranopterin monophosphate synthase	9.90184247422e-06	0.000158802993864	0.00014890115139
+UniRef50_Q82ZQ1	Allantoinase	5.7814671419e-05	0.000925703107414	0.000867888435995
+UniRef50_A6LYV3	Putative cell wall binding repeat containing protein	0.000253888640807	0.00304546633062	0.00279157768981
+UniRef50_D8R6N5		7.02068109087e-07	3.42717333352e-06	2.72510522443e-06
+UniRef50_Q8DU77		0.00334807762799	0.00194832319792	-0.00139975443007
+UniRef50_B5QY15	Glucans biosynthesis protein G	0.0036080294815	0.000374663143364	-0.00323336633814
+UniRef50_B2SD76	Leu Ile Val binding protein family	0.0145561061685	0.00413918022378	-0.0104169259447
+UniRef50_E8QKJ5		0.000179755232787	0.000654329403602	0.000474574170815
+UniRef50_B4TUR5	tRNA modifying protein YgfZ	0.00469172810982	0.000926099184118	-0.0037656289257
+UniRef50_Q8FAD6	Ornithine carbamoyltransferase	0.0293808554165	0.0156584006965	-0.01372245472
+UniRef50_C7ZTG4	Polysaccharide biosynthesis protein	0.00837963379925	0.00328607708217	-0.00509355671708
+UniRef50_X0Z8U3	Marine sediment metagenome DNA, contig	5.12435074799e-06	1.84918151269e-05	1.33674643789e-05
+UniRef50_E8TLE8		0.0016795067491	0.000259595204728	-0.00141991154437
+UniRef50_I4YKM8		4.87422842948e-05	2.7754541718e-05	-2.09877425768e-05
+UniRef50_A5V3U6	Trigger factor	9.24320539651e-06	3.74457668001e-05	2.82025614036e-05
+UniRef50_C7J1D9	Os04g0448000 protein 	6.13138236987e-06	1.31758419328e-05	7.04445956293e-06
+UniRef50_L7WY02	Aldo keto reductase	0.00937115843088	0.00485654776626	-0.00451461066462
+UniRef50_B1GZ10	Peptide deformylase	9.38659618238e-06	4.33917978598e-05	3.40052016774e-05
+UniRef50_C1N707	Predicted protein	1.7997358605e-05	0.000299289718371	0.000281292359766
+UniRef50_O98946	Ribulose bisphosphate carboxylase small chain	0.000510700580774	6.52632221923e-05	-0.000445437358582
+UniRef50_Q83RQ0	Endo type membrane bound lytic murein transglycosylase A like protein	0.00247605709102	0.00250503445938	2.897736836e-05
+UniRef50_Q7VF52	Phosphoribosylformylglycinamidine synthase 2	2.39814681004e-05	6.2925027963e-06	-1.76889653041e-05
+UniRef50_A6LZG6		0.000133230349002	0.000941179045577	0.000807948696575
+UniRef50_Q21CR1		4.10145374898e-05	2.23737053871e-05	-1.86408321027e-05
+UniRef50_UPI000477F471	hypothetical protein	2.90615170702e-06	1.03856858866e-05	7.47953417958e-06
+UniRef50_UPI0003B5D675	peptide chain release factor 1	3.24051018211e-06	3.57622475881e-05	3.2521737406e-05
+UniRef50_UPI0002558465	threonine dehydratase	1.01564200217e-05	3.8635999938e-05	2.84795799163e-05
+UniRef50_I6L918		0.0054388088772	0.00368939077079	-0.00174941810641
+UniRef50_B9JG36		2.87870076623e-05	1.41714137393e-05	-1.4615593923e-05
+UniRef50_UPI000248E5FB	phenazine biosynthesis protein PhzF	1.08909207077e-05	2.10203693822e-05	1.01294486745e-05
+UniRef50_B8A1Z2		0.000700083609837	0.00134847935489	0.000648395745053
+UniRef50_B6VA55	Nitrite oxidoreductase 	6.46893964235e-05	5.16987403629e-05	-1.29906560606e-05
+UniRef50_P54932	Protein RdxB	0.0215385073674	0.00460038668437	-0.016938120683
+UniRef50_A0A023SBI8		5.10693985452e-05	2.41645725522e-05	-2.6904825993e-05
+UniRef50_UPI000328C02F	PREDICTED	7.84896938634e-06	1.2727671947e-05	4.87870256066e-06
+UniRef50_W9GJ48	Sugar ABC transporter substrate binding protein	0.00012785591139	2.74210266296e-05	-0.00010043488476
+UniRef50_Q5HRJ0	Deoxynucleoside kinase family protein	0.019953037022	0.00263820951177	-0.0173148275102
+UniRef50_UPI0003B78493	5 hydroxyisourate hydrolase	2.51682042903e-05	3.39041629979e-05	8.7359587076e-06
+UniRef50_F7ZII7		0.00106249025572	9.62020478533e-05	-0.000966288207867
+UniRef50_A0A034TUN2	Excinuclease ABC subunit B	4.37431623795e-05	0.00167173109308	0.0016279879307
+UniRef50_V4R3G1	Mucoidy inhibitor A	7.39916989239e-05	0.00018248200115	0.000108490302226
+UniRef50_UPI0003712D73	MULTISPECIES	3.38903913587e-05	1.1634377876e-05	-2.22560134827e-05
+UniRef50_P75857	Probable outer membrane usher protein ElfC	0.00192456015529	0.000592241177033	-0.00133231897826
+UniRef50_UPI0003B39972	LuxR family transcriptional regulator	6.96695990318e-05	1.80647820858e-05	-5.1604816946e-05
+UniRef50_Q2S5J0	NADH quinone oxidoreductase subunit D	7.65477497331e-06	1.40351332424e-05	6.38035826909e-06
+UniRef50_P76173	Anaerobic dimethyl sulfoxide reductase chain YnfH	0.000816390205017	0.000214775785594	-0.000601614419423
+UniRef50_Q97FQ5	DNA ligase 2	0.000433010862591	0.000704647954935	0.000271637092344
+UniRef50_T2QCI3		2.27418815467e-05	7.11468063849e-05	4.84049248382e-05
+UniRef50_A4VMJ3	Transcriptional regulator FleQ	0.000702497623611	0.000648446879999	-5.4050743612e-05
+UniRef50_Q7DDH4	Putative lipoprotein NMB1126 NMB1164	0.00313094532513	0.00274762591159	-0.00038331941354
+UniRef50_Q5FQD6	Bifunctional enzyme IspD IspF	5.76549021767e-06	1.88766602511e-05	1.31111700334e-05
+UniRef50_L7WZU8		0.00881179534533	0.00266189880022	-0.00614989654511
+UniRef50_K2AF52		0.000704701485112	0.00059112148686	-0.000113579998252
+UniRef50_F0KP57	Phospholipase D	0.000108681186813	0.00470513163512	0.00459645044831
+UniRef50_B1ERT8		0.000120346239139	0.00137356607068	0.00125321983154
+UniRef50_Q4A047	Imidazole glycerol phosphate synthase subunit HisH	0.0413805192798	0.00649619394876	-0.034884325331
+UniRef50_P0CZ69	Arginine regulator	0.00496270249132	0.00388427336852	-0.0010784291228
+UniRef50_P80480	Succinate dehydrogenase [ubiquinone] iron sulfur subunit	2.93073393585e-05	4.66582837276e-05	1.73509443691e-05
+UniRef50_D9SZV9	PKD domain containing protein	2.80676642579e-06	2.7807121103e-05	2.50003546772e-05
+UniRef50_A5FW26	MaoC domain protein dehydratase	1.63492746221e-05	2.41295965706e-05	7.7803219485e-06
+UniRef50_Q42565	Anthranilate synthase beta subunit 1, chloroplastic	6.86365626983e-06	9.51794943474e-06	2.65429316491e-06
+UniRef50_A5UMG8	Cell wall biosynthesis protein, MurD like peptide ligase family	0.00415382107225	0.0011493684761	-0.00300445259615
+UniRef50_F5LZS4	Hemolysin type calcium binding region RTX toxin	0.00253565646349	0.000717798532973	-0.00181785793052
+UniRef50_A7FX06	Aminotransferase, class IV	0.000154496311943	0.00121200914548	0.00105751283354
+UniRef50_R8A4W3		3.538727371e-05	3.42998225786e-05	-1.0874511314e-06
+UniRef50_UPI0003785F11	hypothetical protein	1.09495978848e-05	1.9242845689e-05	8.2932478042e-06
+UniRef50_UPI00047E325C	AsnC family transcriptional regulator	0.000175254310477	5.93208242369e-05	-0.00011593348624
+UniRef50_UPI0003C1951F	PREDICTED	3.10570402783e-06	1.60796633943e-05	1.29739593665e-05
+UniRef50_C3F9W4	UTP  glucose 1 phosphate uridylyltransferase	0.0268080905321	0.00522621891568	-0.0215818716164
+UniRef50_A0A023S292	Lysozyme	0.000159276788545	0.0046453489691	0.00448607218056
+UniRef50_UPI00047B031E	hypothetical protein	2.93037015638e-05	7.30223488702e-05	4.37186473064e-05
+UniRef50_Q9PE70	30S ribosomal protein S3	0.00396026569084	0.0054993372217	0.00153907153086
+UniRef50_Q3SSY2	50S ribosomal protein L10	0.0220554035469	0.00906485510652	-0.0129905484404
+UniRef50_A6LYQ4	Integral membrane sensor signal transduction histidine kinase	0.00055024423871	0.00184962317073	0.00129937893202
+UniRef50_Q9UYX0	Probable L threonine 3 dehydrogenase	1.755425112e-05	4.73576510301e-05	2.98033999101e-05
+UniRef50_P04993	RecBCD enzyme subunit RecD	0.0036139973315	0.000946272575355	-0.00266772475615
+UniRef50_A9MFX7	Anaerobic nitric oxide reductase transcription regulator NorR	9.04691662704e-05	3.90320603757e-05	-5.14371058947e-05
+UniRef50_B9E7Y2		0.00472022732158	0.000818843617088	-0.00390138370449
+UniRef50_E8QJ87		0.000177693370281	0.00408584807692	0.00390815470664
+UniRef50_UPI000475BC46	hypothetical protein	4.41665249955e-06	1.98309544545e-05	1.5414301955e-05
+UniRef50_F2AHK1		0.000356204434747	5.35614800893e-05	-0.000302642954658
+UniRef50_UPI0004757A91	hypothetical protein, partial	6.29486685346e-05	0.000105471167815	4.25224992804e-05
+UniRef50_Q8X613	Transcriptional regulatory protein ZraR	0.00280972716817	0.00142828352556	-0.00138144364261
+UniRef50_UPI0003B659FC	ribose ABC transporter permease	9.68496902309e-05	1.23103396877e-05	-8.45393505432e-05
+UniRef50_E1VQY8	Transcriptional regulator, ArsR family	0.000201147063333	0.000184380877328	-1.6766186005e-05
+UniRef50_E0TTE0	Alpha,alpha phosphotrehalase	0.000217572516048	0.00404261283732	0.00382504032127
+UniRef50_UPI00046F1189	acriflavine resistance protein B	3.70692306318e-06	7.74186057319e-06	4.03493751001e-06
+UniRef50_UPI00018172F7	putative 3 oxoadipate coa transferase subunit b  protein	4.29546475366e-05	7.18146875696e-05	2.8860040033e-05
+UniRef50_V5SS13		0.00166234588963	0.00105014791021	-0.00061219797942
+UniRef50_A0A023RZV0		0.000316093099584	0.005587631498	0.00527153839842
+UniRef50_T5ME54	Cysteine and O acetyl L serine efflux system protein	0.00017055089858	0.000322750497486	0.000152199598906
+UniRef50_M1XIF6		7.6549315979e-05	0.000167211608127	9.0662292148e-05
+UniRef50_Q2T6R3	1,4 alpha glucan branching enzyme GlgB	2.21986409392e-06	2.38353364791e-06	1.6366955399e-07
+UniRef50_L0A7U4	ATPase involved in chromosome partitioning	1.64498616111e-05	0.00176178405531	0.0017453341937
+UniRef50_I0BSQ6	Diguanylate cyclase	3.20243605063e-06	4.38854943236e-06	1.18611338173e-06
+UniRef50_B9KLX0	Class I monoheme cytochrome c	0.00234342667449	0.000541865514113	-0.00180156116038
+UniRef50_Q9X7Q6	Isopentenyl diphosphate Delta isomerase	6.73496260952e-05	1.48061081009e-05	-5.25435179943e-05
+UniRef50_UPI0001744EBE	organic solvent ABC transporter ATP binding protein	0.000281047071947	5.64196916871e-05	-0.00022462738026
+UniRef50_U3SSQ2	Two component sensor histidine kinase	0.00692994102605	0.00200782120446	-0.00492211982159
+UniRef50_P71229	Hydrogenase 4 transcriptional activator	0.003178199986	0.000271301274573	-0.00290689871143
+UniRef50_UPI000368F50B	hypothetical protein	1.10865871462e-05	1.63199368221e-05	5.2333496759e-06
+UniRef50_J8V9R1	Monovalent cation H+ antiporter subunit C	0.00147101440344	9.34814084677e-05	-0.00137753299497
+UniRef50_H9USG2		0.000505624573592	0.000389428622235	-0.000116195951357
+UniRef50_Q09BZ8		2.00828485434e-05	0.000230280437258	0.000210197588715
+UniRef50_G7MBG2	Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase	0.000517529831499	0.000719557700774	0.000202027869275
+UniRef50_O26010	Phosphopantetheine adenylyltransferase	0.000335797090271	0.00135841420174	0.00102261711147
+UniRef50_K9NP10	L glutamine synthetase	0.000780105026029	0.000132034294431	-0.000648070731598
+UniRef50_R5CIR9		0.00405337209432	0.000999760285355	-0.00305361180897
+UniRef50_Q4BUD1		1.67334413844e-05	5.82590430039e-05	4.15256016195e-05
+UniRef50_F0MM85	Hemagglutinin hemolysin family protein	3.43846694326e-05	0.00322654577832	0.00319216110889
+UniRef50_UPI0004127258	patatin	5.19166647299e-06	1.87730061253e-05	1.35813396523e-05
+UniRef50_A0A056S3J4	Integral membrane protein	5.77598128449e-05	4.44386686764e-05	-1.33211441685e-05
+UniRef50_Q6A8D2		0.000100117637944	0.00249533088139	0.00239521324345
+UniRef50_B9KV10		0.017709685862	0.00491575854061	-0.0127939273214
+UniRef50_A6LRB3	Uroporphyrinogen decarboxylase 	0.000963312257075	0.00151073541187	0.000547423154795
+UniRef50_Q6FEM0	Outer membrane protein assembly factor BamB	0.000883306680243	0.00642988052296	0.00554657384272
+UniRef50_W4KYJ2	Transposase IS861	0.000328412050456	4.09367210291e-05	-0.000287475329427
+UniRef50_UPI0002558C10	AsmA family protein	2.81577533277e-06	4.37578616922e-06	1.56001083645e-06
+UniRef50_UPI000288B7A4	ATP binding protein	4.32932306348e-05	2.92501517255e-05	-1.40430789093e-05
+UniRef50_Q8NXM4	DegV domain containing protein MW0711	0.0205929689154	0.00674372845395	-0.0138492404614
+UniRef50_F2GB41	EVE domain containing protein	5.29068628397e-05	0.000178979865362	0.000126073002522
+UniRef50_B9DRS8	Glycogen synthase	0.000532436456921	0.00389091343246	0.00335847697554
+UniRef50_B9KRQ9	Response regulator receiver protein	0.0217574078598	0.00174357519639	-0.0200138326634
+UniRef50_K3Z8U3		4.76745608984e-05	7.2735352914e-05	2.50607920156e-05
+UniRef50_B0VCR0		0.000323811248118	0.00683531573359	0.00651150448547
+UniRef50_UPI00037D7B24	hypothetical protein	1.9090268999e-05	1.02833438706e-05	-8.8069251284e-06
+UniRef50_U6JY85		3.29528794402e-06	5.79917821711e-05	5.46964942271e-05
+UniRef50_B9KU70	Periplasmic solute binding protein	0.000737660930939	0.000431977079183	-0.000305683851756
+UniRef50_D7AAV7		1.23953317528e-05	7.56672215716e-05	6.32718898188e-05
+UniRef50_Q3J682	2 dehydropantoate 2 reductase	0.00160426901248	0.00100349392811	-0.00060077508437
+UniRef50_U5MW40	SpoIIIAH like protein	0.00100051496729	0.000344727671428	-0.000655787295862
+UniRef50_UPI0002D3A5FE	hypothetical protein	1.0900914955e-05	2.76984442957e-05	1.67975293407e-05
+UniRef50_A5UKH3	Homoserine O acetyltransferase	0.00164405679011	0.000888144225338	-0.000755912564772
+UniRef50_G9A115		3.86500948995e-05	1.79882755269e-05	-2.06618193726e-05
+UniRef50_UPI0003C1A4EF	PREDICTED	1.7173856009e-05	3.74289079136e-05	2.02550519046e-05
+UniRef50_A4IT51	Anthranilate 3 monooxygenase oxygenase component	7.81544490361e-05	5.59852545483e-06	-7.25559235813e-05
+UniRef50_UPI000343F89B	PREDICTED	5.10851661878e-06	3.99563521443e-05	3.48478355255e-05
+UniRef50_UPI00037F4E3B	hypothetical protein, partial	4.01591105753e-05	0.000227460387961	0.000187301277386
+UniRef50_P22996	Resolvase	0.00061407918475	0.0130000128978	0.012385933713
+UniRef50_P57286	Superoxide dismutase [Mn]	1.0941028632e-05	4.93483594644e-05	3.84073308324e-05
+UniRef50_D3UZU9		9.63058280965e-05	0.000102416584098	6.1107560015e-06
+UniRef50_C5LZC5		9.85623182366e-06	1.46790110439e-05	4.82277922024e-06
+UniRef50_M1MI36		0.000404652752376	0.000280808277526	-0.00012384447485
+UniRef50_P15931	Peptidoglycan hydrolase FlgJ	0.000378460096157	0.000782246461611	0.000403786365454
+UniRef50_UPI00029A0F96	PfkB domain containing protein	3.22806675209e-05	2.74435806161e-05	-4.8370869048e-06
+UniRef50_E5QV40		0.00673936198574	0.00343759260094	-0.0033017693848
+UniRef50_A4WQH8	Plasmid pRiA4b ORF 3 family protein	0.00445558787576	0.00204495150905	-0.00241063636671
+UniRef50_UPI00036A1A43	hypothetical protein	4.32102011609e-06	2.86406489301e-05	2.4319628814e-05
+UniRef50_Q795R8		0.0155327439546	0.00498980199346	-0.0105429419611
+UniRef50_UPI0002D2C86E	hypothetical protein	0.000203419303959	6.4634999714e-05	-0.000138784304245
+UniRef50_UPI000346B9B9	hypothetical protein	6.53120525372e-05	0.0101908430781	0.0101255310256
+UniRef50_P77739		0.00188448308011	0.00155104680679	-0.00033343627332
+UniRef50_X8FNE2	HD domain protein	7.20469324592e-06	4.49658595652e-05	3.77611663193e-05
+UniRef50_UPI00024935CA	phosphoenolpyruvate dependent sugar phosphotransferase system EIIABC, glucose specific	2.48118930723e-05	0.000262704621208	0.000237892728136
+UniRef50_P77732		0.00421043158161	0.00127290286732	-0.00293752871429
+UniRef50_P77730		0.00358234604254	0.0017976311909	-0.00178471485164
+UniRef50_O26944	Metalloprotease MTH_856	0.00504742613661	0.002557156869	-0.00249026926761
+UniRef50_F0XYT4		0.000172188496817	0.000831996789275	0.000659808292458
+UniRef50_Q46871	NADPH dependent ferric chelate reductase	0.00142465992177	0.000331816522686	-0.00109284339908
+UniRef50_P37686	Probable alcohol dehydrogenase	0.000424285620785	0.000759885353708	0.000335599732923
+UniRef50_F4PD55	Expressed protein	5.70557914837e-05	3.9377370667e-05	-1.76784208167e-05
+UniRef50_A9M1Y3		0.000367681157978	0.00968872378748	0.0093210426295
+UniRef50_D0J3S0	TRAP dicarboxylate transporter, DctM subunit	4.99694444778e-06	8.59844440151e-06	3.60149995373e-06
+UniRef50_UPI00037FD144	hypothetical protein	4.90348117431e-06	7.08551366165e-06	2.18203248734e-06
+UniRef50_M9VHU4	DNA gyrase topoisomerase IV, A subunit	0.000240810985871	0.00560413711113	0.00536332612526
+UniRef50_A3TUW7		1.74106393237e-05	5.50073954361e-06	-1.19098997801e-05
+UniRef50_Q28UZ5	Hypoxia induced protein conserved protein	2.59828273401e-05	4.74217819644e-05	2.14389546243e-05
+UniRef50_A3M3B5	Arylsulfatase	0.000138543760154	0.005251665161	0.00511312140085
+UniRef50_M4XE09		0.000782669319412	0.000911542503506	0.000128873184094
+UniRef50_UPI00037E95DD	MULTISPECIES	0.000129059943961	3.69465814678e-05	-9.21133624932e-05
+UniRef50_O27566		0.00137966418622	0.000714501112457	-0.000665163073763
+UniRef50_A4WFL4	Glycogen debranching enzyme	3.03229246733e-05	7.26431331438e-05	4.23202084705e-05
+UniRef50_UPI0003BBA1AF	PREDICTED	3.56568970714e-05	1.25392858888e-05	-2.31176111826e-05
+UniRef50_Q891J7	ATP dependent Clp protease proteolytic subunit	1.03375895373e-05	0.000111712450451	0.000101374860914
+UniRef50_D4JWQ1	Seryl tRNA synthetase	8.89597774156e-05	0.00085699369107	0.000768033913654
+UniRef50_UPI000376DE1E	TonB dependent receptor, partial	7.79071648464e-06	0.000202769149232	0.000194978432747
+UniRef50_UPI00046628D5	hypothetical protein	3.62445038034e-05	1.08889903377e-05	-2.53555134657e-05
+UniRef50_Q984K6	Phosphoribosylformylglycinamidine cyclo ligase	0.00110366838633	0.000714085834325	-0.000389582552005
+UniRef50_R7QBK2	Stackhouse genomic scaffold, scaffold_21	0.000282814053813	0.000119603647342	-0.000163210406471
+UniRef50_UPI0003B66A9A	magnesium transporter MgtC	7.37222419999e-05	4.57252778069e-05	-2.7996964193e-05
+UniRef50_G2WVV9	DUF814 domain containing protein	1.83852447782e-05	2.15086773379e-05	3.1234325597e-06
+UniRef50_E4AYJ6		0.000154939573793	0.00450665566965	0.00435171609586
+UniRef50_P63412	Acetate kinase	0.00216801849266	0.000797908860343	-0.00137010963232
+UniRef50_UPI0002BC6437	hypothetical protein	0.000943714972126	0.0142410437294	0.0132973287573
+UniRef50_UPI0003FE028E	hypothetical protein	2.30551906406e-05	8.96698187744e-06	-1.40882087632e-05
+UniRef50_V7GTL1		0.000910814090943	0.000348435704399	-0.000562378386544
+UniRef50_Q1MMP4	50S ribosomal protein L20	0.0076848228418	0.00162466788691	-0.00606015495489
+UniRef50_Q3IV37		0.0063481836455	0.00203595035782	-0.00431223328768
+UniRef50_Q3IV35		0.00959974209065	0.00289784039355	-0.0067019016971
+UniRef50_Q3IV32		0.0146959023823	0.00332398067358	-0.0113719217087
+UniRef50_A6LSR7	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.00117224678083	0.000300831957759	-0.000871414823071
+UniRef50_P71310		0.000213164314041	0.000630569477283	0.000417405163242
+UniRef50_Q3JQ29		5.20829069546e-06	2.39254677281e-06	-2.81574392265e-06
+UniRef50_A1B962	Ribosomal RNA large subunit methyltransferase E	0.00660613515998	0.000839555925897	-0.00576657923408
+UniRef50_A6LTV3		0.000703719542133	0.000951450308472	0.000247730766339
+UniRef50_Q034X6	30S ribosomal protein S12	0.000268354968373	0.0250706489643	0.0248022939959
+UniRef50_E4D6N2		0.000327299990334	0.00508258515809	0.00475528516776
+UniRef50_X1MDA3	Marine sediment metagenome DNA, contig	3.14479091987e-05	0.00113583348153	0.00110438557233
+UniRef50_C0RJC1	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00429592993492	0.00267961871454	-0.00161631122038
+UniRef50_R6IDY7		0.000139396577579	0.000306037845981	0.000166641268402
+UniRef50_Q6BA81		4.92758610609e-05	1.00823769841e-05	-3.91934840768e-05
+UniRef50_Q8CQ58	ATP utilizing enzyme of the PP loop superfamily	0.0077979601101	0.00390104029723	-0.00389691981287
+UniRef50_P37659	Protein BcsG homolog	0.0039883975772	0.000631616288139	-0.00335678128906
+UniRef50_E6DXU7	ABC transporter, solute binding protein	0.000285912243473	0.00705307519839	0.00676716295492
+UniRef50_Q2SVU4	Ribose import ATP binding protein RbsA 1	1.25968014835e-05	5.54673924839e-05	4.28705910004e-05
+UniRef50_Q98FL3	Phosphate transport system permease protein PstC	0.00367890663263	0.000364588524928	-0.0033143181077
+UniRef50_A1BBE0	Alkylhydroperoxidase like protein, AhpD family	0.012539891893	0.000750808552819	-0.0117890833402
+UniRef50_P76463		0.00296083119914	0.000708964037068	-0.00225186716207
+UniRef50_P76462		0.00336093646212	0.000228927678448	-0.00313200878367
+UniRef50_P76466		0.00374512144197	0.00157109976358	-0.00217402167839
+UniRef50_UPI0004753B4A	sugar ABC transporter permease	4.33409094142e-05	1.26550092953e-05	-3.06859001189e-05
+UniRef50_P0ABE5	Cytochrome b561	0.00233723534335	0.00347431417878	0.00113707883543
+UniRef50_D4H299		2.42215105498e-05	1.85149550807e-05	-5.7065554691e-06
+UniRef50_UPI0003C78158	hypothetical protein, partial	8.27601264253e-05	3.39050645762e-05	-4.88550618491e-05
+UniRef50_UPI00046770C1	hypothetical protein	2.2937290419e-05	3.62747432931e-05	1.33374528741e-05
+UniRef50_UPI0003B4B937	ribonuclease D	5.64863518462e-05	9.8832521296e-06	-4.66030997166e-05
+UniRef50_Q3IV99	HipA domain containing protein	0.013053203913	0.00437044951208	-0.00868275440092
+UniRef50_V9WGZ8	Di and tricarboxylate transporter	0.0145184687072	0.00456846683289	-0.00995000187431
+UniRef50_A0PKQ3	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	6.66419759311e-05	7.08394712289e-05	4.1974952978e-06
+UniRef50_I3VIL5	Exodeoxyribonuclease V beta subunit	0.000569426275479	0.000253853901306	-0.000315572374173
+UniRef50_C4LGQ2	Putative lysophospholipase	1.66219999784e-05	2.8086347897e-05	1.14643479186e-05
+UniRef50_P21627	High affinity branched chain amino acid transport system permease protein BraD	0.00333223303574	0.00138478674986	-0.00194744628588
+UniRef50_UPI0001CC0C54	phosphogluconate dehydratase	7.38538367525e-05	3.75032691266e-05	-3.63505676259e-05
+UniRef50_UPI000479E1B9	biotin biosynthesis protein BioY	1.46785979329e-05	4.47382777095e-05	3.00596797766e-05
+UniRef50_B0TGJ1		6.66112406707e-06	7.4066114148e-06	7.4548734773e-07
+UniRef50_K7SIM7	Phosphoglycerate mutase family protein	0.000169783803081	0.00302176993236	0.00285198612928
+UniRef50_G8P2V7	Integral membrane protein	2.30898615207e-05	1.85342808422e-05	-4.5555806785e-06
+UniRef50_X2NCX1		3.21882041851e-05	1.19660531471e-05	-2.0222151038e-05
+UniRef50_UPI00034D1C35	hypothetical protein	1.47512589275e-05	1.61161441976e-06	-1.31396445077e-05
+UniRef50_G9ZD87		1.23629562631e-05	0.000144930957181	0.000132568000918
+UniRef50_UPI0003EC446E	PREDICTED	3.85481968413e-06	5.94359184417e-06	2.08877216004e-06
+UniRef50_U5X589	Dehydrogenase	1.53040119441e-05	0.000128074170541	0.000112770158597
+UniRef50_D7G0G3		0.000201371754319	4.72848563011e-05	-0.000154086898018
+UniRef50_UPI0003695FD6	membrane protein	1.77855156612e-05	4.54280430137e-05	2.76425273525e-05
+UniRef50_P0AFF3	Nucleoside permease NupC	0.00403773622393	0.00207682670989	-0.00196090951404
+UniRef50_UPI00047A3E0B	MarR family transcriptional regulator	0.000145732613926	2.14726889456e-05	-0.00012425992498
+UniRef50_A5UNU3		0.00276225339721	0.00350490937895	0.00074265598174
+UniRef50_UPI000422F603	organic hydroperoxide resistance protein	2.43903343146e-05	0.000299027730413	0.000274637396098
+UniRef50_T2A3R6		0.000456636276836	0.00201923160101	0.00156259532417
+UniRef50_O33517	Protein translocase subunit SecD	0.00732020902115	0.00131898771393	-0.00600122130722
+UniRef50_B5FUN9	Zinc transport protein ZntB	0.00395122011708	0.00125944441878	-0.0026917756983
+UniRef50_P77445	Ethanolamine utilization protein EutE	0.00288630781035	0.00133069157337	-0.00155561623698
+UniRef50_B5YU52	Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB	0.002511540717	0.00212586237943	-0.00038567833757
+UniRef50_V5T2Q4	Diguanylate cyclase	0.000321028785553	0.000132703086319	-0.000188325699234
+UniRef50_C7MC16	ATP dependent zinc metalloprotease FtsH	2.96219661011e-06	0.0030749185114	0.00307195631479
+UniRef50_Q7W4T9	Holliday junction ATP dependent DNA helicase RuvA	1.33380848001e-05	1.10694518557e-05	-2.2686329444e-06
+UniRef50_P00946	Mannose 6 phosphate isomerase	0.0014161205321	0.000309532785374	-0.00110658774673
+UniRef50_V5T4B0	Pilus assembly protein PilV	3.68236392742e-05	0.000165908261343	0.000129084622069
+UniRef50_T0VJG1	PTS fructose IIC component	4.21560749834e-05	4.2395120547e-05	2.390455636e-07
+UniRef50_J2DPW6		8.11797825447e-05	0.000125134197123	4.39544145783e-05
+UniRef50_Q3Z5U2	HTH type transcriptional regulator SgrR	0.00295981232245	0.000763393652057	-0.00219641867039
+UniRef50_F9Z280		0.000519384184784	0.0057716621663	0.00525227798152
+UniRef50_R7H8U6	Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.000172374420867	0.000602794437515	0.000430420016648
+UniRef50_K1CPP9		0.00102360880271	0.000514025013599	-0.000509583789111
+UniRef50_P04995	Exodeoxyribonuclease I	0.00392816663246	0.00087217593902	-0.00305599069344
+UniRef50_UPI00031469E2	hypothetical protein	3.49009310975e-05	6.01597668139e-05	2.52588357164e-05
+UniRef50_A6LY50	MATE efflux family protein	0.00037798493582	0.000563503679245	0.000185518743425
+UniRef50_B7H068	Histidine  tRNA ligase	0.000374389062106	0.00904860851041	0.0086742194483
+UniRef50_UPI000419FBF3	ABC transporter permease	7.80845981907e-05	0.000168010086243	8.99254880523e-05
+UniRef50_UPI00035EE3E6	hypothetical protein	2.74712410009e-06	3.41102951508e-06	6.6390541499e-07
+UniRef50_G8VDA6		0.000448895982328	0.00490907479145	0.00446017880912
+UniRef50_U2BA89		3.92571083939e-06	5.29196420108e-05	4.89939311714e-05
+UniRef50_W7AYX4		5.23157566426e-05	2.96255125765e-05	-2.26902440661e-05
+UniRef50_A6M0D8		0.000300123651783	0.00068386931676	0.000383745664977
+UniRef50_Q1IYN7	Amidase	0.000234592456886	0.0204267990746	0.0201922066177
+UniRef50_T2I810	Structural constituent of cell wall	9.22268625471e-05	9.84040141582e-06	-8.23864611313e-05
+UniRef50_Q4L769	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0204604245464	0.00184905888	-0.0186113656664
+UniRef50_UPI0004684CB5	ABC transporter permease	0.000200441101256	3.27098046281e-05	-0.000167731296628
+UniRef50_Q5HRJ5	Teichoic acid biosynthesis protein, putative	0.0114316634903	0.00397435734213	-0.00745730614817
+UniRef50_Q5HRF7	Phosphate acetyltransferase	0.0271715617175	0.0112751940874	-0.0158963676301
+UniRef50_X7YDZ8	PE family protein	7.39202328085e-05	0.00186277812405	0.00178885789124
+UniRef50_O63849	NADH ubiquinone oxidoreductase chain 6	5.29330056772e-05	2.52769032283e-05	-2.76561024489e-05
+UniRef50_UPI0004677159	hypothetical protein	2.17046249955e-05	1.24248791991e-05	-9.2797457964e-06
+UniRef50_L1K787		0.000285764715954	7.7621197061e-05	-0.000208143518893
+UniRef50_Q2JTU3	Phosphate import ATP binding protein PstB 2	0.000190695323778	0.0464865260573	0.0462958307335
+UniRef50_UPI000301C2E3	ATPase	3.51689445339e-06	3.48435988965e-06	-3.253456374e-08
+UniRef50_A4SCS1	50S ribosomal protein L5	0.0402813495798	0.0147537626564	-0.0255275869234
+UniRef50_Q3J2X2	Phosphatidate cytidylyltransferase	0.00212396514788	0.000224575441206	-0.00189938970667
+UniRef50_B2TLQ4	Chemotaxis response regulator protein glutamate methylesterase	0.000456830830374	0.00147085245052	0.00101402162015
+UniRef50_UPI00016C54E3	chromosomal replication initiator protein DnaA	4.28705816598e-06	1.1215174862e-05	6.92811669602e-06
+UniRef50_A3PKA4		0.000781005494173	0.00105437295796	0.000273367463787
+UniRef50_P32674	Formate acetyltransferase 2	0.00148411209976	0.000634397885357	-0.000849714214403
+UniRef50_J9NZ66		2.22094461737e-05	5.79639580396e-06	-1.64130503697e-05
+UniRef50_Q69K37		3.80841636054e-05	5.82548264305e-05	2.01706628251e-05
+UniRef50_P39342		0.0036098702294	0.00121821897793	-0.00239165125147
+UniRef50_UPI00045609F1	hypothetical protein PFL1_01799	4.4142479742e-06	0.000919040928678	0.000914626680704
+UniRef50_UPI0000397F81	COG2931	4.51495142517e-06	7.49232890291e-05	7.04083376039e-05
+UniRef50_P18813	Maltose maltodextrin import ATP binding protein MalK 	0.000142140131912	6.38562559059e-05	-7.82838760061e-05
+UniRef50_UPI00044149CA	hypothetical protein AURDEDRAFT_115522	1.8375825344e-05	6.81805591241e-05	4.98047337801e-05
+UniRef50_I0C4L0	ADP ribose pyrophosphatase	0.0165638621705	0.00363257969083	-0.0129312824797
+UniRef50_UPI000467F222	hypothetical protein	0.00577056911532	0.000480668924539	-0.00528990019078
+UniRef50_Q167S3	TRAP dicarboxylate transporter, DctM subunit, putative	0.00542344358016	0.00108249148096	-0.0043409520992
+UniRef50_Q2CDM9		8.85199201869e-05	5.57072014965e-05	-3.28127186904e-05
+UniRef50_J8KBH6	YhgE Pip domain containing protein 	4.49647113805e-06	3.6152658056e-06	-8.8120533245e-07
+UniRef50_UPI000365A141	hypothetical protein	1.50867437226e-05	3.48843562518e-05	1.97976125292e-05
+UniRef50_C2W425	PTS system Galactitol specific IIC component	0.000644178679882	0.00244353021746	0.00179935153758
+UniRef50_UPI00037AE12F	hypothetical protein	0.000785966462809	0.00461097340622	0.00382500694341
+UniRef50_UPI0003330970		0.000414980052152	4.55420185115e-05	-0.000369438033641
+UniRef50_Q64467	Glyceraldehyde 3 phosphate dehydrogenase, testis specific	4.71370048222e-06	5.83309207037e-06	1.11939158815e-06
+UniRef50_B5R9D9	Probable L ascorbate 6 phosphate lactonase UlaG	0.0107357100235	0.00482892053753	-0.00590678948597
+UniRef50_Q1C790	Pyridoxine pyridoxamine 5 phosphate oxidase	0.0024336708678	0.00315913364256	0.00072546277476
+UniRef50_UPI00046FFDD3	iron dicitrate transporter subunit FecD	1.28998321397e-05	3.18896870912e-05	1.89898549515e-05
+UniRef50_P0AE25	Arabinose proton symporter	0.0022554369045	0.00287828429602	0.00062284739152
+UniRef50_Q8DTN8	Adenosine deaminase	0.00632842057744	0.00134913633666	-0.00497928424078
+UniRef50_UPI0002554E0F	xylose ABC transporter ATP binding protein	8.29221375268e-05	2.9654600144e-05	-5.32675373828e-05
+UniRef50_W5X630	Putative OsmC like protein	1.23875489354e-05	2.72621155647e-05	1.48745666293e-05
+UniRef50_A7X3N8	Putative membrane protein insertion efficiency factor	0.00153034860346	0.00162603529987	9.568669641e-05
+UniRef50_Q4L3G1	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0202080149535	0.00702342394128	-0.0131845910122
+UniRef50_P77473	Putative cyclic di GMP phosphodiesterase YlaB	0.0023238699253	0.000920959635185	-0.00140291029011
+UniRef50_Q1NHL2	Transposase and inactivated derivative	2.24138856622e-05	1.8650724916e-05	-3.7631607462e-06
+UniRef50_P32717	Putative alkyl aryl sulfatase YjcS	0.00370648146794	0.00142195500035	-0.00228452646759
+UniRef50_Q16DL2	Ubiquinone biosynthesis protein UbiB	0.00871008014206	0.00104534339287	-0.00766473674919
+UniRef50_E1WIS2	Intracellular growth attenuator protein igaA	0.00328148520949	0.00073376257054	-0.00254772263895
+UniRef50_G7M8Q2	Methyl accepting chemotaxis sensory transducer	0.000237172727924	0.000947387498409	0.000710214770485
+UniRef50_UPI000255D9DF	Fis family transcriptional regulator	0.000650273458482	0.000314217101544	-0.000336056356938
+UniRef50_B0V742		0.000248982830032	0.00554039407662	0.00529141124659
+UniRef50_Q2FH57	Putative oligopeptide transport ATP binding protein oppD2	0.0187761479194	0.00490642295408	-0.0138697249653
+UniRef50_U6J469	NADH dehydrogenase ubiquinone iron sulfur	1.25651045625e-05	2.42665101498e-05	1.17014055873e-05
+UniRef50_UPI000474822F	isocitrate dehydrogenase	3.0908914629e-05	3.20114300149e-05	1.1025153859e-06
+UniRef50_Q8DRQ7	Ribosomal RNA large subunit methyltransferase H	0.00369798114721	0.00408781651296	0.00038983536575
+UniRef50_Q2YVJ6		0.0101380138573	0.00399533692147	-0.00614267693583
+UniRef50_B9MKG1	Adenylate kinase	1.94525324048e-05	1.43448036743e-05	-5.1077287305e-06
+UniRef50_A6M277		0.000170294816142	0.000180806146044	1.0511329902e-05
+UniRef50_D4HBC2	Transporter, CPA2 family	0.000240950646623	0.00453879779371	0.00429784714709
+UniRef50_P04890	Integrase	0.00445318883312	0.00161219516575	-0.00284099366737
+UniRef50_A6LSE2		0.000324244096982	0.00104731022023	0.000723066123248
+UniRef50_UPI00046606A2	hypothetical protein, partial	9.74285308776e-06	6.74204026379e-06	-3.00081282397e-06
+UniRef50_A6M2U1	Multi sensor hybrid histidine kinase	0.000250147082537	0.00154457549261	0.00129442841007
+UniRef50_UPI000476D31F	DNA gyrase subunit A	8.78633060868e-06	2.07521458052e-05	1.19658151965e-05
+UniRef50_UPI0001CC0D72	hypothetical protein	4.60593486597e-05	0.000103767812091	5.77084634313e-05
+UniRef50_R4ZZW8	Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage	0.0053146838526	0.00129205251708	-0.00402263133552
+UniRef50_Q9K8F8	Glutamyl tRNA reductase	7.16692055211e-06	0.000192649038552	0.000185482118
+UniRef50_I0C5E6	Endonuclease	0.0087040249981	0.000290952418913	-0.00841307257919
+UniRef50_UPI000472AF7A	hypothetical protein	3.65716987911e-05	1.0528778702e-05	-2.60429200891e-05
+UniRef50_B4FAT0	Adenylyltransferase and sulfurtransferase MOCS3 2	2.21194887522e-05	2.59044250973e-05	3.7849363451e-06
+UniRef50_D6M307	Transcriptional regulator, CdaR	0.000567075770637	0.000224875198353	-0.000342200572284
+UniRef50_M9VJY1	Transporter, lactate permease  family protein	0.000166316340848	0.00305029152082	0.00288397517997
+UniRef50_UPI00046A82C0	3 methyladenine DNA glycosylase	2.92974829087e-05	2.0863241983e-05	-8.4342409257e-06
+UniRef50_UPI0004700FE4	hypothetical protein	3.24210305445e-05	1.10755738241e-05	-2.13454567204e-05
+UniRef50_F0KN05	Multiple inositol polyphosphate histidine phosphatase	0.000282906878879	0.00787989829104	0.00759699141216
+UniRef50_E8PIM3		9.61339530144e-05	0.00644670102974	0.00635056707673
+UniRef50_P52129	mRNA endoribonuclease LS	0.00203536311624	0.00100783115063	-0.00102753196561
+UniRef50_UPI000237AE14	spermidine putrescine ABC transporter ATPase subunit	1.88827311168e-05	9.17371961268e-06	-9.70901150412e-06
+UniRef50_A5WHV0	Isochorismatase hydrolase	0.000442102597091	0.000553718822241	0.00011161622515
+UniRef50_Q4K629	3 methyl 2 oxobutanoate hydroxymethyltransferase 1	4.74951535326e-05	0.000157146415598	0.000109651262065
+UniRef50_UPI0003718DF7	hypothetical protein	5.62021540451e-05	3.76715755861e-05	-1.8530578459e-05
+UniRef50_UPI00036AD976	hypothetical protein	0.000619319100806	0.0001322913359	-0.000487027764906
+UniRef50_C1HZT4		9.17574154035e-05	0.000695110090512	0.000603352675108
+UniRef50_UPI0003690E18	hypothetical protein	1.6176108017e-05	0.000398381790308	0.000382205682291
+UniRef50_UPI00036650E1	ATPase AAA	5.25092471424e-06	5.50431275763e-05	4.97922028621e-05
+UniRef50_F9VEN7	Epoxyqueuosine reductase	0.00650717554635	0.00510777796414	-0.00139939758221
+UniRef50_X1PDI0	Marine sediment metagenome DNA, contig	3.34307163761e-05	3.72821857681e-05	3.851469392e-06
+UniRef50_G7DLE2		0.0148808206506	0.00124348655432	-0.0136373340963
+UniRef50_E2PHB7		8.40654494121e-06	1.63992346377e-05	7.99268969649e-06
+UniRef50_R5GC07		8.10956618569e-06	0.000166020903008	0.000157911336822
+UniRef50_F0YDY4		0.000295396329632	0.000726157018034	0.000430760688402
+UniRef50_UPI0003802080	hypothetical protein	3.38066816286e-05	0.000978799899314	0.000944993217685
+UniRef50_UPI00029AFE54	RNA directed DNA polymerase	5.54738597044e-06	9.86150040641e-06	4.31411443597e-06
+UniRef50_W7WC52		0.000887671126056	0.00190168520771	0.00101401408165
+UniRef50_X1XUX4	Uroporphyrinogen decarboxylase	1.74450051423e-06	5.97598035533e-06	4.2314798411e-06
+UniRef50_UPI0001CBC083	PREDICTED	2.68898682801e-05	5.0277683341e-05	2.33878150609e-05
+UniRef50_P54746	Mannosylglycerate hydrolase	0.00420434891043	0.000679071365828	-0.0035252775446
+UniRef50_E4BG02	Dinuclear metal center protein, YbgI family	0.000260626612691	0.00609232392082	0.00583169730813
+UniRef50_A1VMA0	50S ribosomal protein L19	0.000690683649031	0.00262869624505	0.00193801259602
+UniRef50_T1YBG5	Opine dehydrogenase	0.0236598526903	0.00283989804219	-0.0208199546481
+UniRef50_X1B9K9	Marine sediment metagenome DNA, contig	1.40942159089e-05	3.06857897143e-05	1.65915738054e-05
+UniRef50_A5WGQ7	Periplasmic protein like protein	1.04450235258e-05	4.16444173436e-05	3.11993938178e-05
+UniRef50_X2N5D2	Outer membrane specific lipoprotein transporter subunit LolC	8.18662840339e-05	4.53783390152e-05	-3.64879450187e-05
+UniRef50_X1D3Z2	Marine sediment metagenome DNA, contig	2.12937360642e-05	6.48408761285e-05	4.35471400643e-05
+UniRef50_Q97D80	4 hydroxy tetrahydrodipicolinate synthase 2	0.000133073791603	0.00228148147829	0.00214840768669
+UniRef50_P40720	Fumarate hydratase class I, aerobic	0.00293029697924	0.000602324560901	-0.00232797241834
+UniRef50_B6IUC1	Methylthioribose 1 phosphate isomerase	0.00278372224471	0.00127142668247	-0.00151229556224
+UniRef50_Q02425	Putative transcriptional regulator MtlR	0.00503092610053	0.00319147800609	-0.00183944809444
+UniRef50_B4M1F9	GJ18858	1.01981263875e-05	5.10213154577e-05	4.08231890702e-05
+UniRef50_B2IU46	Phosphoribosylformylglycinamidine synthase 2	2.53327206266e-05	6.02501613495e-06	-1.93077044916e-05
+UniRef50_R4GH13		1.11755566566e-05	1.84542428861e-05	7.2786862295e-06
+UniRef50_C1FA47	Potassium transporting ATPase A chain	9.22300757834e-06	0.00202210674766	0.00201288374008
+UniRef50_Q1I3T3	Polyhydroxyalkanoate synthesis protein PhaF	0.000166783205682	5.05074079735e-05	-0.000116275797708
+UniRef50_Q3HKH1		0.0228404875845	0.00685987989442	-0.0159806076901
+UniRef50_Q3HKH3		0.00237788050164	0.00157805054865	-0.00079982995299
+UniRef50_UPI000370C63A	hypothetical protein	0.000319690775232	0.000941514765672	0.00062182399044
+UniRef50_W4TJY2		0.000191976595905	0.000508845783457	0.000316869187552
+UniRef50_UPI000441F8F0	PREDICTED	0.000563058661583	1.75801197262e-05	-0.000545478541857
+UniRef50_G2IS79	Hypothetical membrane protein	0.00019534428448	5.24911101547e-05	-0.000142853174325
+UniRef50_A5UM67	Sugar fermentation stimulation protein homolog	0.00298102486338	0.000658810500783	-0.0023222143626
+UniRef50_R7PWU8		0.00159021358448	0.00105843839075	-0.00053177519373
+UniRef50_Q2AC94		3.52250371022e-05	4.2520321529e-05	7.2952844268e-06
+UniRef50_F7Z4K9	TnpA	0.000605284995007	0.00024372767966	-0.000361557315347
+UniRef50_R7PWU3		0.00292339228816	0.000795294053104	-0.00212809823506
+UniRef50_C0QUK8	Methionyl tRNA formyltransferase	4.58608148375e-06	1.44176175045e-05	9.83153602075e-06
+UniRef50_UPI000375AFE0	hypothetical protein	4.71469669417e-06	3.14629291909e-05	2.67482324967e-05
+UniRef50_UPI00046A12DF	hypothetical protein	1.44834385524e-05	2.41145096021e-05	9.6310710497e-06
+UniRef50_A6LX98	Glycoside hydrolase, family 18	0.000418275602248	0.00157164378084	0.00115336817859
+UniRef50_P22102	Trifunctional purine biosynthetic protein adenosine 3	4.45304472711e-06	2.46798581498e-06	-1.98505891213e-06
+UniRef50_Q5KXU4	Chorismate synthase	0.0271011618318	0.0413090051106	0.0142078432788
+UniRef50_UPI000474B63A	hypothetical protein	5.22419775497e-06	1.01118569742e-05	4.88765921923e-06
+UniRef50_F8IFU6	LmbE family protein	1.76078834687e-05	1.68551746895e-05	-7.527087792e-07
+UniRef50_UPI000289F8D3	methionine aminotransferase	1.00075520236e-05	2.0148592413e-05	1.01410403894e-05
+UniRef50_M9RJP3		0.00205562130125	0.000225719774668	-0.00182990152658
+UniRef50_F4NWK8		0.000311887641968	0.000860145743281	0.000548258101313
+UniRef50_UPI00041A4561	hypothetical protein	3.38778996678e-05	2.77703241396e-06	-3.11008672538e-05
+UniRef50_Q9PD69	Proline iminopeptidase	0.000212520408214	0.00398316716448	0.00377064675627
+UniRef50_G7M2T0	UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000219779183948	0.000776722638459	0.000556943454511
+UniRef50_Q8R9V7	3 oxoacyl [acyl carrier protein] synthase 3	0.000157914310134	2.7250793335e-05	-0.000130663516799
+UniRef50_UPI0002888835	glycerol 3 phosphatase	7.71932335607e-06	1.63930098813e-05	8.67368652523e-06
+UniRef50_UPI0003722744	hypothetical protein	1.04025515617e-05	3.46914523088e-05	2.42889007471e-05
+UniRef50_B7GZ54	Actinomycin synthetase II	0.000128516514653	0.00651273320248	0.00638421668783
+UniRef50_D7CWU8	Type IV pilus assembly protein PilM	9.93384181239e-05	0.0332070981776	0.0331077597595
+UniRef50_E8SJI8		0.0553151876156	0.00337179861667	-0.0519433889989
+UniRef50_UPI0003C10230	PREDICTED	9.09044766577e-06	5.28224137874e-05	4.37319661216e-05
+UniRef50_UPI000470BFD5	amino acid ABC transporter permease	2.29932477038e-05	4.0599114889e-05	1.76058671852e-05
+UniRef50_P45579		0.00288042369488	0.000588227214469	-0.00229219648041
+UniRef50_UPI000464E9C2	hypothetical protein	2.84290080852e-05	4.16968803504e-05	1.32678722652e-05
+UniRef50_Q8GAI8	Succinate semialdehyde dehydrogenase	0.000453639892396	0.00521119836773	0.00475755847533
+UniRef50_Q3IV11	Isopropylmalate homocitrate synthase	0.0216534286559	0.00419992717389	-0.017453501482
+UniRef50_A1JS01	DNA directed RNA polymerase subunit alpha	0.00373896874347	0.000825341309138	-0.00291362743433
+UniRef50_UPI0003B67DBA	hypothetical protein	0.000252524233072	9.10681211951e-05	-0.000161456111877
+UniRef50_P06574	RNA polymerase sigma B factor	0.0211631505799	0.00970995263341	-0.0114531979465
+UniRef50_UPI00046D6464	translation factor Sua5	3.13026905236e-05	4.5684901782e-05	1.43822112584e-05
+UniRef50_UPI000476E6E7	lysyl tRNA synthetase	1.43452792468e-05	7.34868156425e-06	-6.99659768255e-06
+UniRef50_Q88IQ4	Sensor histidine kinase response regulator	0.00206724935994	0.00139408796776	-0.00067316139218
+UniRef50_A8LKQ2	Sulfurtransferase	0.000542881465951	0.000967612096378	0.000424730630427
+UniRef50_P44874	Acetate CoA transferase subunit beta	0.00105755590958	0.000821770939953	-0.000235784969627
+UniRef50_Q3KA14	LysR family regulatory protein	0.000690365605888	0.00117353917808	0.000483173572192
+UniRef50_E9LLQ7	IS2 ORFB transposase	0.0084388634471	0.00290687309535	-0.00553199035175
+UniRef50_P0AB08		0.00189595411636	0.00180806146039	-8.789265597e-05
+UniRef50_Q5LS56	Acrylyl CoA reductase AcuI	6.03987495323e-06	7.49737680391e-05	6.89338930859e-05
+UniRef50_UPI000462E49A	hypothetical protein	1.59645827957e-05	2.72691258045e-05	1.13045430088e-05
+UniRef50_M3DK36		0.000342413966477	0.000497906368169	0.000155492401692
+UniRef50_P56072	L serine dehydratase	0.000197575715726	0.00505622141995	0.00485864570422
+UniRef50_UPI00040107BB	glycosyl transferase family 39	1.4853430044e-05	3.30138052097e-05	1.81603751657e-05
+UniRef50_Q6A5R4	Sodium	0.000309795425739	0.0060915922918	0.00578179686606
+UniRef50_U5NYY0	Lysophospholipase	6.8074712477e-06	2.00212996851e-05	1.32138284374e-05
+UniRef50_B5GT91	WD 40 repeat containing protein	4.3740327724e-05	0.000172628374944	0.00012888804722
+UniRef50_UPI00034B152D	hypothetical protein	1.85478690037e-05	7.97076189213e-06	-1.05771071116e-05
+UniRef50_Q58321	Magnesium chelatase subunit ChlI homolog	0.000224249102288	0.00499835185524	0.00477410275295
+UniRef50_G8VJV8	Allantoate amidohydrolase	0.000233057399309	0.00747163948279	0.00723858208348
+UniRef50_Q2NEU9	Serine  tRNA ligase	0.00210232037425	0.000360861888495	-0.00174145848576
+UniRef50_Q8DSX1		0.0118005192322	0.000112434754364	-0.0116880844778
+UniRef50_Q92QK5	Aspartyl glutamyl tRNA amidotransferase subunit B	0.0153994559258	0.0118880197218	-0.003511436204
+UniRef50_R9ZCZ8	Sensor histidine kinase	0.000194241405987	0.000397771607208	0.000203530201221
+UniRef50_UPI0003466363	hypothetical protein	2.38896737416e-05	5.79119070527e-06	-1.80984830363e-05
+UniRef50_P32672	Fructose like permease IIC component 2	0.002681293934	0.00162091535389	-0.00106037858011
+UniRef50_Q88YG1	Uracil DNA glycosylase	0.000326356762696	0.000110336177835	-0.000216020584861
+UniRef50_A0A034KNE5		8.64222206077e-05	1.34740399132e-05	-7.29481806945e-05
+UniRef50_A6LZY6	Molybdopterin guanine dinucleotide biosynthesis protein B	0.000196266545327	0.000673726323636	0.000477459778309
+UniRef50_UPI0003AB5CEA	PREDICTED	7.66873094363e-06	3.77712998854e-05	3.01025689418e-05
+UniRef50_Q81MS2	Arginine decarboxylase	5.52701098489e-05	0.000745339683826	0.000690069573977
+UniRef50_A7WWP7		0.0216012122227	0.008990303014	-0.0126109092087
+UniRef50_F8HFP7	Transcriptional regulator, LysR family	0.00289515616722	0.00132425560493	-0.00157090056229
+UniRef50_R0PPD5		0.000447611844493	0.000686783035329	0.000239171190836
+UniRef50_D5BRX6	Inner membrane translocator	0.00947113544009	0.00135590935082	-0.00811522608927
+UniRef50_UPI000477A269	hypothetical protein	0.000123418692673	4.16655726982e-05	-8.17531199748e-05
+UniRef50_K7E2E5		0.000123633010252	5.81792965431e-05	-6.54537137089e-05
+UniRef50_X8A453	Putative MAGNESIUM CHELATASE domain protein	6.11602089238e-05	0.000505798388056	0.000444638179132
+UniRef50_B5XSS1	50S ribosomal protein L13	0.0205362311082	0.00433760089894	-0.0161986302093
+UniRef50_P57576	50S ribosomal protein L6	0.00521325399623	0.013601878598	0.00838862460177
+UniRef50_A0A011QAN2		1.45434840898e-05	2.13895666075e-05	6.8460825177e-06
+UniRef50_S5XRJ3	Proline iminopeptidase	0.00825244928637	0.0011871127075	-0.00706533657887
+UniRef50_UPI0002557E64	C4 dicarboxylate transport transcriptional regulatory protein DctD, partial	0.000211674386272	0.000340750044459	0.000129075658187
+UniRef50_Q7N4V9	3 phenylpropionate cinnamic acid dioxygenase subunit beta	0.00885263164251	0.00561413586235	-0.00323849578016
+UniRef50_B2UTG2	UPF0763 protein HPSH_03535	0.000276884588405	0.00308317070629	0.00280628611789
+UniRef50_I4KRZ7	Transcriptional regulator, GntR family aminotransferase, classes I and II family protein	0.00241310971238	0.000972480837877	-0.0014406288745
+UniRef50_A0A016QN34		3.09411129684e-05	0.0137680408713	0.0137370997583
+UniRef50_UPI00041C20AD	hypothetical protein	1.61369483793e-05	2.31241246083e-05	6.987176229e-06
+UniRef50_J8VH78	Coproporphyrinogen III oxidase 	0.000491074042262	0.000346389145314	-0.000144684896948
+UniRef50_UPI00047EB041	hypothetical protein	6.65757192014e-06	7.50426515997e-06	8.4669323983e-07
+UniRef50_UPI0002490BAD	competence damage inducible protein A	1.76719284851e-05	7.73404174448e-06	-9.93788674062e-06
+UniRef50_UPI0004296EAD	ribosome binding factor A	5.55379054118e-05	9.96046652012e-05	4.40667597894e-05
+UniRef50_P0AAJ6	Formate dehydrogenase O iron sulfur subunit	0.00360230513717	0.000774000796025	-0.00282830434114
+UniRef50_B7LQ20	Glyceraldehyde 3 phosphate dehydrogenase A	8.71097073012e-05	0.0033096727597	0.0032225630524
+UniRef50_UPI00035D6F39	hypothetical protein	5.39956237266e-05	9.78389571234e-06	-4.42117280143e-05
+UniRef50_A6M0J9	CheA signal transduction histidine kinase	0.000593520920681	0.00227722642946	0.00168370550878
+UniRef50_UPI00023759DD	acyltransferase family protein	5.051735618e-06	6.96612311266e-06	1.91438749466e-06
+UniRef50_R7PX72		0.00291878355791	0.000167793582503	-0.00275098997541
+UniRef50_F0TA01	Archaeal glutamate synthase [NADPH]	0.00335978709607	0.000908907900225	-0.00245087919584
+UniRef50_Q492F5	4 hydroxy tetrahydrodipicolinate synthase	0.000457785272765	0.000436231104301	-2.1554168464e-05
+UniRef50_J7QKX2	Transposase domain protein	0.00025323968039	6.98625941747e-05	-0.000183377086215
+UniRef50_K0S542		0.00075993358359	0.000116450193223	-0.000643483390367
+UniRef50_W9UW01		0.000171349736015	0.000668853702205	0.00049750396619
+UniRef50_A6T6Q1	Ribosomal RNA large subunit methyltransferase F	0.00147449936296	0.0022172617736	0.00074276241064
+UniRef50_K0Q3E4		3.29473244734e-05	0.00152890744609	0.00149596012162
+UniRef50_Q8G5F0	Arginine biosynthesis bifunctional protein ArgJ	2.65281971498e-05	0.00155475033706	0.00152822213991
+UniRef50_Q9I702	Putative 3 oxopropanoate dehydrogenase	0.000507491012843	0.000337427410476	-0.000170063602367
+UniRef50_A4WZZ2		0.0103968082553	0.00689422299157	-0.00350258526373
+UniRef50_UPI00047EFBD1	glycine betaine ABC transporter ATPase	1.1710862618e-05	1.71980703415e-05	5.4872077235e-06
+UniRef50_B9ADV3	Putative methyl coenzyme M reductase, alpha subunit	0.000975849308718	0.000207529576475	-0.000768319732243
+UniRef50_UPI000463E516	hypothetical protein	1.88009409823e-05	2.67283216012e-05	7.9273806189e-06
+UniRef50_P0AAT4	Miniconductance mechanosensitive channel YbdG	0.00339433753035	0.00068528512706	-0.00270905240329
+UniRef50_Q6F1M4	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO 1	7.06306053309e-06	5.23063929398e-06	-1.83242123911e-06
+UniRef50_S5D395	Enoyl CoA hydratase carnithine racemase	0.000301185629405	0.00479981320846	0.00449862757905
+UniRef50_P33216	Mannitol 2 dehydrogenase	0.00356331307469	0.000248429943479	-0.00331488313121
+UniRef50_Q57354	Putative GTP cyclohydrolase 1 type 2	0.00229396527318	0.00114583637709	-0.00114812889609
+UniRef50_UPI0004769B76	hypothetical protein	4.95041552103e-06	2.73149234365e-05	2.23645079155e-05
+UniRef50_X0TRL2	Marine sediment metagenome DNA, contig	1.48422532501e-05	2.09258070182e-05	6.0835537681e-06
+UniRef50_F2ECU7	Predicted protein 	7.26248281037e-05	0.000156293586922	8.36687588183e-05
+UniRef50_Q98BM2	ABC transporter, periplasmic oligopeptide binding protein	0.0114872341155	0.00324263744093	-0.00824459667457
+UniRef50_Q28L99	50S ribosomal protein L25	0.00941637606505	0.000290475447734	-0.00912590061732
+UniRef50_A6LVP1	Sterol 3 beta glucosyltransferase	0.000759093165696	0.00133456418674	0.000575471021044
+UniRef50_M1MJB2		0.000337510870599	0.00490051855895	0.00456300768835
+UniRef50_UPI0004677D66	DNA 3 methyladenine glycosylase	2.49540027311e-05	2.71568465645e-05	2.2028438334e-06
+UniRef50_P76114	HTH type transcriptional regulator McbR	0.00307691554737	0.000286715247755	-0.00279020029961
+UniRef50_Q62KW5	Valine  tRNA ligase	2.08206059521e-06	2.05786926489e-06	-2.419133032e-08
+UniRef50_F2AE12		0.000107263013971	6.11273463885e-05	-4.61356675825e-05
+UniRef50_UPI00032A5C01	PREDICTED	3.40784356417e-06	3.94420191026e-05	3.60341755384e-05
+UniRef50_S2ZSD0		9.43330332404e-06	2.00887778985e-05	1.06554745745e-05
+UniRef50_O25130	UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase	0.000315938107649	0.00424031087024	0.00392437276259
+UniRef50_UPI0003638962	hypothetical protein	4.7301544623e-06	2.6577930683e-05	2.18477762207e-05
+UniRef50_I1F566		2.61112152096e-05	4.2120478864e-05	1.60092636544e-05
+UniRef50_F8JEF7		0.000492326331845	0.000123143204724	-0.000369183127121
+UniRef50_UPI0003B4FCE0	MFS transporter	9.84172686036e-06	5.81622566746e-05	4.83205298142e-05
+UniRef50_P56909	NADH quinone oxidoreductase subunit E 1	0.000449124236004	9.58863052789e-05	-0.000353237930725
+UniRef50_P0AC17	Dihydroneopterin aldolase	0.000315447901544	0.00571580719732	0.00540035929578
+UniRef50_P02918	Penicillin binding protein 1A	0.00448575270956	0.00157263967788	-0.00291311303168
+UniRef50_Q08NZ6		1.08318646895e-05	0.000217627086816	0.000206795222126
+UniRef50_X1G2K5	Marine sediment metagenome DNA, contig	0.000235674185933	1.53004192369e-05	-0.000220373766696
+UniRef50_UPI00023787D7	hypothetical protein	0.000499091345749	0.000125763373362	-0.000373327972387
+UniRef50_A9CFS9	Small heat shock protein	0.0186393422623	0.000735228311697	-0.0179041139506
+UniRef50_D9W0X8	Predicted protein	4.27135503951e-06	8.93453564839e-05	8.50740014444e-05
+UniRef50_G8VLV0	tRNA processing ribonuclease	0.000116989459351	0.00529547348195	0.0051784840226
+UniRef50_UPI00046F8633	cation transporter	6.29543610837e-06	2.361819854e-05	1.73227624316e-05
+UniRef50_P29961	Heme exporter protein C	0.00633667996483	0.00271023970454	-0.00362644026029
+UniRef50_E8W5Y1		0.000134656119687	4.89480567786e-05	-8.57080629084e-05
+UniRef50_P77131		0.00344899601103	0.000368343680309	-0.00308065233072
+UniRef50_A1B054	Transcriptional regulator, LuxR family	0.00452533864009	0.000881114093073	-0.00364422454702
+UniRef50_B8CSC0	Lipoprotein signal peptidase	0.00377962892304	0.00221170440102	-0.00156792452202
+UniRef50_B9KM78	OmpA MotB domain protein	0.00637571353268	0.00237011799051	-0.00400559554217
+UniRef50_P71481	DNA primase	2.93534722082e-06	7.03535756268e-06	4.10001034186e-06
+UniRef50_W4TGX7	Substrate specific component BL0695 of predicted ECF transporter	5.09848768654e-05	0.00534909430196	0.00529810942509
+UniRef50_K6XJA6		5.02975019455e-05	0.000519320411239	0.000469022909293
+UniRef50_R5KG87	AAA domain   AAA domain multi domain protein	1.87039670551e-05	0.00616536482589	0.00614666085883
+UniRef50_UPI00037A76B2	hypothetical protein	5.17462644591e-06	1.30416144481e-05	7.86698800219e-06
+UniRef50_UPI0004632E52	hypothetical protein	4.33786031756e-05	3.12809515996e-05	-1.2097651576e-05
+UniRef50_F3X0N5		4.15154658099e-06	1.54479119641e-05	1.12963653831e-05
+UniRef50_M5AFG5	ABC type transporter ATP binding protein EcsA	0.0154175206791	0.00197886890385	-0.0134386517753
+UniRef50_Q6K4U0		0.000194246649494	1.79109969865e-05	-0.000176335652508
+UniRef50_W4UAN6	Excinuclease	0.000106068022332	0.000413362203352	0.00030729418102
+UniRef50_F9YZU0	Transcriptional regulator, GntR family	0.000155985945804	0.00642747758696	0.00627149164116
+UniRef50_P35667	Glutathione synthetase	2.27515903807e-06	2.64124727127e-05	2.41373136746e-05
+UniRef50_D2FKD3		0.000119606505727	1.84393460425e-05	-0.000101167159685
+UniRef50_P12282	Molybdopterin synthase adenylyltransferase	0.00332547296515	0.000281964877713	-0.00304350808744
+UniRef50_B3QXJ4	Beta lactamase domain protein	5.39586293597e-06	0.000105973540902	0.000100577677966
+UniRef50_UPI0004403F5A	PREDICTED	2.91580616825e-05	1.6289602209e-05	-1.28684594735e-05
+UniRef50_Q8TJT7	Translation initiation factor 2 subunit gamma	0.00243638092775	0.00106270768987	-0.00137367323788
+UniRef50_I5ARC3	Acetolactate synthase	0.000574579168958	0.00103966230042	0.000465083131462
+UniRef50_Q55484	Diaminopimelate decarboxylase	4.40923585114e-06	1.0666126503e-05	6.25689065186e-06
+UniRef50_D9QTB8	Oxidoreductase domain protein	0.000685196686045	0.000330117129143	-0.000355079556902
+UniRef50_P0CF79	Transposase InsF for insertion sequence IS3A	0.017169727372	0.0135475406738	-0.0036221866982
+UniRef50_Q9RR46	Glycine betaine carnitine transport ATP binding protein GbuA	0.000454241519897	0.00714149790813	0.00668725638823
+UniRef50_UPI00036AA55A	hypothetical protein	2.9896390201e-05	3.37635228468e-05	3.8671326458e-06
+UniRef50_Q3IUW0	TraW	0.0353646108748	0.00991003465552	-0.0254545762193
+UniRef50_UPI00021A7398	PREDICTED	9.39645183949e-06	0.000125422156461	0.000116025704622
+UniRef50_E5QWQ2	Aspartokinase	0.016771635149	0.00406066863886	-0.0127109665101
+UniRef50_Q7F759	P0044F08.26 protein	0.00021365921671	3.1756166524e-05	-0.000181903050186
+UniRef50_Q73C41	S layer protein, putative	1.07044019362e-05	0.00153251193883	0.00152180753689
+UniRef50_V4QD05	Fimbrial protein	1.80435176483e-05	5.63528409567e-05	3.83093233084e-05
+UniRef50_A5GUA9	Light independent protochlorophyllide reductase subunit B	0.003416250867	0.00187319756362	-0.00154305330338
+UniRef50_E6V099	Formiminoglutamate deiminase	0.000123630782379	0.000135673830875	1.2043048496e-05
+UniRef50_P06710	DNA polymerase III subunit tau	0.00361403521213	0.00153686321157	-0.00207717200056
+UniRef50_R1CZX5		1.09915370727e-05	0.000427198990526	0.000416207453453
+UniRef50_A0A009JRB9		9.516453501e-05	0.000930631852543	0.000835467317533
+UniRef50_UPI0002FFBB25	hypothetical protein	3.40387450623e-05	9.43353330814e-06	-2.46052117542e-05
+UniRef50_UPI000423190C	O succinylbenzoate synthase	4.74122658651e-05	0.00239671351469	0.00234930124882
+UniRef50_B9DX48		0.000317921175202	0.000860944452576	0.000543023277374
+UniRef50_B3DW88	1 deoxy D xylulose 5 phosphate synthase	2.03849139264e-06	0.000115345236983	0.00011330674559
+UniRef50_X8CKI5	CobQ CobB MinD ParA nucleotide binding domain protein	1.90480569793e-05	3.06313692361e-05	1.15833122568e-05
+UniRef50_Q9ZIS7	Lipopolysaccharide core heptose kinase RfaY	0.00145952977339	0.00430534724948	0.00284581747609
+UniRef50_U3SVH6		0.00411971759937	0.00152737945226	-0.00259233814711
+UniRef50_P76269		0.00297558337707	0.00341140322832	0.00043581985125
+UniRef50_G2P8Z9	Transposase, IS605 OrfB family	5.25746502591e-05	0.000657172083892	0.000604597433633
+UniRef50_UPI000471D0D3	hypothetical protein	1.16142176247e-05	0.00128805767409	0.00127644345647
+UniRef50_Q6A9L6	Periplasmic binding protein	6.85383946735e-06	0.000128119932557	0.00012126609309
+UniRef50_UPI0003B48E1B	ADP ribose pyrophosphatase	1.62582808545e-05	5.24238006971e-05	3.61655198426e-05
+UniRef50_UPI00036CF9CE	hypothetical protein	2.88882160989e-05	5.160244687e-05	2.27142307711e-05
+UniRef50_D3E124	UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU	0.00508425213691	0.000738244923591	-0.00434600721332
+UniRef50_K8DBK5		8.66183062595e-06	2.1885100833e-05	1.32232702071e-05
+UniRef50_N4W5E7	C4 dicarboxylate transport protein	0.000678825717177	0.00158704335806	0.000908217640883
+UniRef50_U2ACI4		0.000116290430102	3.84411020048e-05	-7.78493280972e-05
+UniRef50_K2FH00		4.7796071396e-05	2.33245156449e-05	-2.44715557511e-05
+UniRef50_B2UY31	Two component sensor kinase	0.000154399678523	0.00133854775684	0.00118414807832
+UniRef50_F4REI7		1.60069797117e-05	0.00091835394336	0.000902346963648
+UniRef50_C4I344	Permease, major facilitator superfamily	7.83707935342e-05	0.00496204063851	0.00488366984498
+UniRef50_O29196	5,10 methylenetetrahydromethanopterin reductase	0.00315080848301	0.00147149504184	-0.00167931344117
+UniRef50_E1AHU5	Major ampullate spidroin 	2.1339163449e-05	3.8833938913e-05	1.7494775464e-05
+UniRef50_X6L226		0.000219357096152	4.16479026535e-05	-0.000177709193499
+UniRef50_UPI000463A149	hypothetical protein	0.000129035681842	4.07845116098e-05	-8.82511702322e-05
+UniRef50_Q9RVN4		0.000394584657338	0.00476556492744	0.0043709802701
+UniRef50_A6LSZ3	Threonine synthase	0.000426553682165	0.00130053169259	0.000873978010425
+UniRef50_B9DZE4	UPF0229 protein CKR_0568	0.000526595575761	0.0011177295849	0.000591134009139
+UniRef50_UPI0003801F95	hypothetical protein, partial	8.53641470782e-05	0.00019001100271	0.000104646855632
+UniRef50_C6DYM5	Anthranilate phosphoribosyltransferase	0.00113144129872	0.000604337002985	-0.000527104295735
+UniRef50_A0A023AZW8		2.3530760305e-06	9.96751789277e-06	7.61444186227e-06
+UniRef50_G7M887	Histidine kinase	0.000173163669973	0.00141383795177	0.0012406742818
+UniRef50_K7UKE5		1.72755064213e-06	7.74244214627e-06	6.01489150414e-06
+UniRef50_P37461	Sensor protein ZraS	0.00409880859986	0.000284535068841	-0.00381427353102
+UniRef50_I0HXP3		1.3593932535e-05	2.0697344156e-05	7.103411621e-06
+UniRef50_F2U1N7		9.12400761595e-06	2.04847771348e-05	1.13607695188e-05
+UniRef50_Q28JK1	Flagellar basal body rod protein FlgF	0.00126604214778	0.000883894509959	-0.000382147637821
+UniRef50_UPI000471EEAE	ABC transporter	6.84982214067e-06	4.65473080569e-06	-2.19509133498e-06
+UniRef50_D3DZ81	Cytochrome C type biogenesis protein DsbD	0.00193448622294	0.0016160376759	-0.00031844854704
+UniRef50_W7TIW7		0.000759020084819	3.57265052596e-05	-0.000723293579559
+UniRef50_Q831X4	Asparagine  tRNA ligase	0.0214473088796	0.0109057559629	-0.0105415529167
+UniRef50_Q6GFB8	Protein map	0.00094238539189	0.000100905480134	-0.000841479911756
+UniRef50_H8LBN6	PTS system, mannose fructose sorbose specific IID component	0.000694806124124	0.00198310413586	0.00128829801174
+UniRef50_Q834K3	ATP dependent protease subunit HslV	0.000497806097777	0.00135781391616	0.000860007818383
+UniRef50_B4I0B4	GM12486	0.000132451224162	7.03709289089e-06	-0.000125414131271
+UniRef50_UPI0003B5BA4B	NUDIX hydrolase	1.47884352236e-05	3.349763226e-05	1.87091970364e-05
+UniRef50_I3LMH8		7.40077960891e-05	2.48832882789e-05	-4.91245078102e-05
+UniRef50_A0A021VVK4		2.65841477191e-06	8.26260108954e-06	5.60418631763e-06
+UniRef50_A6M053	Glycoside hydrolase, family 3 domain protein	0.000758181198292	0.00156297277158	0.000804791573288
+UniRef50_D8LRQ2	Beta ketoacyl synthase	0.000191774211861	0.000144174144111	-4.760006775e-05
+UniRef50_P45745	Dimodular nonribosomal peptide synthase	2.21808706353e-06	1.16238890594e-05	9.40580199587e-06
+UniRef50_I7ABN6	Outer membrane protein assembly factor BamA	0.000907638321741	9.4906279115e-05	-0.000812732042626
+UniRef50_E3A4Y7		0.000539706274914	0.00064036596488	0.000100659689966
+UniRef50_Q02250	Delta aminolevulinic acid dehydratase	2.33444451268e-05	0.00841714073871	0.00839379629358
+UniRef50_UPI0000D55548	PREDICTED	2.75573480086e-06	7.08173496038e-06	4.32600015952e-06
+UniRef50_Q0HVJ1	Drug resistance transporter, EmrB QacA subfamily	0.00870291764808	0.00285199219863	-0.00585092544945
+UniRef50_B2FNN8	UDP N acetylmuramate  L alanine ligase	1.15516502959e-05	5.61291383399e-06	-5.93873646191e-06
+UniRef50_UPI0003B77170	30S ribosomal protein S2	6.5492103241e-06	2.75489572239e-05	2.09997468998e-05
+UniRef50_UPI0003487C99	hypothetical protein	5.61039732462e-06	4.13875595675e-06	-1.47164136787e-06
+UniRef50_A6LYV1	Response regulator receiver sensor signal transduction histidine kinase	0.000313140775278	0.00241920271969	0.00210606194441
+UniRef50_P63299		0.00184223001507	0.00284095021236	0.00099872019729
+UniRef50_Q2P3J8	Imidazole glycerol phosphate synthase subunit HisF	0.00418281453446	0.000425937555561	-0.0037568769789
+UniRef50_U5ML33	Lipolytic protein, G D S L family	0.000268354968373	0.000326316801329	5.7961832956e-05
+UniRef50_UPI0002EFC2F2	hypothetical protein	2.61498447778e-05	5.62267873896e-05	3.00769426118e-05
+UniRef50_L8NGT0	Membrane bound lytic murein transglycosylase	0.000166537936259	0.00050629301762	0.000339755081361
+UniRef50_UPI00035C696E	hypothetical protein	7.81340086341e-06	0.000588962461015	0.000581149060152
+UniRef50_G7ZMW5		0.0263759012329	0.00709231792006	-0.0192835833128
+UniRef50_UPI0002DDE0E6	hypothetical protein	4.90692127245e-05	1.92973063892e-05	-2.97719063353e-05
+UniRef50_P77219		0.000235928743029	0.000369145881487	0.000133217138458
+UniRef50_UPI000479998B	formyltetrahydrofolate deformylase	0.000110152351383	1.8331698461e-05	-9.1820652922e-05
+UniRef50_K0RS76		0.000115051310845	0.000244018463567	0.000128967152722
+UniRef50_B9E3T3		0.0002244449559	0.000635031079717	0.000410586123817
+UniRef50_K9ZYR5	Tape measure domain protein	7.35748824585e-07	0.000113882577338	0.000113146828513
+UniRef50_UPI000310DE08	hypothetical protein	2.74073611534e-05	1.72515254352e-05	-1.01558357182e-05
+UniRef50_UPI0003C7F041	urea ABC transporter ATP binding protein	2.27818087306e-05	0.000156173507228	0.000133391698497
+UniRef50_UPI00040937D6	hypothetical protein	2.33884331237e-05	8.42865847614e-06	-1.49597746476e-05
+UniRef50_T2E4I0	Permease for cytosine purine, uracil, thiamine, allantoin family protein	8.96641303719e-05	0.000745243612211	0.000655579481839
+UniRef50_T1Y8J8	Short chain dehydrogenase reductase family protein	0.00988957441041	0.000470624231391	-0.00941895017902
+UniRef50_I3FPW3		0.00072020383981	0.000248165298485	-0.000472038541325
+UniRef50_Q9N0B4	Unnamed protein product	1.41053975044e-05	0.000147218287845	0.000133112890341
+UniRef50_S5RNF0		0.00495810183326	0.000533327763568	-0.00442477406969
+UniRef50_UPI00035FB164	hypothetical protein	0.000101714975048	3.98063155353e-05	-6.19086595127e-05
+UniRef50_I6Y0P6		5.83011243669e-06	2.7429444095e-05	2.15993316583e-05
+UniRef50_K7V3T8		1.5822093503e-05	6.12651644519e-06	-9.69557705781e-06
+UniRef50_A5UNP7	Cobalt ABC transporter, permease component, CbiQ	0.00393749434818	0.00051596932013	-0.00342152502805
+UniRef50_K8BCX2	PTS system, mannitol specific IIC component   PTS system, mannitol specific IIB component   PTS system,mannitol specific IIA component	0.00245833826772	0.00185465262813	-0.00060368563959
+UniRef50_K1V9J2		7.7586904216e-05	0.000130125762441	5.2538858225e-05
+UniRef50_UPI0003824623	hypothetical protein	1.7836132229e-05	0.000596438517221	0.000578602384992
+UniRef50_L7WUR4	ABC transporter substrate binding protein	0.0165695757995	0.00405478319022	-0.0125147926093
+UniRef50_V1D3F0		0.000482486561748	0.000118413399551	-0.000364073162197
+UniRef50_A5ITY3		0.00541289166865	0.0010199735881	-0.00439291808055
+UniRef50_A5ZJT5		0.00101484736238	0.000668882039958	-0.000345965322422
+UniRef50_D8TVV3	Metalloproteinase, extracellular matrix glycoprotein VMP22	4.58572590328e-06	1.0922377988e-05	6.33665208472e-06
+UniRef50_H8FWI4	Putative transposase IS66 family	4.61013001007e-06	1.7371959598e-05	1.27618295879e-05
+UniRef50_UPI00047CB6D2	hypothetical protein, partial	3.20670544773e-05	4.43394205753e-05	1.2272366098e-05
+UniRef50_I0C181	PTS system, galactitol specific IIB component	0.00115534899334	0.000729177049855	-0.000426171943485
+UniRef50_I4XYD4		0.000128209819713	0.000196886002487	6.8676182774e-05
+UniRef50_Q165A6	Molybdate ABC transporter, periplasmic molybdate binding protein	0.00184129343403	0.00223202173189	0.00039072829786
+UniRef50_P48261	Anthranilate synthase component 2	1.96215309984e-05	1.53756294027e-05	-4.2459015957e-06
+UniRef50_U2YVN6		0.000148288099254	5.64074088393e-05	-9.18806904147e-05
+UniRef50_Q4SV06	Chromosome undetermined SCAF13832, whole genome shotgun sequence	5.28288961889e-05	1.95949180832e-05	-3.32339781057e-05
+UniRef50_Q5VRS0		6.31229118241e-05	6.49564446533e-05	1.8335328292e-06
+UniRef50_C9A4P2	Phosphorylase	0.00566072481381	0.00213946924431	-0.0035212555695
+UniRef50_UPI0003DF7732	PREDICTED	1.34800324382e-05	2.28127081282e-05	9.33267569e-06
+UniRef50_D3QCK9	Late competence protein ComGA	0.0220451892958	0.00661979921968	-0.0154253900761
+UniRef50_E2ZYI5		0.000217780378186	0.00101794773381	0.000800167355624
+UniRef50_L9P8Z2	Putative glycin rich signal peptide protein	3.67660281365e-05	8.00399423533e-06	-2.87620339012e-05
+UniRef50_Q985R5	Mlr7561 protein	2.58092950644e-06	4.04626451887e-06	1.46533501243e-06
+UniRef50_W0AF71		9.79926806907e-05	6.33057600639e-05	-3.46869206268e-05
+UniRef50_UPI0004573A07	PREDICTED	7.83291576413e-06	3.93432708724e-05	3.15103551083e-05
+UniRef50_A6LZF1		0.000772284289432	0.00027685941112	-0.000495424878312
+UniRef50_B9E8Q8	50S ribosomal protein L10	0.0215147270362	0.00191740295706	-0.0195973240791
+UniRef50_Q9I0J3	NADH quinone oxidoreductase subunit J	0.000808691009357	0.000554793754376	-0.000253897254981
+UniRef50_UPI000444A579	hypothetical protein STEHIDRAFT_80731	3.300956938e-06	3.64684049008e-05	3.31674479628e-05
+UniRef50_UPI000479C855	hypothetical protein	1.11523881181e-05	2.99177571316e-05	1.87653690135e-05
+UniRef50_UPI000416282A	dihydroorotase	4.11615113161e-06	5.7326959942e-05	5.32108088104e-05
+UniRef50_S3MQQ9	BASS family bile acid	0.000438625383761	0.00485945185808	0.00442082647432
+UniRef50_O58888	Probable aminomethyltransferase	6.92695761253e-06	6.02185472828e-06	-9.0510288425e-07
+UniRef50_F0KLK8	LysR family transcriptional regulatory protein	0.000127529050285	0.00331039012365	0.00318286107336
+UniRef50_A1KVW4	Multidrug resistance translocase	0.000263706978085	0.00223145302191	0.00196774604382
+UniRef50_A6LZ84	Binding protein dependent transport systems inner membrane component	0.000185042151398	0.000545200071126	0.000360157919728
+UniRef50_M1N6G4	Signal peptidase I	0.000311971891609	0.00103837585418	0.000726403962571
+UniRef50_Q1M8E0	Methionine import ATP binding protein MetN	2.51665618526e-05	3.43210735272e-05	9.1545116746e-06
+UniRef50_I6U0Z0		0.00457416180151	0.00095912415244	-0.00361503764907
+UniRef50_UPI0002F158F5	hypothetical protein	1.38537865438e-05	5.43371233202e-06	-8.42007421178e-06
+UniRef50_O66646	Lipoprotein releasing system ATP binding protein LolD	1.06055089798e-05	2.70610951845e-05	1.64555862047e-05
+UniRef50_D4M6I9		0.0131192652553	0.00299388119984	-0.0101253840555
+UniRef50_H0I183		4.21746446555e-05	5.95137274357e-05	1.73390827802e-05
+UniRef50_Q5YVA5	2 isopropylmalate synthase	3.5429807812e-06	1.32324547654e-05	9.6894739842e-06
+UniRef50_Q5XCA7	Dihydroneopterin aldolase	0.000628271925124	0.00169001702024	0.00106174509512
+UniRef50_A5UNB1	Multidrug ABC transporter, permease component	0.00211054162806	0.000380102774321	-0.00173043885374
+UniRef50_C2MXE0	Phage infection protein	3.07313621275e-06	0.000284324842713	0.0002812517065
+UniRef50_A6LWC3	Sigma 54 factor, interaction domain containing protein	0.000202345068466	0.00122489058755	0.00102254551908
+UniRef50_Q7W4T6	Holliday junction ATP dependent DNA helicase RuvB	0.0171086000908	0.0335187720211	0.0164101719303
+UniRef50_F5LXC8		0.00461330872905	0.000672698455794	-0.00394061027326
+UniRef50_F3CNA8	Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family	0.000104667778825	0.00585929007876	0.00575462229993
+UniRef50_C5N5T3	ABC 2 type transporter	0.00830264815402	0.00104951229289	-0.00725313586113
+UniRef50_UPI000455DA16	glutaredoxin	6.5007381108e-06	4.40060170106e-05	3.75052788998e-05
+UniRef50_A3M105	Acyl CoA synthetase AMP acid ligases II	0.000213301651782	0.0061998970914	0.00598659543962
+UniRef50_W7Q7T2		7.63153127241e-05	4.61480144152e-05	-3.01672983089e-05
+UniRef50_UPI00024907AC	sugar ABC transporterATPase	4.78284726152e-05	8.02367861166e-05	3.24083135014e-05
+UniRef50_P54575	Riboflavin biosynthesis protein RibC	9.09030453441e-06	0.000209444471765	0.000200354167231
+UniRef50_H0C7J0	Single stranded DNA specific exonuclease RecJ	0.00937460457052	0.00117558171318	-0.00819902285734
+UniRef50_E3HWF4		0.000220218003144	0.000561954728218	0.000341736725074
+UniRef50_Q31C00	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	4.30325382334e-05	1.75931709586e-05	-2.54393672748e-05
+UniRef50_Q796Q6		0.000284677420468	0.00178747455273	0.00150279713226
+UniRef50_UPI0004707FBC	hypothetical protein	1.06413607531e-05	7.04879028693e-05	5.98465421162e-05
+UniRef50_UPI00037C6C2F	hypothetical protein	1.38461124877e-05	1.26658272601e-05	-1.1802852276e-06
+UniRef50_V4RDS5	RsbR, positive regulator of sigma B	2.51259726906e-05	0.00131958374197	0.00129445776928
+UniRef50_A7ZHD9	Glutathione regulated potassium efflux system ancillary protein KefF	0.00580613384242	2.14249049249e-05	-0.0057847089375
+UniRef50_UPI00046D8A91	hypothetical protein, partial	0.00015529352173	0.000467413024309	0.000312119502579
+UniRef50_UPI0003B35384	hypothetical protein	6.63946008955e-06	1.95681212462e-06	-4.68264796493e-06
+UniRef50_X1LC15	Marine sediment metagenome DNA, contig	3.30202914128e-05	5.9891760454e-05	2.68714690412e-05
+UniRef50_H0Z2E2		0.000644026757158	0.000316443753626	-0.000327583003532
+UniRef50_E3F521	ABC transporter, inner membrane subunit	0.00818930250718	0.00261854293068	-0.0055707595765
+UniRef50_A4VS30	Radical SAM domain protein	0.00118326503208	0.000341521022969	-0.000841744009111
+UniRef50_U6PNF3	ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752	4.33524741202e-06	3.67319262976e-05	3.23966788856e-05
+UniRef50_C1FKU5	Dipeptidase family protein	0.000410514741036	0.000726853743859	0.000316339002823
+UniRef50_G5PHU3	Carbamoyl phosphate synthase small chain	0.000203943213215	0.000274113606978	7.0170393763e-05
+UniRef50_P17411	6 phospho beta glucosidase	0.00328557830803	0.0021020483664	-0.00118352994163
+UniRef50_UPI00035D7ED2	hypothetical protein	0.00119032649914	8.64696445363e-05	-0.0011038568546
+UniRef50_Q0B261	MaoC domain protein dehydratase	0.00747185637879	0.00442097298147	-0.00305088339732
+UniRef50_A6LWB4	SEC C motif domain protein	0.000375209077807	0.000762209805397	0.00038700072759
+UniRef50_UPI0002D6628B	hypothetical protein	2.16320823767e-05	1.30169383631e-05	-8.6151440136e-06
+UniRef50_P50863	Protein mrp homolog SalA	0.0301749264577	0.00877638967263	-0.0213985367851
+UniRef50_A9B5M8		6.20970439722e-06	0.000266958747697	0.0002607490433
+UniRef50_Q9KDV3	UDP glucose 4 epimerase	0.00689550785016	0.00314836124039	-0.00374714660977
+UniRef50_Q2K6Q4	Zinc import ATP binding protein ZnuC	1.68878845071e-05	7.96219583535e-06	-8.92568867175e-06
+UniRef50_B8DU64	Tyrosine  tRNA ligase	4.13686848752e-06	7.230428841e-05	6.81674199225e-05
+UniRef50_A3VHM4		7.35022931598e-05	1.39405286718e-05	-5.9561764488e-05
+UniRef50_UPI00037AF9BE	hypothetical protein	1.42529060094e-05	4.1711924368e-05	2.74590183586e-05
+UniRef50_P04043	Modification methylase DpnIIA	0.00482911064817	0.000824600185978	-0.00400451046219
+UniRef50_C6W622		7.5258739758e-05	3.2736190774e-05	-4.2522548984e-05
+UniRef50_UPI00036DC86C	peptide ABC transporter permease	2.29320203334e-05	9.61813969053e-06	-1.33138806429e-05
+UniRef50_F4GXS4	DNA 3 methyladenine glycosidase I	0.000206276496643	0.00162559654236	0.00141932004572
+UniRef50_E6YU01		2.29363489161e-05	4.4064272873e-05	2.11279239569e-05
+UniRef50_E8SEA5	General stress protein 13	0.00446045252914	0.00177178771359	-0.00268866481555
+UniRef50_P28635	D methionine binding lipoprotein MetQ	0.00464171252436	0.00080895964282	-0.00383275288154
+UniRef50_I4WI90	Putative thioesterase	1.54327418272e-06	0.00086781584673	0.000866272572547
+UniRef50_X7FDP3		0.000291741751631	5.01911798096e-05	-0.000241550571821
+UniRef50_A0A023SGI9	CAAX protease	0.000851275264569	0.000301343576728	-0.000549931687841
+UniRef50_K4L3Q5	D serine D alanine glycine transporter	0.000785716709317	0.00028620019828	-0.000499516511037
+UniRef50_M8AG73		3.68334091703e-05	1.46074368174e-05	-2.22259723529e-05
+UniRef50_G4UTF3		1.77385028013e-06	1.59680190438e-05	1.41941687637e-05
+UniRef50_A7MGZ5	Membrane bound lytic murein transglycosylase F	0.00269266048106	0.000802903458375	-0.00188975702268
+UniRef50_U1Y4T1		8.49502983546e-05	3.4671457531e-05	-5.02788408236e-05
+UniRef50_S9S5F9	Malate synthase G	0.00282575308059	0.00043871990663	-0.00238703317396
+UniRef50_I0E6L1		0.000983793532167	0.00147501773872	0.000491224206553
+UniRef50_UPI0003A51EC3	hypothetical protein	0.000336236043652	0.000259239243773	-7.6996799879e-05
+UniRef50_B9KP07		0.00494288382512	0.00126620616702	-0.0036766776581
+UniRef50_M1XHM6	Universal stress protein family protein	0.00502028774384	0.0020844896286	-0.00293579811524
+UniRef50_Q5P082	Holo [acyl carrier protein] synthase	2.09828006362e-05	2.01149911956e-05	-8.678094406e-07
+UniRef50_Q9I472	Cobyrinic acid a,c diamide adenosyltransferase	0.000148660742826	9.65942474268e-05	-5.20664953992e-05
+UniRef50_P0ABE0	Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.00165506342382	0.00042288788334	-0.00123217554048
+UniRef50_UPI00037E3D20	50S ribosomal protein L13	0.000633454175379	7.7100665753e-05	-0.000556353509626
+UniRef50_X1H5Y2	Marine sediment metagenome DNA, contig	2.141424223e-05	4.1065703565e-05	1.9651461335e-05
+UniRef50_W5X593	Carbohydrate esterase, family 1	1.96546723015e-06	1.25202187362e-05	1.05547515061e-05
+UniRef50_UPI0003B6353B	MerR family transcriptional regulator	2.50443556522e-05	2.60511440178e-05	1.0067883656e-06
+UniRef50_UPI00036BDAA2	hypothetical protein, partial	4.05244406434e-05	0.000134912913712	9.43884730686e-05
+UniRef50_Q5M0P7	Bifunctional protein FolD	2.00406885489e-05	3.41436444395e-06	-1.6626324105e-05
+UniRef50_Q8P5Q4	Acetylornithine aminotransferase	1.23800413167e-05	3.91710610939e-05	2.67910197772e-05
+UniRef50_P20170	Anthranilate synthase component 1	1.25712203452e-05	1.82844323845e-05	5.7132120393e-06
+UniRef50_A0A058V0Y9		0.000186840445771	0.00028946924178	0.000102628796009
+UniRef50_UPI0003B715FE	branched chain amino acid aminotransferase	0.000146317082017	2.57000146822e-05	-0.000120617067335
+UniRef50_L1KZM9		8.06549814219e-05	0.000809326023078	0.000728671041656
+UniRef50_B8D0U9	Phosphoglucosamine mutase	4.84837432011e-06	2.96122257878e-05	2.47638514677e-05
+UniRef50_D1DII4	Ferredoxin	0.000184527919256	0.00282591860403	0.00264139068477
+UniRef50_A7FWJ9	Cysteine desulfurase IscS	0.000303476986329	0.00130673092403	0.0010032539377
+UniRef50_E1SA68	LPS assembly protein LptD	0.000171141815044	0.00456060117513	0.00438945936009
+UniRef50_J3H4T2	Transposase	0.000177811779191	2.93750856466e-05	-0.000148436693544
+UniRef50_A0A059IPF2	FlaF protein	2.51534210708e-05	3.98785369308e-05	1.472511586e-05
+UniRef50_UPI0004784587	hypothetical protein	6.4768102071e-05	6.52550023471e-06	-5.82426018363e-05
+UniRef50_UPI00046D4969	hypothetical protein	3.42969315155e-06	8.42584593889e-06	4.99615278734e-06
+UniRef50_A1B1F4	3 oxoacyl [acyl carrier protein] synthase II	0.00551625001789	0.00210957637674	-0.00340667364115
+UniRef50_UPI0003B5466F	peroxiredoxin	1.83334141024e-05	0.00019129329372	0.000172959879618
+UniRef50_P44978		0.00397289545936	0.000231620945253	-0.00374127451411
+UniRef50_A5UK42		0.00267146974361	0.00193076025189	-0.00074070949172
+UniRef50_UPI000388D459	PREDICTED	3.47144547592e-05	0.000569742839604	0.000535028384845
+UniRef50_A9GRA4	50S ribosomal protein L1	0.00502704756661	0.00926843335913	0.00424138579252
+UniRef50_W2BRM3		1.09532163711e-05	4.98773605088e-05	3.89241441377e-05
+UniRef50_C3YW49		3.79652007759e-05	1.51298871289e-05	-2.2835313647e-05
+UniRef50_X1A8H4	Marine sediment metagenome DNA, contig	0.000147598886649	7.96131890244e-05	-6.79856976246e-05
+UniRef50_M2QYI1		0.000138633464709	0.00014893423944	1.0300774731e-05
+UniRef50_Q1WQZ0	Fructose 1,6 bisphosphatase class 3	0.0124838474982	0.00293824537343	-0.00954560212477
+UniRef50_A0A011PL09	Fatty acid oxidation complex subunit alpha	5.85157687511e-06	1.15012731205e-05	5.64969624539e-06
+UniRef50_Q6A8B2	Homoserine kinase	0.000264592982837	0.00660338950525	0.00633879652241
+UniRef50_W7SMQ0	PE PGRS family protein	1.47296256509e-05	0.000123404235254	0.000108674609603
+UniRef50_UPI0003726300	hypothetical protein	4.09551538968e-05	1.84903252954e-05	-2.24648286014e-05
+UniRef50_UPI00040B37CB	hypothetical protein	2.21532000554e-05	9.42888038672e-06	-1.27243196687e-05
+UniRef50_C1DFE7	Anti sigma factor, FecR family	2.41785134084e-05	1.0202629155e-05	-1.39758842534e-05
+UniRef50_O34744	Uroporphyrinogen III C methyltransferase	7.00882112811e-05	9.03855550152e-06	-6.10496557796e-05
+UniRef50_P48027	Sensor protein GacS	2.48318411495e-06	5.1181506508e-06	2.63496653585e-06
+UniRef50_UPI000468EA55	hypothetical protein	2.95787550158e-06	1.52562386234e-05	1.22983631218e-05
+UniRef50_UPI00047248BA	delta aminolevulinic acid dehydratase	4.52208587525e-05	3.55751592873e-05	-9.6456994652e-06
+UniRef50_Q0AKG2	Two component transcriptional regulator, winged helix family	0.0111900466073	0.00229351544746	-0.00889653115984
+UniRef50_G7M0N1		0.000648653022939	0.000630049294243	-1.8603728696e-05
+UniRef50_R5LUL7	Flagellar biosynthesis type III secretory pathway ATPase FliI	0.000539961738701	0.000571989025895	3.2027287194e-05
+UniRef50_G7M7Z8		0.000213671314441	0.00076233948289	0.000548668168449
+UniRef50_UPI0003750432	hypothetical protein, partial	2.01743962303e-05	9.09480121407e-06	-1.10795950162e-05
+UniRef50_A0A059G6X4	Beta gamma crystallin domain containing protein	1.2945824406e-05	1.6871395054e-05	3.925570648e-06
+UniRef50_T1B8D6	Thiamine biosynthesis protein ThiC 	8.24307113444e-06	3.10481406714e-05	2.2805069537e-05
+UniRef50_UPI0004788CA9	hypothetical protein	2.18058087671e-05	3.58614882825e-05	1.40556795154e-05
+UniRef50_UPI000476817E	Clp protease ClpS	0.000919082434485	0.000417599445546	-0.000501482988939
+UniRef50_Q28VD6	DNA polymerase III, delta subunit	0.000724313627751	0.000181361333789	-0.000542952293962
+UniRef50_UPI0003B2FE9D	osmotically inducible protein OsmC	1.40084936199e-05	0.000234031341406	0.000220022847786
+UniRef50_C2PG19	Phosphinothricin N acetyltransferase	0.0237516419707	0.00633065195597	-0.0174209900147
+UniRef50_Q82JT9	Ribonuclease 3	2.39662532332e-05	6.7664828567e-05	4.36985753338e-05
+UniRef50_UPI000373DA51	hypothetical protein	2.15149136438e-05	1.97564077591e-05	-1.7585058847e-06
+UniRef50_F8G053	Inosine uridine preferring nucleoside hydrolase	0.000279184857886	0.000436950284461	0.000157765426575
+UniRef50_Q7VIB6	Bifunctional protein GlmU	9.84746057885e-05	0.00278275756518	0.00268428295939
+UniRef50_C5BKK1	ATP synthase subunit a	0.000938268004148	0.00574004909186	0.00480178108771
+UniRef50_UPI0004785186	ATPase P	3.58274660104e-06	1.60207591935e-05	1.24380125925e-05
+UniRef50_UPI000378BB5D	hypothetical protein	3.81936517707e-06	5.45770653671e-06	1.63834135964e-06
+UniRef50_U3T2I1		0.000251371370659	0.00704620782878	0.00679483645812
+UniRef50_UPI000378F946	hypothetical protein	0.000132455923941	2.90184227904e-05	-0.000103437501151
+UniRef50_A5ITB1	Coproporphyrinogen III oxidase, anaerobic	0.0175518210439	0.00122752642058	-0.0163242946233
+UniRef50_UPI00047ACB4C	amino acid permease, partial	3.39300477265e-05	8.40792595348e-05	5.01492118083e-05
+UniRef50_Q9RX79	Cytochrome B6	0.000213809857265	0.0453867582823	0.045172948425
+UniRef50_UPI000468517A	potassium transporter	5.89251203707e-06	0.00366828276945	0.00366239025741
+UniRef50_D2QXC4	Magnesium protoporphyrin chelatase, putative	1.04859875314e-05	0.000114536901378	0.000104050913847
+UniRef50_UPI00037FEB36	hypothetical protein	0.00132582249142	0.000204421796698	-0.00112140069472
+UniRef50_I3UM32		0.000209370048605	0.000237961180793	2.8591132188e-05
+UniRef50_D2ZQ55		0.000829439943426	0.00074138084986	-8.8059093566e-05
+UniRef50_W8U544	Putative secreted protein	4.6899033242e-05	7.58096882506e-06	-3.93180644169e-05
+UniRef50_UPI00046F47C7	hypothetical protein, partial	0.000298369729944	3.94611317754e-05	-0.000258908598169
+UniRef50_Q49Z66	Thymidine kinase	4.76174571811e-05	3.37765706948e-05	-1.38408864863e-05
+UniRef50_Q9KLJ6	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	2.22759252388e-05	3.57946141101e-05	1.35186888713e-05
+UniRef50_G4R5C5		6.25629541099e-05	7.23209396121e-05	9.7579855022e-06
+UniRef50_P93313	NADH ubiquinone oxidoreductase chain 4	2.58551834503e-05	1.06790272302e-05	-1.51761562201e-05
+UniRef50_T1Y5K7		0.00868969142307	0.00443157993189	-0.00425811149118
+UniRef50_A3M7V0	Putative non ribosomal peptide synthetase	0.000189689980004	0.00628771955273	0.00609802957273
+UniRef50_Q2RYK8		1.03626842736e-05	0.00090287302008	0.000892510335806
+UniRef50_U6LIK5		2.51950556389e-06	3.57139865895e-06	1.05189309506e-06
+UniRef50_P37313	Dipeptide transport ATP binding protein DppF	0.00345263844561	0.0016243711828	-0.00182826726281
+UniRef50_M0RKR1		0.000230252885681	0.000419295225794	0.000189042340113
+UniRef50_UPI0004749E59	uroporphyrinogen decarboxylase	9.6497517252e-06	1.04106151408e-05	7.608634156e-07
+UniRef50_A0A031ANR6	Paraquat inducible protein B	0.00112674940017	0.000363792886954	-0.000762956513216
+UniRef50_UPI000470B75A	cupin, partial	0.000170196623747	3.97804233774e-05	-0.00013041620037
+UniRef50_UPI000401DB47	ABC transporter substrate binding protein	8.23616356778e-05	2.82560856798e-05	-5.4105549998e-05
+UniRef50_Q9KET5	3 oxoacyl [acyl carrier protein] synthase 3 protein 2	0.00149357144433	0.000751343145592	-0.000742228298738
+UniRef50_D4HFG5	ABC transporter, solute binding protein	0.000228034547552	0.00361520294968	0.00338716840213
+UniRef50_Q9RZB4	First mannosyl transferase	0.000322102715567	0.0674679991308	0.0671458964152
+UniRef50_Q0TGS5	UvrC excinuclease ABC subunit C	0.00377190982747	0.000837743031037	-0.00293416679643
+UniRef50_UPI000470078C	hypothetical protein	5.75435958615e-05	8.08310623353e-05	2.32874664738e-05
+UniRef50_P27848	Pyridoxal phosphate phosphatase YigL	0.00248802542152	0.000224291168501	-0.00226373425302
+UniRef50_W6L595	Genomic scaffold, scaffold_6	2.91214739134e-05	0.000466630290518	0.000437508816605
+UniRef50_UPI00047C3E54	diguanylate cyclase	3.14617089577e-06	1.3035781388e-05	9.88961049223e-06
+UniRef50_P52005	Cytochrome c type protein TorY	0.00273097470716	0.000539693356593	-0.00219128135057
+UniRef50_Q1AU26	Elongation factor G	0.023164579351	0.0660409396751	0.0428763603241
+UniRef50_Q1AVD3	Ribose import ATP binding protein RbsA 2	0.00013868378267	8.77532589782e-05	-5.09305236918e-05
+UniRef50_UPI00037465BE	hypothetical protein	0.000159342110239	3.58039396208e-05	-0.000123538170618
+UniRef50_G8AWA2	ATPase like protein	0.0109362639058	0.00276313915005	-0.00817312475575
+UniRef50_E3FF38		0.000239593606252	0.000433311397738	0.000193717791486
+UniRef50_UPI0003D0828F	PREDICTED	9.19716683423e-05	8.2638310842e-05	-9.3333575003e-06
+UniRef50_I0ECM2	Flagellar motor switch protein FliY	0.000185042151398	0.00340679482314	0.00322175267174
+UniRef50_P77716	Inner membrane ABC transporter permease protein YcjP	0.0031717284922	0.000297798358178	-0.00287393013402
+UniRef50_UPI00047949F3	hypothetical protein	9.64971563377e-06	0.00138616020237	0.00137651048674
+UniRef50_C5N0V3		0.0145834745611	0.00204960639252	-0.0125338681686
+UniRef50_A7GMX2	Na+ antiporter NhaC	0.0207522519701	0.00704507963392	-0.0137071723362
+UniRef50_O32332	Glucitol sorbitol permease IIC component	0.00562360585454	0.0144563315511	0.00883272569656
+UniRef50_F5TRU1		5.77395494687e-05	0.000132073324857	7.43337753883e-05
+UniRef50_UPI00046CFD0F	acetyl CoA acetyltransferase	7.40805091993e-06	0.000188676223604	0.000181268172684
+UniRef50_P33342	Probable fimbrial chaperone YehC	0.00579241303265	0.000293847467856	-0.00549856556479
+UniRef50_F0LCD7		3.80821447047e-05	8.57784341234e-05	4.76962894187e-05
+UniRef50_UPI0001BF5AF2	hypothetical protein SMAC_10608, partial	0.00055548909105	0.000215758393734	-0.000339730697316
+UniRef50_P0A2T5	Multiple antibiotic resistance protein MarR	0.00101544422367	0.00549727676627	0.0044818325426
+UniRef50_D8UG15		9.72730037436e-06	5.99624104221e-06	-3.73105933215e-06
+UniRef50_F2DLE5	Predicted protein 	9.84541520235e-05	3.13788701908e-06	-9.53162650044e-05
+UniRef50_O34580	ATP dependent DNA helicase PcrA	0.0209111507909	0.00713806633559	-0.0137730844553
+UniRef50_Q03EL2	ATP synthase subunit alpha	6.03108358011e-06	1.96243594282e-05	1.35932758481e-05
+UniRef50_UPI00040FB89F	glutathione dependent formaldehyde activating protein	9.5661752435e-05	3.25227362611e-05	-6.31390161739e-05
+UniRef50_K4RNE1	Outer membrane protein	0.000101839745189	0.00577236514584	0.00567052540065
+UniRef50_A0A024L3Z4	N acetylneuraminic acid outer membrane channel	0.000743910886573	0.000252286707733	-0.00049162417884
+UniRef50_G9A5Y6		2.20574570762e-05	1.56489052165e-05	-6.4085518597e-06
+UniRef50_UPI000476B9E7	cytochrome C	0.000680636781735	0.00013111684124	-0.000549519940495
+UniRef50_UPI000344CCAD	hypothetical protein	0.00126023458199	0.000116534021132	-0.00114370056086
+UniRef50_P0AEY4	Nucleoside triphosphate pyrophosphohydrolase	0.00337665976676	0.000414964925331	-0.00296169484143
+UniRef50_T1Y562	Biotin synthesis protein bioC	0.0217796860131	0.00369673225548	-0.0180829537576
+UniRef50_G0DU60	Triacylglycerol lipase	0.000293767863174	0.00402379245706	0.00373002459389
+UniRef50_A5UJN4	Predicted DNA binding protein	0.00172531580641	0.00138003621827	-0.00034527958814
+UniRef50_Q9HYR3		0.000283824051773	0.000540213485111	0.000256389433338
+UniRef50_R7EGC5		1.79979459883e-05	2.27367621807e-05	4.7388161924e-06
+UniRef50_E1V915	Transcriptional regulator, XRE family	0.000479729618263	0.000701119545607	0.000221389927344
+UniRef50_UPI00046D7AC9	ABC transporter permease	6.67537524654e-06	9.52452148357e-06	2.84914623703e-06
+UniRef50_UPI000477BE6D	ABC transporter	1.03496119263e-05	7.29545245869e-06	-3.05415946761e-06
+UniRef50_UPI00046A3121	hypothetical protein	0.000156035826524	0.000141216034798	-1.4819791726e-05
+UniRef50_E4ZBP3	Aminopeptidase N	4.35058765479e-05	0.00372357812775	0.0036800722512
+UniRef50_G8TQ95		7.29213836596e-06	0.000734095934398	0.000726803796032
+UniRef50_C5N3Z5		0.00736953609273	0.00103850008464	-0.00633103600809
+UniRef50_A3PGB1	Tripartite ATP independent periplasmic transporter, DctQ component	0.0087014620406	0.00221733603717	-0.00648412600343
+UniRef50_H4ER30	Phage minor structural, N terminal region domain protein	0.01963767	0.00387506580372	-0.0157626041963
+UniRef50_Q0S8U9		4.26791291087e-05	2.29873868016e-05	-1.96917423071e-05
+UniRef50_Q8CP32	Truncated transposase	0.00199764260132	0.00277130045931	0.00077365785799
+UniRef50_A0A023XH87		2.9029945501e-05	2.07587411369e-05	-8.2712043641e-06
+UniRef50_I6TVV9		0.010020834747	0.00311208730094	-0.00690874744606
+UniRef50_Q4KED8	Phenazine biosynthesis protein, PhzF family	0.000372044995957	0.00187619004443	0.00150414504847
+UniRef50_A0A017HN56	Short chain dehydrogenase reductase SDR	9.65159254695e-06	3.67139013589e-05	2.70623088119e-05
+UniRef50_UPI0004628D47	PREDICTED	5.89136578577e-06	9.98611069883e-05	9.39697412025e-05
+UniRef50_O86034	D beta hydroxybutyrate dehydrogenase	0.00594044244	0.00399506683634	-0.00194537560366
+UniRef50_UPI000382D87E	hypothetical protein	0.0213162101903	0.00216524668711	-0.0191509635032
+UniRef50_A5UN78	Predicted O linked GlcNAc transferase	0.00227068625061	0.000369726089793	-0.00190096016082
+UniRef50_UPI0004076B6B	hypothetical protein	2.51103647358e-05	1.58982874163e-05	-9.2120773195e-06
+UniRef50_A3M684	Molybdenum cofactor guanylyltransferase	0.000569178097632	0.00765349706662	0.00708431896899
+UniRef50_J0D4G5		1.67530680361e-05	9.41890405508e-05	7.74359725147e-05
+UniRef50_Q5LSI2	ABC transporter, permease protein	0.00751048025744	0.00180202699428	-0.00570845326316
+UniRef50_T1JDG9		1.04693207965e-05	5.70835380246e-05	4.66142172281e-05
+UniRef50_UPI000344A1E2	hypothetical protein	4.33324216869e-06	0.000930963900888	0.000926630658719
+UniRef50_A6LRT5		0.000180903828528	0.00186567504472	0.00168477121619
+UniRef50_A6LRT4		0.00023872307185	0.00207087052896	0.00183214745711
+UniRef50_A6LRT6		0.000594103274483	0.00112604128418	0.000531938009697
+UniRef50_UPI00047D7735	hypothetical protein	8.98623087721e-06	0.000247719542784	0.000238733311907
+UniRef50_G2P517		8.17359689927e-06	0.000534261895618	0.000526088298719
+UniRef50_A3PIB1		0.000827470400457	0.00125853190095	0.000431061500493
+UniRef50_Q2YSP8	Undecaprenyl diphosphatase	0.0232878381716	0.00239190723502	-0.0208959309366
+UniRef50_Q5HQE2	Serine protease HtrA like	0.00855169550037	0.0020474736011	-0.00650422189927
+UniRef50_UPI000466061A	DEAD DEAH box helicase	1.68590895097e-06	0.000193590040917	0.000191904131966
+UniRef50_A5UJH6	Predicted acetylesterase	0.00116217052223	0.000575619595141	-0.000586550927089
+UniRef50_Q1LU78	Nucleoside diphosphate kinase	4.61365363831e-05	1.90042768647e-05	-2.71322595184e-05
+UniRef50_B9J455		9.58514673654e-05	0.00148587021482	0.00139001874745
+UniRef50_UPI000185E45C	hypothetical protein, conserved	6.16976772345e-06	5.05647695225e-06	-1.1132907712e-06
+UniRef50_P0AGJ3	tRNA  2 O) methyltransferase	0.00317865269963	0.0243761470242	0.0211974943246
+UniRef50_UPI00037ACD1B	hypothetical protein	2.74207890925e-05	0.000366668204726	0.000339247415633
+UniRef50_W9T2S8	Guanosine 3,5 bis 3 pyrophosphohydrolase	0.00057718263415	0.000425474117023	-0.000151708517127
+UniRef50_UPI0002BA6E86	hypothetical protein	1.45438491376e-05	8.56936443916e-05	7.1149795254e-05
+UniRef50_B9MQS8	FMN dependent NADH azoreductase	0.000381298978638	0.000636743185244	0.000255444206606
+UniRef50_D3E172	Sua5 YciO YrdC YwlC family translation factor	0.00267049450413	0.00419903976289	0.00152854525876
+UniRef50_M9VHD2	Ion channel	0.00045465034883	0.0049631123106	0.00450846196177
+UniRef50_UPI0003F7B6B3	hypothetical protein	1.64338598102e-06	9.7364418445e-05	9.5721032464e-05
+UniRef50_Q9RZL0		0.000178903312256	0.023507939258	0.0233290359457
+UniRef50_Q05763	Bifunctional dihydrofolate reductase thymidylate synthase 2	2.03542407135e-05	4.05693523518e-05	2.02151116383e-05
+UniRef50_J7PC82	Leucine rich repeat domain protein 	2.92290662647e-07	0.00176797023224	0.00176767794158
+UniRef50_Q9RZL3		0.000243539347646	0.0658165891974	0.0655730498498
+UniRef50_D3A510		9.96980162559e-05	9.61183920315e-06	-9.00861770527e-05
+UniRef50_Q4FSU1	Siroheme synthase	2.91241781211e-06	2.10917332665e-05	1.81793154544e-05
+UniRef50_B1ZRT0	NADH quinone oxidoreductase subunit D 1	1.03869559395e-05	2.70617594523e-05	1.66748035128e-05
+UniRef50_A0A036LTT5		0.0180312841599	0.00932579069039	-0.00870549346951
+UniRef50_Q8X5V6	tRNA dihydrouridine synthase A	0.00286694373131	0.0290238222897	0.0261568785584
+UniRef50_F6AH52	Acylglycerol lipase	0.000502408375245	0.00054813939725	4.5731022005e-05
+UniRef50_UPI00040794A2	hypothetical protein	2.30105097267e-05	7.95373070604e-06	-1.50567790207e-05
+UniRef50_A8IGC9	Fibrocystin L like protein	6.87544467031e-06	1.61575720401e-05	9.28212736979e-06
+UniRef50_UPI000418CD46	hypothetical protein	0.000119080364194	5.04368595885e-05	-6.86435046055e-05
+UniRef50_E1XQA2		0.00390117840267	0.00323491156172	-0.00066626684095
+UniRef50_Q8XQ89	3 dehydroquinate dehydratase 2	9.75401700561e-05	0.000149590784113	5.20506140569e-05
+UniRef50_P42357	Histidine ammonia lyase	4.95592082953e-06	6.12671094668e-06	1.17079011715e-06
+UniRef50_A0A029J2G1	Sodium hydrogen exchanger family protein	0.00315056673229	0.000702998674595	-0.0024475680577
+UniRef50_Q9RYX3	GGDEF family protein	0.000418832202133	0.0954436430073	0.0950248108052
+UniRef50_H9KM06		0.000204342617279	0.000138415881957	-6.5926735322e-05
+UniRef50_B6XVC7		3.99374194147e-05	0.00147920717299	0.00143926975358
+UniRef50_Q38XQ8	Ribosome maturation factor RimM	0.0016867464081	0.00126604185097	-0.00042070455713
+UniRef50_B0K2T9	Tryptophan synthase beta chain	0.000418006216396	0.00135154173018	0.000933535513784
+UniRef50_UPI000474CD31	LamB YcsF family protein	0.000236491868839	5.7468587892e-05	-0.000179023280947
+UniRef50_UPI0003781C56	50S ribosomal protein L22	2.27026531461e-05	0.000208406181536	0.00018570352839
+UniRef50_Q2NE88	Methionine aminopeptidase	0.00269742172208	0.000300831957759	-0.00239658976432
+UniRef50_B5F4F0	Periplasmic trehalase	0.00310821292862	0.000672296066341	-0.00243591686228
+UniRef50_UPI00041F5D41	uridine kinase	8.55041207287e-06	0.000570881146976	0.000562330734903
+UniRef50_UPI0003637A82	hypothetical protein	1.15495358044e-05	1.24176342888e-05	8.680984844e-07
+UniRef50_UPI000365DDE9	hypothetical protein	0.000675126330168	0.000475988694477	-0.000199137635691
+UniRef50_P28997	NAD specific glutamate dehydrogenase	3.16649493771e-06	0.000313230427619	0.000310063932681
+UniRef50_A7HY57	Trigger factor	3.14603600418e-05	1.74440692574e-05	-1.40162907844e-05
+UniRef50_B2GCR2	Chorismate synthase	2.40083114425e-05	0.000208794174032	0.00018478586259
+UniRef50_P32166	1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.00127387212935	0.00131045436144	3.658223209e-05
+UniRef50_UPI00029ABD4E	ATP dependent DNA helicase RecQ	7.28383848074e-05	4.0401960299e-05	-3.24364245084e-05
+UniRef50_P24532	Argininosuccinate synthase	0.00383395831919	0.0176343562006	0.0138003978814
+UniRef50_UPI000466FB72	nitrogen regulation protein NR	1.36823686917e-05	1.89384656373e-05	5.2560969456e-06
+UniRef50_UPI0004188538	hypothetical protein	7.64577631509e-06	7.70201057242e-06	5.623425733e-08
+UniRef50_B9V2B9		0.00811031244356	0.0124382159085	0.00432790346494
+UniRef50_Q7U5G1	Acetolactate synthase large subunit	1.34620664341e-05	0.00111638909018	0.00110292702375
+UniRef50_UPI0004780BEC	alpha beta hydrolase	2.83145589501e-05	3.88523724162e-05	1.05378134661e-05
+UniRef50_UPI0002558939	TadC family type II IV secretion system protein, partial	0.00225179067217	0.00130808588777	-0.0009437047844
+UniRef50_W8WRJ5	Ribulose 5 phosphate 3 epimerase	0.000345788692078	0.002292527167	0.00194673847492
+UniRef50_Q46185	Diaminopimelate epimerase	0.00057769569789	0.000449983037122	-0.000127712660768
+UniRef50_O87278	Probable N methylproline demethylase	0.00456724865054	0.000769943270814	-0.00379730537973
+UniRef50_D6K1U6	LuxR family transcriptional regulator	2.95306384962e-05	0.000135930809867	0.000106400171371
+UniRef50_A4WWE4	Peptidase U35, phage prohead HK97	1.62269314735e-05	2.16834002913e-05	5.4564688178e-06
+UniRef50_M9RCR3		1.91390076797e-05	5.2100414836e-05	3.29614071563e-05
+UniRef50_Q1QBI6	Aminoglycoside phosphotransferase	0.00142037892693	0.00572302671179	0.00430264778486
+UniRef50_G7Z5T4		2.47405459669e-05	3.7429315114e-05	1.26887691471e-05
+UniRef50_Q58409	Methanogen homoaconitase large subunit	0.0022181315827	0.000864675947631	-0.00135345563507
+UniRef50_W5SE24	Glycerol 3 phosphate transporter	0.0220409797202	0.00537133991688	-0.0166696398033
+UniRef50_F2U516		8.7347317129e-05	4.98178742387e-06	-8.23655297051e-05
+UniRef50_V6QC91		0.000157441484222	6.69576242383e-05	-9.04838599837e-05
+UniRef50_Q9CKP2	FKBP type peptidyl prolyl cis trans isomerase SlyD	7.34486223077e-05	1.93510993134e-05	-5.40975229943e-05
+UniRef50_Q8DTK1		0.00281101294406	0.000707742688884	-0.00210327025518
+UniRef50_UPI0004011CB7	hypothetical protein	3.10665549637e-06	1.93916891711e-05	1.62850336747e-05
+UniRef50_K7RYE1	Band 7 stomatin like protein	0.0004787206693	0.00179930522595	0.00132058455665
+UniRef50_Q3KK80	Carbonic anhydrase	0.000829159217481	0.00051238147558	-0.000316777741901
+UniRef50_Q17YP3	Major facilitator family transporter	9.7373857834e-05	0.003403435026	0.00330606116817
+UniRef50_F8DH56	NmrA family protein	0.00741595555069	0.00169988751171	-0.00571606803898
+UniRef50_UPI00045602FF	hypothetical protein PFL1_03008	0.000103950384811	0.000104627146121	6.7676131e-07
+UniRef50_P0A2M0	Protein sirB1	0.00153443933971	0.000221211015129	-0.00131322832458
+UniRef50_UPI00034AAE41	hypothetical protein	2.51644218468e-05	0.000493180644338	0.000468016222491
+UniRef50_B5EHD3	TRAP proton dicarboxylate symporter, large membrane protein component	0.00862946285234	0.00301747736325	-0.00561198548909
+UniRef50_A6LTN2	Protein translocase subunit SecD	0.000152212092278	0.000457791257273	0.000305579164995
+UniRef50_B9DQ89	ATP phosphoribosyltransferase	0.0153208103155	0.00517155505528	-0.0101492552602
+UniRef50_B9KLF6		0.00461146873898	0.00183202081075	-0.00277944792823
+UniRef50_A7A2K7		0.000407487040984	1.09838255389e-05	-0.000396503215445
+UniRef50_B9KLF4		0.00157130282882	0.000188500024587	-0.00138280280423
+UniRef50_UPI00029AF728	30S ribosomal protein S3	0.000847326021898	0.00186401251544	0.00101668649354
+UniRef50_UPI000479EB25	hypothetical protein	1.2928359979e-05	3.73671725352e-05	2.44388125562e-05
+UniRef50_A1AH06		0.00315038199815	0.000349907286252	-0.0028004747119
+UniRef50_K7RXC5	Transporter, small conductance mechanosensitive ion channel family protein	0.000831585096335	0.00608376999007	0.00525218489374
+UniRef50_UPI000361E642	hypothetical protein	9.59133516068e-06	1.49187934427e-05	5.32745828202e-06
+UniRef50_V5ERF8		1.9402305346e-05	1.31153117301e-05	-6.2869936159e-06
+UniRef50_Q1QJR5	S adenosylmethionine synthase	0.00744469999927	0.00123424684439	-0.00621045315488
+UniRef50_P58894	Carbamoyl phosphate synthase small chain	1.03049203107e-05	0.000686984970524	0.000676680050213
+UniRef50_H4VVH3	MpaA family protein	0.00108289701627	0.000413030356916	-0.000669866659354
+UniRef50_UPI000475B05E	lysyl tRNA synthetase	3.88614468321e-06	3.04271908336e-05	2.65410461504e-05
+UniRef50_R6V5M5	Radical SAM domain protein	0.00507590323745	0.00975137652696	0.00467547328951
+UniRef50_UPI000393F4A9	PREDICTED	4.23118060619e-05	4.16382829364e-05	-6.735231255e-07
+UniRef50_Q8XD89	DNA ligase B	0.00312678283065	0.00046494930119	-0.00266183352946
+UniRef50_A9CEU9	GGDEF family protein	0.0111451750856	0.00923306002996	-0.00191211505564
+UniRef50_Q5LYF9		0.0050603114479	0.0029411924999	-0.002119118948
+UniRef50_X1NF57	Marine sediment metagenome DNA, contig	0.000457588709443	5.98966998918e-05	-0.000397692009551
+UniRef50_UPI0004720041	hypothetical protein, partial	9.08733535419e-06	9.55654045788e-05	8.64780692246e-05
+UniRef50_UPI0003D34C26	transposase and inactivated derivatives	0.000220293767402	0.000133435399519	-8.6858367883e-05
+UniRef50_Q9ZB62	Ornithine carbamoyltransferase	0.000282670050232	0.000815075370855	0.000532405320623
+UniRef50_D8U4W8		9.43608139066e-06	2.35808508521e-06	-7.07799630545e-06
+UniRef50_B9TE37		5.2904521381e-05	0.000117044549992	6.4140028611e-05
+UniRef50_A5UMT9	Glycosyltransferase, GT2 family	0.00429768274217	0.000782350451192	-0.00351533229098
+UniRef50_Q82TB9	3 dehydroquinate synthase	0.00301419263178	0.00938088108676	0.00636668845498
+UniRef50_W8RUR9	Iron binding protein SufA for iron sulfur cluster assembly	0.00945856580985	0.000519618836113	-0.00893894697374
+UniRef50_U3AME1		0.000164069545703	9.56066153988e-05	-6.84629303042e-05
+UniRef50_A6QAR3	Probable transcriptional regulatory protein SUN_1622	0.000176670509603	0.00183125175383	0.00165458124423
+UniRef50_UPI000477BAB8	transcriptional regulator	4.85780548668e-06	4.55575110858e-05	4.06997055991e-05
+UniRef50_A7MQ64	Secretion monitor	0.0020566817819	0.00390723498687	0.00185055320497
+UniRef50_B9KRG8		0.0122833043157	0.00124801973752	-0.0110352845782
+UniRef50_P43334	Phenylalanine 4 hydroxylase	0.00114711944073	0.000231318568035	-0.000915800872695
+UniRef50_Q3J1E7		0.0182143887178	0.00457288746754	-0.0136415012503
+UniRef50_Q98P43	Msr9765 protein	2.57137025321e-05	3.07840869605e-05	5.0703844284e-06
+UniRef50_Q094Z8		7.06840819553e-05	9.29807331267e-05	2.22966511714e-05
+UniRef50_Q3J1E8		0.000670093471334	0.00152750019929	0.000857406727956
+UniRef50_UPI000469C857	hypothetical protein	0.00117979860099	0.000171246011404	-0.00100855258959
+UniRef50_UPI000380F48F	hypothetical protein, partial	0.000174984270575	9.29962728159e-06	-0.000165684643293
+UniRef50_C9AC53	His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region	0.00536846382667	0.00240200840033	-0.00296645542634
+UniRef50_J9SGG8	Transcriptional regulator	5.56140130421e-06	2.18466882508e-05	1.62852869466e-05
+UniRef50_UPI0003B37E29	acetyltransferase	9.92315765809e-05	0.0002189735375	0.000119741960919
+UniRef50_A0A016TVG0		5.53460263769e-06	1.65688408392e-05	1.10342382015e-05
+UniRef50_Q88PE8	Sensor histidine kinase	0.00092565746271	0.000286558373967	-0.000639099088743
+UniRef50_UPI000465A9FC	ArsR family transcriptional regulator	2.29313381634e-05	1.23666290953e-05	-1.05647090681e-05
+UniRef50_UPI0003338868	PREDICTED	2.86127081236e-06	5.3256280835e-06	2.46435727114e-06
+UniRef50_UPI000366BC80	hypothetical protein	5.32221151294e-05	1.67993177673e-05	-3.64227973621e-05
+UniRef50_A0A024J4K6	Transposase	2.07638918343e-05	1.59791563227e-05	-4.7847355116e-06
+UniRef50_P39328	Inner membrane ABC transporter permease protein YtfT	0.00162181968124	0.00167711524295	5.529556171e-05
+UniRef50_Q4FPS9	Chaperone protein DnaK	0.000397749549214	0.0162548128326	0.0158570632834
+UniRef50_I0C5G1		0.0113236480702	0.00247062266416	-0.00885302540604
+UniRef50_B9KUT5		0.000521199508258	0.000436265580396	-8.4933927862e-05
+UniRef50_Q5HMF5	L threonine dehydratase biosynthetic IlvA	0.00935151266836	0.00766427457168	-0.00168723809668
+UniRef50_R9ZNY2	Paraquat inducible protein A	0.00254532604165	0.000633254204115	-0.00191207183753
+UniRef50_UPI00037ED0B2	hypothetical protein	0.000100597498084	6.84798350221e-05	-3.21176630619e-05
+UniRef50_A5UJB5	UPF0280 protein Msm_0088	0.00246974999468	0.000759665090296	-0.00171008490438
+UniRef50_Q2G0L5	Serine aspartate repeat containing protein C	0.00629022714757	0.00281800987835	-0.00347221726922
+UniRef50_F9YWF3		0.00150822763527	0.00630456882887	0.0047963411936
+UniRef50_Q3IW26	DNA topology modulation kinase FlaR, putative	0.0162208188428	0.00456000613515	-0.0116608127077
+UniRef50_UPI0003B577FD	ATP dependent DNA helicase PcrA	2.45114974533e-05	1.08418654993e-05	-1.3669631954e-05
+UniRef50_P50351	Transcriptional regulatory protein ChvI	0.00585320222869	0.000890938557008	-0.00496226367168
+UniRef50_F9YWF9		0.0003380471542	0.0192141123194	0.0188760651652
+UniRef50_Q82Z75	Sensor protein LytS	1.58089448959e-05	0.00145994586201	0.00144413691711
+UniRef50_D2ZQR5		0.00266606869964	0.000440156149458	-0.00222591255018
+UniRef50_UPI000471299E	hypothetical protein	1.1643930785e-05	4.21811596073e-05	3.05372288223e-05
+UniRef50_F7ZF49	SPFH domain band 7 family protein	0.00485607401415	0.0014802184217	-0.00337585559245
+UniRef50_D2N911	UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.0192996205021	0.0062515864109	-0.0130480340912
+UniRef50_Q9KPE3	Dephospho CoA kinase	0.00339698939991	0.000295316705201	-0.00310167269471
+UniRef50_E6V5R9	Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.00979932843947	0.00211487333471	-0.00768445510476
+UniRef50_Q28FD1	Alcohol dehydrogenase [NADP]	6.88976363871e-06	1.29546042773e-05	6.06484063859e-06
+UniRef50_Q9KT69	Methionine  tRNA ligase	0.00460355028949	0.00346890030383	-0.00113464998566
+UniRef50_Q4FQB2	tRNA  methyltransferase	0.00319314059569	0.0027111249858	-0.00048201560989
+UniRef50_I0C0P4	AzlD	0.00410522171464	4.65901746469e-05	-0.00405863153999
+UniRef50_B5XXI0	Phosphate acyltransferase	0.00249338397329	0.000475467875111	-0.00201791609818
+UniRef50_D6XNE0	Molybdenum cofactor synthesis domain containing protein	0.000348034802494	0.00229714957582	0.00194911477333
+UniRef50_UPI00045607F1	hypothetical protein PFL1_05669	1.99540548916e-06	0.000296425488266	0.000294430082777
+UniRef50_S5R225	Ribosomal protein alanine acetyltransferase	0.00365719755574	0.0009803513018	-0.00267684625394
+UniRef50_C5N425		0.0172968129285	0.00333493053524	-0.0139618823933
+UniRef50_UPI0004727AC2	hypothetical protein	3.36941772522e-06	1.12033516097e-05	7.83393388448e-06
+UniRef50_UPI00035D95F2	putrescine spermidine ABC transporter substrate binding protein	3.75736058821e-05	0.000250348787787	0.000212775181905
+UniRef50_Q8DN13	D alanine transfer from undecaprenol phosphate to the poly chain	0.00010544301365	0.00326941484581	0.00316397183216
+UniRef50_A3PNG2	Hemolysin type calcium binding toxin	0.00136638593906	0.000511309036438	-0.000855076902622
+UniRef50_UPI0003715F65	hypothetical protein, partial	3.92920096159e-06	1.71192144733e-05	1.31900135117e-05
+UniRef50_UPI000347561C	hypothetical protein	2.99927756463e-05	1.47996010276e-05	-1.51931746187e-05
+UniRef50_Q7M7C0	Biopolymer transport exbD transmembrane protein	0.00105837193136	0.00232087601977	0.00126250408841
+UniRef50_P16681	Protein PhnB	0.00337951455394	0.000653837723686	-0.00272567683025
+UniRef50_Q47098	4 hydroxy 2 oxo heptane 1,7 dioate aldolase	9.54071793269e-05	0.000526289050167	0.00043088187084
+UniRef50_E2ZTL2	Type 4 fimbrial biogenesis protein PilV	0.000552487925847	0.000624949772005	7.2461846158e-05
+UniRef50_UPI000474C4AE	hypothetical protein, partial	1.36385525906e-05	1.42680508036e-05	6.29498213e-07
+UniRef50_Q47534		0.00318054924359	0.000484734087685	-0.00269581515591
+UniRef50_Q47536		0.00185816274961	0.000450368108252	-0.00140779464136
+UniRef50_UPI00046F326A	TetR family transcriptional regulator	1.02255927399e-05	1.3955715416e-05	3.7301226761e-06
+UniRef50_UPI0003B387E8	hypothetical protein, partial	0.000165077851725	0.000104649368071	-6.0428483654e-05
+UniRef50_O21042	Cytochrome c oxidase subunit 1+2	1.1587315678e-05	1.29271343131e-05	1.3398186351e-06
+UniRef50_G0DVK6	ROK family transcriptional regulator	0.000505778315157	0.00470921764459	0.00420343932943
+UniRef50_UPI0004743039	hypothetical protein	1.5187478588e-05	9.72630698803e-06	-5.46117159997e-06
+UniRef50_B8DVS6	Non canonical purine NTP pyrophosphatase	5.28946283753e-05	2.46078635043e-05	-2.8286764871e-05
+UniRef50_A3D954	Methyltransferase type 11	0.00160465134741	0.000269285749417	-0.00133536559799
+UniRef50_UPI00047D5DD0	hypothetical protein	3.1864111702e-06	1.6039892881e-05	1.28534817108e-05
+UniRef50_P16429	Formate hydrogenlyase subunit 3	0.00228402712176	0.00018690930709	-0.00209711781467
+UniRef50_K6PYD7		2.46259667349e-05	9.26416400966e-06	-1.53618027252e-05
+UniRef50_U5MSS6	Single stranded DNA specific exonuclease RecJ	0.000922710761013	0.00157849959223	0.000655788831217
+UniRef50_UPI00036E07C4	hypothetical protein	2.13819387533e-05	2.60025528257e-05	4.6206140724e-06
+UniRef50_UPI00047BD8AE	ATPase	3.97736669779e-06	4.47989765086e-05	4.08216098108e-05
+UniRef50_UPI0003628A16	hypothetical protein	8.60462520709e-05	6.9674726291e-05	-1.63715257799e-05
+UniRef50_A3P6S9	NH dependent NAD(+) synthetase	1.55495211984e-05	9.60409169519e-05	8.04913957535e-05
+UniRef50_UPI00036BA0C6	terminase	3.23904163326e-06	4.23743232403e-05	3.9135281607e-05
+UniRef50_UPI0004663C80	coproporphyrinogen III oxidase	1.64160984753e-05	2.37816051816e-05	7.3655067063e-06
+UniRef50_V8DSA2		0.000159267225617	0.000343679671965	0.000184412446348
+UniRef50_A6LTC5	Glutamate  tRNA ligase	6.83851429081e-05	0.00134374128923	0.00127535614632
+UniRef50_F0Y8N4	Expressed protein 	0.000181348197232	8.23925590177e-05	-9.89556382143e-05
+UniRef50_F5TR17	Ribonucleoside diphosphate reductase	0.000140343136026	0.00586917680036	0.00572883366433
+UniRef50_P53638	Superoxide dismutase [Fe]	1.06436004832e-05	0.00330258466078	0.0032919410603
+UniRef50_F0Y270		0.000410422576975	4.34398476833e-05	-0.000366982729292
+UniRef50_UPI0003B51F21	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.82616804244e-06	1.14504774895e-05	6.62430944706e-06
+UniRef50_Q2YQ27	Xanthine phosphoribosyltransferase	0.00354965653043	0.00089489910665	-0.00265475742378
+UniRef50_I4PWM5		0.000721904867617	0.000155000317024	-0.000566904550593
+UniRef50_C4UW54	LemA family protein	8.31961747902e-06	1.04263024823e-05	2.10668500328e-06
+UniRef50_UPI000369BDEC	hypothetical protein	1.4626627104e-06	2.34451146121e-06	8.8184875081e-07
+UniRef50_B0RUI2	4 hydroxythreonine 4 phosphate dehydrogenase	3.03938516822e-05	4.23275864657e-05	1.19337347835e-05
+UniRef50_P19924	Phosphoribulokinase, plasmid	0.02835424052	0.00436178544222	-0.0239924550778
+UniRef50_UPI0003615A4F	hypothetical protein	7.34926705399e-07	2.65974080837e-05	2.58624813783e-05
+UniRef50_S1T2D6		7.43837002795e-05	4.55553847169e-05	-2.88283155626e-05
+UniRef50_UPI00041AFFF6	50S ribosomal protein L35	0.000244256145839	0.000156023127083	-8.8233018756e-05
+UniRef50_A5UP66	Predicted ATPase, AAA+ superfamily	0.00164729562854	0.000438208255361	-0.00120908737318
+UniRef50_P14175	Glycine betaine L proline transport ATP binding protein ProV	0.00334509895935	0.00051588295564	-0.00282921600371
+UniRef50_UPI0000165EEC	peptide ABC transporter, periplasmic peptide binding protein	0.000112568571708	0.0456290163813	0.0455164478096
+UniRef50_O33405	Uptake hydrogenase small subunit	0.0105990600932	0.00240200790297	-0.00819705219023
+UniRef50_C6SSY8		0.00326471705183	0.00129441373828	-0.00197030331355
+UniRef50_A0A058Z0V6		2.37574931118e-06	7.29348230054e-06	4.91773298936e-06
+UniRef50_G2JE53	MFS family transporter	0.000185399755385	0.00783599923819	0.00765059948281
+UniRef50_B2SB72	Bifunctional protein GlmU	0.00234952573296	0.000969054573812	-0.00138047115915
+UniRef50_O30808	NADP dependent malic enzyme	0.00830981036743	0.00190049023065	-0.00640932013678
+UniRef50_UPI00036C5BBF	heme ABC transporter ATP binding protein, partial	9.27082591042e-06	7.58382278931e-06	-1.68700312111e-06
+UniRef50_C6VKW6	ATP dependent zinc metalloprotease FtsH	0.00763991423382	0.00955935602461	0.00191944179079
+UniRef50_Q14IC9	Polyribonucleotide nucleotidyltransferase	2.92695506178e-06	9.58865962957e-06	6.66170456779e-06
+UniRef50_UPI0003B4D897	rod shape determining protein MreB	4.19202183818e-05	8.94133408228e-06	-3.29788842995e-05
+UniRef50_A7HVB6		0.00747594531106	0.000339444488737	-0.00713650082232
+UniRef50_Q8FSA6		0.000287796326475	0.00116624306874	0.000878446742265
+UniRef50_Q6F6Q6	Phosphoenolpyruvate carboxylase	4.25736077625e-05	0.00731335699779	0.00727078339003
+UniRef50_UPI0002E62F3E	cold shock protein	2.16127814766e-05	1.31790288017e-05	-8.4337526749e-06
+UniRef50_UPI00039FBFD3	hypothetical protein	2.21393918709e-06	2.30432015703e-05	2.08292623832e-05
+UniRef50_UPI00029AC084	UDP N acetylglucosamine enolpyruvyl transferase	0.000125856078081	0.000789154014932	0.000663297936851
+UniRef50_R6LR95	Hydrogenase Fe only	0.00022406400482	0.00156655383193	0.00134248982711
+UniRef50_G0I8I1		0.000769960884537	0.000441447109578	-0.000328513774959
+UniRef50_Q7N0W9	Complete genome; segment 13 17	0.000300386728529	0.000799352878588	0.000498966150059
+UniRef50_V4RTL0		0.000130005794678	2.37930944484e-05	-0.00010621270023
+UniRef50_P0ACA2		0.00228727950268	0.000292392777421	-0.00199488672526
+UniRef50_Q9Y315	Putative deoxyribose phosphate aldolase	0.00237545092662	0.0013052114341	-0.00107023949252
+UniRef50_U6A8S2	Benzoate specific porin	0.000237369152544	0.000200895717825	-3.6473434719e-05
+UniRef50_UPI000419623B	hypothetical protein	4.14161368005e-05	1.16804864764e-05	-2.97356503241e-05
+UniRef50_UPI0003B3D40C	ABC transporter	8.98336750254e-06	9.91540200125e-06	9.3203449871e-07
+UniRef50_A6M3M5	tRNA modification GTPase MnmE	0.000435420687731	0.000823451297226	0.000388030609495
+UniRef50_UPI0004652D96	hypothetical protein, partial	5.54788337995e-06	9.28197031349e-06	3.73408693354e-06
+UniRef50_G2S6S7		2.11462479774e-06	1.366286822e-05	1.15482434223e-05
+UniRef50_A5IGK7	L threonine 3 dehydrogenase	0.0109460872938	0.027770994464	0.0168249071702
+UniRef50_P68999	tRNA specific adenosine deaminase	0.00451198637887	0.00594760187378	0.00143561549491
+UniRef50_Q6A9M5	Dephospho CoA kinase	0.000877634570777	0.00851632893163	0.00763869436085
+UniRef50_UPI0003EDD9CA	hypothetical protein, partial	8.93374805608e-05	0.00416510288676	0.0040757654062
+UniRef50_P0AEZ8	Membrane bound lytic murein transglycosylase D	0.00372892300374	0.00123522022426	-0.00249370277948
+UniRef50_U6ALT5	Ferrichrome iron receptor	0.00099965911474	0.00101192458637	1.226547163e-05
+UniRef50_D9SVV0	Phosphoribosyltransferase	0.00022248683036	0.00031983758685	9.735075649e-05
+UniRef50_UPI000382B2B6	hypothetical protein	0.000185496800419	3.39692722692e-06	-0.000182099873192
+UniRef50_UPI000383F2C7	PREDICTED	2.52607782786e-05	0.000174980778094	0.000149719999815
+UniRef50_T0TUM6	5 nucleotidase	0.00554377009227	0.00180402924441	-0.00373974084786
+UniRef50_F7X228	Putative prophage terminase large subunit	7.32580664594e-05	8.7857023263e-06	-6.44723641331e-05
+UniRef50_U5MTY5	Alanine racemase	0.000328111682661	0.000517882317184	0.000189770634523
+UniRef50_K7EE87		0.000424819712083	0.000465892377811	4.1072665728e-05
+UniRef50_A1RRZ8	Ketol acid reductoisomerase	6.73433450757e-06	2.73775284458e-05	2.06431939382e-05
+UniRef50_Q6LQB9	HTH type transcriptional repressor PurR	0.00282078638807	0.000554679836748	-0.00226610655132
+UniRef50_UPI0004107246	iron sulfur protein	7.71236354119e-06	2.50917833137e-05	1.73794197725e-05
+UniRef50_U4V1N1		8.89160692605e-05	1.50280581489e-05	-7.38880111116e-05
+UniRef50_UPI00037A4D1B	hypothetical protein	7.31937361767e-06	2.05814448883e-05	1.32620712706e-05
+UniRef50_G8VAV8	Cytochrome oxidase assembly protein	0.000478682584092	0.00484317913154	0.00436449654745
+UniRef50_UPI000372EB59	hypothetical protein	6.44125174947e-05	3.34621575416e-05	-3.09503599531e-05
+UniRef50_R6CH89	Peptidase M23 family	6.97585373883e-06	0.00342020799504	0.0034132321413
+UniRef50_UPI000422DB1A	hypothetical protein	0.000130462057666	8.19383863656e-05	-4.85236713004e-05
+UniRef50_Q2P047	Phosphoribosylglycinamide formyltransferase 2	0.00043485880852	0.00052052954956	8.567074104e-05
+UniRef50_UPI000372AF58	hypothetical protein	0.000128952266947	8.78366130987e-06	-0.000120168605637
+UniRef50_A6LZV7	Transcriptional antiterminator, BglG	0.00024714937072	0.000867556071504	0.000620406700784
+UniRef50_P24218	Prophage DLP12 integrase	0.00291944751528	0.0014929594363	-0.00142648807898
+UniRef50_UPI000472A485	antitermination protein NusG	5.73752878069e-05	0.000404867467722	0.000347492179915
+UniRef50_P77309		0.00309844458265	0.000204135971329	-0.00289430861132
+UniRef50_M1R499	Response regulator aspartate phosphatase	1.0925229156e-05	0.000187502669965	0.000176577440809
+UniRef50_G0DWP5	Dihydrodipicolinate reductase	0.000119457591412	0.00300350484336	0.00288404725195
+UniRef50_C6SR85		0.00500184662863	0.00275230182958	-0.00224954479905
+UniRef50_UPI0003F14796	PREDICTED	9.41913294093e-05	0.00055327287459	0.000459081545181
+UniRef50_Q92BQ5	DNA primase	3.26262416446e-06	0.000907574641781	0.000904312017617
+UniRef50_O33587	AgrC	0.0153384746134	0.00748283513536	-0.00785563947804
+UniRef50_UPI0003F68F3A	magnesium chelatase	7.20972736131e-06	2.8177696158e-05	2.09679687967e-05
+UniRef50_P76656		0.0039113258808	0.0021408926102	-0.0017704332706
+UniRef50_C1CWV4		0.000416507354951	0.0199387771743	0.0195222698193
+UniRef50_UPI00036962AD	hypothetical protein	8.05784596969e-06	6.21251169283e-05	5.40672709586e-05
+UniRef50_A0A059LMT5		4.02039529891e-06	1.22937273965e-05	8.27333209759e-06
+UniRef50_UPI000469E0E3	hypothetical protein	6.80059847581e-05	4.36527755519e-05	-2.43532092062e-05
+UniRef50_D2NAN7		0.00759354629076	0.00362803130558	-0.00396551498518
+UniRef50_UPI0003680D68	hypothetical protein	1.02003607271e-05	8.18170050159e-06	-2.01866022551e-06
+UniRef50_Q21YT7	Bifunctional enzyme IspD IspF	1.17530518074e-05	0.000155646174056	0.000143893122249
+UniRef50_UPI00047088D8	hypothetical protein	2.3860175601e-05	2.03599305505e-05	-3.5002450505e-06
+UniRef50_Q3B6P1	CTP synthase	7.26820804561e-06	0.000132912896919	0.000125644688873
+UniRef50_C0QRW6	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	6.73878747951e-06	5.08352412863e-05	4.40964538068e-05
+UniRef50_Q2YZ93		0.0192733458364	0.00681513935148	-0.0124582064849
+UniRef50_Q3IV77	TPR repeat containing Spindly family protein	0.0109752312306	0.00175911824595	-0.00921611298465
+UniRef50_UPI00035EB53D	hypothetical protein	9.17286307682e-05	9.66525522645e-06	-8.20633755418e-05
+UniRef50_UPI0004635DEB	UDP diphosphatase	4.0409431938e-05	5.50096028163e-05	1.46001708783e-05
+UniRef50_P00393	NADH dehydrogenase	0.00197523170256	0.000738458307458	-0.0012367733951
+UniRef50_A6LX04		0.000200066307735	0.0009544978323	0.000754431524565
+UniRef50_V8CG00		0.000136548482576	0.000151925663702	1.5377181126e-05
+UniRef50_Q9RZS8		0.000130282873893	0.0434122738625	0.0432819909886
+UniRef50_A4WP65		0.00443508490918	0.00110447434579	-0.00333061056339
+UniRef50_UPI00046AD605	PTS fructose transporter subunit IIA	2.33014511563e-06	0.000281050986838	0.000278720841722
+UniRef50_M4RDX0	Lipopolysaccharide core biosynthesis glycosyl transferase LpsC	0.000330162672461	0.00418152164944	0.00385135897698
+UniRef50_Q9RZS7		0.000174507927611	0.0356400610041	0.0354655530765
+UniRef50_UPI000315D670	hypothetical protein	8.59155326291e-06	6.82287940224e-06	-1.76867386067e-06
+UniRef50_P33020		0.00214155286556	0.000203901062277	-0.00193765180328
+UniRef50_UPI0003C112FE	PREDICTED	4.49197616324e-06	1.23034421407e-05	7.81146597746e-06
+UniRef50_P0AE93	Protein CreA	0.0042472500127	1.82446284886e-05	-0.00422900538421
+UniRef50_UPI000369C4E2	hypothetical protein	4.70876318065e-06	8.34577874118e-05	7.87490242311e-05
+UniRef50_D4HBB1	Cell envelope like function transcriptional attenuator common domain protein	0.00031016839256	0.00475544485178	0.00444527645922
+UniRef50_UPI0002DA7A52	hypothetical protein	3.58502809616e-06	1.16890998607e-05	8.10407176454e-06
+UniRef50_X1BI40	Marine sediment metagenome DNA, contig	0.000136205069987	1.27060666537e-05	-0.000123499003333
+UniRef50_Q6CZ33	sn glycerol 3 phosphate transport system permease protein UgpE	0.00350067160729	0.000434072454899	-0.00306659915239
+UniRef50_R4K219		0.000715782943978	0.000574102774054	-0.000141680169924
+UniRef50_UPI0004794A3D	hypothetical protein	1.48203848752e-05	3.69120686786e-05	2.20916838034e-05
+UniRef50_B8GTL2	Chromosome partition protein Smc	0.000180357792912	0.000271041392853	9.0683599941e-05
+UniRef50_UPI00036F03E5	hypothetical protein	2.20197792371e-05	4.6876341531e-05	2.48565622939e-05
+UniRef50_UPI00038F73EB	Bifunctional protein PyrR	1.88358630869e-05	3.98923648756e-05	2.10565017887e-05
+UniRef50_U5MN80		0.000225140748821	0.00175333049149	0.00152818974267
+UniRef50_UPI0003F56C41	hypothetical protein	1.16314649369e-05	1.15437588937e-05	-8.77060432e-08
+UniRef50_N0C6R0	Competence protein ComYD	1.73469279858e-05	6.06222838581e-05	4.32753558723e-05
+UniRef50_P13989	Transposon Tn7 transposition protein TnsB	5.67648103501e-05	0.00971951098215	0.0096627461718
+UniRef50_I4F3M5	Putative Diguanylate cyclase	6.27399650474e-06	0.000147279368559	0.000141005372054
+UniRef50_G1Y149		0.00208627124413	0.000490884585046	-0.00159538665908
+UniRef50_P0A9V0	Probable acyl CoA dehydrogenase YdiO	0.00316922740278	0.000586319777141	-0.00258290762564
+UniRef50_P21345	Proton glutamate symport protein	0.0232896308072	0.0736227739158	0.0503331431086
+UniRef50_Q3IMV2	Dihydroxy acid dehydratase	1.74854197019e-05	2.42925144866e-05	6.8070947847e-06
+UniRef50_UPI0003A1A703	membrane protein	8.40978995082e-05	2.20730082125e-05	-6.20248912957e-05
+UniRef50_UPI0004659468	hypothetical protein, partial	4.0013669848e-05	5.90906851569e-05	1.90770153089e-05
+UniRef50_T1Y8Z5		0.012309756643	0.00339866817172	-0.00891108847128
+UniRef50_S5CR26	Xaa Pro aminopeptidase	0.000123495961457	0.00332785405822	0.00320435809676
+UniRef50_UPI000378FCC9	MULTISPECIES	4.67670755367e-06	4.18400601838e-06	-4.9270153529e-07
+UniRef50_A8LIR2	Chorismate mutase related enzyme	0.000358372774223	0.0015016103654	0.00114323759118
+UniRef50_P39404	Transcriptional activator protein BglJ	0.00386728885526	0.000262115418808	-0.00360517343645
+UniRef50_I4KME6	DNA binding response regulator	0.000510297907168	0.000253128604458	-0.00025716930271
+UniRef50_A0A023WST9	MerR family transcriptional regulator	0.00166613139288	0.000404798746769	-0.00126133264611
+UniRef50_UPI00036CE626	hypothetical protein	2.80265683323e-05	4.86409382375e-05	2.06143699052e-05
+UniRef50_UPI0003763AA0	hypothetical protein	3.60819457361e-06	0.000135432000284	0.00013182380571
+UniRef50_A4WR49	Cellulose synthase 	0.00367764845393	0.000968748435805	-0.00270890001812
+UniRef50_G0EC83	Threonine synthase	0.00402773603257	0.000994959960484	-0.00303277607209
+UniRef50_B7UVS6	Exoenzyme S	0.00120784726092	0.000439472771075	-0.000768374489845
+UniRef50_Q0W1R5	Predicted NADPH	0.00563245679478	0.000585311276542	-0.00504714551824
+UniRef50_F9YX94	DNA processing   uptake protein	0.000105149300518	0.00754238016232	0.0074372308618
+UniRef50_UPI0003F687BA	deoxyguanosinetriphosphate triphosphohydrolase	0.000461311254254	6.36745539692e-05	-0.000397636700285
+UniRef50_X1R4V0	Marine sediment metagenome DNA, contig	1.90561041237e-05	0.000694519048296	0.000675462944172
+UniRef50_A7FAV9		0.000665216537137	0.00750027595768	0.00683505942054
+UniRef50_P0AD71	D alanyl D alanine carboxypeptidase endopeptidase AmpH	0.00306090547773	0.00145317541859	-0.00160773005914
+UniRef50_A7FAV7		5.78966240613e-05	0.0101207507572	0.0100628541331
+UniRef50_A7FAV5		0.000228731728267	0.0136905188742	0.0134617871459
+UniRef50_Q46577	UvrABC system protein A	0.000275514293858	0.0422169047044	0.0419413904105
+UniRef50_Q9RW78	Chloride peroxidase, putative	0.000138611746215	0.0326111270417	0.0324725152955
+UniRef50_Q8EBC3	Sulfate thiosulfate import ATP binding protein CysA 1	5.74540070098e-05	3.29083557236e-05	-2.45456512862e-05
+UniRef50_Q9R3J0	Transposase, putative	0.00225014042765	1.10930408506	1.10705394463
+UniRef50_M5B2K9	Probable transposase	0.000514747553423	0.000197147640548	-0.000317599912875
+UniRef50_A7ZTZ7	Putative ECA polymerase	0.00343875001613	0.000757370639339	-0.00268137937679
+UniRef50_D3DZE6	Transcriptional regulator LysR family	0.00383295084273	0.000206515178457	-0.00362643566427
+UniRef50_UPI0004644785	transcriptional regulator	1.89114291646e-05	0.000157283344486	0.000138371915321
+UniRef50_B2SBI3	Tetracycline resistance protein	3.58781836501e-05	3.22524519289e-05	-3.6257317212e-06
+UniRef50_U3SUM1		0.0045423079898	0.00185975426552	-0.00268255372428
+UniRef50_A3SI31		2.35324190275e-05	2.3377099442e-05	-1.553195855e-07
+UniRef50_Q1R311		0.00063427917855	0.000827613459542	0.000193334280992
+UniRef50_UPI0003640CCC	hypothetical protein	0.000312846685026	1.86820904028e-05	-0.000294164594623
+UniRef50_B7UUY0		0.000398636542623	0.000187106677001	-0.000211529865622
+UniRef50_UPI000289D6F0	cation	0.000200154635176	0.000732952117496	0.00053279748232
+UniRef50_H2JHD1	Integral membrane protein, TerC family	0.000617822663454	0.00354271710219	0.00292489443874
+UniRef50_R1D0M5		1.52177945557e-05	6.08255754423e-05	4.56077808866e-05
+UniRef50_R1DLZ1		3.85699246329e-06	4.20937970055e-06	3.5238723726e-07
+UniRef50_W7WJF0	Neu5Ac permease	5.49370437122e-06	9.57142308025e-06	4.07771870903e-06
+UniRef50_F2JL25	DNA topoisomerase	0.000701403615934	0.0010535479445	0.000352144328566
+UniRef50_D8JXK3	Oxygen independent coproporphyrinogen III oxidase	0.0041952557901	0.00104652153922	-0.00314873425088
+UniRef50_UPI0003B32353	potassium transporter	4.59412832238e-06	4.2563211827e-06	-3.3780713968e-07
+UniRef50_Q9X2I3	Septum site determining protein MinD	0.00024406421693	0.00182168003647	0.00157761581954
+UniRef50_B4SI67	2 isopropylmalate synthase	3.47531659889e-06	5.71049479482e-05	5.36296313493e-05
+UniRef50_P76072	Side tail fiber protein homolog from lambdoid prophage Rac	0.0037001223461	0.00115155349363	-0.00254856885247
+UniRef50_A4WZC5	Phosphoribosylanthranilate isomerase like protein	0.00300491985318	0.00140134220231	-0.00160357765087
+UniRef50_Q9RWI2		8.32357271643e-05	0.0294678301364	0.0293845944092
+UniRef50_Q9RWI3		0.000357401016629	0.0367800289279	0.0364226279113
+UniRef50_Q9RWI0		0.000280859412564	0.0335937732232	0.0333129138106
+UniRef50_UPI00046EF909	transketolase, partial	1.31139220386e-05	4.91095815735e-06	-8.20296388125e-06
+UniRef50_Q5FKZ1	Thymidine kinase	0.00574917178408	0.00909928354571	0.00335011176163
+UniRef50_A3KBE5		0.000272348508473	0.000163814346524	-0.000108534161949
+UniRef50_F7YHP7	Short chain dehydrogenase reductase SDR	1.03944301847e-05	3.49966371753e-05	2.46022069906e-05
+UniRef50_Q0TR80	Amidohydrolase family protein	0.000198100583414	0.00155126679116	0.00135316620775
+UniRef50_UPI00036450DC	hypothetical protein	3.57960349679e-05	3.74447550096e-05	1.6487200417e-06
+UniRef50_D4MHB3	Predicted flavoprotein	0.00444910873957	0.008714382788	0.00426527404843
+UniRef50_F2F126	Lactoylglutathione lyase	0.0102058915229	0.0039363660062	-0.0062695255167
+UniRef50_A1B1F7		7.4805173163e-05	4.32164501699e-05	-3.15887229931e-05
+UniRef50_D0DBX3	Integrase, catalytic region	0.00059234538228	0.000279921047585	-0.000312424334695
+UniRef50_UPI0003B7524F	multidrug ABC transporter ATPase	9.53029424938e-06	4.98265887808e-05	4.02962945314e-05
+UniRef50_UPI000376921C	hypothetical protein	1.23151919719e-05	1.49952623487e-05	2.6800703768e-06
+UniRef50_Q199U5	Thiamine biosynthesis protein 	8.53600732078e-06	9.3605362652e-05	8.50693553312e-05
+UniRef50_UPI0003B774DC	MFS transporter	1.65770614302e-05	5.58930023346e-06	-1.09877611967e-05
+UniRef50_UPI00036C63C0	hypothetical protein	8.63285406157e-06	1.20939303362e-05	3.46107627463e-06
+UniRef50_A4ILI2	UDP N acetylenolpyruvoylglucosamine reductase	0.000160094497565	0.00273424475628	0.00257415025871
+UniRef50_UPI000475759F	flagellar hook capping protein	7.80949697504e-06	1.14013002414e-05	3.59180326636e-06
+UniRef50_UPI0004761474	3 hydroxymyristoyl ACP dehydratase	1.15898810917e-05	1.91958617167e-05	7.605980625e-06
+UniRef50_Q2T2J9	Cobalamin synthesis protein P47K family protein	0.000505279854973	0.0064026996263	0.00589741977133
+UniRef50_UPI00035A08C7	PREDICTED	2.86082580168e-06	8.19548615118e-06	5.3346603495e-06
+UniRef50_X6L0P1		0.00059664972334	0.000148272738939	-0.000448376984401
+UniRef50_A6LRQ4	Spore coat protein CotS	0.000608482858113	0.00179614722228	0.00118766436417
+UniRef50_W6LXS6		7.15381411777e-06	2.84406857365e-06	-4.30974554412e-06
+UniRef50_U7RK39		7.76296065333e-06	1.35249780049e-05	5.76201735157e-06
+UniRef50_D1Q2W4	Transcriptional activator of maltose regulon,MalT	0.00394144239854	0.000861924851744	-0.0030795175468
+UniRef50_W4KGM2		0.000184664054554	0.000273154731383	8.8490676829e-05
+UniRef50_UPI0004636D05	hypothetical protein	1.05312871977e-05	1.13763469779e-05	8.450597802e-07
+UniRef50_O58058	N5 carboxyaminoimidazole ribonucleotide mutase	7.87077991978e-05	7.91198913975e-05	4.120921997e-07
+UniRef50_UPI0004178882	hypothetical protein	9.57880683481e-06	6.37973423849e-05	5.42185355501e-05
+UniRef50_UPI0004632840	hypothetical protein	1.72722188731e-05	8.76610557044e-06	-8.50611330266e-06
+UniRef50_A0A059IKA9		9.58964535559e-05	2.64905296133e-05	-6.94059239426e-05
+UniRef50_Q6LMJ9	Glutamyl Q tRNA synthetase	0.00296523371137	0.00104414108313	-0.00192109262824
+UniRef50_R8ZHF6		0.000121248176295	0.000222880532219	0.000101632355924
+UniRef50_Q5HRC6	Iron compound ABC transporter, permease protein	0.0185653727979	0.00315738116444	-0.0154079916335
+UniRef50_H7G193		5.32344121847e-06	4.91475298293e-06	-4.0868823554e-07
+UniRef50_Q8R8R7	Galactokinase	0.00736064165285	0.00800125538871	0.00064061373586
+UniRef50_Q839C1	L lactate dehydrogenase 1	0.00489049421416	0.00698306790767	0.00209257369351
+UniRef50_Q466U8	ABC transporter ATP binding protein	0.000559948635213	0.00125794035482	0.000697991719607
+UniRef50_P51008	Oxygen independent coproporphyrinogen III oxidase	0.00478305266746	0.000540253459819	-0.00424279920764
+UniRef50_Q57493		0.000373347090645	0.00072254144002	0.000349194349375
+UniRef50_UPI0003703812	hypothetical protein	3.79256122197e-06	2.5919695989e-05	2.2127134767e-05
+UniRef50_UPI00037C1F67	hypothetical protein	6.31642291e-06	8.02695217963e-06	1.71052926963e-06
+UniRef50_E8TBW5	Sugar ABC transporter	0.00286840768933	0.0015909405566	-0.00127746713273
+UniRef50_E8S544	Diguanylate cyclase phosphodiesterase	4.74286289427e-06	3.17034683152e-06	-1.57251606275e-06
+UniRef50_UPI000377E8D6	MULTISPECIES	6.57616777255e-06	1.0335564003e-05	3.75939623045e-06
+UniRef50_B6A550		0.00990058944227	0.00222624966511	-0.00767433977716
+UniRef50_A4WT86	Autoinducer binding domain protein	0.0153664146047	0.0012108093431	-0.0141556052616
+UniRef50_UPI0003F8AF13	hypothetical protein	3.02939280418e-06	0.000254222971079	0.000251193578275
+UniRef50_Q00751	Multiple sugar binding transport system permease protein MsmG	0.0016372638374	0.00638458090591	0.00474731706851
+UniRef50_A4WZL0	Two component transcriptional regulator, winged helix family	8.50193668641e-05	0.000321693885011	0.000236674518147
+UniRef50_Q4L8E5	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00883954889827	0.00235586399151	-0.00648368490676
+UniRef50_A3PRQ8	ABC cobalt transporter, periplasmic binding protein CbiN	0.00236585238954	0.000241732637264	-0.00212411975228
+UniRef50_A9AH86	Glutamine amidotransferase class II	0.000196949211577	0.00802327972552	0.00782633051394
+UniRef50_UPI0003B6246C	sodium hydrogen exchanger	1.68130853073e-05	1.75668214377e-05	7.537361304e-07
+UniRef50_UPI000262878B	cold shock DNA binding protein family	1.01615152445e-05	2.06919761488e-05	1.05304609043e-05
+UniRef50_Q8EHK0	Purine nucleoside phosphorylase DeoD type 2	0.0208451723747	0.00816833999165	-0.012676832383
+UniRef50_Q6F7Y6		1.16461775817e-05	0.0164693540329	0.0164577078553
+UniRef50_B0V7N3		0.000312390478933	0.00606622410119	0.00575383362226
+UniRef50_V7CVS8		5.07163059765e-05	6.65576911002e-05	1.58413851237e-05
+UniRef50_UPI000470AFA8	oligo 1,6 glucosidase	1.68383857092e-05	1.39250971926e-05	-2.9132885166e-06
+UniRef50_UPI000255E45E	metallophosphoesterase, partial	6.23475967867e-05	0.000154727743981	9.23801471943e-05
+UniRef50_UPI00047A285C	heme response regulator HssR	1.12155372018e-05	1.83258493121e-05	7.1103121103e-06
+UniRef50_Q9XAS7	BPS protein	0.000255093362129	6.35317400864e-05	-0.000191561622043
+UniRef50_B8HEC3	Transketolase central region	0.000207409883985	0.00602557341406	0.00581816353007
+UniRef50_UPI0003A4A480	tRNA dihydrouridine synthase	1.18172314959e-05	5.74299994664e-05	4.56127679705e-05
+UniRef50_UPI00016C3AC8	Na+ H+ antiporter	2.08598947693e-05	0.00804844997972	0.00802759008495
+UniRef50_F8K072		4.809387654e-06	8.31866791814e-05	7.83772915274e-05
+UniRef50_Q4L5P2	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0186096750468	0.00269309078164	-0.0159165842652
+UniRef50_UPI0003B7B948	methyltransferase, partial	2.58986106652e-05	3.34032812305e-05	7.5046705653e-06
+UniRef50_Q6GK24	Protein EssC	0.00965064559135	0.00181453518338	-0.00783611040797
+UniRef50_U5MYI0	Chitinase A1	0.000385318623933	0.00201076581697	0.00162544719304
+UniRef50_A1AZK8	Membrane protein involved in aromatic hydrocarbon degradation	7.68579075474e-06	9.81972555499e-06	2.13393480025e-06
+UniRef50_R7ZYU2		1.41253765657e-05	0.000388418729187	0.000374293352621
+UniRef50_G8S2D3		0.000818440704699	2.30598079434e-05	-0.000795380896756
+UniRef50_A0A021VU42		0.000185742547003	2.02938913328e-05	-0.00016544865567
+UniRef50_J9NU01		0.000307239156151	0.000534107586109	0.000226868429958
+UniRef50_UPI0004720155	hypothetical protein, partial	3.09295833233e-05	1.94188072359e-05	-1.15107760874e-05
+UniRef50_Q492J8	Methionine  tRNA ligase	0.000248927160357	7.04664850075e-06	-0.000241880511856
+UniRef50_I6TCA9	Tagatose 6 phosphate kinase	0.00559327991277	0.00717113682593	0.00157785691316
+UniRef50_Q2T0M6	Pyridoxine pyridoxamine 5 phosphate oxidase	9.30060372278e-06	0.000785273573395	0.000775972969672
+UniRef50_O34994	Transcriptional repressor CcpN	0.00871711821258	0.00194366606991	-0.00677345214267
+UniRef50_Q9R3J8	Transposase, putative	0.000248891860782	0.157984325125	0.157735433264
+UniRef50_UPI000252B349	PREDICTED	1.58747674524e-05	2.88613889653e-05	1.29866215129e-05
+UniRef50_A6V0F0		0.000332633415052	0.000437506229925	0.000104872814873
+UniRef50_X0YAI8	Marine sediment metagenome DNA, contig	2.34621924666e-05	4.42238394701e-05	2.07616470035e-05
+UniRef50_UPI00046F5931	potassium transporter	7.54345615467e-05	0.000106541544695	3.11069831483e-05
+UniRef50_P64309	Non canonical purine NTP pyrophosphatase	0.0118334637817	0.0041931517565	-0.0076403120252
+UniRef50_UPI0003B4DFFC	50S ribosomal protein L18	1.77248733072e-05	0.000137609540412	0.000119884667105
+UniRef50_D8JIL7	Chromosome partitioning protein parA	0.000293382892887	0.00654576821856	0.00625238532567
+UniRef50_R4XZT5	FIG002261	0.000273911749374	0.000964093717331	0.000690181967957
+UniRef50_M1G0P3	Sulfatase family protein	0.00154905739093	0.000430519970655	-0.00111853742027
+UniRef50_B5FIB5		9.58916007924e-05	0.000426227630195	0.000330336029403
+UniRef50_O31677	7 carboxy 7 deazaguanine synthase	0.0240009856615	0.00503520628472	-0.0189657793768
+UniRef50_UPI00035C09C2	hypothetical protein	0.000150267347738	0.000125174737899	-2.5092609839e-05
+UniRef50_R5WTT7	Acriflavine resistance protein B	0.00288474627455	0.000475600700207	-0.00240914557434
+UniRef50_X1S582	Marine sediment metagenome DNA, contig	0.000275130815381	1.56072237265e-05	-0.000259523591655
+UniRef50_Q3Y3U4	Mobilization protein MobC	0.100397045076	0.016396133989	-0.084000911087
+UniRef50_UPI000346E2F6	hypothetical protein	0.000112084951252	4.37362711233e-05	-6.83486801287e-05
+UniRef50_A6TED5	Modulator protein MzrA	0.00669444310005	0.000590633410385	-0.00610380968967
+UniRef50_D5WQ35	Restriction endonuclease	0.000684088317397	0.0444201299269	0.0437360416095
+UniRef50_P21866	KDP operon transcriptional regulatory protein KdpE	0.0026665865741	0.000881961527785	-0.00178462504632
+UniRef50_B4SKP9	Transcriptional regulator, LysR family	0.000125828662949	0.000600030371903	0.000474201708954
+UniRef50_UPI00036C1571	hypothetical protein	1.40385424181e-05	2.43478199934e-06	-1.16037604188e-05
+UniRef50_UPI00047D9616	helicase Cas3	1.38963203627e-05	5.39796164015e-06	-8.49835872255e-06
+UniRef50_A0A037ZGX3		6.45298322694e-05	0.000772912688482	0.000708382856213
+UniRef50_B9E8E5	ATP synthase epsilon chain	0.0270073681465	0.00245786505807	-0.0245495030884
+UniRef50_UPI00040D8CBE	potassium transporter KefB	1.91538957762e-05	2.00980643923e-05	9.441686161e-07
+UniRef50_Q5SJ70	Acetyl Coenzyme A dehydrogenase, medium chain	0.00019922537711	0.0422491606696	0.0420499352925
+UniRef50_UPI0004650AF8	hypothetical protein	3.39519110053e-05	2.04306190041e-05	-1.35212920012e-05
+UniRef50_UPI000362104F	hypothetical protein	1.7770873059e-05	1.34002050254e-05	-4.3706680336e-06
+UniRef50_D8FF08		7.37992346122e-06	2.22076776976e-05	1.48277542364e-05
+UniRef50_UPI0003674A12	hypothetical protein	1.09958014564e-05	2.34514304973e-05	1.24556290409e-05
+UniRef50_UPI0003D7284B	PREDICTED	9.32987043421e-06	0.00017354960028	0.000164219729846
+UniRef50_F8JIY3		5.10305182736e-05	0.000208102023342	0.000157071505068
+UniRef50_Q3JNR9		6.59515124924e-05	2.89691018058e-05	-3.69824106866e-05
+UniRef50_UPI0003C10C25		1.50267482852e-06	8.29951023206e-06	6.79683540354e-06
+UniRef50_E2ZSP5		0.00251565412695	0.00130286781704	-0.00121278630991
+UniRef50_UPI000371A3CA	hypothetical protein, partial	0.000419855891476	0.000251588547025	-0.000168267344451
+UniRef50_B9KR70		0.000990114861485	0.000147213305846	-0.000842901555639
+UniRef50_Q47319	DTW domain containing protein YfiP	0.00116246534144	0.000320415955001	-0.000842049386439
+UniRef50_T0TT19	Putative NagD like phosphatase	2.06627730317e-05	2.9083670837e-05	8.4208978053e-06
+UniRef50_B0KIU6	Transposase like protein TnpA3	0.000606882820403	0.0017510543461	0.0011441715257
+UniRef50_UPI000161E3FF	Elongation factor G C terminus family protein	2.88020314273e-06	2.28746050684e-05	1.99944019257e-05
+UniRef50_J7QW46	Precorrin 2 C20 methyltransferase	0.00146733893681	0.00127024268214	-0.00019709625467
+UniRef50_F0Y525		0.00101447499336	0.0012339590795	0.00021948408614
+UniRef50_UPI000365C1D0	hypothetical protein	5.50159718423e-06	5.31584140012e-05	4.7656816817e-05
+UniRef50_P59011	Bifunctional protein PyrR	1.1562119145e-05	5.10553787866e-05	3.94932596416e-05
+UniRef50_U3SYD5	MATE family drug transporter	8.8611734477e-05	0.00631502039798	0.0062264086635
+UniRef50_Q43922	3 dehydroshikimate dehydratase	0.000284412955181	0.00827871609782	0.00799430314264
+UniRef50_Q2RI74	Shikimate kinase	3.0003127003e-05	1.67252382864e-05	-1.32778887166e-05
+UniRef50_C1CX80	Bifunctional protein PyrR	0.000271649277704	0.0487918494453	0.0485202001676
+UniRef50_Z4VVL5		8.99096630229e-05	0.000405621034812	0.000315711371789
+UniRef50_B3QX75	UDP N acetylglucosamine 1 carboxyvinyltransferase	5.01326456e-06	1.48117103533e-05	9.7984457933e-06
+UniRef50_P96121	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	6.41817386193e-06	1.12101483178e-05	4.79197445587e-06
+UniRef50_UPI0002191618	6 phospho beta glucosidase	1.28061688515e-05	8.29851919407e-05	7.01790230892e-05
+UniRef50_UPI0003C10787		2.13320734582e-06	3.86253448286e-06	1.72932713704e-06
+UniRef50_R5RKK3	L serine dehydratase	7.76652188257e-06	7.10729121916e-06	-6.5923066341e-07
+UniRef50_Q5HKH4	Peptide ABC transporter, permease protein, putative	0.0178878785625	0.00573722472797	-0.0121506538345
+UniRef50_A0A011QZG0	Respiratory nitrate reductase 2 beta chain	0.00015539250397	0.000148961367109	-6.431136861e-06
+UniRef50_UPI000345A202	hypothetical protein	9.38782444629e-06	2.62416707265e-06	-6.76365737364e-06
+UniRef50_J2LQ54	NADH dehydrogenase subunit I	0.000394919220244	7.20281013641e-05	-0.00032289111888
+UniRef50_UPI000463660E	hypothetical protein	1.56168695155e-05	0.000854418747387	0.000838801877872
+UniRef50_Q5WBL0	Aliphatic sulfonates import ATP binding protein SsuB 3	8.49010026632e-05	5.95484270717e-05	-2.53525755915e-05
+UniRef50_UPI000382981C	hypothetical protein, partial	3.99208832295e-06	1.33233595906e-05	9.33127126765e-06
+UniRef50_UPI00047CCC4C	3 oxoacyl ACP synthase	8.63192262621e-06	5.54157124799e-06	-3.09035137822e-06
+UniRef50_Q9RZ68		0.000298015254361	0.0644308817478	0.0641328664934
+UniRef50_Q53L87		0.000129081869843	0.000291911075976	0.000162829206133
+UniRef50_Q4SKB1	Chromosome 13 SCAF14566, whole genome shotgun sequence	5.76961613574e-06	4.41026913378e-05	3.83330752021e-05
+UniRef50_Q9RZ60		0.00018118184526	0.0533760108616	0.0531948290163
+UniRef50_Q9RZ61		0.000219044094112	0.071962552528	0.0717435084339
+UniRef50_O32167	Methionine binding lipoprotein MetQ	0.00702591580323	0.00137607541567	-0.00564984038756
+UniRef50_A9MAP0	Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	0.000112458586552	6.73221330511e-06	-0.000105726373247
+UniRef50_A3CMH9	DEAD RNA helicase, putative	0.00453937262651	0.0046021351709	6.276254439e-05
+UniRef50_Q01WB8	30S ribosomal protein S11	0.00235139072764	0.000541865514113	-0.00180952521353
+UniRef50_Q5L310	Histidine ammonia lyase	6.76002416932e-06	8.13615769014e-05	7.46015527321e-05
+UniRef50_D5AP19	Sterol binding domain protein	0.000470675757076	0.000732190178178	0.000261514421102
+UniRef50_UPI0003123919	hypothetical protein	7.56580344714e-05	0.000193247371873	0.000117589337402
+UniRef50_UPI0004650B6E	MULTISPECIES	0.000405812157848	0.000159774592534	-0.000246037565314
+UniRef50_UPI00047AC749	hypothetical protein	3.03735484888e-05	2.65824489754e-05	-3.7910995134e-06
+UniRef50_A8XU33	Protein CBG18769	0.000614234829976	0.00018282278413	-0.000431412045846
+UniRef50_UPI0003758259	MULTISPECIES	2.79291145147e-05	6.7229590919e-05	3.93004764043e-05
+UniRef50_Q04FM1	Energy coupling factor transporter ATP binding protein EcfA2	5.34462857841e-06	2.80669502317e-05	2.27223216533e-05
+UniRef50_V7WX89		9.47414561313e-06	0.00239994213896	0.00239046799335
+UniRef50_UPI000328F9A1	PREDICTED	0.00029187552607	0.00030620004922	1.432452315e-05
+UniRef50_UPI000372F683	hypothetical protein	3.86971354254e-05	5.33802906394e-06	-3.33591063615e-05
+UniRef50_M4YYR0	Phosphoglycerate mutase	0.0109513373982	0.0116527547182	0.00070141732
+UniRef50_Q0BVP4	Ribonuclease D	7.70237035159e-05	1.12117477589e-05	-6.5811955757e-05
+UniRef50_A6V1L5		6.71707534196e-05	0.00044600829835	0.00037883754493
+UniRef50_Q114I1	1,4 alpha glucan branching enzyme GlgB	2.39034889134e-06	5.73854117056e-06	3.34819227922e-06
+UniRef50_F4DWN5	Alpha beta hydrolase fold protein	0.000965784605402	0.000464472090682	-0.00050131251472
+UniRef50_D3QGJ7	Nitrilotriacetate monooxygenase	0.00842831225876	0.00172274158185	-0.00670557067691
+UniRef50_A6LYY8	4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000305371577499	0.00299227858065	0.00268690700315
+UniRef50_UPI0003C8E201	PREDICTED	7.69125557788e-06	6.2079985708e-06	-1.48325700708e-06
+UniRef50_A3M465	TPR domain protein	0.000283338109982	0.00546352566663	0.00518018755665
+UniRef50_A7X204	Large conductance mechanosensitive channel	0.00502319458014	0.000516588988672	-0.00450660559147
+UniRef50_UPI00035D3D92	hypothetical protein	9.23145898757e-06	3.05588372267e-05	2.13273782391e-05
+UniRef50_UPI00036ED9BB	thymidylate synthase	1.33726439632e-05	0.000211377445363	0.0001980048014
+UniRef50_UPI00037D216E	hypothetical protein	9.54857822265e-05	4.48109577257e-05	-5.06748245008e-05
+UniRef50_P43784	Dihydrolipoyl dehydrogenase	2.05779231995e-05	1.41774247159e-05	-6.4004984836e-06
+UniRef50_C3LL78	Peptidase, M23 M37 family protein	1.61141349003e-05	0.000839673891573	0.000823559756673
+UniRef50_UPI000255ED81	hypothetical protein	4.71477510557e-06	3.32393602419e-05	2.85245851363e-05
+UniRef50_Q5HRN3	ISSep1 like transposase	0.162660368355	0.0569568075052	-0.10570356085
+UniRef50_W8UYM6	S formylglutathione hydrolase	0.000262143047812	0.000423899576834	0.000161756529022
+UniRef50_I0ETM1	Bifunctional riboflavin kinase FMN adenylyltransferase	0.000778375684485	0.00290620120329	0.00212782551881
+UniRef50_Q1AU56	DNA directed RNA polymerase subunit alpha	1.57829938855e-05	1.71589910642e-05	1.3759971787e-06
+UniRef50_P0A6M3	Disulfide bond formation protein B	0.00102499185968	0.00100549512832	-1.949673136e-05
+UniRef50_R9SIZ9	Xylose isomerase like TIM barrel domain containing protein	0.00147517184205	0.000605134294071	-0.000870037547979
+UniRef50_A0A011MST9	Putative ATP dependent protease	2.79051309802e-05	3.93561972567e-05	1.14510662765e-05
+UniRef50_UPI000364852F	hypothetical protein	3.39126099349e-06	5.504038875e-06	2.11277788151e-06
+UniRef50_A4XNC3	Transcriptional regulator, LysR family	0.000508384579447	0.000316976785549	-0.000191407793898
+UniRef50_Q9RZI9		2.7257021696e-05	0.0130150080886	0.0129877510669
+UniRef50_Q2GBU1		4.383639402e-06	7.11078441415e-06	2.72714501215e-06
+UniRef50_E2XNR6	Chemotaxis sensory transducer	0.000497878784558	0.000140181980313	-0.000357696804245
+UniRef50_A3NNI6	S glutathione dehydrogenase	0.000561701081925	0.0488434325168	0.0482817314349
+UniRef50_UPI00035F7621	hypothetical protein	1.72453365293e-05	1.35091004499e-05	-3.7362360794e-06
+UniRef50_Q8CMX9	Anaerobic dicarboxylate transport	0.0115710421362	0.00255051752957	-0.00902052460663
+UniRef50_A7ZTG3	Protein export protein SecB	0.00446848391137	0.0015542984484	-0.00291418546297
+UniRef50_P76128	Probable D,D dipeptide binding periplasmic protein DdpA	0.0025594162188	0.00142025843111	-0.00113915778769
+UniRef50_A6LU60	Prophage ps3 protein 01, putative	0.000555753370172	0.00100746934582	0.000451715975648
+UniRef50_Q5W6S1	Os05g0345700 protein	5.31381233381e-05	0.000201506388763	0.000148368265425
+UniRef50_C5CB84	Branched chain amino acid uptake carrier	0.000878916813692	0.00507134232279	0.0041924255091
+UniRef50_UPI00036BAC4E	hypothetical protein	2.81712449789e-06	6.24621491499e-06	3.4290904171e-06
+UniRef50_S4X9U7	LysR family HTH type transcriptional regulator	0.0130423086757	0.00255565808974	-0.010486650586
+UniRef50_UPI0003B52A97	ribonuclease	1.36489157588e-05	8.1126805224e-06	-5.5362352364e-06
+UniRef50_UPI00037423BF	hypothetical protein, partial	1.61602833551e-05	1.84856649675e-05	2.3253816124e-06
+UniRef50_UPI000378F32E	hypothetical protein	0.000108785587569	0.000170867910433	6.2082322864e-05
+UniRef50_F0MS68	Outer membrane protein OpcA	0.000744767324648	0.00692864029776	0.00618387297311
+UniRef50_A0KET1	Membrane lipoprotein	0.0100993880784	0.00179518666923	-0.00830420140917
+UniRef50_W0WHZ7		0.000870790384845	0.000314350228147	-0.000556440156698
+UniRef50_P45871		0.000929409016622	0.000954095218597	2.4686201975e-05
+UniRef50_R4ZVH1	Hydroxymethylglutaryl CoA reductase	0.00673236480112	0.00320897001124	-0.00352339478988
+UniRef50_UPI000262730A	exodeoxyribonuclease III	3.38239713514e-05	2.46626750941e-05	-9.1612962573e-06
+UniRef50_Q4FQI2	Shikimate kinase	2.55544336663e-05	1.97435744349e-05	-5.8108592314e-06
+UniRef50_Q016J7	GTP binding protein 	1.8438679864e-05	5.11889461323e-05	3.27502662683e-05
+UniRef50_UPI00046A74CA	quinone oxidoreductase	1.15443544695e-05	5.16803319141e-05	4.01359774446e-05
+UniRef50_UPI0003632653	hypothetical protein	1.89180758887e-06	1.86737712604e-06	-2.443046283e-08
+UniRef50_I2ICF5	Transposase	3.83851941257e-05	1.1955022253e-05	-2.64301718727e-05
+UniRef50_H6NN00	MerR family transcriptional regulator	0.000542836388043	0.00063279120141	8.9954813367e-05
+UniRef50_E6MYF0	Bacterial lipid A biosynthesis acyltransferase family protein	0.000133860279732	0.00231722102721	0.00218336074748
+UniRef50_UPI000478CD68	translation initiation factor IF 2	1.90604359e-05	3.67254870349e-05	1.76650511349e-05
+UniRef50_V5VE92	MFS transporter	0.000318873788606	0.00369439791441	0.0033755241258
+UniRef50_Q5F5X0	1 deoxy D xylulose 5 phosphate reductoisomerase	9.67912791928e-05	0.00253456153785	0.00243777025866
+UniRef50_B7UXA3	Flagellar hook associated protein 1 FlgK	0.000799672924193	0.000181190511586	-0.000618482412607
+UniRef50_U6LVU1		2.40837415685e-06	2.31651226409e-05	2.07567484841e-05
+UniRef50_UPI0004678984	MULTISPECIES	1.15077446288e-05	5.18475920666e-05	4.03398474378e-05
+UniRef50_UPI00046E9450	hypothetical protein	1.94754915065e-05	4.97781282663e-05	3.03026367598e-05
+UniRef50_P39298	Esterase YjfP	0.00296936979984	0.00289711675144	-7.22530484e-05
+UniRef50_E3RE87		7.94081805221e-05	1.25631732125e-05	-6.68450073096e-05
+UniRef50_Q2NAN4	DNA topology modulation protein	8.39850631177e-05	9.30574894704e-05	9.0724263527e-06
+UniRef50_UPI00040DCB53	hypothetical protein	6.24216967163e-05	8.62870801449e-05	2.38653834286e-05
+UniRef50_F2KZY9	Metal ion transporter, metal ion  transporter (Nramp) family	0.000380001546041	0.00385864129047	0.00347863974443
+UniRef50_UPI000288BAAB	dihydroorotate dehydrogenase	3.9974577365e-06	7.60779140777e-06	3.61033367127e-06
+UniRef50_P18159	Phosphoglucomutase	0.00437280385273	0.00625526445618	0.00188246060345
+UniRef50_UPI0002B94CAD	hypothetical protein, partial	3.53081199829e-05	0.00105855203594	0.00102324391596
+UniRef50_A6M1D1	Phage replisome organizer, putative	0.000535833594103	0.00239377294046	0.00185793934636
+UniRef50_S5XSU0	Segregation and condensation protein A	0.00536530565577	0.000673745730992	-0.00469155992478
+UniRef50_M1TQL6	Fe S cluster redox enzyme	3.84156782408e-05	0.000134090394489	9.56747162482e-05
+UniRef50_E8NHR5	WGS CADB00000000 data, contig 91 	0.000195084056806	0.00166098900411	0.0014659049473
+UniRef50_A6LY06	Helix turn helix domain containing protein, AraC type	0.000130167582368	0.000894178874746	0.000764011292378
+UniRef50_A7MN74	NAD dependent malic enzyme	0.00206226248975	0.00860573130965	0.0065434688199
+UniRef50_E1VPQ4		8.24558837221e-05	2.30317669311e-05	-5.9424116791e-05
+UniRef50_Q634K1	Transposase	2.9552887343e-05	5.49133062935e-05	2.53604189505e-05
+UniRef50_Q9RTE1	Glucose 1 phosphate adenylyltransferase	0.000125133476969	0.0167281546121	0.0166030211351
+UniRef50_C9RUW3	ComE operon protein 2	0.0242556342098	0.00131182032925	-0.0229438138805
+UniRef50_F2LGK2		7.05768351849e-05	7.46636977426e-05	4.0868625577e-06
+UniRef50_UPI0003656D72	hypothetical protein	1.00847457151e-05	2.52439286613e-05	1.51591829462e-05
+UniRef50_E6N0Q8		1.68892903177e-05	0.00075960414343	0.000742714853112
+UniRef50_E6N0Q9		6.50804683823e-05	6.84755813808e-05	3.3951129985e-06
+UniRef50_Q3IXH2	Fumarase alpha subunit	0.00331664784033	0.00140122742581	-0.00191542041452
+UniRef50_UPI00036E7B4E	hypothetical protein	0.000259433481261	0.000113028729164	-0.000146404752097
+UniRef50_F4M9A1	Dimethyl sulfoxide reductase chain YnfE	0.000844221360706	0.000130767544741	-0.000713453815965
+UniRef50_G8UZQ2	Bacterial low temperature requirement A family protein	0.0099436691627	0.00171580529653	-0.00822786386617
+UniRef50_UPI00047AD872	2 oxoglutarate dehydrogenase	1.72877016346e-06	4.32659097173e-06	2.59782080827e-06
+UniRef50_U2YEL7		7.1407943731e-05	0.000139081650806	6.7673707075e-05
+UniRef50_UPI00037E762B	MULTISPECIES	5.18437813206e-06	4.30876186354e-06	-8.7561626852e-07
+UniRef50_UPI00040E4B39	NADH	4.34555887214e-06	8.84156192407e-06	4.49600305193e-06
+UniRef50_UPI000289FCDF	shikimate kinase	3.10049756705e-05	5.69110187128e-05	2.59060430423e-05
+UniRef50_T0Y894	GMP synthase, large subunit	9.69100820059e-05	5.13850580653e-05	-4.55250239406e-05
+UniRef50_S9P8Y7		3.08121250774e-05	7.23983655037e-06	-2.3572288527e-05
+UniRef50_A3RSV8	Hypothetical membrane spanning protein	0.000231728375811	6.18666073691e-05	-0.000169861768442
+UniRef50_Q1IKG7	Phospho N acetylmuramoyl pentapeptide transferase	5.67648652969e-06	4.0076306317e-05	3.43998197873e-05
+UniRef50_B7MKP4		0.000215706279348	0.00143080589023	0.00121509961088
+UniRef50_Q5HQ23	Non canonical purine NTP pyrophosphatase	0.000233545619095	1.90353477199e-05	-0.000214510271375
+UniRef50_UPI0003FD107E	phosphoglycerate mutase	1.63873274633e-05	5.07613549427e-06	-1.1311191969e-05
+UniRef50_I0C7R8	Short chain dehydrogenase	0.0107410127745	0.000269695621179	-0.0104713171533
+UniRef50_P0ABM0	Heme exporter protein B	0.00377884517882	0.0013756825053	-0.00240316267352
+UniRef50_P0ABG2	Phosphatidate cytidylyltransferase	0.00278837864127	0.000231016979293	-0.00255736166198
+UniRef50_A6LYG5		0.000711119602238	0.00205031328656	0.00133919368432
+UniRef50_Q9JZS9		0.000264592982837	0.00248471339488	0.00222012041204
+UniRef50_A0A011UDJ9		2.87665304554e-06	4.4001486687e-05	4.11248336415e-05
+UniRef50_UPI000292A56C		0.000237109124476	6.59988238092e-05	-0.000171110300667
+UniRef50_UPI00037DD48E	hypothetical protein	1.63373388322e-05	2.64640287723e-05	1.01266899401e-05
+UniRef50_E8SJM7	Siderophore staphylobactin biosynthesis protein SbnG	0.0188802880594	0.00574820079201	-0.0131320872674
+UniRef50_T1AK40	NAD dependent dehydrogenase	4.49554345454e-05	7.78466614959e-05	3.28912269505e-05
+UniRef50_UPI0003775605	hypothetical protein	3.61640014434e-05	0.000359849577725	0.000323685576282
+UniRef50_Q1QUR0	3 isopropylmalate dehydrogenase	0.00474960145902	0.00802717770631	0.00327757624729
+UniRef50_B2TNA6	D galactose binding periplasmic protein	0.000194246649494	0.00281581643978	0.00262156979029
+UniRef50_C5WII8	Amino acid ABC transporter extracellular binding protein	0.0032230246027	0.00134631170266	-0.00187671290004
+UniRef50_Q88A48	Bis tetraphosphatase, symmetrical	5.34552866733e-06	0.000429946379616	0.000424600850949
+UniRef50_K6LY10	Amidohydrolase family protein	0.000144150269287	0.00175997078212	0.00161582051283
+UniRef50_UPI000470129B	hypothetical protein	2.50157726056e-05	0.000130135014401	0.000105119241795
+UniRef50_A3K1G7		5.89512277509e-05	6.71648157749e-06	-5.22347461734e-05
+UniRef50_P37692	ADP heptose  LPS heptosyltransferase 2	0.00296909206967	0.000469696835465	-0.0024993952342
+UniRef50_UPI00035FB32E	hypothetical protein, partial	1.71460308485e-05	2.92151984951e-05	1.20691676466e-05
+UniRef50_A6M0G3	PAS PAC sensor signal transduction histidine kinase	0.000103971976311	0.00231714059976	0.00221316862345
+UniRef50_Q1LFE8	Transcriptional regulator, LysR family	0.000355681077713	0.000298299702217	-5.7381375496e-05
+UniRef50_UPI00042AF78A	PREDICTED	0.000121462610869	9.5023230289e-05	-2.643938058e-05
+UniRef50_R6FZX0	Helicase domain protein	0.000322815277223	0.000809300307508	0.000486485030285
+UniRef50_C1E796	Predicted protein	1.62537979177e-05	7.94771902066e-05	6.32233922889e-05
+UniRef50_UPI000262E85E	nucleoside diphosphate sugar epimerase	3.10887003377e-05	2.61471842884e-05	-4.9415160493e-06
+UniRef50_Q9RRK0		0.000111792494231	0.00751174617461	0.00739995368038
+UniRef50_Q9RRK5		0.000152416953778	0.0634805286484	0.0633281116946
+UniRef50_B2SC15	2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.0135659153742	0.0116515829745	-0.0019143323997
+UniRef50_Q9RRK7		9.54050519479e-05	0.0573174387728	0.0572220337209
+UniRef50_UPI0001850CC8	3 oxoacyl  synthase II	3.09206400083e-05	1.77371437705e-05	-1.31834962378e-05
+UniRef50_I1QER0		4.85161341716e-05	8.04782773361e-06	-4.0468306438e-05
+UniRef50_UPI0002481C5F	transposase Tn3 family protein, partial	1.47980167239e-05	0.00119269567781	0.00117789766109
+UniRef50_Q0B3Q1	Flavin containing monooxygenase FMO	0.000121248176295	0.000164981399557	4.3733223262e-05
+UniRef50_UPI00037EC779	hypothetical protein	1.72108907705e-05	0.000100362015175	8.31511244045e-05
+UniRef50_G0A2X8	DoxX family protein	5.19106947738e-05	3.23061681652e-05	-1.96045266086e-05
+UniRef50_A5UN92	Multidrug efflux permease, AraJ	0.00499330669844	0.000660491105875	-0.00433281559256
+UniRef50_I6T783	Transporter trans membrane domain bacteriocin immunity protein	0.00528990544634	0.00111570251362	-0.00417420293272
+UniRef50_UPI000185DB7C	zinc finger  protein, putative	1.86905365454e-06	1.20834195835e-06	-6.6071169619e-07
+UniRef50_G7U3Z0		0.000261248490195	0.00374910812187	0.00348785963167
+UniRef50_F5XMJ8	Oxygen independent coproporphyrinogen III oxidase	0.000670184801124	0.00403723084843	0.00336704604731
+UniRef50_P46322	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0118903804173	0.00289457153231	-0.00899580888499
+UniRef50_UPI00030144E8	hypothetical protein	5.81721261139e-05	4.3112322486e-05	-1.50598036279e-05
+UniRef50_F0YGY7		0.000208909977261	0.000938888504514	0.000729978527253
+UniRef50_M4YXB8	Uracil DNA glycosylase superfamily protein	0.00393128589723	0.000468347099909	-0.00346293879732
+UniRef50_UPI00015FB2F9	hypothetical protein	1.02942774367e-05	4.09954815465e-05	3.07012041098e-05
+UniRef50_L0FIE0	Diguanylate cyclase	0.000827675890719	0.000307621567909	-0.00052005432281
+UniRef50_Q8CXD9	Aminomethyltransferase	0.013798275744	0.00334196968425	-0.0104563060597
+UniRef50_M2TAB3	PhbF	2.42702630465e-05	1.09695176395e-05	-1.3300745407e-05
+UniRef50_D8HDV1	M23 M37 peptidase domain protein	0.0083790307085	0.00205669576719	-0.00632233494131
+UniRef50_P25795	Aldehyde dehydrogenase family 7 member A1	0.0004753712871	0.000151444464203	-0.000323926822897
+UniRef50_M4YX01	RNA binding protein	0.000378748483804	0.00132683276549	0.000948084281686
+UniRef50_X5HG80	Long chain fatty acid ABC transporter	0.000313226783592	0.00864951645332	0.00833628966973
+UniRef50_Q04IA2	Glucose 6 phosphate isomerase	0.00755913876272	0.0132656405619	0.00570650179918
+UniRef50_B9DNP9	Exodeoxyribonuclease 7 large subunit	0.0167506456871	0.00535867599622	-0.0113919696909
+UniRef50_U3QR56	ABC transporter permease	0.011218659388	0.00344294749294	-0.00777571189506
+UniRef50_UPI00035EC4D9	hypothetical protein, partial	3.34355112823e-05	7.75672291262e-05	4.41317178439e-05
+UniRef50_E6UXA3	Phosphate transporter	0.000673742806667	0.00626742758178	0.00559368477511
+UniRef50_Q3JJ67		1.07446117589e-05	2.75409824326e-05	1.67963706737e-05
+UniRef50_P44640		0.000773684025405	0.00109586299042	0.000322178965015
+UniRef50_W5X6D8	Membrane fusion protein	9.7952605925e-06	4.23607431311e-05	3.25654825386e-05
+UniRef50_Q67NU0	Cytidylate kinase	1.56078945597e-05	9.79170741271e-05	8.23091795674e-05
+UniRef50_Q3JUL3		0.000325798783623	4.34656975814e-05	-0.000282333086042
+UniRef50_Q5HJ85	Protein EsaC	0.00244670532156	0.00933649726201	0.00688979194045
+UniRef50_J0NSU5		8.62704005634e-06	0.00263764999154	0.00262902295148
+UniRef50_UPI00038115B9	hypothetical protein	2.9001460378e-05	3.08101198604e-05	1.8086594824e-06
+UniRef50_G0AJ20	Glycosyltransferase	0.000513366419918	0.000192597851207	-0.000320768568711
+UniRef50_A3CLG7	Hydrolase, HAD superfamily, putative	0.00672611293986	0.00437715119931	-0.00234896174055
+UniRef50_N6V947		0.00015543327308	7.96235495201e-06	-0.000147470918128
+UniRef50_A6LTV8		0.000228063123226	0.00211488160148	0.00188681847825
+UniRef50_UPI00038028F6	hypothetical protein	2.13183228138e-06	6.7449088285e-06	4.61307654712e-06
+UniRef50_T0U2I3		0.00449714639591	0.00209252893689	-0.00240461745902
+UniRef50_I4CVC3		0.000158116322005	0.000125601466297	-3.2514855708e-05
+UniRef50_B9KU56	Xanthine oxidase	0.00125725716397	0.000149889273766	-0.0011073678902
+UniRef50_P0A4H7	Transcriptional regulatory protein CiaR	0.00433244991405	0.00252589195558	-0.00180655795847
+UniRef50_G2TKZ3	NUDIX hydrolase	0.00586860552378	0.00272822786562	-0.00314037765816
+UniRef50_I0EMS0	Bifunctional cytochrome c biogenesis protein	0.000132980846837	0.00253757003084	0.002404589184
+UniRef50_A6LTV7		0.000164961452225	0.000778726237326	0.000613764785101
+UniRef50_I6SU15		0.00372190360222	0.000789327781131	-0.00293257582109
+UniRef50_UPI0001BF70A9	hypothetical protein SMAC_07598	1.71013035831e-06	1.71938442177e-06	9.25406346e-09
+UniRef50_B9E4Q8		0.000578960336452	0.000667914415714	8.8954079262e-05
+UniRef50_M4RAV2	Phosphoglycerate mutase related protein	0.000784342631636	0.00295856741404	0.0021742247824
+UniRef50_UPI0003B511AF	histidine kinase	2.74884117816e-06	0.000937515472934	0.000934766631756
+UniRef50_B4U2B4	Septation ring formation regulator EzrA	0.00399886672741	0.00252696380952	-0.00147190291789
+UniRef50_L0F3J6	Phosphoenolpyruvate synthase pyruvate phosphate dikinase	0.000515707073111	0.000831395614021	0.00031568854091
+UniRef50_V5BIM4		1.13713726136e-05	1.01970923034e-05	-1.1742803102e-06
+UniRef50_UPI0002556319	pseudouridine synthase	6.27942338826e-05	1.74609432759e-05	-4.53332906067e-05
+UniRef50_B7RP52		3.23826134708e-06	1.73468874933e-06	-1.50357259775e-06
+UniRef50_UPI0003B48412	thiamine biosynthesis protein ThiF	1.32517865654e-05	1.46138445934e-05	1.362058028e-06
+UniRef50_UPI0003AD5F31	hypothetical protein	0.000128641671529	7.2843266741e-05	-5.5798404788e-05
+UniRef50_T2E0C1		0.00108392420378	0.000912838346346	-0.000171085857434
+UniRef50_B8FZA5	Peptidyl tRNA hydrolase	2.56673091153e-05	2.6934613225e-05	1.2673041097e-06
+UniRef50_UPI0004219762	hypothetical protein	6.62809261238e-06	1.15495995198e-05	4.92150690742e-06
+UniRef50_E1Q396	Thioredoxin reductase	0.000122826243664	0.00274272612365	0.00261989987999
+UniRef50_UPI00035FB5C7	hypothetical protein	2.05794651769e-05	6.43295565754e-05	4.37500913985e-05
+UniRef50_A1UAG5	Phosphatidylserine decarboxylase proenzyme	0.00169245538422	0.00152360062867	-0.00016885475555
+UniRef50_I2SYF8	Cation efflux system protein CusA	0.00221422078921	0.000494414398836	-0.00171980639037
+UniRef50_UPI000371FCD3	hypothetical protein	0.000372149705715	5.81297397007e-05	-0.000314019966014
+UniRef50_U5MS66	Glycerol 1 phosphate dehydrogenase	0.000216223505426	0.00357206639684	0.00335584289141
+UniRef50_UPI0003B530FD	peptidase M22	1.09168716841e-05	1.24132030499e-05	1.4963313658e-06
+UniRef50_J5IRB2		0.000348448605091	0.000798153257284	0.000449704652193
+UniRef50_F7QFG7	Glycolate dehydrogenase	0.000446621098025	0.000460095914695	1.347481667e-05
+UniRef50_R9SLR7		0.00343357677766	0.00131006220993	-0.00212351456773
+UniRef50_P32143	Sulfofructose kinase	0.00315059511625	0.000754956916339	-0.00239563819991
+UniRef50_D1DJP5	Phage repressor protein	0.000327138881892	0.0024063925346	0.00207925365271
+UniRef50_S2W2I7		9.34522870458e-06	2.4647748766e-05	1.53025200614e-05
+UniRef50_UPI0003C15FB0	PREDICTED	2.98995411747e-06	1.05361930591e-05	7.54623894163e-06
+UniRef50_C5QVZ6		0.0675603476614	0.0168618448495	-0.0506985028119
+UniRef50_UPI00037F1AC8	nucleoside triphosphate diphosphatase	8.11840148686e-06	1.95566828506e-05	1.14382813637e-05
+UniRef50_UPI0002ED2583	hypothetical protein	0.000577589887891	0.000310364408692	-0.000267225479199
+UniRef50_U5NRT4		0.00641945956696	0.00137175746838	-0.00504770209858
+UniRef50_A4VM51	Nitrate binding protein NasS	0.00046479100412	0.000340574032415	-0.000124216971705
+UniRef50_UPI0002000C91	iron ABC transporter, partial	2.15146298045e-05	5.8371068437e-05	3.68564386325e-05
+UniRef50_M9SAW1		0.000890814129841	0.000276121722171	-0.00061469240767
+UniRef50_C5ZXL6	Hydrogenase expression formation protein HypE	0.000177223468942	0.00197976362333	0.00180254015439
+UniRef50_UPI0003B79B45	branched chain amino acid aminotransferase	0.000177788742358	1.76075990283e-05	-0.00016018114333
+UniRef50_A6TG52	D ribose pyranase	0.000672914187671	0.00753479441464	0.00686188022697
+UniRef50_B1TES8		2.10447092255e-05	3.38664450361e-05	1.28217358106e-05
+UniRef50_P76222		0.00117991395255	0.00200214715387	0.00082223320132
+UniRef50_UPI000462ED7D	hypothetical protein	2.42413041712e-05	1.85850282597e-05	-5.6562759115e-06
+UniRef50_J2YES6	Outer membrane protein, OMP85 family	0.000536677906781	0.00135128209951	0.000814604192729
+UniRef50_A1WN39	Mg chelatase, subunit ChlI	0.000528594704658	0.00237036917522	0.00184177447056
+UniRef50_K4NKR5		7.95265425939e-05	0.00288139197258	0.00280186542999
+UniRef50_P39370	Probable 9 O acetyl N acetylneuraminic acid deacetylase	0.0022812811489	0.000698276012413	-0.00158300513649
+UniRef50_UPI000255E8AD	membrane protein	2.61516693488e-05	1.98835490073e-05	-6.2681203415e-06
+UniRef50_Q81II2	Arginine regulator	1.66919242749e-05	0.000450865198773	0.000434173274498
+UniRef50_W1W6K4		0.278232683798	0.0628932216423	-0.215339462156
+UniRef50_M8EPJ5		0.00154224705879	0.00950688063661	0.00796463357782
+UniRef50_Q74KF8	Phosphate import ATP binding protein PstB 2	1.44136027914e-05	8.76171550334e-05	7.3203552242e-05
+UniRef50_A3CQK2		0.000494947520188	0.000308661081921	-0.000186286438267
+UniRef50_UPI0003F5C642	hypothetical protein	0.000177049738148	0.000117297177427	-5.9752560721e-05
+UniRef50_Q2RK39	Orotidine 5 phosphate decarboxylase	1.6604602774e-05	1.12583196581e-05	-5.3462831159e-06
+UniRef50_A1B425		0.000346896234112	5.29678126955e-05	-0.000293928421416
+UniRef50_UPI0004685071	MerR family transcriptional regulator	0.000149936702514	0.000505444574344	0.00035550787183
+UniRef50_W5X8A1		9.35804544484e-06	2.51745733853e-05	1.58165279405e-05
+UniRef50_UPI000313CECC	hypothetical protein	2.81735408109e-05	1.764738175e-05	-1.05261590609e-05
+UniRef50_Q06067	Signal transduction histidine protein kinase AtoS	0.00216749963779	0.00100916423452	-0.00115833540327
+UniRef50_I6TW33	TetR AcrR family transcriptional regulator	0.00540857432152	0.00300034340971	-0.00240823091181
+UniRef50_G7M6N7	GTP binding protein HSR1 related protein	0.000567404543524	0.00178434334723	0.00121693880371
+UniRef50_F0Y8S9		0.000325542511239	0.000705310250772	0.000379767739533
+UniRef50_M9RGW8	23S rRNA [guanosine 2 O ] methyltransferase RlmB	0.000677705566004	0.00023815863322	-0.000439546932784
+UniRef50_G7M469	Drug resistance transporter, EmrB QacA subfamily	0.000241703444048	0.000137143980732	-0.000104559463316
+UniRef50_A4YX93	L fuculose 1 phosphate aldolase	0.0190900166282	0.00458073408353	-0.0145092825447
+UniRef50_F8GTL5		4.08247297547e-06	7.01989868998e-06	2.93742571451e-06
+UniRef50_UPI0003C177A0	PREDICTED	5.36708198106e-06	1.50951682323e-05	9.72808625124e-06
+UniRef50_C0P4G8		0.0112494467024	0.00294751619946	-0.00830193050294
+UniRef50_U9LDC5		0.000813497390879	0.00248978824375	0.00167629085287
+UniRef50_B5WFL3		6.16655879961e-05	1.14519699256e-05	-5.02136180705e-05
+UniRef50_Q8PMG5	Phospholipase	0.000173423884613	0.00461088783385	0.00443746394924
+UniRef50_V6F503	Transposase	3.42541856891e-05	2.94738262753e-05	-4.7803594138e-06
+UniRef50_Q2IIK2		0.000448099697328	7.23643585034e-05	-0.000375735338825
+UniRef50_L7BUG1	GTP binding protein TypA, BipA	2.52404285411e-05	3.72369119099e-05	1.19964833688e-05
+UniRef50_O67550	5 3 exonuclease	2.18406213857e-05	0.000144018203619	0.000122177582233
+UniRef50_B7M371	Flagellar protein FliT	0.00154698890717	0.00224291168503	0.00069592277786
+UniRef50_D5X8K2	NADH quinone oxidoreductase subunit I	0.000294910928794	0.000509166733097	0.000214255804303
+UniRef50_Q664W4	Isocitrate dehydrogenase kinase phosphatase	0.00191288313022	0.000777803056041	-0.00113508007418
+UniRef50_F4D3L6		0.000159951690188	0.00777026334343	0.00761031165324
+UniRef50_V8GXC4	Protein pucC 	7.67674993625e-05	1.57911827097e-05	-6.09763166528e-05
+UniRef50_T2A3K0	MafB family adhesin protein	0.00012724246815	0.000820324892546	0.000693082424396
+UniRef50_L7LVI6	Putative mucin 5ac	0.000220938017744	4.87562597947e-05	-0.000172181757949
+UniRef50_G2JRU4	Phosphoglycerate mutase	0.00622917444087	0.00184144765348	-0.00438772678739
+UniRef50_UPI000465BD7B	hypothetical protein	3.04236007301e-05	2.51399115261e-05	-5.283689204e-06
+UniRef50_Q5LXZ9	Argininosuccinate lyase	1.27976925509e-05	1.144906346e-05	-1.3486290909e-06
+UniRef50_Q6F9Z8	Malate synthase G	0.000105051962823	0.00656462835221	0.00645957638939
+UniRef50_B8ENG4	Leucyl aminopeptidase	0.0013810856392	0.00041418495179	-0.00096690068741
+UniRef50_N6V8H7		5.75301892126e-05	0.000282327328127	0.000224797138914
+UniRef50_R5F4E6		0.000567517826046	0.000923490986135	0.000355973160089
+UniRef50_V5C579	Non hemolytic phospholipase C	4.04407779216e-06	6.13832692213e-06	2.09424912997e-06
+UniRef50_UPI00036632DA	hypothetical protein	4.352594419e-05	1.80764929642e-05	-2.54494512258e-05
+UniRef50_A0A010PG87	Ribonuclease E	0.00026914567433	0.0074217681721	0.00715262249777
+UniRef50_D6A365	Predicted protein	0.000114853749147	0.000180071161704	6.5217412557e-05
+UniRef50_UPI00037534FD	resolvase	6.59230971402e-05	3.92493499541e-05	-2.66737471861e-05
+UniRef50_A5USR7	DNA directed RNA polymerase subunit beta	7.0317390333e-06	2.49028911299e-06	-4.54144992031e-06
+UniRef50_UPI00035ECFEE	hypothetical protein	6.47118838e-05	0.00378942047778	0.00372470859398
+UniRef50_F3P5V2	Rhamnan synthesis protein F	3.78204593075e-06	4.8669151496e-06	1.08486921885e-06
+UniRef50_J9NVA3		0.000421064291552	0.000383891384436	-3.7172907116e-05
+UniRef50_E6K098	ABC transporter, substrate binding protein, QAT family	0.00946019015066	0.0020472585303	-0.00741293162036
+UniRef50_F2HK99	Branched chain amino acid	0.0210753069266	0.00491245691468	-0.0161628500119
+UniRef50_UPI00047B7ECA	peroxiredoxin	1.61437673729e-05	0.000324609618691	0.000308465851318
+UniRef50_UPI000463E58D	adenylyltransferase, partial	0.000129081843162	8.03393705995e-05	-4.87424725625e-05
+UniRef50_UPI0003B6A60F	hypothetical protein	2.09759041937e-05	1.84725480685e-06	-1.91286493869e-05
+UniRef50_D9R3W0	PTS system, lactose cellobiose family IIC subunit	0.000224355402255	0.000917770612685	0.00069341521043
+UniRef50_A4X0D6	SH3, type 3 domain protein	0.0148435338747	0.00508563810486	-0.00975789576984
+UniRef50_Z3GHL3		0.000136388142802	0.00016720651992	3.0818377118e-05
+UniRef50_Q02EP8	tRNA sulfurtransferase	0.00110709311621	0.000162708928474	-0.000944384187736
+UniRef50_R0E2F9		5.69211773263e-05	0.000167318246575	0.000110397069249
+UniRef50_UPI000467973F	hypothetical protein	1.79305637653e-05	1.47569500956e-05	-3.1736136697e-06
+UniRef50_UPI0004255353	hypothetical protein	2.75271342113e-05	2.45645595031e-05	-2.9625747082e-06
+UniRef50_UPI0003B4F400	iron ABC transporter ATP binding protein	0.000140683180198	0.00013296368261	-7.719497588e-06
+UniRef50_R5JER5	RelA SpoT domain protein	0.0112390811602	0.0018593475661	-0.0093797335941
+UniRef50_Q8DSQ9	Tyrosine recombinase XerD like	0.00467178762674	0.00132748160413	-0.00334430602261
+UniRef50_Q46339	Formyltetrahydrofolate deformylase	0.00947395186985	0.00121113964559	-0.00826281222426
+UniRef50_UPI0003B771E7	MULTISPECIES	5.33769074795e-05	2.33578311611e-05	-3.00190763184e-05
+UniRef50_Q47702		0.00332402332451	0.00048412574623	-0.00283989757828
+UniRef50_X7F5H4		1.77280294336e-05	1.39526738961e-05	-3.7753555375e-06
+UniRef50_P0ABV0	Protein TolQ	0.00103429585003	0.00254676684895	0.00151247099892
+UniRef50_UPI00047C65E6	hypothetical protein	5.98776590438e-05	6.5786544066e-06	-5.32990046372e-05
+UniRef50_A6LWR5	Phage integrase family protein	0.000118334165783	0.00116810239152	0.00104976822574
+UniRef50_Q3IV24		0.000913314869208	0.00116499844958	0.000251683580372
+UniRef50_UPI0003B5337E	PREDICTED	2.7093055757e-06	9.8884150925e-07	-1.72046406645e-06
+UniRef50_UPI00046923C9	hypothetical protein	5.12194945014e-06	8.0418094213e-07	-4.31776850801e-06
+UniRef50_S2VZ33		3.6590588892e-06	1.25948707357e-05	8.9358118465e-06
+UniRef50_B4RKT2		0.000208172420321	0.00199207513225	0.00178390271193
+UniRef50_A5ULP1	Predicted O linked GlcNAc transferase	0.00233157039354	0.000602576365377	-0.00172899402816
+UniRef50_C4ZJC7	NADH ubiquinone oxidoreductase chain 4L	0.000442366393186	0.000532102171523	8.9735778337e-05
+UniRef50_B1GYY9	Bifunctional protein PyrR	1.02426217482e-05	7.42280115737e-05	6.39853898255e-05
+UniRef50_D4HDS2	Alpha 1,4 glucan	0.000151486876401	0.00369988131658	0.00354839444018
+UniRef50_B7GF12	Ferrochelatase	0.0190140428472	0.00922770042343	-0.00978634242377
+UniRef50_A3NIS0	Proline specific permease	0.00113345877002	0.000421420729944	-0.000712038040076
+UniRef50_A5UMI6	Multimeric flavodoxin	0.00488906345484	0.000557201330567	-0.00433186212427
+UniRef50_P0AGN1	Xanthine permease XanP	0.00383213711656	0.000463470800048	-0.00336866631651
+UniRef50_Q05069	Enoyl [acyl carrier protein] reductase [NADH] FabI	0.000429377403536	0.00617931298426	0.00574993558072
+UniRef50_UPI0002627F1B	glycerol 3 phosphate ABC transporter ATP binding protein	6.47145975203e-05	2.06782192039e-05	-4.40363783164e-05
+UniRef50_B6AV02		2.37650687121e-05	2.06739229483e-05	-3.0911457638e-06
+UniRef50_UPI000364DCAC	hypothetical protein, partial	4.29005252867e-05	6.42111121326e-06	-3.64794140734e-05
+UniRef50_A1UTL7		0.0016253456944	0.000640115254802	-0.000985230439598
+UniRef50_M9S1E1	Transcriptional regulator	0.000666167515011	0.000300079144647	-0.000366088370364
+UniRef50_UPI0003ADE5F5	PREDICTED	4.77187343126e-05	0.000132801246403	8.50825120904e-05
+UniRef50_A5UJE0	DNA helicase	0.00186221625627	0.00107611436036	-0.00078610189591
+UniRef50_Q9X9H7		0.000905966373245	0.00141752018494	0.000511553811695
+UniRef50_A0A037XIK8		0.000507334039039	4.76697335853e-05	-0.000459664305454
+UniRef50_Q9RSR1	Polyribonucleotide nucleotidyltransferase	0.000162875462885	0.0304022303206	0.0302393548577
+UniRef50_A6M132	Abortive infection protein	0.000199376402564	0.00128363920806	0.0010842628055
+UniRef50_UPI0002558D3C	LysR	1.42883882164e-05	9.48110066088e-06	-4.80728755552e-06
+UniRef50_UPI0003B5E137	glycine betaine ABC transporter ATP binding protein	8.07624538799e-05	7.99437717595e-06	-7.2768076704e-05
+UniRef50_C6D465		1.67310214576e-05	7.75914866708e-06	-8.97187279052e-06
+UniRef50_C5BDM9	DNA mismatch repair protein MutL	0.0011076466316	0.00109649993582	-1.114669578e-05
+UniRef50_W7BGX2	Transposase IS3 IS911 family protein 	0.000121723477295	3.45418879291e-05	-8.71815893659e-05
+UniRef50_Q0VLT2	Transcriptional regulator, TetR family	0.000544450945461	0.000420878914765	-0.000123572030696
+UniRef50_K3ZVN5		5.92841818649e-05	0.000112759703998	5.34755221331e-05
+UniRef50_A0A031GP16		0.0013441135221	0.000128970358093	-0.00121514316401
+UniRef50_UPI00046D89CC	hypothetical protein	2.0191198611e-05	3.60134836562e-05	1.58222850452e-05
+UniRef50_G8V9S2	Protease	0.0002543345315	0.00496750136738	0.00471316683588
+UniRef50_A1V469	Sulfate thiosulfate ABC transporter, permease protein CysW	0.0100773852527	0.0105149379671	0.0004375527144
+UniRef50_A0A024C0E9	LPS biosynthesis protein	0.000228608457182	0.00347101861158	0.0032424101544
+UniRef50_U5MSD8		0.000351960316455	0.00184114596569	0.00148918564924
+UniRef50_UPI0003B32410	chromosomal replication initiation protein	3.80627563901e-06	6.80753602202e-06	3.00126038301e-06
+UniRef50_M7MCD8	Oxidoreductase, NAD binding domain protein	0.00451531069022	0.00279832499157	-0.00171698569865
+UniRef50_D8FRN8	Putative ATPase	5.91562490057e-05	7.69451275178e-05	1.77888785121e-05
+UniRef50_UPI0003B386D0	hypothetical protein	7.58766210551e-06	7.8373832008e-05	7.07861699025e-05
+UniRef50_J9NYR7		0.000218158351966	0.000160809126406	-5.734922556e-05
+UniRef50_D7GEU1	UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000512032424987	0.00544187412311	0.00492984169812
+UniRef50_Q8FE39		0.000165813843133	9.40320589966e-05	-7.17817841364e-05
+UniRef50_V9T419	Glycosyl transferase family 1	0.000404096640229	0.00031065924589	-9.3437394339e-05
+UniRef50_G2JD62	Ferric acinetobactin transport system ATP binding protein	0.000263362317798	0.00652700183684	0.00626363951904
+UniRef50_UPI0004723CF7	succinate dehydrogenase	1.67323239428e-05	1.48880665664e-05	-1.8442573764e-06
+UniRef50_UPI00046F8708	hypothetical protein, partial	6.23659772023e-05	8.23590439148e-05	1.99930667125e-05
+UniRef50_UPI0003822266	MULTISPECIES	9.92661790266e-06	7.46188880691e-05	6.46922701664e-05
+UniRef50_P0AES0	Bifunctional glutathionylspermidine synthetase amidase	0.00371462892728	0.0005715327638	-0.00314309616348
+UniRef50_F4DAR6	ABC type oligopeptide transport system,, ATPase component	0.000116989459351	0.000798322565575	0.000681333106224
+UniRef50_UPI00035D1F28	geranylgeranyl pyrophosphate synthase	1.86018471598e-05	7.58077872142e-05	5.72059400544e-05
+UniRef50_B6W8Z1	PTS system mannitol specific EIICBA component family protein 	1.26797297383e-05	2.88917299039e-05	1.62120001656e-05
+UniRef50_P32720	D allose transport system permease protein AlsC	0.00393245458961	0.000184958270474	-0.00374749631914
+UniRef50_UPI0003816203	hypothetical protein	8.68786011569e-07	1.18777221132e-05	1.10089361016e-05
+UniRef50_P80907	Ketoisovalerate oxidoreductase subunit VorA	0.00252814161026	0.000299796171242	-0.00222834543902
+UniRef50_Q53046	Pyruvate flavodoxin oxidoreductase	0.00027294852691	0.000115077820506	-0.000157870706404
+UniRef50_L0GRI3	3 carboxymuconate cyclase	9.96882012767e-05	0.000649452702637	0.00054976450136
+UniRef50_A6VA52		0.000655262270873	0.000637374183882	-1.7888086991e-05
+UniRef50_C5N145	Cation diffusion facilitator family transporter	0.0183080787696	0.0078446420129	-0.0104634367567
+UniRef50_K1GVU9		6.76911650447e-06	6.57765558645e-06	-1.9146091802e-07
+UniRef50_Q5KWI6	Non canonical purine NTP pyrophosphatase	1.59028529763e-05	1.17534496601e-05	-4.1494033162e-06
+UniRef50_D3DZD8	Anaerobic ribonucleoside triphosphate reductase NrdD	0.00346869179519	0.00214927555976	-0.00131941623543
+UniRef50_B6JN53	Polyribonucleotide nucleotidyltransferase	7.00345062854e-05	0.00447354196908	0.00440350746279
+UniRef50_E1Q5C2	VirB8 type IV secretion protein	0.0001033264568	0.00271805591537	0.00261472945857
+UniRef50_P52022	DNA polymerase III subunit alpha	0.00237362210782	0.00063231300459	-0.00174130910323
+UniRef50_Q27713	Bifunctional dihydrofolate reductase thymidylate synthase	2.61266200919e-06	4.21916477152e-06	1.60650276233e-06
+UniRef50_Q7WP11	2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.000552418520273	0.00840363349219	0.00785121497192
+UniRef50_F0RPA5	Chlorite dismutase	3.21079789716e-05	0.0341682476641	0.0341361396851
+UniRef50_Q168Q1	Integral membrane protein, putative	0.00351592644435	0.00176307214235	-0.001752854302
+UniRef50_C6SLW0	Transposase for insertion sequence element IS1106	2.93736969561e-05	0.000269855370033	0.000240481673077
+UniRef50_A0LHK5	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.41544990132e-05	4.52206519257e-05	3.10661529125e-05
+UniRef50_P02976	Immunoglobulin G binding protein A	0.00554539476996	0.000786620594933	-0.00475877417503
+UniRef50_UPI0002896994	LuxR family transcriptional regulator	3.33371929351e-05	2.03276784758e-05	-1.30095144593e-05
+UniRef50_G7M646	Nitroreductase	0.000432836196781	0.0019403069489	0.00150747075212
+UniRef50_UPI0003B4D6A8	hypothetical protein	4.26803234555e-05	0.000236650372058	0.000193970048602
+UniRef50_F3FWR5	Potassium transporting ATPase subunit B 	2.00165447942e-05	0.00247967190376	0.00245965535897
+UniRef50_G2Y3Z8		1.46026142387e-06	0.00011252462929	0.000111064367866
+UniRef50_UPI00035116CC	PREDICTED	1.66703074983e-05	0.000180179251446	0.000163508943948
+UniRef50_UPI0003C1260B	PREDICTED	7.3191774986e-06	1.93850002655e-05	1.20658227669e-05
+UniRef50_Q2S1Q5	DNA directed RNA polymerase subunit beta	2.79375212825e-06	2.20965399511e-06	-5.8409813314e-07
+UniRef50_UPI00036CDFBA	hypothetical protein	7.65849106278e-05	8.24636151407e-05	5.8787045129e-06
+UniRef50_B5Y9Z4	8 amino 7 oxononanoate synthase	5.00131869351e-05	5.77264307382e-05	7.7132438031e-06
+UniRef50_A6LZ45	Histidine kinase internal region	6.6458800855e-05	0.00142736796171	0.00136090916085
+UniRef50_Q6FEP2	Phosphate acetyltransferase	2.94607897006e-06	0.00825726049868	0.00825431441971
+UniRef50_P37902	Glutamate aspartate periplasmic binding protein	0.00251860257979	0.000970762709875	-0.00154783986991
+UniRef50_UPI00039CF033	preprotein translocase subunit SecD	2.8093933206e-06	4.36129165322e-06	1.55189833262e-06
+UniRef50_Q99MR8	Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial	2.54440795218e-06	6.23421057443e-06	3.68980262225e-06
+UniRef50_UPI000393D46E	PREDICTED	0.000109857785715	3.0775421323e-05	-7.9082364392e-05
+UniRef50_M9VH28	Actinobacterial surface anchored protein domain protein	0.00020008091282	0.00440924485909	0.00420916394627
+UniRef50_P09785	Anthranilate synthase component 1, pyocyanine specific	0.000633844114087	0.000124431196007	-0.00050941291808
+UniRef50_B9EAP7	ATP dependent Clp protease ATP binding subunit ClpB	0.0138398508012	0.00724704027832	-0.00659281052288
+UniRef50_W0V3Q1		0.000265148125521	7.37219644158e-05	-0.000191426161105
+UniRef50_O83046	Pca operon regulatory protein	0.000158830009337	0.0181862426983	0.018027412689
+UniRef50_U3BC68		1.28600982439e-05	1.88200115908e-05	5.9599133469e-06
+UniRef50_P0AFU4	Transcriptional regulatory protein GlrR	0.0045025149252	0.00264019154533	-0.00186232337987
+UniRef50_A0A011Q2M3		1.97604543621e-05	9.46803593016e-05	7.49199049395e-05
+UniRef50_A6M0L8		0.000217086447274	0.00119571447971	0.000978628032436
+UniRef50_Q01269	Cyclohexadienyl dehydratase	0.00145493165335	0.000220385600888	-0.00123454605246
+UniRef50_R5XL07		0.000770336116499	0.00247436253623	0.00170402641973
+UniRef50_UPI00036FF49D	hypothetical protein	4.03114214381e-06	4.82949743807e-05	4.42638322369e-05
+UniRef50_UPI00046F97B3	chemotaxis protein CheD	0.000430288081365	4.75785249677e-05	-0.000382709556397
+UniRef50_B7V438		0.00018294959072	0.00117899545856	0.00099604586784
+UniRef50_UPI00035D66E8	hypothetical protein	2.157612764e-05	1.00620777761e-05	-1.15140498639e-05
+UniRef50_UPI00047161E6	hypothetical protein	3.93232781167e-05	1.66961206854e-05	-2.26271574313e-05
+UniRef50_K9BU68	Molybdopterin binding domain of aldehyde dehydrogenase protein	0.000187803974553	0.000895264483447	0.000707460508894
+UniRef50_W5DRR2		0.00122725174571	0.000132802986763	-0.00109444875895
+UniRef50_F8FTQ8	Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.000599532538633	0.000724868250766	0.000125335712133
+UniRef50_UPI000377D28B	hypothetical protein	7.81173319448e-06	1.33168472371e-05	5.50511404262e-06
+UniRef50_P17315	Colicin I receptor	0.00241340696956	0.00127821718159	-0.00113518978797
+UniRef50_F0Y056		4.67042002586e-05	0.000625139648833	0.000578435448574
+UniRef50_X0P3U7		3.25494911064e-05	0.00144608252367	0.00141353303256
+UniRef50_UPI00046FA0D1	23S rRNA pseudouridylate synthase	1.11928739094e-05	2.92628595635e-05	1.80699856541e-05
+UniRef50_UPI0003761003	hypothetical protein	9.72459370922e-06	6.08449476805e-06	-3.64009894117e-06
+UniRef50_H7D699	UvrABC system protein C	1.49269374036e-05	5.7979767961e-05	4.30528305574e-05
+UniRef50_UPI000255DA26	glycosyltransferase, partial	0.000224821406003	1.32579029382e-05	-0.000211563503065
+UniRef50_Q3JHX4		3.39011936941e-05	0.000263076122505	0.000229174928811
+UniRef50_R7D4E7		0.000167529885896	2.66119264318e-05	-0.000140917959464
+UniRef50_O65989	PTS system mannitol specific EIICB component	0.000371207316991	0.000622065290213	0.000250857973222
+UniRef50_Q11K56	Cupin 2, conserved barrel	0.000223364490448	0.0240723214356	0.0238489569452
+UniRef50_A8LRD0	3 hydroxyacyl CoA dehydrogenase NAD binding	0.00611089237967	0.00178212048875	-0.00432877189092
+UniRef50_J2ES16	Diguanylate cyclase  domain protein	0.00012369556219	0.000511440952763	0.000387745390573
+UniRef50_UPI00035E59D2	hypothetical protein	8.11323404945e-05	2.7125583582e-05	-5.40067569125e-05
+UniRef50_F7ZLE6	TRAP transporter subunit DctP	0.00525374948067	0.000288583099537	-0.00496516638113
+UniRef50_UPI000470DE86	hypothetical protein	1.2591159159e-05	3.39505597092e-05	2.13594005502e-05
+UniRef50_Q9I0K9	Adenylosuccinate lyase	0.000904119522844	0.0103944697447	0.00949035022186
+UniRef50_N6RCJ7	RpiR family transcriptional regulator	0.00319863682334	0.00187712542477	-0.00132151139857
+UniRef50_S5XYI0	Membrane protease subunit HflK	0.00597155626821	0.00130391710234	-0.00466763916587
+UniRef50_C3K0N3	Acyl carrier protein	4.67813349378e-05	0.000180353659284	0.000133572324346
+UniRef50_Q56841	2  hydroxypropyl CoM dehydrogenase	6.78020574805e-06	1.47441361915e-05	7.96393044345e-06
+UniRef50_Q1JJ05	tRNA binding domain protein	0.00987683572221	0.00673294895636	-0.00314388676585
+UniRef50_UPI00016A8267	200 kDa antigen p200, putative	4.04764381849e-05	6.51503689629e-05	2.4673930778e-05
+UniRef50_UPI0004788EAB	ABC transporter permease	4.74140650917e-05	4.77377737214e-05	3.237086297e-07
+UniRef50_UPI0003B710E4	cell division protein FtsE	5.25224570381e-06	2.60590823259e-05	2.08068366221e-05
+UniRef50_Q5HRH0	Putative proline betaine transporter	0.0106044747624	0.00295210003071	-0.00765237473169
+UniRef50_B7V1I5	S adenosylmethionine decarboxylase proenzyme	0.000302988852055	0.000245628829824	-5.7360022231e-05
+UniRef50_R5AXK8		0.000170552324163	0.000452502517123	0.00028195019296
+UniRef50_UPI0003B4A2CD	malate	2.54942038101e-06	8.30538828073e-06	5.75596789972e-06
+UniRef50_A6LWR4		0.000294910928794	0.000597153298126	0.000302242369332
+UniRef50_Q117Z9	Urease subunit gamma	6.30590054317e-05	0.000301230619932	0.0002381716145
+UniRef50_C4RQ17		2.50504730316e-06	5.04240247938e-05	4.79189774906e-05
+UniRef50_A5UNG0	Adhesin like protein	0.00125873468737	0.000197204604465	-0.0010615300829
+UniRef50_Q8R7X4	Adenylate kinase	2.57098751413e-05	2.32835156277e-05	-2.4263595136e-06
+UniRef50_P64431		0.00331600042713	0.00188963547567	-0.00142636495146
+UniRef50_Q1JUP4	Alpha ketoglutaric semialdehyde dehydrogenase	3.87733130644e-06	0.000217231615782	0.000213354284476
+UniRef50_S4MLD0		9.74171285999e-05	0.000122977495711	2.55603671111e-05
+UniRef50_Q5HR73	Transcriptional regulator, AraC family	0.011413428387	0.00470203394701	-0.00671139443999
+UniRef50_UPI0004213A8C	peptidase A8	2.13353404522e-05	3.93123750277e-05	1.79770345755e-05
+UniRef50_A5D374	3 dehydroquinate synthase	7.16800415583e-06	8.24463255052e-06	1.07662839469e-06
+UniRef50_R7FWE0		0.000194734272667	9.53517459074e-06	-0.000185199098076
+UniRef50_UPI00046C2C33	PREDICTED	7.70441504522e-07	3.32486112089e-06	2.55441961637e-06
+UniRef50_C1MJW7	Predicted protein	2.51638470224e-05	1.37523272278e-05	-1.14115197946e-05
+UniRef50_J2ERM5	Lipid A biosynthesis lauroyl acyltransferase, putative	0.00107463562395	0.00175174970381	0.00067711407986
+UniRef50_R9SHL8	NIF3 family protein HcgD	0.00168158460299	0.00061738684013	-0.00106419776286
+UniRef50_G7LXR2	ABC type transporter, periplasmic subunit	0.000574731400072	0.00173186548858	0.00115713408851
+UniRef50_UPI00046EDA0B	hypothetical protein	2.30892756435e-06	1.76813920814e-05	1.5372464517e-05
+UniRef50_U6A8G4		7.73241885198e-05	0.000157700559074	8.03763705542e-05
+UniRef50_UPI00047EFD61	16S rRNA methyltransferase	5.05310554108e-06	2.67056119001e-05	2.1652506359e-05
+UniRef50_A3PH04	Peptidoglycan binding domain 1 protein	0.000654494611194	0.00021062066472	-0.000443873946474
+UniRef50_D9SWT0	Glycoside hydrolase family 25	0.000438614058638	0.000229520755339	-0.000209093303299
+UniRef50_G8VBC9	Adhesion protein associated protein	2.02724100369e-05	0.00112918932164	0.0011089169116
+UniRef50_Q0STL9	UPF0313 protein CPR_1216	0.000543588191351	0.00346246438639	0.00291887619504
+UniRef50_UPI0003ADD74A	PREDICTED	6.50635033466e-06	6.0462818029e-05	5.39564676943e-05
+UniRef50_G7M2T3	Polypeptide transport associated domain protein FtsQ type	0.000435868790852	0.00175127044922	0.00131540165837
+UniRef50_J7M2N5	Dipeptide binding protein	0.00138219464662	0.000111370221954	-0.00127082442467
+UniRef50_F7Y2V0		3.8513870353e-05	1.2156179353e-05	-2.6357691e-05
+UniRef50_U4TGN7	Flagellar hook capping domain protein	9.22735781369e-06	1.27196950471e-05	3.49233723341e-06
+UniRef50_Q9CJ30	Deoxyuridine 5 triphosphate nucleotidohydrolase	0.00358737846247	0.00777911931586	0.00419174085339
+UniRef50_UPI00037A20A6	hypothetical protein	5.86399775903e-05	1.27828825155e-05	-4.58570950748e-05
+UniRef50_A9WSA8	Carbamoyl phosphate synthase large chain	1.7903862796e-05	1.28707693694e-05	-5.0330934266e-06
+UniRef50_A1WY04	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00321483652709	0.00255638889886	-0.00065844762823
+UniRef50_E2CNB5		5.23277799828e-05	1.75406498866e-05	-3.47871300962e-05
+UniRef50_UPI0003B6AB3A	aspartyl glutamyl tRNA amidotransferase subunit B	6.84635372768e-06	4.92178919875e-06	-1.92456452893e-06
+UniRef50_UPI00037A3B64	primase	7.38559934055e-06	4.13141244382e-05	3.39285250976e-05
+UniRef50_E7AA86	Iron sulfur cluster binding protein	0.00066050630372	0.00310791581001	0.00244740950629
+UniRef50_K7ABS1	Outer membrane porin	2.76743889324e-05	1.25472025264e-05	-1.5127186406e-05
+UniRef50_Q5HJP2	Diacetyl reductase [ acetoin forming]	0.0407539317131	0.0116645142498	-0.0290894174633
+UniRef50_B7UPF3	Endonuclease V	0.00529424507325	0.00152209418782	-0.00377215088543
+UniRef50_UPI0003773FBD	hypothetical protein	3.88781014384e-06	1.15485073028e-05	7.66069715896e-06
+UniRef50_Q3K0J6	Hydroxymethylglutaryl CoA synthase	0.00367270616483	0.00206097234666	-0.00161173381817
+UniRef50_J0QZG9		1.44213013312e-05	4.29641696374e-06	-1.01248843675e-05
+UniRef50_UPI0003F49121	hypothetical protein TREMEDRAFT_73008	2.50428558928e-06	8.01616600275e-06	5.51188041347e-06
+UniRef50_Q6F9W5		0.000174492752936	0.005488365364	0.00531387261106
+UniRef50_P23917	Fructokinase	0.0044001890309	0.00120696168346	-0.00319322734744
+UniRef50_Q8R6A7	Phosphoglucosamine mutase	4.81213232443e-06	2.45168419463e-05	1.97047096219e-05
+UniRef50_A6VA35	Chain length determinant protein	0.000781129981653	0.000273232029468	-0.000507897952185
+UniRef50_Q9RW71	Acetyltransferase, putative	0.000185953689091	0.0293529362252	0.0291669825361
+UniRef50_Q57048		0.000850477203954	0.000124343875878	-0.000726133328076
+UniRef50_Q2FD92	RND family drug transporter	0.000414303096162	0.00721502732448	0.00680072422832
+UniRef50_R0NCH4		4.3975539085e-05	4.65782748484e-05	2.6027357634e-06
+UniRef50_Q6SJ08	Conjugal transfer mating pair stabilization protein	1.47250638384e-05	5.99658829922e-06	-8.72847553918e-06
+UniRef50_UPI000362B2C8	hypothetical protein	1.01559307998e-05	0.00141400066872	0.00140384473792
+UniRef50_UPI0001B41070	amino acid ABC transporter, ATP binding protein	0.000129390426984	6.04634648434e-05	-6.89269621406e-05
+UniRef50_X5KFC2		0.000789365746259	0.000194714311118	-0.000594651435141
+UniRef50_R5SPQ8	Chaperone protein DnaK 1	0.000201531775885	7.58984150561e-05	-0.000125633360829
+UniRef50_S4P442	Electron transfer flavoprotein ubiquinone oxidoreductase 	2.83256789965e-05	1.60572241206e-05	-1.22684548759e-05
+UniRef50_A8LI45		0.0165957897851	0.00434299393816	-0.0122527958469
+UniRef50_B0UAY7	Extracellular solute binding protein family 1	1.08503489289e-05	5.10770219809e-06	-5.74264673081e-06
+UniRef50_F0YKH0		0.000199733727808	0.000230522189833	3.0788462025e-05
+UniRef50_Q9APM5	Taurine  pyruvate aminotransferase	0.0083904931814	0.00162058439364	-0.00676990878776
+UniRef50_G7T9W9	Sulfate transporter	9.56467877165e-05	0.000150671788373	5.50250006565e-05
+UniRef50_UPI00037F5A09	hypothetical protein	1.84208287026e-05	1.16958653124e-05	-6.7249633902e-06
+UniRef50_B9KRK1		0.00310017541237	0.00253637094856	-0.00056380446381
+UniRef50_Q9WZG8	Ribosomal RNA small subunit methyltransferase I	2.05686903717e-05	3.19064316194e-05	1.13377412477e-05
+UniRef50_UPI00028822B1	hydrolase	2.48736718932e-05	7.06244252838e-06	-1.78112293648e-05
+UniRef50_F5M323	Membrane bound O acyl transferase, MBOAT family protein	0.0102927601028	0.00154852242795	-0.00874423767485
+UniRef50_P17994		0.00325909053489	0.00156894185148	-0.00169014868341
+UniRef50_P28812		0.00975403314738	0.00272376260833	-0.00703027053905
+UniRef50_C5Q6U5		0.000152350288831	0.00010003164567	-5.2318643161e-05
+UniRef50_UPI00036A99F9	hypothetical protein	8.87388077666e-05	0.0001179895762	2.92507684334e-05
+UniRef50_Q9ZHY3	P protein	1.16069173476e-05	0.00332056243583	0.00330895551848
+UniRef50_P39172	High affinity zinc uptake system protein ZnuA	0.00271996381117	0.00132254518611	-0.00139741862506
+UniRef50_M9VFY7	Penicillin binding protein, transpeptidase domain protein	7.94150046685e-05	0.00700982622691	0.00693041122224
+UniRef50_A5UNT4		0.00258901453086	0.00042903153298	-0.00215998299788
+UniRef50_D5QG08	Phosphoribosylformylglycinamidine synthase, purS	0.000114349883209	3.3886271005e-05	-8.0463612204e-05
+UniRef50_UPI00046DCA03	PilS cassette, partial	9.65754206323e-05	0.000193890322085	9.73149014527e-05
+UniRef50_G5ZXS6	UPF0301 protein HIMB100_00008270	1.69252303548e-05	2.49509351062e-05	8.0257047514e-06
+UniRef50_UPI0003654549	hypothetical protein	0.000432500213705	0.000150929213104	-0.000281571000601
+UniRef50_F0KGG0		4.40438359604e-05	0.00862258232802	0.00857853849206
+UniRef50_O66534	Riboflavin biosynthesis protein RibD	7.99008982048e-06	0.000149397405478	0.000141407315658
+UniRef50_P0AEC9	Sensor histidine kinase DcuS	0.00319039390462	0.000515131843978	-0.00267526206064
+UniRef50_Q58633		0.00265981376781	0.00149151887943	-0.00116829488838
+UniRef50_P55717	Probable ATP synthase y4yI	0.000700693356076	0.000190322258993	-0.000510371097083
+UniRef50_UPI00036C881F	hypothetical protein	3.80133611782e-06	2.89019007353e-05	2.51005646175e-05
+UniRef50_Q1MM06	Glucose 6 phosphate isomerase	0.00320092349052	0.00182371178004	-0.00137721171048
+UniRef50_Q5LXV7	Late competence protein, ABC transporter subunit	0.00695358199347	0.000973913268815	-0.00597966872466
+UniRef50_Q58639		0.00395508565504	0.00219761601247	-0.00175746964257
+UniRef50_F7XUY9	Putative polyhydroxyalkanoate synthesis repressor PhaR	1.17159934907e-05	1.57622196361e-05	4.0462261454e-06
+UniRef50_Q5HKM3	Immunodominant antigen B, putative	0.00675371370149	0.00411738827427	-0.00263632542722
+UniRef50_B4U552	Zinc binding lipoprotein LraI, laminin binding protein	0.000232061058724	0.00690599172841	0.00667393066969
+UniRef50_B9E943		0.0268514967504	0.00547305927367	-0.0213784374767
+UniRef50_F5XY47	Xanthine and CO dehydrogenases maturation factor like protein	6.61640802432e-06	2.18635623757e-05	1.52471543514e-05
+UniRef50_Q49X88	DNA mismatch repair protein MutS	0.0232366489346	0.00446585496443	-0.0187707939702
+UniRef50_A0A022L535		5.53050374006e-06	1.90659496241e-05	1.3535445884e-05
+UniRef50_Q097G2		4.17972315101e-05	9.85045064166e-06	-3.19467808684e-05
+UniRef50_C9LYM2	ATP dependent protease, Lon family	0.000502178351593	0.00200766925822	0.00150549090663
+UniRef50_T4JEK7	N 6 DNA Methylase family protein	0.00050499592194	0.00188522985676	0.00138023393482
+UniRef50_Q7VM29	GTPase Der	0.00464102051613	0.000977635539588	-0.00366338497654
+UniRef50_Q4EKV3		0.000605592495486	0.000932204239129	0.000326611743643
+UniRef50_R6C033	Thiazole biosynthesis protein ThiH	3.00393758387e-05	5.27926625725e-05	2.27532867338e-05
+UniRef50_A6T533	UPF0255 protein KPN78578_02430	0.00460145529896	0.00106798316623	-0.00353347213273
+UniRef50_UPI000219720B	hypothetical protein	0.00011176315459	7.20723728053e-05	-3.96907817847e-05
+UniRef50_C4RDJ1		0.0006601387699	3.47549539175e-05	-0.000625383815982
+UniRef50_UPI00046600C4	branched chain amino acid ABC transporter ATPase	2.75307179198e-05	1.24895016408e-05	-1.5041216279e-05
+UniRef50_UPI0002BA38E1	hypothetical protein, partial	0.000765174301733	0.00935200985958	0.00858683555785
+UniRef50_P37751	Putative glycosyltransferase WbbK	0.00124242801533	0.00127474790833	3.2319893e-05
+UniRef50_UPI0003605B6F	hypothetical protein	7.32014649759e-06	0.000128039337073	0.000120719190575
+UniRef50_A5WHU9		0.000166537936259	0.00426099378549	0.00409445584923
+UniRef50_C5N5T1	SagB type dehydrogenase domain protein	0.00826640204784	0.00158178013846	-0.00668462190938
+UniRef50_B0SHK4	Argininosuccinate lyase	1.79443471265e-05	1.18705643804e-05	-6.0737827461e-06
+UniRef50_D8JF32	Lon protease  C terminal proteolytic domain protein	9.25463766047e-05	0.0083599719159	0.0082674255393
+UniRef50_UPI0002626C4E	Tagatose bisphosphate aldolase	1.37592967312e-05	8.17206239203e-06	-5.58723433917e-06
+UniRef50_UPI0000164C98	putative transposase, partial	8.90646083249e-05	0.022534112041	0.0224450474327
+UniRef50_B2IIK5	tRNA 2 methylthio N dimethylallyladenosine synthase	0.00283529462655	0.000343206776653	-0.0024920878499
+UniRef50_UPI000360793E	hypothetical protein	3.27990943662e-06	4.39839517319e-06	1.11848573657e-06
+UniRef50_UPI0002FF7139	hypothetical protein	4.57962792289e-06	5.94186673981e-06	1.36223881692e-06
+UniRef50_E4R7C5	2 dehydropantoate 2 reductase	0.00128325717802	0.000187502669965	-0.00109575450806
+UniRef50_Q9Z4J7	Quinoprotein ethanol dehydrogenase	0.000658076984911	0.000410896603562	-0.000247180381349
+UniRef50_X6FMB7	Chromosome partitioning protein ParA	0.000180493864917	7.3105313456e-05	-0.000107388551461
+UniRef50_UPI00039DA7C1	amino acid carrier protein	1.00886320051e-05	0.0010270824368	0.00101699380479
+UniRef50_P92514	Cytochrome c oxidase subunit 3	0.0176488810023	0.00365712121956	-0.0139917597827
+UniRef50_A0A014M9H7	Delta 1 pyrroline 5 carboxylate dehydrogenase	0.000103356143755	0.00652886886295	0.00642551271919
+UniRef50_G0LQ70		0.0160834247792	0.00240467853155	-0.0136787462476
+UniRef50_A0A057ZZ67	Oxidoreductase	3.51587918784e-05	0.00128729154829	0.00125213275641
+UniRef50_Q59102	Ribulose bisphosphate carboxylase small chain, plasmid	0.000616978232434	7.2922485264e-05	-0.00054405574717
+UniRef50_X8CBL8		1.34184975827e-05	0.000106464503483	9.30460059003e-05
+UniRef50_Q8Q0F9	Macro domain containing protein MM_0177	0.00336768677592	0.0241323868818	0.0207647001059
+UniRef50_UPI0003C1AFD0	PREDICTED	7.65688706517e-05	0.000105876166497	2.93072958453e-05
+UniRef50_A0A023WMU7	Diguanylate cyclase	6.8395287659e-06	2.47341182178e-05	1.78945894519e-05
+UniRef50_Q1GFH6	Ppx GppA phosphatase	0.000887298551983	0.00122727254959	0.000339973997607
+UniRef50_A6V2C1		0.000199728036426	0.000276420460614	7.6692424188e-05
+UniRef50_P23847	Periplasmic dipeptide transport protein	0.0195928634865	0.00463529660483	-0.0149575668817
+UniRef50_Q6FEQ6	Non canonical purine NTP pyrophosphatase	6.91280530797e-06	1.95580226552e-05	1.26452173472e-05
+UniRef50_Q8DSP3		0.00345208400235	0.000322750497486	-0.00312933350486
+UniRef50_S6D6U3		0.000561117856197	4.70724959189e-06	-0.000556410606605
+UniRef50_V5ES07		9.15720396785e-06	1.15091343153e-05	2.35193034745e-06
+UniRef50_D3QI46		0.0111450922195	0.00152642008399	-0.00961867213551
+UniRef50_Q1IWL4	Chaperone protein DnaK	0.000121557148449	0.0538468163581	0.0537252592097
+UniRef50_UPI00047938D7	hypothetical protein, partial	2.33121490903e-05	5.24018868805e-05	2.90897377902e-05
+UniRef50_R0RZA1	Sterol O acyltransferase 2 domain protein	0.000302796247737	0.000550279574895	0.000247483327158
+UniRef50_M9VB96	Enoyl CoA hydratase isomerase family protein	0.000584976996731	0.01037028875	0.00978531175327
+UniRef50_Q4L4I8	Prolipoprotein diacylglyceryl transferase	0.00990272145363	0.00578867130651	-0.00411405014712
+UniRef50_UPI00042857FF	exodeoxyribonuclease III	4.81492674034e-05	1.88977653902e-05	-2.92515020132e-05
+UniRef50_Q3IUW3		0.0410016311801	0.00299746071371	-0.0380041704664
+UniRef50_UPI00047DBE48	methionine ABC transporter substrate binding protein	3.96821010926e-05	1.3901883067e-05	-2.57802180256e-05
+UniRef50_D4MBK3	TraX protein	9.23220574168e-06	0.00115119549306	0.00114196328732
+UniRef50_K2HST1	ATP synthase F0, subunit I	2.70549741286e-05	3.12669875198e-05	4.2120133912e-06
+UniRef50_UPI000466EE81	hypothetical protein	4.66222063836e-05	0.000187304464177	0.000140682257793
+UniRef50_UPI0003808063	hypothetical protein	6.02084529942e-06	1.74391398486e-05	1.14182945492e-05
+UniRef50_UPI000415D4ED	theronine dehydrogenase	9.52748937748e-06	6.29519064491e-06	-3.23229873257e-06
+UniRef50_T0V4W6	Proteinase	0.00463076684351	0.00167356114966	-0.00295720569385
+UniRef50_A0A024E6L7	Carbamoyl phosphate synthase L chain, ATP binding	7.65691660987e-05	0.00830563612971	0.00822906696361
+UniRef50_K0TJQ0		7.06404297436e-06	5.62341495465e-05	4.91701065721e-05
+UniRef50_O27367	DNA polymerase sliding clamp	0.0031317904777	0.00123649489093	-0.00189529558677
+UniRef50_I6U069		0.00673800652318	0.00109003907911	-0.00564796744407
+UniRef50_Q8NUV0	Putative surface protein MW2416	0.000773623452992	9.74642591402e-05	-0.000676159193852
+UniRef50_X1T4G6	Marine sediment metagenome DNA, contig	1.68114861294e-05	2.09747308137e-05	4.1632446843e-06
+UniRef50_P00467	Nitrogenase molybdenum iron protein alpha chain	0.00042309152877	0.00172405904234	0.00130096751357
+UniRef50_W0IE40		0.000212864626162	0.000170227055688	-4.2637570474e-05
+UniRef50_A7ZJG7	Crossover junction endodeoxyribonuclease RusA	0.000326356762696	0.000492194508663	0.000165837745967
+UniRef50_K0S630		5.91789781506e-06	0.000143363018454	0.000137445120639
+UniRef50_Q8U2H9	Isopentenyl diphosphate delta isomerase	0.004508833734	0.0015458476992	-0.0029629860348
+UniRef50_UPI0003B41990	GTP binding protein YchF	2.15016928992e-05	9.04287016718e-06	-1.2458822732e-05
+UniRef50_UPI0003732AC1	hypothetical protein	1.46148649425e-05	3.16576806943e-05	1.70428157518e-05
+UniRef50_F8JWN1		3.84843147402e-05	0.000129201723771	9.07174090308e-05
+UniRef50_UPI0003FF1B10	hypothetical protein	1.23645744096e-05	9.88919137972e-06	-2.47538302988e-06
+UniRef50_Q8ZQU2	Succinate dehydrogenase iron sulfur subunit	0.00161719350543	0.00113956999643	-0.000477623509
+UniRef50_UPI00036FEB03	hypothetical protein	1.35284103629e-05	7.8437785203e-05	6.49093748401e-05
+UniRef50_UPI000368F721	hypothetical protein	1.74090409951e-06	3.28644557969e-06	1.54554148018e-06
+UniRef50_I2BRJ1	UPF0125 protein PflA506_4569	2.24397623493e-05	4.52297385313e-05	2.2789976182e-05
+UniRef50_V5SY76	ATPase AAA	0.000244111058178	7.7409359159e-05	-0.000166701699019
+UniRef50_A0A011Q9T7		0.000148706334406	8.44122010235e-05	-6.42941333825e-05
+UniRef50_A0P1B5	Putative translation initiation inhibitor	2.3315335057e-05	1.82799545977e-05	-5.0353804593e-06
+UniRef50_G6YUN6	Cytochrome c type biogenesis protein CcmF	0.00013766298652	9.20500511064e-05	-4.56129354136e-05
+UniRef50_UPI000478A554	ABC transporter substrate binding protein	7.3499068248e-06	8.0111036962e-05	7.27611301372e-05
+UniRef50_F0Y1G4		3.12626116811e-05	0.000188399131595	0.000157136519914
+UniRef50_UPI000471C311	UTP  glucose 1 phosphate uridylyltransferase	2.76002970659e-05	1.43531404295e-05	-1.32471566364e-05
+UniRef50_A3CM87	Cation transporting ATPase, E1 E 2 family, putative	0.00720835645868	0.00692071125386	-0.00028764520482
+UniRef50_A6M1C8	Flagellar hook associated protein FlgK	0.000246441205932	0.0015373521008	0.00129091089487
+UniRef50_X1U0Y9	Marine sediment metagenome DNA, contig	3.77882028504e-05	2.96750603822e-05	-8.1131424682e-06
+UniRef50_Q2T3V8	Aminotransferase, class III	0.000752700280662	0.000324896022302	-0.00042780425836
+UniRef50_H2K108		9.21752031102e-05	8.05969091573e-05	-1.15782939529e-05
+UniRef50_Q2JU97	Sulfate adenylyltransferase	5.95862455945e-05	7.9547655755e-05	1.99614101605e-05
+UniRef50_UPI0003B4D9C2	acetyl CoA carboxylase	7.05390615059e-06	3.5669885056e-06	-3.48691764499e-06
+UniRef50_P46187	Protein RseC	0.0012343533184	0.000406399135599	-0.000827954182801
+UniRef50_A5D508	Carbamoyl phosphate synthase large chain	1.72081788734e-05	0.00569042962533	0.00567322144646
+UniRef50_UPI00034916BB	hypothetical protein	0.000166919528265	3.57968464385e-05	-0.000131122681826
+UniRef50_UPI0002889211	glucosamine  fructose 6 phosphate aminotransferase , partial	1.72980137856e-05	1.97563564627e-05	2.4583426771e-06
+UniRef50_UPI00046F52F1	hypothetical protein	9.8041609194e-06	0.000951085657322	0.000941281496403
+UniRef50_U5QPT0	Prolyl endopeptidase	5.567639954e-05	0.0236144077809	0.0235587313814
+UniRef50_D3BJZ9		9.55283921125e-07	1.86227912101e-05	1.7667507289e-05
+UniRef50_UPI0003727191	peptidase	4.68671657956e-06	8.5660168731e-06	3.87930029354e-06
+UniRef50_X3EY52	GTPase	1.85551999817e-05	0.00371958909161	0.00370103389163
+UniRef50_T1XPL8	Cobalamin synthesis protein, putative	0.0250367200924	0.00676092840125	-0.0182757916911
+UniRef50_UPI0004157C13	hypothetical protein	7.5336730949e-05	5.15102625556e-05	-2.38264683934e-05
+UniRef50_E9Z893	Alpha beta hydrolase	0.00241721944042	0.000242394012474	-0.00217482542795
+UniRef50_UPI000473D50C	DNA repair protein RadA, partial	7.31417375573e-06	5.94751522108e-06	-1.36665853465e-06
+UniRef50_A5VPL4	2 isopropylmalate synthase homocitrate synthase family protein	0.00132719388278	0.000637491800334	-0.000689702082446
+UniRef50_UPI00047A1CF1	ATP synthase	5.60844725465e-06	4.09497577497e-06	-1.51347147968e-06
+UniRef50_F9YYK5	Conserved membrane spanning protein	9.01638508349e-05	0.00610975119033	0.0060195873395
+UniRef50_F6C514	Transcriptional regulator, DeoR family	0.00300216551627	0.000259429023591	-0.00274273649268
+UniRef50_O27552	Leucine  tRNA ligase	0.00267861994676	0.000714457971558	-0.0019641619752
+UniRef50_Q9A0T3	Unsaturated chondroitin disaccharide hydrolase	0.000643818558623	0.00257507307191	0.00193125451329
+UniRef50_F7ZZ02	RDD domain containing protein	1.79405089546e-06	7.93660222491e-06	6.14255132945e-06
+UniRef50_Q6GEA0	Lysostaphin resistance protein A	0.0227527989668	0.0048733510195	-0.0178794479473
+UniRef50_Q9ZLE4	Succinyl CoA	3.43924757258e-05	0.00352688937974	0.00349249690401
+UniRef50_L0EXZ6	Phosphate ABC transporter, periplasmic phosphate binding protein PstS	7.86372397735e-06	6.96159948682e-06	-9.0212449053e-07
+UniRef50_B9KTS5	Animal heme peroxidase	0.00353532906952	0.00168598660914	-0.00184934246038
+UniRef50_Q82AZ8		1.00361758047e-05	0.00177395645239	0.00176392027659
+UniRef50_UPI000360375D	hypothetical protein	5.84862412686e-06	4.37368570907e-05	3.78882329638e-05
+UniRef50_G7FVR9		6.09316557814e-05	9.0232831922e-06	-5.19083725892e-05
+UniRef50_B9UQA9	PI 1 ancillary protein 2	0.0001566331904	0.0016533890873	0.0014967558969
+UniRef50_A6FPM7	PhoH like protein 	0.000451463530496	0.000434289272355	-1.7174258141e-05
+UniRef50_UPI00030E455E	hypothetical protein	0.000647203370722	0.00205773594541	0.00141053257469
+UniRef50_O27218	UPF0051 protein MTH_1150	0.00428358712802	0.000737031421257	-0.00354655570676
+UniRef50_UPI0003C165C4	PREDICTED	5.19766086743e-06	7.44205604633e-06	2.2443951789e-06
+UniRef50_UPI0001B4101D	thiamine biosynthesis protein ThiC	2.24393917865e-05	6.20239017523e-05	3.95845099658e-05
+UniRef50_F8IMU7		0.0050777731058	0.00141599298021	-0.00366178012559
+UniRef50_A6M039		0.000560947588265	0.00216165267926	0.00160070509099
+UniRef50_UPI00016C0F03	peptidyl tRNA hydrolase	1.79470699405e-05	2.65281089949e-05	8.5810390544e-06
+UniRef50_UPI0004783915	hypothetical protein, partial	3.88341451504e-05	0.000721223717473	0.000682389572323
+UniRef50_Q4L6U2	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00992061313661	0.00485236752012	-0.00506824561649
+UniRef50_UPI00036584C7	hypothetical protein	8.62862655521e-05	8.20961013802e-05	-4.1901641719e-06
+UniRef50_UPI0003808BC7	hypothetical protein	6.39959282003e-06	6.87295760849e-06	4.7336478846e-07
+UniRef50_UPI000382E998	hypothetical protein	0.000256050975403	1.4443545189e-05	-0.000241607430214
+UniRef50_B9EA42		0.0248866993053	0.00455613756771	-0.0203305617376
+UniRef50_UPI000376BE3D	hypothetical protein	3.64016639192e-05	2.36890137376e-05	-1.27126501816e-05
+UniRef50_B2TI02	Ser Thr protein phosphatase family protein	0.000389678553867	0.000270932757067	-0.0001187457968
+UniRef50_E8SHY9	Metallo beta lactamase superfamily domain protein in prophage	0.000695211309805	4.12851736792e-05	-0.000653926136126
+UniRef50_P50867	Cysteine synthase	2.4239608372e-05	8.10625176713e-06	-1.61333566049e-05
+UniRef50_UPI00036B0358	hypothetical protein	4.25096495263e-06	5.52649156193e-06	1.2755266093e-06
+UniRef50_W4UBJ6	Sodium dependent galactose transporter	0.000191942028225	0.00059994151876	0.000407999490535
+UniRef50_Q8IJN7	Enolase	8.02815177803e-06	6.42764108378e-05	5.62482590598e-05
+UniRef50_J1AHN1	ZIP zinc transporter family protein	0.00417208768651	0.0020013292859	-0.00217075840061
+UniRef50_T9Q7C2		0.000345261575169	0.000540213485111	0.000194951909942
+UniRef50_UPI00045DD854	PREDICTED	1.09538273435e-05	0.00024372767966	0.000232773852316
+UniRef50_G0IAR7	Multidrug resistance protein MdtG	0.00338938191841	0.000629765856829	-0.00275961606158
+UniRef50_A3PPJ6	Binding protein dependent transport systems inner membrane component	0.00392895131657	0.000659004409589	-0.00326994690698
+UniRef50_A0A009I7P3	LPXTG motif cell wall anchor domain protein	7.87645652842e-05	1.88907928919e-06	-7.6875485995e-05
+UniRef50_A0A024L4S5	Tail protein	0.00277268909009	0.000662888120069	-0.00210980097002
+UniRef50_K6PZY4	Putative esterase	6.36020606784e-06	9.88775311058e-06	3.52754704274e-06
+UniRef50_D4YR40		5.59072811518e-07	2.46747619874e-06	1.90840338722e-06
+UniRef50_R7CKR0	Replicative DNA helicase	8.46381140973e-05	0.00181144651105	0.00172680839695
+UniRef50_UPI0003503BD0		0.000375491549437	8.74895344331e-05	-0.000288002015004
+UniRef50_Q9RU95	NADH quinone oxidoreductase subunit I	0.000218556774031	0.00447972561343	0.0042611688394
+UniRef50_P42640	Putative phosphoethanolamine transferase YhbX	0.00257770462092	0.000790124915864	-0.00178757970506
+UniRef50_UPI00037DFCBE	hypothetical protein	3.28965499843e-05	2.12793455181e-05	-1.16172044662e-05
+UniRef50_M4WUT5		0.000917940422378	0.00076518964315	-0.000152750779228
+UniRef50_U6EDC0	Methyl viologen reducing hydrogenase subunit delta	0.0028685346852	0.000669905769279	-0.00219862891592
+UniRef50_Q47005	Nitrogen assimilation regulatory protein nac	0.00152553151237	0.00271491215676	0.00118938064439
+UniRef50_E4SRK6	Mannose specific phosphotransferase system component IIC low	0.000288899858702	0.00359824066688	0.00330934080818
+UniRef50_Q8CQI0	Lipoprotein signal peptidase	0.00128656128959	0.000584785554841	-0.000701775734749
+UniRef50_UPI00047E217B	hypothetical protein	4.97748094594e-05	4.58167545483e-05	-3.9580549111e-06
+UniRef50_B9EC33		0.0169155692712	0.00324424518435	-0.0136713240868
+UniRef50_UPI0003B68BAD	single stranded DNA binding protein	5.44704308844e-05	0.000704227432158	0.000649757001274
+UniRef50_A5D3C3	Putative Holliday junction resolvase	0.00813952435013	0.00426032143025	-0.00387920291988
+UniRef50_E3F446	Nickel import ATP binding protein NikD, putative	0.0002881572434	0.000404543431768	0.000116386188368
+UniRef50_A0A022NSU8		6.22571724302e-05	9.42500122933e-05	3.19928398631e-05
+UniRef50_E6NXI7		0.00263083411785	0.000839364231826	-0.00179146988602
+UniRef50_UPI0002FB146F	30S ribosomal protein S2	1.30516516969e-05	2.45014243412e-05	1.14497726443e-05
+UniRef50_Q9RV68	Transcription elongation factor GreA	0.000353893114548	0.0235796829397	0.0232257898252
+UniRef50_UPI00037DDB96	hypothetical protein	4.60648636281e-05	7.35995463982e-05	2.75346827701e-05
+UniRef50_E1QYV1		8.70776810049e-05	0.000621869897831	0.000534792216826
+UniRef50_D3RCC6	Carbohydrate kinase, FGGY like protein	7.9192864794e-05	0.00016988496944	9.0692104646e-05
+UniRef50_L5SRM4		0.00048349259828	0.000926404782403	0.000442912184123
+UniRef50_R5B4R5	Inner membrane translocator	0.000264903897812	0.00232392702337	0.00205902312556
+UniRef50_Q6LWG7	Regulator of arsenical resistance	0.00136971087067	0.000608900423076	-0.000760810447594
+UniRef50_A6X5J7	TonB dependent receptor	0.00767163280476	0.00235195784382	-0.00531967496094
+UniRef50_F7YB26		0.000222368129536	0.000170713615168	-5.1654514368e-05
+UniRef50_A6LV07	Patatin	0.000136605303564	0.000981663178563	0.000845057874999
+UniRef50_A3NHB2	Aldehyde dehydrogenase  family protein	0.0101330109423	0.00141861501652	-0.00871439592578
+UniRef50_UPI00044220DD		1.15795303126e-05	2.08746068447e-05	9.2950765321e-06
+UniRef50_G8WCV6	PTS system ascorbate specific transporter subunit IIC	0.0122881312311	0.00442292935069	-0.00786520188041
+UniRef50_Q6GCL3	Iron sulfur cluster repair protein ScdA	0.0199967513722	0.0103892598351	-0.0096074915371
+UniRef50_B7V6M6	Homoprotocatechuate 2,3 dioxygenase	0.000433597120441	0.000711151043628	0.000277553923187
+UniRef50_UPI00036F8CD4	hypothetical protein	3.07093601679e-06	1.16778055914e-05	8.60686957461e-06
+UniRef50_Q5SHB3	Ribonuclease Y	0.000132957542596	0.0203274198332	0.0201944622906
+UniRef50_B1BJN1	Oxidoreductase, NAD binding	0.000152251361085	0.00108405933916	0.000931807978075
+UniRef50_X5Z4Q0		0.000899528168626	0.000223988699868	-0.000675539468758
+UniRef50_G0K1E8	Oxygen independent coproporphyrinogen III oxidase	0.000525080414167	0.00862928535389	0.00810420493972
+UniRef50_C0MDU1	Response regulator protein	0.00727253398637	0.00154935168946	-0.00572318229691
+UniRef50_X5WX27	Transposase IS66	8.41465536282e-05	3.11518779172e-05	-5.2994675711e-05
+UniRef50_V7EIE7		6.28255376595e-05	3.3174602923e-05	-2.96509347365e-05
+UniRef50_Q9FMT1	3 isopropylmalate dehydrogenase 3, chloroplastic	5.80806512214e-05	2.996207124e-05	-2.81185799814e-05
+UniRef50_UPI00047729DA	chemotaxis protein CheA	2.70733427215e-06	2.47272575441e-06	-2.3460851774e-07
+UniRef50_B0V429	Transcriptional repressor, antitoxin for RelE like 	0.000492373028943	0.00460953071179	0.00411715768285
+UniRef50_U5MLW0	Methyl accepting chemotaxis protein McpC	0.000273663191735	0.00579324530124	0.0055195821095
+UniRef50_UPI0003C19C40	PREDICTED	4.62351372674e-06	8.47917844901e-05	8.01682707634e-05
+UniRef50_I6TP65	LrgA family protein	0.00431722220459	0.00131736270931	-0.00299985949528
+UniRef50_C5N355	Periplasmic binding protein	0.0128128432588	0.00401267492067	-0.00880016833813
+UniRef50_E6C9E2		0.000141204235229	0.00425275696547	0.00411155273024
+UniRef50_UPI000477A2AE	hypothetical protein	7.80320327194e-05	3.85214965911e-05	-3.95105361283e-05
+UniRef50_UPI0004747D71	hypothetical protein	2.36310013734e-05	4.01999064757e-05	1.65689051023e-05
+UniRef50_F9YY68		0.000200704150891	0.00738218097302	0.00718147682213
+UniRef50_UPI0003B2F873	glycerol 3 phosphate ABC transporter ATP binding protein	1.03493182799e-05	6.50970468326e-06	-3.83961359664e-06
+UniRef50_P59831	Ribosomal large subunit pseudouridine synthase A	2.60599231646e-05	1.55795477789e-05	-1.04803753857e-05
+UniRef50_B2VHD6	Protein RecA	0.000108058966276	0.0050027122078	0.00489465324152
+UniRef50_F0KP29	Amidohydrolase	0.000203283510393	0.00487650544172	0.00467322193133
+UniRef50_R7PW09	CAAX amino protease family protein	0.00299477336982	0.0011068705684	-0.00188790280142
+UniRef50_UPI00036E74BD	hypothetical protein	8.79705986538e-05	4.55135523497e-05	-4.24570463041e-05
+UniRef50_P23877	Ferric enterobactin transport system permease protein FepG	0.00532642038654	0.00159375413827	-0.00373266624827
+UniRef50_B0BWD8	Ribosomal RNA large subunit methyltransferase E	0.000124945826939	5.18465737379e-05	-7.30992532011e-05
+UniRef50_F6GSD7	Autotransporter	0.000607321802197	0.000169213110428	-0.000438108691769
+UniRef50_Q72PF1	Pyridoxine pyridoxamine 5 phosphate oxidase	9.33853636496e-06	0.000373912910547	0.000364574374182
+UniRef50_UPI00034575CD	hypothetical protein	1.92509328944e-05	1.00061342966e-05	-9.2447985978e-06
+UniRef50_C5QLR6		2.39841092416e-05	2.71768287441e-05	3.1927195025e-06
+UniRef50_Q74KU4	Non canonical purine NTP pyrophosphatase	1.1272020185e-05	1.12717309761e-05	-2.89208899999e-10
+UniRef50_G8VH89	ABC transporter, permease protein	0.000441004202645	0.00392006677388	0.00347906257124
+UniRef50_A3PPU7	ATPase associated with various cellular activities, AAA_5	0.00107045890889	0.000204135971329	-0.000866322937561
+UniRef50_Q2S3M6	Nucleoside diphosphate kinase	5.77542370069e-05	4.01697906924e-05	-1.75844463145e-05
+UniRef50_X5TWB1	C4 dicarboxylate ABC transporter	1.12210619093e-05	2.50499291876e-05	1.38288672783e-05
+UniRef50_F4A6D4	Flagellar motor switch protein FliN	9.49252277069e-05	0.000913079275518	0.000818154047811
+UniRef50_UPI000470A84B	hypothetical protein	9.41830120038e-06	0.000108799955024	9.93816538236e-05
+UniRef50_G8LJ33		0.000114816422054	0.000583599546428	0.000468783124374
+UniRef50_M3I579	Valine  tRNA ligase	0.00698043904907	0.00501779259376	-0.00196264645531
+UniRef50_G8UTA5		2.85974742877e-05	1.56993437741e-05	-1.28981305136e-05
+UniRef50_A1B9B4		0.00587970630977	0.00206454511261	-0.00381516119716
+UniRef50_F3V8H4	Hca operon transcriptional activator	0.000462951182693	0.00100948486478	0.000546533682087
+UniRef50_Q2T0P7	Mannitol ABC transporter, permease protein	0.0136900734705	0.00161526647422	-0.0120748069963
+UniRef50_UPI0002F85C08	hypothetical protein	1.67061966088e-05	3.49298615559e-06	-1.32132104532e-05
+UniRef50_UPI0000306491	50S ribosomal protein L18	7.02461102125e-05	0.000174799719393	0.000104553609181
+UniRef50_Q9RZA5	Response regulator	0.000251657325899	0.0705064913023	0.0702548339764
+UniRef50_R9YN56		0.00741481341688	0.00063464210059	-0.00678017131629
+UniRef50_Q7UX39	Histidinol dehydrogenase	3.82207423169e-06	1.25702241528e-05	8.74814992111e-06
+UniRef50_UPI000248C060	NH dependent NAD+ synthetase	0.000373972066032	4.05022317255e-05	-0.000333469834306
+UniRef50_E6G860	Replication initiator protein A domain protein	9.51041850226e-06	4.61987531327e-06	-4.89054318899e-06
+UniRef50_R5YAM0	Glycogen debranching enzyme GlgX	0.000340261614046	0.00157570981013	0.00123544819608
+UniRef50_G8VHB4	FecCD family membrane transport protein	0.000116030529356	0.0050974001078	0.00498136957844
+UniRef50_A0NUH2		0.000439912729906	0.0001114207344	-0.000328491995506
+UniRef50_A7AXT8		8.70555691176e-06	2.12106591877e-05	1.25051022759e-05
+UniRef50_K2FH80		0.000163861306694	0.000250578460538	8.6717153844e-05
+UniRef50_W8AHC9		3.89580662207e-06	0.000875479774968	0.000871583968346
+UniRef50_UPI0002F0BE77	hypothetical protein	3.35242926121e-05	0.000125844786224	9.23204936119e-05
+UniRef50_F7ZQR5	S adenosylmethionine dependent methyltransferase	0.000438904700045	0.00150395304405	0.001065048344
+UniRef50_D3DZP8	CMP N acetylneuraminic acid synthetase NeuA	0.00439305989831	0.000447838032911	-0.0039452218654
+UniRef50_UPI000470F84C	ribonuclease D	6.86492659097e-05	1.09504522765e-05	-5.76988136332e-05
+UniRef50_Q87F08	Anhydro N acetylmuramic acid kinase	0.00108153594866	0.00042664543238	-0.00065489051628
+UniRef50_B8ZKS3	Probable fructose 6 phosphate aldolase	6.84538805133e-05	0.00349222278758	0.00342376890707
+UniRef50_UPI00037A15A0	hypothetical protein	2.03752893926e-06	0.000673532459873	0.000671494930934
+UniRef50_Q64RT0	Imidazole glycerol phosphate synthase subunit HisH	3.67476873568e-05	0.00430887165149	0.00427212396413
+UniRef50_P0AER7	Glutamate aspartate transport system permease protein GltK	0.00257815953794	0.000264858031563	-0.00231330150638
+UniRef50_P56109	Fructose bisphosphate aldolase	1.51898573612e-05	0.0456819197685	0.0456667299111
+UniRef50_F0RL15	Diaminopimelate decarboxylase	0.00894698375312	0.00456109854004	-0.00438588521308
+UniRef50_Q46UT4		0.000184860117103	6.22839389907e-05	-0.000122576178112
+UniRef50_A0A011GQD3		0.000768213020928	0.007802134474	0.00703392145307
+UniRef50_O32544	TraN	1.47000494953e-05	5.98631430783e-06	-8.71373518747e-06
+UniRef50_F0KLF9		0.000113132663991	0.00827646225431	0.00816332959032
+UniRef50_E3NVW5		4.2257762563e-05	9.40346986673e-06	-3.28542926963e-05
+UniRef50_Q9I0J6	NADH quinone oxidoreductase subunit G	0.000448092981434	0.000535738089464	8.764510803e-05
+UniRef50_U2R557	Raf like protein	1.32049346164e-05	2.10131069834e-05	7.808172367e-06
+UniRef50_UPI00016A6D7F	hypothetical protein	7.95557562271e-05	0.000681470711115	0.000601914954888
+UniRef50_A0A034SNG1	3 methyladenine DNA glycosylase	0.0117117826086	0.00344069083943	-0.00827109176917
+UniRef50_UPI00034D9920	hypothetical protein	8.11865254147e-07	2.45046876323e-05	2.36928223782e-05
+UniRef50_B9EAD9		0.0195819537959	0.00663787893714	-0.0129440748588
+UniRef50_A4VU30	DNA uptake protein and related DNA binding proteins	0.00506819446202	0.00211965937365	-0.00294853508837
+UniRef50_UPI0003B4988B	glycine cleavage system aminomethyltransferase T	4.66187999727e-05	3.55044779566e-05	-1.11143220161e-05
+UniRef50_Q48G15	Transcriptional regulator ArgR	0.0011148163917	0.00031361066038	-0.00080120573132
+UniRef50_UPI00035C402E	hypothetical protein, partial	4.39876969726e-06	6.79998137654e-05	6.36010440681e-05
+UniRef50_P45119	Pyruvate dehydrogenase E1 component	8.85961965422e-05	3.56238375328e-05	-5.29723590094e-05
+UniRef50_P26905	Dipeptide transport ATP binding protein DppD	0.000763159440762	0.0033377514052	0.00257459196444
+UniRef50_B7GK36	Fatty acid desaturase	0.000129128616484	0.00131432195755	0.00118519334107
+UniRef50_Q0RPF6	GTPase Obg	0.000112235675575	0.00861007139272	0.00849783571715
+UniRef50_N6VD20		1.94561651828e-05	1.2963368716e-05	-6.4927964668e-06
+UniRef50_UPI0003742A66	ABC transporter	6.71424855361e-06	9.70552736473e-06	2.99127881112e-06
+UniRef50_P64632		4.77493015614e-05	0.00053693946399	0.000489190162429
+UniRef50_A6LWW1	GCN5 related N acetyltransferase	0.00100217519164	0.00118845240429	0.00018627721265
+UniRef50_F0Y0N8	Expressed protein 	0.000153139824143	0.00102939743285	0.000876257608707
+UniRef50_P52043	Propionyl CoA	0.00304292038607	0.00700024654844	0.00395732616237
+UniRef50_UPI00040C8409	hypothetical protein	0.000518686615852	4.75883016221e-05	-0.00047109831423
+UniRef50_Q9RYP5		7.32034884631e-05	0.00383347948403	0.00376027599557
+UniRef50_UPI00046FD691	precorrin 2 C20 methyltransferase	5.30532566322e-05	1.83032141903e-05	-3.47500424419e-05
+UniRef50_H0E6G7		5.41094633615e-06	8.38697284166e-05	7.84587820805e-05
+UniRef50_UPI0003B6E2B1	serine 3 dehydrogenase	1.04893032777e-05	3.41723805857e-06	-7.07206521913e-06
+UniRef50_UPI0002F6B5AC	hypothetical protein	4.57044822994e-06	6.86275181754e-06	2.2923035876e-06
+UniRef50_Q9ZDF1	CTP synthase	4.72019483423e-06	0.000109112578132	0.000104392383298
+UniRef50_R9ZG59	Oxidoreductase	0.000389874525162	0.000207239793125	-0.000182634732037
+UniRef50_F5YTP1		6.10867641777e-06	5.63451295406e-05	5.02364531228e-05
+UniRef50_W5XAY0	SsrA binding protein	2.0032081053e-05	0.00093060189795	0.000910569816897
+UniRef50_B7QX02		8.50684875116e-05	4.49369833323e-05	-4.01315041793e-05
+UniRef50_E8P9C7		0.000326670751027	0.00688654471952	0.00655987396849
+UniRef50_E6S2B8		9.66261063593e-05	0.00313873438461	0.00304210827825
+UniRef50_B2S553	NADH quinone oxidoreductase subunit K	3.6858137681e-05	3.50093034092e-05	-1.8488342718e-06
+UniRef50_UPI00029A5DDB	F0F1 ATP synthase subunit beta	2.98253993782e-05	3.6776749916e-05	6.9513505378e-06
+UniRef50_UPI000406B82B	2 dehydro 3 deoxygluconokinase	2.2197034944e-05	1.20422575083e-05	-1.01547774357e-05
+UniRef50_B1W1Y7	Putative 3 methyladenine DNA glycosylase	1.67943166284e-05	3.54140289705e-05	1.86197123421e-05
+UniRef50_K2A0T9	Membrane protein involved in aromatic hydrocarbon degradation	1.11404832896e-05	2.66285225987e-05	1.54880393091e-05
+UniRef50_T0XUL7		4.22411920983e-06	0.00256650663099	0.00256228251178
+UniRef50_Q2RZV3	ATP synthase subunit beta	1.71169545259e-05	1.27775817519e-05	-4.339372774e-06
+UniRef50_Q1QYW0		0.000270635817945	0.000533282456823	0.000262646638878
+UniRef50_UPI000395C02F	hypothetical protein, partial	2.29241707236e-05	0.000219923044684	0.00019699887396
+UniRef50_A6LU81	UPF0246 protein Cbei_1739	0.000365416778094	0.000434289272355	6.8872494261e-05
+UniRef50_Q8DSK3		0.00648618937898	0.00855774666994	0.00207155729096
+UniRef50_W4Q487	Carboxynorspermidine decarboxylase	7.71769419071e-05	0.000150577321798	7.34003798909e-05
+UniRef50_UPI0003B66FA9	FAD dependent pyridine nucleotide disulfide oxidoreductase, partial	0.00024310258778	3.38030597174e-05	-0.000209299528063
+UniRef50_UPI000309F09E	cytochrome P450	6.54463190979e-06	1.05247366787e-05	3.98010476891e-06
+UniRef50_Q9RQP9	Poly beta 1,6 N acetyl D glucosamine synthase	0.0180961403701	0.00138838769974	-0.0167077526704
+UniRef50_UPI0003B680A3	hypothetical protein	8.6299925328e-07	1.96896066242e-06	1.10596140914e-06
+UniRef50_Q8DSK9		0.0012510119925	0.00554755219991	0.00429654020741
+UniRef50_H3USC3		0.00682171677364	0.0557818322076	0.048960115434
+UniRef50_UPI000378FFA7	hypothetical protein	1.79402434838e-05	1.13203208925e-05	-6.6199225913e-06
+UniRef50_UPI0003B3F8F7	transposase, partial	0.00215274246182	0.00056970795275	-0.00158303450907
+UniRef50_P71285		0.0002529352368	0.00118158112352	0.00092864588672
+UniRef50_M9VD34	Tat  pathway signal sequence	0.00019226790604	0.00591982717186	0.00572755926582
+UniRef50_I6RIQ3	Two component sensor	0.000380404368056	0.000382267957271	1.863589215e-06
+UniRef50_D7A0A5	Phage head tail adaptor	3.27690035765e-05	3.41322921404e-05	1.3632885639e-06
+UniRef50_W1ETW9	Trimethylamine N oxide reductase	0.000867698665337	0.000265975169299	-0.000601723496038
+UniRef50_F7ZH46	Glutamate dehydrogenase	0.00731393513344	0.00260982313338	-0.00470411200006
+UniRef50_U6H7V4		1.81558407862e-05	2.55661703e-05	7.4103295138e-06
+UniRef50_W4TZ21	Protein translocase subunit SecA	9.69655795694e-05	0.00525543040194	0.00515846482237
+UniRef50_UPI000367E627	hypothetical protein	0.0006605624953	0.00030615834861	-0.00035440414669
+UniRef50_R7N4P8		1.04818739005e-05	1.08885809047e-05	4.067070042e-07
+UniRef50_Q98D26	Branched chain amino acid ABC transporter, periplasmic amino acid binding protein	0.0102405404887	0.00139937014502	-0.00884117034368
+UniRef50_G0DVP7	Triacylglycerol lipase	0.000201504976255	0.00762077026376	0.0074192652875
+UniRef50_Z5A0E9		9.1334271635e-06	1.57413183541e-05	6.6078911906e-06
+UniRef50_UPI000474C581	sodium	8.72742393899e-06	1.04257740839e-05	1.69835014491e-06
+UniRef50_H8MJ08		3.01628678885e-06	4.06755274841e-06	1.05126595956e-06
+UniRef50_Y6XNC4		0.00326036085579	0.000431119277652	-0.00282924157814
+UniRef50_B0V6T3		0.000413122987161	0.00588389988141	0.00547077689425
+UniRef50_UPI00035C1E4A	hypothetical protein, partial	0.000217035231015	6.46516329668e-05	-0.000152383598048
+UniRef50_A6LWL8		0.000502712400051	0.00115531923181	0.000652606831759
+UniRef50_UPI000150A602	2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein	2.99555503941e-06	1.35958129592e-05	1.06002579198e-05
+UniRef50_UPI00036D39A9	hypothetical protein	8.47443115323e-06	1.25187770827e-05	4.04434592947e-06
+UniRef50_A5IRS8	Isochorismate synthase	0.0167247503395	0.00449483479116	-0.0122299155483
+UniRef50_Q9KNG7	Probable chromosome partitioning protein ParB	0.000558134755183	0.00591177273773	0.00535363798255
+UniRef50_UPI00035F0102	hypothetical protein	0.000147125258368	1.53987812638e-05	-0.000131726477104
+UniRef50_UPI0002D8E4B0	hypothetical protein	3.87150273327e-05	5.24316948847e-05	1.3716667552e-05
+UniRef50_E3D3B9		0.000411158700507	0.00179892574703	0.00138776704652
+UniRef50_Q52967		0.000185010250068	2.59378315652e-05	-0.000159072418503
+UniRef50_UPI0003B70D90	heptaprenyl diphosphate synthase subunit II	3.80107002644e-05	3.76805535388e-05	-3.301467256e-07
+UniRef50_Q02500	NADH ubiquinone oxidoreductase chain 6	0.000111020452156	2.90525313383e-05	-8.19679208177e-05
+UniRef50_Q2JTQ1		0.000423570121724	0.000872313169363	0.000448743047639
+UniRef50_UPI00046A3E00	PTS beta glucoside transporter subunit IIABC	5.56264755156e-06	5.32175970636e-06	-2.408878452e-07
+UniRef50_UPI000365A17E	hypothetical protein	5.52446008369e-05	0.000174399629052	0.000119155028215
+UniRef50_E8PAF3	Glycerate kinase	0.000379110464253	0.00540498261899	0.00502587215474
+UniRef50_Q67P14	NADH quinone oxidoreductase subunit I 1	6.61586523722e-06	5.90748662164e-05	5.24590009792e-05
+UniRef50_M5DVC6	UPF0234 protein TOL_2827	1.4293609142e-05	5.63016835392e-05	4.20080743972e-05
+UniRef50_UPI0003955A36	biotin synthase	9.70603932537e-06	2.17311368072e-05	1.20250974818e-05
+UniRef50_A4WT84	Cytochrome c, monohaem	0.00196551470832	0.00056929866878	-0.00139621603954
+UniRef50_H9GTR8		8.80144926453e-05	4.00046662999e-05	-4.80098263454e-05
+UniRef50_Q9X051	Ribose import ATP binding protein RbsA 2	2.54153971927e-06	3.77109179729e-06	1.22955207802e-06
+UniRef50_Q8CRJ6	Alkanal monooxygenase alpha chain	0.00916218122751	0.00515684252718	-0.00400533870033
+UniRef50_A0A013LFH7		0.000240055289649	0.00311473372933	0.00287467843968
+UniRef50_G6G0I0	Proteophosphoglycan ppg4 	0.000158850899008	0.0003551640284	0.000196313129392
+UniRef50_J9V068		0.000536709936758	0.000668641596675	0.000131931659917
+UniRef50_C2GIT9		2.9804454217e-05	2.90417226937e-05	-7.627315233e-07
+UniRef50_A6LV04		0.000976277779387	0.0016175401785	0.000641262399113
+UniRef50_UPI000367DAA4	hypothetical protein	2.47465777097e-06	4.03227315166e-06	1.55761538069e-06
+UniRef50_F2EEA5	Predicted protein 	7.36124602676e-05	0.00261151012451	0.00253789766424
+UniRef50_K0X1N1		0.000339326745919	7.96050889419e-05	-0.000259721656977
+UniRef50_Q4L574	N5 carboxyaminoimidazole ribonucleotide synthase	0.0210438628288	0.00715224371664	-0.0138916191122
+UniRef50_UPI0004766F31	hypothetical protein, partial	2.91968702582e-06	1.30214390605e-05	1.01017520347e-05
+UniRef50_X5E0Q9	Triose phosphate Transporter family protein	0.0141145967891	0.00484991494416	-0.00926468184494
+UniRef50_Q3M1P1	Binding protein dependent transport systems inner membrane component	0.0019416260242	0.00069041534662	-0.00125121067758
+UniRef50_P02919	Penicillin binding protein 1B	0.00317002982213	0.000921889924818	-0.00224813989731
+UniRef50_R4LWQ6		5.79327844407e-05	3.83720698526e-05	-1.95607145881e-05
+UniRef50_Q4L860	Alkaline shock protein 23	0.00614141851528	0.00332041588497	-0.00282100263031
+UniRef50_Q5HK19	Sensor protein kinase WalK	0.0257024238417	0.00626586213568	-0.019436561706
+UniRef50_W9HAI5		3.57669145021e-06	1.52063023641e-05	1.16296109139e-05
+UniRef50_Q49WL3	Ribonuclease J 1	0.0238306703688	0.0134859834118	-0.010344686957
+UniRef50_B4EWA1	Purine nucleoside phosphorylase DeoD type	4.90951776641e-05	0.0683740606187	0.068324965441
+UniRef50_I6T7P3	Flavodoxin	0.0100471277956	0.00505614657222	-0.00499098122338
+UniRef50_Q49UP4	UPF0753 protein SSP2379	0.0106759006095	0.00412049237136	-0.00655540823814
+UniRef50_UPI0003B5EE25	ABC transporter permease	3.59893980663e-05	2.93798327623e-05	-6.609565304e-06
+UniRef50_UPI0002F44B36	hypothetical protein	3.63529986671e-05	0.000162896683754	0.000126543685087
+UniRef50_P44758	Hybrid peroxiredoxin hyPrx5	1.70848174752e-05	0.00162525811508	0.0016081732976
+UniRef50_UPI0003613AE0	hypothetical protein	0.000115174482534	9.14419955105e-05	-2.37324870235e-05
+UniRef50_B2UZY6	Penicillin binding protein	0.000257891648992	0.00295676336253	0.00269887171354
+UniRef50_Q8QZT1	Acetyl CoA acetyltransferase, mitochondrial	5.21214968188e-06	4.21961817776e-05	3.69840320957e-05
+UniRef50_P44624	1,6 anhydro N acetylmuramyl L alanine amidase AmpD	3.31388473841e-05	7.75350065714e-05	4.43961591873e-05
+UniRef50_UPI0004032490	hypothetical protein	4.7350740862e-06	2.30985112234e-05	1.83634371372e-05
+UniRef50_Q04RS9	Biotin synthase	4.52331156961e-06	1.39601880466e-05	9.43687647699e-06
+UniRef50_D7CVJ1	Transcriptional regulator, BadM Rrf2 family	2.96269119189e-05	0.00019205421953	0.000162427307611
+UniRef50_G6ES00	Transposase	0.00192783092086	0.000473770115279	-0.00145406080558
+UniRef50_S9R1C4	Enoyl [acyl carrier protein] reductase 	2.55352243368e-05	1.92631404318e-05	-6.272083905e-06
+UniRef50_G8RE63	ABC transporter ATP binding protein	0.0105803422739	0.00140154196912	-0.00917880030478
+UniRef50_Q5KUX3	Ribose import ATP binding protein RbsA	4.15182200609e-06	4.80633108111e-06	6.5450907502e-07
+UniRef50_UPI00037AE633	hypothetical protein	1.5059497486e-05	1.53262620828e-06	-1.35268712777e-05
+UniRef50_Z9VYD6		3.13582981848e-05	4.90501219884e-05	1.76918238036e-05
+UniRef50_UPI00016C5052	large conductance mechanosensitive channel protein MscL	0.000362649120809	8.02820309689e-05	-0.00028236708984
+UniRef50_K9D9U6	Diguanylate cyclase  domain containing protein	5.26048406939e-05	0.000332500823929	0.000279895983235
+UniRef50_I6U2X8		0.00525914523442	0.00114225995907	-0.00411688527535
+UniRef50_A6VYP9	Oxidoreductase FAD binding domain protein	0.000503272830884	0.000195790080794	-0.00030748275009
+UniRef50_Q2WGJ0	ATP synthase subunit alpha, chloroplastic	3.37791407038e-06	5.92420757458e-06	2.5462935042e-06
+UniRef50_UPI0003625BDB	hypothetical protein	5.0359112619e-05	8.78177491299e-05	3.74586365109e-05
+UniRef50_Q6F8I3	UPF0176 protein ACIAD2917	4.45131580353e-06	1.22507488224e-05	7.79943301887e-06
+UniRef50_Q02CT4	NADH quinone oxidoreductase subunit K 1	1.61533904911e-05	0.00122797460772	0.00121182121723
+UniRef50_UPI0004714BA7	hypothetical protein	1.19347282906e-05	6.85173669344e-06	-5.08299159716e-06
+UniRef50_P42237	Probable glucarate transporter	0.00441753169118	0.00813680608618	0.003719274395
+UniRef50_M9S4A5		0.000663274622552	0.000528303811067	-0.000134970811485
+UniRef50_B9JZN3		1.12571250333e-06	5.38093069683e-05	5.2683594465e-05
+UniRef50_H0HWX8		0.000223946280706	0.000181371008949	-4.2575271757e-05
+UniRef50_UPI0003289C1D		7.88293713464e-06	3.30623185799e-06	-4.57670527665e-06
+UniRef50_P75919	Cardiolipin synthase C	0.00400665440205	0.000575579195728	-0.00343107520632
+UniRef50_W1K3X1	LysR family transcriptional regulator 	6.70635132853e-05	2.97591070676e-05	-3.73044062177e-05
+UniRef50_B6I424	Glutamate ammonia ligase adenylyltransferase	0.000393291897783	0.000204501509084	-0.000188790388699
+UniRef50_B7GXG8	Short chain dehydrogenase family protein	0.000234949785595	0.00584000340349	0.00560505361789
+UniRef50_UPI0003B70587	hypothetical protein	2.55713156476e-05	1.99118279678e-05	-5.6594876798e-06
+UniRef50_UPI0003FE3085	chemotaxis protein CheA	1.74072366045e-05	1.67949492536e-06	-1.57277416791e-05
+UniRef50_D5AKE9		4.85780251964e-06	2.64231847178e-06	-2.21548404786e-06
+UniRef50_Q02GV4		0.00132980279419	0.000464996096738	-0.000864806697452
+UniRef50_A5ULP3	Hydroxyethylthiazole kinase	0.00171930475128	0.000298299702217	-0.00142100504906
+UniRef50_Q49XX5		0.0160252370759	0.00290269639789	-0.013122540678
+UniRef50_M9R1S6		4.9734300396e-05	8.14292138594e-05	3.16949134634e-05
+UniRef50_U8A0B9		8.97008121123e-06	1.92801075814e-05	1.03100263702e-05
+UniRef50_Q9HW54		0.000217154172112	0.000173375756472	-4.377841564e-05
+UniRef50_B1MCA4	Riboflavin biosynthesis protein RibBA	7.40731323682e-06	1.70311565424e-05	9.62384330558e-06
+UniRef50_B0VME8	Thiol	0.000556563245085	0.00630040511786	0.00574384187277
+UniRef50_N9N018		8.37672113294e-05	1.73468886804e-05	-6.6420322649e-05
+UniRef50_Q9RVZ5	Zinc metalloprotease, putative	8.52754492897e-05	0.0114766869112	0.0113914114619
+UniRef50_UPI00045E7E19	uroporphyrin III methyltransferase	2.98178600166e-05	1.12371780888e-05	-1.85806819278e-05
+UniRef50_W2C810		9.05293113847e-05	1.64159061812e-05	-7.41134052035e-05
+UniRef50_A4WN46	Dihydroxy acid dehydratase	2.10199807601e-05	1.03939223345e-05	-1.06260584256e-05
+UniRef50_Q2YWD0	HTH type transcriptional regulator SAB2452	0.0144201868865	0.00261994393215	-0.0118002429544
+UniRef50_Q9RME4	Phosphopantetheine adenylyltransferase	6.16851469722e-05	1.27911579097e-05	-4.88939890625e-05
+UniRef50_Q46482	Phosphoribosylamine  glycine ligase	0.000487883062122	0.000200895717825	-0.000286987344297
+UniRef50_UPI000376F60F	hypothetical protein	1.55247787925e-05	8.63297731949e-06	-6.89180147301e-06
+UniRef50_UPI0004666ABA	hypothetical protein	6.01243905262e-06	1.62607307604e-05	1.02482917078e-05
+UniRef50_A7X198		0.000370043574149	1.45798313737e-05	-0.000355463742775
+UniRef50_UPI00036FAB93	MULTISPECIES	0.00190077304021	0.000598005961359	-0.00130276707885
+UniRef50_M1V095	A G specific adenine glycosylase	0.000148227482538	0.00647141028911	0.00632318280657
+UniRef50_A4XQ45	Urease subunit beta	8.60701513733e-05	3.71996505491e-05	-4.88705008242e-05
+UniRef50_UPI00030D86CE	flagellar biosynthetic protein FlhB	9.91249402959e-05	2.36404942187e-05	-7.54844460772e-05
+UniRef50_P76545		0.00133622411715	0.000777149224201	-0.000559074892949
+UniRef50_R1EB69		2.43300382662e-06	4.23658433687e-05	3.99328395421e-05
+UniRef50_UPI00028A03C4	beta N acetylhexosaminidase	8.09530786042e-06	1.24279897522e-05	4.33268189178e-06
+UniRef50_D3F063	BolA family protein	3.78345731424e-05	0.000111795426022	7.39608528796e-05
+UniRef50_D7CQX7		0.000120859975083	0.0416186949894	0.0414978350143
+UniRef50_W6EXE3	Raffinose transport system permease protein	0.000525204600731	0.00167692972345	0.00115172512272
+UniRef50_E3I496	Polyhydroxyalkonate synthesis repressor, PhaR	3.16480465812e-05	1.10626507001e-05	-2.05853958811e-05
+UniRef50_UPI000225AC36	RNAse E	1.32467800821e-05	7.65325501882e-06	-5.59352506328e-06
+UniRef50_A5UKL3		0.00398188714036	0.00171675281453	-0.00226513432583
+UniRef50_U5UJL0		0.0220308311157	0.00638544889348	-0.0156453822222
+UniRef50_UPI00047BF1EC	excinuclease ABC subunit A	7.87508068484e-06	2.00602043417e-05	1.21851236569e-05
+UniRef50_V4ZVN5		4.38018958171e-05	8.8669105693e-05	4.48672098759e-05
+UniRef50_Q9RW93	Shikimate kinase	0.000507828684551	0.020336275748	0.0198284470634
+UniRef50_UPI0003B51C56	homoserine dehydrogenase	4.51647330146e-06	3.64723241846e-05	3.19558508831e-05
+UniRef50_Q5HRU9		0.00413223016883	0.00216607353705	-0.00196615663178
+UniRef50_Q27828	Bifunctional dihydrofolate reductase thymidylate synthase	2.28788741942e-05	8.83341961194e-05	6.54553219252e-05
+UniRef50_G7M1X8		0.00016604955521	0.00059236275891	0.0004263132037
+UniRef50_C5KZL8		9.69760616004e-06	5.36348956922e-06	-4.33411659082e-06
+UniRef50_UPI0002555E19	hydrolases of HD superfamily protein	1.86084292886e-05	0.000102252056623	8.36436273344e-05
+UniRef50_D7GDS1		0.000555127442285	0.00238034160775	0.00182521416546
+UniRef50_E4BHA0	4 phosphoerythronate dehydrogenase	0.000238412203486	0.00607172090438	0.00583330870089
+UniRef50_B4F2G7	Prolipoprotein diacylglyceryl transferase	0.00128756849185	0.000233065040062	-0.00105450345179
+UniRef50_A9KSS0	UvrABC system protein C	0.000372256634095	0.00159225960061	0.00122000296651
+UniRef50_Q2FW88		0.000500897000195	0.000553816090173	5.2919089978e-05
+UniRef50_P17855	Staphylocoagulase	0.0132376312781	0.00265877636947	-0.0105788549086
+UniRef50_Q6A6L8	Conserved membrane spanning protein	0.000117277378725	0.00560292978463	0.00548565240591
+UniRef50_B6ASY9		4.31546223661e-05	3.52506632775e-05	-7.9039590886e-06
+UniRef50_K7KA74		2.13245459195e-05	2.07889820164e-05	-5.355639031e-07
+UniRef50_B0S1E5	Translation initiation factor IF 2	0.000500509660907	0.00114409778029	0.000643588119383
+UniRef50_I6T4B3		6.33706676712e-05	6.36533679428e-05	2.827002716e-07
+UniRef50_G8QKA4		6.87620772728e-05	2.06995529004e-05	-4.80625243724e-05
+UniRef50_G2A420	Prepilin type N terminal cleavage methylation domain protein	5.71346966362e-05	7.39380445127e-05	1.68033478765e-05
+UniRef50_B8FRJ8	Proton translocating NADH quinone oxidoreductase, chain M	0.0001538141831	0.000776576743153	0.000622762560053
+UniRef50_A9E7Y1		0.000896849751893	0.00011975785162	-0.000777091900273
+UniRef50_C4JB45		6.58096548847e-05	6.11950423154e-05	-4.6146125693e-06
+UniRef50_P0A4I5	Sensor protein CiaH	0.00354618237767	0.00297614907758	-0.00057003330009
+UniRef50_D8JKU2		0.000695619257029	0.00969717804176	0.00900155878473
+UniRef50_UPI000307CD30	hypothetical protein	5.05932232876e-05	9.04697160414e-05	3.98764927538e-05
+UniRef50_O33832	Fructose 1,6 bisphosphatase inositol 1 monophosphatase	7.21098269097e-06	2.57826292291e-05	1.85716465381e-05
+UniRef50_M9VC77	Methylmalonyl CoA mutase, small subunit	7.64657641136e-05	0.00769249042903	0.00761602466492
+UniRef50_I4KUA6	Iron ABC transporter, periplasmic iron binding protein	0.000575712232199	0.000249563412836	-0.000326148819363
+UniRef50_A3SN26		4.22036483988e-06	7.77131779435e-06	3.55095295447e-06
+UniRef50_A6LX02	NADH	0.000138189354568	0.00160228524652	0.00146409589195
+UniRef50_UPI0000165EF1	hypothetical protein DR_A0286, partial	9.39185305452e-05	0.0352218831095	0.035127964579
+UniRef50_E2PX18	Sugar kinase	0.000119457591412	0.00521751341722	0.00509805582581
+UniRef50_UPI0003673178	hypothetical protein	1.94303615504e-05	3.46953521549e-06	-1.59608263349e-05
+UniRef50_UPI0001FFDF12	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial	9.08334799347e-05	1.57589244687e-05	-7.5074555466e-05
+UniRef50_E3HCS4	TRAP transporter solute receptor, TAXI family	1.40683717345e-05	2.56442763708e-05	1.15759046363e-05
+UniRef50_E2SCH3	Ribonucleoside diphosphate reductase subunit beta	0.000570026814461	0.00437711343014	0.00380708661568
+UniRef50_UPI0003EA9CC0	PREDICTED	2.65273054864e-05	7.05734689415e-05	4.40461634551e-05
+UniRef50_J1K020		2.06627742094e-05	3.74426508071e-05	1.67798765977e-05
+UniRef50_UPI00037CD073	hypothetical protein, partial	1.18738267055e-05	3.46023470964e-05	2.27285203909e-05
+UniRef50_A5UJU7	Serine acetyltransferase, CysE	0.00261350542105	0.000557201330567	-0.00205630409048
+UniRef50_UPI000395575D	signal peptide protein	2.20514565551e-05	9.65755770203e-06	-1.23938988531e-05
+UniRef50_Q16B11	Membrane protein, putative	0.00743414003025	2.04927068313e-05	-0.00741364732342
+UniRef50_UPI00036A093B	hypothetical protein	0.000449485524703	0.000275313896873	-0.00017417162783
+UniRef50_B9KVZ4	DoxX family protein	0.00144484181353	0.000204350017516	-0.00124049179601
+UniRef50_L6P508	DNA topoisomerase IV subunit A	0.00353284008632	0.000899602066631	-0.00263323801969
+UniRef50_A6LYN3	Drug resistance transporter, EmrB QacA subfamily	0.000109522047056	0.00158495094711	0.00147542890005
+UniRef50_P12045	N5 carboxyaminoimidazole ribonucleotide synthase	4.01472980422e-06	0.000864585509472	0.000860570779668
+UniRef50_W0YU10	Phosphatidylethanolamine	0.00120031983903	0.000151444464203	-0.00104887537483
+UniRef50_Q9JSN0	Pimeloyl [acyl carrier protein] methyl ester esterase	0.000692993024142	0.00480896423553	0.00411597121139
+UniRef50_J1AY66		0.000227131568354	0.0138707980335	0.0136436664651
+UniRef50_A4WX23		0.0002609505722	0.000403408097292	0.000142457525092
+UniRef50_UPI00035E0126	hypothetical protein	2.30383464608e-05	1.48941801892e-05	-8.1441662716e-06
+UniRef50_I1ZJ75	N acetylneuraminate lyase	0.000379469604023	0.00300509355431	0.00262562395029
+UniRef50_UPI000374FB7B	hypothetical protein	2.716693052e-06	4.24508526211e-06	1.52839221011e-06
+UniRef50_A0A024JM61	Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2 3 protein complex that nucleates branched actin filaments	9.10167578266e-06	1.68957908953e-05	7.79411511264e-06
+UniRef50_C7J807	Os10g0561000 protein 	5.8700968243e-05	0.000314223304134	0.000255522335891
+UniRef50_UPI0004673F99	transposase, partial	0.000155122375566	3.28414597034e-05	-0.000122280915863
+UniRef50_Q9RS38	Guanylate kinase	0.000665668358082	0.0387675489486	0.0381018805905
+UniRef50_UPI00046A1E34	hypothetical protein	8.0416508865e-05	0.000260671293239	0.000180254784374
+UniRef50_Q9RTJ0		0.000313700267745	0.100472575923	0.100158875655
+UniRef50_N6YR38	Proline glycine betaine ABC transporter periplasmic protein	0.0001959397886	5.45655276388e-06	-0.000190483235836
+UniRef50_K9VMS4	UDP galactopyranose mutase	0.000238664680596	0.0547696078905	0.0545309432099
+UniRef50_Q5LX45	Membrane protein	0.00416133359018	0.000978281425483	-0.0031830521647
+UniRef50_Q5HXL7		0.00137535638915	0.000848947598611	-0.000526408790539
+UniRef50_Q83L33	UPF0061 protein YdiU	0.0039166675244	0.000328726023827	-0.00358794150057
+UniRef50_UPI00042B6AB1	GMP synthase	3.0600809089e-06	3.81968825197e-06	7.5960734307e-07
+UniRef50_I0ZPZ0	Hydrogenase 1 large subunit	0.00141060494847	0.000760707140905	-0.000649897807565
+UniRef50_B2TCX7	Periplasmic binding protein LacI transcriptional regulator	9.93134968576e-06	9.35612586909e-05	8.36299090051e-05
+UniRef50_P42765	3 ketoacyl CoA thiolase, mitochondrial	7.97204612988e-06	1.64645272475e-05	8.49248111762e-06
+UniRef50_A4VJJ6	RNA binding S1	0.000682174827427	0.000211191922662	-0.000470982904765
+UniRef50_U6HHG3	Thymidylate synthase	1.22132270647e-05	5.65571551578e-05	4.43439280931e-05
+UniRef50_K8WD83		3.05824656255e-05	1.45608493609e-05	-1.60216162646e-05
+UniRef50_I0QGZ0	Putative polysaccharide biosynthesis protein 	1.12857081252e-05	6.64808613997e-06	-4.63762198523e-06
+UniRef50_P52052		0.00347043158911	0.000182670126934	-0.00328776146218
+UniRef50_Q6ADC9	50S ribosomal protein L20	0.033961800351	0.0172376889532	-0.0167241113978
+UniRef50_P21332	Oligo 1,6 glucosidase	2.7498218324e-05	0.000900706111549	0.000873207893225
+UniRef50_A0A024HC94	LysR family transcriptional regulator	0.000194246649494	0.000600667478795	0.000406420829301
+UniRef50_Q8CSM8	Aspartokinase	0.0153412784405	0.00491240024303	-0.0104288781975
+UniRef50_C7LDR5	Glutamine amidotransferase, putative	0.00511390510548	0.000972852655583	-0.0041410524499
+UniRef50_UPI0003467BCD	hypothetical protein	7.21337449315e-05	3.83870064577e-05	-3.37467384738e-05
+UniRef50_Q30SK1	Polysaccharide deacetylase	0.000185004913382	0.00874764169265	0.00856263677927
+UniRef50_UPI0003C7F3E1	protein tyrosine kinase	1.87733561182e-05	3.15141895913e-05	1.27408334731e-05
+UniRef50_R5PQB3	AmiC protein	1.40974905583e-05	3.60753415439e-05	2.19778509856e-05
+UniRef50_Q4KC87	Fe ions import ATP binding protein FbpC	1.92586739354e-05	1.65824878376e-05	-2.6761860978e-06
+UniRef50_Q49Y71	D tyrosyl tRNA deacylase	8.96476724282e-06	4.17489335343e-05	3.27841662915e-05
+UniRef50_UPI00029CB5BC	L carnitine dehydratase bile acid inducible protein F, partial	9.5283238065e-06	0.000165939169361	0.000156410845555
+UniRef50_Q5HR28	Response regulator SaeR	0.0145538576158	0.00254241007237	-0.0120114475434
+UniRef50_UPI000411F9DF	hypothetical protein	1.90760319639e-05	0.000110758449319	9.16824173551e-05
+UniRef50_M1WNQ8		0.00031151163683	0.000361085846407	4.9574209577e-05
+UniRef50_K7YE63		0.000179755232787	0.00132069569557	0.00114094046278
+UniRef50_Q8EDH1	3 oxoacyl [acyl carrier protein] synthase 3	2.7716453189e-05	1.80745131138e-05	-9.6419400752e-06
+UniRef50_UPI000411E306	indole 3 glycerol phosphate synthase	2.29060948712e-05	1.16354238464e-05	-1.12706710248e-05
+UniRef50_UPI000464983B	histidine kinase	0.000105025276587	7.27094247687e-05	-3.23158518183e-05
+UniRef50_P77599	Probable fimbrial chaperone YfcS	0.00259997291813	0.000520391958389	-0.00207958095974
+UniRef50_Q9Z6P2	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.8338745651e-05	3.44847885327e-05	-2.38539571183e-05
+UniRef50_Q6LWM9	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	5.55563764806e-06	1.1446013559e-05	5.89037591094e-06
+UniRef50_M2XTQ6		2.94835901563e-06	9.9100522092e-06	6.96169319357e-06
+UniRef50_D2ZNU9		0.00270032530065	0.000113220462059	-0.00258710483859
+UniRef50_O33925	Methionine  tRNA ligase	8.59994846826e-06	1.62269579521e-05	7.62700948384e-06
+UniRef50_A3DIZ4	DNA directed RNA polymerase subunit beta	0.000108622261922	0.00177434470421	0.00166572244229
+UniRef50_D2ZNU3		0.00230319135532	0.000509483617324	-0.001793707738
+UniRef50_Q6GJ92	Protein VraC	0.00538301300108	0.00252408789129	-0.00285892510979
+UniRef50_D2ZNU0		0.00408801440118	0.00151644061144	-0.00257157378974
+UniRef50_F3U4T8	Aldehyde dehydrogenase EutE	0.000211160489009	0.00886505932093	0.00865389883192
+UniRef50_G8AVK1		5.74268745739e-05	6.18563059841e-05	4.4294314102e-06
+UniRef50_X6CFN2	Transposase	3.54010595625e-05	3.5415083322e-05	1.40237595e-08
+UniRef50_W4HGN2		6.58086108151e-05	4.14145599604e-05	-2.43940508547e-05
+UniRef50_Q8DWZ2	Pseudouridine synthase	0.00601695535068	0.0108420113307	0.00482505598002
+UniRef50_UPI0002F4B1FA	hypothetical protein	3.0170871773e-05	4.57207759576e-05	1.55499041846e-05
+UniRef50_L0GPC8	Acyl CoA dehydrogenase	0.000704723695002	0.000332704819631	-0.000372018875371
+UniRef50_E4R6V3	ATP dependent helicase HrpB	5.22833779594e-05	9.07735774225e-05	3.84901994631e-05
+UniRef50_B9KQM1	Major facilitator superfamily MFS_1	0.00062687744687	0.00043385957659	-0.00019301787028
+UniRef50_Q72M00	Ketol acid reductoisomerase	0.000193989710217	0.00511738440251	0.00492339469229
+UniRef50_UPI000369FF3F	hypothetical protein	1.06934374895e-05	3.47331607848e-06	-7.22012141102e-06
+UniRef50_R7U816		9.01592520477e-06	2.65831131546e-05	1.75671879498e-05
+UniRef50_UPI00035CB92A	hypothetical protein	7.77805858294e-06	1.63246722254e-05	8.54661364246e-06
+UniRef50_UPI000464C182	hypothetical protein	2.58302114497e-06	3.39968459782e-05	3.14138248332e-05
+UniRef50_UPI000379A4AF	hypothetical protein	1.95337917903e-05	6.11270902781e-05	4.15932984878e-05
+UniRef50_Q3J4T6	ThiF family protein	0.0146518265403	0.00292045267691	-0.0117313738634
+UniRef50_W7X462		3.66599653055e-06	0.000258895280269	0.000255229283738
+UniRef50_UPI00035D977C	hypothetical protein	9.15942036928e-06	2.2224132396e-05	1.30647120267e-05
+UniRef50_I4VTW8		0.00013296511865	6.65102560551e-05	-6.64548625949e-05
+UniRef50_G4P1D7		6.71920246833e-06	0.00143375068931	0.00142703148684
+UniRef50_J8V4X4		0.000133075796983	9.50465709992e-06	-0.000123571139883
+UniRef50_Q9K3C5	B type flagellar hook associated protein 2	0.00118983305001	0.00026679866902	-0.00092303438099
+UniRef50_Q3JGP3	V4R domain protein	0.000250543797907	0.000835801995839	0.000585258197932
+UniRef50_S5S8C8	Aldo keto reductase protein	0.00429067220178	0.000668854683766	-0.00362181751801
+UniRef50_G0D373		4.16234263799e-05	1.07187798473e-05	-3.09046465326e-05
+UniRef50_P31449		0.00132715307768	0.00155111395961	0.00022396088193
+UniRef50_UPI0004715D35	hypothetical protein, partial	4.01598140582e-05	0.000167549333427	0.000127389519369
+UniRef50_W4SJE9		0.000113276190287	3.91412388612e-05	-7.41349514258e-05
+UniRef50_Q9KPW2	UDP 3 O acylglucosamine N acyltransferase	0.00324577631464	0.000646210240034	-0.00259956607461
+UniRef50_UPI0003ACD77D		1.64466244913e-05	4.44052004578e-06	-1.20061044455e-05
+UniRef50_J9YSZ8	Transcriptional regulator RofA	0.000247944520113	0.000249037400741	1.092880628e-06
+UniRef50_Q7VJB6	Phosphoglycerate kinase	5.24292543885e-06	0.00536357131581	0.00535832839037
+UniRef50_B0UVX7	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	5.0217650896e-05	5.07997876713e-05	5.821367753e-07
+UniRef50_UPI00037525E2	hypothetical protein	0.00011260505332	4.39055975949e-05	-6.86994557251e-05
+UniRef50_A6V9P7	Conserved exported protein	4.3849392214e-05	1.65787259339e-05	-2.72706662801e-05
+UniRef50_B7V5G9	Diaminopimelate epimerase	0.00433347813722	0.014378396602	0.0100449184648
+UniRef50_Q4JUY7	Ribonuclease 3	1.7361772528e-05	6.14774878368e-05	4.41157153088e-05
+UniRef50_Q5HLV2	Staphylococcal secretory antigen SsaA	0.037140013015	0.00966400716106	-0.0274760058539
+UniRef50_B3PJA9	tRNA pseudouridine synthase D	5.38255502605e-06	7.38968624151e-06	2.00713121546e-06
+UniRef50_UPI00016A3B06	nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial	5.63671260145e-06	2.51609597342e-05	1.95242471327e-05
+UniRef50_A6GVN8	Uroporphyrinogen decarboxylase	9.83420976293e-06	1.01164115729e-05	2.8220180997e-07
+UniRef50_A5UM22	Possible glycosyltransferase	0.0043846249373	0.00030923215204	-0.00407539278526
+UniRef50_Q31YX9	Elongation factor P like protein	0.00390680773216	0.00107780422863	-0.00282900350353
+UniRef50_U5MSB5	Stage V sporulation protein D	0.000399610756021	0.00150644936997	0.00110683861395
+UniRef50_M4MR97	Ribonuclease J	0.000171159783699	4.62956254521e-05	-0.000124864158247
+UniRef50_UPI000363EEDE	hypothetical protein	0.000141220999367	0.000102523335063	-3.8697664304e-05
+UniRef50_A6M3E8		0.000465858794105	0.00259423366875	0.00212837487464
+UniRef50_P50360		6.78975678529e-06	6.87673967639e-06	8.69828911e-08
+UniRef50_P50361		0.000414994839979	7.28571198646e-05	-0.000342137720114
+UniRef50_T1XMS1	High affinity iron permease	0.0128122881096	0.0044895675244	-0.0083227205852
+UniRef50_D8HC44		0.00183352507788	0.000172029148656	-0.00166149592922
+UniRef50_D3E0N8	Dolichol kinase	0.00225569794777	0.000773755559468	-0.0014819423883
+UniRef50_UPI0002558256	3 hydroxyacyl CoA dehydrogenase NAD binding protein, partial	5.09684253994e-06	8.52092167556e-06	3.42407913562e-06
+UniRef50_Q8XCJ6	Glucose 6 phosphate 1 dehydrogenase	0.00302398627218	0.002064214654	-0.00095977161818
+UniRef50_O53553		1.2618632476e-06	5.79145262757e-06	4.52958937997e-06
+UniRef50_D3R582	Glycosyltransferase	0.000453766970837	0.0108386291823	0.0103848622115
+UniRef50_UPI0003DE98F5		7.656692621e-06	0.000627041524768	0.000619384832147
+UniRef50_Q9T4F6	Light independent protochlorophyllide reductase subunit N	5.96604285672e-05	2.72096305511e-05	-3.24507980161e-05
+UniRef50_UPI000262CF64	shikimate kinase	1.67483645531e-05	1.65260915312e-05	-2.222730219e-07
+UniRef50_O26249	Probable cobalt precorrin 6B C methyltransferase (decarboxylating)	0.0027494184603	0.000341406595601	-0.0024080118647
+UniRef50_Q9A1B6	Non canonical purine NTP pyrophosphatase	0.00619033570964	0.00920366996397	0.00301333425433
+UniRef50_Q6AIT3		1.44839375134e-05	0.00026804462307	0.000253560685557
+UniRef50_Q1IZX0	NADH quinone oxidoreductase subunit D	1.36418783139e-05	0.000112195006889	9.85531285751e-05
+UniRef50_M1LR90	Pleiotropic regulatory protein DegT	0.000526039296542	0.00154851677335	0.00102247747681
+UniRef50_Q881N5	TonB dependent receptor, putative	0.00129327083135	0.000453655687352	-0.000839615143998
+UniRef50_R6GWD9	GTP binding protein TypA	1.70688504294e-05	2.05476873716e-05	3.4788369422e-06
+UniRef50_UPI000361993A	molybdenum metabolism regulator	4.4226573398e-05	3.09072792455e-05	-1.33192941525e-05
+UniRef50_C6S8I9		8.21812747825e-05	0.0049085116792	0.00482633040442
+UniRef50_UPI000365A3DC	hypothetical protein	0.000115712334465	2.63589003369e-05	-8.93534341281e-05
+UniRef50_I3ZMM6	Endopolygalacturonase	7.1040862917e-06	1.03087780987e-05	3.204691807e-06
+UniRef50_A4BHS1	Phenol hydroxylase, putative	5.4750490027e-05	7.51635541821e-05	2.04130641551e-05
+UniRef50_UPI000362A7CA	hypothetical protein, partial	1.10319819596e-05	8.24373726249e-06	-2.78824469711e-06
+UniRef50_W0NLZ2	Replication protein RepA	0.000140659120767	3.39387252408e-05	-0.000106720395526
+UniRef50_U7J5E9		1.23230321256e-05	1.22181263849e-05	-1.049057407e-07
+UniRef50_M0YA73		0.000595056610429	0.000324523851863	-0.000270532758566
+UniRef50_I6T572	Integrase	0.00770168863285	0.00224185936166	-0.00545982927119
+UniRef50_Q5LNW6	Bacterial type II III secretion system protein	0.0112812311519	0.00277581706003	-0.00850541409187
+UniRef50_F0YCD9		0.000338615323502	0.000666692651771	0.000328077328269
+UniRef50_E2LMJ8		1.67675642795e-05	3.7307595473e-05	2.05400311935e-05
+UniRef50_UPI00047D6BC3	hypothetical protein	1.81867098803e-05	1.91875867654e-05	1.0008768851e-06
+UniRef50_Q8XE94	Pyrimidine specific ribonucleoside hydrolase RihB	0.00365556008667	0.000508312631116	-0.00314724745555
+UniRef50_UPI0003B5EAE5	branched chain amino acid ABC transporter permease	4.80785666029e-05	1.22299618811e-05	-3.58486047218e-05
+UniRef50_Q9KF57	Phosphoribosylformylglycinamidine synthase 2	1.89818054931e-05	0.00384261638498	0.00382363457949
+UniRef50_Q9K0Y9	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000451398238643	0.00288592028218	0.00243452204354
+UniRef50_K7RRN0	Integral membrane protein	0.0012832687334	0.0208896770386	0.0196064083052
+UniRef50_J5III2		0.000651031440774	0.00184259116595	0.00119155972518
+UniRef50_B9KQG4	Flagellar hook associated protein FlgK	0.0013213104412	0.000918990110348	-0.000402320330852
+UniRef50_F8JV08		0.000173433224809	2.46948653296e-05	-0.000148738359479
+UniRef50_Q9KXU5	60 kDa chaperonin 2	0.00232197681639	0.00287579608967	0.00055381927328
+UniRef50_UPI00045DE6E8	PREDICTED	0.000130365761628	0.000344360207441	0.000213994445813
+UniRef50_M9RHS9		0.000192168524892	0.000363327048997	0.000171158524105
+UniRef50_E8U7S3		0.000988097606963	0.0286343634284	0.0276462658214
+UniRef50_G0AF05	Methionine ABC transporter substrate binding protein	4.34134383867e-05	1.03656729646e-05	-3.30477654221e-05
+UniRef50_UPI00037AFDDF	hypothetical protein	4.67174722923e-06	7.05812295456e-06	2.38637572533e-06
+UniRef50_UPI000319862A	hypothetical protein	0.000663921895969	6.11436615497e-05	-0.000602778234419
+UniRef50_B1VYS6		9.14009658218e-05	4.2858431686e-05	-4.85425341358e-05
+UniRef50_P77552		0.00264027280994	0.000146559158908	-0.00249371365103
+UniRef50_C6STR4		0.00156939618896	0.000637374183882	-0.000932022005078
+UniRef50_K0TBE2		0.000105296157079	8.22609206691e-05	-2.30352364099e-05
+UniRef50_UPI0004786C6A	hypothetical protein	1.16300484585e-05	0.000119978472902	0.000108348424444
+UniRef50_UPI0003AE56AA	PREDICTED	3.43240621507e-06	0.000155449651556	0.000152017245341
+UniRef50_Q0BTM6	3 oxoacyl [acyl carrier protein] reductase	0.000173689872173	0.000229818447619	5.6128575446e-05
+UniRef50_Q797S1	Putative PTS system EIIBC component YbbF	1.2339034572e-05	1.3736655603e-05	1.397621031e-06
+UniRef50_P19994	Methionine aminopeptidase 1	1.19577634368e-05	0.000851264625898	0.000839306862461
+UniRef50_UPI000369A8C8	MULTISPECIES	3.82774819717e-06	1.02967645974e-05	6.46901640023e-06
+UniRef50_A5UMG5	Adhesin like protein	0.00348806394214	0.00114594488543	-0.00234211905671
+UniRef50_UPI00036FF434	hypothetical protein	5.12717286721e-06	8.1166132018e-07	-4.31551154703e-06
+UniRef50_A9KCZ5	Uroporphyrinogen decarboxylase	5.18063270852e-06	9.1211091838e-06	3.94047647528e-06
+UniRef50_A0A023S0A3	LysR family transcriptional regulator	0.000492640676188	0.00855461688721	0.00806197621102
+UniRef50_UPI000370F363	hypothetical protein	3.06108513412e-05	1.52506782587e-05	-1.53601730825e-05
+UniRef50_Q3JUP4		7.42262273789e-05	0.000223996547545	0.000149770320166
+UniRef50_E6K2Y0	Carbohydrate kinase, FGGY family protein	0.000400509962594	0.00404560303575	0.00364509307316
+UniRef50_UPI00035EBFF4	hypothetical protein	4.51553951965e-05	0.000524776383849	0.000479620988653
+UniRef50_UPI0001C39734	geranylgeranyl pyrophosphate synthase	0.000512486443546	0.000193466065931	-0.000319020377615
+UniRef50_UPI0003ABA403	PREDICTED	3.884304285e-05	4.77654846108e-05	8.9224417608e-06
+UniRef50_UPI000359FA90	PREDICTED	2.51507806092e-05	2.53861897644e-05	2.354091552e-07
+UniRef50_UPI00036A2ED5	50S ribosomal protein L22	2.00311241373e-05	0.000267576776929	0.000247545652792
+UniRef50_UPI0003AB3C4C	hypothetical protein	1.15419330705e-05	3.69382909768e-05	2.53963579063e-05
+UniRef50_Q3J1M2		0.0084781763127	0.00379929130798	-0.00467888500472
+UniRef50_Q3J1M3		0.0111713945957	0.00443200657402	-0.00673938802168
+UniRef50_X2GZX1	rRNA methyltransferase	0.00778223829134	0.00126900973086	-0.00651322856048
+UniRef50_A0A017HLL9		0.000621987396137	0.000254478279452	-0.000367509116685
+UniRef50_G4ZKG2		3.9310066092e-06	3.96287593136e-05	3.56977527044e-05
+UniRef50_UPI0003B5AE6D	magnesium transporter MgtC	3.68884408859e-05	2.99766504351e-05	-6.9117904508e-06
+UniRef50_Q5XD38	PTS system, N acetylgalactosamine specific IID component	0.000145186918795	0.00350361006186	0.00335842314307
+UniRef50_UPI0003664D62	hypothetical protein	3.75627410691e-05	1.03087919726e-05	-2.72539490965e-05
+UniRef50_A3MWA6	3 methyl 2 oxobutanoate hydroxymethyltransferase	5.4761761234e-05	3.46627179166e-05	-2.00990433174e-05
+UniRef50_S9QMF6	Flagellar protein FlaF	7.88625487296e-05	0.000126739334149	4.78767854194e-05
+UniRef50_UPI000190F922	leucyl phenylalanyl tRNA  protein transferase	1.23126621967e-05	1.56043956143e-05	3.2917334176e-06
+UniRef50_UPI000372C446	hypothetical protein	2.77812997365e-05	9.79024586966e-05	7.01211589601e-05
+UniRef50_G8R9S1	ATP dependent RNA helicase YqfR	0.00683359776063	0.000962295054923	-0.00587130270571
+UniRef50_Q8EA37	Ribosomal protein S12 methylthiotransferase RimO	0.00472247166933	0.00177545839701	-0.00294701327232
+UniRef50_Q9X0N9	Glucose 6 phosphate 1 dehydrogenase	3.72852330483e-05	6.08325691857e-06	-3.12019761297e-05
+UniRef50_G1LNR6		0.000175215747882	0.000313728366028	0.000138512618146
+UniRef50_Q5M1U0	Heat inducible transcription repressor HrcA	0.00480432146388	0.00547582336896	0.00067150190508
+UniRef50_UPI000369E51E	hypothetical protein, partial	0.00101992099789	0.00110743764448	8.751664659e-05
+UniRef50_UPI000219386D	riboflavin synthase subunit alpha	1.08504547571e-05	2.43771243706e-05	1.35266696135e-05
+UniRef50_UPI0003B6FF8D	fructose 1,6 bisphosphatase	1.82252392599e-05	8.78650333153e-06	-9.43873592837e-06
+UniRef50_Q8DYP7	DNA primase	0.0057853992887	0.00518434594258	-0.00060105334612
+UniRef50_A7ZUE4	Regulator of ribonuclease activity A	0.00459994995714	0.00115810472625	-0.00344184523089
+UniRef50_Q6A8H1	Methionyl tRNA formyltransferase	0.000645753413816	0.00501209604202	0.0043663426282
+UniRef50_P31827		0.00260776453685	0.00032868268965	-0.0022790818472
+UniRef50_B8EJY2	Chromosomal replication initiator DnaA	1.11306320944e-05	7.06116979016e-06	-4.06946230424e-06
+UniRef50_UPI00036188FB	hypothetical protein	2.16687420003e-06	1.26171858346e-05	1.04503116346e-05
+UniRef50_Q9RZE7	Probable chromosome 2 partitioning protein ParB	0.00105174340572	0.0688892658729	0.0678375224672
+UniRef50_F2IXW0		0.000103248970526	3.7202208411e-05	-6.6046762115e-05
+UniRef50_Q5LQ23	Paraquat inducible protein A, putative	0.00549384836872	0.000403675941204	-0.00509017242752
+UniRef50_A5UL46	Phosphoserine phosphatase, HAD family, SerB	0.00398212833509	0.0009030078007	-0.00307912053439
+UniRef50_Q72GT4	Adenylosuccinate synthetase	3.22196207208e-06	0.018358241974	0.0183550200119
+UniRef50_B9TIG4		0.000231463038226	7.54532104517e-05	-0.000156009827774
+UniRef50_Z1ADI7	Gluconate permease	0.00449956918919	0.00033189428584	-0.00416767490335
+UniRef50_E1CJT9	Iron responsive element binding protein 2 variant	5.41648192658e-06	0.000196735958347	0.00019131947642
+UniRef50_P37025	2 5 RNA ligase	0.00620023403597	0.00335633958389	-0.00284389445208
+UniRef50_Q53075	UvrC protein 	0.000633200204603	0.0011505845657	0.000517384361097
+UniRef50_UPI00016C40E6	nitrogen regulatory protein P II	6.16548274712e-05	0.00015595679295	9.43019654788e-05
+UniRef50_Q6D108	Lysophospholipid transporter LplT	0.00278474003868	0.00137515475267	-0.00140958528601
+UniRef50_D6ZIN1	ABC transporter, permease protein	0.000659590373902	0.00410860970857	0.00344901933467
+UniRef50_K0HR37	FGGY family pentulose kinase	7.53465047635e-05	0.00528944597554	0.00521409947078
+UniRef50_U4V4Z3	Beta barrel assembly machine subunit BamF	2.16898364873e-05	2.04290860271e-05	-1.2607504602e-06
+UniRef50_E1TCG3	ABC transporter related protein	0.00120758768849	0.000850484406558	-0.000357103281932
+UniRef50_UPI00046669DC	hypothetical protein	1.67271051802e-05	9.56954393577e-05	7.89683341775e-05
+UniRef50_UPI0003B73A84	cation	1.62468764931e-05	9.60888883334e-05	7.98420118403e-05
+UniRef50_O67221	Aspartokinase	0.000478463991519	0.0146951138716	0.0142166498801
+UniRef50_F5X3Q6	PTS system, ascorbate specific IIA component	0.00696618626906	0.00169100897242	-0.00527517729664
+UniRef50_G2JDJ5	Metal dependent hydrolase	0.00031787927103	0.00398611418686	0.00366823491583
+UniRef50_H4XIK4		0.00142908435036	0.000350871332905	-0.00107821301746
+UniRef50_F8H8U4	Molybdopterin oxidoreductase, alpha subunit	0.000312890358937	0.000241487819835	-7.1402539102e-05
+UniRef50_I7DHA8		0.00729821620769	0.000727581512224	-0.00657063469547
+UniRef50_B7V4R0	3 oxoacyl [acyl carrier protein] synthase 3	0.000339599830546	1.63959458137e-05	-0.000323203884732
+UniRef50_UPI00046E82BD	aldehyde reductase	1.23381501676e-05	1.78737578453e-05	5.5356076777e-06
+UniRef50_UPI0002DD2F26	hypothetical protein	9.721842731e-06	3.83368244004e-05	2.86149816694e-05
+UniRef50_W6RY62		0.000105307844385	8.17297154518e-05	-2.35781289332e-05
+UniRef50_B8EK13	Ribonuclease 3	1.62580458921e-05	1.10043198863e-05	-5.2537260058e-06
+UniRef50_UPI00036C7A0B	hypothetical protein, partial	2.90121310539e-05	5.69591923211e-05	2.79470612672e-05
+UniRef50_P08722	PTS system beta glucoside specific EIIBCA component	0.00317674987716	0.000835476250198	-0.00234127362696
+UniRef50_P33129	Outer membrane usher protein HtrE	0.00340121723708	0.00160651236238	-0.0017947048747
+UniRef50_J9W5M6	Dihydroxyacetone kinase like protein	0.00609524465966	0.00403337492469	-0.00206186973497
+UniRef50_D0K567		0.00786277116182	0.00149253474715	-0.00637023641467
+UniRef50_A0A059DS58		7.42126342029e-06	2.70479018812e-05	1.96266384609e-05
+UniRef50_UPI000345DC68	hypothetical protein	3.04155881709e-05	0.00154131839423	0.00151090280606
+UniRef50_I0IQG7		0.00277973394983	0.000492194508663	-0.00228753944117
+UniRef50_UPI0003955356	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.00384652055e-05	5.39176298386e-06	-1.46467022216e-05
+UniRef50_A3PRH2		0.00209010455792	0.00142712026016	-0.00066298429776
+UniRef50_W9VLN3		0.000299409999387	0.000114163445567	-0.00018524655382
+UniRef50_C5NXP6		0.000139329468257	2.71893151479e-05	-0.000112140153109
+UniRef50_Q4L3R2	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0210289624462	0.00576617765803	-0.0152627847882
+UniRef50_A1T8W3	Imidazoleglycerol phosphate dehydratase	0.000197729040071	5.6728808985e-05	-0.000141000231086
+UniRef50_P0ABQ1	Coenzyme A biosynthesis bifunctional protein CoaBC	0.00339552680294	0.00047370016204	-0.0029218266409
+UniRef50_UPI00037505DF	hypothetical protein	9.14717318743e-06	3.87908318052e-06	-5.26809000691e-06
+UniRef50_D7BBF8		6.61600542306e-05	0.00201738535236	0.00195122529813
+UniRef50_G2JJD3	Tartrate ABC transporter permease	0.000172704518955	0.0101441416207	0.00997143710175
+UniRef50_D3QMJ7		0.00190419958755	0.0009859610215	-0.00091823856605
+UniRef50_Q12LS2	Phenylacetic acid degradation related protein	1.79330039519e-05	1.7590328866e-05	-3.426750859e-07
+UniRef50_UPI00036A4E56	hypothetical protein	1.73829551202e-05	1.45991973041e-05	-2.7837578161e-06
+UniRef50_C5C1Y1	Tryptophanyl tRNA synthetase	0.000361448329027	0.00528067435261	0.00491922602358
+UniRef50_UPI000378A2EB	MULTISPECIES	0.000324782051752	0.000105207235497	-0.000219574816255
+UniRef50_B0S2Q1	Phosphoglucosamine mutase	4.26567203703e-06	4.93799597279e-06	6.7232393576e-07
+UniRef50_UPI000300932B	hypothetical protein	1.47026792325e-05	6.1828537951e-05	4.71258587185e-05
+UniRef50_G0DWG7		1.43641601296e-05	4.9688902033e-05	3.53247419034e-05
+UniRef50_Q4J6M5	Glyceraldehyde dehydrogenase small chain	4.15104147303e-05	6.96146839455e-05	2.81042692152e-05
+UniRef50_D4HCV7	ABC transporter, ATP binding protein	0.000325418955908	0.00558689604923	0.00526147709332
+UniRef50_G2JE23	Pilus assembly protein tip associated adhesin PilY1	0.000311663915056	0.0099456786112	0.00963401469614
+UniRef50_UPI0003B58E0A	peptide ABC transporter ATPase	8.404532654e-05	1.91264296289e-05	-6.49188969111e-05
+UniRef50_UPI00047856FC	hypothetical protein	4.82051192337e-05	0.00183969061925	0.00179148550002
+UniRef50_P00894	Acetolactate synthase isozyme 3 small subunit	0.00129027817478	0.00674204447632	0.00545176630154
+UniRef50_V9WQS7	Acetyltransferase	0.000609620367238	0.000425162143439	-0.000184458223799
+UniRef50_P25535	2 octaprenylphenol hydroxylase	0.00358980571024	0.00206286269928	-0.00152694301096
+UniRef50_D3RW29		0.00022288257911	8.53142991038e-05	-0.000137568280006
+UniRef50_A0A032NY89		3.41301759814e-05	5.78740269445e-05	2.37438509631e-05
+UniRef50_F4QWW5	Major Facilitator Superfamily protein	8.36700636039e-06	1.55304285251e-05	7.16342216471e-06
+UniRef50_J2VJJ9	Replication protein C C terminal region Replication protein C N terminal domain containing protein	7.33101607037e-05	3.42804282268e-05	-3.90297324769e-05
+UniRef50_F0N8C1	RNA polymerase sigma 54 factor	0.000133230349002	0.000981366542265	0.000848136193263
+UniRef50_UPI0000167295	COG2986	8.49978967294e-06	0.000202731999643	0.00019423220997
+UniRef50_A3M4V3	Transketolase	4.13187269337e-05	3.20712919809e-05	-9.2474349528e-06
+UniRef50_UPI00029ADE1C	hypothetical protein, partial	6.40974846752e-05	5.26422996327e-05	-1.14551850425e-05
+UniRef50_M4JVT9		4.95488878208e-05	7.48297263889e-05	2.52808385681e-05
+UniRef50_Q1WTX2	Orotidine 5 phosphate decarboxylase	0.00985968067363	0.000809153548648	-0.00905052712498
+UniRef50_P52636	Putative electron transport protein YccM	0.00338180255861	0.000756378500466	-0.00262542405814
+UniRef50_A0A022J9C0	LysM domain protein	9.88012857229e-05	0.00545749684895	0.00535869556323
+UniRef50_UPI0003717E93	phosphoribosylglycinamide synthetase	3.80104609535e-06	1.85205881819e-06	-1.94898727716e-06
+UniRef50_Q477A8	UPF0225 protein Reut_A0143	1.06365357121e-05	4.09504417917e-05	3.03139060796e-05
+UniRef50_J9GTB9		0.000216988050358	6.62234888158e-05	-0.000150764561542
+UniRef50_B2IQJ8	ABC transporter, ATP binding protein	0.00651252059147	0.0080417205855	0.00152919999403
+UniRef50_UPI00037869C0	hypothetical protein	5.27263515652e-06	2.02890891998e-06	-3.24372623654e-06
+UniRef50_UPI0003B48C4E	oligoendopeptidase F	6.89702668053e-06	2.3308920584e-05	1.64118939035e-05
+UniRef50_V9VRW6		1.01024317528e-05	8.06657674151e-06	-2.03585501129e-06
+UniRef50_P69000	Methionine aminopeptidase	3.21085758449e-05	1.46511363955e-05	-1.74574394494e-05
+UniRef50_W3XFA1		6.56847886425e-05	3.34728779988e-05	-3.22119106437e-05
+UniRef50_G2DTB6		2.91432466295e-05	3.76755951594e-05	8.5323485299e-06
+UniRef50_UPI000476FFD2	ABC transporter permease	3.71039723924e-05	0.000308177028173	0.000271073055781
+UniRef50_R5AEA5	Mg chelatase subunit ChlI	0.00010984073391	0.000123219765733	1.3379031823e-05
+UniRef50_A3PN05	AAA ATPase	0.00359766749321	0.00102517479797	-0.00257249269524
+UniRef50_Q8CPF5	Competence damage inducible protein cinA	0.0107119571584	0.00328177633201	-0.00743018082639
+UniRef50_Q62JH0	Probable allantoicase 1	0.000561652021897	0.00019218006846	-0.000369471953437
+UniRef50_UPI00029A69ED	cytochrome D ubiquinol oxidase subunit I	5.41843034317e-06	4.6270300692e-06	-7.9140027397e-07
+UniRef50_Q163Q7	NADH quinone oxidoreductase chain E	0.0019474412232	0.00019492851828	-0.00175251270492
+UniRef50_L8UAB9		0.000596236424086	0.000461585564471	-0.000134650859615
+UniRef50_E4ZDG9		0.000177779900556	0.00298042064289	0.00280264074233
+UniRef50_Q9RWD6	Histidine biosynthesis bifunctional protein HisIE	7.86921459788e-06	0.0383623957438	0.0383545265292
+UniRef50_L0DG52	Plasmid pRiA4b ORF 3 like protein	5.61486672853e-06	8.48735501021e-06	2.87248828168e-06
+UniRef50_A0A038HZQ1	TRAP transporter, DctM like membrane domain protein	1.63473293198e-05	2.99788110195e-05	1.36314816997e-05
+UniRef50_D3PQT0	GntR family transcriptional regulator	9.98640182185e-05	0.0193876752654	0.0192878112472
+UniRef50_UPI000252BB4B	PREDICTED	2.71327722017e-05	1.02713576566e-05	-1.68614145451e-05
+UniRef50_W5P358		0.000446052229735	0.000914278031195	0.00046822580146
+UniRef50_UPI000248DC75	coenzyme PQQ synthesis D	0.000165677315042	9.31906359365e-05	-7.24866791055e-05
+UniRef50_D6X9W8		7.48074100732e-06	0.000431119277652	0.000423638536645
+UniRef50_H7PTJ4		1.10769098286e-05	8.91828124211e-05	7.81059025925e-05
+UniRef50_F3P3J8	ABC transport system, ATP binding protein	7.78856923336e-05	0.00528017904842	0.00520229335609
+UniRef50_A1W4G0	Peptidyl tRNA hydrolase	0.00177296057255	0.00397638065773	0.00220342008518
+UniRef50_B2VGJ3	Undecaprenyl diphosphatase	0.000136398723153	1.63111161787e-05	-0.000120087606974
+UniRef50_Q5LI12	Orotate phosphoribosyltransferase	2.35182702902e-05	0.00373377385895	0.00371025558866
+UniRef50_C6SU74		0.00139217855268	0.000553718822241	-0.000838459730439
+UniRef50_P13254	Methionine gamma lyase	2.48121756659e-05	1.81668953318e-05	-6.6452803341e-06
+UniRef50_UPI00047299A3	ribose ABC transporter permease	0.000105887828451	0.000396398262003	0.000290510433552
+UniRef50_UPI0003A95AEA	outer membrane specific lipoprotein transporter subunit LolC	5.55947455382e-05	3.21292874096e-05	-2.34654581286e-05
+UniRef50_J9P159		0.000144794009571	0.000199774452129	5.4980442558e-05
+UniRef50_J9P154		4.41084522678e-05	6.90142849256e-05	2.49058326578e-05
+UniRef50_V4IPG8		4.85868155729e-05	0.000990246758972	0.000941659943399
+UniRef50_A8LRM2	Cyclopropane fatty acyl phospholipid synthase	0.0065076016993	0.00359761266482	-0.00290998903448
+UniRef50_A0A024C3E3	Chemotaxis protein	0.0002575136657	0.00357581125079	0.00331829758509
+UniRef50_A6LX83		0.000963235291789	0.0089036895237	0.00794045423191
+UniRef50_Q6ACB0	Adenylosuccinate synthetase	8.81393748779e-06	0.00157007814884	0.00156126421135
+UniRef50_Q1GPC0	Adenylate kinase	0.00430389203933	0.000343107303681	-0.00396078473565
+UniRef50_Q9CG80	DNA topoisomerase 1	0.000403560207721	0.00631382858999	0.00591026838227
+UniRef50_UPI0004777C32	glutamine amidotransferase	1.29548783282e-05	0.000137053244503	0.000124098366175
+UniRef50_X1EYE5	Marine sediment metagenome DNA, contig	5.79846479806e-05	3.00052660746e-05	-2.7979381906e-05
+UniRef50_Q98I87	Carbamoyl phosphate synthase large chain	1.98996469225e-05	1.521406373e-05	-4.6855831925e-06
+UniRef50_I3THI3		1.48045422185e-05	1.50694436784e-05	2.649014599e-07
+UniRef50_A7HQ34	Phosphate ABC transporter, periplasmic binding protein	4.78744612236e-06	6.87137539019e-06	2.08392926783e-06
+UniRef50_P0A966	Chemotaxis protein CheW	0.000778781722001	0.000352968173539	-0.000425813548462
+UniRef50_UPI000237708B	glycerol 3 phosphate ABC transporter ATP binding protein	5.42349780944e-06	8.10033014743e-06	2.67683233799e-06
+UniRef50_Q54EW1	Serine hydroxymethyltransferase 2	4.23086521099e-05	0.000107918778212	6.56101261021e-05
+UniRef50_Q9KBM8	Cobyrinic acid A,C diamide synthase	1.15566399624e-05	0.000148468090337	0.000136911450375
+UniRef50_K0CGP1	TENA THI 4 family	0.000710501875895	0.00415082416175	0.00344032228585
+UniRef50_Q8DX74	ABC transporter, ATP binding protein	0.000959954177836	0.000196877803461	-0.000763076374375
+UniRef50_UPI00036C4041	hypothetical protein	2.7053667057e-06	4.49030705795e-06	1.78494035225e-06
+UniRef50_Q54GJ2	Bifunctional purine biosynthetic protein purD	2.41840108691e-06	3.49880062847e-06	1.08039954156e-06
+UniRef50_R4REY9	Pyrazinamidase nicotinamidase PncA	0.000302796247737	0.000279921047585	-2.2875200152e-05
+UniRef50_A6LRA0	Guanine specific ribonuclease N1 and T1	0.000475793368374	0.00115194776431	0.000676154395936
+UniRef50_P76034		0.00302023652592	0.00109856163522	-0.0019216748907
+UniRef50_P76035		0.00320916495316	0.000867475708581	-0.00234168924458
+UniRef50_Q6GDM0		0.00843707371088	0.00362532752967	-0.00481174618121
+UniRef50_Q5HF86	Glyceraldehyde 3 phosphate dehydrogenase 2	0.015148917976	0.00363234353107	-0.0115165744449
+UniRef50_O26931	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.0013846452866	2.88738954623e-05	-0.00135577139114
+UniRef50_U3T7G8		6.96040544937e-05	0.00443472101866	0.00436511696417
+UniRef50_A6LTU9	Resolvase, N terminal domain	0.000431327811601	0.00138625298257	0.000954925170969
+UniRef50_UPI0004792045	DEAD DEAH box helicase	1.91180646816e-06	1.82407005756e-05	1.63288941074e-05
+UniRef50_B2HTJ9	Anti anti sigma regulatory factor 	0.00145210786441	0.00428830275183	0.00283619488742
+UniRef50_B2A4R9	Phosphoglucosamine mutase	5.06990621184e-06	3.1508121524e-05	2.64382153122e-05
+UniRef50_Q3IVD4	Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.00171005078159	0.000472246814405	-0.00123780396719
+UniRef50_UPI000427273C	preprotein translocase subunit SecA	3.17802617962e-06	1.32644384505e-05	1.00864122709e-05
+UniRef50_A6LXB8	SCP like extracellular	0.000229707498285	0.00239302949961	0.00216332200133
+UniRef50_R5XB78		0.000157943928393	0.00211937101687	0.00196142708848
+UniRef50_D8U956		3.46347446329e-05	5.97579878872e-06	-2.86589458442e-05
+UniRef50_A7N2M2	Protoheme IX farnesyltransferase 1	6.49452486883e-06	1.40306366026e-05	7.53611173377e-06
+UniRef50_M9RPB0	UPF0393 family membrane protein	0.00618906983395	0.00188156913798	-0.00430750069597
+UniRef50_Q9FW53	Putative protoporphyrinogen oxidase	0.000201803437217	0.000157222735682	-4.4580701535e-05
+UniRef50_C4J5G1		0.000128132175077	3.93460475287e-06	-0.000124197570324
+UniRef50_Q28JJ5	Flagellar protein putative	1.87063791113e-05	1.17073489624e-05	-6.9990301489e-06
+UniRef50_P41363	Thermostable alkaline protease	6.97273449661e-06	2.21005485033e-05	1.51278140067e-05
+UniRef50_X5RU17		0.000210295734616	5.93260802245e-05	-0.000150969654392
+UniRef50_S9S7R4		1.77902844191e-05	2.28206127345e-05	5.0303283154e-06
+UniRef50_A6LVN7		0.000677586919957	0.00651350316593	0.00583591624597
+UniRef50_R7XG30		5.04541110072e-05	5.4659955746e-06	-4.49881154326e-05
+UniRef50_X0Y3X4	Marine sediment metagenome DNA, contig	5.23268742543e-05	4.71128011562e-05	-5.2140730981e-06
+UniRef50_I3TQH5	HNH endonuclease family protein	0.00717696135887	0.000642599110623	-0.00653436224825
+UniRef50_Q5HPH6	Prephenate dehydrogenase	0.0106608536183	0.00118536247938	-0.00947549113892
+UniRef50_C6XPM3		2.81851876881e-06	4.30707256929e-06	1.48855380048e-06
+UniRef50_B1KWF3		0.00123313566923	0.00142895179933	0.0001958161301
+UniRef50_UPI000262970F	alpha L arabinofuranosidase	0.000205586593601	6.25504836567e-05	-0.000143036109944
+UniRef50_UPI00047AAC54	DNA polymerase I	1.61536737415e-06	4.44410997059e-05	4.28257323318e-05
+UniRef50_UPI00038323B5	PREDICTED	2.61652226623e-05	1.90923152515e-05	-7.0729074108e-06
+UniRef50_M9REP5	Penicillin binding protein2	0.00692969959659	0.00304192457112	-0.00388777502547
+UniRef50_A3M202	Carboxy terminal protease	0.000191164758928	0.00725662379234	0.00706545903341
+UniRef50_J9P1D4		1.01014888344e-05	5.77504459399e-05	4.76489571055e-05
+UniRef50_Q8XJK8	Guanylate kinase	0.00109420642018	0.000560437882784	-0.000533768537396
+UniRef50_Q8X844	Fructoselysine 6 phosphate deglycase	0.00301774382229	0.00177232106249	-0.0012454227598
+UniRef50_F4D464	Heavy metal translocating P type ATPase	0.000197621084868	0.00530656042986	0.00510893934499
+UniRef50_Q2W3H2	D amino acid dehydrogenase small subunit	3.2048686598e-05	2.29979031713e-05	-9.0507834267e-06
+UniRef50_K2A0P8	Inner membrane translocator 	0.00145959006237	9.80412732766e-05	-0.00136154878909
+UniRef50_UPI00022CA89F	PREDICTED	4.4807435369e-05	2.68123339471e-05	-1.79951014219e-05
+UniRef50_A7ZMR8	Transposase, IS605 family	0.00147908675058	0.000779519785449	-0.000699566965131
+UniRef50_Q8XCY9	Protease ElaD	0.00191455696406	0.000779165884896	-0.00113539107916
+UniRef50_U7DMJ8	Flagellar basal body rod modification protein FlgD	0.000898381617774	0.000260190929686	-0.000638190688088
+UniRef50_A0A023XN60	Spermidine putrescine transport system permease protein potC	0.000223805922247	0.000921838309754	0.000698032387507
+UniRef50_UPI0003C103D9	PREDICTED	0.000393390152011	4.02979356687e-05	-0.000353092216342
+UniRef50_W5X8M6	Homoserine dehydrogenase	1.87872585912e-05	3.20703056351e-05	1.32830470439e-05
+UniRef50_M9VAR2		0.000503978548825	0.00340049884426	0.00289652029543
+UniRef50_UPI0003670873	hypothetical protein, partial	0.000136683675816	0.00119712724519	0.00106044356937
+UniRef50_UPI000366ECCB	MULTISPECIES	8.97967102383e-06	0.000133153633221	0.000124173962197
+UniRef50_Q3IUU7	DNA directed RNA polymerase specialized sigma subunit, sigma24	0.0331832228284	0.00430754949409	-0.0288756733343
+UniRef50_UPI00046D0748	2 keto 3 deoxy L rhamnonate aldolase, partial	0.000126711935884	0.000889012628662	0.000762300692778
+UniRef50_Q3HKE5	FecR protein	0.0039955992715	0.00163938384075	-0.00235621543075
+UniRef50_P0A0L2	Enterotoxin type A	0.0134150014143	0.00180499944881	-0.0116100019655
+UniRef50_S1K712	IS605 OrfB family transposase	0.00103226971812	0.000415939021406	-0.000616330696714
+UniRef50_W0PEX2	Dihydrodipicolinate synthase	0.00332419542578	0.000366853049924	-0.00295734237586
+UniRef50_G2I013	Transposase	0.000248725108225	0.000175312648115	-7.341246011e-05
+UniRef50_Q5SJP8	4 hydroxyphenylacetate 3 monooxygenase oxygenase component	0.000102763880809	0.0523816249099	0.0522788610291
+UniRef50_D5ASB3	Membrane transport family protein	0.00741319360621	0.000663861639426	-0.00674933196678
+UniRef50_UPI000423B5F5	sarcosine oxidase subunit delta	0.000217300255826	0.000356387295322	0.000139087039496
+UniRef50_E4N4A3		1.10427116251e-05	0.000103345610278	9.23028986529e-05
+UniRef50_UPI0003B50367	hypothetical protein	9.7281574412e-06	5.33618109601e-05	4.36336535189e-05
+UniRef50_Q2FHH3	Ribosome maturation factor RimP	0.0295147241547	0.00491573670386	-0.0245989874508
+UniRef50_UPI0001C39687	ATPase component of various ABC type transport systems with duplicated ATPase domain, partial	1.86385471893e-05	5.68551590441e-06	-1.29530312849e-05
+UniRef50_UPI00041FE5DE	zinc ABC transporter ATPase	3.96439769857e-06	1.20107658091e-05	8.04636811053e-06
+UniRef50_K7RPT1		4.96212687019e-05	0.00177307050577	0.00172344923707
+UniRef50_X0YLP3	Marine sediment metagenome DNA, contig	1.65434284138e-05	1.64830512418e-05	-6.0377172e-08
+UniRef50_UPI0003717CC9	sodium	0.000132606319274	2.32823287027e-05	-0.000109323990571
+UniRef50_A3M2F0		0.000352916143661	0.0102049948914	0.00985207874774
+UniRef50_T1W7J5		4.91546036791e-05	3.65218684466e-05	-1.26327352325e-05
+UniRef50_J0NEL3		0.00724673523958	0.000287048845821	-0.00695968639376
+UniRef50_UPI00036B01E6	hypothetical protein	2.85559061836e-06	4.2522445045e-05	3.96668544266e-05
+UniRef50_M2LA35		0.000583741219879	0.000297785752846	-0.000285955467033
+UniRef50_UPI0004689ED6	ferrichrome ABC transporter permease	1.34359639122e-05	1.0258765559e-05	-3.1771983532e-06
+UniRef50_Q5LWE9	Rhomboid family protein	0.000695668002448	0.000272600035571	-0.000423067966877
+UniRef50_C3NGW2	Ketol acid reductoisomerase	1.12143726387e-05	2.77345684509e-05	1.65201958122e-05
+UniRef50_X7EDB2		1.09586650227e-05	5.02648355404e-06	-5.93218146866e-06
+UniRef50_F5M536	XRE family transcriptional regulator	0.00654946333606	0.00107807450414	-0.00547138883192
+UniRef50_Q55463	Bicarbonate transport ATP binding protein CmpD	6.74821944333e-05	8.6515654743e-06	-5.8830628959e-05
+UniRef50_S5K777	Internalin	9.20789354518e-06	0.0012792767261	0.00127006883255
+UniRef50_I6TW59		0.0056589045175	0.00276568241958	-0.00289322209792
+UniRef50_A5VNN0		1.08926191229e-05	1.54761375906e-05	4.5835184677e-06
+UniRef50_P76077	1,2 phenylacetyl CoA epoxidase, subunit A	0.00223156413766	0.00117109599435	-0.00106046814331
+UniRef50_A4VFR5	Ribonucleoside diphosphate reductase	0.000523215879325	0.000903939209908	0.000380723330583
+UniRef50_UPI00034B41D8	Fe S cluster assembly protein HesB	0.000449473779471	9.32497872641e-05	-0.000356223992207
+UniRef50_A6LWE7	Transcriptional regulator, Fis family	9.4766357036e-05	0.00228344123682	0.00218867487978
+UniRef50_P0AC51	Zinc uptake regulation protein	0.00102610931706	0.00275904829679	0.00173293897973
+UniRef50_P9WKE4	Pyruvate kinase	1.68732539655e-05	5.29097634188e-06	-1.15822776236e-05
+UniRef50_P39812	Glutamate synthase [NADPH] large chain	3.21189432824e-06	3.19832033431e-06	-1.357399393e-08
+UniRef50_UPI00046F30F3	hypothetical protein	0.000212340287376	3.01161751574e-05	-0.000182224112219
+UniRef50_H3UK96	ATP dependent deoxyribonuclease subunit A domain protein	0.00915378255813	0.00379707691317	-0.00535670564496
+UniRef50_A0A017SWC8		6.63376112847e-05	0.00015379963033	8.74620190453e-05
+UniRef50_Q650K7	Tyrosine  tRNA ligase	3.47768127985e-05	0.00418568700696	0.00415091019416
+UniRef50_Q0FMK9	Replication protein C	5.68714750485e-05	1.75529785026e-05	-3.93184965459e-05
+UniRef50_UPI00047EEBF5	hypothetical protein	9.50468846879e-06	3.33140443482e-05	2.38093558794e-05
+UniRef50_U5RNQ9	Glucokinase	0.000464573712241	0.00404395658423	0.00357938287199
+UniRef50_L0ILT4	ABC type nitrate sulfonate bicarbonate transport system, permease component	0.000700434859726	0.000982329007516	0.00028189414779
+UniRef50_Q6FFD0	D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8	0.00123899075913	0.00560665563993	0.0043676648808
+UniRef50_F8HF16	Thiamine diphosphokinase	0.00466504872973	0.00123614442986	-0.00342890429987
+UniRef50_UPI000471BA5D	ATPase	3.66818722405e-05	3.09256867018e-05	-5.7561855387e-06
+UniRef50_UPI000476F7F2	hypothetical protein	9.71264773401e-05	2.08448792847e-05	-7.62815980554e-05
+UniRef50_Q3Z8B4	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.0157006901158	0.00517860614175	-0.0105220839741
+UniRef50_A6U6I4	FAD dependent pyridine nucleotide disulphide oxidoreductase	0.000209527392088	0.000206997690564	-2.529701524e-06
+UniRef50_Q6A735	Cell envelope related transcriptional attenuator	2.39212767365e-05	0.00128477962199	0.00126085834525
+UniRef50_A0A023RXV8		0.000261537636621	0.00543796499884	0.00517642736222
+UniRef50_F0Y4U6	Expressed protein 	0.000169469990813	0.00129169055534	0.00112222056453
+UniRef50_R7G9F0		4.87530206984e-05	4.2980751452e-05	-5.7722692464e-06
+UniRef50_A0A023RXV6		0.000481897007041	0.0118230982726	0.0113412012656
+UniRef50_J9V1L0		0.00888473726768	0.000854272419507	-0.00803046484817
+UniRef50_UPI0003774EF4	hypothetical protein	3.58450949836e-06	4.62002643863e-06	1.03551694027e-06
+UniRef50_UPI0003AED3B9	PREDICTED	0.000470921408125	0.000778683596671	0.000307762188546
+UniRef50_A0A052J8X7	Oligopeptide ABC transporter, oligopeptide binding protein	4.40249420429e-06	1.04738650332e-05	6.07137082891e-06
+UniRef50_UPI00047E2B61	DNA methyltransferase	0.000104128870322	9.89941772117e-05	-5.1346931103e-06
+UniRef50_A5ULF2	Adenosylcobinamide amidohydrolase, CbiZ	0.0032148583585	0.0016112140852	-0.0016036442733
+UniRef50_UPI00037A1445	hypothetical protein	6.06315828902e-06	1.63005067134e-05	1.02373484244e-05
+UniRef50_UPI00036E83CD	hypothetical protein, partial	3.97587398231e-05	9.73890199152e-06	-3.00198378316e-05
+UniRef50_A6LZS8	HAD superfamily hydrolase, subfamily IA, variant 1	0.000171584540393	0.00180043716586	0.00162885262547
+UniRef50_UPI000474ABAF	isoleucine  tRNA ligase	0.00170448257242	0.000418971848154	-0.00128551072427
+UniRef50_E8SJH3	Integral membrane protein	0.00970067557819	0.00695476385959	-0.0027459117186
+UniRef50_P0AC95	High affinity gluconate transporter	0.00192261196755	0.000578223225695	-0.00134438874185
+UniRef50_M4QUJ5		0.000139637233856	0.00375005775006	0.0036104205162
+UniRef50_UPI0003B7B681	nickel ABC transporter permease	0.000180603845939	7.03989240464e-05	-0.000110204921893
+UniRef50_UPI000475E454	MFS transporter	5.61145248101e-06	3.51726206583e-05	2.95611681773e-05
+UniRef50_Q9RWM7		0.000148901320747	0.0835845588562	0.0834356575355
+UniRef50_A0M024	Protein containing DUF124	0.00153354645499	0.00220309121995	0.00066954476496
+UniRef50_N8UCZ7	Magnesium translocating P type ATPase	0.000240911600266	0.00480856830784	0.00456765670757
+UniRef50_J9NU89		3.80233552218e-05	2.08262775748e-05	-1.7197077647e-05
+UniRef50_I4E0M5	Cation efflux family protein	0.00989111317363	0.00316904290592	-0.00672207026771
+UniRef50_A4VFK3		0.000596401883601	0.000279310896275	-0.000317090987326
+UniRef50_A0A016YJN0	MMPL family protein	8.33336319946e-05	0.00526023515738	0.00517690152539
+UniRef50_Q6ZD75		0.000308571653009	0.000114411747794	-0.000194159905215
+UniRef50_Q65H34	Shikimate dehydrogenase	3.23717772976e-05	0.0004165349257	0.000384163148402
+UniRef50_Q6MDR3	NADH quinone oxidoreductase subunit D	3.00233580135e-06	4.62083855544e-05	4.32060497531e-05
+UniRef50_UPI0004716349	integrase	4.87535767353e-05	2.73742658281e-05	-2.13793109072e-05
+UniRef50_G2HS60	TRAP transporter solute receptor	9.2928636489e-05	7.96227161421e-05	-1.33059203469e-05
+UniRef50_Q8DV44	Acetylglutamate kinase	0.00590988317307	0.00285018489997	-0.0030596982731
+UniRef50_Q9RVJ0	Branched chain amino acid ABC transporter, periplasmic amino acid binding protein	9.60524144667e-05	0.0570177969991	0.0569217445846
+UniRef50_B9KTM7		0.00193582558386	0.00359511164324	0.00165928605938
+UniRef50_K7E0S8		8.35110920989e-06	1.40408776366e-06	-6.94702144623e-06
+UniRef50_UPI000478D511	hypothetical protein	1.59958586913e-05	0.00454152294339	0.0045255270847
+UniRef50_Q1QTL2	Nucleoside diphosphate kinase	0.000130003765777	6.56278573416e-05	-6.43759084354e-05
+UniRef50_UPI000262552F	EmrB QacA subfamily drug resistance transporter, partial	5.59845985871e-05	2.64946395537e-05	-2.94899590334e-05
+UniRef50_B9KW42	FAD dependent oxidoreductase	0.0138820631196	0.00538884799663	-0.00849321512297
+UniRef50_G7M1F6	Multi sensor signal transduction histidine kinase	0.000331847588427	0.00116321261494	0.000831365026513
+UniRef50_Y6NBB6		0.0112281191747	0.0012828956409	-0.0099452235338
+UniRef50_J9P4U3		8.2326250783e-05	1.17224873692e-05	-7.06037634138e-05
+UniRef50_UPI0004025C8B	tagatose bisphosphate aldolase	5.05361071925e-06	3.63184993948e-05	3.12648886756e-05
+UniRef50_Q2KCH9	Probable chemotaxis protein methyltransferase	0.000174270673217	2.29105165071e-05	-0.00015136015671
+UniRef50_UPI00035F1E2E	MULTISPECIES	0.00119580509536	4.72875564998e-05	-0.00114851753886
+UniRef50_Q6GHU5	Ribonuclease HIII	0.0155484360532	0.00534914040731	-0.0101992956459
+UniRef50_K0M0Z9	Iron regulated ABC transporter siderophore binding protein SirA	0.0143220182205	0.00145866881421	-0.0128633494063
+UniRef50_V4YZI7		4.15925829585e-05	0.00012579255787	8.41999749115e-05
+UniRef50_W5X9U5	Bifunctional protein GlmU	4.28751065089e-06	5.28955456913e-06	1.00204391824e-06
+UniRef50_P33644	Laccase domain protein YfiH	0.00219962930994	0.00240875810745	0.00020912879751
+UniRef50_C1E811	Predicted protein	0.000202807507518	6.80745068375e-05	-0.000134733000681
+UniRef50_UPI0003B61251	elongation factor P	1.58724389716e-05	2.11280382619e-05	5.2555992903e-06
+UniRef50_A1B9F5	DNA ligase	0.0020740888864	0.000207431210266	-0.00186665767613
+UniRef50_UPI0003B49C22	MarR family transcriptional regulator	0.000272038672753	4.43950858665e-05	-0.000227643586887
+UniRef50_B2V232	Flagellar export protein FliJ	0.000520670329449	0.00184844583174	0.00132777550229
+UniRef50_M1N377	Diguanylate cyclase	0.000102763880809	0.00139753529895	0.00129477141814
+UniRef50_I6SW52	Malonyl CoA ACP transacylase	0.00398381262397	0.00140631424058	-0.00257749838339
+UniRef50_Q9RUC2	Oxidoreductase, short chain dehydrogenase reductase family	0.000147840465605	0.0371434521586	0.036995611693
+UniRef50_B2HZE4	Cytidylate kinase	0.000492373028943	0.00754560511986	0.00705323209092
+UniRef50_D4Z2Y4		0.000339368421561	1.5468409678e-05	-0.000323900011883
+UniRef50_I0C3R4	Thiamin pyrophosphokinase	0.00619857081149	0.00107041456035	-0.00512815625114
+UniRef50_E9V1P4	PE PGRS family protein 	0.000217582561448	0.000191329122411	-2.6253439037e-05
+UniRef50_P07954	Fumarate hydratase, mitochondrial	9.83162756624e-06	2.58259661878e-05	1.59943386216e-05
+UniRef50_A0A023RUB5		0.000374986081636	0.00874433124731	0.00836934516567
+UniRef50_Q2JL74	DNA directed RNA polymerase subunit alpha	1.07020396063e-05	3.7823781249e-05	2.71217416427e-05
+UniRef50_Q71ZI2	Probable nicotinate nucleotide adenylyltransferase	3.85385033408e-06	0.00373354447161	0.00372969062128
+UniRef50_UPI00046F1475	transcriptional regulator, partial	2.77794326871e-05	5.73429372194e-05	2.95635045323e-05
+UniRef50_M4X2C4	Vanillate porin OpdK	0.00100150367391	0.0014137892635	0.00041228558959
+UniRef50_I2DV60	Transcriptional regulator, GntR family	0.00063300503657	0.00012399581744	-0.00050900921913
+UniRef50_UPI0004725EBD	chromosomal replication initiator protein DnaA, partial	8.82450172386e-06	1.03073482638e-05	1.48284653994e-06
+UniRef50_Q8RFY7	Glutamate 1 semialdehyde 2,1 aminomutase	8.65374496666e-06	1.657530443e-05	7.92155946334e-06
+UniRef50_L8E176	Internalin A	1.2878114461e-05	5.79033643673e-06	-7.08777802427e-06
+UniRef50_Q3JWB4		3.81322595143e-05	9.6418348109e-05	5.82860885947e-05
+UniRef50_W1Y5T8	Nitrate reductase, beta subunit 	1.60649382197e-05	2.83156370672e-05	1.22506988475e-05
+UniRef50_Q83GV1	Glycine dehydrogenase 	1.79240803869e-06	5.3784220458e-06	3.58601400711e-06
+UniRef50_UPI00036AFA97	hypothetical protein	1.94826634309e-05	2.65435474198e-07	-1.92172279567e-05
+UniRef50_G3XD94	UDP N acetyl D glucosamine 6 dehydrogenase	0.000887602463171	0.000569783997995	-0.000317818465176
+UniRef50_B2I0W8		8.93105651832e-05	0.00570271395887	0.00561340339369
+UniRef50_P0A2J2	High affinity branched chain amino acid transport system permease protein LivH	0.00353589679667	0.00063169348705	-0.00290420330962
+UniRef50_A3PJL0	Peptidoglycan binding domain 1 protein	0.00576297306678	0.000675954613344	-0.00508701845344
+UniRef50_UPI00037D66CB	coproporphyrinogen III oxidase, partial	4.96210856061e-05	2.99837410483e-05	-1.96373445578e-05
+UniRef50_R6FXK3		0.000252484805529	0.00124248860634	0.000990003800811
+UniRef50_N6UDA5		6.24997613586e-05	4.34583201684e-05	-1.90414411902e-05
+UniRef50_P52667	HTH type transcriptional regulator EstR	0.000135461479253	0.00699604199659	0.00686058051734
+UniRef50_K2BGA3		1.05155749776e-05	1.60302056189e-05	5.5146306413e-06
+UniRef50_B1ZP10	Urea ABC transporter, ATP binding protein UrtD	0.00680865658134	0.000861470399378	-0.00594718618196
+UniRef50_UPI0003B52280	diguanylate cyclase	1.91885940505e-05	0.000204871374582	0.000185682780532
+UniRef50_Q8K9W2	DNA gyrase subunit A	6.49157712605e-06	1.04124992023e-05	3.92092207625e-06
+UniRef50_B0V5B6	Phenylacetaldehyde dehydrogenase	8.87506243427e-05	0.00636146319684	0.0062727125725
+UniRef50_UPI00037B050D	MULTISPECIES	1.74275664786e-05	6.1506398533e-05	4.40788320544e-05
+UniRef50_K4NDV9		0.000115556935367	0.00372855498616	0.00361299805079
+UniRef50_A5UL24		0.00367194247487	0.000463848228053	-0.00320809424682
+UniRef50_A6LXE2	Efflux transporter, RND family, MFP subunit	0.000546340833125	0.000374157674571	-0.000172183158554
+UniRef50_B0VDR8		0.000118706285809	0.00514079455936	0.00502208827355
+UniRef50_A8LHW6	Penicillin binding protein	0.00772621587514	0.0014045097778	-0.00632170609734
+UniRef50_UPI000305920B	biotin biosynthesis protein BioY	1.09816038195e-05	3.63753007754e-05	2.53936969559e-05
+UniRef50_I4E1E6		0.00376732518322	0.00480682951834	0.00103950433512
+UniRef50_UPI0003503D61	PREDICTED	0.00017335053984	0.000170760246426	-2.590293414e-06
+UniRef50_D2NTN6	Signal transduction histidine kinase	0.000366491251313	0.00145566027763	0.00108916902632
+UniRef50_UPI0003FCDB23	membrane protein	8.94989750349e-06	2.23826321673e-05	1.34327346638e-05
+UniRef50_Q5HQ98	Phosphoribosylglycinamide formyltransferase	0.0168769251885	0.00308700566957	-0.0137899195189
+UniRef50_B8F444		0.000152007780746	0.00820662875421	0.00805462097346
+UniRef50_D8LK39	Short chain dehydrogenase	6.10521025838e-06	0.00062102422602	0.000614919015762
+UniRef50_UPI00016C0059	50S ribosomal protein L24	0.000127631864592	8.0886410988e-05	-4.6745453604e-05
+UniRef50_UPI000467D444	phosphate transporter	5.80489080848e-06	7.72914086334e-06	1.92425005486e-06
+UniRef50_Q39F07	Glutamate  tRNA ligase	2.94854661862e-06	1.20306438364e-05	9.08209721778e-06
+UniRef50_A0A017HAI8		0.00331007571179	0.000279463723626	-0.00303061198816
+UniRef50_K7T243		0.000238973645218	9.40621126571e-05	-0.000144911532561
+UniRef50_A0A058ZA26		8.7249768219e-06	4.91238425354e-06	-3.81259256836e-06
+UniRef50_P0ABU1	1,4 Dihydroxy 2 naphthoyl CoA synthase	0.0284493235425	0.0158134331444	-0.0126358903981
+UniRef50_R6ZTJ7		1.21105370786e-05	1.03273943381e-05	-1.7831427405e-06
+UniRef50_T1ZU11		0.000838857753003	0.00549669112408	0.00465783337108
+UniRef50_Q8REM9	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.36757193968e-05	1.07800999455e-05	-2.8956194513e-06
+UniRef50_Q97GH9	Acetylornithine aminotransferase	1.37897579593e-05	1.98676281647e-05	6.0778702054e-06
+UniRef50_A0A023RVA0	Haloacid dehalogenase	5.67648103501e-05	0.00870508072153	0.00864831591118
+UniRef50_C1DJ65		0.000154090873203	0.000140942059456	-1.3148813747e-05
+UniRef50_R3SKR3		0.000111743399427	3.19255147367e-05	-7.98178846903e-05
+UniRef50_Q48B49	ISPsy24, transposase orfB	0.00295081850723	0.00440344626986	0.00145262776263
+UniRef50_UPI000381307B	hypothetical protein	5.35315466872e-05	4.55572061241e-05	-7.9743405631e-06
+UniRef50_B9KRJ2	Transcriptional regulator, IclR family	0.000576539595526	0.000237202172853	-0.000339337422673
+UniRef50_B2JYC2	HesB YadR YfhF family protein	0.000248651475888	6.58688227141e-05	-0.000182782653174
+UniRef50_UPI00047A2796	hypothetical protein, partial	0.000105183743514	2.81257607522e-05	-7.70579827618e-05
+UniRef50_UPI0003C18538		4.56708677195e-05	0.000105822004043	6.01511363235e-05
+UniRef50_W6A6C9	Citrate lyase subunit alpha	0.00378005267608	0.00215968666905	-0.00162036600703
+UniRef50_F5M379	CheW3	0.0137547842426	0.00587248523315	-0.00788229900945
+UniRef50_D5DEH5	Bacillolysin	2.11429473721e-05	0.000618056605518	0.000596913658146
+UniRef50_P77348	Periplasmic murein peptide binding protein	0.00304652406031	0.00103832243292	-0.00200820162739
+UniRef50_Q2FJW9		0.00192998406323	0.00013520840531	-0.00179477565792
+UniRef50_P11347	Nitrogenase molybdenum iron protein beta chain	0.000307784916058	0.000325276748412	1.7491832354e-05
+UniRef50_W1YLG1		0.000803161678413	0.00228861378296	0.00148545210455
+UniRef50_UPI00016C3D30	hypothetical protein	7.46074339526e-05	0.0139935765673	0.0139189691333
+UniRef50_G4VUH5	Conjugative transfer pilus assembly protein	0.000107873417274	9.41871668195e-05	-1.36862504545e-05
+UniRef50_G5QPS2		0.000266397317583	0.000425430010191	0.000159032692608
+UniRef50_J3IPS9		2.62487114046e-05	0.000297021000812	0.000270772289407
+UniRef50_P45545		0.00146575482499	0.000193862169709	-0.00127189265528
+UniRef50_A4VWT1		0.00061233099668	0.0134107443322	0.0127984133355
+UniRef50_P23890	Transcriptional activator CadC	0.0027910002098	0.000687654369234	-0.00210334584057
+UniRef50_UPI00046617E5	thioredoxin	3.64438299837e-05	5.25195713553e-05	1.60757413716e-05
+UniRef50_Q9ZG89	GTP binding protein EngB	0.0129923233676	0.00390450770705	-0.00908781566055
+UniRef50_B7I5N1	Zn dependent oligopeptidase	0.000116597664465	0.00474002723601	0.00462342957154
+UniRef50_UPI0003F09CB7	PREDICTED	4.43740609412e-06	1.49376492962e-05	1.05002432021e-05
+UniRef50_P0ADN4	UPF0438 protein YifE	0.000775656141478	0.000952634532885	0.000176978391407
+UniRef50_A0A031QGZ5		0.000143029209883	0.00025614396695	0.000113114757067
+UniRef50_B4RZS0	Succinyl diaminopimelate desuccinylase 1	3.0300776468e-06	5.70110616351e-06	2.67102851671e-06
+UniRef50_O33465	Methionine synthase 	4.19296118488e-05	6.27561480633e-05	2.08265362145e-05
+UniRef50_K2FJE0	Response regulator receiver protein	0.000285162524193	0.000504480373429	0.000219317849236
+UniRef50_Q1QTJ4	Methionyl tRNA formyltransferase	8.12685624816e-06	1.83195841386e-05	1.01927278904e-05
+UniRef50_M1MD21	Lytic transglycosylase catalytic	0.000345032049687	0.00117049807793	0.000825466028243
+UniRef50_P76446	Protein Rtn	0.0034793960324	0.00115444812543	-0.00232494790697
+UniRef50_G8PUC6		9.93817398958e-05	2.11659674342e-05	-7.82157724616e-05
+UniRef50_UPI000360A87F	hypothetical protein	4.50141121414e-06	8.45077293744e-05	8.00063181603e-05
+UniRef50_Q9JTW6	Co chaperone protein HscB homolog	0.000270922958506	0.00424704449976	0.00397612154125
+UniRef50_P0A9H4	Lysine decarboxylase, inducible	0.0031341605595	0.000812816271453	-0.00232134428805
+UniRef50_Q5QX02	N acetyl gamma glutamyl phosphate reductase	6.01250188139e-06	6.4573558223e-06	4.4485394091e-07
+UniRef50_Q9RVG1	Probable 3 hydroxybutyryl CoA dehydrogenase	0.000185868265068	0.0454626415195	0.0452767732544
+UniRef50_U2Z7R5	Anti sigma B factor RsbT	5.08938903002e-06	5.9289118935e-05	5.4199729905e-05
+UniRef50_X5DTS0	PTS system sugar specific permease protein	8.36379591226e-05	0.00362617651137	0.00354253855225
+UniRef50_P57936	Triosephosphate isomerase	0.00349031231559	0.000251341071176	-0.00323897124441
+UniRef50_G0N365		9.20869373998e-06	5.38041414007e-06	-3.82827959991e-06
+UniRef50_Q2W170		3.11094831836e-05	1.07241739723e-05	-2.03853092113e-05
+UniRef50_B7V9E6	AMP nucleosidase	0.000157311310104	0.00013262726281	-2.4684047294e-05
+UniRef50_A0A037Z329	Flagellar biosynthesis protein FlhA	0.000480361863589	0.00148183985915	0.00100147799556
+UniRef50_A0B4T1	Short chain dehydrogenase reductase SDR	0.00018718313497	0.0176674296057	0.0174802464707
+UniRef50_UPI000478334E	hypothetical protein, partial	0.000730618042937	0.000569742839604	-0.000160875203333
+UniRef50_A5IR45		0.0194020970852	0.000942845180321	-0.0184592519049
+UniRef50_S5XW27		0.0135101236397	0.00421239778872	-0.00929772585098
+UniRef50_UPI00046741CB	quinone oxidoreductase, partial	7.43954424757e-06	2.29844826571e-05	1.55449384095e-05
+UniRef50_A5IR41		0.0130205193123	0.00202136259761	-0.0109991567147
+UniRef50_C7BXR1		0.000381298978638	0.00351945167646	0.00313815269782
+UniRef50_UPI000373FE9D	hypothetical protein	1.64721712368e-05	1.79851952024e-05	1.5130239656e-06
+UniRef50_UPI00037D3E99	hypothetical protein	0.00012963808578	4.69243360357e-05	-8.27137497443e-05
+UniRef50_A4VYJ7	DNA repair protein RecO	0.00374232310789	0.00477747202929	0.0010351489214
+UniRef50_UPI00046FC1BE	PTS mannose transporter subunit IIB	3.41280788618e-06	4.61560606141e-06	1.20279817523e-06
+UniRef50_A7X1C4	UDP N acetylmuramoylalanine  D glutamate ligase	0.0187003351303	0.00713813388701	-0.0115622012433
+UniRef50_A3M783	Putative TonB dependent receptor	0.000178548589662	0.00598956145748	0.00581101286782
+UniRef50_I6TYR1		0.00247867012715	0.000363094309672	-0.00211557581748
+UniRef50_K0H8L8	Formimidoylglutamase	0.000136276530269	0.00616160535403	0.00602532882376
+UniRef50_P29930	Cobyrinic acid a,c diamide adenosyltransferase	0.0107103019029	0.00543566601178	-0.00527463589112
+UniRef50_D7GDB8	Permease protein of oligopeptide ABC transporter	0.000151398123869	0.00516861980168	0.00501722167781
+UniRef50_UPI000410414C	hypothetical protein	0.000247731283068	3.04122785391e-05	-0.000217319004529
+UniRef50_D5X7D2	Stage V sporulation protein AD	0.00011124341518	0.00109489584666	0.00098365243148
+UniRef50_W9B8I4	Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.00417001517855	0.00222924469132	-0.00194077048723
+UniRef50_S5YWN2		0.00512898554626	0.00177271701881	-0.00335626852745
+UniRef50_Q2NHM9	MtaC2	0.00247211625146	0.000239122838212	-0.00223299341325
+UniRef50_R6JPB3		0.00606382333827	0.00383666240486	-0.00222716093341
+UniRef50_Q9RY97		0.000229707498285	0.0420353587575	0.0418056512592
+UniRef50_K8B5J6	Sulfate permease	2.60644245378e-05	2.20963084702e-05	-3.9681160676e-06
+UniRef50_U6HCK7	Mitochondrial ribosomal protein l11	3.18321071149e-05	5.97194916889e-05	2.7887384574e-05
+UniRef50_A7HM68	Lysine  tRNA ligase	7.23706188429e-06	9.69866522038e-06	2.46160333609e-06
+UniRef50_B3T0J2		4.43387943768e-05	5.09903875063e-05	6.6515931295e-06
+UniRef50_B1ZBH9	Binding protein dependent transport systems inner membrane component	0.0141605404619	0.00312199786369	-0.0110385425982
+UniRef50_UPI000203B2C5	PREDICTED	5.05078463076e-05	9.66116689802e-05	4.61038226726e-05
+UniRef50_A6M0R6	Methyl accepting chemotaxis sensory transducer	0.000459410793836	0.000434512545817	-2.4898248019e-05
+UniRef50_UPI00046D564F	hypothetical protein	2.23194304348e-05	2.44025601401e-05	2.0831297053e-06
+UniRef50_A3PLS6	Nitrogenase molybdenum iron cofactor biosynthesis protein NifN	0.00224021747818	0.000209284767297	-0.00203093271088
+UniRef50_Q9JV28	UDP N acetylenolpyruvoylglucosamine reductase	0.000271471385544	0.00479985929473	0.00452838790919
+UniRef50_F0RNS6		0.000135623708568	0.00498379983779	0.00484817612922
+UniRef50_B1JXR9	3 phosphoshikimate 1 carboxyvinyltransferase	0.0030300075275	0.00460180913716	0.00157180160966
+UniRef50_D0B1T7	Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen	0.00276624981786	0.000778583906055	-0.0019876659118
+UniRef50_F8HBY9	D alanyl D alanine carboxypeptidase DacA	0.00854188152757	0.00470414064406	-0.00383774088351
+UniRef50_P75838	Ribosomal protein S12 methylthiotransferase accessory factor YcaO	0.00201328583389	0.00011649574169	-0.0018967900922
+UniRef50_UPI0003710A9E	hypothetical protein	3.42738362583e-05	1.63026133433e-05	-1.7971222915e-05
+UniRef50_Q49YE0	Putative universal stress protein SSP1056	0.0381019594888	0.00113785739709	-0.0369641020917
+UniRef50_UPI00046F5838	hypothetical protein	4.65396573663e-06	2.34356433979e-05	1.87816776613e-05
+UniRef50_A4VNP3	Ribosomal RNA large subunit methyltransferase E	2.22403600905e-05	0.000451756992669	0.000429516632579
+UniRef50_Q3JEP4	Adenine phosphoribosyltransferase	3.73398606577e-05	3.921092488e-05	1.8710642223e-06
+UniRef50_S6BAJ6	Phosphoenolpyruvate  protein phosphotransferase	0.000352476453436	0.000175519136561	-0.000176957316875
+UniRef50_UPI0003634116	hypothetical protein	2.12455709734e-05	0.000133357914252	0.000112112343279
+UniRef50_P45416	2 dehydro 3 deoxygluconokinase	4.03380285381e-05	3.62147446783e-05	-4.1232838598e-06
+UniRef50_D8JN46	Ribosomal RNA large subunit methyltransferase J	0.000403968359059	0.0119263250846	0.0115223567255
+UniRef50_UPI0003F071E0	PREDICTED	1.55681318201e-06	2.12201541809e-05	1.96633409989e-05
+UniRef50_UPI000473748C	RNA polymerase sigma factor RpoE, partial	0.000306928638757	0.000274115238615	-3.2813400142e-05
+UniRef50_UPI000364A43A	hypothetical protein	0.000389899138683	0.000108419002321	-0.000281480136362
+UniRef50_S0FU34		0.000142906913618	3.25735682869e-05	-0.000110333345331
+UniRef50_UPI0002628B07	chemotaxis protein	8.22664398117e-05	8.71160732363e-06	-7.35548324881e-05
+UniRef50_W4UBF2		0.000775656141478	0.00146438035634	0.000688724214862
+UniRef50_Q72NI2	Adenylate kinase	1.0109307041e-05	1.68689048786e-05	6.7595978376e-06
+UniRef50_B2V5F8	ABC transporter, permease protein	0.000150392824239	0.00097236700679	0.000821974182551
+UniRef50_A7GM37	ATP dependent helicase nuclease subunit A	1.34646912792e-05	0.00020920589456	0.000195741203281
+UniRef50_UPI00047B0772	hypothetical protein	1.64317328389e-05	3.80240703305e-06	-1.26293258058e-05
+UniRef50_UPI000023CB21	hypothetical protein FG03961.1	1.99796886439e-06	1.28710248065e-05	1.08730559421e-05
+UniRef50_G2DUQ1		0.00116748243974	0.00188500024592	0.00071751780618
+UniRef50_U4V185		3.29660119324e-05	3.97646479548e-05	6.7986360224e-06
+UniRef50_UPI00037D808D	hypothetical protein	5.55384818328e-06	6.63333306831e-06	1.07948488503e-06
+UniRef50_Q4SPK5	Chromosome 16 SCAF14537, whole genome shotgun sequence	4.18268952613e-06	5.65921504708e-05	5.24094609447e-05
+UniRef50_UPI000378DA6C	Cro Cl family transcriptional regulator	0.000127632568505	1.91813356963e-05	-0.000108451232809
+UniRef50_V8G168		0.000387094723116	0.000240747314022	-0.000146347409094
+UniRef50_I7DG40	Glutaredoxin like protein	0.000321727580236	9.77340382507e-05	-0.000223993541985
+UniRef50_Q7TUW5	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.49276014882e-05	1.30625408202e-05	-1.865060668e-06
+UniRef50_D2S8K3		4.90348795094e-05	0.000171963377846	0.000122928498337
+UniRef50_UPI0004561009	hypothetical protein PFL1_01934	8.73329464073e-05	4.58156026005e-05	-4.15173438068e-05
+UniRef50_UPI00036D6D03	hypothetical protein	0.000213424083342	0.000108427538078	-0.000104996545264
+UniRef50_Q2FZ95	Cell division protein FtsL	0.00750719668041	0.00488082571781	-0.0026263709626
+UniRef50_O26874	Conserved protein	0.00293914635062	0.000705699444334	-0.00223344690629
+UniRef50_C6B1R5		0.000906793591697	0.000260760956937	-0.00064603263476
+UniRef50_Q9RXD2	S layer like array related protein	0.000134496195558	0.0405853643418	0.0404508681462
+UniRef50_K2KNE0	2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	5.64234542586e-05	5.38749785522e-05	-2.5484757064e-06
+UniRef50_A0A031H669		0.000361218689857	0.000338659683702	-2.2559006155e-05
+UniRef50_UPI00046687D5	hypothetical protein	2.26460989201e-05	4.07280291537e-05	1.80819302336e-05
+UniRef50_Q8CR42		0.0127424614757	0.00269513482299	-0.0100473266527
+UniRef50_D8TXA0		8.32366856429e-06	6.64450417279e-06	-1.6791643915e-06
+UniRef50_Q5UWH2	Dihydrolipoyl dehydrogenase 3	9.07273082519e-06	2.17368376482e-05	1.2664106823e-05
+UniRef50_D3HEP6	Glycosyl hydrolases family 25	0.00504380359101	0.0018616814278	-0.00318212216321
+UniRef50_UPI00036358BA	MULTISPECIES	0.000102127141165	0.000106583978818	4.456837653e-06
+UniRef50_R7PXM1		0.00323537694379	0.000373112658173	-0.00286226428562
+UniRef50_F0MJV4	Fic family protein	0.000169557089412	0.00484363764456	0.00467408055515
+UniRef50_G7M7B2	Cell wall hydrolase autolysin	0.00058757237032	0.00171835300373	0.00113078063341
+UniRef50_UPI0002C378DF		3.77392201137e-05	2.99508845251e-05	-7.7883355886e-06
+UniRef50_UPI000474191D	hypothetical protein, partial	8.76669476145e-06	2.80333822198e-05	1.92666874583e-05
+UniRef50_X6GHK4		0.000712364125459	2.13512444986e-05	-0.00069101288096
+UniRef50_A1B939	SufBD protein	0.00851433314888	0.000202966807698	-0.00831136634118
+UniRef50_UPI0003B6276B	heme oxygenase	0.000222522502208	2.67531080934e-05	-0.000195769394115
+UniRef50_UPI00047A5C79	hypothetical protein	0.000330887514775	4.13576907693e-05	-0.000289529824006
+UniRef50_Q9X4A7	Aminopeptidase PepS	0.00082040041286	0.00574308618846	0.0049226857756
+UniRef50_Q59258	Citrate synthase 	6.56313169784e-06	2.9250951951e-05	2.26878202532e-05
+UniRef50_G3VAE4		9.6521684811e-06	3.14443169206e-07	-9.33772531189e-06
+UniRef50_UPI0003675D9F	hypothetical protein	7.64423464683e-05	8.86073252375e-05	1.21649787692e-05
+UniRef50_I6TZP9		0.00173375642168	0.00135661747762	-0.00037713894406
+UniRef50_C0AXX7		1.63315694798e-05	7.59499667569e-05	5.96183972771e-05
+UniRef50_UPI000470AA89	excinuclease ABC subunit C	3.67047242345e-06	1.67893737923e-06	-1.99153504422e-06
+UniRef50_V9QTM2	Sugar ABC transporter substrate binding protein	0.000142626947925	0.000449157376054	0.000306530428129
+UniRef50_B8F6Y2	L fucose mutarotase	0.00118738011748	0.00199089913615	0.00080351901867
+UniRef50_I4DZ32	Transcriptional regulator homolog	0.00596871315487	0.0021603313054	-0.00380838184947
+UniRef50_UPI0003B5B687	hypothetical protein	4.34049711344e-06	7.58934387096e-06	3.24884675752e-06
+UniRef50_I1ES83		0.000189472225223	3.02285984705e-05	-0.000159243626752
+UniRef50_UPI000375CE7A	hypothetical protein	1.19127155952e-05	2.19714098983e-05	1.00586943031e-05
+UniRef50_UPI00037C6964	hypothetical protein	5.92612019032e-05	0.000157094111867	9.78329099638e-05
+UniRef50_P67661		0.00197101421588	0.000268877121583	-0.0017021370943
+UniRef50_UPI0004656A3F	hypothetical protein	8.9779180208e-05	1.1341217727e-05	-7.8437962481e-05
+UniRef50_Q8E6C2		0.000188115941288	0.000448423643278	0.00026030770199
+UniRef50_UPI00039C9CFD	endoribonuclease L PSP	5.72403086017e-05	7.11883674033e-05	1.39480588016e-05
+UniRef50_G7M0U9	Short chain dehydrogenase reductase SDR	0.000154075913818	0.00122799088034	0.00107391496652
+UniRef50_I0H6C5		7.84765897393e-06	7.68029581106e-06	-1.6736316287e-07
+UniRef50_Q87JM4	Macrolide export ATP binding permease protein MacB	2.07128529163e-06	1.90765594437e-05	1.70052741521e-05
+UniRef50_K1E5Y4		2.07527503164e-06	2.17400149488e-05	1.96647399172e-05
+UniRef50_A6M300		0.000181483648491	0.00202722999723	0.00184574634874
+UniRef50_Q9HVX2	Putative GTP cyclohydrolase 1 type 2	0.0012498306902	3.02005793768e-05	-0.00121963011082
+UniRef50_A0A018D403		0.00024832531728	6.03674852426e-05	-0.000187957832037
+UniRef50_O69077	Aspartokinase	0.0073249904786	0.00291967624779	-0.00440531423081
+UniRef50_UPI00038109FF	hypothetical protein	2.36473710193e-05	5.65197891308e-05	3.28724181115e-05
+UniRef50_R6JM85	L serine dehydratase	1.58609077523e-05	3.72512533336e-05	2.13903455813e-05
+UniRef50_UPI0003B79E51	ATPase P	2.26840390365e-06	3.41247446427e-06	1.14407056062e-06
+UniRef50_UPI0003B531E1	cell division protein FtsE	3.28760655411e-05	8.61413447351e-05	5.3265279194e-05
+UniRef50_B9AD59		0.00173290851276	0.000605119126568	-0.00112778938619
+UniRef50_A6QII5		0.00481197339144	0.00188500024592	-0.00292697314552
+UniRef50_D8JRT9	Peptidase S15	2.40311109468e-05	3.57069913224e-05	1.16758803756e-05
+UniRef50_UPI0003C1B2C2	PREDICTED	4.02743669605e-06	2.76399753623e-06	-1.26343915982e-06
+UniRef50_U5MNB4	ComEC Rec2 like protein	0.000526061031377	0.000994448960014	0.000468387928637
+UniRef50_M1MHX3	Transcriptional regulator	0.000291120299886	0.000396398262003	0.000105277962117
+UniRef50_Q8CN85	Copper export proteins	0.00416544358147	0.00665150916532	0.00248606558385
+UniRef50_Q8Z9C3	Poly polymerase I	0.00214416578597	0.000305177775745	-0.00183898801023
+UniRef50_Q4A263	Putative membrane protein	5.64316707281e-05	1.59997834917e-05	-4.04318872364e-05
+UniRef50_UPI0003162EAB	hypothetical protein	4.62102484459e-06	1.55582707478e-05	1.09372459032e-05
+UniRef50_C0QR28	Biotin synthase	3.06764826482e-06	2.72090432723e-05	2.41413950075e-05
+UniRef50_Q1LF13	Putrescine transporter subunit	0.000343217592092	0.000596599404435	0.000253381812343
+UniRef50_A6E2L5		0.00147090805718	0.00275892599174	0.00128801793456
+UniRef50_T0UNE5		8.35859699479e-05	1.89216650818e-05	-6.46643048661e-05
+UniRef50_P30851	Ribonuclease R	0.00341109340536	0.00183637485414	-0.00157471855122
+UniRef50_Q6GDQ0	ATP dependent Clp protease ATP binding subunit ClpL	0.0170446599511	0.00917682097626	-0.00786783897484
+UniRef50_Q9Z9G7	Glutamyl tRNA amidotransferase subunit A	4.65439644437e-06	3.62192851195e-05	3.15648886751e-05
+UniRef50_D8TTJ3		1.66348275902e-05	2.18216501135e-05	5.1868225233e-06
+UniRef50_W1DFX7	Aspartokinase	0.001629644029	0.000334116956942	-0.00129552707206
+UniRef50_UPI000477F71F	aldehyde dehydrogenase	3.08882068764e-05	2.31301082623e-05	-7.7580986141e-06
+UniRef50_UPI00037E43F6	hypothetical protein	4.3590913564e-05	3.14085481731e-05	-1.21823653909e-05
+UniRef50_P08394	RecBCD enzyme subunit RecB	0.000131076499281	0.000108972851112	-2.2103648169e-05
+UniRef50_A0A037ZMW4		0.000283210444089	3.86806325102e-05	-0.000244529811579
+UniRef50_Q89XW7	Shikimate kinase	3.79222910602e-05	1.24182022537e-05	-2.55040888065e-05
+UniRef50_V5EQM5		2.96594350358e-05	1.19258481106e-05	-1.77335869252e-05
+UniRef50_R1DWA7		9.51419286462e-05	1.0576705467e-05	-8.45652231792e-05
+UniRef50_W8S8B2	Pe pgrs family protein	1.50431372622e-05	4.08294216261e-05	2.57862843639e-05
+UniRef50_R6BXV0		0.000112013646546	0.00208188669737	0.00196987305082
+UniRef50_UPI00047A0085	6 phospho beta glucosidase	2.99715528178e-06	1.47404777137e-06	-1.52310751041e-06
+UniRef50_N9KV58		0.000174762031871	0.00797836606036	0.00780360402849
+UniRef50_Q6AAJ1	DNA or RNA helicase of superfamily II	0.000229794868266	0.00488398295725	0.00465418808898
+UniRef50_UPI0004796361	hypothetical protein	0.000107217101758	6.27243221659e-05	-4.44927795921e-05
+UniRef50_A6LYE4	Peptidoglycan binding domain 1 protein	0.000165898485148	0.00042213379478	0.000256235309632
+UniRef50_UPI000477452D	histidine kinase	4.60630914106e-05	6.86164329904e-05	2.25533415798e-05
+UniRef50_A0A024C8M9	Membrane protein	5.85552206083e-05	0.00422318771014	0.00416463248953
+UniRef50_A4FWA2	50S ribosomal protein L18P	0.00232842271831	0.0015226509923	-0.00080577172601
+UniRef50_P31826	Inner membrane ABC transporter ATP binding protein YddA	0.00179919530112	0.000328421544177	-0.00147077375694
+UniRef50_UPI00036700D3	hypothetical protein	0.000301297876521	0.000224584673373	-7.6713203148e-05
+UniRef50_A4W3M3	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00260361561351	0.00285951972995	0.00025590411644
+UniRef50_Q5NNR3	7 cyano 7 deazaguanine synthase	0.0080830832241	0.00391654925827	-0.00416653396583
+UniRef50_A0A017T5I2	EBNA 1 protein	1.21079502275e-05	1.11053149746e-05	-1.0026352529e-06
+UniRef50_UPI000414E366	sodium	6.93968831996e-06	7.96343345451e-06	1.02374513455e-06
+UniRef50_Q6FA05		0.00014964889036	0.00559641518848	0.00544676629812
+UniRef50_R7Q4F8	Stackhouse genomic scaffold, scaffold_111	2.75747092235e-05	0.000147622324686	0.000120047615462
+UniRef50_G4RGP8	ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components	0.00463444876936	0.00027685941112	-0.00435758935824
+UniRef50_UPI00037A37E9	hypothetical protein	0.000150223176476	8.87730943536e-05	-6.14500821224e-05
+UniRef50_F5LFP9	Topology modulation protein	5.56789919968e-05	0.000207914723689	0.000152235731692
+UniRef50_E9AEM9	Proteophosphoglycan 5	7.07725029937e-06	3.21608774848e-05	2.50836271854e-05
+UniRef50_K8G8E5		3.155270097e-05	2.63855588771e-05	-5.1671420929e-06
+UniRef50_I2BVX5		0.000498236840259	6.07647541518e-05	-0.000437472086107
+UniRef50_UPI00036A1C3B	hypothetical protein	1.02715912234e-05	1.63877532203e-05	6.1161619969e-06
+UniRef50_Q2LWY9	Ribonuclease H	1.34815721732e-05	1.66990883702e-05	3.217516197e-06
+UniRef50_Q3IW30	PreQ biosynthesis protein QueC	0.00984280689209	0.000705936347077	-0.00913687054501
+UniRef50_M3G510	Hemolysin	1.88898297824e-06	1.40381891147e-05	1.21492061365e-05
+UniRef50_U6JRA6		1.27667208899e-05	1.68595127265e-05	4.0927918366e-06
+UniRef50_Q5HL91	Perfringolysin O regulator protein, putative	0.0247394349782	0.0060734506343	-0.0186659843439
+UniRef50_Q2S3M1	4 hydroxy tetrahydrodipicolinate synthase	4.99095830441e-05	1.93398663342e-05	-3.05697167099e-05
+UniRef50_UPI00046FF4AE	leucine isoleucine valine transporter ATP binding subunit, partial	4.90987283162e-05	3.49846683613e-05	-1.41140599549e-05
+UniRef50_UPI000370E248	hypothetical protein	0.000239486552724	3.04307807035e-05	-0.000209055772021
+UniRef50_D8U8Q0		2.57057052498e-05	1.9713910309e-05	-5.9917949408e-06
+UniRef50_Q8NYT6		0.0129668763468	0.00197234011225	-0.0109945362346
+UniRef50_B9KNI6		0.00293656106939	0.00388149210305	0.00094493103366
+UniRef50_Q9RWM5		0.000862679536592	0.0561989170929	0.0553362375563
+UniRef50_UPI00046849C9	ABC transporter ATP binding protein	5.98464756926e-05	2.41602845182e-05	-3.56861911744e-05
+UniRef50_D3SC43	UPF0125 protein TK90_2052	3.17473757718e-05	2.66451856724e-05	-5.1021900994e-06
+UniRef50_R6PLE5		1.81447450763e-05	3.10154520357e-06	-1.50431998727e-05
+UniRef50_A8FDI9	tRNA dimethylallyltransferase	2.58976472945e-05	8.74841575132e-06	-1.71492315432e-05
+UniRef50_UPI00047E1B1C	ribokinase, partial	8.04344230477e-06	1.28483066712e-05	4.80486436643e-06
+UniRef50_C6NRJ9	Amino acid permease family protein	1.3939614933e-05	2.50653179639e-05	1.11257030309e-05
+UniRef50_Q8DWY0	UPF0246 protein SAG2081	0.00637544225428	0.00476749063115	-0.00160795162313
+UniRef50_X5ENZ1		0.000184139506761	0.00181463993961	0.00163050043285
+UniRef50_UPI0002558C15	response regulator receiver GGDEF EAL domain containing protein	5.78013895782e-06	3.03772821982e-05	2.45971432404e-05
+UniRef50_Q3JNE0		4.39325825196e-05	0.000229669505017	0.000185736922497
+UniRef50_D2PRN7	CutC family protein	0.00053926569836	0.00483246819892	0.00429320250056
+UniRef50_F0NB13	Transporter, gluconate	0.000167731530739	0.00256544701727	0.00239771548653
+UniRef50_UPI00040B5085	phosphodiesterase	3.45327995097e-05	4.05214587922e-05	5.9886592825e-06
+UniRef50_W0AGC9		8.1788704378e-05	4.22660245031e-05	-3.95226798749e-05
+UniRef50_P76553	Ethanolamine utilization protein EutG	0.00341954089383	0.00141422918387	-0.00200531170996
+UniRef50_G8AHE6		0.00025861854033	0.000250150935068	-8.467605262e-06
+UniRef50_Q5HQB1	Probable quinol oxidase subunit 3	0.026089914596	0.00830162082321	-0.0177882937728
+UniRef50_F2ABA7		0.000379458296193	0.000151722601437	-0.000227735694756
+UniRef50_Q59409	RNA polymerase sigma factor RpoS	0.0030099296252	0.000476036188385	-0.00253389343682
+UniRef50_F9V7A7	Mannose specific PTS system IID component	0.000230174383446	0.00121154800667	0.000981373623224
+UniRef50_UPI00046D26DA	hypothetical protein	7.5891429302e-06	0.000118805795911	0.000111216652981
+UniRef50_Q11CZ9		0.00015076949652	3.10485181216e-05	-0.000119720978398
+UniRef50_W7E2M1	Heme oxygenase	2.81695210041e-05	3.8599369285e-05	1.04298482809e-05
+UniRef50_A2RGD6		0.00775884795102	0.00573497447903	-0.00202387347199
+UniRef50_P75978		0.00381771462607	0.000733528486484	-0.00308418613959
+UniRef50_W8YNB5		8.82664042509e-05	0.00221881559628	0.00213054919203
+UniRef50_J3L401		1.98207177051e-06	6.97986207268e-06	4.99779030217e-06
+UniRef50_E8SGA0	Teichoic acid biosynthesis protein F	0.0101883950395	0.00286820365136	-0.00732019138814
+UniRef50_U4T249		3.54624377764e-06	1.26727904205e-05	9.12654664286e-06
+UniRef50_UPI00029A6F6B	transporter, MFS family protein, partial	2.28895641105e-05	4.37178314891e-05	2.08282673786e-05
+UniRef50_UPI00047C75A1	elongation factor G	6.09933070649e-06	0.000146199541709	0.000140100211003
+UniRef50_H9UTM9		0.00129476304864	0.00130189609489	7.13304625e-06
+UniRef50_Q9LEU8	Argininosuccinate lyase, chloroplastic	2.86177146523e-05	2.7868395681e-05	-7.493189713e-07
+UniRef50_M0RG67		8.73173073326e-06	6.49664027681e-05	5.62346720348e-05
+UniRef50_UPI0004784289	mannose 1 phosphate guanyltransferase	3.65642446357e-06	1.8896222136e-05	1.52397976724e-05
+UniRef50_C6SR62		0.00749738775457	0.00402304148061	-0.00347434627396
+UniRef50_D7GIE6	Thiamine phosphate synthase	0.000294910928794	0.0015824862537	0.00128757532491
+UniRef50_P37615		0.00063023747704	0.000471250061484	-0.000158987415556
+UniRef50_F9YWL1	ABC transporter	0.000243371238756	0.0023474869462	0.00210411570744
+UniRef50_P37661	Phosphoethanolamine transferase EptB	0.00315040508671	0.00097207538931	-0.0021783296974
+UniRef50_P77817	Cell division protein FtsZ	0.00146984599825	0.000212203620496	-0.00125764237775
+UniRef50_UPI0003703469	ATP binding protein, partial	6.9598139847e-05	2.06367990516e-05	-4.89613407954e-05
+UniRef50_F0RP27	Peptidyl prolyl cis trans isomerase	0.00169032990832	0.0530693842426	0.0513790543343
+UniRef50_Q8CNF4	NAD dependent protein deacetylase	0.0210545623379	0.00530952965244	-0.0157450326855
+UniRef50_UPI00035FE3BB	Fis family transcriptional regulator	0.000101379527657	5.10400329082e-05	-5.03394947488e-05
+UniRef50_B9KQH1	Flagellar biosynthesis type III secretory pathway protein	0.00671231089254	0.00219384551172	-0.00451846538082
+UniRef50_UPI0003A911E9	adenylosuccinate lyase	1.75474775265e-06	1.34847889156e-05	1.1730041163e-05
+UniRef50_UPI000366B7BC	MULTISPECIES	1.97966992908e-06	7.11720013531e-05	6.9192331424e-05
+UniRef50_O27441	3 isopropylmalate dehydrogenase	0.00507077720367	0.00183143830067	-0.003239338903
+UniRef50_X8AYJ2		0.000137520711262	0.000337504805945	0.000199984094683
+UniRef50_N6UCK5		0.000465790714061	7.08506573235e-05	-0.000394940056737
+UniRef50_A0A059IK34		0.000121897231714	8.92010571816e-05	-3.26961745324e-05
+UniRef50_UPI0003C19D83		1.41152600356e-05	3.65389414495e-05	2.24236814139e-05
+UniRef50_I0ET87		0.000257376810578	0.002972252228	0.00271487541742
+UniRef50_UPI00036DA55D	hypothetical protein	3.38578179153e-05	6.1097135649e-05	2.72393177337e-05
+UniRef50_F8GLJ2	Putrescine binding periplasmic protein	0.000453363943361	0.000839896880292	0.000386532936931
+UniRef50_W0RQV3		3.17299169844e-05	4.33429224372e-05	1.16130054528e-05
+UniRef50_A6LS21	Sugar isomerase 	0.000269023209136	0.00177287635887	0.00150385314973
+UniRef50_V5G7G2		8.27762082457e-05	3.67719352379e-06	-7.90990147219e-05
+UniRef50_Q6DQL1	Succinyl CoA ligase [ADP forming] subunit alpha 2, mitochondrial	5.5605163404e-05	3.80183606123e-05	-1.75868027917e-05
+UniRef50_UPI000366E5C2	hypothetical protein	6.60771543552e-06	1.04174098821e-05	3.80969444658e-06
+UniRef50_P0AFA6	Bacteriophage N4 adsorption protein B	0.00059198201005	0.000447270583598	-0.000144711426452
+UniRef50_UPI000376010F	hypothetical protein	2.87691265587e-05	0.000313246839383	0.000284477712824
+UniRef50_I1PTF2		0.000757323628834	7.55384323853e-05	-0.000681785196449
+UniRef50_D9SVI0	DEAD DEAH box helicase domain protein	0.000504894929871	0.00126323618435	0.000758341254479
+UniRef50_A9EWC9	Probable PE_PGRS family protein	1.3268122317e-05	7.01498942776e-06	-6.25313288924e-06
+UniRef50_UPI0002556201	beta ketoacyl synthase	1.91078720841e-05	9.25191804214e-05	7.34113083373e-05
+UniRef50_A6V1S7		0.000369641128892	0.000530757093494	0.000161115964602
+UniRef50_UPI0004645B86	hypothetical protein	1.50797276133e-05	5.10099643814e-05	3.59302367681e-05
+UniRef50_W8AF54		6.76094308422e-05	0.000202633648692	0.00013502421785
+UniRef50_G7ZTD1	Fibrinogen and keratin 10 binding surface anchored protein	0.00271866640193	0.000337282541898	-0.00238138386003
+UniRef50_Q16AI7	Signal peptidase I, putative	0.0111845892746	0.00452837821333	-0.00665621106127
+UniRef50_UPI00035D6F7F	hypothetical protein	6.79353137527e-05	2.95117110084e-05	-3.84236027443e-05
+UniRef50_M3YNX9		1.56185009798e-05	2.44374858176e-05	8.8189848378e-06
+UniRef50_UPI0004636F37	ABC transporter permease	6.52577239647e-06	0.000227147471354	0.000220621698958
+UniRef50_Q9RUH1	Ornithine aminotransferase, putative	8.69115860788e-05	0.0362836088562	0.0361966972701
+UniRef50_I6TPB9	GntR family transcriptional regulator	0.00361201470119	0.00253081550946	-0.00108119919173
+UniRef50_G5MQF2		0.000223792707901	0.00260482806462	0.00238103535672
+UniRef50_UPI00046D6B05	hypothetical protein	8.43040171975e-06	1.57015612718e-05	7.27115955205e-06
+UniRef50_P80885	Pyruvate kinase	0.0162808234147	0.0097943942454	-0.0064864291693
+UniRef50_A0RMD0	NADH quinone oxidoreductase subunit B	9.47304045872e-06	0.000141267578419	0.00013179453796
+UniRef50_M1L621	ABC transport system permease protein	7.88813562631e-06	1.96448601012e-05	1.17567244749e-05
+UniRef50_G7U7Q7	PAS domain S box	0.000121769673823	0.00522266260856	0.00510089293474
+UniRef50_X8JCV2		1.9258538301e-05	1.05896425536e-05	-8.6688957474e-06
+UniRef50_B8D004		2.27865914968e-05	3.04972289643e-05	7.7106374675e-06
+UniRef50_D6SDZ2	Gamma glutamyltransferase	0.0146082198817	0.0016882235684	-0.0129199963133
+UniRef50_UPI0004728A87	5 amino 6 uracil reductase, partial	1.08023243422e-05	1.9557852978e-05	8.7555286358e-06
+UniRef50_UPI00046350E3	DNA primase	3.69449663589e-06	4.07880808902e-06	3.8431145313e-07
+UniRef50_P26394	dTDP 4 dehydrorhamnose 3,5 epimerase	0.00321656205519	0.00272320374059	-0.0004933583146
+UniRef50_O25396	Ferrous iron transport protein B	5.98234530714e-05	0.00312630829952	0.00306648484645
+UniRef50_UPI0004766C33	NTP pyrophosphohydrolase	0.000827448867561	6.81759308144e-05	-0.000759272936747
+UniRef50_UPI0002FD23FE	hypothetical protein	0.000108723016096	0.000183768788391	7.5045772295e-05
+UniRef50_U5NN27	Antitoxin of type II toxin antitoxin system	0.00139402406234	0.000816629530436	-0.000577394531904
+UniRef50_UPI00036547B5	hypothetical protein	0.00111005594313	0.000300971465453	-0.000809084477677
+UniRef50_D8LJ34		3.92171160258e-05	8.84112993479e-06	-3.0375986091e-05
+UniRef50_C1D1L2	Glutamyl tRNA amidotransferase subunit A	2.97430987881e-06	0.000482427303381	0.000479452993502
+UniRef50_J7M137	Adenine specific methyltransferase	0.00655952188607	0.00441224264668	-0.00214727923939
+UniRef50_A6LWI4		0.00115546442156	0.00102363418921	-0.00013183023235
+UniRef50_Q0RS03	Glutamate 1 semialdehyde 2,1 aminomutase	0.000584505817458	0.00282402259035	0.00223951677289
+UniRef50_J9YUJ8	Sensor histidine kinase	0.000459054732756	0.000905474431312	0.000446419698556
+UniRef50_UPI0003804843	hypothetical protein	3.22293065206e-06	5.95066829984e-06	2.72773764778e-06
+UniRef50_H2IGF7		4.3954923605e-05	0.000247695625001	0.000203740701396
+UniRef50_Q83MA0	Taurine import ATP binding protein TauB	0.00493379543622	0.00134704237088	-0.00358675306534
+UniRef50_W7W7I1		0.000569050295571	0.000140276079485	-0.000428774216086
+UniRef50_Q46786		0.00161031644449	0.000984389017326	-0.000625927427164
+UniRef50_Q46787		0.00650425965803	0.0029913578176	-0.00351290184043
+UniRef50_L2TVA4	Sugar  transporter family protein	9.90950248786e-06	6.80398639023e-05	5.81303614144e-05
+UniRef50_UPI000478BD3D	hypothetical protein	1.02797732095e-05	1.07134500423e-05	4.336768328e-07
+UniRef50_D4HA38	OmpA family protein	0.00010673496386	0.00398974969212	0.00388301472826
+UniRef50_Q839B0	33 kDa chaperonin	0.0293312593117	0.0076271929072	-0.0217040664045
+UniRef50_T2EL78		0.000178628719397	6.69905569354e-05	-0.000111638162462
+UniRef50_Q83H98	Glutamate 1 semialdehyde 2,1 aminomutase	5.11846138901e-06	0.000552786434325	0.000547667972936
+UniRef50_M2M947	Putative 40K cell wall protein 	0.00188587855053	0.000744226661808	-0.00114165188872
+UniRef50_Q9ZLC0	Anaerobic C4 dicarboxylate transporter DcuA	0.00282890113091	0.00337844555296	0.00054954442205
+UniRef50_W1CHR3	Tripeptide aminopeptidase	0.000768365044158	0.000279921047585	-0.000488443996573
+UniRef50_UPI000470943C	biopolymer transporter ExbD	3.79343583738e-05	5.93132699173e-05	2.13789115435e-05
+UniRef50_UPI000364FFFE	hypothetical protein, partial	0.000288187227331	0.000158625800386	-0.000129561426945
+UniRef50_UPI00046D09E1	hypothetical protein	2.41636368177e-05	2.07351545933e-05	-3.4284822244e-06
+UniRef50_Q8XAF1	Propionate kinase	0.00402044731908	0.00195492503895	-0.00206552228013
+UniRef50_UPI000328F876	PREDICTED	2.28980102878e-06	8.08557099813e-06	5.79576996935e-06
+UniRef50_W8WCZ2		0.000176015318437	0.00140252969254	0.0012265143741
+UniRef50_D8JKZ8	AFG1 like ATPase family protein	0.00051599525936	0.00643922794644	0.00592323268708
+UniRef50_UPI00046AD3AE	dihydroxy acid dehydratase	3.33977139462e-05	3.0743133119e-06	-3.03234006343e-05
+UniRef50_UPI0003EA9F92	PREDICTED	2.11094360157e-05	0.000107885088205	8.67756521893e-05
+UniRef50_UPI000475069F	ribose ABC transporter permease	7.94549786454e-05	0.00011023475423	3.07797755846e-05
+UniRef50_Q6F700		0.000112438909664	7.98248313796e-05	-3.26140782844e-05
+UniRef50_UPI00016C4E46	4 alpha glucanotransferase	1.17715046097e-05	0.000646693377851	0.000634921873241
+UniRef50_O84917	Ribulose bisphosphate carboxylase	0.0110841365328	0.0024996159848	-0.008584520548
+UniRef50_UPI000329D36D	PREDICTED	5.49703877593e-05	3.44139745399e-05	-2.05564132194e-05
+UniRef50_E6VFF6	Diguanylate cyclase	5.81069090713e-06	0.000769272881805	0.000763462190898
+UniRef50_Q8XJR3	DNA polymerase III PolC type	3.54555825554e-06	1.71413548628e-06	-1.83142276926e-06
+UniRef50_Q9RS27	Alanine  tRNA ligase	0.000381266927201	0.0329410323152	0.032559765388
+UniRef50_K2HSX3		5.26887385253e-05	1.82775281575e-05	-3.44112103678e-05
+UniRef50_M1MML8		0.00106375922176	0.00356867642859	0.00250491720683
+UniRef50_S2ZVN1		1.68302866869e-06	2.4819222001e-06	7.9889353141e-07
+UniRef50_K4MTL7	Minor ampullate spidroin	9.13467432813e-06	2.91167304553e-05	1.99820561272e-05
+UniRef50_Q67K77	Holo [acyl carrier protein] synthase	1.34932167629e-05	3.67226116839e-05	2.3229394921e-05
+UniRef50_UPI0003C1325D	PREDICTED	6.83247894327e-05	8.71670665404e-05	1.88422771077e-05
+UniRef50_U3U4J5	AraC family transcriptional regulator	1.53487891056e-05	2.30361681009e-05	7.6873789953e-06
+UniRef50_H5WT01	Activator of osmoprotectant transporter ProP	0.000269493140269	0.000120535730883	-0.000148957409386
+UniRef50_A6TYC4		0.011906716984	0.00302557061513	-0.00888114636887
+UniRef50_P77221		0.00312616327745	0.00307564013901	-5.052313844e-05
+UniRef50_P75821		0.00524809261963	0.000459881820649	-0.00478821079898
+UniRef50_F0DGH5	Metallo beta lactamase superfamily protein	0.00208253136272	1.22273265162e-05	-0.0020703040362
+UniRef50_P75822		0.00274132403307	0.000281865394675	-0.0024594586384
+UniRef50_V6UL61		3.37180843685e-05	8.71173012871e-05	5.33992169186e-05
+UniRef50_Q8G692	Prolipoprotein diacylglyceryl transferase	1.05381430643e-05	5.46566520379e-06	-5.07247786051e-06
+UniRef50_Q51547	Phosphate specific transport system accessory protein PhoU homolog	0.00220280175432	0.0134273784804	0.0112245767261
+UniRef50_L5MQQ0		4.47422346904e-06	5.49539336623e-06	1.02116989719e-06
+UniRef50_Q9JV93	4 hydroxybenzoate octaprenyltransferase	0.000140852980911	0.00203775650639	0.00189690352548
+UniRef50_UPI000467BA9A	glycogen debranching protein	4.06588507317e-05	0.000133848801421	9.31899506893e-05
+UniRef50_UPI00046F258D	bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial	0.000489119721737	0.0093854875063	0.00889636778456
+UniRef50_C6AA47	N acetylmuramoyl L alanine amidase	0.000176946557275	0.000329962799096	0.000153016241821
+UniRef50_UPI0003B42974	ABC transporter ATP binding protein	3.37840811763e-05	3.96684421356e-05	5.8843609593e-06
+UniRef50_UPI0004075F22	hypothetical protein	1.56260016227e-05	5.83697657181e-06	-9.78902505089e-06
+UniRef50_Q1LZ65	RpiR like protein	0.00480414684853	0.0010339510549	-0.00377019579363
+UniRef50_UPI0003808D6C	hypothetical protein	3.9472056073e-05	4.0607070225e-05	1.135014152e-06
+UniRef50_G0DU58	Triacylglycerol lipase	0.000184439408233	0.00760196822075	0.00741752881252
+UniRef50_R4NRW2	Late competence protein ComGD, access of DNA to ComEA	1.18278288562e-05	4.32858633692e-05	3.1458034513e-05
+UniRef50_UPI00037397C6	hypothetical protein	6.77359588533e-06	2.29059705552e-06	-4.48299882981e-06
+UniRef50_P39708	NADP specific glutamate dehydrogenase 2	7.82741812236e-06	3.50298410794e-05	2.7202422957e-05
+UniRef50_UPI0004645BC1	type III secretion system protein InvA	1.50568089289e-06	3.24586139206e-06	1.74018049917e-06
+UniRef50_X1BI18	Marine sediment metagenome DNA, contig	1.8536218514e-05	7.07761006701e-05	5.22398821561e-05
+UniRef50_I5QRE7	Transcriptional regulator, LysR family	0.000231031039916	5.41879770379e-05	-0.000176843062878
+UniRef50_I0W3J8	Transposase, IS4 like family protein	7.41643275549e-05	6.22202366967e-05	-1.19440908582e-05
+UniRef50_UPI0003B748CE	hypothetical protein	0.00110426172816	2.54991658574e-06	-0.00110171181157
+UniRef50_A6M3G1	Aminoglycoside phosphotransferase	0.000118210643688	0.00214028413028	0.00202207348659
+UniRef50_D3QEQ2		0.0205609255763	0.0031036663864	-0.0174572591899
+UniRef50_I1EWK9		8.78541112076e-06	4.99101052959e-05	4.11246941751e-05
+UniRef50_P67734	Coenzyme A biosynthesis bifunctional protein CoaBC	0.000448609717032	0.00715588406959	0.00670727435256
+UniRef50_UPI0003735E21	hypothetical protein	7.69874388257e-05	2.29304389204e-05	-5.40569999053e-05
+UniRef50_B9MRP4	Argininosuccinate lyase	1.03449003462e-05	4.92613811524e-06	-5.41876223096e-06
+UniRef50_UPI0003762CE6	MULTISPECIES	1.32684620204e-05	0.000107420369167	9.41519071466e-05
+UniRef50_T9DD40	Hydrolase	0.000491596219502	0.000878310896958	0.000386714677456
+UniRef50_UPI0003C14BCE	PREDICTED	4.18855225649e-05	0.000753107502809	0.000711221980244
+UniRef50_UPI0003A2FE59	hypothetical protein	6.89801096769e-06	1.01875626519e-05	3.28955168421e-06
+UniRef50_G0NWR7		6.21658168988e-07	7.95263326013e-05	7.89046744323e-05
+UniRef50_UPI000255BEAA	ferrochelatase, partial	8.41272598739e-06	4.23104912254e-05	3.3897765238e-05
+UniRef50_Q6GEY2	Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.0250145942039	0.00429808574613	-0.0207165084578
+UniRef50_UPI00022CA988	PREDICTED	0.00154565977503	0.000144089832261	-0.00140156994277
+UniRef50_UPI00037E7536	hypothetical protein	4.24485965656e-06	5.02530908542e-06	7.8044942886e-07
+UniRef50_Q1H2B5	Dihydroxyacetone kinase DhaK subunit	0.000173423884613	0.00873054076727	0.00855711688266
+UniRef50_R9ZDS5	LysR family transcriptional regulator	0.000437265287315	0.00172304548347	0.00128578019616
+UniRef50_Q7UFW4	Argininosuccinate synthase	8.49139270096e-06	5.07727025993e-05	4.22813098983e-05
+UniRef50_UPI0004076A57	polyhydroxyalkanoate synthesis repressor	3.21861359658e-05	1.08785324585e-05	-2.13076035073e-05
+UniRef50_R5I2I4	Phospho 2 dehydro 3 deoxyheptonate aldolase	0.00724827343602	0.00890513007173	0.00165685663571
+UniRef50_A5UNE8		0.00878160099278	0.000466289534524	-0.00831531145826
+UniRef50_E0NCD7		0.000555302392987	0.00400995073122	0.00345464833823
+UniRef50_A5UK92	Uridylate kinase	0.00311337724788	0.00132865377874	-0.00178472346914
+UniRef50_UPI0003C11674	PREDICTED	5.2213613294e-05	4.46291662904e-05	-7.5844470036e-06
+UniRef50_UPI0002492155	penicillin binding protein 2B	3.25657145973e-06	1.53861627826e-05	1.21295913229e-05
+UniRef50_C3PHK3	Aminomethyltransferase	1.04093688114e-05	5.55398258339e-05	4.51304570225e-05
+UniRef50_R1HV07	DNA repair protein RadA 	5.16891827567e-05	0.000594204639029	0.000542515456272
+UniRef50_UPI00039EAFFC	secretion protein HylD	2.18010124453e-05	4.92560984091e-06	-1.68754026044e-05
+UniRef50_R7PRX3		0.000103854126869	3.58872699094e-05	-6.79668569596e-05
+UniRef50_Q5HPN8	tRNA dimethylallyltransferase	0.0166145798109	0.0082930809458	-0.0083214988651
+UniRef50_D4HD87	Histidine kinase	0.000231592880319	0.00473638938392	0.0045047965036
+UniRef50_Q0C093	Guanylate kinase	9.74120548599e-06	2.6746171033e-05	1.7004965547e-05
+UniRef50_Q11SW8	Lipoprotein releasing system ATP binding protein LolD	1.58468233952e-05	5.4641967468e-05	3.87951440728e-05
+UniRef50_P37317	Integrase	0.00525644915044	0.00206325489827	-0.00319319425217
+UniRef50_A3CQT5	2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase	0.0257959937502	0.0121493355844	-0.0136466581658
+UniRef50_Q5PHV8	Gamma aminobutyraldehyde dehydrogenase	0.00249124149289	0.000490281934934	-0.00200095955796
+UniRef50_A5IU13	Transcriptional regulator, XRE family	0.0122434679821	0.00801157507904	-0.00423189290306
+UniRef50_Q83CY8	Putative peroxiredoxin bcp	1.84484904834e-05	0.00119281998397	0.00117437149349
+UniRef50_G2JM28	Permease	0.000132761778031	0.00575878201728	0.00562602023925
+UniRef50_P33363	Periplasmic beta glucosidase	0.00357985835018	0.0143838529115	0.0108039945613
+UniRef50_O32142	5 hydroxyisourate hydrolase	2.61692489581e-05	2.95768796738e-05	3.4076307157e-06
+UniRef50_P16326	Flagellar hook associated protein 3	0.00379644108501	0.000423374303	-0.00337306678201
+UniRef50_U6A8Z3		0.000766471207329	0.000285614530751	-0.000480856676578
+UniRef50_A6QES9		0.000251095123551	0.00120537430691	0.000954279183359
+UniRef50_K0AB23	Nucleotide sugar dehydrogenase	0.00219106800022	0.00221636856195	2.530056173e-05
+UniRef50_R7PW62	MATE efflux family protein	0.0025136377989	0.000632264113912	-0.00188137368499
+UniRef50_UPI0004783D2F	molybdenum cofactor guanylyltransferase	8.97221555477e-06	9.29830367211e-06	3.2608811734e-07
+UniRef50_UPI000301FF6F	hypothetical protein	0.000117297559195	4.60145239169e-05	-7.12830352781e-05
+UniRef50_F0Y6Y0	Expressed protein 	0.00029157606303	0.000398381148276	0.000106805085246
+UniRef50_Q1IWZ8	Glutamate 1 semialdehyde 2,1 aminomutase	4.75853129959e-06	0.00247228368533	0.00246752515403
+UniRef50_Q2YVY3	Peptidyl tRNA hydrolase	0.0154799837399	0.00234690984458	-0.0131330738953
+UniRef50_Q2LQB0	50S ribosomal protein L14	0.00451633953667	0.000490831088969	-0.0040255084477
+UniRef50_A1VJH7		0.000291531235519	7.69637849186e-05	-0.0002145674506
+UniRef50_R1FK72		3.05783364798e-06	2.44440456934e-06	-6.1342907864e-07
+UniRef50_UPI000395C119	PREDICTED	0.000189745892444	0.000260000033926	7.0254141482e-05
+UniRef50_B7V4B3	Transcriptional regulator Dnr	0.00165232545465	0.000604744106207	-0.00104758134844
+UniRef50_P06988	Histidinol dehydrogenase	0.00347506293447	0.000531840696352	-0.00294322223812
+UniRef50_E1VIL5		6.63420015524e-05	0.00823102858277	0.00816468658122
+UniRef50_A9WHT8	Histidine ammonia lyase	3.09460586049e-06	1.12075691929e-05	8.11296333241e-06
+UniRef50_UPI00035DFFA6	hypothetical protein	0.000574886937602	9.11671722432e-05	-0.000483719765359
+UniRef50_M2XUJ5		9.30417190192e-05	6.09537409373e-06	-8.69463449255e-05
+UniRef50_D2ZRP6		0.00390956596191	0.000499435917173	-0.00341013004474
+UniRef50_P26426	Lactose specific phosphotransferase enzyme IIA component	0.00678077848386	0.00407497936645	-0.00270579911741
+UniRef50_UPI0003824A7E	sarcosine oxidase subunit alpha	5.78506571621e-06	3.82133223873e-06	-1.96373347748e-06
+UniRef50_Q45493	Ribonuclease J1	4.82676023189e-05	0.00261141566327	0.00256314806095
+UniRef50_B9KU62	Sulfide quinone reductase	0.00793928130123	0.00402738092392	-0.00391190037731
+UniRef50_A4WNN0	NnrU family protein	0.000926814471448	0.000350177911301	-0.000576636560147
+UniRef50_UPI00037A9B52	hypothetical protein	3.39084576645e-06	0.000219137753758	0.000215746907992
+UniRef50_Q97FS6	Dihydroorotate dehydrogenase B ), electron transfer subunit	0.000166783205682	0.00240060236153	0.00223381915585
+UniRef50_UPI0004105041	hypothetical protein	2.51322636758e-06	4.91563638151e-06	2.40241001393e-06
+UniRef50_F5M5N5		0.00275893496775	0.000164088591142	-0.00259484637661
+UniRef50_F5M5N4		0.0018796929063	0.00271214057326	0.00083244766696
+UniRef50_J7L4H8		7.62216088599e-06	0.000805805738426	0.00079818357754
+UniRef50_P15082	Glucitol operon repressor	0.00180615107751	0.000951420880895	-0.000854730196615
+UniRef50_UPI00037CACA0	hypothetical protein	6.62896518257e-06	1.02566296573e-05	3.62766447473e-06
+UniRef50_Q3J0U8		0.000673825664755	0.000105157283751	-0.000568668381004
+UniRef50_J0ZLP6	Putative formate dehydrogenase accessory protein	0.00277693719433	0.00181213127968	-0.00096480591465
+UniRef50_UPI00035F0280	hypothetical protein	2.81564641374e-06	7.0593260943e-05	6.77776145293e-05
+UniRef50_D3E016	Tungsten formylmethanofuran dehydrogenase subunit F FwdF	0.00529528123682	0.000815682455238	-0.00447959878158
+UniRef50_M4QXD0	Transcriptional regulator, LysR family	0.000548029113216	0.0140299073356	0.0134818782224
+UniRef50_UPI00034978EE	MULTISPECIES	0.000183127355807	5.8402496082e-06	-0.000177287106199
+UniRef50_A5IVE5		0.00179802891376	0.00299713470719	0.00119910579343
+UniRef50_UPI0003B6AAEA	aldehyde oxidase	1.72594315201e-06	2.38808014899e-06	6.6213699698e-07
+UniRef50_P73471	Phosphoribosylaminoimidazole succinocarboxamide synthase	4.34059865189e-05	1.38697583032e-05	-2.95362282157e-05
+UniRef50_UPI00035ED296	hypothetical protein	2.86345886837e-06	7.62847965418e-06	4.76502078581e-06
+UniRef50_Q5XAK0	Alpha glycerophosphate oxidase	1.51342322376e-05	0.00562912893038	0.00561399469814
+UniRef50_V1SNF4		0.000725675592536	0.000411734172721	-0.000313941419815
+UniRef50_UPI0003B6CE87	pseudouridylate synthase	2.97154900291e-06	6.85951639861e-06	3.8879673957e-06
+UniRef50_UPI00037F0084	hypothetical protein	1.42740595201e-05	0.00109721347852	0.001082939419
+UniRef50_P42913		0.000466032084997	0.000665326022367	0.00019929393737
+UniRef50_Q5HRP5	tRNA lysidine synthase	0.0226257314678	0.00680934264638	-0.0158163888214
+UniRef50_Q7VK48	GTP cyclohydrolase 2	0.000989908216082	0.00364217494039	0.00265226672431
+UniRef50_M7XY21		5.18195898667e-05	5.13766652118e-05	-4.429246549e-07
+UniRef50_A5UKS5	SAM dependent methyltransferase	0.00165391898123	0.000186123973868	-0.00146779500736
+UniRef50_UPI000380CF2F	hypothetical protein	3.05805837408e-05	3.3013586947e-05	2.4330032062e-06
+UniRef50_UPI00037F7F53	hypothetical protein	3.11230370635e-05	4.0957922843e-06	-2.70272447792e-05
+UniRef50_X2LKW6	Acetyltransferase component of pyruvate dehydrogenase complex	0.00312451601784	0.000970873939229	-0.00215364207861
+UniRef50_Q8KBE8	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.11231398091e-05	2.95962832748e-06	-8.16351148162e-06
+UniRef50_A5UP32	Purine pyrimidine phosphoribosyl transferase	0.00393878852312	0.00132035291974	-0.00261843560338
+UniRef50_UPI000466F53C	hypothetical protein	8.95979252485e-06	6.98561133964e-06	-1.97418118521e-06
+UniRef50_UPI00042740A6	hypothetical protein	1.07380289279e-05	0.000697176066274	0.000686438037346
+UniRef50_Q0FV17	Phenol hydroxylase, putative	0.000735321092641	7.04164799808e-05	-0.00066490461266
+UniRef50_Q9RU29		0.000238915182824	0.0203799318796	0.0201410166968
+UniRef50_Q81FQ1	Histidinol phosphate aminotransferase 1	1.19672659482e-05	0.000421603393774	0.000409636127826
+UniRef50_B3RB46	Acyl CoA dehydrogenase	0.000968319752328	0.000561095839466	-0.000407223912862
+UniRef50_C5N5E1		0.00134885703018	0.000532102171523	-0.000816754858657
+UniRef50_A3M7M4		0.000291870609934	0.00832744322765	0.00803557261772
+UniRef50_Q606N2	Beta hexosaminidase	5.06181037175e-06	2.82679540271e-05	2.32061436554e-05
+UniRef50_UPI0004720773	50S ribosomal protein L7 L12	4.26340475426e-06	0.000493316098297	0.000489052693543
+UniRef50_Q82YY1	Ribosomal RNA small subunit methyltransferase G	0.013684831101	0.00241676617498	-0.011268064926
+UniRef50_UPI00034CCF2C	hypothetical protein	7.67870740343e-05	1.22247515731e-05	-6.45623224612e-05
+UniRef50_UPI00040B1DFA	hypothetical protein	4.64183765538e-06	5.47473993412e-05	5.01055616858e-05
+UniRef50_P00497	Amidophosphoribosyltransferase	0.00555099191055	0.0462611873891	0.0407101954785
+UniRef50_UPI00022CA5D5	PREDICTED	0.00120368947609	0.000112373727427	-0.00109131574866
+UniRef50_UPI00047094BE	hypothetical protein	1.24567744489e-06	3.76754720125e-05	3.64297945676e-05
+UniRef50_J8VE04	Lipoprotein	0.000715700771594	0.000382835600961	-0.000332865170633
+UniRef50_A3MYE6	Recombination protein RecR	0.00395369667265	0.00081279827118	-0.00314089840147
+UniRef50_G7M4Z3	Transglutaminase domain containing protein	0.000257779220751	0.000856845342623	0.000599066121872
+UniRef50_Q8IV48	3 5 exoribonuclease 1	2.34321586507e-05	0.000517043579261	0.00049361142061
+UniRef50_E3EXY1		1.98983739718e-05	2.43887343038e-05	4.490360332e-06
+UniRef50_Q3J3W5	Putative head portal protein, HK97 family	0.00556215547599	0.00142642938993	-0.00413572608606
+UniRef50_Q4A2Z7	Putative membrane protein	5.94569914853e-06	1.54232498593e-05	9.47755071077e-06
+UniRef50_A6LQS5	Transcriptional regulator, LysR family	0.000303264442948	0.00282938679964	0.00252612235669
+UniRef50_A6LWU9	Aldo keto reductase	0.00012724246815	0.00128603683676	0.00115879436861
+UniRef50_UPI000474A99F	porin	0.000256753754978	2.37349649579e-05	-0.00023301879002
+UniRef50_F2MU03		3.62933948903e-06	0.000368518953737	0.000364889614248
+UniRef50_A3MA77	A G specific adenine glycosylase	0.00011268238473	0.0040098921305	0.00389720974577
+UniRef50_F5X4A4	Ribose transport system substrate binding protein	0.00461500840068	0.00137665514854	-0.00323835325214
+UniRef50_R4LSC2	PE PGRS family protein PE_PGRS6	2.52289320997e-06	2.26069552683e-05	2.00840620583e-05
+UniRef50_UPI0004726635	hypothetical protein, partial	7.37838882327e-05	0.000344207147226	0.000270423258993
+UniRef50_Q46844		0.00206827819258	0.00136837902621	-0.00069989916637
+UniRef50_Q46843		0.00368475511095	0.00128232918258	-0.00240242592837
+UniRef50_Q07H98	Holliday junction ATP dependent DNA helicase RuvB	1.52802951599e-05	0.00239818044027	0.00238290014511
+UniRef50_Q0BZG8	RND transporter, hydrophobe amphiphile efflux 1  family, permease protein	0.00285297522603	0.00106432138039	-0.00178865384564
+UniRef50_Q46840		0.00289466897656	0.00215531915208	-0.00073934982448
+UniRef50_UPI000225AFF4	sulfurase	6.55505892138e-05	4.37609442669e-05	-2.17896449469e-05
+UniRef50_Q28UI8	tRNA  ) methyltransferase	0.00514430069696	0.00102433923134	-0.00411996146562
+UniRef50_Q1IS59	NADH quinone oxidoreductase subunit D 1	5.42922279216e-06	2.46715008583e-05	1.92422780661e-05
+UniRef50_UPI0004148AB3	alpha amylase	2.58192284534e-05	2.81786574138e-05	2.3594289604e-06
+UniRef50_U3TAS5		0.000256212209626	0.00629951800019	0.00604330579056
+UniRef50_E8PJ04	BasH	0.000222924796565	0.00889855179741	0.00867562700084
+UniRef50_UPI000468284E	hypothetical protein	0.000187493040823	0.00029336096543	0.000105867924607
+UniRef50_A6U170	Tyrosine recombinase XerC	0.016258464164	0.00338040907669	-0.0128780550873
+UniRef50_U7DEQ6	2 ketogluconate reductase	0.000446374300033	0.000198199131011	-0.000248175169022
+UniRef50_UPI000475888A	membane protease HflC	2.86378670363e-05	1.51367561659e-05	-1.35011108704e-05
+UniRef50_J9NV26		0.000339289254085	4.9893217492e-05	-0.000289396036593
+UniRef50_H8LI74		0.00750729999877	0.000676223742219	-0.00683107625655
+UniRef50_Q3HKK3	Succinylglutamatedesuccinylase aspartoacylase	0.023105240929	0.0069131780117	-0.0161920629173
+UniRef50_Q31HL9	Chemotaxis response regulator protein glutamate methylesterase	0.000112484484167	8.28806875331e-06	-0.000104196415414
+UniRef50_C4LJY5	Ribonuclease PH	0.00112714861585	0.000263312523783	-0.000863836092067
+UniRef50_Q2G1Q1		0.0329801511633	0.00603819836705	-0.0269419527962
+UniRef50_P0AEK1	Exodeoxyribonuclease 10	0.00165532498826	0.000391147953907	-0.00126417703435
+UniRef50_G7U431		0.000684006200684	0.006133977976	0.00544997177532
+UniRef50_A0YEQ1		9.29445176944e-06	5.24804751917e-05	4.31860234223e-05
+UniRef50_Q2CHG7	Parallel beta helix repeat protein	4.12764306705e-05	0.000420152864452	0.000378876433782
+UniRef50_UPI000368D551	alkanesulfonate monooxygenase	5.63527772059e-06	1.38525554731e-05	8.21727775251e-06
+UniRef50_Q47688		0.00199756433364	0.00097080589856	-0.00102675843508
+UniRef50_A4VVE0	FAD synthase	0.00871594355611	0.0042171190003	-0.00449882455581
+UniRef50_E8SJY5		1.72854384061e-05	3.02721565979e-05	1.29867181918e-05
+UniRef50_A8YUN6	Ribosomal RNA small subunit methyltransferase H	1.11908357795e-05	9.20391048914e-06	-1.98692529036e-06
+UniRef50_Q8D5J3	Alkaline phosphatase	0.00352999417902	0.000922598428747	-0.00260739575027
+UniRef50_U5MT37		0.000171584540393	0.000910527938347	0.000738943397954
+UniRef50_D5AQC4	MotA TolQ ExbB proton channel family protein	0.00656617300245	0.000829117996951	-0.0057370550055
+UniRef50_UPI000470CBD2	hypothetical protein	3.03178991193e-06	1.05985619272e-05	7.56677201527e-06
+UniRef50_P77308	Probable D,D dipeptide transport system permease protein DdpB	0.00209729507335	0.00101245211862	-0.00108484295473
+UniRef50_F0Y304	Expressed protein 	0.000204477754541	9.39116048467e-05	-0.000110566149694
+UniRef50_Q7UM39	3 methyl 2 oxobutanoate hydroxymethyltransferase	3.64178676713e-05	1.83797136616e-05	-1.80381540097e-05
+UniRef50_A9FXE7	No similarity	4.77154150896e-06	0.000474204148495	0.000469432606986
+UniRef50_P44843	Trk system potassium uptake protein TrkH	0.00251016239535	0.00100802323769	-0.00150213915766
+UniRef50_P59329	D cysteine desulfhydrase	0.00241818623843	0.00141635484783	-0.0010018313906
+UniRef50_A6TGL3	Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	0.00520026705572	0.00228083892918	-0.00291942812654
+UniRef50_F0VS50	Peptide nickel transport system substrate binding protein	0.00725581772865	0.00135748706684	-0.00589833066181
+UniRef50_I3YBQ0		4.78968712417e-05	0.00015250166603	0.000104604794788
+UniRef50_B2IE93		0.000130530966624	4.3037055088e-05	-8.7493911536e-05
+UniRef50_Q67KZ3	Glutamyl Q tRNA synthetase	6.58070022039e-06	8.83652820358e-06	2.25582798319e-06
+UniRef50_UPI000366ED99	MULTISPECIES	8.64574909997e-06	1.47681816219e-05	6.12243252193e-06
+UniRef50_C9M6U4	Putative phage terminase, large subunit	6.92296885776e-06	2.07796102587e-05	1.38566414009e-05
+UniRef50_T4ZWD9	Membrane protein	0.000232526344051	0.0032589726196	0.00302644627555
+UniRef50_UPI000381DE04	hypothetical protein	1.06550541517e-05	1.51480562825e-05	4.4930021308e-06
+UniRef50_UPI00036B1851	LysR family transcriptional regulator	2.24835442955e-05	3.61934439568e-05	1.37098996613e-05
+UniRef50_UPI00037FC311	hypothetical protein	1.01897531971e-05	3.49482402365e-06	-6.69492917345e-06
+UniRef50_UPI0003AE2DCF	PREDICTED	1.39334019854e-05	0.000636522670983	0.000622589268998
+UniRef50_P0AB69	NAD transhydrogenase subunit beta	0.00362116327788	0.000894307349721	-0.00272685592816
+UniRef50_F9ZV31	Flagellar hook capping protein	9.35428475578e-06	1.29068386312e-05	3.55255387542e-06
+UniRef50_Q2NHM6	MapA	0.00228802299293	0.00104403102834	-0.00124399196459
+UniRef50_E9W328	Phosphate acetyl butaryl transferase	0.000142626947925	0.000549347140785	0.00040672019286
+UniRef50_B2GBA3	Peptide deformylase	2.37200505522e-05	1.68733729908e-05	-6.8466775614e-06
+UniRef50_A8JGC3	Predicted protein 	0.000105252668779	3.02516190871e-05	-7.50010496919e-05
+UniRef50_Q49173	Methyl coenzyme M reductase II subunit gamma	0.00387799133453	0.000855237893514	-0.00302275344102
+UniRef50_UPI000361E906	hypothetical protein	2.96855103562e-05	6.59761982555e-05	3.62906878993e-05
+UniRef50_L8NJL2	Cytochrome B561	0.00157972313691	0.00281076953675	0.00123104639984
+UniRef50_Q1JAC5	Copper exporting ATPase	0.000447346463614	8.98074116114e-05	-0.000357539052003
+UniRef50_Q11F32	Amino acid amide ABC transporter substrate binding protein, HAAT family	1.15836347479e-06	6.35449079452e-06	5.19612731973e-06
+UniRef50_A0REB6	3D  trihydroxycyclohexane 1,2 dione hydrolase	0.000411339492031	0.00210185439583	0.0016905149038
+UniRef50_D7CVL6	Deoxynucleoside kinase	0.000701842788693	0.0242798360958	0.0235779933071
+UniRef50_Q3J2S9		0.00557270180862	0.00257777325994	-0.00299492854868
+UniRef50_Q3J2S8		0.00641035887819	0.00286261222142	-0.00354774665677
+UniRef50_UPI000476165E	hypothetical protein	0.000191591116465	0.00112349860719	0.000931907490725
+UniRef50_Q7SI97	L lactate dehydrogenase	3.19466869469e-05	1.06749404309e-05	-2.1271746516e-05
+UniRef50_Q3J2S1		0.00721434999927	0.000952634532885	-0.00626171546639
+UniRef50_UPI0003B6C4C4	xylose ABC transporter ATP binding protein	1.69174407767e-05	5.75342548688e-06	-1.11640152898e-05
+UniRef50_UPI0003650D17	hypothetical protein	0.000271115895833	3.63928097898e-05	-0.000234723086043
+UniRef50_D2ZS96		0.0027314996991	0.000228927678448	-0.00250257202065
+UniRef50_Q03XZ5	Glutamate synthase  small subunit	0.00453381627276	0.00165018018909	-0.00288363608367
+UniRef50_E2ZP88	Proline dehydrogenase PutA	0.00055786630609	0.000233669384873	-0.000324196921217
+UniRef50_Q6GH28	Putative oligopeptide transport ATP binding protein oppF2	0.0159832188481	0.00485786999076	-0.0111253488573
+UniRef50_D3E040	GTP	0.00209915604565	0.00236031861271	0.00026116256706
+UniRef50_M5E5J2	Genomic scaffold, msy_sf_2	2.39568169253e-06	1.44536223223e-05	1.20579406298e-05
+UniRef50_X2H7M9	Carboxyl terminal protease	0.000593751110802	0.00376025418072	0.00316650306992
+UniRef50_D0K3P5		0.0101121164405	0.000710876732369	-0.00940123970813
+UniRef50_A6LZI7	Isoprenylcysteine carboxyl methyltransferase	0.000504286531449	0.00100763635911	0.000503349827661
+UniRef50_P42305	ATP dependent RNA helicase DbpA	0.000516147317335	0.00429655576993	0.00378040845259
+UniRef50_X1UZY5	Marine sediment metagenome DNA, contig	3.8681665155e-05	0.000111234353761	7.2552688606e-05
+UniRef50_M1M078	4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH	0.00039701205416	0.000867929573028	0.000470917518868
+UniRef50_UPI0003C4395A		0.000452488469495	3.28962133344e-05	-0.000419592256161
+UniRef50_UPI0004709BDA	branched chain amino acid ABC transporter permease	1.16553798445e-05	0.000178154032844	0.000166498653
+UniRef50_UPI00045D6596	PREDICTED	4.23185904477e-05	0.000289053871314	0.000246735280866
+UniRef50_U3T459		0.000419947329994	0.00577932919495	0.00535938186496
+UniRef50_Q6FDS2	Putative arginyl tRNA  protein transferase	0.000408829590809	0.00413523746678	0.00372640787597
+UniRef50_UPI000373DE43	MULTISPECIES	8.15471974226e-06	3.77944125518e-05	2.96396928095e-05
+UniRef50_G8VBC3	Binding protein dependent transport system inner membrane component	0.000135138182163	0.00557722151863	0.00544208333647
+UniRef50_Q8CSG3	Geranyltranstransferase	0.021515370693	0.00377007912881	-0.0177452915642
+UniRef50_F3GGP2	Short chain dehydrogenase reductase SDR 	6.70887799513e-05	0.000258201916057	0.000191113136106
+UniRef50_UPI00037791F6	hypothetical protein	1.5487134576e-05	1.25779307848e-05	-2.9092037912e-06
+UniRef50_B5SHS9	Fad dependent oxidoreductase protein	0.000340524435457	0.000649583350954	0.000309058915497
+UniRef50_T1ZTW1	ABC transporter, permease protein	0.00431967932683	0.00156167924536	-0.00275800008147
+UniRef50_UPI00035E6C4D	hypothetical protein	7.24030586676e-06	2.18043469406e-05	1.45640410738e-05
+UniRef50_F1YW63		2.66217506349e-05	6.73662350099e-05	4.0744484375e-05
+UniRef50_A5UMU7	Possible glycosyltransferase	0.00418571991734	0.000303927998483	-0.00388179191886
+UniRef50_A8ACB1	Ornithine carbamoyltransferase	5.40992865279e-06	2.87034524277e-05	2.32935237749e-05
+UniRef50_A0A024HXE7		4.4577813458e-06	0.000116817340537	0.000112359559191
+UniRef50_I6TYS5	Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon	0.00641046739814	0.00189188678805	-0.00451858061009
+UniRef50_A6M012	ABC transporter related	0.000128688405295	0.00125784448352	0.00112915607822
+UniRef50_K8CD77	Outer Membrane Siderophore Receptor IroN	0.000235928743029	0.000735228311697	0.000499299568668
+UniRef50_Q1MJF1		5.33981543274e-05	4.34234919632e-05	-9.9746623642e-06
+UniRef50_UPI00042B7372	Cold shock domain protein 1	6.04312895795e-06	9.38100502455e-06	3.3378760666e-06
+UniRef50_UPI00046CFC16	hypothetical protein	3.39993364764e-05	0.000154773680814	0.000120774344338
+UniRef50_F1LHT5	GTP binding protein lepA	1.79015100806e-05	9.05517855343e-05	7.26502754537e-05
+UniRef50_UPI00045D782A	PREDICTED	5.25332619329e-06	7.90367128193e-06	2.65034508864e-06
+UniRef50_C6RGK7		3.0881773394e-05	5.51377414138e-05	2.42559680198e-05
+UniRef50_Q6AB49	tRNA lysidine synthase	0.000222924796565	0.00517750791996	0.0049545831234
+UniRef50_K0HED9	ABC transporter ATP binding protein	0.000597070322555	0.00293013506612	0.00233306474357
+UniRef50_I4YTY9	TIGR00370 family protein	0.000268086682557	9.81854777999e-05	-0.000169901204757
+UniRef50_P31453		0.00205069344819	0.000248165298485	-0.0018025281497
+UniRef50_Q30TW1	50S ribosomal protein L2	0.00701152964066	0.0146653985542	0.00765386891354
+UniRef50_P31455		0.00310397802391	0.000477528513661	-0.00262644951025
+UniRef50_UPI0004666336	DNA mismatch repair protein MutS	2.23303198675e-06	9.17926033228e-05	8.9559571336e-05
+UniRef50_E2XJC4	N acetyl anhydromuramyl L alanine amidase	0.000726906226409	0.00102392753932	0.000297021312911
+UniRef50_Q03AI1	Uracil DNA glycosylase	0.000167771550603	9.46857209832e-05	-7.30858296198e-05
+UniRef50_V1MAY9	Nitrate reductase Z subunit beta	3.62124936786e-05	6.12941589944e-05	2.50816653158e-05
+UniRef50_Q8E3B1	Probable transaldolase	0.000866339044841	0.000631026796388	-0.000235312248453
+UniRef50_Q6LPL4	Chromosome partition protein MukE	0.00260321304055	0.000253490734069	-0.00234972230648
+UniRef50_Q5HGC7	Glutathione peroxidase homolog BsaA	0.00400299160089	0.00283021975904	-0.00117277184185
+UniRef50_UPI00037249D5	hypothetical protein	0.000200931688345	8.7653327349e-05	-0.000113278360996
+UniRef50_Q1GIW0		0.00190128606805	0.00180806146039	-9.322460766e-05
+UniRef50_T0V4T9	ABC transporter, ATP binding protein	0.00905415927444	0.00145554838179	-0.00759861089265
+UniRef50_I9CB55		4.81886748116e-05	5.72803929332e-05	9.0917181216e-06
+UniRef50_D3E4P0	Valine  tRNA ligase	0.00329054582896	0.00131480671426	-0.0019757391147
+UniRef50_P0CL50	Trehalose phosphate phosphatase	0.00251473980109	0.00172685404999	-0.0007878857511
+UniRef50_F2E3C9	Predicted protein 	8.62615371094e-05	2.92694623017e-05	-5.69920748077e-05
+UniRef50_P63699	Putative bacterioferritin B	0.00262802001527	0.00392639667628	0.00129837666101
+UniRef50_H2I4X3	DNA double strand break repair rad50 ATPase	0.00014174858218	0.00709057317207	0.00694882458989
+UniRef50_Q15RF6	Chemotaxis response regulator protein glutamate methylesterase	0.000115674971054	9.5370542934e-06	-0.000106137916761
+UniRef50_F6DH03	Menaquinone biosynthesis protein	9.5244572462e-05	0.0266261704024	0.0265309258299
+UniRef50_D3E0I7		0.00229304723541	0.000568565588045	-0.00172448164737
+UniRef50_Q5HM27	Energy coupling factor transporter ATP binding protein EcfA1	0.0227042559244	0.00461999135108	-0.0180842645733
+UniRef50_Q28Q52	Cation transporter	0.00256014111547	0.000402956119847	-0.00215718499562
+UniRef50_N9BB91		0.000362600876435	0.00475547965534	0.0043928787789
+UniRef50_UPI0004781DCE	hypothetical protein	7.48068148534e-06	5.14077062992e-05	4.39270248139e-05
+UniRef50_I6T5E5	Transcriptional regulator	0.00714282133055	0.00102434242353	-0.00611847890702
+UniRef50_Q8FQB2	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	5.49502981135e-06	4.37229021006e-06	-1.12273960129e-06
+UniRef50_G0DVU1		0.00114806489261	0.00282568143088	0.00167761653827
+UniRef50_UPI00038FD62D	Potassium transporting ATPase B chain	5.85040490569e-06	0.000912114197139	0.000906263792233
+UniRef50_Q6GE73	Heme response regulator HssR	0.0269970489547	0.00542696883388	-0.0215700801208
+UniRef50_Q8CUA1		0.00403179036756	0.00221573811535	-0.00181605225221
+UniRef50_Q8CUA7		0.0259202410274	0.0136261668034	-0.012294074224
+UniRef50_A4WNZ4	PfkB domain protein	0.00407048121114	0.00119327668482	-0.00287720452632
+UniRef50_S5XU40	Major facilitator transporter	0.000546570082299	0.000161081839199	-0.0003854882431
+UniRef50_UPI0004791DBF	serine acetyltransferase	7.42503667962e-06	1.58940801633e-05	8.46904348368e-06
+UniRef50_UPI0003688AA7	hypothetical protein	0.000268532123949	1.27201746473e-05	-0.000255811949302
+UniRef50_P25819	Catalase 2	1.25790729447e-05	3.13343067228e-05	1.87552337781e-05
+UniRef50_Q4L5F0	Thioredoxin	0.00273056758376	0.00480531770678	0.00207475012302
+UniRef50_B1FAB2		0.000482678892713	0.000380352419825	-0.000102326472888
+UniRef50_A6L4L7	ATP synthase subunit beta	1.42953619831e-05	0.00270745190365	0.00269315654167
+UniRef50_UPI00046D5EE9	3 oxoacyl ACP synthase	1.52336802909e-05	2.58177931918e-05	1.05841129009e-05
+UniRef50_H3YRV9		0.000997615253831	0.00116572383629	0.000168108582459
+UniRef50_F5I377		1.58193877551e-05	2.2448452272e-05	6.6290645169e-06
+UniRef50_D3DZA3	Heavy metal translocating P type ATPase	0.00309782140002	0.000156682270301	-0.00294113912972
+UniRef50_Q2FV54	O acetyltransferase OatA	0.0362100731917	0.00666087038352	-0.0295492028082
+UniRef50_UPI00047BDC90	MFS transporter	5.0236606487e-06	1.42658846024e-05	9.2422239537e-06
+UniRef50_UPI000464A202	hypothetical protein	2.62444929986e-06	9.03906919312e-06	6.41461989326e-06
+UniRef50_M1MPB4	ABC 2 family transporter protein	0.000319515739074	0.000544726952555	0.000225211213481
+UniRef50_B0RBL8	Putative heme synthetase	4.65391921638e-05	0.000131057709404	8.45185172402e-05
+UniRef50_M9R255		6.91807709459e-05	7.50826157109e-05	5.901844765e-06
+UniRef50_A0A025H559	Peptide ABC transporter permease	0.000111242382095	5.77697043161e-05	-5.34726777789e-05
+UniRef50_V9DII8		1.14969513078e-05	1.19836590135e-05	4.867077057e-07
+UniRef50_UPI0004757F7D	aminotransferase class IV	0.000110535061352	2.35422880129e-05	-8.69927733391e-05
+UniRef50_A3CKK8	UPF0310 protein SSA_0254	0.0128640077891	0.00091808302134	-0.0119459247678
+UniRef50_X7TXC3	PE family protein	0.000241331768728	0.000432311901296	0.000190980132568
+UniRef50_UPI000471111A	hypothetical protein	0.000140988201263	9.95764449968e-05	-4.14117562662e-05
+UniRef50_G2G9I6		0.000281654108963	0.000113124013348	-0.000168530095615
+UniRef50_P75059	Spermidine putrescine import ATP binding protein PotA	1.59965985262e-05	5.10557584694e-06	-1.08910226793e-05
+UniRef50_E8U7B0	Cytochrome P450	0.000220028185941	0.016413563606	0.0161935354201
+UniRef50_P0AEP2	Galactose proton symporter	0.00243885767374	0.00150121080195	-0.00093764687179
+UniRef50_Q6FEE9		0.000321739177092	0.00698290124442	0.00666116206733
+UniRef50_Q2YYE7	Truncated methicillin resistance related surface protein	0.00234153872901	0.00102143556822	-0.00132010316079
+UniRef50_UPI00032A143E	PREDICTED	5.38021232498e-05	3.99964394557e-05	-1.38056837941e-05
+UniRef50_UPI0003F48FDB	hypothetical protein TREMEDRAFT_63328	8.65847279748e-06	5.5075939979e-06	-3.15087879958e-06
+UniRef50_E3LBP8		1.75000730059e-05	1.53818706909e-06	-1.59618859368e-05
+UniRef50_A0A012NRC3		0.0093344085556	0.00139176347189	-0.00794264508371
+UniRef50_I4CV16		0.000356597260487	0.000393755606923	3.7158346436e-05
+UniRef50_B2TLB0	Diguanylate cyclase phosphodiesterase domain 2	0.000248493829393	0.00231238885482	0.00206389502543
+UniRef50_M4INN6	Rrf2 family protein	2.32624354312e-05	3.17846011815e-05	8.5221657503e-06
+UniRef50_UPI00047AF807	hypothetical protein	4.12713220281e-06	5.40447153074e-05	4.99175831046e-05
+UniRef50_Q5HKL4	Thiamine biosynthesis protein, putative	0.0090055498503	0.00429080734419	-0.00471474250611
+UniRef50_Q1YIF1		0.000610973374032	0.000391295899974	-0.000219677474058
+UniRef50_B2TMF1	Site specific recombinase	0.0002066529136	0.00157067885137	0.00136402593777
+UniRef50_F2MQN5		3.70045074655e-05	3.61516064688e-05	-8.529009967e-07
+UniRef50_UPI00041B00FC	hypothetical protein	1.10607830722e-05	2.83854097673e-05	1.73246266951e-05
+UniRef50_UPI00029A8D4F	methylmalonyl CoA mutase	6.36543805084e-05	5.45652209051e-05	-9.0891596033e-06
+UniRef50_C1KZA0	5 deoxy glucuronate isomerase	5.30764382281e-05	0.00213503687376	0.00208196043553
+UniRef50_Q73S23	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.32620925116e-05	4.09412590959e-05	1.76791665843e-05
+UniRef50_UPI000474601B	branched chain amino acid ABC transporter ATP binding protein	0.000102666257451	6.08632424973e-05	-4.18030149537e-05
+UniRef50_W4TYR9	Excinuclease	9.2096340991e-06	0.000236006803135	0.000226797169036
+UniRef50_Q8DT53	Glucose 1 phosphate adenylyltransferase	0.00372927227052	0.00176626221435	-0.00196301005617
+UniRef50_D3DYR5	ATP dependent DNA helicase	0.00355779524266	0.000427518492966	-0.00313027674969
+UniRef50_UPI0003A7C5DF	hypothetical protein	9.61576586212e-05	0.000436855325546	0.000340697666925
+UniRef50_UPI00037226A5	hypothetical protein	3.98159323817e-05	2.50472935392e-05	-1.47686388425e-05
+UniRef50_K1ZGV2		0.000114044902302	0.000306505510537	0.000192460608235
+UniRef50_B9TBU0		2.25752788605e-05	0.000100848049587	7.82727707265e-05
+UniRef50_A6LWA9		0.000546743370497	0.000274287961482	-0.000272455409015
+UniRef50_A6TG48	Aspartate  ammonia ligase	0.00327719420505	0.00348725676534	0.00021006256029
+UniRef50_A5F4D2	Phosphomethylpyrimidine synthase	0.00315592818976	0.00586377024192	0.00270784205216
+UniRef50_R5X951		0.0017848759856	0.00103916192879	-0.00074571405681
+UniRef50_A5D654	4 diphosphocytidyl 2 C methyl D erythritol kinase	7.95459431843e-06	9.05863134377e-06	1.10403702534e-06
+UniRef50_Q5HLI3	Amino acid ABC transporter, permease protein	0.0226405286452	0.00479868385436	-0.0178418447908
+UniRef50_E1SVE3	Rhodanese domain protein	2.87651919353e-05	1.09752266311e-05	-1.77899653042e-05
+UniRef50_A6QDV1		0.0111824237392	0.00413780450569	-0.00704461923351
+UniRef50_W8T476	Pe pgrs family protein	6.39865258548e-06	2.6132570754e-06	-3.78539551008e-06
+UniRef50_E6MZ19	Periplasmic protein	0.00014842175184	0.00207449855273	0.00192607680089
+UniRef50_V6U561		4.21551589043e-05	0.000102416579916	6.02614210117e-05
+UniRef50_I1WGW6		8.34530557572e-05	0.00446246289985	0.00437900984409
+UniRef50_UPI000472273F	aspartate ammonia lyase	2.39021220366e-06	5.19345903303e-06	2.80324682937e-06
+UniRef50_UPI000372D1EE	cold shock protein	7.38621989468e-05	8.7187408965e-05	1.33252100182e-05
+UniRef50_L0LNW6		0.000639695633728	0.000274627427356	-0.000365068206372
+UniRef50_D3E1A2	ATPase	0.00319507884737	0.000934729371988	-0.00226034947538
+UniRef50_N6Y413		5.04529658204e-05	1.38833484413e-05	-3.65696173791e-05
+UniRef50_C6DIM3	p hydroxybenzoic acid efflux pump subunit AaeB	0.00250918122334	0.00124337077283	-0.00126581045051
+UniRef50_UPI00047D54B2	DSBA oxidoreductase	2.15050988684e-05	1.09826398542e-05	-1.05224590142e-05
+UniRef50_UPI00046ED66D	aminotransferase	1.28082499582e-05	0.000354387395651	0.000341579145693
+UniRef50_UPI000474BB68	O sialoglycoprotein endopeptidase, partial	1.31084401493e-05	1.36668293738e-05	5.583892245e-07
+UniRef50_D8HG20	Probable membrane protein	0.00205098719367	0.000809828614498	-0.00124115857917
+UniRef50_UPI0003601444	hypothetical protein	5.43161980025e-05	1.72281173397e-05	-3.70880806628e-05
+UniRef50_P43270	Thermonuclease	0.00976498114362	0.00663537280379	-0.00312960833983
+UniRef50_H0TU43		0.000128710248891	0.000237520138222	0.000108809889331
+UniRef50_P33346		0.00470375312309	0.00123258267525	-0.00347117044784
+UniRef50_Q2GCS7	Phosphoribosylaminoimidazole succinocarboxamide synthase	7.5679467235e-05	0.00254981444005	0.00247413497281
+UniRef50_P44299		8.72430943044e-06	0.00099818399825	0.00098945968882
+UniRef50_Q8TK95	Bifunctional protein FolD	1.29437233906e-05	2.68682720579e-06	-1.02568961848e-05
+UniRef50_B4U336	Glutamine amidotransferase	0.00517032751371	0.00292831621464	-0.00224201129907
+UniRef50_R4K1J7	Iron only hydrogenase large subunit	0.000354850001566	0.00175430014147	0.0013994501399
+UniRef50_UPI00031BEDB0	hypothetical protein	1.09863127949e-05	0.000111865046445	0.00010087873365
+UniRef50_B7M4N2	Bifunctional protein FolD	0.00360609107273	0.000220021779253	-0.00338606929348
+UniRef50_C6SLX9		0.000473783882208	0.000660305050415	0.000186521168207
+UniRef50_B9KRV7		0.00787936393408	0.00194040537606	-0.00593895855802
+UniRef50_U0BIJ8	Protein UshA	0.00247365967226	0.000510934398752	-0.00196272527351
+UniRef50_A6LWU4	Non specific serine threonine protein kinase	0.000422068317642	0.000515594114356	9.3525796714e-05
+UniRef50_E3FEG1		4.92537471239e-06	1.14961805906e-05	6.57080587821e-06
+UniRef50_H3ZXZ3		0.000581104572138	4.41373054089e-05	-0.000536967266729
+UniRef50_Q6FZE7	50S ribosomal protein L17	0.00240629427813	0.000492194508663	-0.00191409976947
+UniRef50_UPI000362A66F	hypothetical protein	6.48779034289e-05	1.30160438547e-06	-6.35762990434e-05
+UniRef50_UPI0001FFE9A8	diguanylate cyclase	3.32914985619e-05	3.39382423095e-05	6.467437476e-07
+UniRef50_UPI00035037FE	PREDICTED	5.46873487573e-05	7.57796938602e-05	2.10923451029e-05
+UniRef50_U7PB07		0.000257314118328	0.000340279518339	8.2965400011e-05
+UniRef50_A5U0Z1	Succinyl CoA ligase [ADP forming] subunit beta	0.000406619125096	0.00479580865036	0.00438918952526
+UniRef50_W4U4M2	Heme ABC transporter	6.43298972005e-05	0.000244755104297	0.000180425207097
+UniRef50_P76458	Acetate CoA transferase subunit alpha	0.00324359388849	0.000283958370386	-0.0029596355181
+UniRef50_A6LYU9	Integral membrane sensor hybrid histidine kinase	0.000103945619926	0.00155925042433	0.0014553048044
+UniRef50_Q3JI08		7.59977215689e-05	3.55802925887e-05	-4.04174289802e-05
+UniRef50_UPI000475B85D	hypothetical protein	9.48367204319e-05	0.00172013453417	0.00162529781374
+UniRef50_UPI00039FFF6C	NrdR family transcriptional regulator	0.000162438266037	0.000100179945374	-6.2258320663e-05
+UniRef50_Q1GI98	Glutamate ammonia ligase adenylyltransferase	0.0010261631559	0.000485259949455	-0.000540903206445
+UniRef50_G7M6U6	Integral membrane sensor signal transduction histidine kinase	0.000307141870174	0.000432126768835	0.000124984898661
+UniRef50_G9ZVA2		6.9707653617e-05	3.48146600093e-05	-3.48929936077e-05
+UniRef50_Q9RZN0	GGDEF family protein	0.000168490163255	0.0432835645102	0.0431150743469
+UniRef50_Q72GQ7	Tripartite transporter, large subunit	6.00615134022e-06	1.32050747074e-05	7.19892336718e-06
+UniRef50_UPI0003707BF1	nucleoside hydrolase, partial	2.83652759102e-05	1.35701973595e-05	-1.47950785507e-05
+UniRef50_J9YTR5	Sensor histidine kinase CsrS	0.000251882602535	0.000118919478603	-0.000132963123932
+UniRef50_UPI000472729B	hypothetical protein	7.05533790587e-05	8.38352582416e-05	1.32818791829e-05
+UniRef50_UPI0003791242	phosphoenolpyruvate synthase	2.4420823571e-06	6.28472670581e-07	-1.81360968652e-06
+UniRef50_Q2FJB8	Transcriptional regulator CtsR	0.0207619291095	0.000825712385463	-0.019936216724
+UniRef50_E3F288		1.71865603074e-05	1.62592244503e-05	-9.273358571e-07
+UniRef50_A3MQP5	Aminomethyltransferase	4.56235562189e-05	0.0036498446816	0.00360422112538
+UniRef50_A0PZ54	Mur ligase family protein	0.000469687904841	0.000987821403005	0.000518133498164
+UniRef50_UPI000375510C	hypothetical protein	4.12995409554e-06	1.74569528325e-05	1.3326998737e-05
+UniRef50_UPI00037D1824	hypothetical protein	0.000686230069954	0.00024011623735	-0.000446113832604
+UniRef50_Q8UEY5	CTP synthase	0.0149246419771	0.0693609245991	0.054436282622
+UniRef50_E4PL62	Secreted protein containing YkuD domain	3.03028094565e-06	0.000242111782486	0.00023908150154
+UniRef50_UPI0002FE793C	betaine aldehyde dehydrogenase	6.36842699923e-06	2.05168448965e-05	1.41484178973e-05
+UniRef50_T1Y8A8	Acetyltransferase	0.0213377725131	0.0047424226744	-0.0165953498387
+UniRef50_F0P4Z6	Oligopeptide transport ATP binding protein	0.010130143973	0.00354298663843	-0.00658715733457
+UniRef50_UPI0003728158	hypothetical protein	1.53038424264e-05	0.00122815258107	0.00121284873864
+UniRef50_UPI00016C46F4	hypothetical protein	2.92677527275e-05	0.00456849423887	0.00453922648614
+UniRef50_F1SCK4		7.13475604041e-05	6.30261314385e-05	-8.3214289656e-06
+UniRef50_P75836		0.00165334418126	0.00123996266424	-0.00041338151702
+UniRef50_C7IYG9	Os02g0192900 protein 	9.08724943007e-05	5.90548653255e-05	-3.18176289752e-05
+UniRef50_Q9RZ97	TerF related protein	0.00021181362866	0.0509594167764	0.0507476031477
+UniRef50_UPI00047811D4	leucine isoleucine valine transporter ATP binding subunit	0.000153137871706	3.79816943265e-05	-0.000115156177379
+UniRef50_A6VVT1	Isochorismatase	0.000404344041288	0.0059556549115	0.00555131087021
+UniRef50_UPI0001E92D34	DNA gyrase subunit B	6.17057410147e-06	3.59677165188e-05	2.97971424173e-05
+UniRef50_C6SEB8		0.000438937196334	0.00104410403273	0.000605166836396
+UniRef50_C6SRB4		0.00346895339921	0.00440102668756	0.00093207328835
+UniRef50_P0AGD2	Superoxide dismutase [Cu Zn]	0.00129506510486	0.0017472228371	0.00045215773224
+UniRef50_U3ST50		0.00773292438433	0.00107386885985	-0.00665905552448
+UniRef50_UPI000364FC3A	hypothetical protein	0.000330050274218	0.000119089844559	-0.000210960429659
+UniRef50_Q1GKH0	AMP dependent synthetase and ligase	0.0108787101069	0.00301697327454	-0.00786173683236
+UniRef50_Q2NIM1	Thymidine kinase	1.31424068445e-05	2.29823983355e-05	9.839991491e-06
+UniRef50_E0RBR7	Periplasmic [Fe] hydrogenase large subunit 	0.000171847384623	0.00263450322562	0.002462655841
+UniRef50_A4W401	Polyribonucleotide nucleotidyltransferase	0.000238965045288	2.01014961378e-05	-0.00021886354915
+UniRef50_K7JKT8		0.000229648434056	1.22301169047e-05	-0.000217418317151
+UniRef50_UPI0003B4FA18	membrane protein	3.35947674872e-06	2.01704023608e-06	-1.34243651264e-06
+UniRef50_UPI0003607215	hypothetical protein, partial	0.000198769168897	5.23081817619e-05	-0.000146460987135
+UniRef50_M9S617	ABC transporter permease	0.000283824051773	0.000663633045389	0.000379808993616
+UniRef50_R9SMZ9	Cysteine  tRNA ligase	0.00308882240295	0.000540837269867	-0.00254798513308
+UniRef50_UPI00047912C6	hypothetical protein	5.12398274445e-05	6.40095765546e-05	1.27697491101e-05
+UniRef50_Q3HKE0		0.0205628439732	0.00203825318709	-0.0185245907861
+UniRef50_E4Z9V1	SUN family protein	0.000305980378466	0.00422439254261	0.00391841216414
+UniRef50_B9KKY7		0.0025345487823	0.0043217078809	0.0017871590986
+UniRef50_Q2VZ24	Peptidyl tRNA hydrolase	5.74846326368e-05	2.91483509187e-05	-2.83362817181e-05
+UniRef50_A0A015J1B9		1.82988861497e-05	1.94441213823e-05	1.1452352326e-06
+UniRef50_Q8X5L7	Cellulose synthase catalytic subunit [UDP forming]	0.00259368540632	0.000930100673266	-0.00166358473305
+UniRef50_X5PU41		0.000134901540474	2.70683094764e-05	-0.000107833230998
+UniRef50_I6ZGW2	Type IV pilus biogenesis stability protein PilW	2.01261722517e-05	8.92100626696e-05	6.90838904179e-05
+UniRef50_B9KK81	Methyltransferase type 12	0.00174002928411	0.000311954266055	-0.00142807501805
+UniRef50_I3X0I9		0.000176405419619	2.48154224269e-05	-0.000151589997192
+UniRef50_K2J734		1.15612518295e-05	3.30030067357e-05	2.14417549062e-05
+UniRef50_UPI00035FADFC	hypothetical protein	0.000786974983318	0.000211042121785	-0.000575932861533
+UniRef50_UPI0002B9D075	hypothetical protein	0.000204420778622	8.45790641995e-05	-0.000119841714422
+UniRef50_A3XC42		4.13019570544e-06	3.82624274127e-05	3.41322317073e-05
+UniRef50_A4WWJ4		0.000663580031506	0.00147843996562	0.000814859934114
+UniRef50_A1S9Z4	Oxidoreductase, GMC family	0.000526152228409	0.000383525781208	-0.000142626447201
+UniRef50_UPI0003B34D06	DNA topoisomerase I	2.55820535574e-06	4.92927019695e-06	2.37106484121e-06
+UniRef50_R1EBF4		4.52545448584e-06	2.20506901545e-05	1.75252356687e-05
+UniRef50_G0LQE0	Capsular polysaccharide synthesis enzyme	0.013501218799	0.000981233109992	-0.012519985689
+UniRef50_Q2FHD8	Aerobic glycerol 3 phosphate dehydrogenase	0.0204808430227	0.00543007428102	-0.0150507687417
+UniRef50_D9R3D4	Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	5.58686712658e-05	0.00137604761137	0.0013201789401
+UniRef50_Q896N6	Thymidylate kinase	0.000227227001991	0.000831550133378	0.000604323131387
+UniRef50_UPI00016A3FE0	spermidine putrescine ABC transporter ATPase subunit, partial	0.00021706102784	8.42731383421e-05	-0.000132787889498
+UniRef50_A7WYE6		0.000965440689355	5.53156467708e-05	-0.000910125042584
+UniRef50_UPI000472C988	hypothetical protein, partial	0.000175980139253	0.00222773468081	0.00205175454156
+UniRef50_K2ADN8	Putative insertion sequence transposase protein	0.00014787166933	8.60840797902e-05	-6.17875895398e-05
+UniRef50_A6LPZ0	Extracellular solute binding protein, family 1	0.00117647242485	0.00163230122652	0.00045582880167
+UniRef50_G6DGM2		9.22862415084e-06	1.02087904951e-05	9.8016634426e-07
+UniRef50_Q9HNI0	Thermosome subunit beta	0.00351395688958	0.000725356003674	-0.00278860088591
+UniRef50_U5UQ99	Peptidase M16 domain containing protein	0.0175938953812	0.00380765055708	-0.0137862448241
+UniRef50_E0S0F8	Ornithine cyclodeaminase	0.00239817583446	0.000620952845356	-0.0017772229891
+UniRef50_C7NCR9	Nickel ABC transporter, periplasmic nickel binding protein	7.31561993853e-05	0.000357336078491	0.000284179879106
+UniRef50_Q8CNS7	Replication associated protein	0.00985967378344	0.00888201851496	-0.00097765526848
+UniRef50_Q6A969	DNA repair protein RecO	0.00040735898078	0.00700444070391	0.00659708172313
+UniRef50_Q6AKT0		0.00268281462992	0.0036569196789	0.00097410504898
+UniRef50_Q88DY1	Hemin import ATP binding protein HmuV	1.01990828502e-05	0.00184356926955	0.0018333701867
+UniRef50_Q6MML0	Threonine  tRNA ligase	4.54569158898e-06	0.000566088529588	0.000561542837999
+UniRef50_T7GQG4	Inner membrane transporter ygjI	0.00197573266341	0.000244400031881	-0.00173133263153
+UniRef50_Q9KRQ1	Catalase	1.04820572794e-05	1.84259493427e-05	7.9438920633e-06
+UniRef50_UPI0003698FB7	hypothetical protein	0.000200219400437	0.00015130413626	-4.8915264177e-05
+UniRef50_UPI00040AA97B	hypothetical protein	2.15774835998e-05	7.00422327691e-05	4.84647491693e-05
+UniRef50_P9WH42	30S ribosomal protein S1	0.000197195646366	0.009651750944	0.00945455529763
+UniRef50_T1Y598	Transporter, drug metabolite exporter family protein	0.0111822240768	0.00214934800238	-0.00903287607442
+UniRef50_E7MYR2		0.000487296204386	0.000410150858771	-7.7145345615e-05
+UniRef50_Q3JSR8	Alkanesulfonate monooxygenase	2.451784505e-05	3.23152498095e-05	7.7974047595e-06
+UniRef50_W5X5Q8		3.55721134767e-05	3.10624836014e-05	-4.5096298753e-06
+UniRef50_Q5F6G1	UPF0213 protein NGO1598	1.55648948476e-05	0.000787511213846	0.000771946318998
+UniRef50_B2TIV3	Phospholipase, patatin family	0.000524117785486	0.00248484360979	0.0019607258243
+UniRef50_R5XTT8	AMP binding enzyme	0.00041188844411	0.00204270112881	0.0016308126847
+UniRef50_UPI00037CADCD	hypothetical protein	2.81945583588e-05	0.00271745625739	0.00268926169903
+UniRef50_Q72C18	Acetylglutamate kinase	3.14443004401e-05	1.46829392759e-05	-1.67613611642e-05
+UniRef50_D4HAH0	ATPase histidine kinase DNA gyrase B HSP90 domain protein	0.000213615565721	0.00442855000265	0.00421493443693
+UniRef50_UPI000329D795	PREDICTED	0.00313326402326	0.00846883626048	0.00533557223722
+UniRef50_F7Y006		0.00018436034628	7.79354544998e-05	-0.00010642489178
+UniRef50_O67501	Inorganic pyrophosphatase	0.00078165386211	0.00686565159652	0.00608399773441
+UniRef50_UPI00041A51D0	hypothetical protein	0.000172267658381	0.000100916247582	-7.1351410799e-05
+UniRef50_B7I3M9	Peptidase M24	6.44907725824e-05	0.00335431983008	0.0032898290575
+UniRef50_UPI000361F1B4	hypothetical protein	3.56997845568e-05	2.57131333885e-05	-9.9866511683e-06
+UniRef50_P0A5L7	Glutamine dependent NAD synthetase	0.000129113099896	0.00434460270108	0.00421548960118
+UniRef50_D5BPQ5	RNA polymerase sigma factor RpoH	0.0127247515463	0.00651547956737	-0.00620927197893
+UniRef50_R4K8M3	1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.00038801659254	0.00230151386389	0.00191349727135
+UniRef50_UPI0002558C92	helix turn helix domain containing protein	8.68067067684e-05	1.27279246909e-05	-7.40787820775e-05
+UniRef50_K7YS10		0.000110268545919	0.00382407404587	0.00371380549995
+UniRef50_D8JIS8		0.000392228991138	0.00469957169232	0.00430734270118
+UniRef50_F8KHK9	Response regulator protein	0.0105888132497	0.00447273461377	-0.00611607863593
+UniRef50_P76230	Putative metabolite transport protein YdjK	0.00230555362504	0.000547835986836	-0.0017577176382
+UniRef50_P52610	Flagellar motor switch protein FliG	0.000114505355566	0.000714172508987	0.000599667153421
+UniRef50_F0N1J6	Sensor histidine kinase	0.000224718965463	0.0070532597898	0.00682854082434
+UniRef50_G8PSK7	Short chain dehydrogenase reductase SDR	0.00116272706244	0.00127810915673	0.00011538209429
+UniRef50_W8UIH3	Stage V sporulation protein R	0.000738160104607	0.000812000262474	7.3840157867e-05
+UniRef50_UPI000373430C	30S ribosomal protein S17	3.56223020432e-05	0.000325710261417	0.000290087959374
+UniRef50_D4HFJ3		8.86813425461e-05	0.00103483409075	0.000946152748204
+UniRef50_E1NZW5	PspA related protein	6.92211471039e-05	0.000837372458833	0.000768151311729
+UniRef50_B9KQ43	Fatty acid beta hydroxylase	0.00333030122227	0.00127368269576	-0.00205661852651
+UniRef50_D4Z694	Ribonuclease D	5.92448613162e-05	1.08310663521e-05	-4.84137949641e-05
+UniRef50_UPI00047C78E3	RNA polymerase sigma factor RpoE	0.000564738195589	4.16521812256e-05	-0.000523086014363
+UniRef50_B4U3I6	Phosphoglucosamine mutase	0.0321541484765	0.0186199097666	-0.0135342387099
+UniRef50_A4VZG9	Transcriptional regulator	0.00406062414036	0.0024146277593	-0.00164599638106
+UniRef50_UPI0003056218	hypothetical protein	0.000123303630096	8.07794198247e-05	-4.25242102713e-05
+UniRef50_UPI00046F7510	hypothetical protein	1.7605409365e-05	9.5686865664e-05	7.8081456299e-05
+UniRef50_Q49V01	Ribonuclease M5	0.00741152213516	0.00340834525099	-0.00400317688417
+UniRef50_UPI000367E0A5	hypothetical protein	5.68488687639e-06	7.89096547797e-05	7.32247679033e-05
+UniRef50_Q8CMV9	Succinyl diaminopimelate desuccinylase	0.0113088813103	0.00585785448005	-0.00545102683025
+UniRef50_F2A6D1		0.00038328227668	7.93281095377e-05	-0.000303954167142
+UniRef50_UPI00045E4C42	PREDICTED	1.0723083665e-05	6.08342735764e-06	-4.63965630736e-06
+UniRef50_W3ZDR5	NLPA lipofamily protein	5.11046067427e-05	3.9741229972e-05	-1.13633767707e-05
+UniRef50_G9WJ36	Ribonucleoside diphosphate reductase subunit beta	0.00520883524132	0.00475779832854	-0.00045103691278
+UniRef50_F0Y9Q8		8.36626966138e-05	0.000113438503525	2.97758069112e-05
+UniRef50_UPI00035FAC18	hypothetical protein	1.95072744038e-06	3.00499659258e-06	1.0542691522e-06
+UniRef50_I4XUK4	Outer membrane porin, OprD family	0.00139703590694	0.00062531609542	-0.00077171981152
+UniRef50_Q8UII5	Glutathione synthetase	0.0090507001568	0.00478608089535	-0.00426461926145
+UniRef50_Q6ME50	30S ribosomal protein S8	0.000283824051773	0.0414143439189	0.0411305198671
+UniRef50_UPI0003692650	hypothetical protein, partial	3.33669563539e-05	1.5889263412e-05	-1.74776929419e-05
+UniRef50_A4WSD1	Haemin degrading family protein	0.000174224302552	0.000295316705201	0.000121092402649
+UniRef50_Q5NP09	Leucyl phenylalanyl tRNA  protein transferase	1.75444608397e-05	1.42915105323e-05	-3.2529503074e-06
+UniRef50_A5UNB6	Formylmethanofuran dehydrogenase subunit E, metal binding	0.00640596899918	0.00188767038702	-0.00451829861216
+UniRef50_Q9JZ25		8.21812747825e-05	0.00409415096393	0.00401196968915
+UniRef50_A1WR07	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.11573132684e-05	0.000231671029202	0.000220513715934
+UniRef50_Q9JZ20		6.46749267023e-05	0.00468628230578	0.00462160737908
+UniRef50_V8UNT0		0.000247103275661	0.000182858640994	-6.4244634667e-05
+UniRef50_UPI0003730FD4	MULTISPECIES	0.000405658192578	7.19590933629e-05	-0.000333699099215
+UniRef50_P77328	Putative purine permease YbbY	0.00192780444417	0.0011862522077	-0.00074155223647
+UniRef50_H5NY39		8.25925185355e-05	2.12801456374e-05	-6.13123728981e-05
+UniRef50_Q20719	Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	0.000172463416446	5.27799997407e-05	-0.000119683416705
+UniRef50_UPI00036C23C8	hypothetical protein, partial	0.0018228730035	0.000707256978392	-0.00111561602511
+UniRef50_R0B9U9		2.82392150721e-05	0.000102565027804	7.43258127319e-05
+UniRef50_Q59637	Pyruvate dehydrogenase E1 component	0.000960617195579	0.0113516571623	0.0103910399667
+UniRef50_P32140	Sulfoquinovose isomerase	0.00383661120243	0.00106210480799	-0.00277450639444
+UniRef50_I0C1T3	Phosphohydrolase 	0.00392995092711	0.00585045773662	0.00192050680951
+UniRef50_Q7AHT0	Protein FixC	0.0015551025886	0.00104516001548	-0.00050994257312
+UniRef50_A0A023RTX7	3 oxoacyl ACP reductase	0.000167029198609	0.00312366322429	0.00295663402568
+UniRef50_P0ABQ3	2 hydroxy 3 oxopropionate reductase	0.00340693925121	0.00020044120263	-0.00320649804858
+UniRef50_Q132J0		1.81498142186e-05	3.18516102133e-05	1.37017959947e-05
+UniRef50_UPI00035C36AF	hypothetical protein	8.95694072163e-05	1.6931379476e-05	-7.26380277403e-05
+UniRef50_F8DK82	Bacterial capsule synthesis protein	0.00538991828681	0.00250829743023	-0.00288162085658
+UniRef50_Q9HU78	Histidine utilization repressor	0.00161030237273	0.00696790273987	0.00535760036714
+UniRef50_Q67FW7	DeoX	0.000372901818082	0.00610401970517	0.00573111788709
+UniRef50_UPI0004737BA1	hypothetical protein, partial	0.000214438723608	0.000129729889967	-8.4708833641e-05
+UniRef50_R4NT35	Bipolar DNA helicase	0.000833639002711	0.000732574829828	-0.000101064172883
+UniRef50_P39629	Glucose 1 phosphate thymidylyltransferase	0.000134484457948	1.82363283586e-05	-0.000116248129589
+UniRef50_A4XS92	Multisubunit potassium proton antiporter, PhaD subunit	0.000186081699149	0.000121114164807	-6.4967534342e-05
+UniRef50_UPI00047D80A6	DNA gyrase subunit A	5.43624143822e-06	8.94022097455e-06	3.50397953633e-06
+UniRef50_F0KNK5	Two component system response regulator 	0.000388914210183	0.00655936810024	0.00617045389006
+UniRef50_X1C4Y0	Marine sediment metagenome DNA, contig	0.000428779610345	0.000176686933668	-0.000252092676677
+UniRef50_N3AGF2	Cytochrome c type protein TorY	0.00199625858811	0.000962100964089	-0.00103415762402
+UniRef50_V0HZJ9	Cysteine desulfurase ATPase component 	2.90311699825e-05	4.32427377806e-05	1.42115677981e-05
+UniRef50_UPI00047B2607	pyrroloquinoline quinone biosynthesis protein PqqD	0.000568164998459	0.0004786165479	-8.9548450559e-05
+UniRef50_Q5HR89	Nucleoside permease NupC, putative	0.00922752397086	0.00297410986471	-0.00625341410615
+UniRef50_A6X846		2.06784488205e-05	3.56971296522e-05	1.50186808317e-05
+UniRef50_Q8X5R9	Multidrug resistance outer membrane protein MdtP	0.00628031205658	0.000834369175775	-0.0054459428808
+UniRef50_R7PWL5	Tetrahydromethanopterin S methyltransferase subunit D	0.00185388268482	0.00175107661102	-0.0001028060738
+UniRef50_UPI000381633B	hypothetical protein	8.35102652347e-05	0.000346544146433	0.000263033881198
+UniRef50_O28392	DNA directed RNA polymerase subunit B	0.00357461536165	0.00145920216293	-0.00211541319872
+UniRef50_UPI000471C680	hypothetical protein	0.000214021699552	3.86798106142e-05	-0.000175341888938
+UniRef50_C6C0W1	Flagellar hook capping protein	6.25011979495e-06	8.53687735363e-06	2.28675755868e-06
+UniRef50_C5ZYT0	Flagellar biosynthetic protein fliR	0.000329918202451	0.0037714211467	0.00344150294425
+UniRef50_A3M994	Glycerol 3 phosphate acyltransferase	0.000100296958099	0.00654940272376	0.00644910576566
+UniRef50_O27221		0.00381901260513	0.000564871506842	-0.00325414109829
+UniRef50_UPI00046F1A00	PTS lactose transporter subunit IIC, partial	2.35694247981e-05	5.12340255421e-05	2.7664600744e-05
+UniRef50_Q8X852	Anaerobic nitric oxide reductase flavorubredoxin homolog	0.000906004697287	0.00067171309201	-0.000234291605277
+UniRef50_N1QCI2		3.47431612211e-05	1.97791547763e-05	-1.49640064448e-05
+UniRef50_UPI000346EB07	hypothetical protein	6.84484538426e-06	0.000575029185245	0.000568184339861
+UniRef50_C2TQQ2	Peptidase, M23 M37	4.72809257569e-05	0.00036012092922	0.000312840003463
+UniRef50_Q31J61	tRNA pseudouridine synthase D	1.36551539828e-05	1.44006784927e-05	7.455245099e-07
+UniRef50_Q82X69	DNA directed RNA polymerase subunit alpha	0.000301970573484	0.00248231436974	0.00218034379626
+UniRef50_A5FRB6	Triosephosphate isomerase	6.32048671276e-06	1.10248192836e-05	4.70433257084e-06
+UniRef50_E3EYC8		0.000204316364208	7.7206553359e-05	-0.000127109810849
+UniRef50_UPI000383025F	hypothetical protein	5.79978541618e-06	0.000111025359298	0.000105225573882
+UniRef50_B9KX89	Lipopolysaccharide biosynthesis protein like protein	0.00653475087511	0.00167991242651	-0.0048548384486
+UniRef50_UPI0004799F87	hypothetical protein	5.08306769381e-05	0.000161228410485	0.000110397733547
+UniRef50_Q5HMA0	Putative aldehyde dehydrogenase SERP1729	0.00993051916199	0.00362160397685	-0.00630891518514
+UniRef50_J7Q688		0.00588770481722	0.00173715708938	-0.00415054772784
+UniRef50_B7GSP5	UPF0145 protein Blon_0093 BLIJ_0092	0.00626760354376	0.00089489910665	-0.00537270443711
+UniRef50_P0A080	Methionine aminopeptidase	0.0184456943461	0.00612905183714	-0.012316642509
+UniRef50_UPI00029AD8DA	MgtC family protein	9.76279424565e-06	2.37583207115e-05	1.39955264658e-05
+UniRef50_E4RH84		0.000319002244105	0.000121789178688	-0.000197213065417
+UniRef50_UPI0002E94BF6	hypothetical protein	1.80643877389e-05	8.4698820894e-06	-9.5945056495e-06
+UniRef50_I6D5L2	DNA mismatch repair endonuclease MutH	0.00157544674083	0.000676297798153	-0.000899148942677
+UniRef50_V6J5F5		0.00029699405655	9.24832007824e-05	-0.000204510855768
+UniRef50_N3N816		2.23763877706e-05	1.07733713138e-05	-1.16030164568e-05
+UniRef50_UPI00046883B3	hypothetical protein	6.08898639376e-06	3.91170731897e-06	-2.17727907479e-06
+UniRef50_O26311		0.00252666245388	0.000252407440337	-0.00227425501354
+UniRef50_R9GEA9		0.000118797513848	5.49949343175e-05	-6.38025795305e-05
+UniRef50_F2MRI9	PTS family mannose fructose sorbose porter component IIB	0.00211397282274	0.0114010743195	0.00928710149676
+UniRef50_Q2IXV2	Transglutaminase like	0.00587363564302	0.000187308078712	-0.00568632756431
+UniRef50_R4RQ23		0.00225032262051	0.00108583484632	-0.00116448777419
+UniRef50_A4WT49	Flagellar hook capping protein	0.000373500608085	2.91475161056e-05	-0.000344353091979
+UniRef50_W4KX88		0.000182360381085	0.00440664585546	0.00422428547438
+UniRef50_UPI0003822DD9	hypothetical protein	3.26953949297e-05	3.99070481698e-05	7.2116532401e-06
+UniRef50_UPI0003599277	PREDICTED	8.75011433112e-06	1.77644757568e-05	9.01436142568e-06
+UniRef50_B1HQN9	Oxidoreductase	3.09811814829e-05	3.60951961111e-05	5.1140146282e-06
+UniRef50_A6LQN9		0.000220752040266	0.00114727635005	0.000926524309784
+UniRef50_A4VWU0	Oxidoreductase, aldo keto reductase family	0.00531654410109	0.00469659214923	-0.00061995195186
+UniRef50_Q71ZB6	Valine  tRNA ligase	0.011607580159	0.00670740818618	-0.00490017197282
+UniRef50_UPI0001745DE2	iojap like protein	1.57311865608e-05	1.54185978416e-05	-3.125887192e-07
+UniRef50_X2D8N8	CCR4 NOT transcription complex subunit 1 like protein	2.073948527e-07	1.64110422442e-05	1.62036473915e-05
+UniRef50_UPI000288BDB9	hypothetical protein	4.23818883364e-05	0.000675120098089	0.000632738209753
+UniRef50_A8TYU1		0.000181654248277	3.98131953456e-05	-0.000141841052931
+UniRef50_B1M8V2	ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein	0.0110482934425	0.00098272298877	-0.0100655704537
+UniRef50_A8TJK3		4.64977491737e-05	3.30064999485e-05	-1.34912492252e-05
+UniRef50_A6M2M8	ABC 2 type transporter	0.000374970592476	0.00184698361002	0.00147201301754
+UniRef50_D7GD90	DEAD DEAH box helicase domain protein	0.000126390398057	0.0056542384263	0.00552784802824
+UniRef50_UPI00036142F7	hypothetical protein	1.49991024948e-06	1.48577346644e-05	1.33578244149e-05
+UniRef50_UPI0003804935	hypothetical protein	1.64102526707e-05	2.04195223195e-05	4.0092696488e-06
+UniRef50_P54569		0.00992392698782	0.0044337418747	-0.00549018511312
+UniRef50_G3N5H8		0.000342844569056	0.000177368301016	-0.00016547626804
+UniRef50_Q5HKG1		0.013345753669	0.00526656333702	-0.00807919033198
+UniRef50_UPI00036B826D	hypothetical protein, partial	5.50766493932e-06	4.3426136046e-05	3.79184711067e-05
+UniRef50_UPI0003B72BA0	hydrogenase	3.12086082261e-06	9.57761927362e-06	6.45675845101e-06
+UniRef50_B5R316	UPF0304 protein YfbU	0.00166624954215	0.000397287047353	-0.0012689624948
+UniRef50_F0MMC4	Amine oxidase, flavin containing	0.0003478177114	0.00395127882311	0.00360346111171
+UniRef50_V9QXD6	Porin	0.000665291397705	0.000425943697766	-0.000239347699939
+UniRef50_A6LW94	Transcriptional regulator, DeoR family	0.000176946557275	0.00161628231504	0.00143933575776
+UniRef50_U3SVU2		0.000568801182077	0.000586309163956	1.7507981879e-05
+UniRef50_B1YGB5	DNA replication and repair protein RecF	0.0184665548133	0.00336847218	-0.0150980826333
+UniRef50_I6STT7		0.00334666335117	0.00602675346134	0.00268009011017
+UniRef50_UPI0002BC6165	bacterioferritin comigratory protein	1.84825304258e-05	0.00022017092355	0.000201688393124
+UniRef50_M0V7T6		9.84516834463e-05	0.000347431417872	0.000248979734426
+UniRef50_F9YYL3	Ferrous iron transport protein B	0.000269549589222	0.00366827884652	0.0033987292573
+UniRef50_UPI00030260F1	cation	0.000166083424888	0.000132603447	-3.3479977888e-05
+UniRef50_N1MTR3	Type I restriction modification system,specificity subunit S	0.0127677238355	0.00250175631683	-0.0102659675187
+UniRef50_A0A024EBR0	LmbE like protein	0.000765594314752	0.000136404944659	-0.000629189370093
+UniRef50_L2D926	Fimbrial like adhesin protein	0.0014121910621	0.000274287961482	-0.00113790310062
+UniRef50_V5A3C8		0.000528198678434	3.33846493983e-05	-0.000494814029036
+UniRef50_F3U4M4	GntR family transcriptional regulator	0.000190835953959	0.00016988496944	-2.0950984519e-05
+UniRef50_UPI0004695BC6	leucyl tRNA synthetase	4.75422282929e-06	1.5562105193e-06	-3.19801230999e-06
+UniRef50_Q5FPX3	tRNA pseudouridine synthase A	0.000233016042498	7.47651250683e-06	-0.000225539529991
+UniRef50_Q5LI89	N acetylmuramic acid 6 phosphate etherase	6.90100093984e-06	0.00210289577065	0.00209599476971
+UniRef50_UPI00037D2323	alpha glucosidase	4.53041820766e-06	3.04100759075e-05	2.58796576998e-05
+UniRef50_E3F031	Beta glucosidase	0.00295037214071	0.00110858584528	-0.00184178629543
+UniRef50_P0AES3	Glucarate dehydratase	0.00702954799968	0.00878875403996	0.00175920604028
+UniRef50_UPI000370BA4E	hypothetical protein	7.20502329626e-05	5.82777945811e-05	-1.37724383815e-05
+UniRef50_I6SW42	Transposase	0.000129800417186	0.00183934280053	0.00170954238334
+UniRef50_UPI000360A0FF	phosphoribosylglycinamide synthetase	1.86467445882e-05	8.87922415961e-06	-9.76752042859e-06
+UniRef50_X5F4A5		0.00114128498685	0.000655180477956	-0.000486104508894
+UniRef50_UPI0003630547	hypothetical protein	7.60039227276e-05	1.05280356734e-05	-6.54758870542e-05
+UniRef50_Q5HQB3	Inosine uridine preferring nucleoside hydrolase family protein	0.0110896238537	0.00173346835175	-0.00935615550195
+UniRef50_T1AIV4	Multidrug transporter 	3.30373060728e-05	0.000589183652317	0.000556146346244
+UniRef50_O86567	Aminomethyltransferase	2.09158158154e-05	6.90653761094e-05	4.8149560294e-05
+UniRef50_D2VSM7	Predicted protein	6.36531801708e-06	0.000193201807955	0.000186836489938
+UniRef50_G7ZTG3		0.00948107114663	0.00458052852016	-0.00490054262647
+UniRef50_A6TGA6	Rhamnulose 1 phosphate aldolase	0.00320383182012	0.00129427310983	-0.00190955871029
+UniRef50_UPI0004763CF3	pseudouridine synthase	5.81392126613e-06	2.42057008727e-05	1.83917796066e-05
+UniRef50_Q0SRF8	Endoribonuclease YbeY	0.000225589236365	0.000387724339418	0.000162135103053
+UniRef50_R1C5J1		5.24229248771e-05	7.90221917779e-05	2.65992669008e-05
+UniRef50_V5P4D6	PTS fructose transporter subunit IIB	0.00564687527535	0.0025995800943	-0.00304729518105
+UniRef50_Q9HYB2		0.00180932536709	0.000402041979561	-0.00140728338753
+UniRef50_H8GCV6	Putative transcriptional regulator	5.90744896513e-05	1.11794729683e-05	-4.7895016683e-05
+UniRef50_Q1J3U3	Transcriptional regulator, MerR family	0.0012868840529	0.0314781732444	0.0301912891915
+UniRef50_A1B304	Heat shock protein DnaJ domain protein	0.000207030706866	0.000333691192315	0.000126660485449
+UniRef50_A0A022H4X6	GntR family transcriptional regulator	3.34616244267e-05	4.40145301052e-05	1.05529056785e-05
+UniRef50_O34677	Glutamine transport ATP binding protein GlnQ	0.00181155000652	0.00901977646216	0.00720822645564
+UniRef50_Q98L75	Hemin import ATP binding protein HmuV	9.660166239e-06	0.000554022556773	0.000544362390534
+UniRef50_G7U407	O antigen polymerase	0.000107037614984	0.00739729341918	0.0072902558042
+UniRef50_O67604	Riboflavin synthase	1.8922804886e-05	2.95569233109e-05	1.06341184249e-05
+UniRef50_UPI00035CB0C6	hypothetical protein	7.26520480106e-06	1.02498671824e-05	2.98466238134e-06
+UniRef50_UPI000441B666	PREDICTED	1.84541740747e-05	1.4969606456e-05	-3.4845676187e-06
+UniRef50_F9K9S6	Glyoxylate reductase	0.000294680013299	0.00021848338239	-7.6196630909e-05
+UniRef50_Q9RW09	Sensor histidine kinase	0.00013827325599	0.00502788511845	0.00488961186246
+UniRef50_W4U410	Lysophospholipase L2	7.00358479649e-05	0.000643304216154	0.000573268368189
+UniRef50_UPI0003B5FE88	RNA polymerase sigma factor RpoE	0.000808418463745	7.72663091172e-05	-0.000731152154628
+UniRef50_I6T5F3	Deoxyribonuclease	0.00695652230996	0.00143992609936	-0.0055165962106
+UniRef50_F7NPL8		4.342524562e-05	1.21262356921e-05	-3.12990099279e-05
+UniRef50_F0Y846		0.00015185373942	0.000307109306929	0.000155255567509
+UniRef50_K8C5J6	Translation initiation factor IF 2	0.00253454226222	0.00151853782466	-0.00101600443756
+UniRef50_UPI0003DE73F4	PREDICTED	8.77149972398e-07	1.32507892727e-06	4.47928954872e-07
+UniRef50_J3QFT9		4.38535395469e-06	8.10167048895e-05	7.66313509348e-05
+UniRef50_W8GMX2	Antitoxin	0.000385189784541	0.000509166733097	0.000123976948556
+UniRef50_UPI000476B5A8	hypothetical protein	8.51870467217e-05	0.0129108730146	0.0128256859679
+UniRef50_F3Z514	Putative cold shock protein	0.00182576859218	0.000411289866682	-0.0014144787255
+UniRef50_Q56632	Vibriobactin specific 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	8.22624134819e-06	2.29917180878e-05	1.47654767396e-05
+UniRef50_Q9RYM5		8.81976609493e-05	0.00752036892396	0.00743217126301
+UniRef50_Q9RYM9		1.55774901697e-05	0.0653801981306	0.0653646206404
+UniRef50_UPI000399284A	PREDICTED	1.04118684972e-05	0.000109546543662	9.91346751648e-05
+UniRef50_C5N1J7	Kinase, PfkB family	0.0100911004936	0.00153477095771	-0.00855632953589
+UniRef50_A5FZN2	Galactarate dehydratase	0.00570192735234	0.00131200101454	-0.0043899263378
+UniRef50_UPI0003B3B04C	MFS transporter	1.61280413142e-05	7.06417222195e-06	-9.06386909225e-06
+UniRef50_UPI000262C1BF	adenosylcobinamide phosphate synthase	2.50670606869e-05	1.16874545804e-05	-1.33796061065e-05
+UniRef50_D5K8E6	UbiC transcription regulator associated protein	0.0148399742338	0.00393272239083	-0.010907251843
+UniRef50_E6MWT7	Peptidyl prolyl cis trans isomerase	0.000164223720365	0.00354114655461	0.00337692283424
+UniRef50_Q5HGL7	Peptide deformylase like	0.0134900540338	0.00507273647925	-0.00841731755455
+UniRef50_A9LZP7		0.00028453717753	0.00189524027011	0.00161070309258
+UniRef50_Q1QLF3		0.00244035780859	0.0008972954244	-0.00154306238419
+UniRef50_Q5HRJ2	3 oxoacyl  reductase, putative	0.0128128992334	0.00360653980476	-0.00920635942864
+UniRef50_B6YRP0	S adenosylmethionine synthase	3.94428814984e-05	0.000260829952447	0.000221387070949
+UniRef50_Q9RT82		0.000246722868534	0.0175185642636	0.0172718413951
+UniRef50_P05827	HTH type transcriptional regulator IlvY	0.00345398178848	0.00175605343953	-0.00169792834895
+UniRef50_W1PW22		3.87021954854e-05	5.18001643751e-05	1.30979688897e-05
+UniRef50_UPI0004098CB0	sugar ABC transporter	9.2286988138e-06	3.92979250041e-05	3.00692261903e-05
+UniRef50_UPI00046A1978	ABC transporter permease	3.63723394977e-05	8.51849342804e-06	-2.78538460697e-05
+UniRef50_D2NQB1		5.96808617329e-05	8.52588449168e-05	2.55779831839e-05
+UniRef50_F0QNU4	1 acyl sn glycerol 3 phosphate acyltransferase	0.000737415830084	0.01070026496	0.00996284912992
+UniRef50_F4GUZ8		9.129319897e-06	1.16422553192e-05	2.5129354222e-06
+UniRef50_Q2CBD6		9.94205564893e-06	4.60123433811e-06	-5.34082131082e-06
+UniRef50_P45095	Dipeptide transport ATP binding protein DppD	0.00468100251102	0.00035156750618	-0.00432943500484
+UniRef50_A3PSS2	Dihydroxy acid dehydratase	3.81342339775e-05	3.62860237416e-05	-1.8482102359e-06
+UniRef50_P08179	Phosphoribosylglycinamide formyltransferase	0.00225177271537	0.0013762973617	-0.00087547535367
+UniRef50_UPI000360F7E6	hypothetical protein	1.26381634915e-05	1.07746639859e-05	-1.8634995056e-06
+UniRef50_W1BDM8	Chaperone protein HscA	0.000164323167059	0.000188851131809	2.452796475e-05
+UniRef50_W0Z408		0.000339695659152	0.00201058619745	0.0016708905383
+UniRef50_A7X763	Imidazole glycerol phosphate synthase subunit HisF	0.00952121310255	0.00132884434372	-0.00819236875883
+UniRef50_D3E067	Nitroreductase family protein	0.00677472677209	0.000985488178211	-0.00578923859388
+UniRef50_R0F7I9		0.000165179960443	4.64698622668e-05	-0.000118710098176
+UniRef50_UPI000465952B	membane protease HflC	1.57205836514e-05	1.5985058735e-05	2.644750836e-07
+UniRef50_C5N6C9	Universal stress family protein	0.00908686348549	0.00332179350531	-0.00576506998018
+UniRef50_UPI000427AC9A	porin	0.000217635528263	2.32216974661e-05	-0.000194413830797
+UniRef50_V5V9L8	Glycine cleavage T protein	0.000685657105098	0.00763927675394	0.00695361964884
+UniRef50_A0A027RVP4		0.00436581542328	0.000954032941423	-0.00341178248186
+UniRef50_UPI00034A9B47	hypothetical protein	1.52334783284e-05	2.0309632292e-05	5.0761539636e-06
+UniRef50_Q98KP1	Cobyrinic acid A,C diamide synthase	1.22576643302e-05	0.000343154630125	0.000330896965795
+UniRef50_D5ZNQ6	Transposase IS204 family protein 	0.0001909709893	1.19647901543e-05	-0.000179006199146
+UniRef50_A6MVW4	ATP synthase subunit alpha, chloroplastic	4.1065778982e-06	2.21958633047e-05	1.80892854065e-05
+UniRef50_U1GGK9	Cell envelope related transcriptional attenuator	6.61732240486e-06	3.06203938204e-05	2.40030714155e-05
+UniRef50_UPI0002BBA067	hypothetical protein	1.49804369715e-05	0.00261693872819	0.00260195829122
+UniRef50_L8PB26	Putative Linear gramicidin synthetase LgrC	0.00037919427142	0.000402523088356	2.3328816936e-05
+UniRef50_V7H7E4		6.84277782178e-05	2.66717731417e-05	-4.17560050761e-05
+UniRef50_B1VXS1		1.19949661193e-05	4.84109939426e-05	3.64160278233e-05
+UniRef50_Q9ZMV6	UPF0026 protein jhp_0109	0.000124720040369	0.00324524857148	0.00312052853111
+UniRef50_UPI00037A38D7	hypothetical protein	8.6506383219e-05	0.000121794085894	3.5287702675e-05
+UniRef50_P58409		0.00359326384759	0.00178334174832	-0.00180992209927
+UniRef50_D1BK43		0.000243133426411	0.00437035060887	0.00412721718246
+UniRef50_B8EIF0		4.80681564945e-06	6.53496296159e-06	1.72814731214e-06
+UniRef50_C9XTA5	Tat linked quality control protein TatD	0.00441268379763	0.00144278582111	-0.00296989797652
+UniRef50_P38392	Superinfection exclusion protein B	0.00548301099577	0.00255946801891	-0.00292354297686
+UniRef50_B2V3W1	Permease	0.000746371472637	0.000539703075147	-0.00020666839749
+UniRef50_X2M6Z7		7.15590225249e-05	1.93074159483e-05	-5.22516065766e-05
+UniRef50_D3QD71	FemC, factor involved in methicillin resistance Glutamine synthetase repressor	0.0170980775984	0.00304282279934	-0.0140552547991
+UniRef50_Q2KBF3	Tetracycline efflux transporter protein	0.000233310615449	0.00579657557487	0.00556326495942
+UniRef50_Q9WYG0		8.08941454917e-06	9.01169592152e-06	9.2228137235e-07
+UniRef50_Q2FDT8	Probable transglycosylase IsaA	0.0328414448291	0.00115594250238	-0.0316855023267
+UniRef50_UPI00036FC7C5	hypothetical protein	5.6408117369e-06	3.57081443686e-05	3.00673326317e-05
+UniRef50_Q2T0X3	Cholesterol oxidase	0.000914801495341	0.000201697732584	-0.000713103762757
+UniRef50_UPI0003C1A958	PREDICTED	3.89790669515e-05	0.000120858745548	8.18796785965e-05
+UniRef50_V6Q9U1		0.00397280200999	0.0126841599267	0.00871135791671
+UniRef50_A6LU63	Metallophosphoesterase	0.000255917559997	0.0010489383901	0.000793020830103
+UniRef50_Q9L6I1	Histidinol dehydrogenase 	7.05974743672e-06	1.20703889761e-05	5.01064153938e-06
+UniRef50_D2GME6	Uro adherence factor A	0.00329769427568	0.00143742187303	-0.00186027240265
+UniRef50_R0ENU8	KxYKxGKxW signal peptide	2.33582500386e-06	4.87554345321e-06	2.53971844935e-06
+UniRef50_F0RIT9	NHL repeat containing protein	9.516453501e-05	0.0177993019726	0.0177041374376
+UniRef50_C0ZS23		9.95018329976e-06	1.9073865801e-05	9.12368250124e-06
+UniRef50_Q8DSK8		0.00600553873078	0.00152541645479	-0.00448012227599
+UniRef50_P27278	Trifunctional NAD biosynthesis regulator protein NadR	0.0035173203564	0.000432221507771	-0.00308509884863
+UniRef50_UPI0003C16102	PREDICTED	2.78906870337e-05	2.6043153439e-05	-1.8475335947e-06
+UniRef50_P0A2E9	RNA polymerase sigma factor FliA	0.00241848291011	0.00123800534721	-0.0011804775629
+UniRef50_A6T4E6	UPF0246 protein KPN78578_00060	0.00503051663173	0.00468393018195	-0.00034658644978
+UniRef50_Q72J47	Ribose 5 phosphate isomerase A	0.000344530447282	0.0489469828717	0.0486024524244
+UniRef50_UPI0003B500DC	hypothetical protein, partial	0.000155603472713	4.14670566688e-05	-0.000114136416044
+UniRef50_R4MBB3		2.12778856842e-06	1.13723586609e-05	9.24457009248e-06
+UniRef50_Q9ZJ57	Transcription repair coupling factor	8.11257640167e-05	0.00516084735742	0.0050797215934
+UniRef50_R4ZYK3	CAAX amino terminal protease family	0.00490800216882	0.000202966807698	-0.00470503536112
+UniRef50_D7CXC6	Thioesterase superfamily protein	1.20829146056e-05	0.00201604776964	0.00200396485503
+UniRef50_UPI0002D421A9	hypothetical protein	9.90130692353e-05	2.09998907161e-05	-7.80131785192e-05
+UniRef50_UPI0004666DD2	NAD dependent dehydratase	5.32794220664e-06	1.70370488017e-05	1.17091065951e-05
+UniRef50_P76149	Succinate semialdehyde dehydrogenase [NAD+] Sad	0.00335644075898	0.00164821501142	-0.00170822574756
+UniRef50_N0B4C8		0.000129842145169	3.04863580198e-05	-9.93557871492e-05
+UniRef50_P77495	Propionate  CoA ligase	0.000784977629583	0.000726440129384	-5.8537500199e-05
+UniRef50_A1AXZ2	S formylglutathione hydrolase	0.00799509560498	0.00229799387586	-0.00569710172912
+UniRef50_C6STZ5		0.00438895302526	0.00535973898332	0.00097078595806
+UniRef50_A9W4X6	Sulfite reductase [NADPH] hemoprotein beta component	0.0118305531116	0.00312359921694	-0.00870695389466
+UniRef50_Q6SSJ3	Acetolactate synthase, mitochondrial	8.05417734946e-06	1.03221992684e-05	2.26802191894e-06
+UniRef50_K7S2B2	Sirohydrochlorin cobaltochelatase	0.000147647714023	0.00244399968812	0.0022963519741
+UniRef50_X2ME11	Glutathione ABC transporter permease	0.000480482699606	0.000952549918961	0.000472067219355
+UniRef50_UPI000373BE38	hypothetical protein	9.75822269403e-06	1.52240829576e-05	5.46586026357e-06
+UniRef50_L0EAK7	O glycosyl hydrolase	0.000467692782591	0.000454705383499	-1.2987399092e-05
+UniRef50_Q97P97	Ribosomal silencing factor RsfS	0.00969642706325	0.0105902859345	0.00089385887125
+UniRef50_UPI000360CFF1	hypothetical protein	1.7054782912e-05	7.93992166737e-05	6.23444337617e-05
+UniRef50_F5XDU3		1.68610186858e-05	9.56200205152e-05	7.87590018294e-05
+UniRef50_D1BRB3		3.13114066676e-05	1.14386016294e-05	-1.98728050382e-05
+UniRef50_Q2J3W0		0.000115721926882	8.34949584588e-05	-3.22269684232e-05
+UniRef50_Q8XJS1	tRNA pseudouridine synthase B	0.000126249494601	0.000852464311664	0.000726214817063
+UniRef50_B7UQI7	HTH type transcriptional repressor NsrR	0.000716731215833	0.000416917701458	-0.000299813514375
+UniRef50_UPI00016BFAFA	hypothetical protein, partial	1.11489569517e-06	3.19757907757e-06	2.0826833824e-06
+UniRef50_W7WQV3		9.90065263461e-06	4.09142866282e-05	3.10136339936e-05
+UniRef50_UPI000395618F		6.06890657318e-05	9.56749584945e-05	3.49858927627e-05
+UniRef50_N8K6N9		0.000108778229038	2.31996144509e-05	-8.55786145871e-05
+UniRef50_UPI000185D852	hypothetical protein TGME49_026320	9.33756431966e-06	9.28750881292e-06	-5.005550674e-08
+UniRef50_M4ZG31	Drug metabolite transporter superfamily protein	0.00607313242201	0.000809912853241	-0.00526321956877
+UniRef50_UPI00036A115E	hypothetical protein	8.33257015501e-05	4.37909185109e-05	-3.95347830392e-05
+UniRef50_A5UMF7	Predicted metal dependent membrane protease	0.0025047657686	0.00111802674918	-0.00138673901942
+UniRef50_E6YL73		0.0010354972995	0.000376904128365	-0.000658593171135
+UniRef50_R6M763		0.000775656141478	0.00516070661491	0.00438505047343
+UniRef50_M1PJ51		1.21765464228e-05	3.11879104652e-05	1.90113640424e-05
+UniRef50_K2JGL6		0.000145221832666	4.50277002653e-05	-0.000100194132401
+UniRef50_UPI000262543A	preprotein translocase subunit SecB	5.04877266856e-05	9.82587918199e-05	4.77710651343e-05
+UniRef50_H5YAU3	ABC type spermidine putrescine transport system, permease component II	0.0152167393029	0.00503649065513	-0.0101802486478
+UniRef50_UPI00037F1EED	hypothetical protein	8.89378651807e-05	3.51108947596e-05	-5.38269704211e-05
+UniRef50_A0LA39	Indole 3 glycerol phosphate synthase	2.06278774831e-05	1.29145794963e-05	-7.7132979868e-06
+UniRef50_P19319	Respiratory nitrate reductase 2 alpha chain	2.86593473857e-06	2.99052009327e-05	2.70392661941e-05
+UniRef50_W6RYK9	Alpha dextran endo 1,6 alpha glucosidase	0.000116598614574	0.00174833938943	0.00163174077486
+UniRef50_K2M7A1		0.000206281715712	9.03429730277e-05	-0.000115938742684
+UniRef50_F3P2W5		5.82841619358e-05	3.46101525294e-05	-2.36740094064e-05
+UniRef50_B0VAL5	Ribosomal RNA large subunit methyltransferase K L	0.000193357553506	0.00580169637857	0.00560833882506
+UniRef50_P0ACQ8	HTH type transcriptional regulator TdcA	0.00291857139325	0.000858157022104	-0.00206041437115
+UniRef50_R9SMW6		0.00510560160835	0.000619540423194	-0.00448606118516
+UniRef50_UPI00037472A8	hypothetical protein	0.0108452909333	0.00323656694733	-0.00760872398597
+UniRef50_UPI00036CDC12	hypothetical protein	4.89548727809e-06	3.86852179044e-05	3.37897306263e-05
+UniRef50_Q6GK63	2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	0.0312873402737	0.00893735192555	-0.0223499883481
+UniRef50_UPI00046235B0	hypothetical protein TRAVEDRAFT_69016	0.000480786716452	0.000167081587097	-0.000313705129355
+UniRef50_UPI0001632402	hypothetical protein	8.64528789287e-05	0.000844257606478	0.000757804727549
+UniRef50_UPI0003B5E791	excinuclease ABC subunit B	3.15399214197e-05	0.0038764317956	0.00384489187418
+UniRef50_W7D397	PadR family transcriptional regulator	0.000118540365383	3.63671798199e-05	-8.21731855631e-05
+UniRef50_Q9RRD7	Aspartyl glutamyl tRNA amidotransferase subunit B	0.000175995025254	0.0502267896033	0.050050794578
+UniRef50_D2J8F1		0.00558292746484	6.98624072391e-05	-0.0055130650576
+UniRef50_UPI000474D7ED	hypothetical protein, partial	6.5713985504e-05	5.94009960422e-05	-6.3129894618e-06
+UniRef50_UPI0003694619	hypothetical protein	7.62576349525e-06	2.90555804597e-05	2.14298169644e-05
+UniRef50_Q7VUN5	Prolipoprotein diacylglyceryl transferase	6.51701276842e-05	3.24150931095e-05	-3.27550345747e-05
+UniRef50_P11908	Ribose phosphate pyrophosphokinase 2	1.98175225429e-05	6.52788241283e-05	4.54613015854e-05
+UniRef50_E3NW74		4.41376074096e-05	3.41831142436e-05	-9.954493166e-06
+UniRef50_F3PMN2		5.99016490107e-05	0.000248949448219	0.000189047799208
+UniRef50_P67176	Probable transcriptional regulatory protein YebC	0.00374263658625	0.000492736667377	-0.00324989991887
+UniRef50_UPI0003C1377F	PREDICTED	1.51730767463e-05	7.8561869427e-06	-7.3168898036e-06
+UniRef50_UPI00035E1742	hypothetical protein	3.88606070013e-06	7.75539927303e-06	3.8693385729e-06
+UniRef50_I0C568	Cysteine desulfurase	0.017650146737	0.00488476506883	-0.0127653816682
+UniRef50_Q9CIS4	N acetyldiaminopimelate deacetylase	0.00795316598662	0.00741225728289	-0.00054090870373
+UniRef50_H9JHD1		1.20980512765e-05	5.41582488401e-05	4.20601975636e-05
+UniRef50_A3M3L5	Dichlorophenol hydroxylase	0.000255813375982	0.00779631108392	0.00754049770794
+UniRef50_A2SL87	ABC transporter permease protein	0.0154917996742	0.00325811325903	-0.0122336864152
+UniRef50_A3PG71	Multi sensor hybrid histidine kinase	0.00100641208363	7.87861374395e-05	-0.000927625946191
+UniRef50_R4K8M4	ABC type nitrate sulfonate bicarbonate transport system, ATPase component	0.00109096454872	0.000874808301326	-0.000216156247394
+UniRef50_K7ECB4		7.34617983995e-05	0.000117351804686	4.38900062865e-05
+UniRef50_P15043	ATP dependent DNA helicase RecQ	0.00209738780536	0.000523819557883	-0.00157356824748
+UniRef50_P52331	RNA polymerase sigma factor SigA	0.0238943328062	0.012142180399	-0.0117521524072
+UniRef50_Q31GL1		5.96917282558e-05	2.20291924508e-05	-3.7662535805e-05
+UniRef50_X2HGW8	Alkaline protease secretion protein AprE	0.000176079988287	0.00196390953199	0.0017878295437
+UniRef50_O84834	Ribonucleoside diphosphate reductase subunit alpha	2.8791927524e-06	5.21165629071e-05	4.92373701547e-05
+UniRef50_F8KIL6	NADH oxidase family protein	0.00992899441259	0.0032548485395	-0.00667414587309
+UniRef50_Q67N11	Pseudouridine 5 phosphate glycosidase	0.0182214047341	0.00246025530664	-0.0157611494275
+UniRef50_Q28R93	Toxic anion resistance	0.00418208358637	0.000863714470269	-0.0033183691161
+UniRef50_P37683	Inner membrane protein YiaV	0.00558544802753	0.00131810113006	-0.00426734689747
+UniRef50_B7ULC6	Xylose isomerase	0.00577521267828	0.0021378458552	-0.00363736682308
+UniRef50_W6M578		0.000373503326426	0.000195989782119	-0.000177513544307
+UniRef50_UPI00037B97F0	hypothetical protein	1.19153769054e-05	2.64256493778e-05	1.45102724724e-05
+UniRef50_X6MYI2		5.91433015345e-06	0.000176947537862	0.000171033207709
+UniRef50_UPI00042541FF	hypothetical protein	1.96438993307e-05	1.9530376192e-05	-1.135231387e-07
+UniRef50_UPI0003B727B1	50S ribosomal protein L24	3.39707220721e-05	1.68139900757e-05	-1.71567319964e-05
+UniRef50_UPI00046D149F	hypothetical protein	1.21720508364e-05	1.30294836648e-05	8.574328284e-07
+UniRef50_Q7W6C6	Non canonical purine NTP pyrophosphatase	0.00010555702073	3.39980568062e-05	-7.15589639238e-05
+UniRef50_W5WYX4	Alkaline phosphatase	0.000348207865387	0.000383922051208	3.5714185821e-05
+UniRef50_P02983	Tetracycline resistance protein	0.573449640169	0.199788693154	-0.373660947015
+UniRef50_U3T3X0	O methyltransferase	0.000382587150866	0.00387493521807	0.0034923480672
+UniRef50_UPI00046FEA8D	GntR family transcriptional regulator	6.30660519476e-05	2.27910646503e-05	-4.02749872973e-05
+UniRef50_Q97MM1	N acetylmuramic acid 6 phosphate etherase	7.38837239037e-06	9.57256916304e-06	2.18419677267e-06
+UniRef50_L7WQT3	Prephenate dehydratase	0.0193261519228	0.00827844693206	-0.0110477049907
+UniRef50_UPI00047E31BE	methionine aminopeptidase	2.0896686494e-05	1.59942222588e-05	-4.9024642352e-06
+UniRef50_UPI0003B46743	hypothetical protein	0.000146105377266	0.00119396794301	0.00104786256574
+UniRef50_P72479	Oligopeptide transport ATP binding protein OppF	0.0068082495341	0.00243256978593	-0.00437567974817
+UniRef50_A4WNF9	Metallophosphoesterase	0.00293243478848	0.00127031100512	-0.00166212378336
+UniRef50_Q9AHJ5	Interrupted beta D glucuronidase	0.00757471850256	0.000716382241939	-0.00685833626062
+UniRef50_E9B5T6	Proteophosphoglycan ppg1	2.90697901286e-06	7.08370068878e-06	4.17672167592e-06
+UniRef50_Q02431	Chlorophyllide reductase 35.5 kDa chain	0.0113805442473	0.000981479729588	-0.0103990645177
+UniRef50_A0A034HVJ8		0.00407005541126	0.000416917701458	-0.0036531377098
+UniRef50_N0CE78	Snf2 family protein	7.44673737484e-05	0.00218026279815	0.0021057954244
+UniRef50_UPI000473A49C	hypothetical protein, partial	3.28072894097e-05	0.000448726946494	0.000415919657084
+UniRef50_UPI000475C363	GntR family transcriptional regulator	2.0549375882e-05	2.30055457136e-05	2.4561698316e-06
+UniRef50_UPI000255B851	thiamine biosynthesis adenylyltransferase	6.82402891564e-06	1.23479565094e-05	5.52392759376e-06
+UniRef50_UPI0003C17DF0	PREDICTED	1.38774497287e-05	9.96542419774e-06	-3.91202553096e-06
+UniRef50_Y9YFG1	Serine aspartate repeat containing protein D	0.00271732010744	0.000301856938874	-0.00241546316857
+UniRef50_UPI0002556FCA	major facilitator family transporter, partial	1.42961203675e-05	5.32509012927e-05	3.89547809252e-05
+UniRef50_I1ALS6	Flp pilus assembly protein TadG	0.000686443205609	0.000136404944659	-0.00055003826095
+UniRef50_UPI00035E72D8	hypothetical protein	5.76164371093e-06	2.77658124031e-05	2.20041686922e-05
+UniRef50_UPI0004243274	hypothetical protein	2.54895606645e-05	1.67707422968e-05	-8.7188183677e-06
+UniRef50_UPI0003942A9F		7.43765265774e-06	3.24246547439e-06	-4.19518718335e-06
+UniRef50_A5UMV2	Predicted polysaccharide polyol phosphate ABC transporter, permease component	0.00241752645776	0.000564082114019	-0.00185344434374
+UniRef50_A3DIP6	UDP N acetylmuramate  L alanine ligase	0.000182885775899	0.000770614094769	0.00058772831887
+UniRef50_UPI0000164CF6	hypothetical protein DR_1761	0.000366361200249	0.367022323052	0.366655961852
+UniRef50_Q13SY1	Probable chemoreceptor glutamine deamidase CheD	0.000129908418105	2.30232681357e-05	-0.000106885149969
+UniRef50_F0L781	Permeases of the major facilitator superfamily	0.000180337174001	4.96584957997e-05	-0.000130678678201
+UniRef50_G0DRF3		0.000120731126496	0.00722314475428	0.00710241362778
+UniRef50_A1WQY3	Alanine racemase	0.000852684738129	3.67152253227e-05	-0.000815969512806
+UniRef50_A5WHX2	Superfamily I DNA and RNA helicase like protein	0.000183064294941	0.00852290629596	0.00833984200102
+UniRef50_R7PS51		0.0038721516281	0.000674033673906	-0.00319811795419
+UniRef50_J9U7Y2		0.0122401822874	0.00397473189481	-0.00826545039259
+UniRef50_J7QB56		0.000714598300831	0.000611000079721	-0.00010359822111
+UniRef50_Q8ZMH3	Serine threonine protein phosphatase 2	0.0025254015282	0.00217160279463	-0.00035379873357
+UniRef50_P67760	UPF0302 protein SA1295	0.0187015404039	0.00275045431704	-0.0159510860869
+UniRef50_A3PR59	Flavin reductase domain protein, FMN binding	0.0117203284293	0.00406809538251	-0.00765223304679
+UniRef50_Q66FG9	Glycerol 3 phosphate acyltransferase	0.000106288818658	7.85765069176e-05	-2.77123117404e-05
+UniRef50_A6TWG5	30S ribosomal protein S5	0.0378096039141	0.0134995983289	-0.0243100055852
+UniRef50_P37168	Putative oxidoreductase YceM	0.00140302182391	0.000576335613062	-0.000826686210848
+UniRef50_UPI000255C7E1	uroporphyrin III C tetrapyrrole  methyltransferase	1.68773922273e-05	6.94331487445e-05	5.25557565172e-05
+UniRef50_A0A028XDJ1	Ornithine cyclodeaminase mu crystallin domain protein	0.000226262281297	8.8121208325e-05	-0.000138141072972
+UniRef50_UPI000477AE3E	hypothetical protein	2.54620588548e-05	1.26555052857e-05	-1.28065535691e-05
+UniRef50_UPI0003B3FFE1	zinc binding dehydrogenase	1.37085843461e-05	1.04423237738e-05	-3.2662605723e-06
+UniRef50_UPI0001913AE8	oligopeptide ABC transporter, permease protein OppC, partial	3.80250395831e-05	7.26280782821e-05	3.4603038699e-05
+UniRef50_Q5PMJ4	tRNA specific 2 thiouridylase MnmA	0.00480990039616	0.00274157870841	-0.00206832168775
+UniRef50_Q9Y7M1	Putative 2 hydroxyacyl CoA lyase	1.84997417258e-06	6.58362972527e-06	4.73365555269e-06
+UniRef50_UPI0003B30236	3 oxoacyl ACP synthase	3.69149421803e-06	5.28013571983e-05	4.91098629803e-05
+UniRef50_V6G3R8	ABC transporter, substrate binding protein, family 5 domain protein	0.00138594828447	0.000432170788082	-0.000953777496388
+UniRef50_A9H9A8	ATP synthase subunit beta	0.0444593269575	0.0222112927959	-0.0222480341616
+UniRef50_B8EPL9	UPF0301 protein Msil_1255	2.59320771537e-05	5.10107863836e-05	2.50787092299e-05
+UniRef50_U3T6B1	Iron ABC transporter substrate binding protein	0.000655969071909	0.00718793021978	0.00653196114787
+UniRef50_A4XX95	NADH dehydrogenase (Quinone)	0.000387828070733	0.000282599717884	-0.000105228352849
+UniRef50_B9KX15	Short chain dehydrogenase reductase SDR	0.00647332187081	0.00175159066935	-0.00472173120146
+UniRef50_UPI00047DFFFB	hypothetical protein	6.5665246778e-06	7.87478303564e-06	1.30825835784e-06
+UniRef50_Q72AR4	Lipoprotein signal peptidase	1.11565359832e-05	1.95860291508e-05	8.4294931676e-06
+UniRef50_Q9RZC9		0.000223364490448	0.0292671559215	0.0290437914311
+UniRef50_Q6A8Z5	tRNA dimethylallyltransferase	2.78857484072e-05	0.0076636112687	0.00763572552029
+UniRef50_C0Z6T1	N acetyl gamma glutamyl phosphate reductase	1.90839953744e-05	1.11661445576e-05	-7.9178508168e-06
+UniRef50_Q6G723	Staphylococcal secretory antigen ssaA2	0.00798019925823	0.00184745821938	-0.00613274103885
+UniRef50_Q9RZC7		0.000386043983463	0.0484883359355	0.048102291952
+UniRef50_T0GNN5		0.000707299404308	0.000436215245423	-0.000271084158885
+UniRef50_D3PKE0	PepSY associated TM helix domain protein	0.000208940584237	0.0334656105796	0.0332566699954
+UniRef50_UPI000441E5AE	PREDICTED	1.6772561522e-05	2.42505295588e-05	7.4779680368e-06
+UniRef50_Q9L730	SanE	1.99648333434e-05	1.27435112644e-05	-7.221322079e-06
+UniRef50_UPI00030945F6	cation transporter	3.64740059683e-06	1.39182477174e-05	1.02708471206e-05
+UniRef50_Q3IVJ0	Replication protein C	0.00372978215305	0.000964121750937	-0.00276566040211
+UniRef50_UPI0002556222	ATP dependent DNA helicase Rep	7.68236512601e-06	1.08236932095e-05	3.14132808349e-06
+UniRef50_Q13IW9	ATP synthase subunit alpha 3	0.000451165384017	0.000119480797778	-0.000331684586239
+UniRef50_A3X0R4	Terminase, large subunit, putative	4.14720543927e-06	6.30294093475e-05	5.88822039082e-05
+UniRef50_D6SEC7	DHHA1 domain protein	0.0247525822377	0.00689627481478	-0.0178563074229
+UniRef50_A5PL98	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	3.41815213199e-05	3.9204812533e-05	5.0232912131e-06
+UniRef50_UPI0003C19C73	PREDICTED	0.000197205281455	2.49722981808e-05	-0.000172232983274
+UniRef50_I6WVI5		4.97598354546e-06	2.24101060476e-05	1.74341225021e-05
+UniRef50_P13063	Periplasmic [NiFeSe] hydrogenase small subunit	5.24442222101e-05	1.59699051607e-05	-3.64743170494e-05
+UniRef50_Q9KC26	Biotin synthase	7.14569877676e-06	6.05228430452e-05	5.33771442684e-05
+UniRef50_O87131	Chemotaxis protein methyltransferase 1	0.0016388114327	0.000691043885684	-0.000947767547016
+UniRef50_D2SGL3	Gm3773 predicted gene 3773	0.000121324768436	6.26293008265e-06	-0.000115061838353
+UniRef50_UPI0004662606	glycolate oxidase	4.23784533649e-06	4.21141587262e-05	3.78763133897e-05
+UniRef50_B5Z805		0.000144815596745	0.00715425937683	0.00700944378008
+UniRef50_D2NRN3		3.70575723281e-05	0.00141066330516	0.00137360573283
+UniRef50_A4WT54		0.00465049659479	0.00142054429477	-0.00322995230002
+UniRef50_R0TNR1		0.000622998670332	0.00224396514433	0.001620966474
+UniRef50_Q9JSZ8	UDP N acetylmuramate  L alanine ligase	0.000209900531417	0.00259349446361	0.00238359393219
+UniRef50_D3E0J9	Putative adenylate kinase	0.00335745966688	0.000334952784714	-0.00302250688217
+UniRef50_B4WIG2		8.40574045213e-05	5.58851510447e-05	-2.81722534766e-05
+UniRef50_UPI0004625279	transposase	3.72161937676e-05	7.30425775741e-06	-2.99119360102e-05
+UniRef50_K9WHG2		0.000746002410406	0.000264071577242	-0.000481930833164
+UniRef50_A4XVS8		0.000164841786411	8.28377854697e-05	-8.20040009413e-05
+UniRef50_F8DJ84	CBS domain protein	0.00872700155911	0.00474469116367	-0.00398231039544
+UniRef50_P45694	Transketolase	0.00947111820625	0.00601062620824	-0.00346049199801
+UniRef50_A0A023S1I9	TetR family transcriptional regulator	0.000189374241902	0.00773465104895	0.00754527680705
+UniRef50_UPI0003B3BF67	XRE family transcriptional regulator	0.000187146692914	0.000127589480149	-5.9557212765e-05
+UniRef50_Q2FWV6	Staphylococcal complement inhibitor	0.00516536007076	0.00152458233835	-0.00364077773241
+UniRef50_UPI000467D6E6	TetR family transcriptional regulator	1.16109909575e-05	0.00012939868751	0.000117787696552
+UniRef50_R6HDW3	GTP binding protein TypA BipA	2.2782885732e-05	1.3698761851e-05	-9.084123881e-06
+UniRef50_B9TQ05		0.00013180762642	0.00140187240404	0.00127006477762
+UniRef50_A3KAM8		3.02719387657e-06	1.51836475033e-06	-1.50882912624e-06
+UniRef50_Q8CN73	Nitrate reductase delta chain	0.00713593379273	0.00385581745535	-0.00328011633738
+UniRef50_Q52987	Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase	9.82336510762e-06	0.000327420208308	0.0003175968432
+UniRef50_Q3IXI3	PpkA related protein	0.00262877973882	0.000118047983419	-0.0025107317554
+UniRef50_UPI00036E1A30	hypothetical protein	3.17035993747e-05	1.13123622431e-05	-2.03912371316e-05
+UniRef50_G7U5R3		0.000426746542044	0.00443392384377	0.00400717730173
+UniRef50_W5MN69		0.000231278677658	0.000396655489892	0.000165376812234
+UniRef50_D6SYK4		7.1596117703e-06	1.74672386071e-05	1.03076268368e-05
+UniRef50_UPI00046AEB65	hypothetical protein	2.69320792352e-06	3.48979496326e-05	3.22047417091e-05
+UniRef50_I6TN35	Sorbose PTS system, IIB component	0.0033372978259	0.00284993292385	-0.00048736490205
+UniRef50_O83990	Uridine phosphorylase	0.000643158280444	0.00103059849607	0.000387440215626
+UniRef50_UPI0003B525E9	hypothetical protein	1.18207404621e-05	2.17880159387e-05	9.9672754766e-06
+UniRef50_H2A6W4		0.00669538019649	0.00150643971074	-0.00518894048575
+UniRef50_E6QN76		0.000137122972376	3.96223096322e-06	-0.000133160741413
+UniRef50_F3KCS8	Cysteine synthase	0.00010573523435	1.19851987062e-05	-9.37500356438e-05
+UniRef50_UPI000368CD4B	hypothetical protein	1.88895212442e-05	6.1893098642e-05	4.30035773978e-05
+UniRef50_UPI0004729707	hypothetical protein, partial	0.00135438127587	0.000295354954343	-0.00105902632153
+UniRef50_UPI00035DAFDB	hypothetical protein	0.00379166314568	0.00108124888397	-0.00271041426171
+UniRef50_Q2S8H5	3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.00717237319785	0.000698286483191	-0.00647408671466
+UniRef50_A5B2H7		1.20342200341e-05	1.65082092483e-05	4.4739892142e-06
+UniRef50_UPI000376B264	hypothetical protein	0.000110251964968	7.88259231026e-05	-3.14260418654e-05
+UniRef50_Q5ZWE4	Spermidine putrescine import ATP binding protein PotA	4.96429357371e-05	3.49551241576e-05	-1.46878115795e-05
+UniRef50_UPI00046F3C43	ribonuclease D, partial	8.79070324519e-05	1.3769196604e-05	-7.41378358479e-05
+UniRef50_S3H5L3	PilT protein domain protein	0.00054942620498	0.000119840242305	-0.000429585962675
+UniRef50_E4TMS6	Beta Ig H3 fasciclin	0.0116460778107	0.00401052476565	-0.00763555304505
+UniRef50_C4K3W9	Orotate phosphoribosyltransferase	0.000490241543964	0.00116743227381	0.000677190729846
+UniRef50_UPI00036A0C85	resolvase	3.53176549166e-05	8.23740338362e-05	4.70563789196e-05
+UniRef50_B9KLM6		0.00476381361066	0.000377627333572	-0.00438618627709
+UniRef50_UPI000467F2DE	general secretion pathway protein GspI	2.23911480805e-05	2.63891448843e-05	3.9979968038e-06
+UniRef50_E6SM17	3 deoxy D arabinoheptulosonate 7 phosphate synthase	0.000591334570185	0.00273683368096	0.00214549911077
+UniRef50_UPI000479ECD0	hypothetical protein	0.000124660660219	9.5340641639e-05	-2.932001858e-05
+UniRef50_B9KLM0		0.000292721757663	6.56745823328e-05	-0.00022704717533
+UniRef50_UPI000378DE23	hypothetical protein	8.29278703574e-06	2.38830464876e-05	1.55902594519e-05
+UniRef50_F0JDW5		7.30163678129e-05	1.99437590808e-05	-5.30726087321e-05
+UniRef50_P32668		0.00240001581757	0.00344702288856	0.00104700707099
+UniRef50_UPI0004245E45	GTP binding protein Der	1.26351798838e-05	2.12177951439e-05	8.5826152601e-06
+UniRef50_Q00934	Type 4 fimbriae expression regulatory protein PilR	9.16970013417e-05	0.00038189101397	0.000290194012628
+UniRef50_UPI000347AC3B	preprotein translocase subunit SecG	9.27143145381e-05	4.42900581283e-05	-4.84242564098e-05
+UniRef50_Q2YX72	Spermidine putrescine binding periplasmic protein	0.0169425122362	0.00277199200835	-0.0141705202278
+UniRef50_S1F8T4	Autoinducer 2 binding protein lsrB	0.000596660609908	0.00118126682079	0.000584606210882
+UniRef50_P03018	DNA helicase II	0.00397843345986	0.00147207137797	-0.00250636208189
+UniRef50_Q9ZJF9	DNA polymerase III subunit alpha	0.000103789063173	0.00470812725949	0.00460433819632
+UniRef50_A1A8T2		0.000926231145826	0.00248697266489	0.00156074151906
+UniRef50_A1T8W5	Phosphoribosyl isomerase A	0.000169529635709	0.00481179859287	0.00464226895716
+UniRef50_P9WQ72	Phosphoserine aminotransferase	0.000114274265039	0.00725271195211	0.00713843768707
+UniRef50_Q3HKJ3	Putative Mrr restriction system protein	0.0161897001833	0.00405171681669	-0.0121379833666
+UniRef50_M4WVA9		0.000525495878852	0.00030982973583	-0.000215666143022
+UniRef50_Z5RZH0		5.16780348179e-05	9.38350877983e-05	4.21570529804e-05
+UniRef50_UPI000466DA55	hypothetical protein	0.000171846019479	1.38173192879e-05	-0.000158028700191
+UniRef50_B1KVH1		0.000976366212543	0.000729632970983	-0.00024673324156
+UniRef50_Q46927	tRNA threonylcarbamoyladenosine dehydratase	0.00299619451546	0.000481079758001	-0.00251511475746
+UniRef50_A3PNX1		0.0208635824021	0.0107095207813	-0.0101540616208
+UniRef50_P29925	NADH quinone oxidoreductase chain 13	0.0143929375044	0.00325589838462	-0.0111370391198
+UniRef50_UPI0004786466	ABC transporter permease	0.000237021761595	3.74271854671e-05	-0.000199594576128
+UniRef50_UPI0003DE8355		1.33528961612e-05	1.27413807493e-05	-6.115154119e-07
+UniRef50_H9UVW0	Terminase large subunit	0.00115556935363	0.0053693946399	0.00421382528627
+UniRef50_D4HFJ6	UvrD REP helicase	0.00011025013016	0.00408726912287	0.00397701899271
+UniRef50_P39364	Putative sgc region protein SgcQ	0.00339500214433	0.0011224463398	-0.00227255580453
+UniRef50_P64576		0.000566228983278	0.00062390853211	5.7679548832e-05
+UniRef50_F3Z838	Putative hydrogen peroxide sensitive repressor	4.71575469076e-05	9.37600567007e-05	4.66025097931e-05
+UniRef50_D3E4D6	SsDNA exonuclease RecJ2	0.00165747351221	0.00183720509598	0.00017973158377
+UniRef50_M4Z3L2	Hemolysin type calcium binding region	3.84912071399e-06	3.7852385247e-07	-3.47059686152e-06
+UniRef50_P77489	Putative xanthine dehydrogenase YagR molybdenum binding subunit	0.00198624417188	0.00850137343474	0.00651512926286
+UniRef50_A8LJB4	Leucyl phenylalanyl tRNA  protein transferase	4.30865795692e-05	9.81287621085e-05	5.50421825393e-05
+UniRef50_P38489	Oxygen insensitive NADH nitroreductase	0.00376415550857	0.000919243779006	-0.00284491172956
+UniRef50_UPI00037EE3C9	hypothetical protein	4.99571239014e-06	6.96394220472e-06	1.96822981458e-06
+UniRef50_I6SUP0	Transcriptional regulator	0.0015266794879	0.0023493896728	0.0008227101849
+UniRef50_P45288	Peptide transport system ATP binding protein SapD	0.00172967329798	0.00118498928349	-0.00054468401449
+UniRef50_D9V463	Predicted protein	8.46307662005e-06	0.000152933496934	0.000144470420314
+UniRef50_G7UA10		0.00020367949039	0.0061900896824	0.00598641019201
+UniRef50_P56129	Diaminopimelate decarboxylase	5.24192377978e-06	0.00392790381971	0.00392266189593
+UniRef50_A0A024EEF7		2.98405486193e-05	7.51578552726e-05	4.53173066533e-05
+UniRef50_J2JCG0	Integral membrane protein MviN 	0.000219464277035	0.00021518847278	-4.275804255e-06
+UniRef50_P0AE47	UPF0053 inner membrane protein YtfL	0.00284518162001	0.000141299858951	-0.00270388176106
+UniRef50_A0A016QTH6	Cobyrinic acid a,c diamide synthase	3.08690896043e-05	0.0032333437336	0.003202474644
+UniRef50_M9VHF6		0.000517104094322	0.00578687684106	0.00526977274674
+UniRef50_Q9RYL5	GGDEF family protein	0.000101383882411	0.0712625759797	0.0711611920973
+UniRef50_UPI00036176A4	hypothetical protein	0.000216506263816	0.000116387735334	-0.000100118528482
+UniRef50_W6S1I7		0.000274868438483	0.000885493293889	0.000610624855406
+UniRef50_UPI000393F498	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.34161660567e-05	6.71379977105e-06	-1.67023662857e-05
+UniRef50_A0A023KSK6	5 carboxymethyl 2 hydroxymuconate isomerase	0.0017527603519	0.000298299702217	-0.00145446064968
+UniRef50_Q3IUW4	TraC	0.0277604115257	0.00937690913022	-0.0183835023955
+UniRef50_B9KUI7		0.000517104094322	0.000868578544689	0.000351474450367
+UniRef50_UPI00047C294C	hypoxanthine oxidase, partial	0.000670118467104	0.000140411859739	-0.000529706607365
+UniRef50_UPI0003B6C29E	translation initiation factor IF 2	4.23445283216e-06	1.65413061475e-05	1.23068533153e-05
+UniRef50_P0AFH9	Osmotically inducible protein Y	0.00145033779083	0.00125188603289	-0.00019845175794
+UniRef50_Q5HDU6	Lipid II	0.0206521660372	0.00453141329982	-0.0161207527374
+UniRef50_Q830B5	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00410032668933	0.00824753206725	0.00414720537792
+UniRef50_UPI000470A41D	hypothetical protein, partial	4.20935635529e-05	2.70794615507e-05	-1.50141020022e-05
+UniRef50_P16433	Formate hydrogenlyase subunit 7	0.00635297994815	0.00142067042035	-0.0049323095278
+UniRef50_P30015	Probable ATP dependent helicase lhr	0.000904611299874	0.00026137601689	-0.000643235282984
+UniRef50_F1L3M9	DnaJ subfamily B member 5	2.69457156372e-05	3.12842592944e-05	4.3385436572e-06
+UniRef50_D5VJS0	DEAD DEAH box helicase domain protein	0.00857871031162	0.00120315003348	-0.00737556027814
+UniRef50_UPI000328CE6B	PREDICTED	5.52896489843e-05	0.000654431368487	0.000599141719503
+UniRef50_UPI00016C3888	hypothetical protein, partial	0.000657285768533	6.93136155931e-05	-0.00058797215294
+UniRef50_J7TL98	Transcriptional regulator, AraC family	0.000137768609074	0.00517636769948	0.00503859909041
+UniRef50_J1JW34		3.51555549172e-06	5.74902577001e-06	2.23347027829e-06
+UniRef50_UPI000475758B	transcriptional regulator	6.34518683161e-05	1.51723937043e-05	-4.82794746118e-05
+UniRef50_A3VVX0	Hypothetical BRO family protein	6.7986583443e-05	1.95269826664e-05	-4.84596007766e-05
+UniRef50_Q2S1E4	Adenylate kinase	8.61989643222e-06	1.29537756304e-05	4.33387919818e-06
+UniRef50_F0XZ32		0.000434095718637	0.000537535220615	0.000103439501978
+UniRef50_M5S0G6		4.69017598951e-06	0.000464377522965	0.000459687346975
+UniRef50_P24230	ATP dependent DNA helicase RecG	0.00335057673804	0.000723451422294	-0.00262712531575
+UniRef50_B9KTP4	Extracellular solute binding protein, family 1	0.0134620523319	0.0040452722241	-0.0094167801078
+UniRef50_D9R0R8	Flavodoxin nitric oxide synthase	0.000254154753991	0.00151380784867	0.00125965309468
+UniRef50_P59784	Glucitol sorbitol specific phosphotransferase enzyme IIA component	0.000643940239408	0.000299953013384	-0.000343987226024
+UniRef50_P08499	Homoserine dehydrogenase	4.70307769808e-06	0.0050849799937	0.005080276916
+UniRef50_A1A9I1	Formate transporter	0.00283524516485	0.000639653250757	-0.00219559191409
+UniRef50_I0C2Q1		0.00816467778568	0.00259787033201	-0.00556680745367
+UniRef50_UPI0003B4C7B5	cell division protein FtsZ	1.15218060536e-05	6.32685785094e-06	-5.19494820266e-06
+UniRef50_P0AD18	Inner membrane protein YohC	0.000973600556889	0.000302888928405	-0.000670711628484
+UniRef50_UPI0002EF456C	hypothetical protein	9.24946147709e-05	2.51706882459e-05	-6.7323926525e-05
+UniRef50_E8PF29	CzcI	0.000285974233984	0.0112898425668	0.0110038683328
+UniRef50_P0AA97		0.00363257556419	0.000777182862646	-0.00285539270154
+UniRef50_P0AA96		0.00765778321076	0.000485470022509	-0.00717231318825
+UniRef50_M9LX88		2.7187555071e-06	6.27168658326e-06	3.55293107616e-06
+UniRef50_P0AA92		0.00429645963326	0.00224295988859	-0.00205349974467
+UniRef50_Q74JL8	Cytidylate kinase	0.024990154944	0.0160876781113	-0.0089024768327
+UniRef50_A5UM81	Acetyltransferase, GNAT family	0.00271569874457	0.000683326407362	-0.00203237233721
+UniRef50_E8TMU8	Glycine betaine L proline ABC transporter, ATPase subunit	0.00879839690642	0.00118681896647	-0.00761157793995
+UniRef50_UPI000476F019	molybdenum ABC transporter permease	3.43136925389e-05	1.93900870012e-05	-1.49236055377e-05
+UniRef50_X2LU18	Alanine  tRNA ligase	0.00112081805244	0.000452015365101	-0.000668802687339
+UniRef50_UPI00035EFE25	alkaline phosphatase	5.62959423681e-05	1.26600957653e-05	-4.36358466028e-05
+UniRef50_Q92GH4	Endonuclease III	7.00771523987e-06	2.7912165444e-05	2.09044502041e-05
+UniRef50_P29931	Bifunctional adenosylcobalamin biosynthesis protein CobP	0.000162932803002	0.00014137994893	-2.1552854072e-05
+UniRef50_A9I0E6	Homoserine O acetyltransferase	0.000930397416083	0.00203523609641	0.00110483868033
+UniRef50_UPI0003C1A8F4		3.09302768745e-05	2.83814097557e-05	-2.5488671188e-06
+UniRef50_P0AFA3	Nitrate nitrite sensor protein NarX	0.00315741353269	0.000830352093904	-0.00232706143879
+UniRef50_A0K8T5	Transcriptional regulator, LysR family	0.000527955305017	0.000200214715383	-0.000327740589634
+UniRef50_A5N540	Predicted transport protein, ATPase and permease component	0.000591932455978	0.000597879828799	5.947372821e-06
+UniRef50_E4P0V7	SerB Phosphoserine phosphatase	0.00417245417395	0.00534621407545	0.0011737599015
+UniRef50_UPI000372888C	hypothetical protein	0.0003553990243	0.000129825487262	-0.000225573537038
+UniRef50_C6SSA3		0.00256522953562	0.00328672121577	0.00072149168015
+UniRef50_V5VG42		0.000152456503581	0.00543118984223	0.00527873333865
+UniRef50_UPI00037ACEC3	hypothetical protein	0.000209952483934	9.63181437841e-05	-0.00011363434015
+UniRef50_C3KCK1		0.00181427059854	0.00111440266111	-0.00069986793743
+UniRef50_B4V1W5	ATP GTP binding protein	0.000113251599211	0.000308999237138	0.000195747637927
+UniRef50_F8DGR4	LytTr DNA binding domain protein	0.00292743394964	0.00209681547148	-0.00083061847816
+UniRef50_Q2NEM0	DNA primase DnaG	0.00376127202245	0.000913598474871	-0.00284767354758
+UniRef50_P31129	Diguanylate cyclase YdeH	0.00038105261841	0.000576321497731	0.000195268879321
+UniRef50_A0A014MJV1	Crp Fnr family transcriptional regulator 	0.000700364262885	0.000670372827031	-2.9991435854e-05
+UniRef50_V6V4N6		0.000259468118757	0.000205081045272	-5.4387073485e-05
+UniRef50_E5U2A7		0.000281168445056	3.46171740739e-05	-0.000246551270982
+UniRef50_A6LR99	RNA directed DNA polymerase	0.00056739479511	0.000738061676362	0.000170666881252
+UniRef50_Q8PFF8	tRNA dihydrouridine synthase A	0.00441417746843	0.00108775174182	-0.00332642572661
+UniRef50_Q71ZA3	Formamidopyrimidine DNA glycosylase	9.6156528043e-06	0.00152251484292	0.00151289919012
+UniRef50_UPI000373BE1A	hypothetical protein	1.48296141811e-05	0.000301587793325	0.000286758179144
+UniRef50_UPI0003697F83	GntR family transcriptional regulator	3.15122030162e-05	5.82111843685e-05	2.66989813523e-05
+UniRef50_Q2FUU3	Imidazole glycerol phosphate synthase subunit hisF	0.0235879424055	0.000963990284409	-0.0226239521211
+UniRef50_A5UJC4	Mg dependent DNase, TatD	0.000835422876638	0.000959088594497	0.000123665717859
+UniRef50_A0YFJ4		1.47573268184e-05	2.78411406661e-05	1.30838138477e-05
+UniRef50_J9GKH0		3.23340125988e-05	0.000899440004669	0.00086710599207
+UniRef50_A1WXH5	Isopentenyl diphosphate Delta isomerase	5.21703982337e-05	1.55470069552e-05	-3.66233912785e-05
+UniRef50_UPI000347F8B1	hypothetical protein	0.00026681693268	0.000276643283554	9.826350874e-06
+UniRef50_UPI000370761B	hypothetical protein	0.000291989238949	7.35350453669e-05	-0.000218454193582
+UniRef50_W4LMW8		7.13522568092e-06	1.61363960427e-05	9.00117036178e-06
+UniRef50_UPI0004786463	hypothetical protein	1.87009017859e-05	0.00021632630259	0.000197625400804
+UniRef50_UPI00042CD0F4		3.15797343158e-05	5.7717939686e-05	2.61382053702e-05
+UniRef50_A6LZW0	Sucrose 6 phosphate hydrolase	0.000176940514229	0.00152285643221	0.00134591591798
+UniRef50_UPI0001BF7CE9	hypothetical protein SMAC_10228, partial	0.000430879983092	0.00043856158219	7.681599098e-06
+UniRef50_A0A038G2P2		0.000354616383698	0.000176779365854	-0.000177837017844
+UniRef50_UPI00037E17BF	hypothetical protein	5.94720583856e-06	2.87808556213e-05	2.28336497827e-05
+UniRef50_B5XU27	Urease subunit alpha	6.65189799997e-06	2.85320095808e-05	2.18801115808e-05
+UniRef50_P16692	Phosphoribosyl 1,2 cyclic phosphodiesterase	0.00555114873329	0.000703135012379	-0.00484801372091
+UniRef50_E0WIK7	CagY protein	3.98194924671e-05	0.00225664517523	0.00221682568276
+UniRef50_B1X1Y0		1.89607543679e-05	0.000728451871176	0.000709491116808
+UniRef50_A0A009UCL1	Phenylalanine  tRNA ligase beta subunit	0.00033756129987	0.00887585344474	0.00853829214487
+UniRef50_UPI0004708F1B	hypothetical protein, partial	0.000233267980536	7.76381852963e-05	-0.00015562979524
+UniRef50_F0YFT4	Expressed protein 	0.000214744203046	0.000388874357509	0.000174130154463
+UniRef50_D9VSA1	Predicted protein	1.82460999737e-05	1.74833498934e-05	-7.627500803e-07
+UniRef50_UPI000471C706	UDP pyrophosphate synthase	6.77985808345e-06	1.33718933909e-05	6.59203530745e-06
+UniRef50_Q5F8C3	Fructose 1,6 bisphosphatase class 1	0.00168556143408	0.0143284658499	0.0126429044158
+UniRef50_UPI00037A84AA	hypothetical protein	6.11579618101e-06	1.62399270392e-05	1.01241308582e-05
+UniRef50_UPI0004193DB1	chemotaxis protein CheY	0.000158701271107	6.16029292302e-05	-9.70983418768e-05
+UniRef50_P77536		0.00322561483687	0.000511726875567	-0.0027138879613
+UniRef50_A6M0P7	Xanthine uracil vitamin C permease	0.000505536038142	0.000755916704798	0.000250380666656
+UniRef50_Q8ZM06	2,5 diketo D gluconic acid reductase A	2.86797981497e-05	2.28514282236e-05	-5.8283699261e-06
+UniRef50_I4Y2U3	DJ 1 PfpI family protein	0.000200435038326	0.00404279054257	0.00384235550424
+UniRef50_I2DEY3	Flagellar hook associated protein FlgL	0.000154571438899	0.00345060467491	0.00329603323601
+UniRef50_V8RB85	ATP dependent DNA helicase DinG	0.00099338201923	0.000285078622058	-0.000708303397172
+UniRef50_UPI0003B331D4	glycosyl transferase	5.01490861379e-05	9.23942438424e-06	-4.09096617537e-05
+UniRef50_D3E1W2	Lactaldehyde dehydrogenase CofA	0.00427353391694	0.00094303020948	-0.00333050370746
+UniRef50_O27126	DNA directed RNA polymerase subunit A	0.0028679800619	0.00191570535193	-0.00095227470997
+UniRef50_B4EEY8	ATP synthase gamma chain	0.000337892691407	0.00151709817266	0.00117920548125
+UniRef50_UPI00037BC6DA	hypothetical protein, partial	0.000482460297262	4.09637911995e-05	-0.000441496506062
+UniRef50_UPI00046F61F0	hypothetical protein	2.47944358703e-05	2.92248318735e-05	4.4303960032e-06
+UniRef50_K9XMG5	Amidohydrolase	0.000113245796655	0.00203689237047	0.00192364657381
+UniRef50_B2JFL4		1.81603730981e-05	0.00124291479716	0.00122475442406
+UniRef50_H8FVE2		0.00016455396676	9.06725379656e-05	-7.38814287944e-05
+UniRef50_A9MKD9		0.0001176895491	0.00340750044457	0.00328981089547
+UniRef50_UPI0002FBDCEC	hypothetical protein	1.18344793515e-05	9.9936240165e-05	8.81017608135e-05
+UniRef50_P0AAS3	Inner membrane protein YbbJ	0.00401458533509	0.00209715036358	-0.00191743497151
+UniRef50_U6L2Z7		1.06228311814e-05	3.5263682598e-06	-7.0964629216e-06
+UniRef50_UPI00034D6EDA	hypothetical protein	2.57158685051e-05	1.29982240489e-05	-1.27176444562e-05
+UniRef50_A9KF61	Thymidylate synthase	2.30220265864e-05	0.000427417888971	0.000404395862385
+UniRef50_Q7TYA6	Aspartate  tRNA ligase	0.0002118964789	0.00876516605444	0.00855326957554
+UniRef50_M2E542	Transposase	0.00154719695554	0.000417900997911	-0.00112929595763
+UniRef50_C5A8E0	HlyD family secretion protein	0.000546547263645	0.000206997690564	-0.000339549573081
+UniRef50_UPI000367DB79	hypothetical protein	0.000406130547828	5.28102564255e-05	-0.000353320291403
+UniRef50_UPI000374E007	hypothetical protein	4.11538164794e-05	0.000122487540065	8.13337235856e-05
+UniRef50_W0RJM9	Beta lactamase domain protein	3.72059952023e-06	0.000102671691006	9.89510914858e-05
+UniRef50_UPI0003B6EABF	sodium	0.000863715532786	0.000603938283687	-0.000259777249099
+UniRef50_A5V5W9	DGPFAETKE family protein	8.04809849176e-05	5.17448613311e-05	-2.87361235865e-05
+UniRef50_D8S962		1.54829508233e-05	3.91208012679e-06	-1.15708706965e-05
+UniRef50_D0KZ58		0.000166381021286	7.48150405963e-05	-9.15659806897e-05
+UniRef50_A3UE08	Chemotactic signal response protein CheL	4.29843346164e-05	2.13232606832e-05	-2.16610739332e-05
+UniRef50_B3PH50	Probable protein kinase UbiB	0.000284945965412	0.00288945121091	0.0026045052455
+UniRef50_Q8FJC0		0.00360664518398	0.00132190279688	-0.0022847423871
+UniRef50_O08399	DNA gyrase subunit B	1.78035763387e-05	2.36347690143e-05	5.8311926756e-06
+UniRef50_Q1GKH2	Two component transcriptional regulator, winged helix family	0.00163990936494	0.000280808277526	-0.00135910108741
+UniRef50_UPI00036B452D	hypothetical protein	5.23966803562e-05	4.00043543745e-05	-1.23923259817e-05
+UniRef50_Q49VN6		0.00311269382701	0.000630569477283	-0.00248212434973
+UniRef50_B2T8C3	Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein	0.000654993953678	0.000602145066982	-5.2848886696e-05
+UniRef50_D8JMP7		0.000381428188728	0.00668671283619	0.00630528464746
+UniRef50_Q2KUE4	Adenine phosphoribosyltransferase	3.51504566142e-05	4.04812010417e-05	5.3307444275e-06
+UniRef50_Q79BD2		0.000254028799716	0.000282118972221	2.8090172505e-05
+UniRef50_J7M139	tRNA dihydrouridine synthase	0.00621367007383	0.00871038446305	0.00249671438922
+UniRef50_Q49VN9		4.42400744827e-05	8.03943406679e-05	3.61542661852e-05
+UniRef50_UPI00045E99AE	hypothetical protein	8.74677100605e-05	3.07146160859e-05	-5.67530939746e-05
+UniRef50_Q6AEL0	Non canonical purine NTP pyrophosphatase	1.05122938618e-05	3.51712355109e-05	2.46589416491e-05
+UniRef50_S2XCJ5		1.81611189462e-05	1.38158704406e-05	-4.3452485056e-06
+UniRef50_A6TCB0	Uracil phosphoribosyltransferase	0.00149062647365	0.000956587277784	-0.000534039195866
+UniRef50_UPI000370FC7C	hypothetical protein	5.17754904813e-06	3.24659021006e-06	-1.93095883807e-06
+UniRef50_C6SR38		0.00634342651441	0.0017641878581	-0.00457923865631
+UniRef50_B9KLG8	PTS system, fructose subfamily, IIC subunit	0.00016640096454	0.000458588926713	0.000292187962173
+UniRef50_Q2P7B5	Acyl carrier protein	3.56444229336e-05	0.000369144372112	0.000333499949178
+UniRef50_A6M0D3	Methyl accepting chemotaxis sensory transducer	0.000133703404078	0.000682229754441	0.000548526350363
+UniRef50_K6GS41	Winged helix turn helix	2.40375247472e-05	0.00248611384827	0.00246207632352
+UniRef50_Q893F0	Transcriptional regulatory protein	0.000168270128756	0.00215370168918	0.00198543156042
+UniRef50_A9A5Y7	Inosine 5 monophosphate dehydrogenase	3.19369639347e-05	1.83456370965e-05	-1.35913268382e-05
+UniRef50_B9Y1T7		4.29612278649e-05	0.0041227701572	0.00407980892934
+UniRef50_Q8CUE7	Mobilization protein	0.0987639562808	0.0188168783081	-0.0799470779727
+UniRef50_Q5WIL7	Phosphonates import ATP binding protein PhnC	0.0235221402945	0.00418770186016	-0.0193344384343
+UniRef50_D8JEB9	Group A colicins tolerance protein	9.58086266163e-05	0.00562620018955	0.00553039156293
+UniRef50_P31549	Thiamine transport system permease protein ThiP	0.00137996738335	0.000577177384265	-0.000802789999085
+UniRef50_A9M106	Soluble lytic murein transglycosylase, putative	6.5535761953e-05	0.00213845859126	0.00207292282931
+UniRef50_F5XRT1	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000261020783112	0.00673121512812	0.00647019434501
+UniRef50_UPI0004416A22	hypothetical protein PUNSTDRAFT_135060	4.57150299449e-05	3.59923096788e-05	-9.7227202661e-06
+UniRef50_B9DLR4	Putative 3 methyladenine DNA glycosylase	0.0138339191912	0.00449136237476	-0.00934255681644
+UniRef50_F0Y296		0.000231220551491	0.000286783945567	5.5563394076e-05
+UniRef50_F2F9R8		9.58202634487e-06	0.00113313806009	0.00112355603375
+UniRef50_Q8DUW3	Shikimate dehydrogenase	0.00601597034097	0.00190597270867	-0.0041099976323
+UniRef50_T2H9Z7		0.000487078695291	1.63349573798e-05	-0.000470743737911
+UniRef50_UPI000380D55F	hypothetical protein	2.23292768737e-06	5.9270877984e-06	3.69416011103e-06
+UniRef50_Q14GX0	Chaperone protein DnaJ	0.000300102990212	0.0119400894871	0.0116399864969
+UniRef50_UPI0003748B7D	hypothetical protein	6.54290175183e-05	0.000152183888198	8.67548706797e-05
+UniRef50_Q321Q6		0.00178658809424	0.00123048627164	-0.0005561018226
+UniRef50_K6QCW0		1.22405574203e-06	1.53775289329e-05	1.41534731909e-05
+UniRef50_U5MWF2		0.000142268588759	0.000952055870118	0.000809787281359
+UniRef50_UPI00037BD3FB	hypothetical protein	5.25160465333e-06	0.00033190746488	0.000326655860227
+UniRef50_UPI00046FDA02	hypothetical protein	2.928915761e-05	5.16439819125e-05	2.23548243025e-05
+UniRef50_J3N3W4		3.91062260815e-05	2.39646303557e-05	-1.51415957258e-05
+UniRef50_UPI0003B5133D	ATP dependent DNA helicase	3.30862244406e-06	2.02432010591e-06	-1.28430233815e-06
+UniRef50_UPI00041A4387	DNA polymerase I	1.57536321722e-06	6.15412892863e-05	5.99659260691e-05
+UniRef50_UPI0002378CB3	X Pro dipeptidase	3.22057043186e-05	0.000147716852781	0.000115511148462
+UniRef50_A6M378	Thymidylate synthase	0.000147647714023	0.000645371747058	0.000497724033035
+UniRef50_I1EHP5		7.89662067181e-05	3.70886171851e-05	-4.1877589533e-05
+UniRef50_W4UBB6	Succinate dehydrogenase flavoprotein subunit	0.00017995460448	0.000112280805381	-6.7673799099e-05
+UniRef50_D6SC84		4.8361627099e-05	5.43655856903e-05	6.0039585913e-06
+UniRef50_UPI000405366E	FAD dependent oxidoreductase	2.96448090241e-06	2.3203813872e-06	-6.4409951521e-07
+UniRef50_B0KAL7	4 hydroxy tetrahydrodipicolinate synthase	5.97784568924e-06	1.8036932173e-05	1.20590864838e-05
+UniRef50_K0LQD7	Hydrolase	0.0122914495443	0.00490998691538	-0.00738146262892
+UniRef50_G7M6G8	Heavy metal transport detoxification protein	0.000514885202036	0.000896094834824	0.000381209632788
+UniRef50_UPI00046934BB	peptidase C39, partial	6.11281053486e-06	6.79207316255e-06	6.7926262769e-07
+UniRef50_Q3IV33	Putative outer membrane protein	0.0170931104728	0.00106694591196	-0.0160261645608
+UniRef50_Q9RY14		0.000199411718742	0.0640754425057	0.063876030787
+UniRef50_F5ZHL1	Sulfatase	0.00530889712404	0.00170459691558	-0.00360430020846
+UniRef50_Q9RY17		0.000369978654976	0.0236431454019	0.0232731667469
+UniRef50_Q9RY11		0.000137542217499	0.0553038078123	0.0551662655948
+UniRef50_Q9RY12		0.000355002497348	0.061963462388	0.0616084598907
+UniRef50_UPI0003B667B4	ABC transporter ATP binding protein, partial	2.30512268792e-05	1.2825181176e-05	-1.02260457032e-05
+UniRef50_UPI0004716B86	hypothetical protein	3.56721232518e-05	3.21787942666e-05	-3.4933289852e-06
+UniRef50_UPI0004171A57	histidinol phosphate aminotransferase	2.79771440503e-05	4.51678160048e-05	1.71906719545e-05
+UniRef50_H9UQE9	Putative inner membrane protein	0.000102810975195	0.000658047361923	0.000555236386728
+UniRef50_D4L1E1	ABC type Fe3+ siderophore transport system, permease component	0.000123765897988	0.000634942285827	0.000511176387839
+UniRef50_H7BW27		0.000162147576229	2.24367302482e-05	-0.000139710845981
+UniRef50_UPI000363A648	hypothetical protein	0.00027915766877	0.000177803270398	-0.000101354398372
+UniRef50_K3QZQ8		5.28790071369e-05	7.2492932705e-05	1.96139255681e-05
+UniRef50_P28912	H repeat associated protein YhhI	0.0113327221472	0.00375876133986	-0.00757396080734
+UniRef50_UPI00036D582C	hypothetical protein	1.21235111286e-05	9.65051508965e-06	-2.47299603895e-06
+UniRef50_A6LR25	Binding protein dependent transport systems inner membrane component	0.000146881707723	0.000296304386488	0.000149422678765
+UniRef50_U1RDC8		6.27711886123e-06	3.45241724351e-05	2.82470535739e-05
+UniRef50_A3DE29	Phospho N acetylmuramoyl pentapeptide transferase	0.000126067679064	0.00131138332516	0.0011853156461
+UniRef50_A5UJY3	Polyferredoxin, iron sulfur binding	0.00265909277526	0.000235625030732	-0.00242346774453
+UniRef50_A0A011MBA1	DNA repair protein RecN	2.96742333397e-06	1.24193068563e-05	9.45188352233e-06
+UniRef50_Q9ZK62	Signal recognition particle protein	8.55977298968e-05	0.00446159414824	0.00437599641834
+UniRef50_L0M8C5		2.44868198239e-06	1.26535245847e-05	1.02048426023e-05
+UniRef50_A3MYR6	Shikimate kinase	4.45026430385e-05	2.07890259772e-05	-2.37136170613e-05
+UniRef50_O06005	Amino acid permease AapA	0.00228669174344	0.0440274873293	0.0417407955859
+UniRef50_B5YFV7	DNA directed RNA polymerase subunit beta	5.50881958214e-06	2.00081365218e-06	-3.50800592996e-06
+UniRef50_UPI0003632FFE	hypothetical protein	6.5704492222e-06	2.26755003781e-05	1.61050511559e-05
+UniRef50_D7AA03	Binding protein dependent transport systems inner membrane component	0.00319346349473	0.000226296325824	-0.00296716716891
+UniRef50_A8HWS0		0.000225588136781	4.24574040983e-05	-0.000183130732683
+UniRef50_I4Z4F5	Lipoprotein	1.23756171431e-05	9.93211142797e-06	-2.44350571513e-06
+UniRef50_Q06951	Phosphomannomutase	0.000626595358918	1.47140849762e-05	-0.000611881273942
+UniRef50_E6MZK3	Binding  dependent transport system inner membrane component family protein	0.000102484883855	0.0017916050868	0.00168912020295
+UniRef50_G8LF66	Nitrate nitrite response regulator protein narL	0.00154843126171	0.00125720710985	-0.00029122415186
+UniRef50_A5UJK6		0.000306184394528	0.000985600759453	0.000679416364925
+UniRef50_A5UJK7		0.00654557828834	0.00134234865999	-0.00520322962835
+UniRef50_R6G3H3	FAD binding domain protein	0.00105821437006	0.00215985290146	0.0011016385314
+UniRef50_UPI00041B7937	hypothetical protein	2.72306940301e-05	3.84786692664e-05	1.12479752363e-05
+UniRef50_Q9RR63	Tyrosine  tRNA ligase	0.000294370041344	0.0495082877112	0.0492139176699
+UniRef50_Q5HQF1	Membrane protein, putative	0.0181286169811	0.00492225299925	-0.0132063639818
+UniRef50_A0LSS7	Glutamate  tRNA ligase	7.99758450996e-05	0.00588717592932	0.00580720008422
+UniRef50_O26156	Short chain isoprenyl diphosphate synthase	0.00218969545983	0.00259453418919	0.00040483872936
+UniRef50_UPI0003FDB9A0	SAM dependent methyltransferase	7.21140879526e-05	0.000163482681424	9.13685934714e-05
+UniRef50_V6FKX1	Glycosyl hydrolase family 3, C terminal domain protein	5.04660412934e-05	0.000180865233991	0.000130399192698
+UniRef50_Q49W95	NADH	0.0257099135579	0.00399790632269	-0.0217120072352
+UniRef50_B1LKC4	Ureidoglycolate lyase	0.000850713037148	0.00123048627164	0.000379773234492
+UniRef50_UPI000287FF7D	RpoD subfamily RNA polymerase sigma 70 subunit	2.99283969964e-06	8.44556219171e-06	5.45272249207e-06
+UniRef50_UPI0003AE35A2	PREDICTED	3.44693767788e-06	8.82066133314e-05	8.47596756535e-05
+UniRef50_A8LIE1	Transcriptional regulator	0.0135529915772	0.00366788753144	-0.00988510404576
+UniRef50_M9VCG5		0.000393214571719	0.0131740293678	0.0127808147961
+UniRef50_UPI0003B648D0	peptidase M20	5.38732851757e-06	1.92435972759e-05	1.38562687583e-05
+UniRef50_D4HCS1		0.000295968389143	0.00195517955798	0.00165921116884
+UniRef50_Q5HRF8	Putative heme dependent peroxidase SERP0235	0.0206740315406	0.0102621144865	-0.0104119170541
+UniRef50_UPI0002FAB494	hypothetical protein	6.97110111851e-06	9.67053975942e-06	2.69943864091e-06
+UniRef50_Q52463	Glycosyltransferase alg8	0.000750105353216	0.000611875348484	-0.000138230004732
+UniRef50_F0T7F9	Precorrin 2 C20 methyltransferase	0.00476997407374	0.00137695930489	-0.00339301476885
+UniRef50_D5USJ5	ABC transporter related protein	0.000432978035884	0.00086586486756	0.000432886831676
+UniRef50_A0A015A762	Aminopeptidase N 	0.00042716687238	0.00890449614552	0.00847732927314
+UniRef50_R1EVW7		0.000163286015872	4.45637327258e-05	-0.000118722283146
+UniRef50_P0DA58	DegV domain containing protein SpyM3_1667	0.0104488647604	0.00123837039137	-0.00921049436903
+UniRef50_Q12GA2	Glycerol kinase	0.00014708390166	0.00816102012439	0.00801393622273
+UniRef50_UPI0003C10A99	PREDICTED	5.99613517984e-06	2.00694672513e-05	1.40733320715e-05
+UniRef50_C6XRP6	Transcriptional regulator, XRE family	0.00129486390965	0.000492194508663	-0.000802669400987
+UniRef50_UPI0002A4AECE	PREDICTED	4.67200040153e-06	1.45603029423e-05	9.88830254077e-06
+UniRef50_Q7VZ77	Siroheme synthase	4.39172397526e-05	1.37933628956e-05	-3.0123876857e-05
+UniRef50_G7M8Y2	Site determining protein	0.000652623181394	0.00148002523243	0.000827402051036
+UniRef50_Q8YHH4	Uridylate kinase	1.70263504483e-05	1.61839524629e-05	-8.423979854e-07
+UniRef50_UPI00047C4E72	chemotaxis protein CheD	0.00020276325328	2.89218839602e-05	-0.00017384136932
+UniRef50_UPI00041519E4	leucyl phenylalanyl tRNA  protein transferase	7.38231529172e-06	1.65311811729e-05	9.14886588118e-06
+UniRef50_A0A031GMI8		4.71509237386e-05	0.000198218532928	0.000151067609189
+UniRef50_UPI00037BE049	hypothetical protein	6.28873954468e-06	1.18230523819e-05	5.53431283722e-06
+UniRef50_I1XZ29		0.000251099327394	0.00261894073583	0.00236784140844
+UniRef50_A6LYW5		0.000526202772398	0.000337504805945	-0.000188697966453
+UniRef50_Q3J464	Pseudouridine synthase	0.00287549256723	0.000166375608569	-0.00270911695866
+UniRef50_G4LRU0		0.000443319659724	0.000760347587795	0.000317027928071
+UniRef50_M3BKE3	ComEC Rec2 like protein	3.56947917989e-05	0.000181726035154	0.000146031243355
+UniRef50_R6XPK5		2.73347059684e-05	0.00072299974251	0.000695665036542
+UniRef50_A6LX94	Beta and gamma crystallin	0.000343324042664	0.000429795997823	8.6471955159e-05
+UniRef50_UPI000470DD33	cell division protein FtsZ	3.1521196182e-06	1.45456930579e-05	1.13935734397e-05
+UniRef50_P0A4G4	Metal ABC transporter substrate binding lipoprotein	0.000122560385996	0.000196877803461	7.4317417465e-05
+UniRef50_UPI00035EA533	hypothetical protein	0.000382769625642	0.00026125181921	-0.000121517806432
+UniRef50_UPI00046E5D21	glycosyl transferase	7.43874515805e-05	5.26403439511e-05	-2.17471076294e-05
+UniRef50_UPI0003740A8D	hypothetical protein	4.31667869126e-06	0.000106007427732	0.000101690749041
+UniRef50_UPI0002FEF2A0	hypothetical protein	7.56346483311e-05	1.14153747461e-05	-6.4219273585e-05
+UniRef50_UPI0003AF1E76	PREDICTED	1.77037912205e-05	2.74714807446e-05	9.7676895241e-06
+UniRef50_D0C6D9	Molybdopterin oxidoreductase	0.000101429468035	0.0083212736265	0.00821984415847
+UniRef50_B1YJY5	Endonuclease MutS2	9.5020740786e-05	0.00137461888686	0.00127959814607
+UniRef50_UPI00016C0B60	ABC transporter related protein	3.58425753778e-06	4.99791947691e-06	1.41366193913e-06
+UniRef50_A6W7W9	Probable dual specificity RNA methyltransferase RlmN	1.93583159675e-05	4.45597765157e-05	2.52014605482e-05
+UniRef50_Q9RTP8	Divalent metal cation transporter MntH	0.00250724661576	0.0436649685415	0.0411577219257
+UniRef50_Q48C82		0.00595387803284	0.00049861814253	-0.00545525989031
+UniRef50_Q8FKC6	Acyl carrier protein phosphodiesterase	0.00192341798447	0.0030397701913	0.00111635220683
+UniRef50_UPI00030FC743	hypothetical protein	6.05353282664e-06	6.0339787607e-06	-1.955406594e-08
+UniRef50_A0A059IQC1		5.10211352025e-06	0.000174294358049	0.000169192244529
+UniRef50_UPI000376E9E0	hypothetical protein	0.000365755081973	0.000165316730772	-0.000200438351201
+UniRef50_C6SKJ8		0.000295498238766	0.00644920986333	0.00615371162456
+UniRef50_UPI00047BE00A	molecular chaperone GroES, partial	8.97646224949e-06	0.000141157476738	0.000132181014489
+UniRef50_UPI0004710755	ribonucleoside diphosphate reductase	7.11092069817e-06	3.55843350727e-05	2.84734143745e-05
+UniRef50_Q9FIW4	Beta glucosidase 42	3.05116665277e-06	7.07440856046e-06	4.02324190769e-06
+UniRef50_UPI0003C13A93	PREDICTED	1.06102682363e-05	0.000144082302323	0.000133472034087
+UniRef50_Q67KG3	Bifunctional purine biosynthesis protein PurH	2.88639037212e-06	5.26748770462e-05	4.97884866741e-05
+UniRef50_UPI000368145E	hypothetical protein	0.000125679784114	6.8875781509e-05	-5.6804002605e-05
+UniRef50_F9PTR8	Rhodanese like protein	3.7447654394e-05	7.38633159141e-05	3.64156615201e-05
+UniRef50_Q2NEX9	PurB	0.00374381580472	0.00113393308348	-0.00260988272124
+UniRef50_Q6GFZ2	Probable tRNA sulfurtransferase	0.0164988607614	0.00544887921562	-0.0110499815458
+UniRef50_UPI00037CBB5C	hypothetical protein	7.90616379317e-05	8.45088659599e-05	5.4472280282e-06
+UniRef50_J9NS14		0.000368984340064	0.000296852719885	-7.2131620179e-05
+UniRef50_UPI000388FD53	PREDICTED	1.61452306446e-05	0.000143775058047	0.000127629827402
+UniRef50_H5Y8S2	Transposase	5.95434908784e-05	7.71025517105e-06	-5.18332357074e-05
+UniRef50_Q5ZKW0	Mitochondrial tRNA specific 2 thiouridylase 1	3.15061528369e-06	6.05214431731e-06	2.90152903362e-06
+UniRef50_B4RQI7	Anhydro N acetylmuramic acid kinase	0.000226886514461	0.00462326549008	0.00439637897562
+UniRef50_Q9I5U5	Ribosomal RNA small subunit methyltransferase A	0.000351521530011	0.00061636658951	0.000264845059499
+UniRef50_B9KU25		0.00425644010162	0.00151444464203	-0.00274199545959
+UniRef50_Q9RSF6	Sun protein, putative	0.000111902961123	0.00413688226887	0.00402497930775
+UniRef50_B9KJR9		0.00720315401988	0.00233964945029	-0.00486350456959
+UniRef50_S5CP44	Kef type K+ transport systems, predicted NAD binding component	0.000331206182048	0.00537861063859	0.00504740445654
+UniRef50_UPI0003B6E634	histidine kinase	2.08743145831e-06	2.55577989042e-05	2.34703674459e-05
+UniRef50_M9VMF8	DNase	0.00205665848165	0.00500696673867	0.00295030825702
+UniRef50_A0A022GYN4	tRNA specific adenosine deaminase	1.15806186047e-05	5.01982929259e-05	3.86176743212e-05
+UniRef50_U5MYV0	ATP dependent Clp protease ATP binding subunit ClpA	0.00040258132726	0.00153107697118	0.00112849564392
+UniRef50_P76261	Putative cyclic di GMP phosphodiesterase AdrB	0.00235056994584	0.00058878245484	-0.001761787491
+UniRef50_U5UNN1	GNAT family acetyltransferase	0.0495902076576	0.00168249775809	-0.0479077098995
+UniRef50_U5NRK2		0.0101216849031	0.000476317266442	-0.00964536763666
+UniRef50_Q1C1V1	NADH pyrophosphatase	0.00346126201676	0.00124016872509	-0.00222109329167
+UniRef50_U5RUZ1	DNA polymerase III, subunits gamma and tau	0.000443053973874	0.00223188865696	0.00178883468309
+UniRef50_UPI00037D5F1A	hypothetical protein	6.38653174517e-05	2.9690216703e-05	-3.41751007487e-05
+UniRef50_UPI00047224C9	hypothetical protein	5.45901062337e-05	3.58816180791e-05	-1.87084881546e-05
+UniRef50_P36678	Putative type II secretion system protein M	0.000492373028943	0.000405469160461	-8.6903868482e-05
+UniRef50_G7MCP1	Multi sensor signal transduction histidine kinase	0.000210002449553	0.00116028735321	0.000950284903657
+UniRef50_Q6GIN0	Prolipoprotein diacylglyceryl transferase	0.0105972029372	0.00507576790829	-0.00552143502891
+UniRef50_B8FQ92	Chorismate synthase	2.85402163636e-05	0.000190240792814	0.00016170057645
+UniRef50_Q2WBD9	Phosphoheptose isomerase	9.1405626226e-06	1.01349043109e-05	9.943416883e-07
+UniRef50_W8RXY9	Arsenate reductase related protein	0.000368841721434	0.000113798139364	-0.00025504358207
+UniRef50_A9M3Z6	Periplasmic protein	0.000161548925324	0.000786746897966	0.000625197972642
+UniRef50_UPI00036A03CE	hypothetical protein	8.306192824e-06	9.18686727185e-06	8.8067444785e-07
+UniRef50_UPI0003486CF4	hypothetical protein	2.29960488726e-06	1.78314182361e-05	1.55318133488e-05
+UniRef50_Q6A8Q7	1,4 alpha glucan branching enzyme GlgB	6.17119008952e-05	0.00453141931206	0.00446970741116
+UniRef50_G4B6N4		3.40841583254e-05	0.000661156802679	0.000627072644354
+UniRef50_UPI000477A19D	ribose ABC transporter permease	0.000154420901092	4.89726624129e-05	-0.000105448238679
+UniRef50_A1U1A4	Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00371807032243	0.00602806619236	0.00230999586993
+UniRef50_Q167T4	Branched chain amino acid ABC transporter, permease protein, putative	0.00430897010205	0.00125570071271	-0.00305326938934
+UniRef50_V5ZX98		4.95644558563e-05	2.79599573674e-05	-2.16044984889e-05
+UniRef50_C6M2N2	RND transporter, HAE1 family	0.000223229365711	0.00241051587766	0.00218728651195
+UniRef50_UPI0004796185	16S rRNA methyltransferase	1.40724902464e-05	1.34581645376e-05	-6.143257088e-07
+UniRef50_UPI000472B33B	ABC transporter	7.0927191316e-06	3.5710719737e-05	2.86180006054e-05
+UniRef50_P56396	Tryptophan  tRNA ligase	0.000129276023577	0.00311161665558	0.002982340632
+UniRef50_Q5L8Z8	Malate dehydrogenase	2.00655358317e-05	0.00165653799243	0.0016364724566
+UniRef50_UPI000377FC08	LuxR family transcriptional regulator	1.56374866602e-05	0.000107442246713	9.18047600528e-05
+UniRef50_A8LPC2	tRNA modification GTPase MnmE	0.0125165324807	0.00298818501522	-0.00952834746548
+UniRef50_O26480	UDP glucose 4 epimerase homolog	0.00209067147479	0.000387747082661	-0.00170292439213
+UniRef50_Q1J391	Allantoinase	9.23119800131e-06	0.0268731679347	0.0268639367367
+UniRef50_UPI00046FE227	multidrug ABC transporter ATP binding protein	7.258158976e-06	3.15866285051e-06	-4.09949612549e-06
+UniRef50_V6EI61	Lactose permease	0.00118566426436	0.000854798692905	-0.000330865571455
+UniRef50_D7DKW7	Short chain dehydrogenase reductase SDR	0.0126894301501	0.00373978163359	-0.00894964851651
+UniRef50_I5C147		0.000238828691517	2.79726104894e-05	-0.000210856081028
+UniRef50_Q7VW21	UPF0246 protein BP2452	5.14985772163e-06	2.00245918226e-05	1.4874734101e-05
+UniRef50_M3Z864		7.19906160945e-05	0.00024574569857	0.000173755082476
+UniRef50_UPI00035D274E	hypothetical protein	3.96158641696e-06	3.11015111038e-06	-8.5143530658e-07
+UniRef50_O25722	DNA translocase FtsK	0.000226871427991	0.00403104154073	0.00380417011274
+UniRef50_Q1C3L9	Lipoprotein NlpI	0.00403851570185	0.00126833725072	-0.00277017845113
+UniRef50_UPI0004650975	hypothetical protein	0.00111458637407	5.61012122887e-05	-0.00105848516178
+UniRef50_UPI00037DD9E3	hypothetical protein, partial	2.41924525391e-05	1.73042036393e-05	-6.8882488998e-06
+UniRef50_UPI0004630A02	hypothetical protein	8.81556363741e-05	9.54443822869e-05	7.2887459128e-06
+UniRef50_UPI00037AA24F	30S ribosomal protein S19, partial	4.01454567108e-05	3.14358549628e-05	-8.709601748e-06
+UniRef50_A0A023Y3Z5		0.000152298661952	3.97361055833e-05	-0.000112562556369
+UniRef50_UPI00036F824A	MULTISPECIES	9.48243289863e-05	1.47712176666e-05	-8.00531113197e-05
+UniRef50_UPI00034D7E89	hypothetical protein	0.000494244962007	0.0196344434232	0.0191401984612
+UniRef50_UPI000369A9BC	hypothetical protein	0.000602001831384	1.6053349471e-05	-0.000585948481913
+UniRef50_K4A616		5.58349256945e-06	5.06604191774e-06	-5.1745065171e-07
+UniRef50_UPI0003B739B2	glutamyl tRNA synthetase	1.09299255498e-05	1.01322515281e-05	-7.976740217e-07
+UniRef50_Q8CPM6	Divalent metal cation transporter MntH	0.0221096787854	0.00457056392758	-0.0175391148578
+UniRef50_A0A011R0M1	Dual specificity phosphatase, catalytic domain protein	7.71207796926e-06	2.04918086196e-05	1.27797306503e-05
+UniRef50_P42590	Inner membrane transporter YgjI	0.00116527148351	0.000138754912385	-0.00102651657113
+UniRef50_A3DDS7	Indole 3 glycerol phosphate synthase	9.19758723774e-06	1.40020088611e-05	4.80442162336e-06
+UniRef50_R5TME3	Xylulokinase	0.000272914524022	0.00236394809975	0.00209103357573
+UniRef50_A3PQ77	Tripartite ATP independent periplasmic transporter, DctQ component	0.0103874200994	0.000390286394531	-0.00999713370487
+UniRef50_P47650	Phosphate import ATP binding protein PstB	6.15621484022e-06	8.16942178227e-06	2.01320694205e-06
+UniRef50_X1GFV3	Marine sediment metagenome DNA, contig	5.36665218042e-05	0.000395379210763	0.000341712688959
+UniRef50_UPI00029A5C6F	protein narU, partial	0.000125218775265	6.40898778506e-05	-6.11288974144e-05
+UniRef50_Q732P6	Isoprenyl transferase	0.0120946865437	0.00458843631451	-0.00750625022919
+UniRef50_Q6F7N0	Ferrochelatase	0.000116628008914	0.00835371788803	0.00823708987912
+UniRef50_F4D5J0		0.000397899487961	0.00288484624104	0.00248694675308
+UniRef50_UPI00039E983D	acetylglutamate kinase	2.47295414425e-05	1.78389434255e-05	-6.890598017e-06
+UniRef50_U2ZS91		9.10756380874e-05	4.66657809918e-05	-4.44098570956e-05
+UniRef50_A5UKG8	Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.00526829712196	0.00115936138889	-0.00410893573307
+UniRef50_H0Q5F2	Short chain dehydrogenase reductase SDR	0.000670152785609	0.00553696274512	0.00486680995951
+UniRef50_UPI0003629198	hypothetical protein	5.40451313235e-05	8.08216720438e-05	2.67765407203e-05
+UniRef50_Q5HKK3		0.00117144561385	0.00220764947592	0.00103620386207
+UniRef50_UPI000475640B	pilus assembly protein CpaF	2.01270551046e-05	1.09115462201e-05	-9.2155088845e-06
+UniRef50_UPI0003C1219C		6.90528861822e-05	1.33914266773e-05	-5.56614595049e-05
+UniRef50_I6STQ4	Oxidoreductase	0.00618896009767	0.00382245614644	-0.00236650395123
+UniRef50_Q6GHV6	Iron regulated surface determinant protein A	0.00867254853466	0.00279298823315	-0.00587956030151
+UniRef50_Q3JF19	Glycerol 3 phosphate dehydrogenase [NAD+]	0.00276109504078	0.00109084395363	-0.00167025108715
+UniRef50_UPI00037482BD	hypothetical protein	6.63505100035e-06	9.67354623114e-06	3.03849523079e-06
+UniRef50_UPI00037267AF	hypothetical protein	1.30395726511e-05	0.000109901296729	9.68617240779e-05
+UniRef50_UPI000370F5C3	hypothetical protein	0.00169473000577	0.000193865511885	-0.00150086449388
+UniRef50_D6M286	Tat  pathway signal sequence	1.65769767111e-05	3.51908837227e-06	-1.30578883388e-05
+UniRef50_M0J3W1	dGTPase	4.44787922733e-05	0.000143382782849	9.89039905757e-05
+UniRef50_W5B0U3		0.000281390506213	0.000228454725321	-5.2935780892e-05
+UniRef50_P37342		0.00667125602372	0.000617766556792	-0.00605348946693
+UniRef50_S6AVL7		1.47497606063e-05	0.000317675601259	0.000302925840653
+UniRef50_UPI000371A11E	MULTISPECIES	4.33308300852e-05	2.74957425416e-05	-1.58350875436e-05
+UniRef50_Q0FDE4	FoF1 ATP synthase, subunit I	3.82888192802e-05	5.96823002297e-05	2.13934809495e-05
+UniRef50_L7WPL2		0.0245130820171	0.00404202220921	-0.0204710598079
+UniRef50_Q5HQZ3	Transferrin receptor	0.0237877892632	0.00253906836159	-0.0212487209016
+UniRef50_Q8DR58	UPF0398 protein spr0331	0.00632476987774	0.00326002910713	-0.00306474077061
+UniRef50_K1BXA7	Two component sensor 	2.03203359071e-05	6.87794058176e-06	-1.34423953253e-05
+UniRef50_B7VS71	Phosphomethylpyrimidine kinase	0.000152416953778	0.00710306438132	0.00695064742754
+UniRef50_P23530	Phosphoenolpyruvate protein phosphotransferase	0.0221800378512	0.0129521821897	-0.0092278556615
+UniRef50_UPI000472C798	pseudouridine synthase	8.75617696749e-06	2.17366360059e-05	1.29804590384e-05
+UniRef50_M3BD66		0.00014900762718	5.35363960773e-05	-9.54712311027e-05
+UniRef50_K9NR38	Peptidase M23B	0.000631013623811	0.000123219765733	-0.000507793858078
+UniRef50_Q6FA84		0.00103063238685	0.00209298925569	0.00106235686884
+UniRef50_Q3D4U8		0.000451929963161	0.000299504756839	-0.000152425206322
+UniRef50_UPI00046FB65C	hypothetical protein	0.000218411519558	8.79082342097e-05	-0.000130503285348
+UniRef50_Q7UR11	Ferripyochelin binding protein	4.05860529477e-05	2.68459257558e-05	-1.37401271919e-05
+UniRef50_UPI00047CB9DF	2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase	2.24727465012e-05	5.81587834312e-06	-1.66568681581e-05
+UniRef50_Q5LUR8	Zinc import ATP binding protein ZnuC	1.89531359833e-05	8.59805111053e-06	-1.03550848728e-05
+UniRef50_Q3ZAD5	Cysteine  tRNA ligase	2.80851782866e-06	9.8902911096e-06	7.08177328094e-06
+UniRef50_Q8DVX1		0.00237308217495	0.000597688758296	-0.00177539341665
+UniRef50_I0C0T2	Trp repressor binding protein	0.004925432984	0.00343340857958	-0.00149202440442
+UniRef50_I5C5U6		2.35491798924e-05	4.47973598977e-05	2.12481800053e-05
+UniRef50_A4WUQ1		7.31285504014e-05	0.000288583099537	0.000215454549136
+UniRef50_P37691		0.00191472851882	0.000701268525188	-0.00121345999363
+UniRef50_U5MLQ3	Processive diacylglycerol glucosyltransferase UgtP	0.000104374006137	0.00084737572678	0.000743001720643
+UniRef50_Q9P9A1	Nitrate reductase beta subunit 	3.75088367833e-05	5.7001067285e-05	1.94922305017e-05
+UniRef50_UPI000379A03B	 malyl CoA thiolesterase	0.000181792102623	0.000102123619372	-7.9668483251e-05
+UniRef50_I0EPP7	Periplasmic dipeptide transport substrate binding protein	7.71954987484e-05	0.0038468247406	0.00376962924185
+UniRef50_Q8CU41	Ornithine carbamoyltransferase 1, catabolic	0.00918007512207	0.00291215003988	-0.00626792508219
+UniRef50_E4BBW7		0.000492373028943	0.000891918096963	0.00039954506802
+UniRef50_Q2NI05	MvhA	0.00248091175236	0.00104205943273	-0.00143885231963
+UniRef50_A0A058Z3Q5		4.91326820447e-06	3.6605424989e-06	-1.25272570557e-06
+UniRef50_D3QHG0	Phosphonate ABC transporter permease protein phnE1	0.0180733284964	0.00594815457642	-0.01212517392
+UniRef50_G7M9K8	Methyl accepting chemotaxis sensory transducer	0.000177186764338	0.00112167501092	0.000944488246582
+UniRef50_UPI00047CAA92	polynucleotide phosphorylase polyadenylase	2.29777499373e-06	7.69070512246e-06	5.39293012873e-06
+UniRef50_V6ZFX5	HD domain protein	9.82612533802e-06	4.71871036838e-05	3.73609783458e-05
+UniRef50_C5B9D9	Phosphopantetheine adenylyltransferase	6.88279506994e-05	1.3664686544e-05	-5.51632641554e-05
+UniRef50_P0AEV2	Regulator of RpoS	0.00213000696558	0.000572594360419	-0.00155741260516
+UniRef50_I3U2F8	DAACS family dicarboxylate amino acid	0.0114407456588	0.00371867171704	-0.00772207394176
+UniRef50_UPI0004673090	DNA mismatch repair protein Vsr	5.86686998499e-05	1.73235082443e-05	-4.13451916056e-05
+UniRef50_I6TRJ5	Arsenate reductase	0.000322637597309	0.00884656194236	0.00852392434505
+UniRef50_A6DYW3		6.83398416337e-05	0.000117086547199	4.87467055653e-05
+UniRef50_Q6A7D5	Conserved protein	0.000151225107133	0.00533161724659	0.00518039213946
+UniRef50_A5ULE4	Predicted transcriptional regulator	0.0023480850545	0.000476320701537	-0.00187176435296
+UniRef50_UPI0003820AE4	hypothetical protein	5.24925683015e-06	9.36139093951e-06	4.11213410936e-06
+UniRef50_Q5ZUH9	Lipid A export ATP binding permease protein MsbA	2.84228847265e-06	1.31226486019e-05	1.02803601292e-05
+UniRef50_A4VGV6		6.16382153773e-05	9.47568682882e-05	3.31186529109e-05
+UniRef50_UPI000382EBAF	hypothetical protein	4.51447282579e-06	6.3114295258e-06	1.79695670001e-06
+UniRef50_M4KI13	Fibrinogen binding family protein	0.00492951353366	0.00197905751414	-0.00295045601952
+UniRef50_Q07V02	RNA pyrophosphohydrolase	0.00180984491917	0.000363839883189	-0.00144600503598
+UniRef50_Q3JWW0		7.07167025995e-06	0.000178562985876	0.000171491315616
+UniRef50_A4H7G2		1.20992946588e-05	4.73039387273e-05	3.52046440685e-05
+UniRef50_Q2NES1	FrhB	0.00601520135248	0.000206997690564	-0.00580820366192
+UniRef50_Q1IIL2	Chorismate synthase	1.34969087571e-05	0.000137628670627	0.00012413176187
+UniRef50_R6RW73	ABC type multidrug transport system ATPase component	0.00451688047017	0.00205885697092	-0.00245802349925
+UniRef50_A0A009VZS8	Penicillin binding protein 2	0.000502439376712	0.00365152270583	0.00314908332912
+UniRef50_UPI0003768F8C	hypothetical protein	0.000142595853597	2.72833478731e-05	-0.000115312505724
+UniRef50_O27054	Probable L aspartate dehydrogenase	0.00295361127864	0.000812545082389	-0.00214106619625
+UniRef50_B9KQJ4	Chemotactic signal response protein CheL	0.000336628781603	0.000156292400883	-0.00018033638072
+UniRef50_E3J2U0	Transcriptional regulator	1.21461799588e-06	4.32245540975e-06	3.10783741387e-06
+UniRef50_F9YZS9	Integral membrane protein	9.85603103999e-05	0.00547473889006	0.00537617857966
+UniRef50_K9F564	Putative extracellular nuclease	8.29399664806e-06	0.000391903296689	0.000383609300041
+UniRef50_L8GHN9		8.69029961134e-06	2.53118430987e-05	1.66215434874e-05
+UniRef50_UPI00047883C6	hypothetical protein	7.89395715898e-05	9.38139482134e-05	1.48743766236e-05
+UniRef50_UPI00047EF6F7	ABC transporter ATP binding protein	1.43136006603e-06	3.983383226e-05	3.8402472194e-05
+UniRef50_UPI000463035D	hypothetical protein	1.56201292732e-05	3.78053587313e-05	2.21852294581e-05
+UniRef50_A0A024KYL9	ATP dependent Clp protease ATP binding subunit	0.000677387439752	0.000146123419104	-0.000531264020648
+UniRef50_D5AP52		0.000441034906072	4.56787198172e-05	-0.000395356186255
+UniRef50_UPI0004764AED	hypothetical protein, partial	9.65298372967e-05	3.45941518806e-05	-6.19356854161e-05
+UniRef50_Q9KUD9	Ribosomal RNA small subunit methyltransferase I	0.000934712335195	0.00762446709139	0.00668975475619
+UniRef50_F0XYP3		9.59058469323e-05	6.02197890836e-05	-3.56860578487e-05
+UniRef50_N1UE46		0.000396284333773	7.71001954907e-05	-0.000319184138282
+UniRef50_A0A020CJ31		0.00184113194658	0.00081530611061	-0.00102582583597
+UniRef50_S4MU14		0.000696037155729	0.000122870912669	-0.00057316624306
+UniRef50_A5UP58		0.00148823998097	0.00037381861418	-0.00111442136679
+UniRef50_D4X8Q1	RepB plasmid partitioning protein	2.21690314668e-06	1.52736801638e-05	1.30567770171e-05
+UniRef50_U5P983	Macrolide ABC transporter ATP binding protein	0.0170793751473	0.0135919331389	-0.0034874420084
+UniRef50_Q5GTU8	MFS transporter	0.000407451108489	0.000307277022654	-0.000100174085835
+UniRef50_O67528	Nucleoside diphosphate kinase	6.31315290138e-05	2.12191187001e-05	-4.19124103137e-05
+UniRef50_K9PAV6	Lysophospholipase	3.18644691057e-06	5.32239269999e-05	5.00374800893e-05
+UniRef50_Q4L7V6	Holo [acyl carrier protein] synthase	0.000987010760655	0.000989888397308	2.877636653e-06
+UniRef50_F2EXR6		0.000309399622654	0.000179477512951	-0.000129922109703
+UniRef50_UPI000395608F	3 hydroxyacyl CoA dehydrogenase	4.76993298832e-06	1.53966938412e-05	1.06267608529e-05
+UniRef50_B8DYK8	Deoxycytidine triphosphate deaminase	0.003689859716	0.00125972786555	-0.00243013185045
+UniRef50_UPI000349DE0E	hypothetical protein	9.99809887487e-05	8.20237210275e-05	-1.79572677212e-05
+UniRef50_P35594	ATP dependent Clp protease ATP binding subunit ClpE	0.00492293723292	0.00772174082563	0.00279880359271
+UniRef50_UPI00037BD53F	hypothetical protein	0.000265320614451	0.000233807340986	-3.1513273465e-05
+UniRef50_A1TRG1	Glucose 1 phosphate adenylyltransferase	3.3949996336e-06	6.69859413834e-06	3.30359450474e-06
+UniRef50_UPI00037AD344	hypothetical protein	1.58800428606e-05	6.15847179054e-05	4.57046750448e-05
+UniRef50_UPI0003A602B5	AraC family transcriptional regulator	7.06959859571e-05	2.77248884182e-05	-4.29710975389e-05
+UniRef50_A5WFS0	NADPH dependent FMN reductase	0.000210886027289	0.00693147625564	0.00672059022835
+UniRef50_Q7VGA7	Tryptophan synthase beta chain	8.6585679919e-06	6.08346550665e-06	-2.57510248525e-06
+UniRef50_Q0W484	Homoserine O acetyltransferase	0.00285297943164	0.0004101825575	-0.00244279687414
+UniRef50_U6AE16	Methyl accepting chemotaxis protein	0.00029863052609	0.000126024198511	-0.000172606327579
+UniRef50_UPI0003B4EF9E	ATPase, partial	5.98981719684e-06	0.00142709522154	0.00142110540434
+UniRef50_UPI0003B31E86	TDP glucose 4,6 dehydratase	9.70979713799e-06	8.11743906323e-05	7.14645934943e-05
+UniRef50_Q93XI4	N carbamoylputrescine amidase	1.50826140901e-05	4.74045564541e-05	3.2321942364e-05
+UniRef50_R7BPT0	2 nitropropane dioxygenase NPD	0.00794218209023	0.00821712105957	0.00027493896934
+UniRef50_D3JTG7	AqsR	0.000466249049448	0.00810117225065	0.0076349232012
+UniRef50_A5UNG9	4 diphosphocytidyl 2 methyl D erithritol synthase, IspD	0.00244998893946	0.00163873099669	-0.00081125794277
+UniRef50_UPI000360F677	hypothetical protein	1.24175452782e-05	0.000131523179408	0.00011910563413
+UniRef50_Q602K3	Porphobilinogen deaminase	0.00458430222764	0.00816445063979	0.00358014841215
+UniRef50_X2IT45	DNA polymerase III subunit gamma tau	6.53089946062e-05	0.00384528620669	0.00377997721208
+UniRef50_UPI0004720C75	hypothetical protein	7.13781306086e-05	5.80535079812e-05	-1.33246226274e-05
+UniRef50_A0A031H7A6		0.000138295112599	5.29728216803e-05	-8.53222909187e-05
+UniRef50_Q6L178	Probable transaldolase	0.000134972447664	0.000296027925133	0.000161055477469
+UniRef50_A7FBR2		0.000144630647073	0.00565007774088	0.00550544709381
+UniRef50_L8E566		4.88916841405e-05	6.78369154289e-05	1.89452312884e-05
+UniRef50_UPI000382D4E3	hypothetical protein	3.10393995049e-05	4.10198597573e-05	9.9804602524e-06
+UniRef50_A0ALU1	50S ribosomal protein L17	0.00673562969454	0.00048412574623	-0.00625150394831
+UniRef50_P38448	KHG KDPG aldolase	0.0004102076266	0.00186531208394	0.00145510445734
+UniRef50_W0YS94		0.000178813354213	0.000140962379147	-3.7850975066e-05
+UniRef50_A3QDX8	Dihydroorotate dehydrogenase 	1.18287687058e-05	1.55927388319e-05	3.7639701261e-06
+UniRef50_B4RKY8	Succinyl diaminopimelate desuccinylase	2.398422422e-06	0.00385531378795	0.00385291536553
+UniRef50_UPI0003F8D5B0	hypothetical protein	6.85723904955e-06	0.000945415471652	0.000938558232602
+UniRef50_B8ERB2	Ppx GppA phosphatase	6.87839942301e-06	2.91728963083e-05	2.22944968853e-05
+UniRef50_R6FSB9	Peptidase M24	0.000761020158855	0.000810877416917	4.9857258062e-05
+UniRef50_F0MEQ3	Ferripyoverdine receptor	0.000177354267045	0.0025266318187	0.00234927755165
+UniRef50_F6IIV1	Flagellum specific ATP synthase	0.00133422502872	0.000360016503715	-0.000974208525005
+UniRef50_W4TT30		0.000751234492661	0.00539494557245	0.00464371107979
+UniRef50_Q8CQA8	Surfactin synthetase	0.00962540073976	0.00397915581325	-0.00564624492651
+UniRef50_P0A5I3	4 hydroxy 3 methylbut 2 enyl diphosphate reductase 2	4.64482292556e-05	3.85192943849e-05	-7.9289348707e-06
+UniRef50_W7NBP5		2.11383489586e-05	0.000318114942752	0.000296976593793
+UniRef50_Q3KF35	Glutamate  tRNA ligase	0.00105423141434	0.00656662282771	0.00551239141337
+UniRef50_P56926	Glutamine  tRNA ligase	1.93909041555e-06	0.0126773244597	0.0126753853693
+UniRef50_V4R1X6		2.82098885216e-05	4.43318414138e-05	1.61219528922e-05
+UniRef50_Q9JU31	DNA translocase FtsK 1	4.70289853191e-05	0.00203440217694	0.00198737319162
+UniRef50_H6PB78	DNA polymerase III, gamma and tau subunits	0.00592492324569	0.00817703044934	0.00225210720365
+UniRef50_O04974	2 isopropylmalate synthase B	4.70187523157e-06	4.70913104871e-06	7.25581714e-09
+UniRef50_Q5HNB7	Phosphoenolpyruvate carboxykinase [ATP]	0.0118403635591	0.00299584449305	-0.00884451906605
+UniRef50_F8GU00	Oxygenase subunit protein	0.000142090083634	0.00543835290458	0.00529626282095
+UniRef50_H8GWF1	5` nucleotidase family protein	0.000138740161886	0.0273677064928	0.0272289663309
+UniRef50_H2GZD2	Ascorbate specific PTS system enzyme IIC	7.61572270731e-05	0.0066490887205	0.00657293149343
+UniRef50_UPI00028A25D3	peptide ABC transporter	5.92132773013e-05	3.83700498509e-05	-2.08432274504e-05
+UniRef50_UPI0003EE1B84	PREDICTED	1.12147007457e-05	9.57835282258e-06	-1.63634792312e-06
+UniRef50_J7QTA8	Putative DNA transposase	2.51936735985e-05	4.3751403736e-05	1.85577301375e-05
+UniRef50_W0YJI7	PAAR motif containing protein	8.83352547962e-05	0.000820648616609	0.000732313361813
+UniRef50_Q8CUS7	Adenine deaminase	8.63744683545e-06	4.78729018806e-06	-3.85015664739e-06
+UniRef50_Q73E41	Calcium transporting ATPase 1	0.000107207093479	0.00229921075542	0.00219200366194
+UniRef50_UPI0002558955	Recombinase A	0.000132800858871	3.42008510535e-05	-9.86000078175e-05
+UniRef50_F0Y1K3	Expressed protein 	9.52885099739e-05	6.66095799403e-05	-2.86789300336e-05
+UniRef50_UPI00035D9122	hypothetical protein	3.05103912668e-06	5.29293150975e-06	2.24189238307e-06
+UniRef50_G0BED7	Transcriptional regulator, LysR family	0.000129423767612	0.00436082382471	0.0042314000571
+UniRef50_A8Q1C8		9.01251171146e-05	2.74154003149e-05	-6.27097167997e-05
+UniRef50_K8WCA6	Heme lyase subunit CcmF	0.00220513850352	0.000371523020117	-0.0018336154834
+UniRef50_Q88GW8	5 dehydro 4 deoxyglucarate dehydratase	0.00770050255588	0.00231704651166	-0.00538345604422
+UniRef50_B4SMK1	L lactate dehydrogenase [cytochrome]	0.00277210987986	0.00262865136642	-0.00014345851344
+UniRef50_UPI00041BD20B	hypothetical protein	1.32891695578e-06	4.5827002794e-05	4.44980858382e-05
+UniRef50_W5WU40	Anion transporter	0.0210276947909	0.00373099895869	-0.0172966958322
+UniRef50_A7HYE5	Ribonuclease D	0.00924728637223	0.00125879626387	-0.00798849010836
+UniRef50_UPI0003C1900C	PREDICTED	3.13755984393e-06	3.39190520098e-06	2.5434535705e-07
+UniRef50_Q99W51	tRNA specific adenosine deaminase	0.0202522098981	3.95425598226e-05	-0.0202126673383
+UniRef50_UPI00029AF092	multidrug transport protein, mfs family	3.88513290337e-05	0.000633024066718	0.000594172737684
+UniRef50_Q9RST5		0.000296454965064	0.0417999624277	0.0415035074626
+UniRef50_A7MS74	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1	4.31431904861e-05	1.83229040418e-05	-2.48202864443e-05
+UniRef50_I7DGD4	Signal transduction histidine kinase	0.00347921956898	0.00165245819299	-0.00182676137599
+UniRef50_Q5HKI9	Amino acid ABC transporter, amino acid binding protein	0.0230334074624	0.00685984263755	-0.0161735648248
+UniRef50_UPI00036BE230	macrolide ABC transporter ATP binding protein	6.69141287844e-06	0.000286127260701	0.000279435847823
+UniRef50_A0A010IHG0	Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein	0.000133891072498	0.00906966592504	0.00893577485254
+UniRef50_A4IMP7	Large conductance mechanosensitive channel	0.00367620778118	0.00414035375839	0.00046414597721
+UniRef50_UPI00046537F1	transcriptional repressor NemR	9.39571494456e-05	1.25056543719e-05	-8.14514950737e-05
+UniRef50_V5VGM0	Flavoprotein	0.000183607815991	0.0150071067903	0.0148234989743
+UniRef50_A5UKL2		0.00290499744237	0.0022961427241	-0.00060885471827
+UniRef50_G8RFW9		0.00688792732076	0.00596578305292	-0.00092214426784
+UniRef50_Q5HNR9	D tyrosyl tRNA deacylase	0.0139391373688	0.00252205486821	-0.0114170825006
+UniRef50_M1MJA7	rRNA  ) methyltransferase	0.000101383882411	0.00152348984033	0.00142210595792
+UniRef50_UPI0003DF781B	PREDICTED	1.11775366575e-05	1.67425559888e-05	5.5650193313e-06
+UniRef50_F9Z1V2	RlpA like protein	0.000111682245224	0.00578194086106	0.00567025861584
+UniRef50_A4WWS4	RecB family exonuclease like protein	0.00016707953513	6.76297798135e-05	-9.94497553165e-05
+UniRef50_Q98DE8	Glutathione synthetase	4.31723771781e-06	0.000133553936137	0.000129236698419
+UniRef50_A5ISW4		0.00215950377238	9.00158792352e-05	-0.00206948789314
+UniRef50_O68575	Pyruvate formate lyase activating enzyme	0.00704961433762	0.00272038973301	-0.00432922460461
+UniRef50_Q31RQ5	3 phosphoshikimate 1 carboxyvinyltransferase	4.52737935863e-06	6.45684138652e-06	1.92946202789e-06
+UniRef50_UPI00040D856B	hypothetical protein	1.21493199249e-05	5.18917884856e-06	-6.96014107634e-06
+UniRef50_UPI000372D278	hypothetical protein	2.50165427223e-05	5.26118362912e-06	-1.97553590932e-05
+UniRef50_UPI0004771B3E	hypothetical protein	0.000184640417686	6.73823514703e-05	-0.000117258066216
+UniRef50_F0KEU3		0.000288289456304	0.00517607074455	0.00488778128825
+UniRef50_X0VX75	Marine sediment metagenome DNA, contig	2.16090317724e-05	1.95148313822e-05	-2.0942003902e-06
+UniRef50_B5H827	Cobalamin synthesis protein	5.05351778975e-06	5.60114698122e-06	5.4762919147e-07
+UniRef50_P76176		0.00525499730588	0.00155430262312	-0.00370069468276
+UniRef50_Q5HLI8	Glutaredoxin, putative	0.0087297678033	0.00182389667053	-0.00690587113277
+UniRef50_B9JSI7	Cation efflux system protein	0.00388056037886	0.00131421248571	-0.00256634789315
+UniRef50_Q5NPR4	UvrABC system protein C	0.00669941446558	0.00120527037857	-0.00549414408701
+UniRef50_UPI00035DA52C	hypothetical protein	6.45038736489e-06	3.13980733543e-05	2.49476859894e-05
+UniRef50_A5UP28		0.00303238272507	0.000100405171648	-0.00293197755342
+UniRef50_V0RK41		0.000595032319047	9.14854355937e-05	-0.000503546883453
+UniRef50_R5A601	Recombination inhibitory protein MutS2	0.000386331609746	7.65069184465e-05	-0.0003098246913
+UniRef50_S5EBY8		0.000176120990128	0.000365008306628	0.0001888873165
+UniRef50_UPI0003C16983		1.19964392659e-05	3.94468704414e-05	2.74504311755e-05
+UniRef50_Q71ZJ9	Ribosomal protein L11 methyltransferase	6.66235456645e-05	0.00120069374481	0.00113407019915
+UniRef50_UPI000378771A	hypothetical protein	1.7979876806e-05	1.67992073956e-05	-1.1806694104e-06
+UniRef50_UPI00037134C7	hypothetical protein	3.06261081886e-05	1.11955556385e-05	-1.94305525501e-05
+UniRef50_UPI000359481D		8.27968252772e-05	8.0650685532e-05	-2.1461397452e-06
+UniRef50_UPI0002F538D8	hypothetical protein	1.71774714716e-05	2.33352722666e-05	6.157800795e-06
+UniRef50_U6JB04	Nucleoside diphosphate kinase	1.17967957142e-05	2.00469007731e-05	8.2501050589e-06
+UniRef50_A4WQY8	Cytochrome c type biogenesis protein CcmE	0.0149494223252	0.000391147953907	-0.0145582743713
+UniRef50_A0A037VGU7		3.37989937905e-05	3.95544668504e-05	5.7554730599e-06
+UniRef50_I2DHK5		0.000287337202072	0.00152710815726	0.00123977095519
+UniRef50_Q6A7A2	DNA ligase	0.000175600789695	0.00709209616305	0.00691649537335
+UniRef50_Q9RX88	50S ribosomal protein L25	0.000616239474805	0.0429377561976	0.0423215167228
+UniRef50_O26759	Putative ammonium transporter MTH_663	0.00480368899843	0.00123159635083	-0.0035720926476
+UniRef50_H5UZW1	Glutathione regulated potassium efflux system protein KefC 	4.04339727665e-05	0.000147829676633	0.000107395703866
+UniRef50_UPI0001DD0CDF	flagellar hook capping protein	1.51730140987e-05	2.06417453818e-05	5.4687312831e-06
+UniRef50_A5UMU8	Predicted glycosyltransferase, GT2 family	0.00296254886061	0.000688358025688	-0.00227419083492
+UniRef50_UPI00047A6BB5	hypothetical protein	1.23789306359e-05	7.21040565962e-06	-5.16852497628e-06
+UniRef50_Q2G1X0	Alpha hemolysin	0.00648580380612	0.00114264692675	-0.00534315687937
+UniRef50_N0DZB3	Secreted protein	1.19498070023e-05	1.50350936205e-05	3.0852866182e-06
+UniRef50_P78029	Thymidylate synthase	3.8548459764e-05	0.00852720452937	0.00848865606961
+UniRef50_Q5HGH0	Phosphatidate cytidylyltransferase	0.0184719120561	0.00504977001717	-0.0134221420389
+UniRef50_P76177	Protein YdgH	0.00235769784607	0.0013608850701	-0.00099681277597
+UniRef50_UPI0003298C8F	PREDICTED	1.96475787207e-05	2.78264532256e-05	8.1788745049e-06
+UniRef50_G2LAK2	Adhesive protein CupB5	0.000482258208054	0.000256391175579	-0.000225867032475
+UniRef50_V5VBD8	3 beta hydroxysteroid dehydrogenase isomerase	0.000111462398283	0.00764059230108	0.0075291299028
+UniRef50_P54453		0.00686910554002	0.00574858231545	-0.00112052322457
+UniRef50_F8A5M8	Alpha amylase catalytic region	0.00028025620662	0.00471421802667	0.00443396182005
+UniRef50_X7E7E5		5.26488520307e-06	0.000134729805773	0.00012946492057
+UniRef50_R7PTU8	ATP grasp domain protein	0.000976597802733	0.00233664674245	0.00136004893972
+UniRef50_R9SNU8	Radical SAM domain containing protein	0.00201507769668	0.000499830812745	-0.00151524688393
+UniRef50_J7QY26	Escherichia coli IMT2125 genomic chromosome, IMT2125	8.19714139912e-05	0.000176699944005	9.47285300138e-05
+UniRef50_A5UKF9	ATP utilizing enzyme, PP loop superfamily	0.00221254987031	0.000964668235747	-0.00124788163456
+UniRef50_D4Z726	3 oxoadipate CoA transferase alpha subunit LinG	0.000346131478079	0.0069862639622	0.00664013248412
+UniRef50_R7PXC4	Probable ribosomal RNA small subunit methyltransferase A	0.0022628322228	0.00086853452686	-0.00139429769594
+UniRef50_A1WY69	DNA polymerase IV	3.71722698113e-06	9.40816423289e-06	5.69093725176e-06
+UniRef50_L7UII0		1.09586682955e-05	3.94038589455e-05	2.844519065e-05
+UniRef50_F6CGX7	Quaternary amine transporting ATPase	0.00167128534877	0.000842962997786	-0.000828322350984
+UniRef50_UPI00037ED53F	hypothetical protein	7.07624706278e-05	5.96541915487e-05	-1.11082790791e-05
+UniRef50_Q9ZJN2	Probable nicotinate nucleotide pyrophosphorylase [carboxylating]	0.00013827325599	0.00193479666262	0.00179652340663
+UniRef50_D9SQ35	Integrase family protein	0.000668939685117	0.000317853276605	-0.000351086408512
+UniRef50_UPI0003C17A16	PREDICTED	6.41208210667e-05	3.29794479577e-05	-3.1141373109e-05
+UniRef50_UPI000476CF1F	pyridine nucleotide disulfide oxidoreductase	0.000154577500539	1.23689917825e-05	-0.000142208508757
+UniRef50_V8HJS7	tRNA  ) methyltransferase	0.00196011383086	0.000241074861385	-0.00171903896948
+UniRef50_S2KIU7	Membrane protein	0.00013207073705	1.32938103015e-05	-0.000118776926749
+UniRef50_J1SZC4		0.000145270202608	6.22955009409e-05	-8.29747016671e-05
+UniRef50_C1DKJ3	Phospholipid glycerol acyltransferase	0.00133185126148	0.000717368514652	-0.000614482746828
+UniRef50_S5QXV6	Maltose maltodextrin binding protein	0.00455381029461	0.00149662323974	-0.00305718705487
+UniRef50_F0Y553	Expressed protein 	0.000180238616139	0.000195964807575	1.5726191436e-05
+UniRef50_B9KWV4	TRAP T family transporter, large inner membrane subunit DctM	0.0063494666167	0.00121023550967	-0.00513923110703
+UniRef50_B0U620	Uracil DNA glycosylase	0.00422517521247	0.0070304080696	0.00280523285713
+UniRef50_P26170	Bacteriochlorophyll synthase 33 kDa chain	0.00204032909728	0.000303927998483	-0.0017364010988
+UniRef50_D3QCC1	Preprotein translocase subunit YajC	0.00569370490703	0.00518537313347	-0.00050833177356
+UniRef50_Q6FFG0		0.000285604591901	0.00521362805372	0.00492802346182
+UniRef50_UPI00034A058C	hypothetical protein	9.53117149662e-06	1.4765715686e-05	5.23454418938e-06
+UniRef50_T0T503	Purine nucleoside phosphorylase	0.00411549997476	0.00173154365099	-0.00238395632377
+UniRef50_B1JPZ9	4 alpha L fucosyltransferase	0.00371269019079	0.000887072848379	-0.00282561734241
+UniRef50_Q3B1T5		0.000230385735401	0.000129744782966	-0.000100640952435
+UniRef50_M9VFM2		0.000215524649217	0.00531896826566	0.00510344361644
+UniRef50_Q82TC0	Shikimate kinase	1.09338540238e-05	2.53385884619e-05	1.44047344381e-05
+UniRef50_A0A037ZNE7		3.70585659355e-06	2.04860647923e-06	-1.65725011432e-06
+UniRef50_W0Z1T3		3.52420304268e-05	0.000324823701201	0.000289581670774
+UniRef50_B9L1J9	Glucose 1 phosphate adenylyltransferase	7.55557345605e-06	1.89216434114e-05	1.13660699553e-05
+UniRef50_A6UGW8	Replication protein C	6.71343246363e-05	2.68288280527e-05	-4.03054965836e-05
+UniRef50_X0VZY3	Marine sediment metagenome DNA, contig	3.34146686086e-05	4.45341773945e-05	1.11195087859e-05
+UniRef50_Q9LM59	Serine hydroxymethyltransferase 6	3.44136896306e-06	3.23871969501e-06	-2.0264926805e-07
+UniRef50_S4VW07		9.36517494721e-06	2.90803191283e-05	1.97151441811e-05
+UniRef50_Z0L1U0		0.000117466241311	6.5680157546e-05	-5.1786083765e-05
+UniRef50_F9EXE3	ABC superfamily ATP binding cassette transporter, ABC protein	7.65691660987e-05	0.00335121404494	0.00327464487884
+UniRef50_V5CIF7		0.000163649995166	0.00601329423573	0.00584964424056
+UniRef50_UPI0004721200	hypothetical protein, partial	0.00285905847589	0.0015243830532	-0.00133467542269
+UniRef50_C0Y0T7	Outer membrane efflux protein OprC	0.000185333083145	0.00710912580023	0.00692379271709
+UniRef50_R5IJ86		7.86499230762e-06	7.00435779071e-05	6.21785855995e-05
+UniRef50_UPI0003777D9D	hypothetical protein	8.63280112709e-05	4.39392337897e-05	-4.23887774812e-05
+UniRef50_B5Z6I2	Dihydroorotate dehydrogenase 	0.000124001033475	0.00238168731617	0.00225768628269
+UniRef50_UPI00038229EA	hypothetical protein	3.20161328594e-06	5.51067962041e-06	2.30906633447e-06
+UniRef50_A3NUG3	Chorismate synthase	7.72970542494e-06	1.69391159645e-05	9.20941053956e-06
+UniRef50_A7X623	Oxygen regulatory protein NreC	0.0191920643873	0.00745583850442	-0.0117362258829
+UniRef50_F0K7S4	RNA polymerase factor sigma 54	0.000175244481727	0.00111433118879	0.000939086707063
+UniRef50_UPI000360F77D	MULTISPECIES	5.047558275e-06	9.4472002404e-06	4.3996419654e-06
+UniRef50_UPI0003710793	hypothetical protein	8.16869670835e-06	2.98703780256e-05	2.17016813173e-05
+UniRef50_M4UM17	ABC type nitrate sulfonate bicarbonate transport systems, periplasmic component	1.1490588321e-05	3.47515069336e-05	2.32609186126e-05
+UniRef50_J7LCE3	Bacteriocin biosynthesis docking scaffold, SagD family domain protein	4.91334432829e-06	2.38654599701e-05	1.89521156418e-05
+UniRef50_I6U2S8	Bacitracin synthetase	0.00472041947654	0.00235910958567	-0.00236130989087
+UniRef50_Q5HRM1	Putative TrmH family tRNA rRNA methyltransferase	0.00721007724781	0.00264665943441	-0.0045634178134
+UniRef50_B9E7Z8		6.95629033494e-06	0.000287531179674	0.000280574889339
+UniRef50_P57000	Glutamine  tRNA ligase	0.000248509410305	0.0012208501096	0.000972340699295
+UniRef50_I9WK52	Putative transcriptional regulator	8.51456544092e-06	1.27067839189e-05	4.19221847798e-06
+UniRef50_UPI00029AF772	multidrug ABC transporter ATPase	4.86783439853e-06	9.5230203864e-05	9.03623694655e-05
+UniRef50_UPI00037E28CC	hypothetical protein	3.89083575445e-06	1.95965088421e-05	1.57056730877e-05
+UniRef50_A4WNG7		0.00139834225467	0.000336863161818	-0.00106147909285
+UniRef50_D4LM41	Nicotinate phosphoribosyltransferase	0.000791401467116	0.00180016746281	0.00100876599569
+UniRef50_UPI00036CD6B7	hypothetical protein	9.0346964645e-05	0.000226747481763	0.000136400517118
+UniRef50_V9VSG3	Membrane protein	3.6845904938e-06	4.30672761399e-05	3.93826856461e-05
+UniRef50_UPI0003C84C0F	PREDICTED	2.52184894783e-06	7.09465849191e-06	4.57280954408e-06
+UniRef50_U4V017	Putative ATPase	3.86884472306e-06	6.64978452407e-06	2.78093980101e-06
+UniRef50_P29848	Cysteine synthase B	0.00351775511621	0.00408884432719	0.00057108921098
+UniRef50_W1JGD7	Putative virulence factor 	0.000106762749124	0.000137088518217	3.0325769093e-05
+UniRef50_A0A010CAY1	Transposase DDE domain protein	5.80194012131e-06	4.01875688407e-05	3.43856287194e-05
+UniRef50_M4XIX4	Segregation and condensation protein B	0.000115793248112	0.000177901629643	6.2108381531e-05
+UniRef50_Q46899	CRISPR system Cascade subunit CasC	0.00255589136	0.000164827928474	-0.00239106343153
+UniRef50_D8JDE7	Patatin like phospholipase family protein	0.0001909709893	0.00653380607089	0.00634283508159
+UniRef50_UPI0002F963E4	hypothetical protein	3.87494576108e-06	0.000227321488507	0.000223446542746
+UniRef50_Q8ECQ4	50S ribosomal protein L3 glutamine methyltransferase	0.00341275751966	0.000927533107508	-0.00248522441215
+UniRef50_O30992	Cell division protein FtsZ	0.00143288102719	0.000600376854765	-0.000832504172425
+UniRef50_Q8CSE1	ABC transporter ATP binding protein	0.0199279445589	0.00439782279374	-0.0155301217652
+UniRef50_UPI000375F7D3	hypothetical protein	9.33658091582e-06	3.03375255766e-05	2.10009446608e-05
+UniRef50_A3V315		3.385428348e-06	1.48212097408e-06	-1.90330737392e-06
+UniRef50_UPI0002F27B8E	hypothetical protein	0.000379342389799	7.87116615847e-05	-0.000300630728214
+UniRef50_A4WQP1	Transposase, IS4 family	0.00258542675962	0.000287883786207	-0.00229754297341
+UniRef50_S4YCA7		3.98388373067e-05	5.84933959813e-06	-3.39894977086e-05
+UniRef50_I0JRX2	Oxidoreductase domain protein	0.0148029266812	0.00220034071325	-0.012602585968
+UniRef50_A0A023RY49	Amino acid transporter	0.000568639067231	0.0136865253765	0.0131178863093
+UniRef50_UPI000375F92B	hypothetical protein	3.1333447312e-05	0.000145241268137	0.000113907820825
+UniRef50_K9NRT8	GntR family transcriptional regulator	0.00104598797416	0.000839023511855	-0.000206964462305
+UniRef50_U5L6I9	Peptide ABC transporter permease	0.00629083227261	0.000273441393692	-0.00601739087892
+UniRef50_K1CTK9	Exoribonuclease RNase R 	0.000522684215462	0.000211953477904	-0.000310730737558
+UniRef50_P0A1U3		0.0022620912671	0.000679857449786	-0.00158223381731
+UniRef50_P0A1U5		0.00488689229256	0.00121363029532	-0.00367326199724
+UniRef50_F4D676	P type DNA transfer ATPase VirB11	0.000134336650837	0.00169894981947	0.00156461316863
+UniRef50_G6KV35	Leucyl tRNA synthetase	0.00709242505753	0.00180765180825	-0.00528477324928
+UniRef50_UPI00036AAC2D	hypothetical protein	0.000725934593951	0.0016196406101	0.000893706016149
+UniRef50_UPI000363377B	preprotein translocase subunit TatA	0.000167500209846	9.72262109357e-05	-7.02739989103e-05
+UniRef50_B4U203	DNA polymerase III subunit delta	0.00616056940915	0.00569712387738	-0.00046344553177
+UniRef50_U6LS15		2.09773158479e-05	2.58965322209e-05	4.919216373e-06
+UniRef50_P26281	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000710753886239	0.00582121212928	0.00511045824304
+UniRef50_G2JD06	Nitrate nitrite transporter	0.000391686871608	0.00496913304419	0.00457744617258
+UniRef50_W5XIV0	GTPase Obg	6.00124661948e-06	0.000180507408786	0.000174506162167
+UniRef50_D9SXB9	RNA methyltransferase, TrmH family, group 3	0.000813453900834	0.000562217853028	-0.000251236047806
+UniRef50_UPI00036CFE43	30S ribosomal protein S4	1.15099667491e-05	3.60512278245e-05	2.45412610754e-05
+UniRef50_UPI0003B544A3	sugar ABC transporter permease, partial	0.000116524994308	7.76142098383e-05	-3.89107844697e-05
+UniRef50_UPI0003820942	hypothetical protein	9.33889904595e-06	4.24841504538e-05	3.31452514079e-05
+UniRef50_A4X3E5	Peptide methionine sulfoxide reductase MsrA	8.95770439919e-05	7.41605483327e-05	-1.54164956592e-05
+UniRef50_P0CD78	Phosphoglycerate kinase	1.80786667541e-05	1.75598438896e-05	-5.188228645e-07
+UniRef50_A2SKF9	Transaldolase	0.000398596981438	0.000426021204917	2.7424223479e-05
+UniRef50_P28822	Dihydropteroate synthase	0.000162486569322	0.00690670643479	0.00674421986547
+UniRef50_A3M7P6	Ribosomal protein alanine acetyltransferase	0.00115556935363	0.00409314126729	0.00293757191366
+UniRef50_P75793	Putative formate acetyltransferase 3	0.00115775014527	8.78918765406e-05	-0.00106985826873
+UniRef50_B3ENQ2	Nucleoside diphosphate kinase	5.80555086048e-05	1.8373728785e-05	-3.96817798198e-05
+UniRef50_E6MZF0	Type III restriction enzyme, res subunit	4.89817459631e-05	0.00317073546965	0.00312175372369
+UniRef50_F0Y8H7		7.63187752143e-05	5.73782623539e-05	-1.89405128604e-05
+UniRef50_Q4KCW6	Putrescine binding periplasmic protein	0.00044131905324	0.000333087785229	-0.000108231268011
+UniRef50_UPI000311B789	hypothetical protein	0.000125671681966	9.28300095699e-06	-0.000116388681009
+UniRef50_B9KTG2	MCPG protein	0.00200485808078	0.00104179859644	-0.00096305948434
+UniRef50_A6V3S1	Aminoglycoside response regulator	0.00113790648718	0.000840350550291	-0.000297555936889
+UniRef50_S4ZTI3	Transcriptional regulator, ArsR family	0.00991548164412	0.00100232567726	-0.00891315596686
+UniRef50_U3T6X9		0.000313123746508	0.0065888410654	0.00627571731889
+UniRef50_Q2FIS2	Lipoteichoic acid synthase	0.0180724999167	0.00516016299855	-0.0129123369182
+UniRef50_UPI000429916D	auxin binding protein	0.000156945894524	5.92073176546e-05	-9.77385768694e-05
+UniRef50_I7E3Y1	Dimethylglycine dehydrogenase DmgdH	0.00841124977796	0.00176503145128	-0.00664621832668
+UniRef50_Q5HG72	Nuclease SbcCD subunit C	0.0086932971381	0.00180414432606	-0.00688915281204
+UniRef50_D3QDA5	Transcriptional regulator in cluster with Zn dependent hydrolase	0.025965632517	0.00306885720355	-0.0228967753134
+UniRef50_J3C3Q8	ABC type transport system, involved in lipoprotein release, permease component 	1.24131949863e-05	4.17031886517e-05	2.92899936654e-05
+UniRef50_Q2SFK9	Fatty acid desaturase	0.0003130537226	0.00475427407142	0.00444122034882
+UniRef50_T1XM99	IS1272 transposase, putative	0.0228006144587	0.00168799914101	-0.0211126153177
+UniRef50_Q8DWA7		0.00536707854546	0.00125727906036	-0.0041097994851
+UniRef50_O86428	Branched chain amino acid aminotransferase	0.00150456749969	0.0119892711355	0.0104847036358
+UniRef50_T0JJ14		4.95164365017e-05	0.000109893909305	6.03774728033e-05
+UniRef50_UPI0003C7D7D4	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase, partial	0.00332468007405	0.000248367509973	-0.00307631256408
+UniRef50_J9NXA3		3.23522183442e-05	1.5131295134e-05	-1.72209232102e-05
+UniRef50_Q28KF2	Beta lactamase like protein	0.000827968992086	0.000710101187567	-0.000117867804519
+UniRef50_U3TA62	Protein MurJ homolog	7.67768112925e-05	0.0090091469018	0.00893237009051
+UniRef50_UPI0003B2ED70	hypothetical protein	0.000302872276979	0.0001055617237	-0.000197310553279
+UniRef50_UPI00037CE74D	hypothetical protein	0.000167380120109	0.000495960199955	0.000328580079846
+UniRef50_A1VKF6	Non canonical purine NTP pyrophosphatase	0.000100766131415	1.84583176897e-05	-8.23078137253e-05
+UniRef50_M9S4Z2	Two component response regulator	0.00350680113038	0.000854724191782	-0.0026520769386
+UniRef50_X0TYQ9	Marine sediment metagenome DNA, contig	6.20870052873e-05	0.000464887789744	0.000402800784457
+UniRef50_Q1D759	50S ribosomal protein L18	0.00209067900516	0.00209383972068	3.16071552e-06
+UniRef50_Q8NW76		0.0163248401662	0.0043390240362	-0.01198581613
+UniRef50_Q2YKR5	sn glycerol 3 phosphate binding periplasmic protein UgpB	0.0113020420264	0.00512885430337	-0.00617318772303
+UniRef50_I9IAK6		3.03430917226e-05	9.66231899287e-05	6.62800982061e-05
+UniRef50_D7GF04	Methyltransferase	0.000173689872173	0.00852799974273	0.00835430987056
+UniRef50_E2BF63		6.72498732409e-06	4.43825240331e-05	3.7657536709e-05
+UniRef50_UPI000288A745	acetyltransferase, putative	0.000139910219213	6.70255690994e-05	-7.28846501136e-05
+UniRef50_G4BY47		6.47740175785e-05	0.000138814252332	7.40402347535e-05
+UniRef50_Q2FVV8	Transcriptional regulator, putative	0.026366630511	0.00277394652152	-0.0235926839895
+UniRef50_A6LU14		0.000130768818311	0.00266526098055	0.00253449216224
+UniRef50_UPI00034519AC	hypothetical protein	4.36631388227e-06	8.24783063907e-05	7.81119925084e-05
+UniRef50_Q0BYA7	DNA directed RNA polymerase subunit beta	1.15219613476e-05	4.63090441765e-06	-6.89105692995e-06
+UniRef50_A4WZ35		0.00277714744825	0.0126064353227	0.00982928787445
+UniRef50_L7WUA4		0.0184286427331	0.0014207531913	-0.0170078895418
+UniRef50_A3ZLI5	ISxac3 transposase	0.000124124491925	0.000203265995497	7.9141503572e-05
+UniRef50_A5EBB8		0.000360331763738	8.08771114885e-05	-0.00027945465225
+UniRef50_UPI0003B3E24D	malto oligosyltrehalose synthase	5.0609168511e-06	3.16133170435e-06	-1.89958514675e-06
+UniRef50_X5WY92		0.00012126006511	5.57941274668e-05	-6.54659376432e-05
+UniRef50_Q6GH07	Protein msa	0.00157833778173	0.000456675317307	-0.00112166246442
+UniRef50_B9JUA7		0.000126336048397	2.67411298706e-05	-9.95949185264e-05
+UniRef50_Q09DS6		2.12191796861e-05	2.18025664112e-05	5.833867251e-07
+UniRef50_A6TFR2	Glycerol kinase	2.14436358673e-05	0.00012704193748	0.000105598301613
+UniRef50_I0EP78	Flagellar hook protein FlgE	6.31599535162e-05	0.00536453959754	0.00530137964402
+UniRef50_UPI000477B830	hypothetical protein	5.75087152162e-06	0.000103431977904	9.76811063824e-05
+UniRef50_B7V0M2	Carbonic anhydrase	0.00209662629996	0.00114413722499	-0.00095248907497
+UniRef50_M4WR94		0.00371033858129	0.000449720870858	-0.00326061771043
+UniRef50_P0CL53	S glutathione dehydrogenase	0.0130080083911	0.00351594955543	-0.00949205883567
+UniRef50_M4Z4L3		0.000417673142503	7.79680827666e-05	-0.000339705059736
+UniRef50_Q87TS4	Ribosomal RNA small subunit methyltransferase G	7.79932963265e-05	5.37886474976e-05	-2.42046488289e-05
+UniRef50_A6QFI0	UPF0344 protein NWMN_0840	0.0289202551681	0.000937519911225	-0.0279827352569
+UniRef50_A8ZR93	Lytic transglycosylase catalytic	2.97601723133e-05	8.84723989154e-05	5.87122266021e-05
+UniRef50_A3PHM8	DHC, diheme cytochrome c	0.00913202011268	0.00047889195437	-0.00865312815831
+UniRef50_UPI0003B2EC71	phosphoadenosine phosphosulfate reductase	6.73205937687e-06	1.25100918125e-05	5.77803243563e-06
+UniRef50_P13669	Mannosyl D glycerate transport metabolism system repressor MngR	0.0054728774589	0.00114997848139	-0.00432289897751
+UniRef50_UPI00030F326B	sulfate transporter	0.000180490136582	6.12976705108e-05	-0.000119192466071
+UniRef50_N2UC59	Sodium symporter family protein	0.000692441652498	0.000294825329643	-0.000397616322855
+UniRef50_P77704		0.00344755244063	0.0014625824099	-0.00198497003073
+UniRef50_UPI0003C17542	PREDICTED	1.81867901376e-06	3.1535644911e-06	1.33488547734e-06
+UniRef50_Q9CGB9		0.00516425235081	0.00132289030539	-0.00384136204542
+UniRef50_Q4JXF0	Phosphoribosylformylglycinamidine synthase 2	1.73257023036e-05	6.01630676691e-06	-1.13093955367e-05
+UniRef50_S5CWK9	AraC type DNA binding domain containing protein	0.00148293832789	0.00824484400211	0.00676190567422
+UniRef50_D3QCA4	Dihydrofolate synthase Folylpolyglutamate synthase	0.0201196334422	0.00412168169721	-0.015997951745
+UniRef50_T2DYR1	Tryptophan tyrosine permease family protein	0.0014251671524	0.000706107667681	-0.000719059484719
+UniRef50_UPI00039563BC	PREDICTED	5.85183578897e-06	3.66242968249e-05	3.07724610359e-05
+UniRef50_Q4FVL5	Translation initiation factor IF 2	4.34058247019e-05	0.00902234339293	0.00897893756823
+UniRef50_UPI0003C10D8C		6.76318873025e-05	0.000163179302655	9.55474153525e-05
+UniRef50_UPI00016A626E	Rh like protein ammonium transporter, partial	0.000275204463811	0.000313272223095	3.8067759284e-05
+UniRef50_A6LYM0	Antibiotic transport associated permease SpaG MutG	0.000531745078117	0.00257384886395	0.00204210378583
+UniRef50_A3DGF9	Urease subunit beta	1.80321748928e-05	3.1768406545e-05	1.37362316522e-05
+UniRef50_UPI0003B4EA64	isoleucyl tRNA synthase	2.00830835284e-06	3.04566037397e-06	1.03735202113e-06
+UniRef50_F8J5A0		0.00293149173819	0.000446333078449	-0.00248515865974
+UniRef50_T1CKH0	Coproporphyrinogen dehydrogenase 	4.47468511666e-05	5.6907307202e-05	1.21604560354e-05
+UniRef50_UPI0003B37585	ABC transporter	7.69810493281e-06	1.32400392425e-05	5.54193430969e-06
+UniRef50_UPI000478F27B	ATP dependent DNA helicase Rep	6.29530469794e-06	8.40662190226e-06	2.11131720432e-06
+UniRef50_UPI00047A6B84	PadR family transcriptional regulator	2.25093244406e-05	2.39900369951e-05	1.4807125545e-06
+UniRef50_Q5N127	Transaldolase	0.000121508365511	0.0055793832765	0.00545787491099
+UniRef50_G8PPN5	UbiD family decarboxylase	0.00146189227519	0.000119884995349	-0.00134200727984
+UniRef50_L9MQV1	FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate  pyruvate transaminase multi domain protein	0.000294357056807	0.00528564095441	0.0049912838976
+UniRef50_P0A0A1	Pyruvate dehydrogenase E1 component subunit beta	0.027235855687	0.0083852322454	-0.0188506234416
+UniRef50_M7E6J0	Endonuclease	0.00333752629278	0.00293235882669	-0.00040516746609
+UniRef50_UPI00046FABF2	chromosome partitioning protein ParB	2.83665935138e-05	0.000649798958965	0.000621432365451
+UniRef50_UPI000265461A	PREDICTED	5.87021771306e-05	6.7981617608e-05	9.2794404774e-06
+UniRef50_UPI00034878D9	hypothetical protein	4.03583456268e-06	9.79875988216e-06	5.76292531948e-06
+UniRef50_D2ZS12		0.00364633829529	0.000609482152274	-0.00303685614302
+UniRef50_I6U1N8	Transaminase	0.00573008636484	0.00212094796351	-0.00360913840133
+UniRef50_UPI000368E802	hypothetical protein	2.51454239698e-05	0.000110367353569	8.52219295992e-05
+UniRef50_O27494	Phosphoribosylamine  glycine ligase	0.00498736372117	0.00183601707575	-0.00315134664542
+UniRef50_Q3IV08		0.0153764965306	0.0050293378544	-0.0103471586762
+UniRef50_A3PH60		0.00235191963759	0.000886585562473	-0.00146533407512
+UniRef50_Q3IV03		0.0159279989687	0.00291149116383	-0.0130165078049
+UniRef50_Q3IV02		0.00532889663779	0.0162254832996	0.0108965866618
+UniRef50_A2BMY4	3 methyl 2 oxobutanoate hydroxymethyltransferase	5.25650800834e-05	2.5614875124e-05	-2.69502049594e-05
+UniRef50_F8IMM6	Glycosyl transferase	0.000223678625035	0.000215559638834	-8.118986201e-06
+UniRef50_N1M6P3		0.000104187818542	0.000551472896438	0.000447285077896
+UniRef50_Q46829	6 phospho beta glucosidase BglA	0.0136640566702	0.0120670958378	-0.0015969608324
+UniRef50_UPI0003F4B23B	oligo 1,6 glucosidase	1.52507641215e-05	5.32197915619e-06	-9.92878496531e-06
+UniRef50_UPI0004675CB0	hypothetical protein	5.45412939885e-05	0.000450865198773	0.000396323904785
+UniRef50_UPI000375AE50	hypothetical protein	0.000254819395972	3.80319130444e-05	-0.000216787482928
+UniRef50_A6LW27	Integral membrane sensor signal transduction histidine kinase	0.000355358735704	0.000663328099287	0.000307969363583
+UniRef50_P77689	FeS cluster assembly protein SufD	0.00273507311466	0.00020250288357	-0.00253257023109
+UniRef50_A7HC61	LexA repressor	2.02832151921e-05	9.69431146661e-06	-1.05889037255e-05
+UniRef50_UPI0004675E29	transcriptional regulator	9.96341376088e-06	1.65405843639e-05	6.57717060302e-06
+UniRef50_P22045	Prostaglandin F synthase	2.0691278754e-05	0.001564887201	0.00154419592225
+UniRef50_W1N7X0		9.03548969582e-06	7.02850365767e-06	-2.00698603815e-06
+UniRef50_UPI0002631758	branched chain alpha keto acid dehydrogenase subunit E2, partial	1.24809066412e-05	0.000179047083301	0.00016656617666
+UniRef50_UPI0002194DF2	fructose bisphosphate aldolase	6.75158688524e-05	0.000157608002341	9.00921334886e-05
+UniRef50_UPI0003A0B379	MULTISPECIES	1.59667648836e-05	1.76370728167e-05	1.6703079331e-06
+UniRef50_E2XTA7		0.000393295952549	0.00068527932143	0.000291983368881
+UniRef50_UPI0003B324DC	flagellar protein FlgJ	3.70782152816e-05	3.52032581246e-05	-1.874957157e-06
+UniRef50_P0AEE1	Protein DcrB	0.00102445001406	0.000344727671428	-0.000679722342632
+UniRef50_U7G0Z6		1.3034313471e-05	1.06968708503e-05	-2.3374426207e-06
+UniRef50_Q6D2R7	NADH quinone oxidoreductase subunit A	0.00789799848317	0.00089377202969	-0.00700422645348
+UniRef50_A6LW63	PAS PAC sensor signal transduction histidine kinase	0.00046856308741	0.000300764331946	-0.000167798755464
+UniRef50_UPI0003B301E5	molybdopterin biosynthesis protein MoeB	1.69975706373e-05	1.31031838172e-05	-3.8943868201e-06
+UniRef50_UPI00034D4353	hypothetical protein	5.78149379656e-06	5.66294015901e-06	-1.1855363755e-07
+UniRef50_A8HYF7	Lon protease	0.0111072949751	0.00241915861826	-0.00868813635684
+UniRef50_W5X361	Dienelactone hydrolase	4.43675117782e-05	3.61936935467e-05	-8.1738182315e-06
+UniRef50_M2PIC6		6.96815720682e-05	0.000411224001447	0.000341542429379
+UniRef50_UPI0003B51C8D	16S rRNA methyltransferase	1.05152665753e-05	1.71144974622e-05	6.5992308869e-06
+UniRef50_A0A031MCT4		4.0036943105e-05	0.000110894076056	7.0857132951e-05
+UniRef50_Q8YUR4	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.42216898055e-05	1.4829435575e-05	6.077457695e-07
+UniRef50_C5AMM3		0.000228628747941	6.5227972966e-05	-0.000163400774975
+UniRef50_UPI0003776EC3	hypothetical protein	0.000177610244321	2.53321278833e-05	-0.000152278116438
+UniRef50_P0AAV5		0.00190242462631	0.00137766548012	-0.00052475914619
+UniRef50_UPI000395E276	LysR family transcriptional regulator	1.46936121625e-05	1.17722083781e-05	-2.9214037844e-06
+UniRef50_F2IZR6	Multiple antibiotic resistance  related protein	0.00265442287033	0.000350871332905	-0.00230355153742
+UniRef50_A5UNV0		0.00287233501005	0.00180400463203	-0.00106833037802
+UniRef50_A5UNV7		0.00542790877622	0.00159882599776	-0.00382908277846
+UniRef50_A5UNV5		0.00980444271529	0.000488126785439	-0.00931631592985
+UniRef50_F0RJD3		0.000107750520127	0.00930458482624	0.00919683430611
+UniRef50_A5UNV8		0.00300616083539	0.000949653838629	-0.00205650699676
+UniRef50_UPI00037EDF68	hypothetical protein, partial	5.76687252304e-05	5.32863231909e-05	-4.3824020395e-06
+UniRef50_UPI0002D3C59D	hypothetical protein	0.00133156812096	0.000573344948768	-0.000758223172192
+UniRef50_UPI0003C02B7D		9.63208605814e-05	7.31032179182e-05	-2.32176426632e-05
+UniRef50_I0C596		0.0202072204813	0.00545577216337	-0.0147514483179
+UniRef50_P37758	Nitrate nitrite transporter NarU	0.00833438456861	0.00216513945137	-0.00616924511724
+UniRef50_R6IJD9		7.40681185352e-05	0.000239769990679	0.000165701872144
+UniRef50_M5ABJ7	Glucuronide carrier protein	0.000177208115904	0.00495765368167	0.00478044556577
+UniRef50_V4QZ84	Acyl homoserine lactone synthase	7.09270963142e-05	0.000203083603901	0.000132156507587
+UniRef50_P21911	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.44462913503e-05	5.48653476874e-05	3.04190563371e-05
+UniRef50_UPI0003B43349	cell division protein FtsZ	1.27285567621e-05	2.25802472034e-05	9.8516904413e-06
+UniRef50_F4CS06	Plasmid pRiA4b ORF 3 family protein	0.000265941673947	3.04960475146e-05	-0.000235445626432
+UniRef50_UPI0003B37305	damage inducible protein	2.61719226007e-05	6.35754604664e-06	-1.98143765541e-05
+UniRef50_G5JU10	Beta lactamase	0.00443754564099	0.00308141360359	-0.0013561320374
+UniRef50_F8IME6		0.00905793374031	0.000751148010347	-0.00830678572996
+UniRef50_M9VFD9	Osmosensitive K+ channel histidine kinase KdpD	0.000245182008446	0.00494545778568	0.00470027577723
+UniRef50_C5XM13		0.000749407395544	0.000400823450487	-0.000348583945057
+UniRef50_Q9RR86	BrkB protein, putative	0.000187060606053	0.0342890663283	0.0341020057222
+UniRef50_A3VLJ6		0.00047719809492	2.54901036153e-05	-0.000451707991305
+UniRef50_F3BY18		0.000228318138423	0.00159630134707	0.00136798320865
+UniRef50_A4X0R2		0.000159010434035	2.04158501804e-05	-0.000138594583855
+UniRef50_E2RL98		1.47268616834e-05	4.4154153345e-05	2.94272916616e-05
+UniRef50_D1AC29		6.53362091906e-06	0.000773342287819	0.0007668086669
+UniRef50_UPI000379F62F	hypothetical protein	0.00029866656003	0.000615537706897	0.000316871146867
+UniRef50_Q1BYF5	Undecaprenyl diphosphatase 1	0.000549105265091	0.00438135360418	0.00383224833909
+UniRef50_UPI000377866C	hypothetical protein	7.52066092071e-06	4.14762725698e-05	3.39556116491e-05
+UniRef50_P41775	Cytochrome c oxidase subunit 3	5.00812724938e-05	9.41640014919e-06	-4.06648723446e-05
+UniRef50_P39410	Putative kinase YjjJ	0.00223067840763	0.000660017290752	-0.00157066111688
+UniRef50_C5N358	Hydrolase, alpha beta domain protein	0.00582963178402	0.00313047566386	-0.00269915612016
+UniRef50_UPI00047026FA	hypothetical protein	1.56940472848e-05	4.93060925209e-05	3.36120452361e-05
+UniRef50_Q966L6	Protein LET 504	1.81714790342e-05	2.90095512934e-06	-1.52705239049e-05
+UniRef50_E8U6I4	Agmatine deiminase	0.000495573374271	0.0385572948963	0.038061721522
+UniRef50_P0AAR2	Hha toxicity modulator TomB	0.000608032218492	0.000551993841485	-5.6038377007e-05
+UniRef50_Q2NEH1	Glutamyl tRNA amidotransferase subunit D	0.00213125651245	0.000504942135218	-0.00162631437723
+UniRef50_G2TGN8	Two component transcriptional regulator	0.000659194591949	0.00292783470225	0.0022686401103
+UniRef50_E3F3T4		1.07515869185e-05	1.242524235e-05	1.6736554315e-06
+UniRef50_X2N7K6	Formate acetyltransferase	0.00252833398727	0.00071441402613	-0.00181391996114
+UniRef50_UPI0003B58C95	multidrug ABC transporter	7.1695294091e-05	5.65920786557e-05	-1.51032154353e-05
+UniRef50_K1Z738		2.03233561387e-05	0.000271320891048	0.000250997534909
+UniRef50_Q5KUG7	UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.0294520290361	0.0131984826963	-0.0162535463398
+UniRef50_Q46BI1	Acetate kinase	0.000289521512523	0.00638616684389	0.00609664533137
+UniRef50_P61607	LexA repressor	2.97750009218e-05	1.42987522354e-05	-1.54762486864e-05
+UniRef50_D3QDU9	Flavohemoprotein	0.0196931207744	0.00782813611027	-0.0118649846641
+UniRef50_D4MG24	Transcriptional regulator, GntR family	0.0050247159323	0.00245699003735	-0.00256772589495
+UniRef50_Q02R92	DNA mismatch repair protein MutS	0.000611512581595	0.000153992808546	-0.000457519773049
+UniRef50_UPI0003F9F77C	D ribose transporter ATP binding protein	3.09489530768e-05	9.48403315576e-06	-2.1464919921e-05
+UniRef50_Q8KFI9	1 deoxy D xylulose 5 phosphate synthase	2.62120232771e-06	0.000102190534174	9.95693318463e-05
+UniRef50_A5WDL1	Peptidoglycan glycosyltransferase	0.000128251185346	0.00459016966253	0.00446191847718
+UniRef50_P76052	p aminobenzoyl glutamate hydrolase subunit B	0.00183645087652	0.000896748700845	-0.000939702175675
+UniRef50_X5K0B8	Hydrolase, haloacid dehalogenase like family	0.000387407004267	0.00163530484638	0.00124789784211
+UniRef50_V9VVE0	Gene transfer agent protein	0.00427054470096	0.00073988869109	-0.00353065600987
+UniRef50_Q9CH00	Ribonuclease R 1	4.76824406995e-05	0.00241957351765	0.00237189107695
+UniRef50_Q1AVY9	Carbamoyl phosphate synthase large chain	1.74263682928e-05	1.5494813862e-05	-1.9315544308e-06
+UniRef50_O33812		0.00953393811414	0.00386583175167	-0.00566810636247
+UniRef50_Q2L0A6	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	9.31242206544e-06	1.24614551712e-05	3.14903310576e-06
+UniRef50_A0LK05	2 dehydro 3 deoxyphosphooctonate aldolase	0.000227401198102	0.00312148464555	0.00289408344745
+UniRef50_UPI0003811395	hypothetical protein	1.5088151062e-06	3.59373027195e-06	2.08491516575e-06
+UniRef50_C5BMI1	Alkaline phosphatase like protein	1.4521173139e-05	1.44685133896e-05	-5.26597494e-08
+UniRef50_UPI0004713F18	2 hydroxy acid oxidase	2.58571442446e-06	1.39020477297e-05	1.13163333052e-05
+UniRef50_UPI000174498F	hypothetical protein	4.91817154362e-06	0.000467813347424	0.00046289517588
+UniRef50_P0AA48	Low affinity putrescine importer PlaP	0.00298804690311	0.00771712965479	0.00472908275168
+UniRef50_UPI0004575852	PREDICTED	2.62061346541e-05	6.00618934063e-06	-2.01999453135e-05
+UniRef50_UPI00036CD191	hypothetical protein	0.00011193928794	0.000106409936877	-5.529351063e-06
+UniRef50_S4NIZ2		0.000193173714911	0.000176071780584	-1.7101934327e-05
+UniRef50_UPI00036F2A19	hypothetical protein	0.000147837305029	4.63322216062e-05	-0.000101505083423
+UniRef50_C5WG14	Two component system histidine kinase	0.00570253580177	0.00252506789771	-0.00317746790406
+UniRef50_H1FIN1	UPF0047 protein yjbQ	1.85040215336e-05	2.43758145819e-05	5.8717930483e-06
+UniRef50_T2END3		0.00158086830529	0.000632418901693	-0.000948449403597
+UniRef50_Q6G082	Ribonuclease 3	1.24015136143e-05	1.00536314289e-05	-2.3478821854e-06
+UniRef50_R4ZTI0		0.000459605628995	0.000103559335537	-0.000356046293458
+UniRef50_UPI00037740DE	hypothetical protein	0.0010601998134	0.000870423298282	-0.000189776515118
+UniRef50_A1U1Z4	Glyceraldehyde 3 phosphate dehydrogenase, type I	0.000449277468427	0.00747387965536	0.00702460218693
+UniRef50_A9CJZ7	Ring hydroxylating dioxygenase, alpha subunit	0.00273621293444	0.00131599437598	-0.00142021855846
+UniRef50_B9JQX1	Methionyl tRNA formyltransferase	0.0014316480394	1.91209035328e-05	-0.00141252713587
+UniRef50_UPI000471E6E8	phosphoenolpyruvate protein phosphotransferase, partial	3.38525803765e-06	0.000158695280669	0.000155310022631
+UniRef50_Q8YBF1	Respiratory nitrate reductase 1 alpha chain	0.00137673749167	0.000432457356817	-0.000944280134853
+UniRef50_T1BJ38	Cysteine desulfurase activator complex subunit SufB 	5.39266585426e-05	0.000118777381046	6.48507225034e-05
+UniRef50_A5CSL4	tRNA dimethylallyltransferase	4.82717611123e-06	1.67596101918e-05	1.19324340806e-05
+UniRef50_UPI0003F913CD	hypothetical protein	5.48414557777e-05	1.37381098193e-05	-4.11033459584e-05
+UniRef50_D4H9Q4	Hydrolase, P loop family	0.000188115941288	0.00261631902662	0.00242820308533
+UniRef50_F4ALX4		4.92851437283e-05	2.18202381571e-05	-2.74649055712e-05
+UniRef50_UPI00036E3CC6	hypothetical protein	8.41164703013e-05	7.26797543879e-05	-1.14367159134e-05
+UniRef50_UPI00035E6B92	transcriptional regulator	2.43289991114e-05	1.87278587453e-05	-5.6011403661e-06
+UniRef50_D3SBH7	TRAP transporter, 4TM 12TM fusion protein	0.00229904214979	0.000487298686803	-0.00181174346299
+UniRef50_G7M624	Aryl alcohol dehydrogenase )	0.000470454886268	0.000375827733933	-9.4627152335e-05
+UniRef50_R0X4D2		0.000603455780612	0.000557529779188	-4.5926001424e-05
+UniRef50_P36881	Putative phosphotransferase enzyme IIA component YadI	0.000258552047156	0.000404543431768	0.000145991384612
+UniRef50_UPI00036FCC75	MULTISPECIES	1.80703048317e-06	3.33633624269e-05	3.15563319437e-05
+UniRef50_Q3J385		0.00203284515019	0.000312592202392	-0.0017202529478
+UniRef50_Q7VJ82	Bifunctional DNA directed RNA polymerase subunit beta beta	2.3719071078e-06	0.00170375022228	0.00170137831517
+UniRef50_D9UIB7	Predicted protein	9.05477073264e-06	6.26399583813e-05	5.35851876487e-05
+UniRef50_Q9KPG5	UDP N acetylmuramoylalanine  D glutamate ligase	0.00290066441263	0.000393770134503	-0.00250689427813
+UniRef50_E6MXZ0	TonB dependent receptor family protein	0.000190730608132	0.00301469983085	0.00282396922272
+UniRef50_UPI00047DE0AF	hypothetical protein	1.32339094595e-06	4.57882141793e-05	4.44648232333e-05
+UniRef50_UPI00030CFC56	hypothetical protein	4.51741230956e-05	6.87548365251e-05	2.35807134295e-05
+UniRef50_I7GUS8		0.000129436364315	0.00678139646627	0.00665196010196
+UniRef50_G7U596	Metal binding protein	0.000148616531043	0.00341042366722	0.00326180713618
+UniRef50_UPI0003B7B946	polyvinylalcohol dehydrogenase, partial	3.35797499055e-05	0.0014815281276	0.00144794837769
+UniRef50_A6LQD9	ABC type sugar transport system periplasmic component like protein	9.83036429352e-05	0.00201469412853	0.00191639048559
+UniRef50_UPI0003B45615	thioesterase	1.75349542967e-05	4.18046653071e-05	2.42697110104e-05
+UniRef50_Q5LSN8	Polyphosphate kinase 2, putative	0.00668041147604	0.00197688909845	-0.00470352237759
+UniRef50_Q71X09	Methionine import ATP binding protein MetN 2	0.0167797351048	0.00608480506723	-0.0106949300376
+UniRef50_Q6F9B4		0.000176946557275	0.00500790138682	0.00483095482954
+UniRef50_Q8CT75		0.0111303634878	0.00575541861743	-0.00537494487037
+UniRef50_P74038	Ribosomal RNA small subunit methyltransferase I	3.19758083414e-05	3.69930940437e-05	5.0172857023e-06
+UniRef50_UPI000466458A	DNA gyrase subunit B	1.37382358216e-05	1.63970136493e-05	2.6587778277e-06
+UniRef50_O26310	DNA polymerase PolB subunit 2	0.00139160805613	0.000763520081072	-0.000628087975058
+UniRef50_UPI0003C19B5B		1.41493308036e-05	2.04089604829e-05	6.2596296793e-06
+UniRef50_UPI00035B52D5	hypothetical protein	1.62168177859e-06	2.16345178519e-06	5.417700066e-07
+UniRef50_A0A024EA09		0.000179908605589	4.18531149599e-05	-0.000138055490629
+UniRef50_G7LZT7		0.00107182521116	0.00152511516917	0.00045328995801
+UniRef50_B1L5U5	Inosine 5 monophosphate dehydrogenase	2.54568501145e-05	4.69966367946e-06	-2.0757186435e-05
+UniRef50_L1K6E3		0.00117968006452	0.000123077783314	-0.00105660228121
+UniRef50_UPI000455F431	GroES like protein	5.47771392884e-06	4.56625864528e-05	4.0184872524e-05
+UniRef50_UPI000476EB30	hypothetical protein	1.45388363124e-05	1.44258233517e-05	-1.130129607e-07
+UniRef50_K0HYU8	M13 family metallopeptidase	6.04622512861e-05	0.00513701151942	0.00507654926813
+UniRef50_U7NU39		9.86552238538e-05	0.000121799384922	2.31441610682e-05
+UniRef50_A8EQW9	Glutamate  tRNA ligase 1	3.98890354539e-06	0.00781350416051	0.00780951525696
+UniRef50_Q899J9	Methyl accepting chemotaxis protein	0.000433924224537	0.00150575952633	0.00107183530179
+UniRef50_M5RGX7		0.00097789166152	0.000232774572528	-0.000745117088992
+UniRef50_UPI0003B60AC8	glycine betaine ABC transporter permease	4.51321383489e-05	1.41719597858e-05	-3.09601785631e-05
+UniRef50_F0XWS6		1.1056035514e-05	0.000185317500743	0.000174261465229
+UniRef50_UPI0003EF099D	cytochrome d terminal oxidase subunit 1	9.25375555611e-06	1.25964721614e-05	3.34271660529e-06
+UniRef50_B4U5I2	Cationic amino acid transporter APC superfamily	0.00710541293312	0.00415860430499	-0.00294680862813
+UniRef50_D7UQD7	Nitrogenase reductase 	0.000511223512481	4.59303523303e-05	-0.000465293160151
+UniRef50_A6LZK3	Histidine kinase	0.000128834808487	0.00198130399334	0.00185246918485
+UniRef50_UPI0003F7F30F	alpha amylase	2.64116661265e-05	1.58503773781e-05	-1.05612887484e-05
+UniRef50_Q1IYB4	ATPase AAA 2	0.000167731323782	0.0196485216957	0.0194807903719
+UniRef50_UPI0003646AB7	hypothetical protein	1.90261930325e-05	6.83758730463e-05	4.93496800138e-05
+UniRef50_A7HQ39	Two component transcriptional regulator, winged helix family	0.0063573841682	0.00087734414176	-0.00548004002644
+UniRef50_Q9RZT2	Chromosome partitioning ATPase, putative, ParA family	0.000109416228655	0.0193749325695	0.0192655163408
+UniRef50_UPI0003724B15	hypothetical protein	8.27464267755e-05	2.76826928114e-05	-5.50637339641e-05
+UniRef50_A8LMF7	Glutamate racemase	0.00182214234583	0.000834012586967	-0.000988129758863
+UniRef50_UPI00045E66ED	branched chain amino acid ABC transporter substrate binding protein	0.000140867393682	3.78025807639e-05	-0.000103064812918
+UniRef50_P39398	L galactonate transporter	0.00467330142122	0.000570364215017	-0.0041029372062
+UniRef50_Q3JG68		0.000129740521982	1.86745122691e-06	-0.000127873070755
+UniRef50_P49988	RNA polymerase sigma 54 factor	0.00043980907313	0.000618918254377	0.000179109181247
+UniRef50_F2ZMW7		1.6764429749e-05	2.33164659022e-05	6.5520361532e-06
+UniRef50_I7FLW8	General substrate transporter	0.000130768818311	0.00314693467617	0.00301616585786
+UniRef50_UPI00035EEFC1	hypothetical protein	4.25659903294e-06	7.22230953345e-06	2.96571050051e-06
+UniRef50_M9VER6	Tat  pathway signal sequence	0.000144446169206	0.00499899998622	0.00485455381701
+UniRef50_T0T7Z3		0.00406131978331	0.00199754532221	-0.0020637744611
+UniRef50_UPI00036133DB	hypothetical protein	3.06535260265e-06	9.97980540071e-06	6.91445279806e-06
+UniRef50_Q5F507		0.000255058100582	0.00119633308451	0.000941274983928
+UniRef50_UPI0004118E6E	hypothetical protein	9.72576520301e-07	5.91021113973e-06	4.93763461943e-06
+UniRef50_A7IES2	Ribonuclease HII	0.00373555808006	0.00309268650577	-0.00064287157429
+UniRef50_A3PSB1	Flagellar FlbT family protein	0.017075922513	0.000528925442146	-0.0165469970709
+UniRef50_Q6D6Y6	Putrescine aminotransferase	0.00207276499816	0.000641721214839	-0.00143104378332
+UniRef50_A3W182	Membrane protein, putative	0.000299936445893	4.08797015277e-05	-0.000259056744365
+UniRef50_C4I8A2	Hydrolase, isochorismatase family	0.000355090537122	0.00664255795222	0.0062874674151
+UniRef50_F8LGD6		0.00741275880412	0.00179824250136	-0.00561451630276
+UniRef50_P0AG29		0.000585328109888	0.00412069821203	0.00353537010214
+UniRef50_A3PNN1		0.000459032163423	0.000301963469432	-0.000157068693991
+UniRef50_UPI000374CA9B	hypothetical protein	6.78669976031e-07	3.94068635212e-05	3.87281935452e-05
+UniRef50_Q28JJ3	Flagellar protein FlaF putative	7.54072651422e-05	7.87711804044e-05	3.3639152622e-06
+UniRef50_A3M4L6		0.000100484291618	0.00831216837324	0.00821168408162
+UniRef50_Q3IUZ0		0.0222175813563	0.00345301351331	-0.018764567843
+UniRef50_E6SBU2		1.15663865864e-05	6.90167445712e-05	5.74503579848e-05
+UniRef50_R7I998		6.84144707043e-06	1.68875394217e-05	1.00460923513e-05
+UniRef50_UPI000350D37B	PREDICTED	1.00740244864e-05	0.000121197006228	0.000111122981742
+UniRef50_L0GGI8	Lytic murein transglycosylase B	0.000859989451478	0.000196441267312	-0.000663548184166
+UniRef50_B9DJG9	3 dehydroquinate dehydratase	0.00654507941753	0.0037527257455	-0.00279235367203
+UniRef50_X0RZM7	Marine sediment metagenome DNA, contig	2.69476050868e-05	0.000807289499169	0.000780341894082
+UniRef50_X5JHV8	Protein serine threonine phosphatase	9.38611690351e-06	9.07818527811e-05	8.13957358776e-05
+UniRef50_A7NB32	3 methyl 2 oxobutanoate hydroxymethyltransferase	7.28978314783e-06	1.21393645337e-05	4.84958138587e-06
+UniRef50_UPI0003068E5B	hypothetical protein	4.90837323417e-06	1.04605030627e-05	5.55212982853e-06
+UniRef50_R0FLE9		6.41070643976e-05	4.10112958624e-05	-2.30957685352e-05
+UniRef50_UPI0003767355	hypothetical protein, partial	4.48491287115e-05	5.27730978526e-05	7.9239691411e-06
+UniRef50_M9RMU0		9.07621379592e-05	5.95721723422e-05	-3.1189965617e-05
+UniRef50_A3DHY6	Ribosomal RNA small subunit methyltransferase G	0.000622587460836	0.000246782762008	-0.000375804698828
+UniRef50_UPI00026579B9	PREDICTED	2.25301498103e-05	6.50686619832e-05	4.25385121729e-05
+UniRef50_E7KDY4	Muc1p	1.23892750845e-06	6.04787386056e-06	4.80894635211e-06
+UniRef50_A9ALI4	ABC transporter related	7.59191295635e-05	7.04084354474e-05	-5.5106941161e-06
+UniRef50_Q0T0I4	Ribosomal RNA large subunit methyltransferase G	0.00408789992152	0.000982584687032	-0.00310531523449
+UniRef50_Q5ZWB8	UPF0234 protein lpg1167	1.24908262142e-05	3.60989349979e-05	2.36081087837e-05
+UniRef50_Q9KGL2	Ribosomal RNA small subunit methyltransferase I	0.0214639256792	0.0077635756028	-0.0137003500764
+UniRef50_Q5LWK7	ABC transporter, periplasmic substrate binding protein	0.00957077247162	0.00197503810121	-0.00759573437041
+UniRef50_Q3JQP4		7.00859601585e-05	0.000464327058432	0.000394241098274
+UniRef50_Q62IJ6	Potassium transporting ATPase A chain	4.14644576382e-06	0.00202179610521	0.00201764965945
+UniRef50_X1YF14		1.26257820794e-05	1.01928529081e-05	-2.4329291713e-06
+UniRef50_L2FGS4	Cvnh domain containing protein	4.28018492752e-06	7.62611124375e-06	3.34592631623e-06
+UniRef50_S9TEG5	General secretory system II protein E domain containing protein	1.84888007097e-05	0.00016967481339	0.00015118601268
+UniRef50_O24982	Apolipoprotein N acyltransferase	0.000113245796655	0.00367326214924	0.00356001635259
+UniRef50_D0IRT5	Arginine permease	0.000181606908375	0.00392159166488	0.00373998475651
+UniRef50_P21179	Catalase HPII	0.0017848975057	0.000419664454578	-0.00136523305112
+UniRef50_U5MNZ4	Beta glucanase BglA	0.000216207672803	0.0013536222542	0.0011374145814
+UniRef50_UPI00037A554B	hypothetical protein	9.89219590283e-06	3.29521771553e-05	2.30599812525e-05
+UniRef50_UPI0003812998	hypothetical protein	9.71982559687e-06	6.82464114948e-06	-2.89518444739e-06
+UniRef50_G3XD19	O antigen translocase	0.000886066839104	0.000427856611132	-0.000458210227972
+UniRef50_Q899R2	Single stranded DNA binding protein	0.00213964775418	0.000427995224921	-0.00171165252926
+UniRef50_A6LVD4	Sigma54 specific transcriptional regulator, Fis family	0.000187718240781	0.00124374752613	0.00105602928535
+UniRef50_UPI0004670897	shikimate kinase	1.64633438742e-05	1.08366573707e-05	-5.6266865035e-06
+UniRef50_D7FNC8	Enoyl ACP reductase enoyl ACP reductase	3.27163544958e-06	1.32154529751e-05	9.94381752552e-06
+UniRef50_A5UJH5	Predicted oxidoreductase, aldo keto reductase family	0.00322905691019	0.00106201328855	-0.00216704362164
+UniRef50_A7ZV86		0.000679645073595	0.000582062964133	-9.7582109462e-05
+UniRef50_V9B8V8		8.50114917741e-05	1.02605227702e-05	-7.47509690039e-05
+UniRef50_B2SBZ3	Dihydrodipicolinate synthetase	0.000135623708568	0.00700149345088	0.00686586974231
+UniRef50_UPI000381E70F	hypothetical protein	8.30922862673e-06	8.82190144358e-05	7.99097858091e-05
+UniRef50_UPI00047BCB0B	hypothetical protein	1.35353296698e-05	3.41242698621e-05	2.05889401923e-05
+UniRef50_J1HZ40	Cadherin like beta sandwich domain protein	1.16612248791e-06	0.00419162527075	0.00419045914826
+UniRef50_UPI0003B309D3	hypothetical protein	4.16993268157e-06	1.4136630948e-05	9.96669826643e-06
+UniRef50_L0F2G6	ABC type dipeptide oligopeptide nickel transport system, permease component	0.000233057731141	0.0021381223713	0.00190506464016
+UniRef50_A4ISF0	Pyridine nucleotide disulphide oxidoreductase	0.0165629540166	0.00377611408859	-0.012786839928
+UniRef50_U2KRP8		1.94888647933e-05	2.42300413421e-05	4.7411765488e-06
+UniRef50_Q2NHY4	Predicted ATPase	0.00382887286818	0.000199988739417	-0.00362888412876
+UniRef50_Q6D8C5	tRNA lysidine synthase	0.00302900314121	0.000675223259911	-0.0023537798813
+UniRef50_W1DNL9	DNA directed RNA polymerase beta subunit	0.00406228226842	0.00088098536748	-0.00318129690094
+UniRef50_K7RSJ8	Exonuclease SbcCD, D subunit	0.000163413847988	0.00622265587767	0.00605924202968
+UniRef50_Q03CD2	Purine nucleoside phosphorylase DeoD type	0.000379393076353	0.00208193084354	0.00170253776719
+UniRef50_C5MYT2		0.0125791057334	0.00548996463905	-0.00708914109435
+UniRef50_UPI00046D19BF	hypothetical protein	2.89673566329e-05	6.91443616986e-05	4.01770050657e-05
+UniRef50_U5N005	Signaling protein	0.000108681812416	0.000624724328459	0.000516042516043
+UniRef50_UPI0003B67EAC	phosphate ABC transporter ATP binding protein	3.35606946241e-05	3.30970357223e-05	-4.636589018e-07
+UniRef50_W5V0N3	Hemagglutinin	7.17199544052e-05	0.000107327531323	3.56075769178e-05
+UniRef50_UPI000456105B	hypothetical protein PFL1_03954	8.89617587187e-07	2.01543969632e-06	1.12582210913e-06
+UniRef50_UPI0003B77756	deoxyribonucleotide triphosphate pyrophosphatase	8.29728254281e-06	1.43285283986e-05	6.03124585579e-06
+UniRef50_V5SVZ8		0.000753385261022	0.000703309526921	-5.0075734101e-05
+UniRef50_D9PYS9	Non canonical purine NTP pyrophosphatase	0.00530260494129	0.000364588524928	-0.00493801641636
+UniRef50_UPI0001745D89	molecular chaperone DnaK	4.5667210503e-06	4.18052047799e-06	-3.8620057231e-07
+UniRef50_UPI000475F618	branched chain amino acid ABC transporter substrate binding protein	2.45825393727e-05	1.17489412903e-05	-1.28335980824e-05
+UniRef50_Q8ZIQ1	Protein smp	0.00304648696503	0.00106668777444	-0.00197979919059
+UniRef50_A5UNL4	Adhesin like protein	0.00398338911148	0.000681338801524	-0.00330205030996
+UniRef50_UPI00029A29A8	oligo 1,6 glucosidase, partial	3.24052610787e-05	1.60670471457e-05	-1.6338213933e-05
+UniRef50_W9EH11		0.0010496863607	1.85212077268e-05	-0.00103116515297
+UniRef50_UPI0003B4600B	ribonuclease, partial	1.81638168575e-05	1.05755312996e-05	-7.5882855579e-06
+UniRef50_G5EL93	Cassette chromosome recombinase A	0.0104698623699	0.00244512102572	-0.00802474134418
+UniRef50_P00803	Signal peptidase I	0.00195666393901	0.000189914279868	-0.00176674965914
+UniRef50_B0T4C1	Probable chemoreceptor glutamine deamidase CheD	0.000352722653841	5.39374125376e-05	-0.000298785241303
+UniRef50_B0KFB1	Rhomboid family protein	0.000272225472725	0.00037381861418	0.000101593141455
+UniRef50_Q2G4D3	UPF0260 protein Saro_2854	4.80345035694e-05	0.00438327409636	0.00433523959279
+UniRef50_Q3J6E0		0.002300973382	0.000557201330567	-0.00174377205143
+UniRef50_Q9BWD1	Acetyl CoA acetyltransferase, cytosolic	0.00220170063826	0.00055481328387	-0.00164688735439
+UniRef50_O07347	Signal recognition particle protein	0.000382165846742	0.0422930778145	0.0419109119678
+UniRef50_A4VVR6	Predicted O methyltransferase	0.00276202504291	0.000633208415943	-0.00212881662697
+UniRef50_K2AGU5	Chemotactic signal response protein CheL	0.000149030613609	7.8714263939e-05	-7.031634967e-05
+UniRef50_A8AJ27	6 phosphogluconolactonase	0.00256905283308	0.000969142138925	-0.00159991069415
+UniRef50_M0BHI2	Nucleolar protein like protein	0.000196172275359	0.000150241749445	-4.5930525914e-05
+UniRef50_K7VJY6		8.8074586029e-05	7.2516455212e-06	-8.08229405078e-05
+UniRef50_O34814	Cell division ATP binding protein FtsE	0.00123560043394	0.00458784620661	0.00335224577267
+UniRef50_UPI00035D2A1B	hypothetical protein	7.89764087148e-05	0.000168873036155	8.98966274402e-05
+UniRef50_UPI00037863B5	hypothetical protein	7.82343401066e-06	1.64437450904e-05	8.62031107974e-06
+UniRef50_B3DQ29	Elongation factor P	2.22099773758e-05	0.000150779216079	0.000128569238703
+UniRef50_P43735	Chaperone protein DnaJ	0.000221118008496	0.000627846374938	0.000406728366442
+UniRef50_UPI000161E2A8	40S ribosomal protein S15	5.81127111971e-05	8.63690741194e-06	-4.94758037852e-05
+UniRef50_Q66L51	2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	6.09941732819e-06	7.0573538081e-06	9.5793647991e-07
+UniRef50_A0A023RVS9	Diguanylate cyclase	0.000168892758539	0.00668143410448	0.00651254134594
+UniRef50_Q8ZLF2	sn glycerol 3 phosphate transport system permease protein UgpA	0.0138041268746	0.00332104060678	-0.0104830862678
+UniRef50_A4J8U4	Putative sporulation transcription regulator WhiA	0.000391916088574	0.0017903847323	0.00139846864373
+UniRef50_J9P3B1		2.80546862557e-05	1.04512852124e-05	-1.76034010433e-05
+UniRef50_E1TE96	Type VI secretion protein, VC_A0114 family	0.000201443674674	5.00699553971e-06	-0.000196436679134
+UniRef50_UPI000329034B		0.000124094987895	4.49290005853e-05	-7.91659873097e-05
+UniRef50_A5VR36	Lactoylglutathione lyase	0.0198644838985	0.00763548079145	-0.012229003107
+UniRef50_Q88QC7	Biosynthetic arginine decarboxylase	0.00184062484814	0.00165574416389	-0.00018488068425
+UniRef50_P27111	HTH type transcriptional regulator CynR	0.00294885230787	0.000207239793125	-0.00274161251475
+UniRef50_G7ZTG5	Acetyltransferase, GNAT family protein	0.0268501424234	0.00194003674946	-0.0249101056739
+UniRef50_K3X5U2		0.000268993196135	0.000449948474827	0.000180955278692
+UniRef50_UPI0003B45AF6	NADPH	1.85984550178e-05	4.86706083171e-05	3.00721532993e-05
+UniRef50_UPI00047C5895	hypothetical protein	2.06525235057e-05	0.000137384059676	0.00011673153617
+UniRef50_A4VWF3	ATPase component of ABC transporters with duplicated ATPase domains	0.000252774519159	0.00369728200893	0.00344450748977
+UniRef50_S6AW99		0.00018874299443	0.000929474887452	0.000740731893022
+UniRef50_P29365	Homoserine dehydrogenase	0.00110097239842	0.00876753784591	0.00766656544749
+UniRef50_A1W5W7	SwissProt accession number P19593 like protein	1.66141246844e-05	8.61006658394e-05	6.9486541155e-05
+UniRef50_H8LDC1	Helix turn helix domain protein	0.0159450795251	0.00247573110905	-0.013469348416
+UniRef50_E8ZZT0	DNA translocase ftsK	0.000763769552922	0.000176267975336	-0.000587501577586
+UniRef50_A1K314	Holliday junction ATP dependent DNA helicase RuvA	0.000891225204156	0.00174070991595	0.000849484711794
+UniRef50_UPI00037585D1	hypothetical protein	0.000930259738955	0.000232587799164	-0.000697671939791
+UniRef50_G2SM74	Fe S cluster oxidoreductase	0.0014330291612	0.00200736627624	0.00057433711504
+UniRef50_UPI00037560BA	hypothetical protein	3.91240623283e-05	0.000121584547317	8.24604849887e-05
+UniRef50_B0SAP0	Succinyl CoA ligase [ADP forming] subunit beta	0.0283667051049	0.0157212646391	-0.0126454404658
+UniRef50_Q8CRS1		0.00154760209082	0.000694862835762	-0.000852739255058
+UniRef50_R0DRQ8		4.04277746655e-05	3.85371388555e-05	-1.89063581e-06
+UniRef50_F5HTJ7	Phosphopantetheine attachment domain protein	0.000259011908145	0.00874682130595	0.0084878093978
+UniRef50_W5X2Q0		3.24360640712e-05	5.14850515515e-05	1.90489874803e-05
+UniRef50_E8TF05	Tetracycline transcriptional regulator YcdC domain containing protein	0.0138723937395	0.00327619614812	-0.0105961975914
+UniRef50_E9WHJ2	NrdB protein	0.00331685042019	0.000261506160374	-0.00305534425982
+UniRef50_A3PP90	TRAP T family transporter, small  inner membrane subunit	0.00750675992924	0.00076705637713	-0.00673970355211
+UniRef50_UPI000469C97C	riboflavin biosynthesis protein RibF	1.01646333543e-05	3.25578803253e-05	2.2393246971e-05
+UniRef50_UPI00036BA29A	MULTISPECIES	4.11342129639e-06	1.0918889205e-05	6.80546790861e-06
+UniRef50_Q9I2Y2	Phosphoserine phosphatase ThrH	0.00127558324272	0.00778029930595	0.00650471606323
+UniRef50_Q8Y2I3	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	1.10306154339e-05	1.13609574929e-05	3.30342059e-07
+UniRef50_UPI0003A4B73E	hypothetical protein	8.57944021391e-05	3.29810928129e-05	-5.28133093262e-05
+UniRef50_UPI00047210DD	hypothetical protein	2.21033978269e-06	3.86564413234e-06	1.65530434965e-06
+UniRef50_A6WP83	Thioesterase superfamily protein	2.82593347166e-05	0.00165805292136	0.00162979358664
+UniRef50_M9VE12	Transglutaminase	0.0002886712045	0.00622188005373	0.00593320884923
+UniRef50_D4GJ64	MocR	0.000481572578875	0.00624600701246	0.00576443443359
+UniRef50_E3D421	CinA related protein	0.000292624797564	0.00298809786679	0.00269547306923
+UniRef50_UPI000367AB3B	hypothetical protein, partial	0.000362834922283	0.00014408741025	-0.000218747512033
+UniRef50_P65809		0.00206052734383	0.000413024238847	-0.00164750310498
+UniRef50_Q65GI9	3 isopropylmalate dehydrogenase	0.0140957481444	0.0085783591506	-0.0055173889938
+UniRef50_UPI0003B44979	glutamate	2.61282004371e-06	6.50309340455e-06	3.89027336084e-06
+UniRef50_P77148		0.00347966007136	0.00484628288441	0.00136662281305
+UniRef50_J3M3U5		8.13619359059e-06	1.02590282255e-05	2.12283463491e-06
+UniRef50_UPI000381BF29	hypothetical protein, partial	9.97976061044e-06	2.82313543114e-05	1.8251593701e-05
+UniRef50_F8GT79	Major facilitator superfamily MFS	0.000359008507951	0.00576619246276	0.00540718395481
+UniRef50_W1MCV7		0.000171793908893	9.71413014233e-05	-7.46526074697e-05
+UniRef50_R4GHX9		3.14658741268e-05	6.33687172028e-05	3.1902843076e-05
+UniRef50_UPI0003709C0F	hypothetical protein	2.05862338216e-05	1.2381832389e-05	-8.2044014326e-06
+UniRef50_A5FN12	Enolase	1.12111216576e-05	0.000105029776287	9.38186546294e-05
+UniRef50_F5ZL84	Membrane protein	0.00486350970635	0.00430233906122	-0.00056117064513
+UniRef50_P08681	Cytochrome c oxidase subunit 1	3.70999527329e-05	8.73934730239e-05	5.0293520291e-05
+UniRef50_UPI00046D95AC	multidrug MFS transporter	6.43481412002e-06	0.000105903095801	9.9468281681e-05
+UniRef50_B9DJU7	Choline transporter	0.0255059405985	0.00694334932208	-0.0185625912764
+UniRef50_UPI0004689981	hypothetical protein	2.62629672384e-06	5.50421434629e-06	2.87791762245e-06
+UniRef50_UPI000467699E	cytochrome d ubiquinol oxidase subunit 2	8.23976149206e-06	4.17029213606e-05	3.34631598685e-05
+UniRef50_UPI000471B371	hydrogenase accessory protein HypB	7.13043337588e-05	2.38707582884e-05	-4.74335754704e-05
+UniRef50_I4EB76	Replication protein C	3.50582929947e-05	1.62774934681e-05	-1.87807995266e-05
+UniRef50_B1HXC5	Sulfate binding protein  (SSI2)	0.00272673160454	0.0140375010985	0.011310769494
+UniRef50_UPI00022CA98C	PREDICTED	5.30155865392e-06	2.61451584749e-05	2.0843599821e-05
+UniRef50_U5MVB3	Phage like element PBSX protein XkdC	0.00221781543851	0.00422483187002	0.00200701643151
+UniRef50_Q0C5Z7	Transcription termination factor NusA	0.0118103189586	0.00416775709548	-0.00764256186312
+UniRef50_UPI00027F529F		0.000128141787143	4.07753557583e-05	-8.73664313847e-05
+UniRef50_A6LQD4	Endodeoxyribonuclease RusA	0.000172368031437	0.00360762116849	0.00343525313705
+UniRef50_E8JNG4		0.000208981395112	0.000254003249514	4.5021854402e-05
+UniRef50_UPI0003B5B5B4	heme biosynthesis protein HemY	1.15118155548e-05	1.47712451311e-05	3.2594295763e-06
+UniRef50_G8VCT1	Lysophospholipase	0.000245155838441	0.00718549230707	0.00694033646863
+UniRef50_A4XPP9	Pilus assembly protein, PilQ	0.000724448320794	0.0011734438617	0.000448995540906
+UniRef50_R5TNT7	NAD utilizing dehydrogenase	0.000717705019224	0.00247094121843	0.00175323619921
+UniRef50_Q4L389	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000920697533784	0.00347431417878	0.002553616645
+UniRef50_W8RPJ3	Hydroxymethylpyrimidine ABC transporter, transmembrane component	0.0102570971573	0.00048282094133	-0.00977427621597
+UniRef50_Q6A5L3	Putative 3 methyladenine DNA glycosylase	3.3914245091e-05	0.00430465682641	0.00427074258132
+UniRef50_H1QEQ5	Phosphoribosylaminoimidazole succinocarboxamide synthase 	0.000333154900203	0.000114757551134	-0.000218397349069
+UniRef50_P58336	Fructose bisphosphate aldolase	0.0239386073392	0.0123999599233	-0.0115386474159
+UniRef50_Q8RG98	ATP dependent 6 phosphofructokinase	2.32973473664e-05	8.08072284876e-06	-1.52166245176e-05
+UniRef50_G8VQK9		0.000127385598041	0.00814239523744	0.0080150096394
+UniRef50_Q49776	ATP phosphoribosyltransferase	0.000176946557275	0.00414532915254	0.00396838259526
+UniRef50_P33014	UPF0033 protein YeeD	0.00332037911719	0.00157502242771	-0.00174535668948
+UniRef50_F2A7T6		0.00197551032108	0.000444085270977	-0.0015314250501
+UniRef50_Q6AB77	Na H(+) antiporter NhaA	0.000469518101512	0.00771765885817	0.00724814075666
+UniRef50_A4WUL7	GumN family protein	5.23940067928e-05	2.56706957933e-05	-2.67233109995e-05
+UniRef50_P59302	Acetylglutamate kinase	0.00300304466644	0.00136470963071	-0.00163833503573
+UniRef50_Q983F8	Ribosomal RNA large subunit methyltransferase E	8.51447409346e-05	5.46070363154e-05	-3.05377046192e-05
+UniRef50_P24136	Oligopeptide transport ATP binding protein OppD	0.0221541893521	0.0097517292003	-0.0124024601518
+UniRef50_G2T6W5	Ppx GppA phosphatase	6.53811048072e-06	9.89612849316e-06	3.35801801244e-06
+UniRef50_A7X5U0	Formimidoylglutamase	0.0115835693576	0.00265165455367	-0.00893191480393
+UniRef50_U5MNC9	PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase	0.000839748939815	0.00150202000155	0.000662271061735
+UniRef50_Q6FBR2		0.000225362771271	0.00755250152421	0.00732713875294
+UniRef50_UPI000465E9D3	glycine betaine ABC transporter ATP binding protein	5.25652461244e-05	9.18632962417e-06	-4.33789165002e-05
+UniRef50_UPI0004662A15	peptide ABC transporter	8.40070407747e-05	1.25187976368e-05	-7.14882431379e-05
+UniRef50_UPI00037198AA	hypothetical protein	4.17846103001e-06	2.54510188982e-06	-1.63335914019e-06
+UniRef50_P12999	Malonyl [acyl carrier protein] O methyltransferase	0.00245488402021	0.000894163728117	-0.00156072029209
+UniRef50_UPI000380847F	hypothetical protein	1.3087802258e-05	7.78263290118e-06	-5.30516935682e-06
+UniRef50_UPI0004706833	hypothetical protein	0.000123918657882	2.68315157062e-05	-9.70871421758e-05
+UniRef50_F9YZ80		9.79772395697e-05	0.00880478320372	0.00870680596415
+UniRef50_B5EXN2	Ferrochelatase	4.58661850665e-06	2.99701124777e-05	2.53834939711e-05
+UniRef50_S9TGH7	PE PGRS family protein	0.000149689023164	0.000428629564389	0.000278940541225
+UniRef50_F0KI57	Transcription activator of glutamate synthase operon GltC	0.000125828662949	0.00844905359922	0.00832322493627
+UniRef50_P60065	Arginine agmatine antiporter	0.00256547106817	0.000920283166503	-0.00164518790167
+UniRef50_Z5XA58		2.565575288e-05	9.73032376359e-05	7.16474847559e-05
+UniRef50_Q2K5E7	Xylose ABC transporter, permease protein	0.00321647948603	0.00104481321218	-0.00217166627385
+UniRef50_F0P396	Betaine aldehyde dehydrogenase	0.0255927792008	0.00489463994243	-0.0206981392584
+UniRef50_G2L6P6		0.00027437713379	0.000372247947718	9.7870813928e-05
+UniRef50_A4XTI2		4.29199852858e-05	0.000240883522049	0.000197963536763
+UniRef50_A1R8N0	tRNA N6 adenosine threonylcarbamoyltransferase	1.33005836697e-05	2.070484484e-05	7.4042611703e-06
+UniRef50_W8KIM2	Protein pucC	0.00235621148982	0.000963482805149	-0.00139272868467
+UniRef50_D9S1W5		0.00066116281873	0.000531659119422	-0.000129503699308
+UniRef50_M1MXN6	ABC type multidrug transport system, ATPase and permease component	0.000157150917647	0.00024505606956	8.7905151913e-05
+UniRef50_Q54MI4		2.56113791227e-06	5.0041442333e-06	2.44300632103e-06
+UniRef50_Q6GJ93	Putative acetyl CoA C acetyltransferase VraB	0.0265041112598	0.00567172044024	-0.0208323908196
+UniRef50_V7EMW9		0.000108029211079	7.86540864863e-05	-2.93751245927e-05
+UniRef50_A3PLM1	4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.00410652278597	0.000281745691794	-0.00382477709418
+UniRef50_C3F739	VrrA protein product	4.45713313932e-05	0.000240094882266	0.000195523550873
+UniRef50_UPI000465695E	ABC transporter	4.61893401462e-05	7.16246059976e-05	2.54352658514e-05
+UniRef50_P75785	Phosphoethanolamine transferase OpgE	0.00389579338034	0.000990958143816	-0.00290483523652
+UniRef50_UPI0003C14A7B	PREDICTED	0.000102817151383	8.56006357713e-05	-1.72165156117e-05
+UniRef50_A0A011RZV2		2.17230326694e-05	1.12932642771e-05	-1.04297683923e-05
+UniRef50_W7TIH3		3.90478390628e-05	1.89707109081e-05	-2.00771281547e-05
+UniRef50_B0RVK4	Succinyl CoA	0.0177168520838	0.048230540948	0.0305136888642
+UniRef50_UPI000370484E	hypothetical protein	9.26381603864e-05	3.99214597254e-05	-5.2716700661e-05
+UniRef50_Q5HP94	Holliday junction resolvase RecU	0.0111475699299	0.00352703783427	-0.00762053209563
+UniRef50_A0A009FMX4	BCCT transporter family protein	0.0001457366432	0.00490425601012	0.00475851936692
+UniRef50_UPI000347806D	MULTISPECIES	0.000130749637327	0.0103674193301	0.0102366696928
+UniRef50_A9MIT8		0.00728267475651	0.000399977478817	-0.00688269727769
+UniRef50_Q1IUF1	tRNA N6 adenosine threonylcarbamoyltransferase	1.41105572094e-05	1.67277942171e-05	2.6172370077e-06
+UniRef50_E3A4Z7		0.00142557375498	0.000319415385196	-0.00110615836978
+UniRef50_UPI00035F7B5B	hypothetical protein	3.82748951546e-05	6.50687237516e-05	2.6793828597e-05
+UniRef50_D4FIU1		0.0032653585442	0.00230116913138	-0.00096418941282
+UniRef50_UPI00034D20EA	cytochrome BD ubiquinol oxidase subunit I	3.52769276739e-05	4.73393745702e-05	1.20624468963e-05
+UniRef50_A6YP79	Minor ampullate spidroin like protein 	7.27119805174e-06	7.55820201919e-05	6.83108221402e-05
+UniRef50_C8W984	M20 DapE family protein YgeY	0.000101383882411	0.00371370956182	0.00361232567941
+UniRef50_G8VJJ1	Poly depolymerase	0.000239420288917	0.00604986671084	0.00581044642192
+UniRef50_P39295		0.00296320994259	0.00387693058873	0.00091372064614
+UniRef50_R5TI31		9.8218383912e-05	0.00557489537163	0.00547667698772
+UniRef50_P60811	Foldase protein PrsA 1	0.00693660902889	0.00301147269684	-0.00392513633205
+UniRef50_UPI0002374DF8	30S ribosomal protein S2, partial	1.61400898517e-05	4.14271465827e-05	2.5287056731e-05
+UniRef50_S9QQX6		0.000213370067565	3.01725737495e-05	-0.000183197493816
+UniRef50_C0Z6S0	Argininosuccinate synthase	0.00596177150828	0.00656272100111	0.00060094949283
+UniRef50_A6V127		7.00919968729e-05	0.00170852227089	0.00163843027402
+UniRef50_Q9RYE9		0.00034334209452	0.0630712477059	0.0627279056114
+UniRef50_A7X3Q8	Serine protease SplB	0.0422240117743	0.00920475457339	-0.0330192572009
+UniRef50_Q8DW55		0.00337266740265	0.00275911397125	-0.0006135534314
+UniRef50_G2L1N4		0.000890725467284	0.00110429301976	0.000213567552476
+UniRef50_UPI00047D67F7	branched chain amino acid ABC transporter	0.00010533388264	3.32307128548e-05	-7.21031697852e-05
+UniRef50_UPI0003B4B808	amino acid ABC transporter ATPase, partial	0.000108782376507	0.00012282603841	1.4043661903e-05
+UniRef50_UPI00039C5902	RNA polymerase sigma 70 factor	2.82096910209e-06	0.000205017498746	0.000202196529644
+UniRef50_UPI00047B598A	hypothetical protein	9.76766908537e-05	0.000154947751158	5.72710603043e-05
+UniRef50_D4L1E0	ABC type Fe3+ siderophore transport system, permease component	0.000173956676891	0.000564935962282	0.000390979285391
+UniRef50_Q73HV5	Glutamate  tRNA ligase 1	1.7730002753e-05	1.12259265932e-05	-6.5040761598e-06
+UniRef50_B7GXS6	5 formyltetrahydrofolate cyclo ligase	0.00022469404098	0.00645502134425	0.00623032730327
+UniRef50_UPI00045717A3	PREDICTED	3.63477146069e-05	7.64151362825e-06	-2.87062009786e-05
+UniRef50_UPI000373B187	hypothetical protein	1.07911833566e-06	0.00360127507502	0.00360019595668
+UniRef50_Q9HXH7		0.00102547270045	0.000871829155164	-0.000153643545286
+UniRef50_UPI0001A42D32	hypothetical protein, partial	7.32293615491e-05	9.92363614566e-06	-6.33057254034e-05
+UniRef50_UPI000255AEF1	30S ribosomal protein S3, partial	0.00104052323866	0.00212063935744	0.00108011611878
+UniRef50_Q57926	Probable homocitrate synthase AksA	0.00288106902442	0.000660299059958	-0.00222076996446
+UniRef50_Q08386	Molybdenum pterin binding protein MopB	0.000664229229173	0.000436428628368	-0.000227800600805
+UniRef50_D6SC26	6 O methylguanine DNA methyltransferase, DNA binding domain protein	0.02075651314	0.0139455710319	-0.0068109421081
+UniRef50_P9WP73	Oxygen independent coproporphyrinogen III oxidase like protein Rv2388c	2.90892723579e-05	9.87929676988e-06	-1.9209975588e-05
+UniRef50_UPI0002195D79	glutamate ABC transporter permease	4.2087898851e-06	3.75810942451e-05	3.337230436e-05
+UniRef50_UPI0004005367	hypothetical protein	9.56849057307e-07	3.52347192764e-05	3.42778702191e-05
+UniRef50_K2EGX4		1.48755743195e-05	2.243154542e-05	7.5559711005e-06
+UniRef50_F0RN24	Polyprenyl synthetase	0.000436181283126	0.0149904263223	0.0145542450392
+UniRef50_C0SPB0		0.0246011155853	0.0095773021065	-0.0150238134788
+UniRef50_S9QSJ4	Flagellar protein FlgJ, putative	0.00015887993754	8.34309335018e-05	-7.54490040382e-05
+UniRef50_O27701	Conserved protein	0.00411142667759	0.0011994202057	-0.00291200647189
+UniRef50_P55218	O succinylhomoserine sulfhydrylase	0.000127877077879	0.00358814672543	0.00346026964755
+UniRef50_M6VVW5	PF12769 domain protein	1.51106598646e-05	2.21126714194e-05	7.0020115548e-06
+UniRef50_I2C019	Transcriptional regulator, LysR family	0.00012724246815	0.00024372767966	0.00011648521151
+UniRef50_P76041	Putative sucrose phosphorylase	0.00241551511253	0.00309527410767	0.00067975899514
+UniRef50_D5SSZ9	ATP dependent DNA ligase	0.00329630904573	0.00142846993173	-0.001867839114
+UniRef50_UPI00036A77AE	hypothetical protein	0.00010410526564	4.21904332903e-05	-6.19148323497e-05
+UniRef50_P75806	Putative undecaprenyl diphosphatase YbjG	0.00462832454494	0.000763750099644	-0.0038645744453
+UniRef50_UPI0003315352	PREDICTED	6.28350314963e-06	1.10917133368e-05	4.80821018717e-06
+UniRef50_Q7MLR5	Cysteine  tRNA ligase	0.00363200825655	0.00267506755859	-0.00095694069796
+UniRef50_UPI00035CB1C3	hypothetical protein	0.000815417938926	0.000158977782821	-0.000656440156105
+UniRef50_G8VCB9	BNR Asp box repeat protein	4.97346493856e-05	0.00594654115279	0.0058968065034
+UniRef50_Q2YYG7		0.00981645463155	0.00109501517897	-0.00872143945258
+UniRef50_Q7XIT3		0.000142187289557	4.09232375594e-05	-0.000101264051998
+UniRef50_I2ZRW4	Maltose regulon activator MalT domain protein	0.000486033462046	0.000763750099644	0.000277716637598
+UniRef50_UPI000471FD97	hypothetical protein	1.17569589233e-05	6.50708255442e-06	-5.24987636888e-06
+UniRef50_UPI0004708D1E	hypothetical protein, partial	4.66630180737e-05	1.80091754091e-05	-2.86538426646e-05
+UniRef50_C3A4M2		2.94806683128e-05	0.000316679981629	0.000287199313316
+UniRef50_Q9I6G4		0.00176061521709	0.000570486930501	-0.00119012828659
+UniRef50_UPI0003B7884C	ABC transporter, partial	5.77407588545e-05	4.46509388158e-05	-1.30898200387e-05
+UniRef50_E7RTI9		6.42884078815e-05	4.73284262469e-05	-1.69599816346e-05
+UniRef50_Q17WZ6	UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000337742289358	0.00240830352697	0.00207056123761
+UniRef50_Q8FTK5	GTPase Der	0.000215072761739	0.00638554106664	0.0061704683049
+UniRef50_F8LLX7	Restriction enzyme BgcI subunit alpha 	5.77195701583e-05	0.00273308358704	0.00267536401688
+UniRef50_Q03024	Alkaline protease secretion ATP binding protein AprD	0.000140155688933	0.000451830836878	0.000311675147945
+UniRef50_K1Z0I8	Integral membrane protein MviN	1.03844479641e-05	5.72972818178e-06	-4.65471978232e-06
+UniRef50_A4WTG8	Methyl accepting chemotaxis sensory transducer	0.0075025241691	0.00172406183607	-0.00577846233303
+UniRef50_Q9I291	UTP  glucose 1 phosphate uridylyltransferase	0.00113118770972	0.00381534734807	0.00268415963835
+UniRef50_UPI00036E1A9D	hypothetical protein	7.29867649879e-05	4.63821158892e-05	-2.66046490987e-05
+UniRef50_UPI0003B744A6	3 isopropylmalate dehydrogenase, partial	9.76979808143e-05	6.82386717994e-05	-2.94593090149e-05
+UniRef50_B2TRH5	Stage 0 sporulation protein J	0.000320880170342	0.000931007452033	0.000610127281691
+UniRef50_P32710	Cytochrome c type biogenesis protein NrfE	0.00319485752797	0.000134336636173	-0.0030605208918
+UniRef50_C4ZJP0		9.29650548197e-06	5.70012137326e-05	4.77047082506e-05
+UniRef50_H8GU51		4.84598329819e-05	0.0270148656537	0.0269664058207
+UniRef50_Q5HLG5	2 dehydropantoate 2 reductase	0.0227177054231	0.00591282879499	-0.0168048766281
+UniRef50_UPI00035D0467	hypothetical protein, partial	8.91869282127e-05	0.000303130514812	0.000213943586599
+UniRef50_UPI00037FF715	hypothetical protein, partial	4.80843884675e-05	2.25801279014e-05	-2.55042605661e-05
+UniRef50_Q3JVL6		9.42464790477e-05	0.000425267659107	0.000331021180059
+UniRef50_F3AA10		4.25086823392e-05	0.000120952680004	7.84439976648e-05
+UniRef50_P0AFA0	Lipopolysaccharide export system permease protein LptF	0.00240791721303	0.000970096487667	-0.00143782072536
+UniRef50_E6UL31	Endonuclease V	0.000716557019404	0.00257366686037	0.00185710984097
+UniRef50_D3NUN5	MoxR like ATPase	0.00142095566427	0.000496391823051	-0.000924563841219
+UniRef50_UPI000287BC3E	dehydrogenase	0.000181967543204	9.89025262923e-05	-8.30650169117e-05
+UniRef50_E8WHV5	Pseudouridine synthase	0.0184380855957	0.00578534865681	-0.0126527369389
+UniRef50_UPI00036DC256	MULTISPECIES	1.689186615e-05	2.53168803984e-05	8.4250142484e-06
+UniRef50_K9VRD1	Beta Ig H3 fasciclin	1.83638776293e-05	7.76113964505e-06	-1.06027379842e-05
+UniRef50_A7X6Y1	L lactate dehydrogenase 2	0.0113637896733	0.00257100424888	-0.00879278542442
+UniRef50_Q7NFA1	Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	5.10865906161e-05	7.87632195402e-05	2.76766289241e-05
+UniRef50_Q92S04	Probable chemoreceptor glutamine deamidase CheD	0.000322024224996	4.90276064698e-05	-0.000272996618526
+UniRef50_A6LS08	Sigma 54 factor, interaction domain containing protein	0.00027119847468	0.00148149879002	0.00121030031534
+UniRef50_Q3AC58	Ribonuclease 3	1.6544121716e-05	3.61432717689e-05	1.95991500529e-05
+UniRef50_Q5XAQ3	Cysteine synthase	4.31447704802e-05	2.21102536439e-05	-2.10345168363e-05
+UniRef50_UPI00037792DA	hypothetical protein	2.5113761249e-05	9.04688890778e-06	-1.60668723412e-05
+UniRef50_V8MVT8		0.000491110646101	0.000119192334299	-0.000371918311802
+UniRef50_A1JIY2	UPF0597 protein YE0448	0.00225620146682	0.00050327951502	-0.0017529219518
+UniRef50_Q28NP7	Outer membrane protein assembly factor BamD	0.0117342406979	0.000254218110649	-0.0114800225873
+UniRef50_A0A011PJY3		1.08699556153e-05	3.26404758599e-05	2.17705202446e-05
+UniRef50_Y8CPG9		0.0103233081845	0.00386004495548	-0.00646326322902
+UniRef50_P0AER2	Glycerol uptake facilitator protein	0.00298183911859	0.000647114433421	-0.00233472468517
+UniRef50_UPI000470D0F7	hypothetical protein	1.91968451844e-05	4.64953143023e-06	-1.45473137542e-05
+UniRef50_UPI0002626B82	polyphosphate kinase	2.09929978766e-06	4.78013359288e-05	4.57020361411e-05
+UniRef50_K9NFY1	Glutamine synthetase	0.00053914798445	0.000262811667087	-0.000276336317363
+UniRef50_K9ZXW7	Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase	0.000686742949725	0.0628162628375	0.0621295198878
+UniRef50_B9KK79	Metallophosphoesterase	0.0021281930188	0.000680060908247	-0.00144813211055
+UniRef50_F0YF94		7.90391610646e-05	7.07842138823e-05	-8.2549471823e-06
+UniRef50_Q094I2		2.02795097443e-05	2.74804662455e-06	-1.75314631197e-05
+UniRef50_F0YF93		0.00015107809751	0.00032038779653	0.00016930969902
+UniRef50_Q1MRW8	Adenylosuccinate synthetase	1.65005056636e-05	1.30462172425e-05	-3.4542884211e-06
+UniRef50_UPI00035FD138	hypothetical protein	1.44636125882e-05	7.33050379924e-06	-7.13310878896e-06
+UniRef50_R8A2V2	Glucose 6 phosphate 1 dehydrogenase	0.00312621773303	0.00567097323646	0.00254475550343
+UniRef50_F9Z2P0	UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000729131821759	0.00507468031638	0.00434554849462
+UniRef50_A6W2T4	Shikimate kinase	2.14680216284e-05	1.55154426966e-05	-5.9525789318e-06
+UniRef50_A6TLP6	PfkB domain protein	0.000119836821857	0.00203441012935	0.00191457330749
+UniRef50_F3Z6R0	Putative integral membrane efflux protein	3.31942852557e-05	0.000290975365729	0.000257781080473
+UniRef50_V6DRE9		6.47158158752e-06	0.000861189093241	0.000854717511653
+UniRef50_UPI00034D4B82	hypothetical protein	3.3622882455e-06	2.00954327305e-06	-1.35274497245e-06
+UniRef50_S7S4W9		6.11350722752e-05	0.000252512296149	0.000191377223874
+UniRef50_A3M0Z0	D amino acid dehydrogenase small subunit	0.000289428171261	0.0193160652379	0.0190266370666
+UniRef50_D3D3X9		3.09973062122e-05	1.33131506811e-05	-1.76841555311e-05
+UniRef50_H3UKE3	Extracellular matrix binding protein ebh	5.35177800072e-06	7.17035546959e-06	1.81857746887e-06
+UniRef50_Q1GFQ2	ABC transporter related	0.0047798594192	0.00125408931148	-0.00352577010772
+UniRef50_S9W022		5.10678907906e-05	0.000266425526039	0.000215357635248
+UniRef50_A6LY02	Helix turn helix domain containing protein, AraC type	0.000116868727202	0.00251269304711	0.00239582431991
+UniRef50_A0AIL5	Internalin family protein 	7.82278085421e-06	2.65042622654e-06	-5.17235462767e-06
+UniRef50_Q895J2	Zinc protease	0.000503034975845	0.000289572475008	-0.000213462500837
+UniRef50_R7P2I4		6.11642427956e-05	0.00348292025347	0.00342175601067
+UniRef50_I0I041		4.45654810474e-05	1.19573314289e-05	-3.26081496185e-05
+UniRef50_UPI00046CFACA	hypothetical protein	2.7440232773e-05	0.000108129225208	8.0688992435e-05
+UniRef50_P00471	Thymidylate synthase	2.06647526927e-05	4.63079529341e-05	2.56432002414e-05
+UniRef50_W0ZC25		1.35968026591e-05	0.000113328227613	9.97314249539e-05
+UniRef50_F3Z8L2		6.14263179056e-05	0.0003608291896	0.000299402871694
+UniRef50_Q3J618	Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.0161721799674	0.00813564202775	-0.00803653793965
+UniRef50_N0BBG7		0.000157764823439	3.26390777774e-05	-0.000125125745662
+UniRef50_D9SVN6	N5 carboxyaminoimidazole ribonucleotide mutase	0.00897809892755	0.00189442478255	-0.007083674145
+UniRef50_Q2GA52	Leucyl phenylalanyl tRNA  protein transferase	3.28832742589e-05	3.60948794371e-05	3.2116051782e-06
+UniRef50_D7URR5	Cell shape determining protein MreC	0.0154879651767	0.00854406769689	-0.00694389747981
+UniRef50_A3QB39	Glucosamine 6 phosphate deaminase	6.21185281721e-06	1.80487179497e-05	1.18368651325e-05
+UniRef50_N1MJG8	Mobile element protein	0.000298110860607	0.000129563394921	-0.000168547465686
+UniRef50_P10486	Type I restriction enzyme EcoR124II R protein	8.47275942557e-05	0.00385684795796	0.0037721203637
+UniRef50_Q182T5	Bifunctional protein PyrR	4.97004879077e-05	0.000136228026481	8.65275385733e-05
+UniRef50_Q8CN80	General stress protein 26	0.0220491902999	0.0113467538626	-0.0107024364373
+UniRef50_B7IWC4	BclA protein	1.6097127488e-05	3.29208307163e-05	1.68237032283e-05
+UniRef50_Q9RSF0	Leucine  tRNA ligase	0.000188076434133	0.0568513162789	0.0566632398448
+UniRef50_Q9JXK3	Serine type peptidase	8.29026316517e-05	0.00135497375587	0.00127207112422
+UniRef50_P32155	Fructose like phosphotransferase enzyme IIA component	0.00107325419803	0.0011694680335	9.621383547e-05
+UniRef50_R1DRR6		6.92360762181e-05	2.56121929279e-05	-4.36238832902e-05
+UniRef50_G5RNH3	Phosphoenolpyruvate carboxylase	0.000511531491819	6.63384586687e-05	-0.00044519303315
+UniRef50_UPI0003C14DD4	PREDICTED	6.3720968312e-06	5.00305579928e-05	4.36584611616e-05
+UniRef50_B9KS86		0.00639347783215	0.00414892201075	-0.0022445558214
+UniRef50_U6LIW8	Sybindin like family domain containing protein, putative	9.34183665324e-06	3.8565248334e-05	2.92234116808e-05
+UniRef50_W5X3E8	Methyltransferase family protein	1.30470760912e-05	5.30350133583e-05	3.99879372671e-05
+UniRef50_UPI000475A333	PA phosphatase	0.000224926556458	6.52432806778e-05	-0.00015968327578
+UniRef50_B9KS80		0.00703235595499	0.000407333386473	-0.00662502256852
+UniRef50_Q2FH51	Phosphate import ATP binding protein PstB	0.00787024600936	0.00108270900115	-0.00678753700821
+UniRef50_UPI00045EA79E	hypothetical protein, partial	1.79235714263e-05	0.000121214110293	0.000103290538867
+UniRef50_Q48PX1	Glutamate  cysteine ligase	0.000475791730614	0.000240891396338	-0.000234900334276
+UniRef50_UPI0002F819F8	hypothetical protein	3.12634365069e-05	0.000352962884221	0.000321699447714
+UniRef50_A0A059E2E8		0.000246163086532	0.000124995935748	-0.000121167150784
+UniRef50_W4MLS6		6.45409019781e-05	0.000189669847082	0.000125128945104
+UniRef50_B0VS92	Paraquat inducible protein	8.02024055691e-05	0.00428871463285	0.00420851222728
+UniRef50_UPI00028A3C04	FAD linked oxidase like protein, partial	0.000775731751936	0.000714475899663	-6.1255852273e-05
+UniRef50_P39805	Transcription antiterminator LicT	0.00145512233392	0.00137668687578	-7.843545814e-05
+UniRef50_Q1R7E0		0.000108576986252	0.000126745367044	1.8168380792e-05
+UniRef50_P26496	Poly polymerase 2	0.00141303140726	0.000213507059454	-0.00119952434781
+UniRef50_UPI000367451B	acyl CoA dehydrogenase	4.78743894258e-06	2.37041328306e-05	1.8916693888e-05
+UniRef50_UPI0003628C72	hypothetical protein	5.21809100936e-06	7.01728386137e-06	1.79919285201e-06
+UniRef50_P44941		0.000518489289229	0.000161677799396	-0.000356811489833
+UniRef50_F8HFC0	Conserved domain protein	0.000371297693954	0.00133630840149	0.000965010707536
+UniRef50_UPI0003B3ED87	hypothetical protein	0.000953143210034	0.000558704644371	-0.000394438565663
+UniRef50_E8SRI9		0.000407912024397	0.00259786560303	0.00218995357863
+UniRef50_A6VD60	N acetylmuramoyl L alanine amidase	0.000355382828736	0.000125222631175	-0.000230160197561
+UniRef50_A7ZZW4	Porin, autotransporter  family	6.22032132315e-05	9.43015851861e-05	3.20983719546e-05
+UniRef50_UPI00035F5AB5	hypothetical protein	1.34190554654e-06	6.75895101381e-06	5.41704546727e-06
+UniRef50_Q5HLZ6		0.00293215270654	0.0012478170642	-0.00168433564234
+UniRef50_UPI00035EE7D2	hypothetical protein	2.363075033e-05	5.09463641842e-06	-1.85361139116e-05
+UniRef50_P76350	Shikimate transporter	0.00228881105161	0.000685347587023	-0.00160346346459
+UniRef50_A0A023RZ85	Acyltransferase	0.000225140748821	0.0053679891519	0.00514284840308
+UniRef50_O67505	Enoyl [acyl carrier protein] reductase [NADH] FabI	1.4607661015e-05	5.96734323828e-05	4.50657713678e-05
+UniRef50_Q1II13	Lipoyl synthase	4.97205632845e-06	2.73497131206e-05	2.23776567922e-05
+UniRef50_U5SRV6	Integrase	0.00090916436775	2.06787907482e-05	-0.000888485577002
+UniRef50_UPI0002F99873	hypothetical protein	7.52879708649e-05	8.34725419364e-05	8.1845710715e-06
+UniRef50_B1GZG8	Polyribonucleotide nucleotidyltransferase	2.30560306413e-06	3.80074383713e-05	3.57018353072e-05
+UniRef50_G8V046	Abi like family protein	0.00835641333997	0.00104839086085	-0.00730802247912
+UniRef50_A3ZYM8	Nicotinamide nucleotide transhydrogenase, subunit alpha	1.10398154318e-05	1.89988615123e-05	7.9590460805e-06
+UniRef50_A5VJ31	Phospho N acetylmuramoyl pentapeptide transferase	6.74440336122e-06	0.00204020552325	0.00203346111989
+UniRef50_UPI00034DE442	hypothetical protein	3.9097075572e-05	0.00452408141216	0.00448498433659
+UniRef50_A4W1C0	Predicted Rossmann fold nucleotide binding protein involved in DNA uptake	0.00539156754003	0.00656411191415	0.00117254437412
+UniRef50_A6LV77	Binding protein dependent transport systems inner membrane component	0.000156416846208	0.00139052893388	0.00123411208767
+UniRef50_Q2YV12	PTS system EIIBC component SAB0132	0.021023638325	0.00870503714079	-0.0123186011842
+UniRef50_Q8YYY4	All0708 protein	0.000212885467771	8.38575360774e-05	-0.000129027931694
+UniRef50_K2ALU5		3.91705537255e-06	0.00142303603638	0.00141911898101
+UniRef50_UPI00047EB60C	hypothetical protein	5.72361017808e-05	2.95780504924e-05	-2.76580512884e-05
+UniRef50_H1QFS1	Thiamine biosynthesis protein ThiC 	2.1938479151e-05	6.51561855976e-05	4.32177064466e-05
+UniRef50_UPI00036E98A9	hypothetical protein	1.03885614478e-05	6.39887312116e-06	-3.98968832664e-06
+UniRef50_UPI00036F5F0F	hypothetical protein	2.7394400557e-06	4.92754466736e-06	2.18810461166e-06
+UniRef50_UPI000404FF04	hypothetical protein	3.08754379598e-06	2.25302279305e-05	1.94426841345e-05
+UniRef50_P37440	Oxidoreductase UcpA	0.0054153728881	0.00150233736391	-0.00391303552419
+UniRef50_R6ZPD9		0.00677923950005	0.00491091209574	-0.00186832740431
+UniRef50_D6B3U1	Short chain dehydrogenase	0.000181774954504	0.00283994053042	0.00265816557592
+UniRef50_B9KNU0	Helicase	0.000319903380388	0.000473770115279	0.000153866734891
+UniRef50_I6U2T1	Polyketide synthase	0.00577455840596	0.00144824836425	-0.00432631004171
+UniRef50_A0ADL6	Putative iron sulfur protein	5.07174074505e-05	0.000631331941209	0.000580614533758
+UniRef50_F2AG83		0.00018977159471	0.000817257867503	0.000627486272793
+UniRef50_UPI00037E75DF	histidine kinase, partial	0.00284505651714	0.00174441730222	-0.00110063921492
+UniRef50_G4YB17		4.70258307442e-06	2.24652926066e-05	1.77627095322e-05
+UniRef50_E0N9M8		0.000626131496841	0.000458147135763	-0.000167984361078
+UniRef50_P0AB72	Fructose bisphosphate aldolase class 2	0.00378322417834	0.000493273927992	-0.00328995025035
+UniRef50_D7GD43	Deoxyguanosinetriphosphate triphosphohydrolase 	0.000525546411233	0.00660908776213	0.0060835413509
+UniRef50_G0HCK4		3.58224928212e-06	4.55392289206e-05	4.19569796385e-05
+UniRef50_Q5HKT7		0.0216374404631	0.00529847990038	-0.0163389605627
+UniRef50_C5N3T1		0.00897661188533	0.00166933286249	-0.00730727902284
+UniRef50_UPI0002BBFDEB	hypothetical protein	6.24591617212e-05	4.11716574579e-05	-2.12875042633e-05
+UniRef50_UPI00035D07EB	hypothetical protein	4.49479173686e-06	1.74029835511e-05	1.29081918142e-05
+UniRef50_UPI00016A9C60	major facilitator family transporter, partial	8.42368939224e-06	1.50562473805e-05	6.63255798826e-06
+UniRef50_C5N3T8		0.00729184147672	0.000942500122969	-0.00634934135375
+UniRef50_D4HAP5	Transcriptional regulatory protein, C terminal domain protein	0.000536709936758	0.00106967040494	0.000532960468182
+UniRef50_Q9CET9	Prephenate dehydrogenase	8.10984246014e-06	3.84845746202e-06	-4.26138499812e-06
+UniRef50_UPI000316C479	histidine ammonia lyase	5.06609875226e-06	8.08897763226e-05	7.58236775703e-05
+UniRef50_P06612	DNA topoisomerase 1	0.00349475483362	0.00747985834648	0.00398510351286
+UniRef50_UPI00029A4174	ABC transporter ATP binding protein	1.68667053234e-05	9.6584792319e-06	-7.2082260915e-06
+UniRef50_P57699	Potassium transporting ATPase B chain	9.35950550024e-06	0.0016336054402	0.0016242459347
+UniRef50_I0C7Y1	Arginine repressor	0.00459183311569	0.00251631113437	-0.00207552198132
+UniRef50_L7WV22		4.26525117713e-05	6.80119551092e-05	2.53594433379e-05
+UniRef50_UPI0003B500DF	ribosomal large subunit pseudouridine synthase C	1.89887291712e-05	7.49621047186e-05	5.59733755474e-05
+UniRef50_G2TQW7	Phosphotransferase system PTS sorbose specific IIC subunit	0.000238915182824	0.00144446736115	0.00120555217833
+UniRef50_A6LU65	Methyl accepting chemotaxis sensory transducer	0.00116399664264	0.00105391538354	-0.0001100812591
+UniRef50_Q3J3Y0		0.0137870328616	0.00144316847222	-0.0123438643894
+UniRef50_W7BZR4		4.5227939446e-05	0.000101906148032	5.6678208586e-05
+UniRef50_Q02137	Acetolactate synthase large subunit	0.0182537510425	0.00359286795449	-0.014660883088
+UniRef50_E4HVL3	YD repeat protein 	0.000337041061476	0.00304144366761	0.00270440260613
+UniRef50_P19931	Hydrogenase 1 operon protein HyaE	0.0127630668451	0.00444756432589	-0.00831550251921
+UniRef50_UPI000378C27D	hypothetical protein	7.09333524536e-06	3.3841638734e-05	2.67483034886e-05
+UniRef50_B8D1K5	ATP dependent 6 phosphofructokinase	2.39707260798e-05	1.86394317985e-05	-5.3312942813e-06
+UniRef50_UPI000382BE75	hypothetical protein	7.02483270442e-06	3.44558736015e-05	2.74310408971e-05
+UniRef50_UPI0003675045	ABC transporter substrate binding protein, partial	0.000129395736412	1.44321772973e-05	-0.000114963559115
+UniRef50_Q9RSM8	Endopeptidase IV related protein	9.25210757045e-05	0.00938826557001	0.00929574449431
+UniRef50_B7LSY4		0.000555126454193	0.000868578544689	0.000313452090496
+UniRef50_Q9CKJ2	L threonine dehydratase biosynthetic IlvA	1.73510491816e-05	2.38083568351e-05	6.4573076535e-06
+UniRef50_A0A022CKG6		9.82600088995e-05	0.00686595573602	0.00676769572712
+UniRef50_P0ACY5		0.00428644086102	0.00202858248083	-0.00225785838019
+UniRef50_R1F809		0.000216484833159	0.000234521922266	1.8037089107e-05
+UniRef50_B4U058	ComG operon protein 6	0.00608943842376	0.0027915956023	-0.00329784282146
+UniRef50_UPI00047620B0	SAM dependent methyltransferase	2.70355211621e-05	2.01355413933e-05	-6.8999797688e-06
+UniRef50_UPI00047183CB	MFS transporter	4.31449464414e-06	7.38389117094e-06	3.0693965268e-06
+UniRef50_M1M9U7	Carbohydrate ABC transporter membrane protein 1, CUT1 family	0.000963563047049	0.00102530598105	6.1742934001e-05
+UniRef50_F0N593	Transcriptional regulator, AraC family	0.000118706285809	0.00155821497554	0.00143950868973
+UniRef50_J9NX06		2.77554231966e-05	1.31843849903e-05	-1.45710382063e-05
+UniRef50_Q04R37	Pyridoxine pyridoxamine 5 phosphate oxidase	7.44961960154e-06	9.74130718131e-05	8.99634522116e-05
+UniRef50_A0A020HGX4		0.000315062796313	6.06898327703e-05	-0.000254372963543
+UniRef50_Q06473	Cytochrome c oxidase subunit 1	3.09093765927e-05	1.48315340541e-05	-1.60778425386e-05
+UniRef50_K7RQC1	Amino acid or sugar ABC transport system, permease protein	0.000295809976439	0.00402565066785	0.00372984069141
+UniRef50_P07251	ATP synthase subunit alpha, mitochondrial	3.77122466069e-06	1.01922977186e-05	6.42107305791e-06
+UniRef50_K1C2I8		0.000495970707103	2.45669966279e-05	-0.000471403710475
+UniRef50_UPI000383E572		0.000588446714186	0.000703135012379	0.000114688298193
+UniRef50_UPI00037611BB	hypothetical protein, partial	1.05334996469e-05	1.34057154757e-05	2.8722158288e-06
+UniRef50_B7UXU5	Homologous to beta keto acyl acyl carrier protein synthase	0.000566905531537	0.000172029148656	-0.000394876382881
+UniRef50_B0VV71		0.000138442294196	0.0136793413741	0.0135408990799
+UniRef50_D3E1B0		0.00215947299551	0.000436315164312	-0.0017231578312
+UniRef50_UPI00044349DC	PREDICTED	0.00018347800315	0.000187370153073	3.892149923e-06
+UniRef50_F5XE67	UTP  glucose 1 phosphate uridylyltransferase	0.000180436896891	0.00417632150567	0.00399588460878
+UniRef50_A7FAZ2		0.000353924589576	0.0100950231556	0.00974109856602
+UniRef50_Q47158		0.00202667483436	0.000814901208814	-0.00121177362555
+UniRef50_UPI0002000B64	antigen penicillin binding protein, partial	6.05063382824e-05	3.05470589451e-05	-2.99592793373e-05
+UniRef50_P37940	2 oxoisovalerate dehydrogenase subunit alpha	0.00946781057598	0.00310497870178	-0.0063628318742
+UniRef50_A6LRN8	Ribosomal protein L11 methyltransferase	0.000120218467792	0.00116480138946	0.00104458292167
+UniRef50_Q9KQH7	3 oxoacyl [acyl carrier protein] reductase FabG	0.00198383928536	0.0138883337855	0.0119044945001
+UniRef50_S9Q6A0		6.84346628827e-06	1.3970785959e-05	7.12731967073e-06
+UniRef50_UPI0003B3866E	hypothetical protein	1.86541014542e-05	3.0843389201e-05	1.21892877468e-05
+UniRef50_X6HEY2		2.68428930064e-05	2.85100372737e-05	1.6671442673e-06
+UniRef50_A5G0R5	Polyhydroxyalkonate synthesis repressor, PhaR	3.3241252976e-05	1.03331811693e-05	-2.29080718067e-05
+UniRef50_R4ZBL9	Cro Cl family transcriptional regulator	0.000250543797907	0.000644638687976	0.000394094890069
+UniRef50_UPI0003B54D0C	hypothetical protein	2.12599264863e-06	0.00128924004324	0.00128711405059
+UniRef50_H8H715		0.00023759807224	0.00532154663681	0.00508394856457
+UniRef50_Q3IVM9	Bacteriophage protein gp37	0.00583826168783	0.00117747944019	-0.00466078224764
+UniRef50_B7UXM6	Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.00029142976758	0.000611207066372	0.000319777298792
+UniRef50_Q6F8A1	Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase)	0.000143530794236	0.00750666565866	0.00736313486442
+UniRef50_P58740	Undecaprenyl diphosphatase 1	0.00733814090902	0.000239834579225	-0.00709830632979
+UniRef50_P18275	Arginine ornithine antiporter	0.000867813967949	0.000375652305693	-0.000492161662256
+UniRef50_UPI0003AB78DA	PREDICTED	0.000161245912958	0.000101935041895	-5.9310871063e-05
+UniRef50_UPI000380609D	hypothetical protein	8.92280642614e-05	0.000130690972798	4.14629085366e-05
+UniRef50_UPI0004715FA9	hypothetical protein	9.76727475219e-05	0.000175958515938	7.82857684161e-05
+UniRef50_Q7MP85	4 hydroxythreonine 4 phosphate dehydrogenase	0.0017757419229	0.00926628884416	0.00749054692126
+UniRef50_UPI00037E8BAF	cell envelope biogenesis protein TonB, partial	5.91093917794e-05	5.15297484259e-05	-7.5796433535e-06
+UniRef50_A6LRY0		0.000260467644753	0.00121531400606	0.000954846361307
+UniRef50_A3PPF7		0.00188119675583	0.000389519309542	-0.00149167744629
+UniRef50_G7MD13	Cell wall binding repeat containing protein	0.000549895586566	0.000479115938453	-7.0779648113e-05
+UniRef50_UPI000478557C	carbon monoxide dehydrogenase	9.04413972119e-05	7.48029729103e-05	-1.56384243016e-05
+UniRef50_B2RKJ1	NAD specific glutamate dehydrogenase	0.0125424250654	0.0218666685197	0.0093242434543
+UniRef50_UPI000237AD1B	aldehyde dehydrogenase	5.47673103459e-06	7.90669588018e-06	2.42996484559e-06
+UniRef50_D2N4B3	Ribosomal protein serine N acetyltransferase	0.0203915143028	0.00413540880737	-0.0162561054954
+UniRef50_D3R7P0	Queuine tRNA ribosyltransferase	0.000322364335723	0.00558184202023	0.00525947768451
+UniRef50_Q4L8F8	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0273878041441	0.00537498131452	-0.0220128228296
+UniRef50_F3Y5B2	Putative fluoride ion transporter CrcB	4.64198979205e-05	3.88054017154e-05	-7.6144962051e-06
+UniRef50_Q3IVD1	3 oxoadipate enol lactonase	0.00441496941689	0.00135887031112	-0.00305609910577
+UniRef50_X5F4R0		0.00379324233336	0.00146438035634	-0.00232886197702
+UniRef50_UPI0004636ECE	hypothetical protein	0.000209386709031	0.00012569312457	-8.3693584461e-05
+UniRef50_C6S6X2	Gamma glutamyltranspeptidase	0.000341155720662	0.0032292752057	0.00288811948504
+UniRef50_Q49Y11	Cytidine deaminase	0.0118382093491	0.000898626558672	-0.0109395827904
+UniRef50_P38051	Menaquinone specific isochorismate synthase	0.00267667547568	0.000565095116097	-0.00211158035958
+UniRef50_D4H9R3	YjeF domain protein	0.000275194618029	0.00373096243432	0.00345576781629
+UniRef50_UPI00035965D6	PREDICTED	7.43026692316e-05	2.48392921378e-05	-4.94633770938e-05
+UniRef50_A0A011PJV1	Dihydrofolate reductase	1.14782154589e-05	6.87603095704e-05	5.72820941115e-05
+UniRef50_Q9RTK3		0.000216945970609	0.0466683950739	0.0464514491033
+UniRef50_A1WST0	Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding	4.8333673348e-05	0.00165824350589	0.00160990983254
+UniRef50_O33655	Lactate 2 monooxygenase	2.16823602716e-05	0.00125427085928	0.00123258849901
+UniRef50_J3BE74	Metallo beta lactamase superfamily enzyme	0.000190335031064	3.58392100569e-05	-0.000154495821007
+UniRef50_UPI0001745109	peptide ABC transporter permease	4.32249417887e-05	2.95853640993e-05	-1.36395776894e-05
+UniRef50_Q89AT8	NADH quinone oxidoreductase subunit J	1.82704594843e-05	2.95249777038e-05	1.12545182195e-05
+UniRef50_Q9RZK0		0.000378748483804	0.00625384889509	0.00587510041129
+UniRef50_F4FQW3	Recombinational DNA repair protein RecT	0.0176772474001	0.0031979146898	-0.0144793327103
+UniRef50_Q8YIY0	Phosphoglycerate kinase	0.00480601230375	0.000956686164383	-0.00384932613937
+UniRef50_UPI0004258808	hypothetical protein	1.52245565301e-06	8.5240506919e-06	7.00159503889e-06
+UniRef50_UPI000225F0D6	hypothetical protein	6.66327452548e-06	0.000735228311697	0.000728565037172
+UniRef50_UPI000362EC3A	hypothetical protein	5.21964361489e-05	1.3820252403e-05	-3.83761837459e-05
+UniRef50_Q17XQ8	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000286808815281	0.00649398675032	0.00620717793504
+UniRef50_Q9RSF5	Drug transport protein	0.000181283923867	0.02800437642	0.0278230924961
+UniRef50_UPI0003B73A04	AsnC family transcriptional regulator	0.000237792613004	6.48074969304e-05	-0.000172985116074
+UniRef50_UPI00035D1A94	hypothetical protein	0.000181559160811	3.04466972403e-05	-0.000151112463571
+UniRef50_Q6APZ3	Prolipoprotein diacylglyceryl transferase	2.44203682889e-05	1.40973977457e-05	-1.03229705432e-05
+UniRef50_R7N4H0	Pyridine nucleotide disulfide oxidoreductase	0.00032310301134	0.000914172891312	0.000591069879972
+UniRef50_A9WA88	Xanthine phosphoribosyltransferase	1.37793206945e-05	3.01307503126e-05	1.63514296181e-05
+UniRef50_B3E7C1		5.03082333324e-05	1.9323718653e-05	-3.09845146794e-05
+UniRef50_D8U7R0		9.49365771667e-06	1.11125673445e-05	1.61890962783e-06
+UniRef50_Q9ZJ75	Ribulose phosphate 3 epimerase	1.66035744343e-05	0.00231493607223	0.0022983324978
+UniRef50_Q3J229		0.0126149558799	0.00439772592246	-0.00821722995744
+UniRef50_Q3J227		0.0292566891742	0.000482806602495	-0.0287738825717
+UniRef50_UPI00038131B7	hypothetical protein	1.0023417839e-05	1.38110033496e-05	3.7875855106e-06
+UniRef50_UPI0001F85C49	biotin synthase like protein	2.48935217411e-05	4.38051141605e-05	1.89115924194e-05
+UniRef50_M4ZJP4		0.000117474892792	0.00139895567705	0.00128148078426
+UniRef50_G7U4I0	Uroporphyrinogen III synthase	0.000370760693428	0.00478929559332	0.00441853489989
+UniRef50_M1NMK8		1.46499384341e-05	8.34672844958e-05	6.88173460617e-05
+UniRef50_X0U0K9	Marine sediment metagenome DNA, contig	9.19524785138e-06	0.00270521399083	0.00269601874298
+UniRef50_Q3JUG7	Xanthine uracil permease family protein	0.0009215419328	0.00994122766295	0.00901968573015
+UniRef50_UPI0002627BB0	50S ribosomal protein L15, partial	0.000179456420581	0.000603213224877	0.000423756804296
+UniRef50_R9SMQ4	Phosphate ABC transporter permease protein PstA	0.000834233270323	0.00126105161592	0.000426818345597
+UniRef50_K0T1H0		7.25005100276e-05	2.11926619617e-05	-5.13078480659e-05
+UniRef50_K0WK29		0.000779260799929	0.00509042750724	0.00431116670731
+UniRef50_A4WTM8		0.00149837666892	0.000117168609764	-0.00138120805916
+UniRef50_A1BAY3		2.89063807021e-05	1.55651349652e-05	-1.33412457369e-05
+UniRef50_Q3IZ78	Mesaconyl CoA hydratase	0.00573205588246	0.00159479613416	-0.0041372597483
+UniRef50_P19366	ATP synthase subunit beta, chloroplastic	1.9666321806e-05	4.51583984968e-05	2.54920766908e-05
+UniRef50_P49189	4 trimethylaminobutyraldehyde dehydrogenase	8.71099199654e-06	1.18016311535e-05	3.09063915696e-06
+UniRef50_UPI0003627DD4	30S ribosomal protein S4	5.28344492532e-05	3.64703627265e-05	-1.63640865267e-05
+UniRef50_UPI000455E0E7	ribosomal protein S12	6.22918789034e-05	7.00941753509e-05	7.8022964475e-06
+UniRef50_F2I9T6	Endoribonuclease L PSP	0.000156375456285	6.00301912227e-05	-9.63452650623e-05
+UniRef50_UPI000370459E	hypothetical protein, partial	8.18503056861e-06	0.000704640774292	0.000696455743723
+UniRef50_Q03SV2	Ribose 5 phosphate isomerase A	0.00352133774432	0.00086749659062	-0.0026538411537
+UniRef50_UPI0002EFA82A	nucleoside triphosphate pyrophosphohydrolase	8.65653773257e-06	6.02953775856e-06	-2.62699997401e-06
+UniRef50_Q9Z670	Gluconate permease	1.45790358184e-05	1.31290205501e-05	-1.4500152683e-06
+UniRef50_UPI00036A5335	CRISPR associated protein Csd1, partial	0.000709507604288	0.000386541654168	-0.00032296595012
+UniRef50_K0S333		2.47427271148e-05	8.58985428236e-06	-1.61528728324e-05
+UniRef50_A3T0X3		0.000163630822506	0.000182507353108	1.8876530602e-05
+UniRef50_Q21VW6	NADPH dependent 7 cyano 7 deazaguanine reductase	9.69594158272e-06	0.000280363960626	0.000270668019043
+UniRef50_A7ZQ55	NAD kinase	0.00275759212725	0.00110914761965	-0.0016484445076
+UniRef50_A6LZN3	Hydrogenase accessory protein HypB	0.00228151517949	0.000559695659009	-0.00172181952048
+UniRef50_Q2FJN4	Alkyl hydroperoxide reductase subunit C	0.00919021265587	0.00278387878248	-0.00640633387339
+UniRef50_UPI0004658AD9	saccharopine dehydrogenase	4.82890507104e-05	0.000254659291322	0.000206370240612
+UniRef50_UPI0003F63AFE	GntR family transcriptional regulator	3.27638487637e-06	4.90224030191e-06	1.62585542554e-06
+UniRef50_V8FYN5	CoA activase	0.000340082618917	0.00145180639083	0.00111172377191
+UniRef50_E3D490		0.000672386425058	0.00354651672606	0.002874130301
+UniRef50_Q2FH66	Indole 3 glycerol phosphate synthase	0.017500966047	0.00569041151961	-0.0118105545274
+UniRef50_B7V4W8		0.000712657001806	0.00117375640368	0.000461099401874
+UniRef50_Q53135	Chemotaxis protein CheA	0.0128211307401	0.00467647995935	-0.00814465078075
+UniRef50_A5IVV5	Sortase family protein	0.0205420931422	0.00453185729897	-0.0160102358432
+UniRef50_E9JFX9	Dimethyl sulfide monooxygenase	0.000683977558455	0.0086723544519	0.00798837689345
+UniRef50_C4K6C1	5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.0152517677422	0.00132444778914	-0.0139273199531
+UniRef50_B4R8Q8	Peptidyl tRNA hydrolase	5.11134021247e-05	3.22681257508e-05	-1.88452763739e-05
+UniRef50_P29968	Putative dehydrogenase XoxF	0.0118453384729	0.00237847082998	-0.00946686764292
+UniRef50_U4V1U2		0.00633472291306	0.000387423167729	-0.00594729974533
+UniRef50_Q74I62	Putative ABC transporter ATP binding protein LJ_1704	0.00723965592388	0.00235200600469	-0.00488764991919
+UniRef50_D4MDT9		3.15002144198e-05	0.000626113155893	0.000594612941473
+UniRef50_Q60177	Proteasome subunit alpha	0.00200234204499	0.000239769990679	-0.00176257205431
+UniRef50_Q2FS70	30S ribosomal protein S7	0.00356484645398	0.000525786418738	-0.00303906003524
+UniRef50_P44432	Enoyl [acyl carrier protein] reductase [NADH] FabI	0.00334713666784	0.0053045623206	0.00195742565276
+UniRef50_P28274	CTP synthase 1	5.24020755106e-06	0.000110182567853	0.000104942360302
+UniRef50_A6LZD7	Flavin reductase domain protein, FMN binding	0.000199026004668	0.00101165996604	0.000812633961372
+UniRef50_W8W2G5		0.000105165722563	0.00057035452857	0.000465188806007
+UniRef50_C6XI98	Fe S metabolism associated SufE	9.45299442955e-05	1.78229946224e-05	-7.67069496731e-05
+UniRef50_P33352		0.00223248240016	0.000508538814678	-0.00172394358548
+UniRef50_P33353		0.00251378733583	0.000729354687196	-0.00178443264863
+UniRef50_F8JL19		4.4952903581e-06	0.000462145704483	0.000457650414125
+UniRef50_G7ZSB9	Nucleoside permease	0.0205288050156	0.00598075778161	-0.014548047234
+UniRef50_UPI0003676E77	hypothetical protein	1.50654716095e-05	2.43731711017e-05	9.3076994922e-06
+UniRef50_B7LSZ0	Cytoplasmic trehalase	0.00318869190526	0.00152090322351	-0.00166778868175
+UniRef50_W1MRE5	General secretion pathway protein D	0.000242676423441	0.000293763150069	5.1086726628e-05
+UniRef50_Q1NCJ9		3.79238905892e-05	5.13775231482e-05	1.3453632559e-05
+UniRef50_O34481	ATP dependent RecD like DNA helicase	1.20263455103e-05	0.000902363051583	0.000890336706073
+UniRef50_I1QUN8		0.000226823941402	8.75678654467e-06	-0.000218067154857
+UniRef50_D6EJV1	Transcriptional regulatory protein 	4.53291282004e-05	0.000116149010866	7.08198826656e-05
+UniRef50_Q8E7K5	4 diphosphocytidyl 2 C methyl D erythritol kinase	0.0030708834998	0.00330322027954	0.00023233677974
+UniRef50_M4QZK0	Alpha beta hydrolase family protein	0.000296661826224	0.00741991463758	0.00712325281136
+UniRef50_UPI000262F232	cytochrome c oxidase subunit I, partial	0.000155931085724	0.00055506090193	0.000399129816206
+UniRef50_P61429	Periplasmic [NiFe] hydrogenase small subunit 2	6.37963548497e-05	1.89667285623e-05	-4.48296262874e-05
+UniRef50_H7CVU9	FliB family protein	0.000205602390439	0.00147753393576	0.00127193154532
+UniRef50_U5MR93	Sensor histidine kinase YvrG	0.000463777779289	0.00111517935784	0.000651401578551
+UniRef50_M9VFE8	Low molecular weight phosphotyrosine protein phosphatase	0.000275537218136	0.00787924822684	0.0076037110087
+UniRef50_A3LER3		0.00441446232265	0.00100676149498	-0.00340770082767
+UniRef50_F1UR15	BNR Asp box repeat protein	0.000226491593311	0.00267074677529	0.00244425518198
+UniRef50_Q5FQE8	Leucyl phenylalanyl tRNA  protein transferase	1.89966206479e-05	5.67102383896e-05	3.77136177417e-05
+UniRef50_D9SN85	Glutathione peroxidase	0.000475856278317	0.00130645942102	0.000830603142703
+UniRef50_H2CHQ0	Magnesium protoporphyrin chelatase	1.15894856147e-05	0.000109151275654	9.75617900393e-05
+UniRef50_R6QPN1	MaoC domain containing protein	3.43644226243e-05	3.4959274639e-05	5.948520147e-07
+UniRef50_UPI000378EE65	hypothetical protein	0.000157251568903	2.23593159626e-05	-0.00013489225294
+UniRef50_A0A023RUE3		0.000301988791085	0.00315417711711	0.00285218832602
+UniRef50_Q3J1F8		0.000410310857448	0.00197510419034	0.00156479333289
+UniRef50_Q3J1F7		0.0208445033174	0.00976986721725	-0.0110746361001
+UniRef50_Q3J1F6		0.00315502747031	0.00137635270273	-0.00177867476758
+UniRef50_U5T8A8		9.94971920716e-06	4.05608903942e-05	3.0611171187e-05
+UniRef50_K0HDE0	tRNA rRNA cytosine C5 methylase	0.000372333068099	0.00541006285113	0.00503772978303
+UniRef50_A8AMK7		0.000762632540255	0.0010227035599	0.000260071019645
+UniRef50_B2TKI7	Serine type D Ala D Ala carboxypeptidase	0.000102299725981	0.00123582843999	0.00113352871401
+UniRef50_UPI000474D5BE	ABC transporter substrate binding protein	6.25768387806e-06	9.45205436108e-06	3.19437048302e-06
+UniRef50_P20966	PTS system fructose specific EIIBC component	0.00209107048136	0.00736726751083	0.00527619702947
+UniRef50_Q6AFY0	Glutamate 5 kinase	6.1677719135e-06	2.65550382283e-05	2.03872663148e-05
+UniRef50_W1DU15		4.65667300084e-05	3.38951472329e-05	-1.26715827755e-05
+UniRef50_Q9TM10	1,4 Dihydroxy 2 naphthoyl CoA synthase	3.28202013443e-05	0.00178517585979	0.00175235565845
+UniRef50_UPI0004704F45	hypothetical protein, partial	0.00127064575081	0.000141957669611	-0.0011286880812
+UniRef50_Q4L3X4	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0149898624179	0.00271817457813	-0.0122716878398
+UniRef50_W8RT27	Cation transport protein chaC	0.00227651293274	0.00044485747603	-0.00183165545671
+UniRef50_P9WPD4	Citrate synthase 1	0.0113707570175	0.0167683093421	0.0053975523246
+UniRef50_A9U864	Predicted protein 	4.04835219587e-05	2.16077389641e-05	-1.88757829946e-05
+UniRef50_A3MR63	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000262084502793	0.00344372305919	0.0031816385564
+UniRef50_I0C5H5		0.0221089196473	0.00369081817815	-0.0184181014691
+UniRef50_A7MHJ0	Multidrug resistance protein MdtC	0.000326253936736	6.54079081232e-05	-0.000260846028613
+UniRef50_Q9ZKU4	Phosphate acetyltransferase	8.3957196985e-05	0.00176656159321	0.00168260439622
+UniRef50_A6M1S0	Glycoside hydrolase, clan GH D	0.000228178381989	0.00191982715527	0.00169164877328
+UniRef50_Q6AA51	L fucose isomerase	0.000215706279348	0.00417994543444	0.00396423915509
+UniRef50_UPI000299F06B	amino acid carrier protein	2.85858601498e-06	0.000344522100366	0.000341663514351
+UniRef50_UPI0003FD6D14	preprotein translocase subunit SecY	3.66921986831e-06	0.000323183384054	0.000319514164186
+UniRef50_Q3KE48	Macrolide export ATP binding permease protein MacB 2	2.63709742845e-06	5.44853369273e-06	2.81143626428e-06
+UniRef50_UPI00037DAE2C	hypothetical protein	0.000114269289755	6.06010743363e-05	-5.36682154187e-05
+UniRef50_UPI00044207B4	PREDICTED	1.40318390029e-05	2.50539843762e-05	1.10221453733e-05
+UniRef50_UPI000427E2A8	MULTISPECIES	5.1160787201e-06	1.93947936289e-05	1.42787149088e-05
+UniRef50_D2J8Q0		0.0273548738913	0.00492647470874	-0.0224283991826
+UniRef50_UPI00047CFA7B	transcriptional regulatory protein LPC_0711	1.23483993087e-05	2.70832667065e-05	1.47348673978e-05
+UniRef50_D2J8Q4		0.0234684508688	0.0124695349464	-0.0109989159224
+UniRef50_A0A023X187	Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain	0.00973972226156	0.00414868564779	-0.00559103661377
+UniRef50_UPI00035F5A7F	MULTISPECIES	0.00021572836793	7.54532659831e-05	-0.000140275101947
+UniRef50_Q97LP2	Putative gluconeogenesis factor	0.000388762706854	0.00303045189421	0.00264168918736
+UniRef50_P25130		0.00540355463117	0.00394615334061	-0.00145740129056
+UniRef50_K7SFI0	MMPL family protein	9.37474133492e-05	0.00428479540653	0.00419104799318
+UniRef50_UPI0003B3F8CA	cysteine desulfurase	6.8598991231e-05	6.35554557128e-06	-6.22434456597e-05
+UniRef50_UPI000455DBA8	alcohol oxidase	9.08362744899e-06	3.81624592824e-06	-5.26738152075e-06
+UniRef50_F2I8T3	PTS system mannose fructose sorbose family IID component	0.000427266965028	0.00107137923123	0.000644112266202
+UniRef50_E5QSU8	Transcriptional regulator, AraC family	0.00903538083312	0.00170685068881	-0.00732853014431
+UniRef50_A0A011QY39	3 isopropylmalate dehydrogenase	2.13506550549e-05	4.0241419582e-05	1.88907645271e-05
+UniRef50_A3V9P5		1.61520221422e-05	3.22505371603e-05	1.60985150181e-05
+UniRef50_UPI0003C140C5	PREDICTED	4.86692983414e-05	1.88666389327e-05	-2.98026594087e-05
+UniRef50_Q56200	UPF0045 protein in glkA 3region	0.00349552586281	0.00148899179089	-0.00200653407192
+UniRef50_P43340		0.00546998098416	0.00125325329887	-0.00421672768529
+UniRef50_Q03638	Glutamine dependent NAD synthetase	0.0034038778168	0.00120856425564	-0.00219531356116
+UniRef50_X1F3U5	Marine sediment metagenome DNA, contig	1.49113208648e-05	4.18034837332e-06	-1.07309724915e-05
+UniRef50_UPI00035E72A3	hypothetical protein	7.52799755192e-05	7.73908187746e-05	2.1108432554e-06
+UniRef50_Q1LT55	Threonylcarbamoyl AMP synthase	0.00219234459655	0.000425937555561	-0.00176640704099
+UniRef50_X1SY05	Marine sediment metagenome DNA, contig	0.000341847846401	0.000127314394853	-0.000214533451548
+UniRef50_Q12EY5	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	6.64825334368e-05	5.35633793892e-05	-1.29191540476e-05
+UniRef50_I6T636	MutG	0.00500147752383	0.00104286629288	-0.00395861123095
+UniRef50_D7DI05		1.18529861155e-05	0.000113447712445	0.000101594726329
+UniRef50_S5YTV6	TRAP type C4 dicarboxylate transport system, periplasmic component	0.0133092081594	0.00537253844266	-0.00793666971674
+UniRef50_UPI0002EB61A9	hypothetical protein	1.24129652105e-05	6.26385048384e-05	5.02255396279e-05
+UniRef50_J9YRQ7	ABC transporter ATP binding protein	0.000240948503526	0.000782164227135	0.000541215723609
+UniRef50_A8AVU5	Cell cycle protein GpsB	0.00166450129044	0.00204299602631	0.00037849473587
+UniRef50_UPI0002887069	aldehyde dehydrogenase	2.04492784773e-05	5.6382479142e-06	-1.48110305631e-05
+UniRef50_B1XZ42	40 residue YVTN family beta propeller repeat protein	5.34439096609e-06	9.18979337018e-06	3.84540240409e-06
+UniRef50_F9Y8T0		2.59859155757e-05	8.18775957644e-05	5.58916801887e-05
+UniRef50_E4N2K8		5.05809124277e-05	1.0865013728e-05	-3.97158986997e-05
+UniRef50_K7WGH8		0.000185885899069	2.81399618593e-05	-0.00015774593721
+UniRef50_UPI00041077BF	hypothetical protein	0.000103339225354	2.57742082024e-05	-7.75650171516e-05
+UniRef50_I6R4V1	Putative outer membrane protein 	1.71386461242e-05	5.22012740727e-05	3.50626279485e-05
+UniRef50_Q3SF48	DEAD DEAH box helicase	8.92401864878e-05	0.00292054196691	0.00283130178042
+UniRef50_W6RFV5		0.000205505349017	9.64489166481e-05	-0.000109056432369
+UniRef50_D3PQJ8	Thioesterase superfamily protein	1.2651837593e-05	0.00232909892151	0.00231644708392
+UniRef50_P39852	Putative tyrosine protein phosphatase CapC	0.0228677104357	0.00538371027409	-0.0174840001616
+UniRef50_Q1JBZ2	Xaa His dipeptidase	0.0048986855135	0.00573969953438	0.00084101402088
+UniRef50_R5EHV3		0.00012095598812	5.02489268354e-05	-7.07070612846e-05
+UniRef50_T1ZCM0	Endonuclease, putative	0.00368165158001	0.00154354284959	-0.00213810873042
+UniRef50_J1RUT9	Dehydrogenase	0.000103409468992	7.29107979874e-06	-9.61183891933e-05
+UniRef50_W6ELT6	Glutathionylspermidine synthetase	0.000234463347108	0.00306372437279	0.00282926102568
+UniRef50_Q97K94	Quinolinate synthase A	0.000463736915189	0.000385005668224	-7.8731246965e-05
+UniRef50_P39438	Undecaprenyl diphosphatase 	0.000280239581447	2.28631823718e-05	-0.000257376399075
+UniRef50_R7LCT1		2.1712008157e-05	9.73644342857e-05	7.56524261287e-05
+UniRef50_O34546		0.00955950544247	0.00230176246689	-0.00725774297558
+UniRef50_D0W2S1		0.000718295583812	0.00869862414418	0.00798032856037
+UniRef50_I3U2U9	Iron  ABC superfamily ATP binding cassette transporter, ABC protein	0.0100270564082	0.00672196088517	-0.00330509552303
+UniRef50_Q5X449		1.51498074756e-05	0.00115278825886	0.00113763845138
+UniRef50_L1K8B7		0.012753794904	0.00298438446265	-0.00976941044135
+UniRef50_A6LYL7	Methyl accepting chemotaxis sensory transducer	0.000448253835515	0.00151624221087	0.00106798837535
+UniRef50_UPI000185085B	tyrosyl tRNA synthetase	2.31211636328e-05	5.77033695808e-05	3.4582205948e-05
+UniRef50_P45767	Putative amino acid ABC transporter permease protein YhdX	0.00203992669816	0.00146380685304	-0.00057611984512
+UniRef50_UPI0003B66746	RNA polymerase sigma factor RpoD, partial	2.09647679644e-05	9.98240321908e-06	-1.09823647453e-05
+UniRef50_Q5HNC9	ISSep1 like transposase	0.00511786813867	0.00349963448291	-0.00161823365576
+UniRef50_G8AR28		9.83890500953e-05	0.000323045027969	0.000224655977874
+UniRef50_Q2S9Q5	Shikimate kinase	2.16171300586e-05	1.31698154875e-05	-8.4473145711e-06
+UniRef50_W7QBC1		4.18554950343e-06	4.50381329481e-05	4.08525834447e-05
+UniRef50_Q03Z27	Methionine import ATP binding protein MetN	0.0034926307475	0.00395606905278	0.00046343830528
+UniRef50_UPI0004782D1F	crotonyl CoA reductase	0.00038665213185	4.64929529619e-05	-0.000340159178888
+UniRef50_Q6GF03	Alanine racemase 1	0.0212928500092	0.0048768586199	-0.0164159913893
+UniRef50_A8FHJ2	Triosephosphate isomerase	0.0104497424988	0.00105810507073	-0.00939163742807
+UniRef50_Q73GH4	NADH quinone oxidoreductase subunit I	0.00846826360213	0.00674887412809	-0.00171938947404
+UniRef50_A1JK30	Fatty acid oxidation complex subunit alpha	0.00113191549265	0.000478620154531	-0.000653295338119
+UniRef50_UPI00045D739F		1.83426520829e-05	6.35401538127e-05	4.51975017298e-05
+UniRef50_B9KWI6	ABC 2 type transporter	0.00269422808131	0.000918886451209	-0.0017753416301
+UniRef50_Q1GCN0	MltA	0.00180681039408	0.000355804693941	-0.00145100570014
+UniRef50_O29777	Probable copper exporting P type ATPase A	3.66428805917e-06	7.11730660171e-06	3.45301854254e-06
+UniRef50_Q9RRB7	Probable manganese dependent inorganic pyrophosphatase	0.000434634491936	0.0568105207464	0.0563758862545
+UniRef50_R9SLB3		0.00378520327101	0.000569981332219	-0.00321522193879
+UniRef50_B4RR70	Acyl CoA dehydrogenase, C terminal	0.000209668340276	8.91002373343e-05	-0.000120568102942
+UniRef50_A3PQF0	Extracellular solute binding protein, family 3	0.00971884680711	0.00292279899301	-0.0067960478141
+UniRef50_D7GG00	Na+ H+ antiporter	0.000107955954865	0.00379881285644	0.00369085690158
+UniRef50_Q6A7Y1	Glutamyl Q tRNA synthetase	3.11726804988e-05	0.00740338958482	0.00737221690432
+UniRef50_A0YH35		0.000234404390814	0.000649864447795	0.000415460056981
+UniRef50_A0A023RSS6	rRNA methyltransferase	0.000173158710486	0.00651787625754	0.00634471754705
+UniRef50_N6UYS2		0.000124252569829	0.000242571279646	0.000118318709817
+UniRef50_UPI0003B3CC7C	methyltransferase	1.70914943342e-05	5.52876165317e-05	3.81961221975e-05
+UniRef50_UPI000477CA46	alcohol dehydrogenase	7.58175173943e-06	5.8261944898e-05	5.06801931586e-05
+UniRef50_A9B3R2	Lon protease 2	1.63816700317e-06	7.89429011562e-06	6.25612311245e-06
+UniRef50_J0ZPJ9		0.000370084302795	0.000501954739708	0.000131870436913
+UniRef50_UPI000473C272	hypothetical protein, partial	4.15273859945e-05	2.55607838118e-05	-1.59666021827e-05
+UniRef50_T8WTI4	Arylsulfatase	0.00185705705839	0.000951413314313	-0.000905643744077
+UniRef50_M5F699		0.00174714412176	2.91997297174e-05	-0.00171794439204
+UniRef50_J7IM71	Drug resistance transporter, EmrB QacA subfamily	0.000830074092833	0.00250460938908	0.00167453529625
+UniRef50_Q7AJV9	Na+ H+ antiporter	8.5755593552e-06	7.22041787934e-05	6.36286194382e-05
+UniRef50_A4IRH3	Trigger factor	0.0196593345938	0.006899484045	-0.0127598505488
+UniRef50_Q8XCW6	Protein SprT	0.00417188256124	0.00230889098632	-0.00186299157492
+UniRef50_UPI0004656097	hypothetical protein	6.14098489997e-06	7.68714239811e-06	1.54615749814e-06
+UniRef50_B2TPE7	Cobyric acid synthase	7.64657641136e-05	0.000921124198382	0.000844658434268
+UniRef50_A0A023RH98	Immunogenic protein	4.17796295122e-05	1.27082182012e-05	-2.9071411311e-05
+UniRef50_B9KM49		0.00146637509717	7.40046318501e-05	-0.00139237046532
+UniRef50_M9R6A5	Ribose 5 phosphate isomerase A	0.00539829053595	0.00023815863322	-0.00516013190273
+UniRef50_Q1CUH3	Tetraacyldisaccharide 4 kinase	0.000175032143208	0.0034728619872	0.00329782984399
+UniRef50_M7WMK4		1.20177663598e-06	2.19029291616e-05	2.07011525256e-05
+UniRef50_Q8CTN4		0.00607940714894	0.00224217023839	-0.00383723691055
+UniRef50_Q5HQC2	Aminotransferase, class I	0.0175013265377	0.00304322508701	-0.0144581014507
+UniRef50_X1ED13	Marine sediment metagenome DNA, contig	5.97144146278e-05	4.22119354768e-05	-1.7502479151e-05
+UniRef50_UPI0003B41E95	beta hexosaminidase	2.54937698522e-05	3.53412127659e-05	9.8474429137e-06
+UniRef50_Q89FK3	Bll6696 protein	0.000383234506454	0.00592418895915	0.0055409544527
+UniRef50_A9M2J7	Nicotinate nucleotide pyrophosphorylase	0.000658498470807	0.00222283271526	0.00156433424445
+UniRef50_W1I511	Uncultured bacterium extrachromosomal DNA RGI02237	9.11825855719e-06	7.4326048067e-05	6.52077895098e-05
+UniRef50_G0HG32	Short chain dehydrogenase	0.00033631284139	0.00891836598299	0.0085820531416
+UniRef50_Q4L8L0	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0232927222927	0.0071746016286	-0.0161181206641
+UniRef50_R4KHK5	ADP forming acetyl coenzyme A synthetase	0.00288203896426	0.00028576736418	-0.00259627160008
+UniRef50_T7WH30	Electron transfer flavoprotein beta subunit	0.00143420076665	0.000304450211538	-0.00112975055511
+UniRef50_UPI00047D95CB	hypothetical protein	4.95016765882e-05	2.51119688013e-05	-2.43897077869e-05
+UniRef50_A5UZH7	NADH quinone oxidoreductase subunit D 2	3.61454906705e-06	0.000107086419769	0.000103471870702
+UniRef50_UPI0003627E6E	hypothetical protein	1.45387369845e-05	2.43940855843e-05	9.8553485998e-06
+UniRef50_UPI000477A59D	MFS transporter	2.13041021088e-05	8.01154522184e-05	5.88113501096e-05
+UniRef50_UPI000248D54F	phosphofructokinase	1.48605882201e-05	8.45283208573e-06	-6.40775613437e-06
+UniRef50_UPI000379B3FC	hypothetical protein	8.50231617535e-06	1.44756458196e-05	5.97332964425e-06
+UniRef50_G7M6V5	Drug resistance transporter, EmrB QacA subfamily	0.000203396142896	0.00134039016278	0.00113699401988
+UniRef50_UPI0002FCF501	hypothetical protein	0.000108354607452	2.54234371448e-05	-8.29311703072e-05
+UniRef50_C1D381		4.80159593664e-05	3.62389027128e-05	-1.17770566536e-05
+UniRef50_R4RP03		0.00103577717835	0.000380907636008	-0.000654869542342
+UniRef50_UPI0004721298	GTP pyrophosphokinase, partial	3.43618786593e-06	7.60515974612e-06	4.16897188019e-06
+UniRef50_UPI0004798C74	hypothetical protein, partial	0.000157031175346	6.89419956487e-05	-8.80891796973e-05
+UniRef50_UPI00017465EA	acetylornithine aminotransferase	2.76712976279e-06	5.71974596922e-06	2.95261620643e-06
+UniRef50_I5AX29	ABC type multidrug transport system, ATPase and permease component	0.00423121384711	0.00148688250167	-0.00274433134544
+UniRef50_E0TQE3		0.000141080003062	3.9259219208e-05	-0.000101820783854
+UniRef50_R7SQ97		7.72375205943e-05	0.000357682137179	0.000280444616585
+UniRef50_W0YYF5		0.00020076192379	0.000322328747082	0.000121566823292
+UniRef50_Q18C09	Methionine import ATP binding protein MetN	0.000289049725947	0.00129822842007	0.00100917869412
+UniRef50_UPI0003F12680	PREDICTED	1.18324974822e-06	6.52831408315e-07	-5.30418339905e-07
+UniRef50_B8FI62	Phosphopantetheine adenylyltransferase	3.6175700425e-05	1.5669971108e-05	-2.0505729317e-05
+UniRef50_P38527	Transcription termination factor Rho	0.0249334743059	0.00587133716058	-0.0190621371453
+UniRef50_R6FSL2		0.000125828662949	0.00185680017089	0.00173097150794
+UniRef50_UPI000344160C		0.000304190551264	7.21331912429e-06	-0.00029697723214
+UniRef50_D2JFR4		0.000547407329753	0.000255043684328	-0.000292363645425
+UniRef50_Q6G5A9	Shikimate dehydrogenase	4.71452623886e-05	3.6562461352e-05	-1.05828010366e-05
+UniRef50_D2JFR8		0.0479451247822	0.0103019864525	-0.0376431383297
+UniRef50_G4Q931		0.00031512990344	0.000837598391883	0.000522468488443
+UniRef50_F2IXV2	GfdT protein	8.39978823267e-06	5.92213840265e-06	-2.47764983002e-06
+UniRef50_Q5HM63	Drug resistance transporter, EmrB QacA family	0.021279683306	0.00748211429318	-0.0137975690128
+UniRef50_UPI0003651980	hypothetical protein	2.03368464082e-06	4.37435610398e-06	2.34067146316e-06
+UniRef50_UPI00037DFBE2	hypothetical protein	4.66491567994e-05	4.49004538372e-06	-4.21591114157e-05
+UniRef50_Q2G3T3	ATP dependent Clp protease proteolytic subunit	7.93737242993e-06	9.69724582376e-05	8.90350858077e-05
+UniRef50_T9PRX2		0.000865790300272	0.000233791671239	-0.000631998629033
+UniRef50_UPI00036A03C0	hypothetical protein	0.000174687767135	0.000147026249191	-2.7661517944e-05
+UniRef50_C3MFX0	UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00112899308735	0.000196397728304	-0.000932595359046
+UniRef50_R9SIP9	CoB  CoM heterodisulfide reductase subunit B HdrB1	0.00257696771695	0.000987743006891	-0.00158922471006
+UniRef50_O26278	tRNA guanine transglycosylase	0.00302238591038	0.000801940633003	-0.00222044527738
+UniRef50_S6QJ91	Aryldialkylphosphatase 	0.000146410463029	0.000112143810897	-3.4266652132e-05
+UniRef50_UPI000225F8FA	hemolysin type calcium binding region, partial	7.20421798275e-05	1.44163431893e-05	-5.76258366382e-05
+UniRef50_B8G821	Uroporphyrinogen decarboxylase	5.83464720606e-06	2.22582805103e-05	1.64236333042e-05
+UniRef50_X2X8I7		2.67565145032e-06	0.000864895295165	0.000862219643715
+UniRef50_O32163	Zinc dependent sulfurtransferase SufU	0.0212547428349	0.00168829802687	-0.019566444808
+UniRef50_D1BE57		1.54224767752e-06	7.16607796421e-05	7.01185319646e-05
+UniRef50_A5ULR8	Digeranylgeranylglyceryl phosphate synthase	0.00306668390493	0.000295316705201	-0.00277136719973
+UniRef50_UPI00036E0F7E	hypothetical protein	5.58624884417e-05	2.58509876162e-05	-3.00115008255e-05
+UniRef50_Q6A9W7	Octanoyltransferase	0.00039596432397	0.00215124378731	0.00175527946334
+UniRef50_G0DV78	Periplasmic binding protein of proline glycine betaine transport system	0.000444908224649	0.00574970021227	0.00530479198762
+UniRef50_UPI0003602E81	hypothetical protein	4.04173779427e-06	4.86354770637e-06	8.218099121e-07
+UniRef50_A5VKN4	tRNA  ) methyltransferase	7.157573731e-06	0.00251422178024	0.00250706420651
+UniRef50_UPI000382652B	hypothetical protein	0.0002861928382	0.000270558550679	-1.5634287521e-05
+UniRef50_F2A8G4	6 pyruvoyl tetrahydropterin synthase	2.02275703184e-05	8.78434346665e-05	6.76158643481e-05
+UniRef50_UPI0003F15D37	PREDICTED	9.14271541388e-06	1.93575295039e-05	1.021481409e-05
+UniRef50_Q5X9T1	Exodeoxyribonuclease III	0.00607719623749	0.00170721726123	-0.00436997897626
+UniRef50_UPI000376C1CF	hypothetical protein	4.16385585551e-06	1.08756417096e-05	6.71178585409e-06
+UniRef50_UPI000378C003	hypothetical protein	5.66607979588e-06	0.00082466359116	0.000818997511364
+UniRef50_UPI00046E84D4	ketose bisphosphate aldolase	6.19133215792e-06	4.67309895605e-05	4.05396574026e-05
+UniRef50_UPI0002F33BF1	hypothetical protein	7.04903871034e-06	7.42977690177e-06	3.8073819143e-07
+UniRef50_P94377	Catalase X	2.77831196531e-05	0.00197992963749	0.00195214651784
+UniRef50_A6LV05	Exonuclease, RNase T and DNA polymerase III	0.000320312412053	0.00087637398625	0.000556061574197
+UniRef50_O33787		0.00376286315274	0.000397733437288	-0.00336512971545
+UniRef50_M1LPD5	Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.000560550920582	0.000725441959403	0.000164891038821
+UniRef50_Q2FZ91	Cell division protein DivIB	0.00994162116391	0.000840142817013	-0.0091014783469
+UniRef50_P58118	Protein translocase subunit SecY	0.00725951649411	0.00382392025051	-0.0034355962436
+UniRef50_UPI00045E6DF6	hypothetical protein	1.46224963276e-05	2.16522867508e-05	7.0297904232e-06
+UniRef50_Q3IUV4		0.00212848609272	0.000938051819408	-0.00119043427331
+UniRef50_E8SGK9	Lysophospholipase Monoglyceride lipase putative	0.0166632011849	0.00346310829758	-0.0132000928873
+UniRef50_UPI00036F909A	hypothetical protein	6.0034821368e-06	1.13632694683e-05	5.3597873315e-06
+UniRef50_F2AHF5	Malate dehydrogenase	5.01669294399e-05	0.000685469743188	0.000635302813748
+UniRef50_F7MMY8	Cobyric acid synthase	0.00055786106727	0.000825593223702	0.000267732156432
+UniRef50_A6M2F6	Binding protein dependent transport systems inner membrane component	0.000514281316583	0.00134289198762	0.000828610671037
+UniRef50_UPI00016C3B4E	SsrA binding protein	2.76248503853e-05	0.000848037806993	0.000820412956608
+UniRef50_UPI00036A82E7	hypothetical protein, partial	5.15138778558e-06	2.54653713965e-05	2.03139836109e-05
+UniRef50_S5KBE3	Amidohydrolase	0.0331869513768	0.0125968329541	-0.0205901184227
+UniRef50_UPI0003287F61	PREDICTED	0.000352030517433	1.94721610124e-05	-0.000332558356421
+UniRef50_C6L8Z7		9.68423329232e-06	3.34331923063e-05	2.3748959014e-05
+UniRef50_A7MHL5		0.000752340979993	0.000607804745002	-0.000144536234991
+UniRef50_A0A038GLZ5	Peptide ABC transporter substrate binding protein	0.0141163817249	0.00383241149435	-0.0102839702305
+UniRef50_L7WZ77	Sugar isomerase 	0.0210677496253	0.00998763257537	-0.0110801170499
+UniRef50_E2QQY4	Guanine deaminase	0.00489641297609	0.000558048389704	-0.00433836458639
+UniRef50_E6U1U1	Cys Met metabolism pyridoxal phosphate dependent protein	0.000338829335329	0.00183661026808	0.00149778093275
+UniRef50_D3E047	Tetrahydromethanopterin S methyltransferase subunit C	0.00308479186582	0.000973314769449	-0.00211147709637
+UniRef50_F3SP64	Techoic acid ABC transporter, permease family protein	0.107255534459	0.0430502288653	-0.0642053055937
+UniRef50_A0B9A2	Adenylate kinase	2.60415975826e-05	2.85588120524e-05	2.5172144698e-06
+UniRef50_UPI00036A2D06	hypothetical protein	4.70721430657e-06	0.000114662227385	0.000109955013078
+UniRef50_P20083	DNA topoisomerase 4 subunit B	0.00493895283309	0.00863585602378	0.00369690319069
+UniRef50_A6LRZ8		0.000428734051029	0.00130619644257	0.000877462391541
+UniRef50_U3TMR9	Replication protein	0.000789675232922	0.000263283838205	-0.000526391394717
+UniRef50_H1QFU3	Putative oxygen independent coproporphyrinogen III oxidase 	0.000212423155214	5.51040052664e-05	-0.000157319149948
+UniRef50_G7ZPE9	LPXTG surface protein	0.011073152598	0.00177710019379	-0.00929605240421
+UniRef50_Q6GGX9	UPF0403 protein SAR1441	0.052290588439	0.00589323571765	-0.0463973527214
+UniRef50_W0YTR9		0.000211821592591	7.44317151069e-06	-0.00020437842108
+UniRef50_Q8RXU4	Probable low specificity L threonine aldolase 1	5.56418205475e-06	7.86794195919e-06	2.30375990444e-06
+UniRef50_UPI000377D666	hypothetical protein	7.74976302216e-06	1.70586202872e-05	9.30885726504e-06
+UniRef50_UPI0002FDDFF5	hypothetical protein	5.69652769495e-06	1.15319855735e-05	5.83545787855e-06
+UniRef50_Q07RP5	Ribosome binding ATPase YchF	0.00297222024655	0.00285872884884	-0.00011349139771
+UniRef50_Q3K1I5	ATP dependent helicase deoxyribonuclease subunit B	0.00031870148823	0.000241896029146	-7.6805459084e-05
+UniRef50_B9E1R4		8.52112841647e-05	0.00045010088936	0.000364889605195
+UniRef50_B0VKL3	23S rRNA  C(5)) methyltransferase RlmD	8.27215461305e-05	0.00824181972749	0.00815909818136
+UniRef50_S3NQR8	C4 dicarboxylate transport two component sensor histidine kinase	0.000416549139603	0.000101367290119	-0.000315181849484
+UniRef50_B9KEN0	Enolase	3.89757075376e-06	8.88105366609e-05	8.49129659071e-05
+UniRef50_A5UMV8	Sugar transferase, WcaJ	0.00350552210029	0.000662277161534	-0.00284324493876
+UniRef50_D3QC63	Multiple CBS domains containing cytosolic protein	0.0279882033589	0.00612255242314	-0.0218656509358
+UniRef50_UPI00046A5C9E	branched chain amino acid ABC transporter substrate binding protein	1.59101215897e-05	2.01154302193e-05	4.2053086296e-06
+UniRef50_K2EEA8		2.99460993188e-05	3.30145650004e-05	3.0684656816e-06
+UniRef50_U5P8L5		0.00592963560428	0.00346923589493	-0.00246039970935
+UniRef50_S5CQE4	GGDEF domain protein	0.000123361434261	0.00153103634601	0.00140767491175
+UniRef50_C5ZZ07	ABC transporter, periplasmic binding protein	6.35498297692e-05	0.00331125536224	0.00324770553247
+UniRef50_UPI0001D2E14D	trehalose phosphatase	2.46760839906e-05	2.74253567994e-05	2.7492728088e-06
+UniRef50_E1XJQ2		0.00268249291483	0.000515087276506	-0.00216740563832
+UniRef50_K6ZAZ0		0.000947965160733	0.000738788658589	-0.000209176502144
+UniRef50_UPI00046287B9	glucosamine  fructose 6 phosphate aminotransferase	3.2869600633e-06	2.41679989466e-05	2.08810388833e-05
+UniRef50_S4P3V2	UPF0047 protein C4A8.02c 	1.71227161324e-05	9.91757326299e-05	8.20530164975e-05
+UniRef50_UPI00021A5D5B	PREDICTED	1.12082399598e-05	9.238539515e-06	-1.9697004448e-06
+UniRef50_UPI0003B2F6F8	cytidine deaminase	7.15181483118e-06	3.00340415394e-05	2.28822267082e-05
+UniRef50_UPI000361B9B7	hypothetical protein	0.000120433258568	0.00452055014322	0.00440011688465
+UniRef50_Q73UK5		0.000461995861197	3.91122696922e-05	-0.000422883591505
+UniRef50_UPI0002E36D1B	ketosteroid isomerase	5.11572370585e-06	3.78914167362e-05	3.27756930303e-05
+UniRef50_X6L0W1		2.44797013856e-05	3.56484707025e-05	1.11687693169e-05
+UniRef50_Q04BY7	Energy coupling factor transporter ATP binding protein EcfA1	3.74166416929e-05	9.45249453653e-06	-2.79641471564e-05
+UniRef50_Q03MR7	Protein GrpE	0.000198676836237	0.00531400603965	0.00511532920341
+UniRef50_Q1IW96	Probable transcriptional regulatory protein Dgeo_2194	0.000438013253516	0.0655899800272	0.0651519667737
+UniRef50_A6LXG6	PTS system mannose fructose sorbose family IID component	9.46080172615e-05	0.00242080432721	0.00232619630995
+UniRef50_B9KWM5	Short chain alcohol dehydrogenase	0.00492304580028	0.000901463409552	-0.00402158239073
+UniRef50_A6LWF9	NLP P60 protein	0.000173158710486	0.000562653850715	0.000389495140229
+UniRef50_N0A5S9	GtrOC2	0.000110591598297	0.00419839599358	0.00408780439528
+UniRef50_N7PIW9		0.00025028915385	2.90924397763e-05	-0.000221196714074
+UniRef50_C1I079	Predicted protein	4.79884625283e-05	0.000386595817526	0.000338607354998
+UniRef50_D8JMR4	HTH type transcriptional activator aaeR	0.000143530794236	0.00640273614812	0.00625920535388
+UniRef50_UPI00035DBD0C	hypothetical protein	1.54058487816e-05	3.97987131975e-05	2.43928644159e-05
+UniRef50_Z5XJ24	50S ribosomal protein L23	8.08416388515e-06	0.000694093959702	0.000686009795817
+UniRef50_UPI00037F9208	hypothetical protein	6.57516210684e-05	3.77326494255e-05	-2.80189716429e-05
+UniRef50_C7RSG7	Large exoprotein involved in heme utilization or adhesion	4.80914022326e-06	3.24708848612e-06	-1.56205173714e-06
+UniRef50_UPI0003B5E1C5	GntR family transcriptional regulator	8.14473881831e-05	2.2346062574e-05	-5.91013256091e-05
+UniRef50_A5UNJ4	Adhesin like protein	1.51399633016e-05	5.44170055438e-06	-9.69826274722e-06
+UniRef50_F0KJQ4		0.000158309167649	0.00636985844556	0.00621154927791
+UniRef50_E1KWK7	Metallo beta lactamase domain protein	6.7181393972e-05	2.72263718188e-05	-3.99550221532e-05
+UniRef50_UPI00047A5202	hypothetical protein	2.72569473049e-05	0.000273785446501	0.000246528499196
+UniRef50_Q02419	Protein PhnA	0.00546521060756	0.00206096603461	-0.00340424457295
+UniRef50_U6A9U4	tRNA specific adenosine deaminase	0.00104857219126	0.00046506567747	-0.00058350651379
+UniRef50_B2N6M8	Molybdate metabolism regulator	0.00202426857316	0.000831595356419	-0.00119267321674
+UniRef50_UPI0004639C57	di  tricarboxylate transporter	2.6631961612e-05	2.55505381709e-05	-1.0814234411e-06
+UniRef50_UPI0003C16451	PREDICTED	4.5512269869e-06	7.86534669237e-06	3.31411970547e-06
+UniRef50_Q8XL57	ATP dependent 6 phosphofructokinase 2	0.000777751594215	0.00149601963207	0.000718268037855
+UniRef50_M4WU84		2.26287417368e-05	1.77661061354e-05	-4.8626356014e-06
+UniRef50_B8D9X0	Putative Holliday junction resolvase	2.57146202194e-05	1.73499896653e-05	-8.3646305541e-06
+UniRef50_A0A011Q708	Acetyl coenzyme A synthetase	9.82448756598e-06	5.7449327868e-06	-4.07955477918e-06
+UniRef50_Q8P2Z1		0.000709877126964	0.000107449954763	-0.000602427172201
+UniRef50_Q817Z6	Transcription elongation factor GreA	0.026859291999	0.00113288515053	-0.0257264068485
+UniRef50_P50736		0.0146656015655	0.00426933410543	-0.0103962674601
+UniRef50_F2JYX7	Peptidase M75, Imelysin	0.00473705558211	0.000610485194111	-0.004126570388
+UniRef50_Q1CBF6	Sec independent protein translocase protein TatB	0.00616301302537	0.00188072544648	-0.00428228757889
+UniRef50_O07046	FKBP type peptidyl prolyl cis trans isomerase SlyD	5.10262093503e-05	1.46797585378e-05	-3.63464508125e-05
+UniRef50_A6UZF9	Oxidoreductase, short chain dehydrogenase reductase family	0.000149994432661	0.00130469223246	0.0011546977998
+UniRef50_Q57935		0.00444175919899	0.0012952044531	-0.00314655474589
+UniRef50_Q57936		0.0010248106264	0.00039551344445	-0.00062929718195
+UniRef50_B8CVY1	1,4 alpha glucan branching enzyme GlgB	2.76815835171e-06	7.52455827263e-06	4.75639992092e-06
+UniRef50_UPI0003C1A6D9	PREDICTED	1.30690836564e-05	0.000124271209736	0.00011120212608
+UniRef50_W6LVB0		0.000153902013573	0.000518363230274	0.000364461216701
+UniRef50_B2AP02	Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3	1.3883046789e-05	1.01700192803e-05	-3.7130275087e-06
+UniRef50_UPI0002E1B7CA	hypothetical protein	2.53920393298e-05	8.07058248876e-05	5.53137855578e-05
+UniRef50_UPI0002FA5E7B	peptide ABC transporter permease	8.99051379927e-06	4.06698190416e-05	3.16793052423e-05
+UniRef50_P0C0F3	DNA polymerase III subunit alpha	0.00403955672508	0.00543157348254	0.00139201675746
+UniRef50_R1DWQ7		0.000152212092278	0.000227166696312	7.4954604034e-05
+UniRef50_B0S155	Phosphopantetheine adenylyltransferase	1.59580192052e-05	1.56736017847e-05	-2.844174205e-07
+UniRef50_P96719		2.6890512592e-06	1.05979177706e-05	7.9088665114e-06
+UniRef50_UPI0004673C65	thioredoxin	0.000511667610096	0.000513386765923	1.719155827e-06
+UniRef50_UPI00036804AF	30S ribosomal protein S17	4.5536945392e-05	0.000256717381648	0.000211180436256
+UniRef50_UPI0004656BE4	DNA mismatch repair protein MutS	1.9360784624e-06	7.13687344081e-05	6.94326559457e-05
+UniRef50_Q1LNF6	Uridylate kinase	1.95301116416e-05	0.00274782399356	0.00272829388192
+UniRef50_UPI00037C0023	hypothetical protein	8.46465175809e-05	2.99487191037e-05	-5.46977984772e-05
+UniRef50_G0LV60	Integrase	0.00709967810563	0.00156983278354	-0.00552984532209
+UniRef50_UPI00035F36BD	hypothetical protein	0.000197312630293	0.000164603691984	-3.2708938309e-05
+UniRef50_M0P4U3	AzlC family protein	1.36802251639e-05	1.02476841127e-05	-3.4325410512e-06
+UniRef50_A0A023LDQ6		0.000622399962998	0.000437506229925	-0.000184893733073
+UniRef50_E2BB01		4.64763531924e-06	0.000149384472733	0.000144736837414
+UniRef50_P00362	Glyceraldehyde 3 phosphate dehydrogenase	0.000103248004053	6.02489228975e-05	-4.29990811555e-05
+UniRef50_F9YYR4		0.000422918965471	0.00570734467149	0.00528442570602
+UniRef50_UPI0003607034	hypothetical protein	8.91577732635e-06	1.32181840581e-05	4.30240673175e-06
+UniRef50_A5IT33	Glucose 6 phosphate 1 dehydrogenase	0.00991318648846	0.00197115582353	-0.00794203066493
+UniRef50_E3GES0		0.000498601239345	0.00199817465828	0.00149957341894
+UniRef50_L2V487		4.80002939282e-05	7.88401678338e-05	3.08398739056e-05
+UniRef50_F5M5L4	LysR family transcriptional regulator	0.00321436045767	0.00099421530855	-0.00222014514912
+UniRef50_A5IJ44	Phosphopantetheine adenylyltransferase	4.41194375632e-05	1.71286059875e-05	-2.69908315757e-05
+UniRef50_G8NQU3		6.09429167621e-06	7.75085909763e-06	1.65656742142e-06
+UniRef50_A6M0K2	Glycoside hydrolase, family 3 domain protein	0.000343894292271	0.00121728994799	0.000873395655719
+UniRef50_Q8DUS0		0.00551687426025	0.000964545626275	-0.00455232863398
+UniRef50_UPI000381094E	hypothetical protein	0.000100373507366	7.80193778431e-05	-2.23541295229e-05
+UniRef50_S5YT45	Uracil xanthine permease	0.000663021385688	0.000383698085163	-0.000279323300525
+UniRef50_G7PJ01		6.8374547133e-05	2.3843835239e-05	-4.4530711894e-05
+UniRef50_K0K3W4		6.08789120499e-07	2.18818150567e-06	1.57939238517e-06
+UniRef50_C5B8V8	UDP 2,3 diacylglucosamine hydrolase	0.000327323213955	0.00346603014458	0.00313870693063
+UniRef50_D6Y589	Periplasmic binding protein LacI transcriptional regulator	0.000124206954434	1.79884537446e-05	-0.000106218500689
+UniRef50_Z2DT28		1.28477477479e-05	0.000281254004947	0.000268406257199
+UniRef50_B2U084	Protein CsiD	0.00378232897311	0.000380644957133	-0.00340168401598
+UniRef50_UPI0004791B4F	autoinducer 2 import system permease LsrD	1.40550313005e-05	2.8338767364e-05	1.42837360635e-05
+UniRef50_F2MNJ9	PTS family mannose fructose sorbose porter component IID	0.00671886744182	0.000212458061294	-0.00650640938053
+UniRef50_S9QQP6	Glycine oxidase ThiO	5.5269610718e-06	1.23879322796e-05	6.8609712078e-06
+UniRef50_Q47216	E. coli fhuB gene involved in transport of ferrichrome	0.000158476947481	8.33839720682e-05	-7.50929754128e-05
+UniRef50_G8LJW2		0.000101502798572	9.4182195523e-05	-7.320603049e-06
+UniRef50_A0A023KKD3		0.00279908675214	0.00192583539548	-0.00087325135666
+UniRef50_Q2KXF0	N carbamoyl D amino acid hydrolase	0.0135926663573	0.00175350891091	-0.0118391574464
+UniRef50_Q3J1R1	TRAP T family sorbitol mannitol transporter, DctM  subunit	0.00460836859799	0.00159615529929	-0.0030122132987
+UniRef50_Q892B0	Hydroxyacylglutathione hydrolase	0.000189691451679	0.00157327773814	0.00138358628646
+UniRef50_U1LA38		3.34243355643e-05	3.3969477544e-05	5.451419797e-07
+UniRef50_UPI00046894CE	hypothetical protein	4.99000735682e-05	1.51613890166e-05	-3.47386845516e-05
+UniRef50_UPI00037DFDE1	hypothetical protein	3.40576462048e-06	8.71654064824e-06	5.31077602776e-06
+UniRef50_B7ITF9	NADPH dehydrogenase	0.0002539700886	0.0014440581311	0.0011900880425
+UniRef50_I0E927		0.000214543665657	0.00306015871257	0.00284561504691
+UniRef50_U9RLL1	Maltose mannitol ABC transporter substrate binding protein	0.00063274990576	0.000476620107794	-0.000156129797966
+UniRef50_UPI0003728BB6	hypothetical protein	1.05923838599e-05	5.77718092803e-06	-4.81520293187e-06
+UniRef50_P77256		0.00532841290473	0.00123418609915	-0.00409422680558
+UniRef50_A0A024KCD9		0.000194524647099	7.18116698463e-05	-0.000122712977253
+UniRef50_W5XBZ3	Chromate transporter, chromate ion transporter  family	2.7294379831e-06	2.40491621873e-05	2.13197242042e-05
+UniRef50_UPI00047AFC40	hypothetical protein	2.05073103231e-05	6.03428216318e-06	-1.44730281599e-05
+UniRef50_B3EDX3	Imidazoleglycerol phosphate dehydratase	9.25601848686e-05	2.91117623306e-05	-6.3448422538e-05
+UniRef50_N5CGV2	Transcriptional regulator	0.0115770194233	0.00291668482813	-0.00866033459517
+UniRef50_W7X8F4		0.000350455617991	3.69670006157e-05	-0.000313488617375
+UniRef50_C0D0V3		1.24295220517e-05	5.10608533914e-06	-7.32343671256e-06
+UniRef50_UPI000347DE1F	hypothetical protein	3.81726620699e-05	6.90409511558e-05	3.08682890859e-05
+UniRef50_G7M5H1		0.000754949114049	0.000871098999181	0.000116149885132
+UniRef50_W5XD42	Dihydroorotase	4.40008531897e-06	9.10497032667e-06	4.7048850077e-06
+UniRef50_Q3IV21	N6 adenine specific DNA methyltransferase, N12 class	0.0165812545704	0.00507050053199	-0.0115107540384
+UniRef50_Q39ZC5	NADH quinone oxidoreductase subunit A 1	4.62522914802e-05	4.44215931042e-05	-1.830698376e-06
+UniRef50_G8UZP9		0.0134306090933	0.00403468268305	-0.00939592641025
+UniRef50_A0RBY2		0.0159004223149	0.0046612526039	-0.011239169711
+UniRef50_UPI00036FBBFE	hypothetical protein	0.00027447599129	4.30121294129e-05	-0.000231463861877
+UniRef50_S6APH0	Peptidase M48 family protein	0.000425353168933	0.000416497333721	-8.855835212e-06
+UniRef50_Q87VB5	Potassium efflux system protein KefA, putative	0.000610803913599	0.000175165874053	-0.000435638039546
+UniRef50_Q2J3C8	OmpA MotB	8.11821913621e-05	4.95173330266e-05	-3.16648583355e-05
+UniRef50_Q9HK17	Carbamoyl phosphate synthase large chain	9.10722347907e-06	9.83605864781e-06	7.2883516874e-07
+UniRef50_P0AB87	L fuculose phosphate aldolase	0.00427417352777	0.000615139433657	-0.00365903409411
+UniRef50_T1W827		0.000152233338572	3.70960768497e-05	-0.000115137261722
+UniRef50_H6LQV6		0.0112425565678	0.00204461248786	-0.00919794407994
+UniRef50_Q9HZP7	Electron transfer flavoprotein subunit alpha	0.000496095647861	0.0023740628518	0.00187796720394
+UniRef50_UPI0004775C52	hypothetical protein	0.000751770529546	0.000218287655351	-0.000533482874195
+UniRef50_A6W0A1	Inorganic pyrophosphatase	0.000215706279348	0.00529664710818	0.00508094082883
+UniRef50_F0A853	PilS cassette	0.000106840008192	0.000232761615507	0.000125921607315
+UniRef50_F0RP81	Cation diffusion facilitator family transporter	0.00488194346733	0.00113878465233	-0.003743158815
+UniRef50_Q9JZN9	Probable TonB dependent receptor NMB0964	5.90129216602e-05	0.00262291942531	0.00256390650365
+UniRef50_A9KTR8	Tryptophan synthase alpha chain	0.00199487122625	0.000528283829082	-0.00146658739717
+UniRef50_D3E165		0.00235713963251	0.000800604432177	-0.00155653520033
+UniRef50_W5XBF7	Peptidase like protein	3.13669057599e-05	1.6651319765e-05	-1.47155859949e-05
+UniRef50_UPI0003B77CF1	hypothetical protein, partial	5.03544542531e-05	0.000227047124605	0.000176692670352
+UniRef50_UPI0002E07778	hypothetical protein	0.000554597022607	3.99912489397e-05	-0.000514605773667
+UniRef50_UPI0002BA99C0	hypothetical protein, partial	7.68482350088e-05	0.000258658809639	0.00018181057463
+UniRef50_G7M4N9	Transcriptional antiterminator, BglG	0.000175032143208	0.000811958139445	0.000636925996237
+UniRef50_H2CA16	CRISPR associated helicase, Cas3 family	1.44040577788e-05	1.08220438007e-05	-3.5820139781e-06
+UniRef50_F2IZL0		9.76622834857e-05	0.000108488287448	1.08260039623e-05
+UniRef50_Q9RZ59		7.00520362817e-05	0.0304117243333	0.030341672297
+UniRef50_Q9RZ58		3.42528244293e-05	0.0533424050132	0.0533081521888
+UniRef50_A6LPF3	Integral membrane sensor signal transduction histidine kinase	0.000112124551144	0.00124417146252	0.00113204691138
+UniRef50_S6A3I5	Hemolysin	0.000615537272691	0.00370509438458	0.00308955711189
+UniRef50_D0CXH4	Amino acid regulated cytosolic protein	2.25801457911e-05	3.56440718362e-05	1.30639260451e-05
+UniRef50_S3YVB6	Electron transfer flavoprotein ubiquinone oxidoreductase	3.77152019826e-05	7.84494188088e-05	4.07342168262e-05
+UniRef50_E8SIG3	O methyltransferase family protein	0.02264696582	0.0047149315001	-0.0179320343199
+UniRef50_E8YMA7	Xanthine dehydrogenase, small subunit	0.000186409148895	0.00012399581744	-6.2413331455e-05
+UniRef50_UPI0003647621	hypothetical protein	2.50779277876e-05	7.89949248558e-06	-1.7178435302e-05
+UniRef50_A0A023RWB5	Metal binding protein	0.000156416846208	0.00637636778578	0.00621995093957
+UniRef50_UPI000319D40D	hypothetical protein	9.53850439977e-06	1.27663457427e-05	3.22784134293e-06
+UniRef50_P42911	N acetylgalactosamine permease IID component	0.00306029094691	0.00210672751595	-0.00095356343096
+UniRef50_G8LUB7		8.26008728365e-05	0.00139002476547	0.00130742389263
+UniRef50_UPI00037F105A	hypothetical protein	5.2687232277e-06	1.00903505351e-05	4.8216273074e-06
+UniRef50_F7ZMZ2	LacI family transcription regulator	0.000640731819857	0.000688177974312	4.7446154455e-05
+UniRef50_P25269	Tryptophan synthase beta chain 2, chloroplastic	4.58346393174e-06	8.19696540435e-06	3.61350147261e-06
+UniRef50_S9V0M4		6.06192166757e-06	3.36491821603e-05	2.75872604927e-05
+UniRef50_K7EAU2		0.000437159826715	0.000900507522357	0.000463347695642
+UniRef50_UPI0003B55347	prolipoprotein diacylglyceryl transferase	1.40764828288e-05	6.90296424277e-06	-7.17351858603e-06
+UniRef50_B0K282	tRNA dihydrouridine synthase	0.000595677865387	0.00160390404092	0.00100822617553
+UniRef50_Q1IZ39	Maltodextrin phosphorylase	4.98221718638e-05	0.0222759272569	0.022226105085
+UniRef50_A0A023S035	Tail fiber protein	0.000315533843529	0.00812357297385	0.00780803913032
+UniRef50_A7MJM9	DNA gyrase inhibitor	0.00121071966282	0.00327638827753	0.00206566861471
+UniRef50_UPI00036379E0	hypothetical protein	1.80794992353e-05	2.38863713166e-05	5.8068720813e-06
+UniRef50_V5T0I0		0.000716665155766	0.000576956873815	-0.000139708281951
+UniRef50_P44842	IMPACT family member HI_0722	0.00125048069074	0.00103896068992	-0.00021152000082
+UniRef50_G8B031		0.000522539218953	3.54234975447e-06	-0.000518996869199
+UniRef50_A6QGY4	Extracellular matrix binding protein EbhA	0.0020773190929	0.000512423531082	-0.00156489556182
+UniRef50_A9H0U5	Enoyl [acyl carrier protein] reductase [NADH]	5.54047457835e-05	6.38142512567e-05	8.4095054732e-06
+UniRef50_UPI0004764CEE	transcription termination factor Rho, partial	4.69282743033e-05	2.34045515101e-05	-2.35237227932e-05
+UniRef50_UPI00047511DF	peptide ABC transporter permease	2.85927890939e-05	8.34779079235e-06	-2.02449983015e-05
+UniRef50_Q7UI51	2 isopropylmalate synthase	6.47594652218e-06	0.0343864822305	0.034380006284
+UniRef50_UPI0003B5C125	acetyltransferase	0.000160716782674	0.000404988543012	0.000244271760338
+UniRef50_F5ZCF3		7.63395797809e-05	3.31823633499e-05	-4.3157216431e-05
+UniRef50_UPI0003645D29	hypothetical protein	4.54228990041e-06	3.98385066922e-05	3.52962167918e-05
+UniRef50_O28912	Phosphate import ATP binding protein PstB	1.50604124894e-05	0.00379722369929	0.0037821632868
+UniRef50_P29363	Threonine synthase	0.00933688136905	0.00299646473025	-0.0063404166388
+UniRef50_C6ST49		0.00360502231645	0.000533704888912	-0.00307131742754
+UniRef50_UPI00037764D1	hypothetical protein	1.66606024128e-05	0.000409516667683	0.00039285606527
+UniRef50_A0PY95	Alanine racemase	0.000267165698207	0.000389286479141	0.000122120780934
+UniRef50_L0DZY5	Sulfur acceptor protein SufE for iron sulfur cluster assembly	6.77801292892e-05	1.8667942506e-05	-4.91121867832e-05
+UniRef50_B9DJF9	Phage integrase	0.0107219308589	0.00326305564071	-0.00745887521819
+UniRef50_B2ICL0	Imidazole glycerol phosphate synthase subunit HisF	0.000204211896297	0.0201143693452	0.0199101574489
+UniRef50_A4X095	Superfamily II helicase and inactivated derivatives like protein	0.0134706402096	0.00331794353231	-0.0101526966773
+UniRef50_B2TJ36	Mg chelatase family protein	0.000518618002432	0.00127770544968	0.000759087447248
+UniRef50_D5UED6		7.27136282436e-06	2.42194271992e-05	1.69480643748e-05
+UniRef50_G4LNF0	Aldehyde dehydrogenase	0.000426104795691	0.000167634837394	-0.000258469958297
+UniRef50_D5ARZ1	Electron transport complex subunit RnfC	0.00164965107969	0.00055525880437	-0.00109439227532
+UniRef50_UPI0004720CF2	peptide ABC transporter substrate binding protein	2.60716251133e-05	7.96361611971e-06	-1.81080089936e-05
+UniRef50_A6M1H1		0.000193914035367	0.000853333778341	0.000659419742974
+UniRef50_A6M1H0		0.000827594611256	0.00340907198311	0.00258147737185
+UniRef50_UPI000383B0B4	PREDICTED	1.70642706901e-05	0.00025870213811	0.00024163786742
+UniRef50_Q54VM1		4.98855334194e-06	1.35179973381e-05	8.52944399616e-06
+UniRef50_UPI0003901246	hypothetical protein	2.89759281393e-05	4.02380714703e-05	1.1262143331e-05
+UniRef50_E6NBZ7	Proline permease	9.62156301183e-05	0.00518199229748	0.00508577666736
+UniRef50_UPI000456035A	hypothetical protein PFL1_03912	3.52471675958e-06	4.75871392024e-05	4.40624224428e-05
+UniRef50_Q2YXC0	FPRL1 inhibitory protein	0.00550214554178	0.000490831088969	-0.00501131445281
+UniRef50_UPI0001D2F4B5	histidine kinase	3.5476217876e-05	2.70764983841e-05	-8.3997194919e-06
+UniRef50_Q03UC7	50S ribosomal protein L9	0.0118871414312	0.00209340196429	-0.00979373946691
+UniRef50_K7RW71	TadB domain containing protein	0.000170294431062	0.00909554062244	0.00892524619138
+UniRef50_UPI0004002975	hypothetical protein	5.98979435064e-05	1.45077112247e-05	-4.53902322817e-05
+UniRef50_B3QQR6	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000108363496658	1.03656893724e-05	-9.79978072856e-05
+UniRef50_I0ESN2	Outer membrane protein 33	0.000347603199025	0.00225848650557	0.00191088330655
+UniRef50_Q3J228	Putative endonuclease	0.0105861549508	0.00216151707463	-0.00842463787617
+UniRef50_G8PN37	sn glycerol 3 phosphate binding periplasmic protein UgpB	2.05842115461e-05	8.06909218425e-06	-1.25151193618e-05
+UniRef50_UPI00037ED898	hypothetical protein	3.59788027216e-05	5.24796957861e-05	1.65008930645e-05
+UniRef50_UPI0003B58F6D	biotin synthase	4.30209052628e-06	6.0004686367e-06	1.69837811042e-06
+UniRef50_O27651	Conserved protein	0.00681850901043	0.000606816926888	-0.00621169208354
+UniRef50_U3SS39		0.00336155849069	0.00257997276607	-0.00078158572462
+UniRef50_Q60182	Glutamine synthetase	0.00299720748729	0.000586499750377	-0.00241070773691
+UniRef50_A3PHJ7	Transcriptional regulator, AsnC family	0.00884853255404	0.00317550171157	-0.00567303084247
+UniRef50_UPI000475DE05	hypothetical protein	1.13965823962e-05	2.52237527598e-05	1.38271703636e-05
+UniRef50_P76419		0.00496310939566	0.00104886350313	-0.00391424589253
+UniRef50_K2JKB1		0.000555686780374	6.52839893415e-05	-0.000490402791033
+UniRef50_Q2CHF8	Probable replication protein C	0.000153091088781	4.55496562521e-05	-0.000107541432529
+UniRef50_O28664	Proline  tRNA ligase	0.00315064372401	0.000625242653487	-0.00252540107052
+UniRef50_UPI00035071FD	PREDICTED	5.65946010231e-05	2.84868833395e-05	-2.81077176836e-05
+UniRef50_UPI0004754290	UDP glucose 6 dehydrogenase	5.64026840622e-06	1.19316178785e-05	6.29134947228e-06
+UniRef50_UPI0003B57BB8	membrane protein	6.88774752379e-06	9.29449942003e-06	2.40675189624e-06
+UniRef50_UPI00047CCE00	hypothetical protein	0.000436512327463	7.8337441607e-05	-0.000358174885856
+UniRef50_Q8FBC3	Glycerol kinase	0.00237929505766	0.0052991980645	0.00291990300684
+UniRef50_UPI000381A4A2	hypothetical protein	5.15866412245e-06	3.68912904372e-06	-1.46953507873e-06
+UniRef50_UPI0003606567	hypothetical protein, partial	1.21970337878e-05	2.59095258664e-05	1.37124920786e-05
+UniRef50_P50601	Protein TolB	0.00149700819261	0.00186146020581	0.0003644520132
+UniRef50_V9VVJ4		0.000371788446086	8.18552895249e-05	-0.000289933156561
+UniRef50_Q7VJY3	Chaperone protein ClpB	4.60723338757e-05	0.00327916035117	0.00323308801729
+UniRef50_O04904	Dihydroorotase, mitochondrial	0.00517236012849	0.0036977933925	-0.00147456673599
+UniRef50_C9XK28	L lactate dehydrogenase	0.00012796135215	0.000270932757067	0.000142971404917
+UniRef50_Q88V07	DNA polymerase IV	0.00569787752989	0.0034659574793	-0.00223192005059
+UniRef50_UPI000371CF62	hypothetical protein, partial	0.00192038535618	9.75412828813e-05	-0.0018228440733
+UniRef50_UPI0003610B2B	hypothetical protein	2.59687111723e-06	3.18766683733e-06	5.907957201e-07
+UniRef50_I6Q203	Transposase	0.00496437948703	0.00329532643394	-0.00166905305309
+UniRef50_UPI0003D737B1	PREDICTED	8.38030809842e-06	3.44352202793e-05	2.60549121809e-05
+UniRef50_K0RGV2		4.25968946429e-05	0.00112381707865	0.00108122018401
+UniRef50_O32254		0.0025676045596	0.000936837083141	-0.00163076747646
+UniRef50_C6S5N2	Putrescine transport system permease protein	0.000159276788545	0.00297556511136	0.00281628832282
+UniRef50_A0A020D651		0.0213032093534	0.00561240815551	-0.0156908011979
+UniRef50_A5D5I2	DNA directed RNA polymerase subunit beta	1.04033581322e-05	3.26996720875e-06	-7.13339092345e-06
+UniRef50_B4F1A3	Agmatinase	0.00544420955793	0.000449584654698	-0.00499462490323
+UniRef50_UPI0003B405D9	thioredoxin	7.78079844495e-05	6.83596029092e-05	-9.4483815403e-06
+UniRef50_A6LX09	Transcriptional antiterminator, BglG	0.00022816252255	0.000433267641104	0.000205105118554
+UniRef50_A3LGV5		0.000260092704284	0.000377183128249	0.000117090423965
+UniRef50_UPI0003733DDF	hypothetical protein	7.3568494784e-05	1.63391069575e-05	-5.72293878265e-05
+UniRef50_Q9FCA2	Peptide deformylase 2	1.38463124345e-05	2.49879297961e-05	1.11416173616e-05
+UniRef50_Q2YZB2	ATP phosphoribosyltransferase regulatory subunit	0.0140074319147	0.000307629553598	-0.0136998023611
+UniRef50_B8DEF0		0.000209075886147	0.00188500024592	0.00167592435977
+UniRef50_S5CRU7	SAM dependent methyltransferase	0.000468836268581	0.00367357662885	0.00320474036027
+UniRef50_P22805	Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.00138475483567	0.00107706619502	-0.00030768864065
+UniRef50_UPI00047CAE83	hypothetical protein	5.19572729738e-06	1.5994005963e-05	1.07982786656e-05
+UniRef50_UPI000350E4F1		2.39444829859e-06	3.38247087766e-06	9.8802257907e-07
+UniRef50_I0C1B5	Choloylglycine hydrolase	0.0186428479189	0.00136303506354	-0.0172798128554
+UniRef50_Q167Y1	Type II IV secretion system protein, TadC subfamily, putative	0.0123155190766	0.00248805686397	-0.00982746221263
+UniRef50_A3CPS1	Two component response transcriptional regulator , putative	0.00615559436315	0.000300322073074	-0.00585527229008
+UniRef50_UPI0003D2A318	homoserine dehydrogenase	2.94256321806e-05	1.80752638502e-05	-1.13503683304e-05
+UniRef50_V5NWP2		0.000810564671074	0.00108717819923	0.000276613528156
+UniRef50_UPI0002886C73	serine hydroxymethyltransferase	0.000237607770406	0.000176778506093	-6.0829264313e-05
+UniRef50_J4KJN9		8.21507253925e-05	0.00667490968747	0.00659275896208
+UniRef50_W8KL45		3.10969681189e-05	4.47817586173e-05	1.36847904984e-05
+UniRef50_D9QPC0	Alpha beta hydrolase fold protein	0.00307593293264	0.00123409477568	-0.00184183815696
+UniRef50_A8LNH2	UPF0246 protein Dshi_3333	0.0012659159289	0.000252407440337	-0.00101350848856
+UniRef50_A3PP80	Diguanylate cyclase	0.0050811662508	0.00100252219781	-0.00407864405299
+UniRef50_W4KSI3	PcsB protein	0.000331825966611	0.000194714311118	-0.000137111655493
+UniRef50_UPI00016A907F	benzoate transport protein	3.00503137859e-05	4.02652328935e-05	1.02149191076e-05
+UniRef50_G2KZ81		0.00127771316163	0.000345399655201	-0.000932313506429
+UniRef50_W7Y3S8		0.000166386071404	7.31920402115e-05	-9.31940311925e-05
+UniRef50_UPI000300A99C	hypothetical protein	1.80561189384e-05	4.08884415141e-05	2.28323225757e-05
+UniRef50_UPI000379A26D	hypothetical protein	8.80181069756e-06	1.59747719328e-05	7.17296123524e-06
+UniRef50_G0AE82	Aldo keto reductase	0.00112078862208	0.0463085556365	0.0451877670144
+UniRef50_UPI00037FCE78	hypothetical protein	0.000911927885878	0.000360406895028	-0.00055152099085
+UniRef50_A6LRX7	Baseplate J family protein	0.000462978571857	0.000977872926926	0.000514894355069
+UniRef50_P15031	Fe dicitrate transport ATP binding protein FecE	0.00195630393934	0.00204161228397	8.530834463e-05
+UniRef50_E1HL74	Transcriptional regulatory protein, C terminal domain protein	0.00163338450892	0.000412069821193	-0.00122131468773
+UniRef50_D4GIS9	RbsA	0.00402054897309	0.000470764545228	-0.00354978442786
+UniRef50_UPI0003B790C8	FAD dependent oxidoreductase	2.48950564028e-05	1.41882864998e-05	-1.0706769903e-05
+UniRef50_U5PBB0	Glycine betaine ABC transporter ATP binding protein	0.00305662688827	0.000246097254331	-0.00281052963394
+UniRef50_U5MMF7	Penicillin amidase	0.000739171852123	0.0021283687312	0.00138919687908
+UniRef50_W0I1A1	Aspartate ammonia lyase	0.000552364180171	0.00528418870072	0.00473182452055
+UniRef50_UPI000469D137	hypothetical protein	0.000875748391323	8.4851249639e-05	-0.000790897141684
+UniRef50_UPI0002D7F2D9	hypothetical protein	1.34945408328e-05	6.42443200236e-06	-7.07010883044e-06
+UniRef50_A6LPZ8		0.000659765809036	0.00223297072634	0.0015732049173
+UniRef50_P0AEW5	3,5 cyclic adenosine monophosphate phosphodiesterase CpdA	0.00409990380215	0.00112958503343	-0.00297031876872
+UniRef50_A1B9K8	Zinc import ATP binding protein ZnuC	2.19900774693e-05	9.56369444126e-06	-1.2426383028e-05
+UniRef50_A6LYB4		0.000330712852793	0.00256431475951	0.00223360190672
+UniRef50_S4YWC9	Iron ABC transporter permease	0.000135138182163	0.00283508849182	0.00269995030966
+UniRef50_Q4L6B1	TelA like protein SH1505	0.0187432331894	0.00455140681341	-0.014191826376
+UniRef50_UPI0003783264	hypothetical protein, partial	4.22093496452e-06	6.50113556112e-06	2.2802005966e-06
+UniRef50_M3GAZ5	HlyD family secretion protein	0.00186485961184	0.000199313861778	-0.00166554575006
+UniRef50_W4HIJ8		1.18330014599e-05	1.37715502368e-05	1.9385487769e-06
+UniRef50_D2ARI1	tRNA rRNA methyltransferase 	0.000611314455616	0.00706777702778	0.00645646257216
+UniRef50_UPI0003B31E13	hydroxyethylthiazole kinase, partial	1.0763358989e-05	1.79152951735e-05	7.1519361845e-06
+UniRef50_Q609Q1	Sulfate thiosulfate import ATP binding protein CysA	0.00032857737624	0.000125864433691	-0.000202712942549
+UniRef50_R4QLQ3		0.000221708073658	0.00956079298081	0.00933908490715
+UniRef50_Q51548	L ornithine 5 monooxygenase	0.000235703912728	0.000196223724387	-3.9480188341e-05
+UniRef50_Q12UL5	2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00457709714287	0.00119144818953	-0.00338564895334
+UniRef50_P0AER4	Glutamate aspartate transport system permease protein GltJ	0.000875827504994	0.000501841048263	-0.000373986456731
+UniRef50_P39630	dTDP glucose 4,6 dehydratase	5.26965582947e-06	6.62787774188e-06	1.35822191241e-06
+UniRef50_Q9HZR2		0.00220681518524	0.00155472883806	-0.00065208634718
+UniRef50_T1AU58	Acyl CoA dehydrogenase domain protein 	0.000142649012091	0.000407490987201	0.00026484197511
+UniRef50_J8RY92		0.00042896135097	0.000422463899101	-6.497451869e-06
+UniRef50_UPI0003AD3D4A	hypothetical protein	8.11489912278e-07	2.90834720298e-05	2.82719821175e-05
+UniRef50_I4Y2X2	TonB dependent outermembrane receptor	4.44624250735e-05	0.00030757372313	0.000263111298057
+UniRef50_UPI0003B34776	LysR family transcriptional regulator	5.27717123956e-06	8.21500999334e-06	2.93783875378e-06
+UniRef50_Q9RRV3		0.00127130206267	0.0566096031802	0.0553383011175
+UniRef50_W5XB81	DNA directed RNA polymerase subunit beta	4.40177373453e-06	1.57075868843e-06	-2.8310150461e-06
+UniRef50_G5PWF6	L xylulose 5 phosphate 3 epimerase	0.000104342533273	3.65714196011e-05	-6.77711136719e-05
+UniRef50_A8F740	Periplasmic binding protein LacI transcriptional regulator	7.40956127913e-06	3.31153674299e-05	2.57058061508e-05
+UniRef50_UPI00046961AC	transcriptional regulator	1.71761455105e-05	6.90778528386e-05	5.19017073281e-05
+UniRef50_UPI0003A13922	ABC transporter	3.76200876646e-05	6.34489099345e-06	-3.12751966712e-05
+UniRef50_UPI00042B18AB	Proline iminopeptidase isoform 3	7.56568137949e-06	1.00441475278e-05	2.47846614831e-06
+UniRef50_UPI00046F35A8	hypothetical protein, partial	3.45872847578e-05	4.09013656304e-05	6.3140808726e-06
+UniRef50_X1RXQ4	Marine sediment metagenome DNA, contig	0.000422697437022	7.63722139661e-05	-0.000346325223056
+UniRef50_A8LHX0		0.00476693106279	0.00285613655247	-0.00191079451032
+UniRef50_C1N038	Predicted protein	5.37254368201e-05	1.65793304886e-05	-3.71461063315e-05
+UniRef50_Q5HLE0	Polyphosphate kinase	0.0111692876278	0.00347613759979	-0.00769315002801
+UniRef50_UPI0003B428E6	branched chain amino acid ABC transporter permease	7.97417099361e-05	0.000289420935971	0.000209679226035
+UniRef50_F0KJN4		0.000353733377151	0.00727334262613	0.00691960924898
+UniRef50_G7U3Y8		0.00064619232184	0.0065661311498	0.00591993882796
+UniRef50_B9QYQ7		0.000366633845086	0.000338850348176	-2.778349691e-05
+UniRef50_A0A023RT23	LysR family transcriptional regulator	0.000159501122048	0.00613738168926	0.00597788056721
+UniRef50_P16689	Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase	0.00366142965681	0.000424494813777	-0.00323693484303
+UniRef50_C2SK84	Transposase for insertion sequence element IS257 in transposon Tn4003	0.00476974077466	0.00144964613488	-0.00332009463978
+UniRef50_P32703		0.00283790093713	0.0010116014054	-0.00182629953173
+UniRef50_P32704		0.00269547653981	0.00135784633589	-0.00133763020392
+UniRef50_B1ME21	Protein NrdI	1.57867696249e-05	4.73310388074e-05	3.15442691825e-05
+UniRef50_P08189	Protein FimF	0.00149532564932	0.000335587164987	-0.00115973848433
+UniRef50_UPI0003621B16	hypothetical protein	3.37671428779e-06	3.99574415264e-06	6.1902986485e-07
+UniRef50_UPI0003AA87E8	hypothetical protein	0.000196792047996	0.000184817699091	-1.1974348905e-05
+UniRef50_Q2LUP9	Bifunctional protein FolD	0.0113979612122	0.00497712229982	-0.00642083891238
+UniRef50_E6JRH7		0.00150424330657	6.42280882479e-05	-0.00144001521832
+UniRef50_UPI00035EC48D	metallophosphoesterase	2.91306129511e-05	5.69229973607e-05	2.77923844096e-05
+UniRef50_K2CFL6		2.10888702392e-05	9.41839499346e-05	7.30950796954e-05
+UniRef50_UPI00041B2B13	ATP dependent DNA helicase RuvA	7.37862446398e-06	5.46389032146e-05	4.72602787506e-05
+UniRef50_F0L985		0.00740829580323	0.00189738373436	-0.00551091206887
+UniRef50_UPI0003686526	hypothetical protein	7.82439291492e-05	5.8785184662e-05	-1.94587444872e-05
+UniRef50_A6LY24	Amino acid permease associated region	0.000229256886544	0.000513160263102	0.000283903376558
+UniRef50_D0L5P3		0.000151187237433	0.00602420639923	0.0058730191618
+UniRef50_UPI000476F8E5	hypothetical protein	1.20422675296e-05	1.51987042787e-05	3.1564367491e-06
+UniRef50_UPI0004421CDD	PREDICTED	5.04832280869e-06	1.66785084755e-06	-3.38047196114e-06
+UniRef50_F0P387	Signal peptidase I	0.0108914027252	0.00206609360669	-0.00882530911851
+UniRef50_Q6L2D8	Pyridoxal biosynthesis lyase PdxS	1.5806335407e-05	1.04155553404e-05	-5.3907800666e-06
+UniRef50_P37649	Protein YhjK	0.00755568256295	0.000979625313929	-0.00657605724902
+UniRef50_G7U7J9	Haloacid dehalogenase like hydrolase	0.000157285828689	0.000719185659773	0.000561899831084
+UniRef50_UPI000390127B	Transcriptional regulatory protein LiaR	0.000233256017827	0.00295786848942	0.00272461247159
+UniRef50_K1SRL1	Adhesin like protein 	3.99857154855e-05	2.74405140594e-05	-1.25452014261e-05
+UniRef50_UPI00047A852C	hypothetical protein	4.49279546827e-05	1.73751476718e-05	-2.75528070109e-05
+UniRef50_A6LY09	RNA polymerase, sigma 24 subunit, ECF subfamily	0.00106835657223	0.000666127906449	-0.000402228665781
+UniRef50_A6LTK4		0.000672425677579	0.00155904222972	0.000886616552141
+UniRef50_A7HN65	Glucose 1 phosphate adenylyltransferase	7.25516331892e-06	1.35400264878e-05	6.28486316888e-06
+UniRef50_UPI000377BA4D	hypothetical protein	8.72144248627e-05	2.46644594685e-05	-6.25499653942e-05
+UniRef50_UPI0003A503E2	hypothetical protein	8.72547786887e-05	5.64451931057e-05	-3.0809585583e-05
+UniRef50_A3PP31		0.00700559017192	0.00335348715825	-0.00365210301367
+UniRef50_X2XBL9		2.28646296284e-05	4.63387178885e-05	2.34740882601e-05
+UniRef50_UPI0004759CFA	L iditol 2 dehydrogenase	4.84612896173e-06	2.31343228509e-05	1.82881938892e-05
+UniRef50_Q1GD82		0.000253264392922	4.13832290256e-05	-0.000211881163896
+UniRef50_Q67KH9	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.85494127818e-05	9.03198554352e-06	-9.51742723828e-06
+UniRef50_O26346	Histidine  tRNA ligase	0.00302034650922	0.00213877165269	-0.00088157485653
+UniRef50_U3SYS1	Gamma aminobutyrate permease	0.000264075443635	0.00419501029901	0.00393093485537
+UniRef50_Q8DYM7	Protein translocase subunit SecA 2	0.000203308687323	0.00278889185501	0.00258558316769
+UniRef50_Q87C91	Phosphate binding protein PstS	0.00380103938268	0.00187764177255	-0.00192339761013
+UniRef50_R6P001		1.07984047693e-05	1.51640521827e-05	4.3656474134e-06
+UniRef50_UPI000361C657	hypothetical protein	9.63270075858e-06	1.50718041685e-05	5.43910340992e-06
+UniRef50_A5IWE0		0.0489763846154	0.00976123020229	-0.0392151544131
+UniRef50_K2AF05		0.00189667906072	0.000820793165379	-0.00107588589534
+UniRef50_UPI0003C10267		5.21784097736e-05	0.000164200068792	0.000112021659018
+UniRef50_P39393		0.00163744657209	0.000790884139125	-0.000846562432965
+UniRef50_Q1BTH0	Formamidopyrimidine DNA glycosylase	7.79070973519e-06	5.55792664548e-05	4.77885567196e-05
+UniRef50_D8JEM9		0.000107545865766	0.00390871732591	0.00380117146014
+UniRef50_F3GHC1	Putative monovalent cation H+ antiporter subunit A 	4.09319752908e-05	1.40792035729e-05	-2.68527717179e-05
+UniRef50_F9KEG1		0.000149485901325	0.000152088875647	2.602974322e-06
+UniRef50_R4VNY3	Membrane protein	0.00323164852676	0.00139537731812	-0.00183627120864
+UniRef50_P22874	Mercuric resistance operon regulatory protein	0.0112728209962	0.00335899893494	-0.00791382206126
+UniRef50_P0AGB8	ECF RNA polymerase sigma E factor	0.0087249418895	0.000973191973255	-0.00775174991624
+UniRef50_UPI00037E5BDF	hypothetical protein	3.40392583036e-05	1.93289904637e-05	-1.47102678399e-05
+UniRef50_Q4SV05	Chromosome undetermined SCAF13832, whole genome shotgun sequence	3.17490956244e-05	1.17616036438e-05	-1.99874919806e-05
+UniRef50_A3Q0W3		4.12182937325e-05	4.49159110089e-06	-3.67267026316e-05
+UniRef50_A2RM05	Queuosine precursor transporter QueT	0.00616344963098	0.00245359464467	-0.00370985498631
+UniRef50_Q6LLQ5	Probable GTP binding protein EngB	0.0014291691902	0.00240178032016	0.00097261112996
+UniRef50_UPI00041CCB11	sugar ABC transporter permease	0.00025376264264	0.000416512762488	0.000162750119848
+UniRef50_A6V513		2.00968583281e-05	1.40968321374e-05	-6.0000261907e-06
+UniRef50_A0A026BBH0	Aldo keto reductase	0.00511998073964	0.00374396197367	-0.00137601876597
+UniRef50_A4WXV7	Transcriptional regulator, GntR family	0.000846924300327	0.000253490734069	-0.000593433566258
+UniRef50_M9R7V5	Cold shock protein	0.0043138275906	0.00285376436176	-0.00146006322884
+UniRef50_O58411	Pyruvate ketoisovalerate oxidoreductases common subunit gamma	0.00506756246733	0.00167160399168	-0.00339595847565
+UniRef50_A0A023RSV7	Reverse transcriptase	0.000190569586946	0.00647196514987	0.00628139556292
+UniRef50_D4HAZ8		0.000200256312201	0.00456455867613	0.00436430236393
+UniRef50_I6X2N5		0.000133860279732	0.00348944429041	0.00335558401068
+UniRef50_P25960	Type 4 prepilin like proteins leader peptide processing enzyme	0.0024017910303	0.000643557551107	-0.00175823347919
+UniRef50_D5WUG2		5.30583811632e-05	0.00107859269588	0.00102553431472
+UniRef50_Q6D201	Sulfate thiosulfate import ATP binding protein CysA	0.000210110867828	9.15364530134e-05	-0.000118574414815
+UniRef50_Q04DG6		1.13014809771e-05	5.06179038489e-06	-6.23969059221e-06
+UniRef50_UPI0003756849	succinylarginine dihydrolase	1.14191926217e-05	3.90398405948e-05	2.76206479731e-05
+UniRef50_UPI000473959B	3 oxoacyl ACP synthase, partial	1.01030393279e-05	2.64550794357e-05	1.63520401078e-05
+UniRef50_C4XLK3	DNA directed RNA polymerase subunit alpha	8.76701431844e-06	1.4299277781e-05	5.53226346256e-06
+UniRef50_O33641	Outer membrane protease IcsP	0.00396340291988	0.000823282908657	-0.00314012001122
+UniRef50_UPI0002197747	haloacid dehalogenase	5.4464920978e-05	0.000138764290221	8.4299369243e-05
+UniRef50_P49778	Elongation factor P	0.0243691113653	0.00281104347607	-0.0215580678892
+UniRef50_P0AD45	Quorum sensing regulator protein G	0.00276463240917	0.000283051155147	-0.00248158125402
+UniRef50_B9JX75		1.18971460875e-05	1.95629989661e-05	7.6658528786e-06
+UniRef50_UPI00046CD0D4	ABC transporter permease	0.000289851814929	2.60264482471e-05	-0.000263825366682
+UniRef50_F0Y8P3		6.36920694229e-05	0.000120610750605	5.69186811821e-05
+UniRef50_V7EH29		2.13034294627e-05	4.23040068502e-05	2.10005773875e-05
+UniRef50_Q5HN04		0.0103739905284	0.00490301659956	-0.00547097392884
+UniRef50_Q6GJF6	Dihydroneopterin aldolase	0.00232431798977	0.000494944198654	-0.00182937379112
+UniRef50_Q5HN02		0.00511203516334	0.00151265278619	-0.00359938237715
+UniRef50_UPI00046B8737		3.20490075933e-05	1.87948343769e-05	-1.32541732164e-05
+UniRef50_UPI00037E9D63	hypothetical protein	1.50319541718e-05	1.22409268427e-05	-2.7910273291e-06
+UniRef50_C0HG71		3.13634432924e-05	5.03385356753e-05	1.89750923829e-05
+UniRef50_P32929	Cystathionine gamma lyase	0.000319565139608	0.000212968777781	-0.000106596361827
+UniRef50_UPI00046313F5	translation initiation factor IF 3	2.20513827302e-05	2.3759145088e-05	1.7077623578e-06
+UniRef50_B7KEP3	Bifunctional protein FolD	2.36352233125e-05	2.81908793437e-06	-2.08161353781e-05
+UniRef50_V4Q726		0.000164972710783	3.58789719943e-05	-0.000129093738789
+UniRef50_H9KRJ0		8.65056717976e-05	0.000108560576405	2.20549046074e-05
+UniRef50_A0A031F6L1	Porin O	0.000936219727163	0.000395428249963	-0.0005407914772
+UniRef50_UPI0003B54A55	chemotaxis protein	0.000110740462558	1.11214277493e-05	-9.96190348087e-05
+UniRef50_P0A2Y1	Arginase	0.00219165048988	0.000946983052827	-0.00124466743705
+UniRef50_S9RRM6	High affinity K+ transport system, ATPase chain B	1.5874461802e-05	3.8665645654e-05	2.2791183852e-05
+UniRef50_UPI0004745E14	hypothetical protein	8.41849552099e-06	1.16685248209e-05	3.25002929991e-06
+UniRef50_B9KUL3	GCN5 related N acetyltransferase	0.043070442519	0.00133126895675	-0.0417391735623
+UniRef50_Q98H85	Cation efflux system protein	0.00724470395197	0.000916990353245	-0.00632771359873
+UniRef50_I7EYE9		0.000325030721334	7.38653142985e-05	-0.000251165407036
+UniRef50_W8S3E2		0.000180059545	4.07898024684e-05	-0.000139269742532
+UniRef50_UPI000376F465	hypothetical protein	1.71213333445e-05	1.28125491575e-05	-4.308784187e-06
+UniRef50_J5HWF5		7.28087787662e-05	0.00031492698931	0.000242118210544
+UniRef50_Q9JS61	Dihydroxy acid dehydratase	0.00762570552755	0.0748872952463	0.0672615897188
+UniRef50_B1Y6A6	Periplasmic nitrate reductase	0.0113032890575	0.00224511089736	-0.00905817816014
+UniRef50_K4VY87		0.00106921300841	0.000777149224201	-0.000292063784209
+UniRef50_UPI000363A65E	ABC transporter ATP binding protein	2.80029543414e-05	8.39860800505e-06	-1.96043463364e-05
+UniRef50_M1MNB9	Transcriptional regulator, RpiR family	0.000159276788545	0.00128182932957	0.00112255254102
+UniRef50_P75980	Putative protein BeeE from lambdoid prophage e14 region	0.00426428940886	0.000440771201791	-0.00382351820707
+UniRef50_D2J7Y2		0.0501460901656	0.0110872105218	-0.0390588796438
+UniRef50_L0EBD3	Lipoprotein, YaeC family	0.000233604285751	0.000994010170098	0.000760405884347
+UniRef50_A4EAB4		1.24116549453e-06	0.00031575802666	0.000314516861165
+UniRef50_A0A017HMY7		0.00288134441751	0.000277129587083	-0.00260421483043
+UniRef50_UPI0003700BFB	hypothetical protein	0.000109587993289	3.17183709175e-05	-7.78696223715e-05
+UniRef50_UPI000373B788	hypothetical protein	7.24868328232e-05	1.4988848442e-05	-5.74979843812e-05
+UniRef50_A0A011PBV4		0.000430592382719	0.000126941167813	-0.000303651214906
+UniRef50_F7R3U3	Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein	0.00265905521061	0.000725277465772	-0.00193377774484
+UniRef50_P51007	Transcriptional activator protein FnrL	0.010924379198	0.00336039348192	-0.00756398571608
+UniRef50_V9AR48		2.9854908243e-05	0.000116380461046	8.6525552803e-05
+UniRef50_UPI00035F62EF	hypothetical protein	0.000302054295602	0.000210047016396	-9.2007279206e-05
+UniRef50_B9KX33	FlaF protein	0.0219735267976	0.00427982755914	-0.0176936992385
+UniRef50_Q2JHF7	Acetylglutamate kinase	6.19591189608e-05	2.22433417259e-05	-3.97157772349e-05
+UniRef50_UPI000262920F	ATP dependent Clp protease adapter protein clpS	0.000750503540748	4.59388084051e-05	-0.000704564732343
+UniRef50_UPI0002D72F69	hypothetical protein	1.29567753991e-05	3.85614977173e-05	2.56047223182e-05
+UniRef50_A1AVM5	DNA directed RNA polymerase subunit alpha	1.16934550292e-05	8.6884601404e-06	-3.0049948888e-06
+UniRef50_Q3IZ91	Crotonyl CoA reductase	0.0108533022874	0.00290603747031	-0.00794726481709
+UniRef50_B5F3L0	Protein YebF	0.000319903380388	0.000989888397308	0.00066998501692
+UniRef50_D9SWY9	Phosphofructokinase	0.00108413797722	0.000982013686033	-0.000102124291187
+UniRef50_M9RJL9		0.000379127393571	4.86416934213e-05	-0.00033048570015
+UniRef50_B5YDB0	Thymidine kinase	1.91510515853e-05	2.88785795692e-05	9.7275279839e-06
+UniRef50_UPI00023772DA	putative transmembrane efflux protein of the MFS type	1.40065594042e-05	6.94387244008e-06	-7.06268696412e-06
+UniRef50_UPI00038F2DE3		1.62392071367e-05	6.95892921192e-05	5.33500849825e-05
+UniRef50_Q5Z8D5	Os01g0349000 protein	1.134658825e-05	6.76041932905e-05	5.62576050405e-05
+UniRef50_UPI000361B676	hypothetical protein	4.93829784593e-05	5.05574345641e-06	-4.43272350029e-05
+UniRef50_A6U352		0.000857922701941	0.000550279574895	-0.000307643127046
+UniRef50_UPI0003681885	hypothetical protein, partial	1.87512100193e-06	2.47073470555e-06	5.9561370362e-07
+UniRef50_X1XJA7		0.00414672156631	0.00429582582897	0.00014910426266
+UniRef50_Q5HK08	Beta hemolysin	0.00913599284771	0.00540851226132	-0.00372748058639
+UniRef50_UPI000237AA65	binding protein dependent transporter inner membrane component	6.1846068264e-05	9.91302653334e-05	3.72841970694e-05
+UniRef50_Q3J7A3	Adenylate kinase	7.92539999372e-06	2.42494351445e-05	1.63240351508e-05
+UniRef50_Q2FFI7	Adenylosuccinate lyase	0.0421063992613	0.0492150615458	0.0071086622845
+UniRef50_K1PM14	Threonine synthase like 2	3.34492692877e-06	7.32800194701e-06	3.98307501824e-06
+UniRef50_P14789	Protease LasA	0.000346160743749	0.000233451940873	-0.000112708802876
+UniRef50_Q9RXH7	Fatty acid  CoA ligase, putative	7.50966821352e-05	0.017791347335	0.0177162506529
+UniRef50_Q17VI1	Carbamoyl phosphate synthase small chain	0.000111572213456	0.00312544472898	0.00301387251552
+UniRef50_G2QDG1		1.5801699577e-06	1.35536304113e-06	-2.2480691657e-07
+UniRef50_Q47AK8	Transcriptional regulator, BolA protein family	2.64940892145e-05	8.13834753557e-05	5.48893861412e-05
+UniRef50_A6UYT5		0.000274048041324	0.000738448811562	0.000464400770238
+UniRef50_A6LPC3	ATP dependent helicase deoxyribonuclease subunit B	0.000494562618109	0.00173729230968	0.00124272969157
+UniRef50_I6U222	ABC transporter permease	0.00401912504961	0.00180066840691	-0.0022184566427
+UniRef50_P05804	Beta glucuronidase	0.00113750019631	0.000206055348713	-0.000931444847597
+UniRef50_E0TN47		4.99100029369e-05	9.12410005749e-05	4.1330997638e-05
+UniRef50_Q09677		0.000647118838034	0.00276447848459	0.00211735964656
+UniRef50_D3QCP0		0.0173476716169	0.00572999287322	-0.0116176787437
+UniRef50_P58342	Copper transporting ATPase 2	4.40081108864e-06	0.00012453931293	0.000120138501841
+UniRef50_Q3JV89		4.40752835366e-06	1.72728233748e-05	1.28652950211e-05
+UniRef50_F2AIV2		0.00260719677038	0.000232413915278	-0.0023747828551
+UniRef50_UPI00040366D8	cardiolipin synthetase	2.33762738432e-05	3.62849061332e-06	-1.97477832299e-05
+UniRef50_UPI000477CEDC	competence protein ComL	0.000490759753637	0.000192020709849	-0.000298739043788
+UniRef50_E4TDW5	DNA methylase N 4 N 6 domain protein	0.000207030706866	0.00576410520652	0.00555707449965
+UniRef50_A5IR33	Prophage antirepressor	0.00741134670854	0.00384056768113	-0.00357077902741
+UniRef50_Q5HEW0	Serine protease SplA	0.00734905356531	0.000507047884434	-0.00684200568088
+UniRef50_A6LV33	AAA ATPase	0.000206348090817	0.00143659586125	0.00123024777043
+UniRef50_B1M3E9	Binding protein dependent transport systems inner membrane component	0.00668225323777	0.00138481947429	-0.00529743376348
+UniRef50_UPI0002C36421	PREDICTED	5.21652074428e-05	6.27352751496e-05	1.05700677068e-05
+UniRef50_Q2FGH0	Superoxide dismutase [Mn Fe] 1	0.00747540721377	0.00037720515265	-0.00709820206112
+UniRef50_UPI0003B79D68	peptide ABC transporter permease	0.000205176288339	0.000113131587831	-9.2044700508e-05
+UniRef50_X0RZB2	Marine sediment metagenome DNA, contig	1.7601830662e-05	1.93984529218e-05	1.7966222598e-06
+UniRef50_UPI00036B0C57	hypothetical protein, partial	0.000113381181349	0.0625668048801	0.0624534236988
+UniRef50_UPI000362FAB4	hypothetical protein	0.000125823749883	1.9383129883e-05	-0.00010644062
+UniRef50_Q73X87	Ribonuclease PH	0.00667418467342	0.00421694454862	-0.0024572401248
+UniRef50_UPI00037598D9	hypothetical protein	9.71883093639e-06	1.37287971546e-05	4.00996621821e-06
+UniRef50_V4Z1T8		4.4276361754e-06	3.63074346043e-06	-7.9689271497e-07
+UniRef50_W7WAI9		2.31705772358e-05	6.49857500581e-06	-1.667200223e-05
+UniRef50_D0K7A4	IucC family siderophore biosynthesis protein	0.01365102113	0.00393519815943	-0.00971582297057
+UniRef50_I1ZP85		1.11177068986e-05	0.00470009831517	0.00468898060827
+UniRef50_Q3IV82		0.0254352988171	0.00648290318177	-0.0189523956353
+UniRef50_Q3IV81		0.00702869045209	0.000846077209436	-0.00618261324265
+UniRef50_A6M1G7	Thiamine pyrophosphate protein domain protein TPP binding	0.000685745318784	0.00120017689762	0.000514431578836
+UniRef50_F6D2B8	ABC transporter related protein	0.00368202428849	0.000246439531448	-0.00343558475704
+UniRef50_A5UMH6		0.00337213048898	0.000635089688595	-0.00273704080039
+UniRef50_C4J6F8		8.09529774758e-06	0.000146767206662	0.000138671908914
+UniRef50_Q3IV88		0.0101713007153	0.00049731587432	-0.00967398484098
+UniRef50_UPI00037A900D	hypothetical protein, partial	7.8402376145e-05	1.73955881179e-05	-6.10067880271e-05
+UniRef50_O31678	NADPH dependent 7 cyano 7 deazaguanine reductase	0.0165607479755	0.0115988485796	-0.0049618993959
+UniRef50_UPI0003707B6D	hypothetical protein	1.53325344607e-05	7.68099452447e-06	-7.65153993623e-06
+UniRef50_W0H2V6	Hemolysin activator protein	0.000552041371149	0.000146559158908	-0.000405482212241
+UniRef50_O26230	Probable deoxyhypusine synthase	0.00262093867135	0.00236227762256	-0.00025866104879
+UniRef50_UPI0003B47108	PREDICTED	4.84672197334e-06	9.24871027547e-06	4.40198830213e-06
+UniRef50_Q8KA28	3 oxoacyl [acyl carrier protein] synthase 1	0.0103911558271	0.0119304306329	0.0015392748058
+UniRef50_P0A2X7	Carbamate kinase 1	0.0176563649554	0.0140878144938	-0.0035685504616
+UniRef50_E4N8R6		1.31310347922e-05	5.85092373542e-05	4.5378202562e-05
+UniRef50_UPI0003B30ABB	sodium	3.24893264685e-05	1.33350963211e-05	-1.91542301474e-05
+UniRef50_R0F7E9	Molybdopterin guanine dinucleotide biosynthesis protein MobA 	2.7449217049e-05	2.74497453582e-05	5.283092e-10
+UniRef50_UPI0002F30145	50S ribosomal protein L3	5.08462694234e-06	7.21831173316e-05	6.70984903893e-05
+UniRef50_F0MZ05		0.000493613804407	0.000289053871314	-0.000204559933093
+UniRef50_C6WR75	Short chain dehydrogenase reductase SDR	0.000111134245983	0.00831285132515	0.00820171707917
+UniRef50_UPI00037F0FC3	hypothetical protein	1.18623493346e-05	0.00226315081611	0.00225128846678
+UniRef50_R5WF49		1.98798999584e-06	3.82966355237e-05	3.63086455279e-05
+UniRef50_UPI000255E7F9	MerR family transcriptional regulator	0.000926711715395	0.000120373524491	-0.000806338190904
+UniRef50_Q5E4V6	Ribose import ATP binding protein RbsA	0.00031862893321	0.00146875485522	0.00115012592201
+UniRef50_G7SI90		8.79531428448e-06	1.55116645269e-05	6.71635024242e-06
+UniRef50_Q837G3	Formamidopyrimidine DNA glycosylase	8.60554416956e-06	0.00835777457458	0.00834916903041
+UniRef50_Q9KPS2	Na translocating NADH quinone reductase subunit B	0.000833720765893	0.00287670683851	0.00204298607262
+UniRef50_A1WG05	Dimethylmenaquinone methyltransferase	0.00530308289461	0.00136944030877	-0.00393364258584
+UniRef50_D0KX67		6.16053119243e-06	0.000247837433278	0.000241676902086
+UniRef50_E6K041	GTPase HflX	0.000343165745867	0.00449558393003	0.00415241818416
+UniRef50_Q54277	Dihydrofolate reductase	2.40732337741e-05	0.000779643301974	0.0007555700682
+UniRef50_UPI00046CCCAD	hypothetical protein	3.1077415077e-05	1.01431396247e-05	-2.09342754523e-05
+UniRef50_UPI0003A0652D	peptidase C60	2.28290831091e-05	9.38643106147e-06	-1.34426520476e-05
+UniRef50_G7M701	NAD dependent epimerase dehydratase	0.000148811822151	0.00127586044159	0.00112704861944
+UniRef50_E0NNQ0		0.000247274649087	0.00254914725009	0.002301872601
+UniRef50_O26325	Cyclic 2,3 diphosphoglycerate synthetase	0.00388200704292	0.000669868465534	-0.00321213857739
+UniRef50_Q9RX12		0.00025873805213	0.0428070649503	0.0425483268982
+UniRef50_UPI0004757A78	replication initiation protein RepC	4.82053261111e-05	1.27556738889e-05	-3.54496522222e-05
+UniRef50_Q4FUR4	Homoserine O acetyltransferase	0.000106053140962	0.00807706923074	0.00797101608978
+UniRef50_Q5HP79	3 phosphoshikimate 1 carboxyvinyltransferase	0.0171545815073	0.00545575553442	-0.0116988259729
+UniRef50_A4VYG8	Ribosomal RNA large subunit methyltransferase H	0.000894311910907	0.00230722898052	0.00141291706961
+UniRef50_UPI00046C9F03	hypothetical protein	2.78223735227e-06	4.78966086832e-05	4.51143713309e-05
+UniRef50_A6M2J1	Glycosyl transferase, group 1	0.000145631731206	0.00213450270197	0.00198887097076
+UniRef50_I1ENI9		3.03647275924e-05	3.20077048074e-05	1.642977215e-06
+UniRef50_A1WY05	Tryptophan synthase alpha chain	6.03454238986e-06	1.31086651197e-05	7.07412272984e-06
+UniRef50_UPI00047CE877	hypothetical protein, partial	2.50591108207e-05	0.000595332465114	0.000570273354293
+UniRef50_J7TB42	Oxygen insensitive NADH nitroreductase	0.00018874299443	0.00193124074851	0.00174249775408
+UniRef50_Q6A6Y6	6,7 dimethyl 8 ribityllumazine synthase	0.00164124342979	0.00473539781693	0.00309415438714
+UniRef50_X9LDU8		0.00437869009959	0.00115108929725	-0.00322760080234
+UniRef50_UPI000252BAC1	PREDICTED	2.35467222547e-05	4.04005921262e-05	1.68538698715e-05
+UniRef50_A8LU41	Replication protein B	0.0206527645079	0.00590632862231	-0.0147464358856
+UniRef50_C6ST62		0.00360577688688	0.000482031831339	-0.00312374505554
+UniRef50_C6ST67		0.00476603538458	0.00155231870474	-0.00321371667984
+UniRef50_P37780	dTDP 4 dehydrorhamnose 3,5 epimerase	1.03869520212e-05	3.445025868e-05	2.40633066588e-05
+UniRef50_UPI00037518CF	hypothetical protein	9.46331512487e-07	1.14617432135e-05	1.0515411701e-05
+UniRef50_I7EP81	Bifunctional adenosylcobalamin biosynthesis protein CobP	0.00424443357646	0.000649656259564	-0.0035947773169
+UniRef50_B2TS08	PHP domain protein	0.00163691463422	0.000256797134949	-0.00138011749927
+UniRef50_S9R0I2		9.93267750971e-05	2.3320126524e-05	-7.60066485731e-05
+UniRef50_K7VG66		4.12409083971e-06	2.49041144677e-05	2.0780023628e-05
+UniRef50_E3I2I3	PUCC protein	8.43480735608e-05	4.78283012381e-05	-3.65197723227e-05
+UniRef50_UPI00032A201E	PREDICTED	1.26166630636e-05	1.67823392421e-05	4.1656761785e-06
+UniRef50_M2WAS0		4.87801433499e-07	2.152918866e-06	1.6651174325e-06
+UniRef50_D4H9P2	Amine oxidase 	0.000217266859686	0.00649614133503	0.00627887447534
+UniRef50_R6G969	Hypoxanthine phosphoribosyltransferase	0.000592488113511	0.000708822406533	0.000116334293022
+UniRef50_P75684		0.00110954780239	0.000131624549324	-0.000977923253066
+UniRef50_A6L4U5	Altronate oxidoreductase	0.000150156451202	0.00429462944642	0.00414447299522
+UniRef50_Q5HNN3	Porphobilinogen deaminase	0.0122699608397	0.00392796608385	-0.00834199475585
+UniRef50_UPI00034C244F	hypothetical protein	6.38888048112e-06	9.91684319403e-06	3.52796271291e-06
+UniRef50_UPI000467C74C	hypothetical protein, partial	0.000135683874576	7.14726709925e-05	-6.42112035835e-05
+UniRef50_B0KQA4	Lipoprotein	0.000497180446663	0.000242726059064	-0.000254454387599
+UniRef50_B5Y813		7.13439341265e-05	5.48643350466e-06	-6.58575006218e-05
+UniRef50_Q46ZM0	sn glycerol 3 phosphate import ATP binding protein UgpC	0.0168706248213	0.00384318185498	-0.0130274429663
+UniRef50_UPI00041C29D4	acyl CoA dehydrogenase	5.54462639687e-06	2.71780250604e-05	2.16333986635e-05
+UniRef50_Q1MA75	Glutamate 5 kinase	0.000664940069619	0.00138435390009	0.000719413830471
+UniRef50_W2DD36	Pirin family protein	9.56373699016e-06	7.50921228771e-06	-2.05452470245e-06
+UniRef50_UPI000374B537	hypothetical protein	6.88597937187e-06	1.0470590916e-05	3.58461154413e-06
+UniRef50_D8JIN7	Diguanylate cyclase  domain protein	5.62851871995e-05	0.00508647495217	0.00503018976497
+UniRef50_Q838L2	L rhamnose isomerase	0.00246771786606	0.00600039425772	0.00353267639166
+UniRef50_Q95XX1-3	Isoform c of Nicotinate phosphoribosyltransferase	8.96024584777e-06	1.66253822996e-05	7.66513645183e-06
+UniRef50_UPI0002558ADA	RNA binding protein	5.75973883736e-06	6.03255532236e-06	2.72816485e-07
+UniRef50_E5QTA2		0.000107230539787	7.60645733524e-05	-3.11659664346e-05
+UniRef50_D8BS45		0.000114506174628	0.000473770115279	0.000359263940651
+UniRef50_F4GQ68	Acetolactate synthase 2 catalytic subunit	6.83851429081e-05	0.000387097362143	0.000318712219235
+UniRef50_U3SQS3		0.0050800647338	0.00159667324045	-0.00348339149335
+UniRef50_A6LWQ9		0.000369702478148	0.0017084374783	0.00133873500015
+UniRef50_A6LWQ8		0.0001909709893	0.00138984395529	0.00119887296599
+UniRef50_P55478	UPF0721 transmembrane protein y4hK	0.00136672589222	0.000716724846167	-0.000650001046053
+UniRef50_Q4PDQ3		1.23787024116e-05	1.34261010992e-05	1.0473986876e-06
+UniRef50_A6LWQ2		0.000187803974553	0.000315846743525	0.000128042768972
+UniRef50_UPI00035D39C5	MULTISPECIES	5.21231885978e-06	8.54319736737e-06	3.33087850759e-06
+UniRef50_UPI0002375F1F	hypothetical protein	0.00143434354276	0.00048733713943	-0.00094700640333
+UniRef50_UPI00037B7293	hypothetical protein	3.01668644459e-06	4.56323211034e-06	1.54654566575e-06
+UniRef50_Q0ZKT3	ChrA	9.60524144667e-05	0.00138625496421	0.00129020254974
+UniRef50_Q5PGP5	Glutathione transport system permease protein GsiC	0.00187193432061	0.000193227942332	-0.00167870637828
+UniRef50_A1ISE9	SpoU methylase family protein	0.000263362317798	0.00350267031795	0.00323930800015
+UniRef50_B4V0E4		1.85448134736e-05	0.000178948633104	0.00016040381963
+UniRef50_A1WDW4	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000186955026974	5.36971005001e-05	-0.000133257926474
+UniRef50_UPI0003B33BE3	excinuclease ABC subunit A, partial	9.31159610723e-07	6.20396998906e-05	6.11085402799e-05
+UniRef50_UPI0003C7EA97	protein tyrosine kinase	2.17318396365e-05	2.44158850603e-05	2.6840454238e-06
+UniRef50_A0A023RVY2	Peroxidase	0.000225589236365	0.003209128431	0.00298353919463
+UniRef50_UPI0003B6B16C	GumN family protein	2.72622024195e-05	1.2011127702e-05	-1.52510747175e-05
+UniRef50_UPI0003814F56	hypothetical protein, partial	0.00301368815027	0.000274683593385	-0.00273900455689
+UniRef50_K0SL40		1.16112264068e-05	3.79649919873e-06	-7.81472720807e-06
+UniRef50_UPI00035D3F59	hypothetical protein	0.000179290988471	7.7564287329e-05	-0.000101726701142
+UniRef50_E3EY41		0.000626528039592	2.06189650528e-05	-0.000605909074539
+UniRef50_UPI000371CC4C	hypothetical protein, partial	3.17404198979e-05	2.03245374636e-05	-1.14158824343e-05
+UniRef50_UPI000471DA2C	hypothetical protein, partial	6.66322239618e-05	5.16705616031e-05	-1.49616623587e-05
+UniRef50_R9ZP34	GntR family transcriptional regulator	0.000291120299886	0.000588671173145	0.000297550873259
+UniRef50_A5UJX8	Peptide nickel ABC transporter, permease component, DppB	0.00281784679336	0.00106670196846	-0.0017511448249
+UniRef50_Q47AM5	Phosphoribosyl ATP pyrophosphatase	9.53970735437e-05	5.17276217342e-05	-4.36694518095e-05
+UniRef50_A1B4P8		0.000582087481806	0.000100337529268	-0.000481749952538
+UniRef50_UPI000468F104	hypothetical protein	3.28664846183e-05	2.03183631001e-05	-1.25481215182e-05
+UniRef50_A0KXX9	Ion transport protein	0.00117690198404	0.000703051887205	-0.000473850096835
+UniRef50_B0VBT1		0.000222320577909	0.00616611339217	0.00594379281426
+UniRef50_UPI000366C56B	hypothetical protein	2.82101963236e-05	2.43181287929e-05	-3.8920675307e-06
+UniRef50_UPI000463A6B8	carbonic anhydrase	1.66895300323e-05	2.37532247619e-05	7.0636947296e-06
+UniRef50_UPI0004791861	chemotaxis protein CheW	0.000165289930707	0.000105008894531	-6.0281036176e-05
+UniRef50_Q8CS22	Putative membrane protein insertion efficiency factor	0.0023666020019	0.00260573563408	0.00023913363218
+UniRef50_A8LHU2	Processing peptidase	0.0061055635639	0.000560812462369	-0.00554475110153
+UniRef50_D5WZX2	Poly beta hydroxybutyrate polymerase domain protein	0.00783147632262	0.00187480032019	-0.00595667600243
+UniRef50_UPI0003B3160E	beta lactamase	2.68061958871e-06	3.62947109964e-05	3.36140914077e-05
+UniRef50_W4UEC1		0.000139898634813	0.000826457488646	0.000686558853833
+UniRef50_R7I9W9	Val start codon	3.99378741759e-05	5.96224488951e-05	1.96845747192e-05
+UniRef50_Q07QX1	NADH dehydrogenase 	0.000255943443219	0.000780138338526	0.000524194895307
+UniRef50_A5E8J0	Heat inducible transcription repressor HrcA	0.00824710879027	0.00134813141531	-0.00689897737496
+UniRef50_A4VKS4	Lipoprotein, putative	0.000502826985466	0.000166219533874	-0.000336607451592
+UniRef50_Q2CAF3	Transposase orfA IS5 family element	0.000273300472288	0.000229676447605	-4.3624024683e-05
+UniRef50_L7VRM1	OadB	0.00414564638548	0.00197845163906	-0.00216719474642
+UniRef50_N6U3D2	Transposase	0.000359584983277	0.000159048564335	-0.000200536418942
+UniRef50_C1D0K2		0.00068931561726	0.0314794093342	0.0307900937169
+UniRef50_X5K3C1	Phosphoglucomutase  phosphomannomutase family protein	0.000347179042659	0.000257411427881	-8.9767614778e-05
+UniRef50_UPI00026C6979	ABC type enterochelin transporter permease, partial	9.17249552513e-06	2.66222643533e-05	1.74497688282e-05
+UniRef50_A3PNM9	ROK family protein	0.00382484297307	0.000500338884245	-0.00332450408883
+UniRef50_P31675	Sugar efflux transporter A	0.00389116332432	0.00061441903723	-0.00327674428709
+UniRef50_P30417	Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase	0.000552919022573	0.000331816522686	-0.000221102499887
+UniRef50_Q9SH30	Probable copper transporting ATPase HMA5	1.53007726499e-06	5.07037312941e-05	4.91736540291e-05
+UniRef50_F6AYB7	Lipoprotein	3.06286651881e-05	1.21952881679e-05	-1.84333770202e-05
+UniRef50_Q8X7X9	Probable ATP dependent helicase DinG	0.00322257779892	0.000669475517634	-0.00255310228129
+UniRef50_P0AA62	Inner membrane protein YghB	0.00267941591725	0.000338148899085	-0.00234126701817
+UniRef50_A4VZ41	ATP dependent exoDNAse , alpha subunit helicase superfamily I member	0.000255591490141	0.00304429359698	0.00278870210684
+UniRef50_R9ZFU1	Ammonium transporter	0.00128362274926	0.00707748390358	0.00579386115432
+UniRef50_A5IQG6	Alpha beta hydrolase fold	0.00948232904894	0.000469190946785	-0.00901313810216
+UniRef50_A1VLE6		3.62644118822e-05	2.85316569017e-05	-7.7327549805e-06
+UniRef50_G7ZLK6	Galactosyl transferase	0.0107618562079	0.00255673810335	-0.00820511810455
+UniRef50_K2DS47		1.89413224876e-05	8.86269994962e-06	-1.0078622538e-05
+UniRef50_H6RPX4		6.35842519842e-06	0.000119884995349	0.000113526570151
+UniRef50_UPI00047AC889	ATPase P	3.17054757443e-06	4.53287265882e-05	4.21581790138e-05
+UniRef50_G7LZ49	Alpha beta hydrolase fold protein	0.000919843985708	0.00159953975806	0.000679695772352
+UniRef50_UPI000370CAD4	50S ribosomal protein L5	0.000987380905901	0.000560586160108	-0.000426794745793
+UniRef50_Q44290	Homocitrate synthase 1	5.82103379182e-05	9.73875440996e-06	-4.84715835082e-05
+UniRef50_K0TM89		0.000120319073387	2.28695027754e-05	-9.74495706116e-05
+UniRef50_UPI0003C7F990	histidine kinase	2.49103995888e-05	6.18451536442e-06	-1.87258842244e-05
+UniRef50_D7GFC8	Ppx GppA phosphatase family	0.000417042333463	0.00524774921477	0.00483070688131
+UniRef50_R6TT37		1.39623065708e-05	0.00059704367748	0.000583081370909
+UniRef50_H9UYD8		0.000269632849186	0.000506257208899	0.000236624359713
+UniRef50_P58586	Putative gluconeogenesis factor	0.00284581245179	0.000774722274249	-0.00207109017754
+UniRef50_UPI000473FA3F	hypothetical protein, partial	0.000168743292593	0.000106953155524	-6.1790137069e-05
+UniRef50_F5YM75	ABC transporter, permease protein	0.000479988007449	0.000810661186474	0.000330673179025
+UniRef50_UPI0003619046	hypothetical protein	1.06745767645e-05	1.6010795515e-06	-9.073497213e-06
+UniRef50_UPI0003B69332	NADH dehydrogenase	1.77800789571e-06	5.70114121169e-06	3.92313331598e-06
+UniRef50_A6QE51		0.000865998240698	0.00124135629171	0.000375358051012
+UniRef50_Q7A528	UPF0354 protein SA1564	0.0195903990573	0.00930101942891	-0.0102893796284
+UniRef50_B9KRF2		0.00207758440124	6.59574698727e-05	-0.00201162693137
+UniRef50_Q5XAE3	Malonyl CoA acyl carrier protein transacylase	0.00550770081011	0.00301956989197	-0.00248813091814
+UniRef50_UPI00036445B6	MFS transporter	8.83300502232e-06	7.74061772693e-06	-1.09238729539e-06
+UniRef50_I7DEQ4	Trk system potassium uptake protein TrkA	0.00628145457055	0.00110415262574	-0.00517730194481
+UniRef50_UPI0003A5CBBE	hypothetical protein	3.08863079482e-05	1.62378174148e-05	-1.46484905334e-05
+UniRef50_T1Y9W9	Regulator of kinase autophosphorylation inhibitor	0.0172299258589	0.00159841561035	-0.0156315102486
+UniRef50_R5QQK6	UPF0301 protein BN682_00876	3.75241223158e-05	7.38462311456e-05	3.63221088298e-05
+UniRef50_W4U2A1		5.0527468837e-05	0.00128758607023	0.00123705860139
+UniRef50_M9VDD9	Periplasmic binding protein	2.06951071981e-05	0.00149263552215	0.00147194041495
+UniRef50_Q2RS90		1.54913580894e-05	1.34892721421e-05	-2.0020859473e-06
+UniRef50_UPI00046448EA	deaminase	9.09807857523e-06	6.89789078035e-05	5.98808292283e-05
+UniRef50_Q54TJ4	Probable ATP dependent RNA helicase ddx27	2.00718153452e-06	4.3864287513e-06	2.37924721678e-06
+UniRef50_W7K686		0.000391120335048	0.000217822850854	-0.000173297484194
+UniRef50_W5X6I0	Metallophosphoesterase	2.42185029341e-06	3.77254746648e-06	1.35069717307e-06
+UniRef50_D3QEQ6	Para aminobenzoate synthase, amidotransferase component PabAb	0.0110624267328	0.000955852892789	-0.01010657384
+UniRef50_A4SR46	Short chain dehydrogenase reductase	1.49224925967e-05	0.00418584934359	0.00417092685099
+UniRef50_U3TK30	Iron sulfur cluster assembly ATPase protein	2.96772838078e-05	0.000147004646892	0.000117327363084
+UniRef50_UPI0004412958	ribosomal protein S12	7.28483175509e-05	0.000178830794421	0.00010598247687
+UniRef50_Q92263	Glyceraldehyde 3 phosphate dehydrogenase	4.69732337339e-06	2.80583112081e-05	2.33609878347e-05
+UniRef50_R7PWP6		0.00289705369113	0.00202838482117	-0.00086866886996
+UniRef50_Q92PC8	5,6 dimethylbenzimidazole synthase	0.00214208927053	1.32389155389e-05	-0.00212885035499
+UniRef50_Q49W91	Na H(+) antiporter subunit A1	0.0186862266216	0.00660006311788	-0.0120861635037
+UniRef50_Q8RGJ4	Aspartate  tRNA ligase	7.61572270731e-05	0.0312513917784	0.0311752345513
+UniRef50_Q0TBG1	Guanylate kinase	0.00198413837299	0.000796882842116	-0.00118725553087
+UniRef50_P08369	Inner membrane protein CreD	0.00325321608528	0.000421017665556	-0.00283219841972
+UniRef50_G7M6S6	Radical SAM domain protein	8.33302403623e-05	0.000720310090259	0.000636979849897
+UniRef50_B9T7I1		5.6460130937e-06	1.9875074788e-05	1.42290616943e-05
+UniRef50_A6LYI7	Polysaccharide deacetylase	0.000251099327394	0.00225574198931	0.00200464266192
+UniRef50_Q5LW47	50S ribosomal protein L24	0.00144776128338	0.0011983377356	-0.00024942354778
+UniRef50_UPI0003EAF802	PREDICTED	6.17504325624e-06	1.48888081776e-05	8.71376492136e-06
+UniRef50_F8WKJ0		0.0121834634069	0.0024411288099	-0.009742334597
+UniRef50_B3FTP2	Putative membrane protein 	0.000219882923169	8.75166569277e-05	-0.000132366266241
+UniRef50_UPI0003BB74C6	PREDICTED	1.36041627187e-05	8.67984253906e-06	-4.92432017964e-06
+UniRef50_C4LL84	Sialic acid transporter	0.000180840546199	0.00827658309472	0.00809574254852
+UniRef50_UPI0003746324	hypothetical protein	3.6849670474e-06	1.0368839811e-05	6.6838727636e-06
+UniRef50_E8PBY1	AdiY	9.96005247615e-05	0.00674620957393	0.00664660904917
+UniRef50_B9KQL5		0.00175213030668	0.000470555047793	-0.00128157525889
+UniRef50_L0KL03	ABC type sugar transport system, periplasmic component	0.00772323312431	0.0038227277368	-0.00390050538751
+UniRef50_M3Y9H2		0.000103133635481	1.87017501852e-05	-8.44318852958e-05
+UniRef50_Q8YPE1	Acetyl coenzyme A synthetase	2.01613725332e-05	0.000231077632785	0.000210916260252
+UniRef50_B8FRY4	Periplasmic binding protein	0.0004592283376	0.0011664232256	0.000707194888
+UniRef50_UPI00016C42F5	drug resistance transporter, EmrB QacA subfamily protein, partial	2.61599585786e-05	3.21370098824e-05	5.9770513038e-06
+UniRef50_P0AC82	Lactoylglutathione lyase	0.00592452041641	0.00041506704306	-0.00550945337335
+UniRef50_Q8ZXL4	NH dependent NAD(+) synthetase	2.50654519738e-05	7.12486380937e-06	-1.79405881644e-05
+UniRef50_UPI00046D6304	hypothetical protein	3.3564706617e-06	3.820267938e-05	3.48462087183e-05
+UniRef50_P9WGB4	O succinylhomoserine sulfhydrylase	1.569442599e-05	1.36860564936e-05	-2.0083694964e-06
+UniRef50_A0A024HB78	Rod shape determining protein RodA	0.000387096275183	0.00486576159628	0.0044786653211
+UniRef50_UPI00047E14BB	alpha amylase	5.58695593168e-06	4.23477883964e-05	3.67608324647e-05
+UniRef50_U5MX52	Macrolide export ATP binding permease protein MacB	5.85855130096e-05	0.000601686345668	0.000543100832658
+UniRef50_A5V3U8		3.56792049985e-05	0.000363613511276	0.000327934306277
+UniRef50_R1DQP4		3.80192761535e-05	2.38555019617e-05	-1.41637741918e-05
+UniRef50_A5ULR1	Predicted phosphatidylglycerophosphatase A related protein	0.00425209515452	0.000164674742667	-0.00408742041185
+UniRef50_I7BLG8		0.000308530298509	7.00973198006e-05	-0.000238432978708
+UniRef50_K7SKZ4	Glycosyl transferase, group 2 family	0.00906985349168	0.000712474767724	-0.00835737872396
+UniRef50_A0A018R4T4	Nitrate reductase Z subunit alpha 	2.69275765937e-05	1.82185042295e-05	-8.7090723642e-06
+UniRef50_F3TY15	Serine aspartate repeat protein F	0.00332587517771	0.00117876559106	-0.00214710958665
+UniRef50_Q8DCB9	Non canonical purine NTP pyrophosphatase	3.35659091628e-05	3.25069822608e-05	-1.058926902e-06
+UniRef50_Z9KIC6		8.59889079894e-05	1.13356456323e-05	-7.46532623571e-05
+UniRef50_Q8E5U9	ATP synthase gamma chain	0.000411243278946	0.00309938393463	0.00268814065568
+UniRef50_UPI00047577E0	hypothetical protein	2.54964350921e-06	3.43698964308e-06	8.8734613387e-07
+UniRef50_K0LW41		0.00453083806435	0.000456899562284	-0.00407393850207
+UniRef50_P58205	Flagellar L ring protein	0.00405409179738	0.00161568316105	-0.00243840863633
+UniRef50_V5V8K7	Thiamine monophosphate kinase	0.000346412610349	0.00918996773844	0.00884355512809
+UniRef50_V8NK60	Octapeptide repeat protein T2 	2.80105138267e-05	2.58497145237e-05	-2.160799303e-06
+UniRef50_L4WM60	Starvation sensing protein RspB	0.00149302501322	0.000947512667497	-0.000545512345723
+UniRef50_UPI00036B0F2C	hypothetical protein	1.55923852647e-05	2.61928364828e-05	1.06004512181e-05
+UniRef50_UPI00046310F9	pseudoazurin	0.000523955257203	0.000193842457496	-0.000330112799707
+UniRef50_A0RKF7	Lipoyl synthase	1.42655462901e-05	4.81571787673e-05	3.38916324772e-05
+UniRef50_B5FM40	ATP phosphoribosyltransferase	0.00289929044295	0.00260195691064	-0.00029733353231
+UniRef50_Q0A4M5	ATP synthase subunit delta	0.000212070780251	0.00191295717107	0.00170088639082
+UniRef50_Q8DSS6		0.0072460574956	0.00418685173549	-0.00305920576011
+UniRef50_UPI0003B3C008	hypothetical protein	2.24330132509e-05	7.06496690325e-05	4.82166557816e-05
+UniRef50_E2QHF8	2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.000529230083303	0.000553718822241	2.4488738938e-05
+UniRef50_UPI000364343F	hypothetical protein	6.75603350749e-05	2.32268264439e-05	-4.4333508631e-05
+UniRef50_UPI000479AAE0	hypothetical protein	1.44325942474e-05	7.06273563612e-06	-7.36985861128e-06
+UniRef50_UPI0003F0EEE2	PREDICTED	1.81394895088e-05	2.70127568248e-05	8.873267316e-06
+UniRef50_Q2CE09		0.000819219773903	0.000795243444249	-2.3976329654e-05
+UniRef50_Q16DQ1	Flagellar protein, putative	0.000106478118328	7.00449518916e-05	-3.64331664364e-05
+UniRef50_UPI0002DE5CBD	hypothetical protein	0.00023660206564	2.11247094991e-05	-0.000215477356141
+UniRef50_Q9I3V2		0.000894920666348	0.000386955719131	-0.000507964947217
+UniRef50_I0EM06	Metalloendopeptidase related membrane protein	0.000663009076357	0.00459924750868	0.00393623843232
+UniRef50_R4ZBM2		0.000523942770178	0.000116725970428	-0.00040721679975
+UniRef50_P37604	D alanyl D alanine carboxypeptidase DacD	0.00283004851349	0.000538205133743	-0.00229184337975
+UniRef50_M3Z6H8		1.52963633229e-05	3.69297165746e-06	-1.16033916654e-05
+UniRef50_B0V4K0	Phosphoenolpyruvate protein phosphotransferase	5.2893879798e-05	0.00587787347158	0.00582497959178
+UniRef50_Q02LX5	Putative glutamate  cysteine ligase 2	0.000395695830542	0.000145955537989	-0.000249740292553
+UniRef50_UPI0003FA526E	trehalose synthase	8.16898465844e-06	4.96299308366e-05	4.14609461782e-05
+UniRef50_UPI00046A3CDD	hypothetical protein	4.33853032839e-06	4.58677694342e-06	2.4824661503e-07
+UniRef50_R6Q6V2	Cytosine specific methyltransferase	4.73633612113e-05	0.00392354288315	0.00387617952194
+UniRef50_P39119	Citrate synthase 1	2.87032122391e-06	1.97519364397e-05	1.68816152158e-05
+UniRef50_I1JAZ8		0.000603475278435	0.000308693420057	-0.000294781858378
+UniRef50_UPI000362AC26	hypothetical protein	1.73383949038e-05	3.15740207617e-05	1.42356258579e-05
+UniRef50_UPI0002377E25	binding protein dependent transport systems inner membrane component, partial	0.00044875436205	0.000281171989782	-0.000167582372268
+UniRef50_UPI00046A4CBA	hypothetical protein	2.30682586959e-06	2.50221029829e-06	1.953844287e-07
+UniRef50_Q0QEP2	ATP synthase subunit beta, mitochondrial 	1.32370562884e-05	7.32487831724e-06	-5.91217797116e-06
+UniRef50_Q62KZ5		5.23989252616e-05	0.000313031088522	0.00026063216326
+UniRef50_C3PHK6	Lipoyl synthase	0.000197636643381	0.0113645633529	0.0111669267095
+UniRef50_I0C1U2	Trehalose operon transcriptional repressor	0.0174496358606	0.00252373966088	-0.0149258961997
+UniRef50_B4UIY8		3.64300386614e-05	2.52435933999e-05	-1.11864452615e-05
+UniRef50_Z5X3R4	Aconitate hydratase	1.34556872871e-05	0.000125426235039	0.000111970547752
+UniRef50_UPI000375B6D1	hypothetical protein	3.48540891708e-06	1.99367856433e-05	1.64513767262e-05
+UniRef50_F8HFF8	Phospho 2 dehydro 3 deoxyheptonate aldolase	0.0123873869598	0.00780000724527	-0.00458737971453
+UniRef50_W5X5A5		0.000983116396219	3.61237502835e-05	-0.000946992645935
+UniRef50_I6U3N4		0.000730618042937	0.000851875111142	0.000121257068205
+UniRef50_W8YU14		0.00164587608939	0.000229814125973	-0.00141606196342
+UniRef50_UPI00035E9EF0	hypothetical protein	2.27321010622e-05	2.58446608692e-05	3.112559807e-06
+UniRef50_D7BMZ3	ABC transporter related protein	0.000139680305184	0.0060305719843	0.00589089167912
+UniRef50_UPI000255BEE2	transcriptional activator, partial	3.06117049653e-05	6.21453211802e-05	3.15336162149e-05
+UniRef50_D4HBV2	Transporter, major facilitator family protein	9.80483087926e-05	0.00286593275075	0.00276788444196
+UniRef50_Q1C8B1	Succinylornithine transaminase	0.0075443137861	0.0209197814473	0.0133754676612
+UniRef50_O34206	Alginate biosynthesis sensor protein KinB	0.00139144155009	0.000598076575463	-0.000793364974627
+UniRef50_W8RVI9	Iron sulfur cluster assembly ATPase protein SufC	1.42773010451e-05	0.000235689132928	0.000221411831883
+UniRef50_A7H1C4	GTP binding protein LepA	5.68718678529e-06	2.42084518542e-05	1.85212650689e-05
+UniRef50_UPI00046A28BD	ABC transporter permease	6.65388561092e-06	6.75104204853e-06	9.715643761e-08
+UniRef50_Q3ADL9	Acetyl CoA carboxylase, biotin carboxylase	0.00312797972953	0.00135634583452	-0.00177163389501
+UniRef50_A2RED4	GntR family regulatory protein	0.00411125111341	0.00757022240469	0.00345897129128
+UniRef50_B7IBN3	Thiol	0.000183245625651	0.0180189703715	0.0178357247458
+UniRef50_UPI00047E966E	cobinamide kinase	4.08956546798e-05	0.000119238621968	7.83429672882e-05
+UniRef50_W5X9G4	Methylthioadenosine phosphorylase	2.0325324158e-05	2.05286628687e-05	2.033387107e-07
+UniRef50_UPI000456030C	hypothetical protein PFL1_02724	6.13871297414e-07	2.58194996202e-05	2.52056283228e-05
+UniRef50_I6TWK1		0.00475068834251	0.000820831638329	-0.00392985670418
+UniRef50_I0C256		0.00511584105806	0.00089489910665	-0.00422094195141
+UniRef50_P64549		0.0014181526131	3.87631026651e-05	-0.00137938951043
+UniRef50_UPI000477C3DA	MULTISPECIES	1.66872935978e-05	9.3336860745e-06	-7.3536075233e-06
+UniRef50_UPI00047DA574	hypothetical protein	5.73782744043e-06	1.08651239756e-05	5.12729653517e-06
+UniRef50_F3WYB3	Phasin family domain protein	6.63778872882e-06	4.60061014549e-05	3.93683127261e-05
+UniRef50_A9CRC0		0.00023862256351	0.000122169320374	-0.000116453243136
+UniRef50_U5NMP2		0.0164672440999	0.00535497467104	-0.0111122694289
+UniRef50_UPI000262D125	DNA mismatch repair protein MutS	2.25112512046e-06	3.52247198232e-05	3.29735947027e-05
+UniRef50_Q6FZZ7	Threonine  tRNA ligase	7.85472199989e-05	9.28668884306e-05	1.43196684317e-05
+UniRef50_UPI00036D1788	MULTISPECIES	2.50591866615e-05	0.000649490890808	0.000624431704147
+UniRef50_L7WQ34		0.00687790937647	0.00039551344445	-0.00648239593202
+UniRef50_P37748	O antigen polymerase	0.00260381567713	0.000816252516064	-0.00178756316107
+UniRef50_UPI0004672B4A	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	3.42028284485e-06	3.66508832666e-06	2.4480548181e-07
+UniRef50_B9DK04		3.24042441426e-05	3.94060188209e-05	7.0017746783e-06
+UniRef50_A0A032Y4K4		8.79229969723e-05	0.000149934025056	6.20110280837e-05
+UniRef50_Q027L3	Ribonuclease 3	1.16301406405e-05	1.9867985309e-05	8.2378446685e-06
+UniRef50_F4DYP4	Adenylate cyclase	0.00123182095919	0.000327440563791	-0.000904380395399
+UniRef50_A0A024HYE6		4.52311897248e-06	6.84041908825e-06	2.31730011577e-06
+UniRef50_UPI0003B4674E	peptide ABC transporter permease	6.79283804487e-06	2.55365825428e-05	1.87437444979e-05
+UniRef50_A6LR23	ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein	0.000393001645363	0.00131267784945	0.000919676204087
+UniRef50_F2MN23	Decarboxylase	1.61382631969e-05	0.00208772156579	0.00207158330259
+UniRef50_P11553	L fuculokinase	0.00291583361068	0.00154302324365	-0.00137281036703
+UniRef50_P46126		0.000109457885986	0.000127861071825	1.8403185839e-05
+UniRef50_P46122		0.0028053497348	0.00135820763149	-0.00144714210331
+UniRef50_Q88QE3	MORN domain protein	9.43714972093e-05	0.000151444464203	5.70729669937e-05
+UniRef50_A6LX93	NERD domain protein	0.000273110124948	0.00175084395613	0.00147773383118
+UniRef50_Q5F6R3	Agmatinase	0.000128688405295	0.00188687368667	0.00175818528137
+UniRef50_Q8XE09	2 keto 3 deoxy L rhamnonate aldolase	0.00142077779903	0.0087399968234	0.00731921902437
+UniRef50_A7FFQ7	Potassium transporting ATPase C chain	0.0015904658901	0.000475838802792	-0.00111462708731
+UniRef50_UPI0002197648	orotidine 5 phosphate decarboxylase	2.78390542434e-05	1.45259209371e-05	-1.33131333063e-05
+UniRef50_A6LX07	Na+ H+ antiporter	0.000212414153	0.000961485196865	0.000749071043865
+UniRef50_A7ZMU2	UPF0266 membrane protein YobD	0.000247802618498	0.00095359163165	0.000705789013152
+UniRef50_UPI000262832B	transcriptional regulator	7.19489360017e-06	2.6826275205e-05	1.96313816048e-05
+UniRef50_UPI000378C8E7	hypothetical protein	1.69556494328e-05	1.96334875494e-05	2.6778381166e-06
+UniRef50_Q57MZ8		0.000222032794259	0.000250902743813	2.8869949554e-05
+UniRef50_UPI0004720DD8	hypothetical protein	6.00366868773e-05	4.04298216227e-05	-1.96068652546e-05
+UniRef50_Q1J0J9	DinB YfiT family metal binding protein	0.000808898547544	0.00543247240164	0.0046235738541
+UniRef50_UPI0003EDF3DD	PREDICTED	3.9644834698e-05	0.00197850890829	0.00193886407359
+UniRef50_Q5HKZ8	Uroporphyrin III C methyltransferase, putative	0.00935563207926	0.00467699437783	-0.00467863770143
+UniRef50_UPI0003B7617D	hypothetical protein	3.34897986333e-05	2.05205875927e-05	-1.29692110406e-05
+UniRef50_P37766	Acetate CoA transferase YdiF	0.00345693267139	0.000858467472737	-0.00259846519865
+UniRef50_I3TTL9		0.00172663849265	0.0017926301725	6.599167985e-05
+UniRef50_A6FD16		1.29186557541e-05	2.15364452649e-05	8.6177895108e-06
+UniRef50_UPI00040EB463	ATP synthase F0 subunit I	2.71472807436e-05	4.36824589561e-05	1.65351782125e-05
+UniRef50_Q49W05		0.0174443588119	0.0362409750643	0.0187966162524
+UniRef50_Q9I1M2	2 oxoisovalerate dehydrogenase subunit alpha	0.00077956081639	0.000324797928185	-0.000454762888205
+UniRef50_M1EBV1	ADAM metallopeptidase with thrombospondin type 1 motif, 4 	5.92049981843e-05	0.000593789837823	0.000534584839639
+UniRef50_K0HKR5	Cobyrinic acid a,c diamide synthase	0.00016556013101	0.00608946784961	0.0059239077186
+UniRef50_M9VNR8	NAD glutamate dehydrogenase	0.000132143150579	0.0058982657746	0.00576612262402
+UniRef50_Q3J792	D alanine  D alanine ligase	7.18377474282e-06	7.85341744493e-06	6.6964270211e-07
+UniRef50_B8JBE1	Sporulation domain protein	4.2692743156e-05	3.53387120655e-05	-7.3540310905e-06
+UniRef50_G7LIJ8	1 Deoxy D xylulose 5 phosphate synthase	1.13061556956e-05	0.000335981390994	0.000324675235298
+UniRef50_X2HFM3	Integral membrane protein	0.000589727450661	0.00403315293669	0.00344342548603
+UniRef50_A3PNQ6	Response regulator receiver protein	0.000927874677158	0.000428700176898	-0.00049917450026
+UniRef50_E8SGT7	Enoyl CoA hydratase   Enoyl CoA hydratase [valine degradation]   3 hydroxyacyl CoA dehydrogenase	0.0144019718007	0.00220842313314	-0.0121935486676
+UniRef50_L8WI83		4.47946352985e-05	3.94861592991e-06	-4.08460193686e-05
+UniRef50_UPI0002000A30	amino acid decarboxylase, partial	0.000205620752056	7.3412754802e-05	-0.000132207997254
+UniRef50_D8JGA5		0.000444015505135	0.00524724665621	0.00480323115108
+UniRef50_A3ACF3	Adenylyltransferase and sulfurtransferase MOCS3	2.03815475252e-05	3.51526921673e-05	1.47711446421e-05
+UniRef50_UPI000382D11F	MULTISPECIES	5.46540777085e-05	3.53461762128e-05	-1.93079014957e-05
+UniRef50_UPI0003720140	hypothetical protein	9.35847889313e-06	4.26616774038e-05	3.33031985107e-05
+UniRef50_I6SLY5		0.00194989782703	0.000649620490267	-0.00130027733676
+UniRef50_R9SLL8	Aspartate aminotransferase	0.00249365054423	0.000578852918232	-0.001914797626
+UniRef50_C6V3U5	ABC type phosphate transport system, periplasmic component	3.59437849583e-06	4.79451807033e-06	1.2001395745e-06
+UniRef50_UPI00041F446B	ABC transporter	2.96185800746e-05	3.22887723043e-05	2.6701922297e-06
+UniRef50_UPI0001F27501	alcohol dehydrogenase	4.71691930261e-05	5.42434502021e-05	7.074257176e-06
+UniRef50_U2Z8B8		1.63216128414e-06	4.46073110882e-05	4.29751498041e-05
+UniRef50_UPI0003731013	hypothetical protein	1.01153540721e-05	7.58317783359e-05	6.57164242638e-05
+UniRef50_D7CNA1	Radical SAM domain protein	0.000117841619826	0.00156968829045	0.00145184667062
+UniRef50_Q494C7	ATP synthase subunit b	0.00262066954041	0.000499126825692	-0.00212154271472
+UniRef50_UPI00037C704A	hypothetical protein	2.50653797004e-05	9.85449544691e-06	-1.52108842535e-05
+UniRef50_Q6F739		0.000126673150626	0.00747987013875	0.00735319698812
+UniRef50_W0GX12		0.000495724791456	0.000212521002504	-0.000283203788952
+UniRef50_UPI0003B6FA07	D ribose transporter ATP binding protein	3.87867719423e-05	5.65972031506e-06	-3.31270516272e-05
+UniRef50_Q3JRC8		4.39136378455e-06	9.37500967433e-05	8.93587329588e-05
+UniRef50_A4WVY8	Ribosomal RNA small subunit methyltransferase G	0.0240767955736	0.00436688197425	-0.0197099135993
+UniRef50_A0KE20	Alcohol dehydrogenase GroES domain protein	0.00202293022897	0.000702330283654	-0.00132059994532
+UniRef50_Q11KE0	1 deoxy D xylulose 5 phosphate synthase	0.00622679773782	0.00117900647749	-0.00504779126033
+UniRef50_H6PBH3	Thioredoxin	0.00144698730955	0.000513594269898	-0.000933393039652
+UniRef50_K0RB57		2.01287110526e-06	1.11410714606e-05	9.12820035534e-06
+UniRef50_N6UWS6		4.35010318814e-06	0.000137295685886	0.000132945582698
+UniRef50_P76234		0.00301443593152	0.000455507334399	-0.00255892859712
+UniRef50_P25696	Bifunctional enolase 2 transcriptional activator	3.37449354904e-06	6.92209598824e-05	6.58464663334e-05
+UniRef50_Q1D5H7	Mutator mutT protein	0.000237911337508	0.00850735990299	0.00826944856548
+UniRef50_S5YFQ1		3.12157187824e-05	2.45235243492e-05	-6.6921944332e-06
+UniRef50_A6M2M5		0.000369282072402	0.00105984744347	0.000690565371068
+UniRef50_UPI0002BA0B17	TetR family transcriptional regulator	0.000149705522759	0.000902517945504	0.000752812422745
+UniRef50_Q2G0B1	HTH type transcriptional regulator MgrA	0.0164022935074	0.000801768914466	-0.0156005245929
+UniRef50_UPI000288E524	OsmC like protein	4.00164027975e-05	3.78553577514e-05	-2.1610450461e-06
+UniRef50_UPI000382593D	hypothetical protein	6.09282285559e-06	1.52354208688e-05	9.14259801321e-06
+UniRef50_X6KWY4		2.43899690743e-06	1.27279396103e-06	-1.1662029464e-06
+UniRef50_O27390	Diaminopimelate decarboxylase	0.00285997928363	0.00147257428961	-0.00138740499402
+UniRef50_UPI0003C19995	PREDICTED	0.000872134924636	0.00024459578201	-0.000627539142626
+UniRef50_UPI00030C3B7B	hypothetical protein	1.09422601574e-06	4.41221369153e-06	3.31798767579e-06
+UniRef50_Q1GIB5	Peptide chain release factor 2	0.0100595482915	0.00234010565783	-0.00771944263367
+UniRef50_F0YJ84		8.6442833483e-06	1.39787530604e-05	5.3344697121e-06
+UniRef50_M1MBM8	ATP dependent DNA helicase, UvrD REP family	0.000407959711828	0.00037658250092	-3.1377210908e-05
+UniRef50_K7SJM7	PAC2 family protein	0.000610178886572	0.00802420346497	0.0074140245784
+UniRef50_M4UY53	Cytochrome c type biogenesis protein CcsA ResC	9.7123324747e-05	0.0022740105291	0.00217688720435
+UniRef50_UPI000197AB5D	isopentenyldiphosphate isomerase	4.93267720338e-05	1.38231088656e-05	-3.55036631682e-05
+UniRef50_Q58131	Acetylornithine aminotransferase	0.00485537942714	0.00021837299274	-0.0046370064344
+UniRef50_A8L3S1	Malate dehydrogenase 	0.000576661933149	0.000638388505671	6.1726572522e-05
+UniRef50_Q4MN04		0.000171527494283	0.000111284204402	-6.0243289881e-05
+UniRef50_D3E3T4	4Fe 4S binding domain containing protein	0.00236446726417	0.000331196304892	-0.00203327095928
+UniRef50_Q9RVU1		0.000190649489319	0.00476045311068	0.00456980362136
+UniRef50_UPI000329107E		7.21440624164e-05	0.000101739584679	2.95955222626e-05
+UniRef50_U5MZL4	Alpha amylase	0.000216560863261	0.00127994028691	0.00106337942365
+UniRef50_F2MMN9	Dihydroorotate dehydrogenase B ), catalytic subunit	1.39501414241e-05	0.000287179940213	0.000273229798789
+UniRef50_Q4L5S4	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0124028405294	0.000755093583571	-0.0116477469458
+UniRef50_Q17Z65	NADH quinone oxidoreductase subunit N	9.516453501e-05	0.00328289703581	0.0031877325008
+UniRef50_Q3J1R9	Operon regulator SmoC	0.00533030401594	0.000450810953732	-0.00487949306221
+UniRef50_Q4KIS2	Adenine deaminase	0.00134927681215	0.00111450938242	-0.00023476742973
+UniRef50_Q9CE42	Peptide methionine sulfoxide reductase MsrA 2	0.00351285164222	0.000592608772976	-0.00292024286924
+UniRef50_A6WVY1	Dihydroorotate dehydrogenase 	1.20612851113e-05	1.5325461556e-05	3.2641764447e-06
+UniRef50_P76083	3 hydroxyadipyl CoA dehydrogenase	0.00309784360577	0.000478713889632	-0.00261912971614
+UniRef50_P70996		0.0426866550656	0.00506606071203	-0.0376205943536
+UniRef50_UPI00036C37A7	hypothetical protein	2.11199299261e-05	5.05095807128e-05	2.93896507867e-05
+UniRef50_C7NA93		0.000538793590574	0.000998081432814	0.00045928784224
+UniRef50_V4QCD9		0.000646526870252	0.00031021711541	-0.000336309754842
+UniRef50_UPI00047938D1	hypothetical protein	3.03315233813e-06	6.05230968877e-06	3.01915735064e-06
+UniRef50_UPI0001C4F313	putative helicase	4.24803505171e-05	9.9185004842e-05	5.67046543249e-05
+UniRef50_A7IGG7	ABC transporter related	0.00779791569064	0.00173905375874	-0.0060588619319
+UniRef50_Q5FP90	Probable malate	4.16972529455e-06	9.93483164922e-06	5.76510635467e-06
+UniRef50_E7BHI6		8.83701660744e-07	7.85808497388e-05	7.76971480781e-05
+UniRef50_E3A2J2		4.16919151502e-05	3.48670506162e-05	-6.824864534e-06
+UniRef50_Q2NYD6	Anthranilate phosphoribosyltransferase	0.000214176878489	0.00261765960356	0.00240348272507
+UniRef50_F2R2E2		4.57840340516e-05	0.000113232821364	6.74487873124e-05
+UniRef50_Q9HV34	Polyamine aminopropyl transferase 2	0.000569849011664	0.000322497521783	-0.000247351489881
+UniRef50_UPI000412C9C3	hypothetical protein	1.62388212176e-05	3.92887577417e-06	-1.23099454434e-05
+UniRef50_UPI000441854A	ribosomal protein L17	2.9683244738e-05	2.47146419333e-05	-4.9686028047e-06
+UniRef50_A6LWA6	Transcriptional regulator, TetR family	0.000207409883985	0.000294335586571	8.6925702586e-05
+UniRef50_G8VIN9		0.00121073743518	0.00614597913596	0.00493524170078
+UniRef50_R9NMN5		2.83677383042e-05	1.20619805475e-05	-1.63057577567e-05
+UniRef50_E8TFY3	Amidohydrolase 3	0.000155042993445	0.000124693893825	-3.034909962e-05
+UniRef50_Q8D5H0	GlpM protein	0.000334058397217	0.000215929365716	-0.000118129031501
+UniRef50_Q9HTQ5		0.000190716528408	0.000682134547142	0.000491418018734
+UniRef50_A1B622	5 Nucleotidase domain protein	0.00640888659583	0.00158584245693	-0.0048230441389
+UniRef50_Q1QJ95	Uroporphyrinogen decarboxylase	6.69044594053e-06	1.42202539897e-05	7.52980804917e-06
+UniRef50_Q9HTQ9		0.000176264881143	0.000781335519178	0.000605070638035
+UniRef50_B0V5K4	Copper resistance protein A	0.000150805228456	0.00075744076626	0.000606635537804
+UniRef50_P45608	Phosphate regulon sensor protein PhoR	0.00227528250855	0.000854057946967	-0.00142122456158
+UniRef50_UPI00046CFE04	hypothetical protein	7.60972741481e-06	0.000139169582542	0.000131559855127
+UniRef50_A6M0G0	Binding protein dependent transport systems inner membrane component	0.000706389033691	0.00155361507679	0.000847226043099
+UniRef50_UPI0003B46DF8	ABC transporter permease	1.59364282712e-05	6.08051972252e-06	-9.85590854868e-06
+UniRef50_R9YPY4	Phage head morphogenesis , SPP1 gp7 family domain protein	0.0139603270343	0.00471300658733	-0.00924732044697
+UniRef50_UPI000380AB63	hypothetical protein	5.26941983996e-05	8.09234629456e-05	2.8229264546e-05
+UniRef50_A3PNV6		0.0148451012947	0.00494378795455	-0.00990131334015
+UniRef50_S1QWB9		1.02865257393e-05	1.71250170744e-05	6.8384913351e-06
+UniRef50_I9JNX9	Porin thermoregulatory protein EnvY	4.09119656305e-05	8.12048913078e-05	4.02929256773e-05
+UniRef50_Q2G0P2	Transcription termination antitermination protein NusG	0.0263663657674	0.0101872215524	-0.016179144215
+UniRef50_M4U471		4.27247693051e-05	3.00532080249e-05	-1.26715612802e-05
+UniRef50_UPI0003B52E8B	IMP cyclohydrolase	3.08576334557e-06	2.38934856731e-05	2.08077223275e-05
+UniRef50_E7BFN4		2.28169365574e-05	0.000130382821062	0.000107565884505
+UniRef50_I6SU84	Transcriptional regulator	0.00734380315265	0.000839763142736	-0.00650404000991
+UniRef50_B9E705		0.00648356407064	0.00392490771333	-0.00255865635731
+UniRef50_K0HLL2	Peptidase, M24 family protein	0.000156025094469	0.00673229242752	0.00657626733305
+UniRef50_Q6A853		0.000119080753577	0.00530947884678	0.0051903980932
+UniRef50_UPI0003D397E3	transposase and inactivated derivatives	0.000408077558847	9.8634351797e-06	-0.000398214123667
+UniRef50_H4F795	Replication protein C	4.00228073909e-05	1.63041745115e-05	-2.37186328794e-05
+UniRef50_A0A023V7M1	ATPase	5.44450945494e-05	0.000140599553994	8.61544594446e-05
+UniRef50_Q9RX33	B cell receptor associated protein related protein	0.000327642012594	0.0230900943312	0.0227624523186
+UniRef50_UPI0003809CA6	hypothetical protein	2.3402440349e-05	5.15660562564e-05	2.81636159074e-05
+UniRef50_U2Z2K4	Transport protein	3.99948549423e-05	5.05348403557e-06	-3.49413709067e-05
+UniRef50_D3NUN2		0.0016449334074	0.000298835689723	-0.00134609771768
+UniRef50_D3NUN3		1.471661312e-06	2.66865624488e-06	1.19699493288e-06
+UniRef50_P39691	Thiol	0.00365153706276	0.00148789561695	-0.00216364144581
+UniRef50_Q67NS9	GTPase Der	0.00743604047995	0.00634249394181	-0.00109354653814
+UniRef50_UPI00037AD157	hypothetical protein	7.5655071882e-05	6.99221551835e-05	-5.7329166985e-06
+UniRef50_K8DSJ2	Membrane bound lytic murein transglycosylase A	0.000317277698396	0.000180757876328	-0.000136519822068
+UniRef50_F0YBW7	Expressed protein 	0.000522108220195	0.000128594438527	-0.000393513781668
+UniRef50_J7QRA8		8.67103188316e-05	0.000111803973882	2.50936550504e-05
+UniRef50_D5AP78	Demethylspheroidene O methyltransferase	0.00020770500424	0.000337667515113	0.000129962510873
+UniRef50_UPI0001470FF7	MULTISPECIES	7.38766856209e-05	9.6134393708e-05	2.22577080871e-05
+UniRef50_UPI0001D30F07	hypothetical protein	7.13673484763e-05	0.000132864797961	6.14974494847e-05
+UniRef50_M1E6A4	1 deoxy D xylulose 5 phosphate synthase	0.000184139506761	0.0022015890492	0.00201744954244
+UniRef50_Q9I526	Cysteine synthase B	0.00069099022376	0.000580029984042	-0.000110960239718
+UniRef50_R6W8A5		0.000529933773748	0.0003347703962	-0.000195163377548
+UniRef50_D2NRM9	Aldehyde	6.79757246772e-05	0.000605690335146	0.000537714610469
+UniRef50_R7A897		0.00558391170876	0.00238390863839	-0.00320000307037
+UniRef50_UPI00046644F9	putrescine spermidine ABC transporter substrate binding protein	8.0372269168e-05	9.01821666322e-05	9.8098974642e-06
+UniRef50_A6TCE8	Co chaperone protein HscB	0.00401154701226	0.000504814880674	-0.00350673213159
+UniRef50_R4ZXB5	Cation transporting ATPase, E1 E2 family	0.000438929265414	6.47151289761e-05	-0.000374214136438
+UniRef50_D5AR83	L malyl CoA beta methylmalyl CoA lyase	0.00064197505878	0.000127432953743	-0.000514542105037
+UniRef50_UPI0003B31758	ABC transporter	5.22741265592e-06	1.28805645933e-05	7.65315193738e-06
+UniRef50_Q16AG3		5.37899681481e-05	4.42596271592e-05	-9.5303409889e-06
+UniRef50_T6HYQ6	Nitrite extrusion protein 2	3.17997983496e-05	0.000208185671918	0.000176385873568
+UniRef50_A5ULE7	Molybdenum cofactor biosynthesis protein, MoaB	0.0025215740989	0.000516588988672	-0.00200498511023
+UniRef50_Q0BSD5	Alanine  tRNA ligase	0.00465398982997	0.00066776266642	-0.00398622716355
+UniRef50_P30140	2 iminoacetate synthase	0.00298106424815	0.00395450283353	0.00097343858538
+UniRef50_Q0TP59	33 kDa chaperonin	0.000644755983331	0.000201352299003	-0.000443403684328
+UniRef50_A6VEM4		0.00140893465845	0.000714475899663	-0.000694458758787
+UniRef50_D5ASM9	Peptide deformylase	0.00539474585891	0.00358180394578	-0.00181294191313
+UniRef50_C3A4E4		1.70733353367e-05	0.00136087930306	0.00134380596772
+UniRef50_V4R261		3.9940756406e-05	0.000661083774165	0.000621143017759
+UniRef50_M1MAA9		0.000458723791042	0.00321992904974	0.0027612052587
+UniRef50_A3LL40		0.000835057454897	0.00153775614067	0.000702698685773
+UniRef50_UPI000288786A	cold shock DNA binding domain containing protein	1.15488475871e-05	1.75845180787e-05	6.0356704916e-06
+UniRef50_UPI0002E3DB0E	gluconokinase	4.89956767137e-06	8.44727118948e-06	3.54770351811e-06
+UniRef50_H0A701		2.60070996402e-05	6.73294989643e-05	4.13223993241e-05
+UniRef50_Q6F9S8	Molybdopterin biosynthesis protein  OR thiamin thiazole moiety synthesis (ThiF)	0.000149994432661	0.00937785229708	0.00922785786442
+UniRef50_U3T3B6	Phospholipase D protein	8.03161678458e-05	0.0104105833421	0.0103302671743
+UniRef50_S5YCI7	Transcriptional regulator, AraC family	0.00470200888382	0.00129604341177	-0.00340596547205
+UniRef50_Q9HXP6		0.000921063138383	0.000571934624678	-0.000349128513705
+UniRef50_S1SXR1		2.12666424717e-05	2.19930995697e-05	7.26457098e-07
+UniRef50_F9YZQ4	Endoglycoceramidase	0.000159974748255	0.00445180887178	0.00429183412353
+UniRef50_UPI0003B3872E	branched chain alpha keto acid dehydrogenase subunit E2	2.95263394253e-06	4.47205310125e-05	4.176789707e-05
+UniRef50_A0A023RTZ1	LysR family transcriptional regulator	0.000145373294809	0.00765189714499	0.00750652385018
+UniRef50_A7X0P1		0.0126994949812	0.00495432766069	-0.00774516732051
+UniRef50_Q8TSH7	Malate dehydrogenase	3.36721762892e-05	2.29198624303e-05	-1.07523138589e-05
+UniRef50_I3USA0	MscS mechanosensitive ion channel	0.000428825071817	0.000462884184163	3.4059112346e-05
+UniRef50_P0AFL2	Putrescine transport system permease protein PotI	0.0048033144817	0.00152779026972	-0.00327552421198
+UniRef50_M4RDZ6	Taurine transporting AtPase	0.00518407122581	0.000725006767648	-0.00445906445816
+UniRef50_UPI0003769FA7	Fis family transcriptional regulator	0.000370982215796	8.40235108226e-05	-0.000286958704973
+UniRef50_UPI00040692FE	hypothetical protein	0.00109592088202	0.00017407043818	-0.00092185044384
+UniRef50_I7GKU7	Macaca fascicularis brain cDNA clone	0.00054724709113	0.000157610867894	-0.000389636223236
+UniRef50_D6CV88		5.46821913738e-05	6.46317546914e-06	-4.82190159047e-05
+UniRef50_UPI000383163D	hypothetical protein	1.28656944095e-05	1.1566140492e-05	-1.2995539175e-06
+UniRef50_K5XT53	Phenol hydroxylase	0.000463705622737	8.50982958896e-05	-0.000378607326847
+UniRef50_UPI00041A7C16	hypothetical protein	0.000208689054711	2.21127656313e-05	-0.00018657628908
+UniRef50_UPI00047AECEE	KaiC 1	6.6801917341e-05	1.57463598178e-05	-5.10555575232e-05
+UniRef50_UPI00046F4CAF	hypothetical protein	0.000128727988822	4.73308083187e-06	-0.00012399490799
+UniRef50_UPI00034D1E75	membrane protein	6.0957428407e-05	6.72765568889e-05	6.3191284819e-06
+UniRef50_D8QF05		7.5261986515e-06	3.10393741772e-05	2.35131755257e-05
+UniRef50_Q890Q5	Adenylate kinase	3.07471464059e-05	5.01868623798e-05	1.94397159739e-05
+UniRef50_M2ATY2	ParB like partition protein	0.000110746234673	1.90927581379e-05	-9.16534765351e-05
+UniRef50_S1DY96		0.000220752040266	0.000688801581344	0.000468049541078
+UniRef50_UPI0001D2F09B	permease	0.000111682245224	6.73035601169e-05	-4.43786851071e-05
+UniRef50_UPI000405BEEA	hypothetical protein	0.000388697556286	0.000114475683802	-0.000274221872484
+UniRef50_K2M4Q0		1.6077165776e-05	3.98030026135e-05	2.37258368375e-05
+UniRef50_Q2FYR2	Aminoacyltransferase FemA	0.011135692331	0.0051071952313	-0.0060284970997
+UniRef50_P77156	Inner membrane ABC transporter permease protein YdcU	0.00323822838589	0.000765446218327	-0.00247278216756
+UniRef50_E6KQ43	Membrane protein	5.70223613131e-05	0.00198423527639	0.00192721291508
+UniRef50_H8Z7W7	TPR repeat containing protein	7.24293702526e-05	0.000148191079659	7.57617094064e-05
+UniRef50_UPI000381814C	hypothetical protein	3.39811820766e-05	0.000155437356269	0.000121456174192
+UniRef50_UPI0003805D01	hypothetical protein, partial	9.00059496839e-05	5.76874723045e-05	-3.23184773794e-05
+UniRef50_R9CBP1	Flagellar hook capping protein	7.18622264131e-06	9.80959760362e-06	2.62337496231e-06
+UniRef50_A4XQY6		0.00251190961573	0.000284871419803	-0.00222703819593
+UniRef50_UPI00037FD9F7	hypothetical protein	6.65464009971e-06	8.46252077595e-05	7.79705676598e-05
+UniRef50_UPI00036C7A2E	hypothetical protein	0.000504360152915	0.000343369018749	-0.000160991134166
+UniRef50_Q9I5G7	Signal peptidase I	0.0017974718109	0.00161638550281	-0.00018108630809
+UniRef50_F8FZW4		0.00055993062886	0.00177190023117	0.00121196960231
+UniRef50_Q6I286	S layer protein, putative	3.63606040056e-06	0.000182294262473	0.000178658202072
+UniRef50_A7Z463	Adenine deaminase	2.49410813405e-05	7.29058589927e-06	-1.76504954412e-05
+UniRef50_D7C3J3		2.47199927154e-05	0.000833340845804	0.000808620853089
+UniRef50_Q3JVB5	Integral membrane protein MviN	0.000642524753402	0.000336923429018	-0.000305601324384
+UniRef50_UPI00036BA72B	hypothetical protein	2.90294906379e-05	2.11551516842e-05	-7.8743389537e-06
+UniRef50_UPI00045EA377	secondary thiamine phosphate synthase	1.40765007896e-05	2.18094184913e-05	7.7329177017e-06
+UniRef50_Q36837	Cytochrome c oxidase subunit 3	5.3619740226e-05	9.27134647813e-06	-4.43483937479e-05
+UniRef50_UPI000470F200	ATP dependent DNA helicase RuvA	1.14379975392e-05	9.52487719255e-06	-1.91312034665e-06
+UniRef50_P33360	Putative osmoprotectant uptake system ATP binding protein YehX	0.00229441744607	0.00186013466824	-0.00043428277783
+UniRef50_N6UWC7		0.000112037220334	0.000111200440193	-8.36780141e-07
+UniRef50_I0LGS3		1.19366816673e-05	1.7233769223e-05	5.2970875557e-06
+UniRef50_U5MX92	Sensory transduction protein LytT	0.000160177930206	0.00151373553468	0.00135355760447
+UniRef50_L1K958		0.0116649515268	0.00196877803463	-0.00969617349217
+UniRef50_UPI00047330EC	hypothetical protein	7.84308987749e-05	2.60188507818e-05	-5.24120479931e-05
+UniRef50_D3E3Z6	Energy converting hydrogenase A subunit F EhaF	0.00245728272015	0.00121739049281	-0.00123989222734
+UniRef50_UPI0004658BC5	hypothetical protein	8.20177982917e-05	2.15381476889e-05	-6.04796506028e-05
+UniRef50_B6ZYE2	Galactosamine 6 phosphate isomerase	0.00283557550311	0.0053693946399	0.00253381913679
+UniRef50_UPI00036A070A	hypothetical protein	6.30303883095e-06	2.25926211624e-05	1.62895823315e-05
+UniRef50_UPI00046F612F	hypothetical protein	2.70783179717e-05	8.58364276205e-06	-1.84946752097e-05
+UniRef50_R9XSB4	UvrABC system protein A	0.0103670523245	0.0106993021497	0.0003322498252
+UniRef50_D5UV60	Acyl CoA dehydrogenase domain protein	0.000248690634903	0.000147904860699	-0.000100785774204
+UniRef50_B8ZJM7	Phosphoribosylaminoimidazole succinocarboxamide synthase	0.0154259178572	0.0116201430628	-0.0038057747944
+UniRef50_R5W2L7		4.91558913517e-05	0.00106037211725	0.0010112162259
+UniRef50_A5UP24	Predicted type II restriction enzyme, methylase subunit	0.00571239918668	0.000622645576659	-0.00508975361002
+UniRef50_A6LY51	Type IV pilus assembly PilZ	0.000178621130367	0.000581777986442	0.000403156856075
+UniRef50_B5ZUG3	NAD NADP dependent betaine aldehyde dehydrogenase	4.01633545861e-05	5.40940287083e-06	-3.47539517153e-05
+UniRef50_Q7NYS3		0.000800239257418	8.77596660985e-05	-0.00071247959132
+UniRef50_P18777	Anaerobic dimethyl sulfoxide reductase chain C	0.00169577682731	0.00127704546544	-0.00041873136187
+UniRef50_A0Q197	DNA topoisomerase IV subunit B	0.000447719235006	0.00144705415837	0.000999334923364
+UniRef50_UPI00036632E6	hypothetical protein	5.6804085272e-05	0.000270436554763	0.000213632469491
+UniRef50_P30335	Nitrogen regulatory protein	2.02137028157e-05	3.01835435662e-05	9.9698407505e-06
+UniRef50_Q1KVX6	Light independent protochlorophyllide reductase subunit N	6.39004752321e-05	2.2064792602e-05	-4.18356826301e-05
+UniRef50_UPI00046F1C42	nitrogen regulatory protein P II 1	7.94134092391e-05	2.7066201996e-05	-5.23472072431e-05
+UniRef50_D9WR73	Anti sigma B factor RsbT	1.91413551744e-05	0.002289249135	0.00227010777983
+UniRef50_E6PC05		6.80027503223e-06	6.67503231275e-06	-1.2524271948e-07
+UniRef50_UPI0003FFD344	membrane protein	7.98681944041e-06	1.16533113742e-05	3.66649193379e-06
+UniRef50_UPI00047C9EAC	ABC transporter	3.72548403793e-06	2.62710856702e-05	2.25456016323e-05
+UniRef50_Q9RW70	Glucose fructose oxidoreductase	0.000210678124336	0.0446305814316	0.0444199033073
+UniRef50_O27472		0.00359294404307	0.000834580791197	-0.00275836325187
+UniRef50_R5YRU3	dTDP 4 dehydrorhamnose reductase	0.00130684485638	0.000459020769276	-0.000847824087104
+UniRef50_A6LVM3	Drug resistance transporter, EmrB QacA subfamily	0.000501527410384	0.000860646422696	0.000359119012312
+UniRef50_UPI00020D92F9	hypothetical protein	0.0001927664463	0.000275203086573	8.2436640273e-05
+UniRef50_K4NLN5		9.29005714967e-05	0.00507050331034	0.00497760273884
+UniRef50_H3YKG2		0.000182932151423	0.00025992651504	7.6994363617e-05
+UniRef50_O27911	2 phosphoglycerate kinase	0.00319545789272	0.00193555370491	-0.00125990418781
+UniRef50_H8E733	NAD synthase 	6.81028030856e-05	0.000322644548697	0.000254541745611
+UniRef50_Q04FF6	Arginine  tRNA ligase	0.00666142559359	0.00369513435055	-0.00296629124304
+UniRef50_UPI000374A709	hypothetical protein	4.56451660763e-06	0.000101217520766	9.66530041584e-05
+UniRef50_UPI000163236E	hypothetical protein	7.18027228022e-05	9.5999092877e-05	2.41963700748e-05
+UniRef50_Q5HLR8		0.0190217967023	0.00460042344378	-0.0144213732585
+UniRef50_UPI0003B7A728	sulfate ABC transporter permease, partial	4.14091149609e-05	1.88569275728e-05	-2.25521873881e-05
+UniRef50_Q9JY28		8.61184765483e-05	0.00336588824012	0.00327976976357
+UniRef50_I6L8N6	Capsular polysaccharide biosynthesis protein Cps4E	9.63001478345e-06	0.000856549777224	0.000846919762441
+UniRef50_Q5E480	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.55419664366e-05	6.38432321557e-06	-1.9157643221e-05
+UniRef50_U5PDI4	Glycosyltransferase	0.00112661195705	0.000386191837597	-0.000740420119453
+UniRef50_UPI00035ED085	hypothetical protein	2.33533006989e-05	9.63858034933e-06	-1.37147203496e-05
+UniRef50_R7E7K8		2.75054464409e-05	1.620848086e-05	-1.12969655809e-05
+UniRef50_E8SGJ9	Substrate specific component ThiW of predicted thiazole ECF transporter	0.019026468509	0.00755329890095	-0.011473169608
+UniRef50_B2I1P2	Ankyrin repeat protein	6.84749714784e-06	0.00604147151498	0.00603462401783
+UniRef50_Q3IW29		0.0174840726416	0.00039551344445	-0.0170885591971
+UniRef50_Q3IW25		0.00369401701208	0.00056755629592	-0.00312646071616
+UniRef50_A7MPG3		0.00273119930883	0.0025353570905	-0.00019584221833
+UniRef50_Q3IW20		0.00535649612679	0.00227351283164	-0.00308298329515
+UniRef50_P57162	Serine acetyltransferase	0.00308328241511	0.000999697682294	-0.00208358473282
+UniRef50_UPI00016A72E3	oxidoreductase, 2 nitropropane dioxygenase family protein	8.97127414246e-07	1.72373567894e-05	1.63402293752e-05
+UniRef50_UPI0004726F0A	hypothetical protein	1.33510692687e-05	1.20225056935e-05	-1.3285635752e-06
+UniRef50_Q8XWD0	Tyrosine recombinase XerD	0.000126815001857	0.0004565620435	0.000329747041643
+UniRef50_D6M3V3	Peptidase C14, caspase catalytic subunit p20	1.26868311671e-05	0.000105534669122	9.28478379549e-05
+UniRef50_Q9HU63		0.000240670000018	0.000184709877544	-5.5960122474e-05
+UniRef50_A8YWB0	50S ribosomal protein L33 1	0.00156743463762	0.00140627002474	-0.00016116461288
+UniRef50_Q5HS39	Replication associated protein RepA	0.025417336461	0.00818699879198	-0.017230337669
+UniRef50_UPI0001C2FA1D	4E10_S0_1TJLC_004_N	0.000133266175114	0.000166550217731	3.3284042617e-05
+UniRef50_P76573		0.00769096647034	0.000916440040902	-0.00677452642944
+UniRef50_UPI00037E947E	hypothetical protein	5.77321491391e-05	2.00040319149e-05	-3.77281172242e-05
+UniRef50_UPI00035F6D48	hypothetical protein	0.000820284232333	0.000209359529456	-0.000610924702877
+UniRef50_S3X0W6		6.51088027977e-06	3.04763390403e-05	2.39654587605e-05
+UniRef50_Q4KG00		0.000923329572432	0.000339772494473	-0.000583557077959
+UniRef50_B5GRY7		4.25500514704e-05	2.88811285539e-05	-1.36689229165e-05
+UniRef50_R4GKT3		3.52494659532e-05	1.8059539033e-05	-1.71899269202e-05
+UniRef50_A8TTI0		1.46332217464e-06	3.36890958609e-06	1.90558741145e-06
+UniRef50_F7X525	ABC transporter, periplasmic solute binding protein	0.000638843415655	0.000349487225087	-0.000289356190568
+UniRef50_I3TJX2		1.60309072009e-05	3.78424117522e-05	2.18115045513e-05
+UniRef50_P75748		0.00208196697646	0.000773199169791	-0.00130876780667
+UniRef50_A5UKK3		0.00215978115111	0.000402295603158	-0.00175748554795
+UniRef50_Q5HFR9	Pyrroline 5 carboxylate reductase	0.015465942895	0.00785982338574	-0.00760611950926
+UniRef50_UPI0002880C2A	histidine kinase	7.46191608947e-05	9.99737242183e-05	2.53545633236e-05
+UniRef50_UPI0003822CF6	hypothetical protein	0.000938840241999	0.000212984067508	-0.000725856174491
+UniRef50_A5UKK6		0.00198986127852	0.000891139026363	-0.00109872225216
+UniRef50_U3T1P2	Sulfate permease	0.000224843203383	0.00827015472162	0.00804531151824
+UniRef50_UPI00005C81F5	hypothetical protein RSP_4057	0.00357165250681	0.00188687714513	-0.00168477536168
+UniRef50_A9M1Y8	UPF0761 membrane protein NMCC_0461	0.000335172110003	0.00266714919876	0.00233197708876
+UniRef50_Q5HRH1		0.00267921557103	0.000684131363387	-0.00199508420764
+UniRef50_Q1JQN1	Cell division inhibitor SulA	0.00405955035841	0.000360875810829	-0.00369867454758
+UniRef50_D7CUB2	RNA binding S1 domain protein	0.000283797246844	0.0428681815905	0.0425843843437
+UniRef50_I2F4T7		2.3913519524e-05	4.06600351579e-05	1.67465156339e-05
+UniRef50_UPI0003806E6C	hypothetical protein	0.00194286607366	0.0015121642335	-0.00043070184016
+UniRef50_I0ZAW9		2.19256141454e-05	3.43059097292e-05	1.23802955838e-05
+UniRef50_T1Y9B2	Phosphotransferase enzyme family protein	0.0198823509712	0.00339603757511	-0.0164863133961
+UniRef50_T2HS98		9.32595855861e-05	5.81690109812e-05	-3.50905746049e-05
+UniRef50_E1I6F8		0.000243016731023	0.000379421891038	0.000136405160015
+UniRef50_UPI00031BE1DB	hypothetical protein	5.36152916367e-05	4.79238412482e-05	-5.6914503885e-06
+UniRef50_Q1QAV9		0.000184740288181	0.00409903442619	0.00391429413801
+UniRef50_A3CLN3	GTP binding protein TypA BipA, putative	0.00618062368975	0.00593646694468	-0.00024415674507
+UniRef50_Q92GC1	3 oxoacyl [acyl carrier protein] synthase 3	7.80367086837e-05	9.80186907094e-06	-6.82348396128e-05
+UniRef50_O27543	3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00451635338729	0.000538634897921	-0.00397771848937
+UniRef50_UPI000428CAD9	hypothetical protein	0.000266067466551	0.000108825318996	-0.000157242147555
+UniRef50_P06709	Bifunctional ligase repressor BirA	0.00319018773032	0.000964974485437	-0.00222521324488
+UniRef50_Q1R618		0.00340947933089	3.51018360083e-05	-0.00337437749488
+UniRef50_UPI000373C739	hypothetical protein	1.15681812832e-05	2.26238386779e-05	1.10556573947e-05
+UniRef50_Q8X534	Enterobactin exporter EntS	0.00282061523415	0.000143823070714	-0.00267679216344
+UniRef50_C2XMN3		1.38681549327e-05	0.000929709101565	0.000915840946632
+UniRef50_B1LTL1	3 methyl 2 oxobutanoate hydroxymethyltransferase	5.56505691476e-05	2.30578093285e-05	-3.25927598191e-05
+UniRef50_A0A021WYQ6	Plasmid partitioning protein RepA	0.000264076099192	0.000103697631606	-0.000160378467586
+UniRef50_Q1R614		0.00134827948699	0.00295479459378	0.00160651510679
+UniRef50_A5UEK8	Chromosome partition protein MukB	0.000400246125301	7.95204385348e-05	-0.000320725686766
+UniRef50_UPI0002375359	EmrB QacA family drug resistance transporter	9.80511757459e-06	1.42533922805e-05	4.44827470591e-06
+UniRef50_UPI000472C1EF	amino acid ABC transporter ATPase	9.11357425806e-06	0.000266958198497	0.000257844624239
+UniRef50_A3PMP8	UPF0178 protein Rsph17029_2512	0.00580864190109	0.000398896083535	-0.00540974581755
+UniRef50_Q2W200	Hypothetical 217 kDa protein Y4HQ	0.000133778463822	1.26082917637e-05	-0.000121170172058
+UniRef50_UPI00006CFE7F	glutaredoxin related protein	1.13776612886e-05	5.91477225901e-06	-5.46288902959e-06
+UniRef50_UPI0002ED7898	hypothetical protein	9.36504408604e-05	3.66239648949e-05	-5.70264759655e-05
+UniRef50_E1Z4K9		1.13565887032e-06	2.58451531208e-06	1.44885644176e-06
+UniRef50_R4RE02	Amino acid permease YtnA	0.000107443829842	0.00724343145687	0.00713598762703
+UniRef50_A5FSB7	Ribosomal RNA small subunit methyltransferase H	5.65049875971e-06	9.59984942759e-06	3.94935066788e-06
+UniRef50_P44726	UPF0701 protein HI_0467	0.00138742685556	0.00105412928032	-0.00033329757524
+UniRef50_B0V531	Bifunctional protein	0.000361058951565	0.00747390057552	0.00711284162396
+UniRef50_Q9DC70	NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	4.06128049003e-05	8.50999937422e-05	4.44871888419e-05
+UniRef50_T3GII0	Zinc binding dehydrogenase family protein	0.000725208802479	0.000687511771931	-3.7697030548e-05
+UniRef50_B2JHN6	Integral membrane sensor signal transduction histidine kinase	0.000241919844332	0.000158346758826	-8.3573085506e-05
+UniRef50_UPI00037A6516	hypothetical protein	5.78326045817e-05	1.73754954781e-05	-4.04571091036e-05
+UniRef50_B9KX95		0.00145761087894	0.0011034274802	-0.00035418339874
+UniRef50_B2TIX9	FliB domain protein	0.000407711998086	0.000482394886397	7.4682888311e-05
+UniRef50_I0C729		0.0189407042374	0.00608159226964	-0.0128591119678
+UniRef50_K1ZPS1		0.000230547562139	0.00087147259575	0.000640925033611
+UniRef50_UPI0004792537	hypothetical protein	1.83307769362e-05	1.21189243179e-05	-6.2118526183e-06
+UniRef50_UPI00047030B9	hypothetical protein	0.000560381874278	7.08899220657e-05	-0.000489491952212
+UniRef50_Q2FG85	Holliday junction ATP dependent DNA helicase RuvA	0.0236249924709	0.00323044432134	-0.0203945481496
+UniRef50_Q5M0X3	Bifunctional protein PyrR	6.50069945208e-05	0.0103211051259	0.0102560981314
+UniRef50_UPI000409D13D	alpha beta hydrolase	6.41361882608e-05	1.20837045582e-05	-5.20524837026e-05
+UniRef50_A1YZ52	PdmP3	0.000151878650913	0.000169199709511	1.7321058598e-05
+UniRef50_A5V451		7.80952571682e-06	4.9162649454e-06	-2.89326077142e-06
+UniRef50_UPI00037F3B9E	transcriptional regulator	1.17585692332e-05	1.43405700731e-05	2.5820008399e-06
+UniRef50_UPI00028A17CA	serine threonine protein kinase like protein	6.89009589622e-05	1.92807193654e-05	-4.96202395968e-05
+UniRef50_UPI000360B53A	hypothetical protein, partial	2.58916829103e-05	9.18807787131e-05	6.59890958028e-05
+UniRef50_C5N461	MAP domain protein	0.00869550707414	0.000999848244378	-0.00769565882976
+UniRef50_R9T5B9		2.52936081332e-06	4.63955663484e-05	4.38662055351e-05
+UniRef50_UPI0004765C33	translation initiation factor IF 3	0.000264398967397	0.000363345303131	9.8946335734e-05
+UniRef50_C1DAI5	Glucose 6 phosphate isomerase	0.000310064867964	0.00330607927114	0.00299601440318
+UniRef50_E3F1U6	Integrase	0.00373196662839	0.000901286543999	-0.00283068008439
+UniRef50_UPI00036EA793	hypothetical protein	0.000647128617963	0.000352958287488	-0.000294170330475
+UniRef50_UPI0004749630	phosphate starvation inducible protein PhoH, partial	9.40954921415e-05	6.43000888292e-05	-2.97954033123e-05
+UniRef50_A6M2K0	Cell wall surface repeat protein	0.000421184097339	0.00186046617006	0.00143928207272
+UniRef50_Q6FFQ0	Alpha ketoglutaric semialdehyde dehydrogenase	0.000948194373057	0.0288863009899	0.0279381066168
+UniRef50_I1AWS6	Replication initiation protein RepC	0.000698886232709	0.000139103140501	-0.000559783092208
+UniRef50_P46384	Protein PilG	0.00563938135712	0.000519618836113	-0.00511976252101
+UniRef50_Q9I6C8	Probable coniferyl aldehyde dehydrogenase	0.000612537579742	0.000124781706418	-0.000487755873324
+UniRef50_A7BCW8	Cell wall binding repeat protein	1.4038904646e-05	0.00115034896945	0.0011363100648
+UniRef50_P09996		0.00399855746522	0.000771860473809	-0.00322669699141
+UniRef50_A6UCT4	Glycosyl transferase family 8	0.00525517494143	0.000653405823801	-0.00460176911763
+UniRef50_P0ADI5	Isochorismatase	0.00243856681338	0.00445811552881	0.00201954871543
+UniRef50_A3PIG7		0.000935150784869	0.00148761318134	0.000552462396471
+UniRef50_S5VV73		5.12668948094e-05	0.00112647892034	0.00107521202553
+UniRef50_B5ZE82	Two component transcriptional regulator, winged helix family	0.00257188327451	0.00108089486213	-0.00149098841238
+UniRef50_S9TC28		8.67225771908e-05	5.0204108267e-06	-8.17021663641e-05
+UniRef50_E3EDG6	Ser Thr phosphatase family protein	1.90295918558e-06	1.1626455905e-05	9.72349671942e-06
+UniRef50_UPI0003AE0E04		2.9608183363e-05	7.63859535642e-05	4.67777702012e-05
+UniRef50_F0RM84	Long chain fatty acid  CoA ligase	0.000154071465819	0.0332449894845	0.0330909180187
+UniRef50_Q8X8F2	Porin OmpL	0.00144171989344	0.000872857256737	-0.000568862636703
+UniRef50_UPI0003A831EB	hypothetical protein	3.49724034642e-05	8.79131000071e-06	-2.61810934635e-05
+UniRef50_Q9HJ59	Nucleoside diphosphate kinase	7.36954840226e-06	5.90102437569e-05	5.16406953546e-05
+UniRef50_I0C0Q8	5 nucleotidase	0.0151697109078	0.00465806006527	-0.0105116508425
+UniRef50_A6M0I0	Ferredoxin hydrogenase	0.000778025972439	0.00093722331786	0.000159197345421
+UniRef50_Q9RTC8		7.25378449133e-05	0.0839262786282	0.0838537407833
+UniRef50_P77265	Multidrug resistance like ATP binding protein MdlA	0.00385648946198	0.00164049592669	-0.00221599353529
+UniRef50_A6M2M2	NLP P60 protein	0.000114970351935	0.000761169794935	0.000646199443
+UniRef50_H6NSQ0	2 deoxy D gluconate 3 dehydrogenase	0.000975362759137	0.00072609895258	-0.000249263806557
+UniRef50_F9PRQ2		6.09555212911e-05	0.000136603736556	7.56482152649e-05
+UniRef50_Q9RTC4		0.00198676836238	0.0564260709447	0.0544393025823
+UniRef50_A5D144	UDP N acetylmuramate  L alanine ligase	8.18801145845e-06	1.29532227798e-05	4.76521132135e-06
+UniRef50_A0A035VZJ1		0.000287400821238	8.2028703044e-05	-0.000205372118194
+UniRef50_Q9I2J9	Phenazine biosynthesis protein PhzA 2	0.000451178472729	0.0200923237782	0.0196411453055
+UniRef50_A0A010YSV0	Bifunctional uridylyltransferase uridylyl removing enzyme	0.000240474674121	0.00368797344723	0.00344749877311
+UniRef50_O31727	UPF0001 protein YlmE	0.0120364583646	0.00963136180418	-0.00240509656042
+UniRef50_A6M141		0.000216297815573	0.00140173417325	0.00118543635768
+UniRef50_A6M140		0.000512424419253	0.00184295217498	0.00133052775573
+UniRef50_A0A031SXK0	Ferrienterobactin receptor	0.00339026891811	0.00069013376552	-0.00270013515259
+UniRef50_A6M142		0.000279566792415	0.00133094626545	0.00105137947303
+UniRef50_H4TYE9	Citrate synthase	0.00090537615536	0.000468595360248	-0.000436780795112
+UniRef50_R1BPA7		1.05518659521e-05	2.31742579915e-05	1.26223920394e-05
+UniRef50_UPI000478D81C	hypothetical protein	3.58717549693e-06	1.19427292699e-05	8.35555377297e-06
+UniRef50_Q9AS52		0.000384512543987	0.00090629029659	0.000521777752603
+UniRef50_UPI00046DCEE5		4.07230498645e-06	1.11445442256e-05	7.07223923915e-06
+UniRef50_UPI0003B553F2	hypothetical protein, partial	1.70861488608e-05	0.000175888915271	0.00015880276641
+UniRef50_UPI0003484775	hypothetical protein	4.79181047947e-05	2.47040483974e-05	-2.32140563973e-05
+UniRef50_K7U8Q8		1.6559285985e-05	1.99403205312e-05	3.3810345462e-06
+UniRef50_Q4FU55	NADH quinone oxidoreductase subunit K	1.71764143561e-05	7.86213304476e-05	6.14449160915e-05
+UniRef50_D4GU70	Low salt glycan biosynthesis nucleotidyltransferase Agl11	6.85587217958e-05	1.62490157888e-05	-5.2309706007e-05
+UniRef50_H3UC52	Nitrate reductase delta subunit	2.23708306862e-05	0.000119447905534	9.70770748478e-05
+UniRef50_Y1QWF2		9.62969332507e-05	7.68054972259e-05	-1.94914360248e-05
+UniRef50_UPI00042B2256	ATP dependent clp protease ATP binding subunit clpx isoform 1	1.06998716627e-05	2.2305241448e-05	1.16053697853e-05
+UniRef50_W1MRY7	Type VI secretion protein ImpA	0.00048634807273	0.000429932305819	-5.6415766911e-05
+UniRef50_UPI000255EFAA	hypothetical protein	8.53179218313e-05	4.81681159278e-05	-3.71498059035e-05
+UniRef50_M2K3R6		0.00138104630068	0.00230116913138	0.0009201228307
+UniRef50_D1DKC6		0.000170689752864	0.0043756635958	0.00420497384294
+UniRef50_Q27331	V type proton ATPase catalytic subunit A isoform 2	0.00397891523898	0.0011900794122	-0.00278883582678
+UniRef50_N0CAR1	Integrase core subunit	0.000195802779351	3.49293255914e-05	-0.00016087345376
+UniRef50_A6LWI8	Aluminium resistance family protein	9.01638508349e-05	0.00123844741915	0.00114828356832
+UniRef50_A4TTX4		1.71214161499e-06	4.73580713071e-06	3.02366551572e-06
+UniRef50_Q2SGE5	Predicted Zn dependent Hydrolase of the beta lactamase fold	0.00012986903286	0.00795272053143	0.00782285149857
+UniRef50_Q32IF4	IS911 ORF2	3.73531537098e-05	6.44599225047e-05	2.71067687949e-05
+UniRef50_A6L5D3		9.40310433924e-06	0.00587141578068	0.00586201267634
+UniRef50_Q8CS32		0.00507059330353	0.00215877801089	-0.00291181529264
+UniRef50_A8LE49		2.73543194722e-05	2.23738428689e-05	-4.9804766033e-06
+UniRef50_Q8CS31		0.00261137035218	0.0016970716737	-0.00091429867848
+UniRef50_A5WG67		0.000143138173142	0.00587637987598	0.00573324170284
+UniRef50_S4MJP1	Putative Bifunctional P 450 NADPH P450 reductase	1.17277293112e-05	0.000308073085034	0.000296345355723
+UniRef50_UPI0001D2F0E2	putrescine spermidine ABC transporter permease	0.000102351966369	0.000368811149972	0.000266459183603
+UniRef50_UPI00037EBD36	hypothetical protein	1.14697349568e-06	7.10922271444e-07	-4.36051224236e-07
+UniRef50_UPI000379E27A	hypothetical protein	0.000167024448298	2.97192656605e-05	-0.000137305182638
+UniRef50_F3QCE5		7.10073205765e-05	5.590441502e-05	-1.51029055565e-05
+UniRef50_A4WXK9		0.000505301835925	9.53146977416e-05	-0.000409987138183
+UniRef50_Q53229	UPF0093 membrane protein RHOS4_28450	0.0186366404271	0.00478458192289	-0.0138520585042
+UniRef50_UPI0004799C0B	hemolysin type calcium binding protein	2.78164163521e-05	1.05819652643e-05	-1.72344510878e-05
+UniRef50_K0KQ95	Transfer complex protein TraG	0.00779954557169	0.000549313771403	-0.00725023180029
+UniRef50_UPI0001850DBE	tRNA delta isopentenylpyrophosphate transferase	8.20218257539e-05	3.27036607943e-05	-4.93181649596e-05
+UniRef50_UPI0003B64D78	oxidoreductase	5.58982324617e-05	4.51071162312e-05	-1.07911162305e-05
+UniRef50_K7S8U6	CvpA family protein	0.000231603217983	0.00451711980247	0.00428551658449
+UniRef50_UPI000288B21D	MarR family transcriptional regulator	5.99630715491e-06	4.97804406137e-05	4.37841334588e-05
+UniRef50_W5X7H9	Xylose isomerase domain containing protein	0.000350137500119	7.17416091415e-05	-0.000278395890978
+UniRef50_P32125	Molybdopterin guanine dinucleotide biosynthesis adapter protein	0.00419774307651	0.000337504805945	-0.00386023827056
+UniRef50_E2ZPK4		0.000683345546031	0.000312502803434	-0.000370842742597
+UniRef50_U3T6E5	Penicillin acylase	0.00021239765088	0.010276487344	0.0100640896931
+UniRef50_E9BW21		2.06676953281e-05	4.87490227695e-05	2.80813274414e-05
+UniRef50_W1F8X3	Predicted chaperone lipoprotein YacC, potentially involved in protein secretion	4.43389776651e-05	0.000170138653494	0.000125799675829
+UniRef50_Q9RZB9	O antigen transporter RfbX, putative	0.000235630189093	0.0670898059928	0.0668541758037
+UniRef50_I8QM64		4.03374544498e-05	0.000457022685378	0.000416685230928
+UniRef50_P58965	DNA polymerase IV	0.000135949335724	0.000894437178693	0.000758487842969
+UniRef50_Q1QE36	Pseudouridine synthase	0.000369058012367	0.00569937233198	0.00533031431961
+UniRef50_UPI0003B59F61	malonyl CoA ACP transacylase	9.20650070116e-06	1.11156775256e-05	1.90917682444e-06
+UniRef50_Q6A917	Aspartate carbamoyltransferase	0.00019226790604	0.00613076482023	0.00593849691419
+UniRef50_Q4L6U5	Probable nicotinate nucleotide adenylyltransferase	0.0241363756856	0.00219308994628	-0.0219432857393
+UniRef50_P27745	Acetoin	9.42412138883e-06	0.00317621801477	0.00316679389338
+UniRef50_UPI000470A616	diaminopimelate epimerase	5.11128083543e-06	1.11699317286e-05	6.05865089317e-06
+UniRef50_UPI00046FCCA9	exodeoxyribonuclease III, partial	6.54042001776e-05	6.65926608979e-05	1.1884607203e-06
+UniRef50_A0A014CIJ3	CDP alcohol phosphatidyltransferase family protein	0.000615138654713	0.00312333695628	0.00250819830157
+UniRef50_Q3J0W1		0.00957202734504	0.000657860518606	-0.00891416682643
+UniRef50_UPI00035D50AD	hypothetical protein	0.000100264388925	6.4657198027e-05	-3.5607190898e-05
+UniRef50_A6LU07	Ig domain protein, group 2 domain protein	0.000290474798357	0.00092785968256	0.000637384884203
+UniRef50_Q1QKV0	30S ribosomal protein S6	0.00178487366724	0.0164761114242	0.014691237757
+UniRef50_UPI00037AC352	hypothetical protein	0.000407117419931	2.75586272809e-05	-0.00037955879265
+UniRef50_UPI000023D2B8	hypothetical protein FG07361.1	1.27453716225e-06	5.89122164952e-06	4.61668448727e-06
+UniRef50_Q9I1M1	2 oxoisovalerate dehydrogenase subunit beta	0.000566624753669	0.00094680247688	0.000380177723211
+UniRef50_A3M3E9	Urease accessory protein UreD	0.000200790419604	0.00748360181685	0.00728281139725
+UniRef50_E6W7Q1	Spore coat U domain protein	0.00103528740712	0.000393755606923	-0.000641531800197
+UniRef50_UPI0003004A80	hypothetical protein	9.22588801802e-05	0.000124662568542	3.24036883618e-05
+UniRef50_Q57843	2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase	0.00215657122054	0.000244737600989	-0.00191183361955
+UniRef50_F6T9R8		3.45352564678e-05	0.000157083353828	0.00012254809736
+UniRef50_A1B620		2.74361413156e-05	4.95133741054e-05	2.20772327898e-05
+UniRef50_UPI0003B333E4	hypothetical protein	1.25370823432e-05	2.00856217367e-05	7.5485393935e-06
+UniRef50_UPI000262ABB1	hypothetical protein	2.44067715683e-05	0.000111352251342	8.69454797737e-05
+UniRef50_B1XSD3	ATP synthase gamma chain	0.000415671670561	0.00697590221049	0.00656023053993
+UniRef50_UPI00030C054C	hypothetical protein	4.51990743494e-06	4.55800135455e-06	3.809391961e-08
+UniRef50_Q89M20	Blr4373 protein	0.000267107240035	0.000119159396853	-0.000147947843182
+UniRef50_UPI0003A26AF5	TetR family transcriptional regulator	8.69457795147e-05	1.46755927472e-05	-7.22701867675e-05
+UniRef50_Q16B12		0.00023679412853	3.15506652737e-05	-0.000205243463256
+UniRef50_A5GFZ6	Adenylyltransferase and sulfurtransferase MOCS3	3.71578805739e-06	7.0054469831e-06	3.28965892571e-06
+UniRef50_Q2NQZ7	Glutamate racemase	0.00232051230025	0.00165808516631	-0.00066242713394
+UniRef50_D5HEW0	Carbohydrate ABC transporter membrane protein 1, CUT1 family 	0.000231586496233	0.000757339894904	0.000525753398671
+UniRef50_Q8CPV5	NADH dehydrogenase like protein SE_0635	0.009543192535	0.00378481599275	-0.00575837654225
+UniRef50_UPI0004214BAF	phospho 2 dehydro 3 deoxyheptonate aldolase	1.34096920764e-05	5.47277991479e-06	-7.93691216161e-06
+UniRef50_P56190	Carbon starvation protein A homolog	6.87588322145e-05	0.00250647568551	0.0024377168533
+UniRef50_Q8G564	Cystathionine beta synthase	1.62652633298e-05	7.40565733512e-06	-8.85960599468e-06
+UniRef50_F9JRR2	Cupin domain protein	0.00016141884725	0.000132747334655	-2.8671512595e-05
+UniRef50_V5VHC2		0.000351170859825	0.00683394620625	0.00648277534643
+UniRef50_K5X3B2		5.96013846323e-06	1.02732519243e-05	4.31311346107e-06
+UniRef50_P09323	PTS system N acetylglucosamine specific EIICBA component	0.00217963361092	0.000206924071316	-0.0019727095396
+UniRef50_Q3IYY7	Diguanylate cyclase phosphodiesterase	0.00180369563764	0.000750125073367	-0.00105357056427
+UniRef50_J7LDC8		1.11320365348e-05	1.87883491866e-05	7.6563126518e-06
+UniRef50_UPI00037F6FB0	hypothetical protein	3.4182197352e-05	2.47281398794e-05	-9.4540574726e-06
+UniRef50_A3PG69	BLUF domain protein	0.00292281593319	0.000402397633834	-0.00252041829936
+UniRef50_Q3ST27		0.000114233427619	3.8692361338e-05	-7.5541066281e-05
+UniRef50_UPI00036B67AF	hypothetical protein	6.01340204957e-06	3.6811562422e-05	3.07981603724e-05
+UniRef50_UPI0003C19F7E	PREDICTED	8.31785524532e-05	1.03988898391e-05	-7.27796626141e-05
+UniRef50_P94428	Succinate semialdehyde dehydrogenase [NADP]	2.01603608067e-05	1.80714660656e-05	-2.0888947411e-06
+UniRef50_M3YVF8		0.000104937647918	6.45995111217e-05	-4.03381367963e-05
+UniRef50_F5M325	FkbH like protein	0.0031036684353	0.000644358554147	-0.00245930988115
+UniRef50_R7PQ72	GMP synthase [glutamine hydrolyzing]	0.000125932708907	0.000151245658361	2.5312949454e-05
+UniRef50_A3M428		0.000797906460359	0.00680691250646	0.0060090060461
+UniRef50_X6MXZ9		2.08751446181e-05	2.91195210387e-05	8.2443764206e-06
+UniRef50_D6SIU1	Primosomal protein DnaI	0.0128068421652	0.00217052159296	-0.0106363205722
+UniRef50_M7D0G7	Type II restriction endonuclease	0.00487205552345	0.000741991069584	-0.00413006445387
+UniRef50_A6M2D9	Helix turn helix domain containing protein, AraC type	0.000347872127907	0.000205556871361	-0.000142315256546
+UniRef50_D4HBM5	Glycerate kinase	0.000405539303652	0.00591814088249	0.00551260157884
+UniRef50_F3U2F5	Acetamidase Formamidase	0.000548242008848	0.000520667526457	-2.7574482391e-05
+UniRef50_A3DL27	Ornithine carbamoyltransferase	4.09662916435e-06	5.22971725381e-05	4.82005433737e-05
+UniRef50_Q895G1	Cytidylate kinase	0.000515295005982	0.00221094521757	0.00169565021159
+UniRef50_Q9ZLT4	CAG pathogenicity island protein 23	0.000336897781558	0.00271601145037	0.00237911366881
+UniRef50_H6RWI5	Metalloendopeptidase like membrane protein 	0.000415591239195	1.233713089e-05	-0.000403254108305
+UniRef50_D3I9D0	Pyruvate formate lyase 1 activating enzyme	0.000389921967949	0.00110622807017	0.000716306102221
+UniRef50_L8BL77	CFA I fimbrial subunit C usher protein	0.00247581118278	0.000647217936617	-0.00182859324616
+UniRef50_O22567-2	Isoform 2 of 1 deoxy D xylulose 5 phosphate synthase 1, chloroplastic	8.73996318175e-06	0.000148822179419	0.000140082216237
+UniRef50_UPI00036BEC99	phosphoheptose isomerase	1.058613088e-05	1.92055511936e-05	8.6194203136e-06
+UniRef50_K2K0X8	Putative phenol degradation enzyme	0.000109997988054	2.48280451251e-05	-8.51699429289e-05
+UniRef50_W7WR24		0.00221306104746	0.000203688670267	-0.00200937237719
+UniRef50_P37767		0.0019678653801	0.000256425503788	-0.00171143987631
+UniRef50_F2AAA0		0.000216329207388	0.000153944416267	-6.2384791121e-05
+UniRef50_Q3J0V4	Periplasmic sensor diguanylate cyclase 	0.00129608834843	0.00040385203566	-0.00089223631277
+UniRef50_I7A0G4	Two component transcriptional regulator	0.000404449273767	0.00026725493682	-0.000137194336947
+UniRef50_Q88RC0	Glutarate semialdehyde dehydrogenase DavD	0.00649809056459	0.000784787218906	-0.00571330334568
+UniRef50_Q47HI2	Ribosomal RNA large subunit methyltransferase E	8.0612304902e-06	4.90648773812e-05	4.1003646891e-05
+UniRef50_E8PGL4	Endonuclease III	0.000184439408233	0.00119026819571	0.00100582878748
+UniRef50_B7V5R0	Phosphate ABC transporter, periplasmic phosphate binding protein, PstS	0.000293217609458	0.000185345212465	-0.000107872396993
+UniRef50_UPI0003B56757	GTPase Der	7.5643144008e-06	1.35288343331e-05	5.9645199323e-06
+UniRef50_UPI0003720F40	hypothetical protein, partial	1.64267410548e-05	4.57513295422e-05	2.93245884874e-05
+UniRef50_G2MDU0	Outer membrane protein HopG	8.55330790492e-05	0.00431605133087	0.00423051825182
+UniRef50_Q98R27	Proline  tRNA ligase	4.3546771066e-06	1.42143359139e-05	9.8596588073e-06
+UniRef50_UPI0003B722EC	MULTISPECIES	4.50569830364e-06	6.09960114423e-05	5.64903131387e-05
+UniRef50_B8IMD9		2.74923853954e-05	4.30159577452e-05	1.55235723498e-05
+UniRef50_A6LV83	AMP dependent synthetase and ligase	0.000503276724829	0.00214217014057	0.00163889341574
+UniRef50_Q8XXC7	Uracil phosphoribosyltransferase	0.0330519847249	0.0418314798117	0.0087794950868
+UniRef50_G8V724	Hsp20 alpha crystallin family protein	0.00443669326528	0.000902070771962	-0.00353462249332
+UniRef50_UPI00047E563E	hypothetical protein	0.000352863258056	5.83389133913e-05	-0.000294524344665
+UniRef50_G9AD09		7.1091251068e-05	2.95713639078e-05	-4.15198871602e-05
+UniRef50_T0TCE5	SWF SNF family helicase	0.00496202037088	0.000779683570711	-0.00418233680017
+UniRef50_Q5NRL6	Ribonuclease PH	0.000231554356069	0.00269966535878	0.00246811100271
+UniRef50_Q9ZFE4	Enoyl [acyl carrier protein] reductase [NADH] FabI	0.000657956894381	0.000675428086475	1.7471192094e-05
+UniRef50_J9NZP9		0.000109629092634	4.45139921906e-05	-6.51151004434e-05
+UniRef50_Q1LSV5	Uridylate kinase	0.00459938297139	0.00283152187767	-0.00176786109372
+UniRef50_U5MWW8	Glycosyltransferase EpsJ	0.000476616735539	0.000957538252297	0.000480921516758
+UniRef50_D5ATD7	Flagellar FlaF family protein	0.000211779833475	0.00019748674593	-1.4293087545e-05
+UniRef50_UPI0004796392	hypothetical protein	5.43227945589e-05	1.49193751044e-05	-3.94034194545e-05
+UniRef50_P0A864	Thiol peroxidase	0.00265074463916	0.000368378426439	-0.00228236621272
+UniRef50_UPI0003B588F0	short chain dehydrogenase	5.21285975907e-05	0.000114635469689	6.25068720983e-05
+UniRef50_T1Y9K8		0.0275965373987	0.0072606605409	-0.0203358768578
+UniRef50_UPI0003C0FD80		0.000123543006275	9.90670756146e-05	-2.44759306604e-05
+UniRef50_D2VX44	Predicted protein	3.77689752769e-06	6.22920192632e-06	2.45230439863e-06
+UniRef50_I6T5F7	NADH dehydrogenase, NADH nitroreductase	0.00627654715147	0.00091211631635	-0.00536443083512
+UniRef50_D3QJ09		0.0126784396694	0.00183257517624	-0.0108458644932
+UniRef50_C6SS70	Negative transcriptional regulator, CopY	0.0029531216815	0.000401791435631	-0.00255133024587
+UniRef50_P90463	Thymidylate synthase	3.26739210013e-05	0.000112741223415	8.00673024137e-05
+UniRef50_UPI0004431E21		0.000121115443649	0.000107573535165	-1.3541908484e-05
+UniRef50_A6M1I3	Amino acid permease associated region	0.000391124305208	0.000744986203214	0.000353861898006
+UniRef50_UPI00036E2C46	hypothetical protein, partial	1.45062615441e-06	9.96545910418e-06	8.51483294977e-06
+UniRef50_Q9EXU9	Coenzyme PQQ synthesis protein D	0.000273975813664	0.000108185021513	-0.000165790792151
+UniRef50_O67876	Delta aminolevulinic acid dehydratase	0.0107239450185	0.00228644127843	-0.00843750374007
+UniRef50_Q9KPA4	L aspartate oxidase	0.00411234210087	0.00226329826876	-0.00184904383211
+UniRef50_P28345	Malate synthase, glyoxysomal	1.68469118833e-05	2.11578055833e-05	4.3108937e-06
+UniRef50_C4ZXQ4	Purine ribonucleoside efflux pump NepI	0.0022833015857	0.000715917265196	-0.0015673843205
+UniRef50_Q93A70	RecA like protein 	4.55492456182e-05	0.000409436768006	0.000363887522388
+UniRef50_UPI000318A15A	hypothetical protein	4.5278120142e-06	7.58869198888e-06	3.06087997468e-06
+UniRef50_UPI00046CE89C	hypothetical protein	1.84548559956e-05	3.06125494054e-05	1.21576934098e-05
+UniRef50_Q4A0J9	Urease accessory protein UreD	0.0175186019734	0.00374555935937	-0.013773042614
+UniRef50_UPI00022CAA48	PREDICTED	1.17462909427e-05	7.14789923884e-06	-4.59839170386e-06
+UniRef50_Q03S48	Bifunctional protein PyrR	0.000413808905559	0.00361615485319	0.00320234594763
+UniRef50_UPI000479DE62	hypothetical protein	3.08497327948e-05	0.000178641638844	0.000147791906049
+UniRef50_Q5NYP6	Ribonuclease H	6.1266895422e-05	2.46391940494e-05	-3.66277013726e-05
+UniRef50_P45089	Arginine ABC transporter permease protein ArtM	0.00258251456848	0.000336223952777	-0.0022462906157
+UniRef50_W1TYY5		0.000325542642809	0.00137356607068	0.00104802342787
+UniRef50_Q6MI59	Aspartate  tRNA ligase	3.61092171359e-06	1.5633044973e-05	1.20221232594e-05
+UniRef50_A8J7P6	Predicted protein 	5.72794768461e-06	3.76941830841e-06	-1.9585293762e-06
+UniRef50_UPI00046612DA	cation transporter	3.85077449897e-06	7.60941393681e-06	3.75863943784e-06
+UniRef50_B3QS41	Adenylate kinase	0.000413140952451	0.00179072055359	0.00137757960114
+UniRef50_P44779	L fucose isomerase	0.00289135481291	0.00080332345031	-0.0020880313626
+UniRef50_P77504		0.0036282451888	0.00165980289022	-0.00196844229858
+UniRef50_P77986	Cysteine  tRNA ligase 	0.00012330998408	0.000111327062593	-1.1982921487e-05
+UniRef50_G7U7R4		2.45182122722e-05	0.00738814227419	0.00736362406192
+UniRef50_Q5HR39		0.00797227539995	0.00204750500429	-0.00592477039566
+UniRef50_C5VW20	Metal dependent transcriptional regulator	0.0129344480131	0.00447480784315	-0.00845964016995
+UniRef50_UPI00046F9A55	UDP N acetylenolpyruvoylglucosamine reductase, partial	1.71945440455e-05	4.7039362607e-05	2.98448185615e-05
+UniRef50_UPI000462C1F9	ATPase, partial	2.66909568512e-06	0.000138424063777	0.000135754968092
+UniRef50_F2N7I9	2 keto 3 deoxy phosphogluconate aldolase	0.00064080596504	0.000819488032608	0.000178682067568
+UniRef50_B9EBC6	Ribonuclease HII	0.00819303649257	0.00436977133179	-0.00382326516078
+UniRef50_UPI000255BC43	gamma aminobutyrate permease, partial	2.06406608613e-05	9.8153134667e-05	7.75124738057e-05
+UniRef50_A8F524	Peptide deformylase	8.24705332096e-06	1.09165816062e-05	2.66952828524e-06
+UniRef50_Q9RW75	Acetylornithine acetyl lysine aminotransferase	0.000190820085505	0.0238562079432	0.0236653878577
+UniRef50_M1MR71	PGA biosynthesis protein CapA	0.000235086360003	0.00166747316035	0.00143238680035
+UniRef50_UPI00037D52AC	hypothetical protein	3.31892970276e-06	1.30771084448e-05	9.75817874204e-06
+UniRef50_M9S1L9	Periplasmic aliphatic sulfonate binding protein	0.00011723167356	0.000206515178457	8.9283504897e-05
+UniRef50_UPI000471FB75	hypothetical protein	4.49377133561e-05	1.50076730746e-05	-2.99300402815e-05
+UniRef50_UPI000462F0A6	sodium	1.03591151059e-05	1.58246256433e-05	5.4655105374e-06
+UniRef50_UPI00035E3397	hypothetical protein	4.98101853286e-06	4.43604775189e-06	-5.4497078097e-07
+UniRef50_P39616	Probable aldehyde dehydrogenase YwdH	0.0194139667238	0.00558740262145	-0.0138265641023
+UniRef50_G8PQT7		0.000125694085677	2.99009741532e-05	-9.57931115238e-05
+UniRef50_UPI00037BE06D	hypothetical protein	4.91446441076e-05	4.36490099097e-05	-5.4956341979e-06
+UniRef50_A6QK31	Transcriptional regulator LysR family protein	0.0161689411847	0.00253536025748	-0.0136335809272
+UniRef50_M4WZ70	PpiC type peptidyl prolyl cis trans isomerase	0.000905175697333	0.000220136373534	-0.000685039323799
+UniRef50_UPI00042CF608	PREDICTED	2.37841347631e-05	7.75791639907e-06	-1.6026218364e-05
+UniRef50_T0T7J2	Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily	0.00685942780203	0.000520399813437	-0.00633902798859
+UniRef50_UPI0003B3103D	exodeoxyribonuclease III	3.43071150191e-05	3.94456160424e-05	5.1385010233e-06
+UniRef50_Q165N2	Long chain fatty acid protein, putative	8.93028677418e-06	2.63790951444e-05	1.74488083702e-05
+UniRef50_G6XX97	Putative NAD specific glutamate dehydrogenase	3.06399391356e-05	1.84306468806e-05	-1.2209292255e-05
+UniRef50_A6LQ40		0.000177779900556	0.0017150363486	0.00153725644804
+UniRef50_W5X5Z9	Putative bile acid beta glucosidase	1.61688279091e-05	2.51197896676e-05	8.9509617585e-06
+UniRef50_D8LTS8		0.000175839565378	1.83249429851e-05	-0.000157514622393
+UniRef50_UPI0002F66B6C	hypothetical protein	1.98773034701e-05	0.000208016767033	0.000188139463563
+UniRef50_P68825	Peptide deformylase	0.0217730230778	0.00749985794964	-0.0142731651282
+UniRef50_A5IR31	Transcriptional regulator, XRE family	0.00379222337175	0.0016043492418	-0.00218787412995
+UniRef50_UPI0003616553	hypothetical protein	7.57605633654e-06	5.1969860412e-05	4.43938040755e-05
+UniRef50_X0YG76	Marine sediment metagenome DNA, contig	4.26828283053e-05	4.11363328195e-05	-1.5464954858e-06
+UniRef50_D4DSS6	Delta 1 pyrroline 5 carboxylate dehydrogenase	0.000103804687933	0.00399454279466	0.00389073810673
+UniRef50_A1W398		7.09189678027e-05	1.26304447337e-05	-5.8288523069e-05
+UniRef50_Q2J878	CTP synthase	0.0330242988951	0.0201113824007	-0.0129129164944
+UniRef50_P76250	HTH type transcriptional regulator DmlR	0.00379065996074	0.00113218794398	-0.00265847201676
+UniRef50_B9K420	Transposase	5.95511907884e-05	2.41594836547e-05	-3.53917071337e-05
+UniRef50_B6ZTT1	Outer membrane usher protein fimD homolog	0.00105743945506	0.000227881224986	-0.000829558230074
+UniRef50_A7X2C6	Quinolone resistance protein NorB	0.0390686653492	0.00852713261777	-0.0305415327314
+UniRef50_R5GDG8		3.91682345988e-05	7.10651504003e-05	3.18969158015e-05
+UniRef50_UPI0003B34194	sodium hydrogen exchanger	4.78498507603e-06	6.53951437083e-06	1.7545292948e-06
+UniRef50_UPI0003817F52	hypothetical protein	4.05713568254e-05	7.36506362885e-05	3.30792794631e-05
+UniRef50_UPI00046E6BB7	hypothetical protein	1.15777710732e-05	5.78754043134e-06	-5.79023064186e-06
+UniRef50_Q8CTV4		0.00119540366331	0.00224291168503	0.00104750802172
+UniRef50_F6D239		0.00334318576125	0.000787528349983	-0.00255565741127
+UniRef50_K7EGU5		2.17273602896e-05	8.90976590777e-05	6.73702987881e-05
+UniRef50_A5UNG7	Glycerol 3 phosphate dehydrogenase 	0.00626499091887	0.00196408671005	-0.00430090420882
+UniRef50_A9GC83	Undecaprenyl diphosphatase	0.000122990638441	1.30028232995e-05	-0.000109987815142
+UniRef50_B4S8V7	Phosphoribosylformylglycinamidine synthase, purS	2.21651754361e-05	9.06759005361e-05	6.85107251e-05
+UniRef50_UPI00036BB70C	resolvase	8.33391543127e-05	1.70213090651e-05	-6.63178452476e-05
+UniRef50_W5XH95	Phosphoesterase PA phosphatase related protein	5.38579351157e-05	0.000356077462921	0.000302219527805
+UniRef50_P77359		0.00264891137119	0.00135567202294	-0.00129323934825
+UniRef50_F4CYV0		8.42740092923e-05	3.56441836254e-05	-4.86298256669e-05
+UniRef50_UPI00047AE18A	hypothetical protein, partial	2.99313145365e-05	2.04362215755e-05	-9.495092961e-06
+UniRef50_A8F453	Carbamoyl phosphate synthase large chain	1.82268666246e-05	6.0205370901e-06	-1.22063295345e-05
+UniRef50_T0VIT8	Malate Na symporter	0.000976156905217	0.000765048428885	-0.000211108476332
+UniRef50_A7H5L7	Adenylosuccinate synthetase	0.00010984073391	0.00386607538677	0.00375623465286
+UniRef50_D6B724	Prevent host death family protein	7.30738217767e-05	8.233612396e-05	9.2623021833e-06
+UniRef50_Q8MIF7	Phosphoglycerate kinase 2	9.27601131087e-06	1.16763387061e-05	2.40032739523e-06
+UniRef50_UPI000311B4DE	hypothetical protein	9.35246362747e-06	0.000117506816915	0.000108154353288
+UniRef50_M1XHI0	Transposon tn552 dna invertase binr	0.0189122510776	0.00447277879416	-0.0144394722834
+UniRef50_UPI0003B5BE6D	hypothetical protein	8.67931948009e-06	8.35018562184e-06	-3.2913385825e-07
+UniRef50_Q87JE8	Catalase	1.65898213438e-05	0.000171343229368	0.000154753408024
+UniRef50_P37757		0.00393126609127	0.00213799522707	-0.0017932708642
+UniRef50_R4RDL8	Methyl accepting chemotaxis transducer	0.00058697529377	0.000456106233222	-0.000130869060548
+UniRef50_UPI00035DEE56	hypothetical protein	7.5771237699e-05	8.7390494867e-06	-6.70321882123e-05
+UniRef50_L1K5S4		0.000747389671087	0.000398866114553	-0.000348523556534
+UniRef50_A4WQH5	Transposase IS66	0.000279728387848	0.000167812472678	-0.00011191591517
+UniRef50_F1VLT5	Response regulator receiver domain protein	0.000406197823147	0.00520001739019	0.00479381956704
+UniRef50_A0A013RJA0	Type I secretion C terminal target domain protein	0.000358880309145	0.00442544502898	0.00406656471983
+UniRef50_K4PTK7	PTS system, IIC component	0.000624103821781	0.000277727308957	-0.000346376512824
+UniRef50_Q04GD7	Xanthine phosphoribosyltransferase	5.30754470895e-05	6.31192561358e-05	1.00438090463e-05
+UniRef50_UPI0003315B6B	PREDICTED	7.36209050973e-06	3.67141406364e-06	-3.69067644609e-06
+UniRef50_W0WCB8		0.000328248685954	0.000902892285473	0.000574643599519
+UniRef50_Q321F0	3 dehydroquinate dehydratase	0.00275388128753	0.00522436148021	0.00247048019268
+UniRef50_Q8DYV7	Lipoprotein signal peptidase	0.00265322243263	0.00180732187811	-0.00084590055452
+UniRef50_A9MFF7		0.00222503161389	0.0010982946248	-0.00112673698909
+UniRef50_P44645	Molybdopterin adenylyltransferase	0.0051956389732	7.16715768756e-05	-0.00512396739632
+UniRef50_C6S4K8	Purine cytosine transport protein	0.000158164520469	0.00444988520001	0.00429172067954
+UniRef50_D8JKV6		0.000237412571605	0.000800499086684	0.000563086515079
+UniRef50_W8TU36	Membrane protein	0.00984974911871	0.0010150982042	-0.00883465091451
+UniRef50_UPI000477BC75	transcriptional regulator	1.5991911645e-05	2.51531499952e-05	9.1612383502e-06
+UniRef50_Q9RZV6		0.000137521770903	0.0451475265823	0.0450100048114
+UniRef50_Q9RZV7		0.000250441106358	0.0382929505919	0.0380425094855
+UniRef50_P46850	RNA splicing ligase RtcB	0.00398192575317	0.00453617319524	0.00055424744207
+UniRef50_B7MDM9	Phosphoenolpyruvate carboxykinase [ATP]	0.0028417889623	0.00086961481196	-0.00197217415034
+UniRef50_UPI00030354CC	hypothetical protein	0.00907473298052	0.00118469498658	-0.00789003799394
+UniRef50_P33030		0.00160226702734	0.000815506776343	-0.000786760250997
+UniRef50_G8AF41		1.31817498045e-06	3.51368098637e-05	3.38186348832e-05
+UniRef50_Q1GBR1	Ribosomal RNA small subunit methyltransferase A	1.11260728979e-05	7.96308160828e-06	-3.16299128962e-06
+UniRef50_A7FBS8		0.000248346045292	0.0064329912625	0.00618464521721
+UniRef50_B9M627	Transcriptional regulator, BadM Rrf2 family	2.99841538362e-05	1.25041522789e-05	-1.74800015573e-05
+UniRef50_Q6FDG7		9.62156301183e-05	0.0038749210444	0.00377870541428
+UniRef50_UPI00036AD763	hypothetical protein	5.46847041056e-06	1.02593939812e-05	4.79092357064e-06
+UniRef50_O28206	Formylmethanofuran  tetrahydromethanopterin formyltransferase like protein	0.00236046979148	0.000693745465837	-0.00166672432564
+UniRef50_C4XMN4	NADH quinone oxidoreductase subunit K	5.76325106515e-05	3.21245532997e-05	-2.55079573518e-05
+UniRef50_P76004		0.00482600932099	0.00216778491095	-0.00265822441004
+UniRef50_G7M0B3	Subtilisin	0.000205474200728	0.00174374743354	0.00153827323281
+UniRef50_F8KSC7	Phosphoglycerol transferase	5.63131758642e-05	0.003587724873	0.00353141169714
+UniRef50_P76001		0.000589223248134	0.000681500088921	9.2276840787e-05
+UniRef50_A0A023NX12	Potassium transporter KefB	0.00030953723359	0.000418158035251	0.000108620801661
+UniRef50_UPI00037CB356	hypothetical protein, partial	0.000120437315781	4.13460486406e-05	-7.90912671404e-05
+UniRef50_C7NGM8	Signal recognition particle receptor FtsY	0.000451318327698	0.00442336987928	0.00397205155158
+UniRef50_Q5HIG5	Hypoxanthine guanine phosphoribosyltransferase	0.0128282598958	0.000439635506556	-0.0123886243892
+UniRef50_A3PHR5		0.00522720533929	0.00505944341422	-0.00016776192507
+UniRef50_W5X521	Virulence associated protein	0.000107873082055	2.97260019468e-05	-7.81470801082e-05
+UniRef50_UPI00037FC1A9	hypothetical protein, partial	2.88056684859e-05	7.97338811406e-06	-2.08322803718e-05
+UniRef50_UPI000255A713	type I secretion target repeat containing protein	6.27722461015e-06	2.83605402261e-05	2.20833156159e-05
+UniRef50_E3A6M0		0.00283583071926	0.000250471777561	-0.0025853589417
+UniRef50_Q88FA1	Transcriptional regulator, GntR family	0.000838634628888	0.00112570317778	0.000287068548892
+UniRef50_D8JEZ3	Adenylate cyclase	9.11801905478e-05	0.00723698906544	0.00714580887489
+UniRef50_Q8DWH1	tRNA pseudouridine synthase A	0.0050902451797	0.00237802669005	-0.00271221848965
+UniRef50_C0QPF4	3 oxoacyl [acyl carrier protein] synthase 3	0.000111042431648	0.000731991240064	0.000620948808416
+UniRef50_UPI0003F94ECB	CMP deaminase	5.66141317442e-06	2.35332448012e-05	1.78718316268e-05
+UniRef50_UPI0004090BEE	hypothetical protein	2.0240844232e-05	5.51027619416e-06	-1.47305680378e-05
+UniRef50_Q16DB6		0.0102853770731	0.00266764307649	-0.00761773399661
+UniRef50_Q16DB7		0.000205443592801	5.57566899613e-05	-0.00014968690284
+UniRef50_B9KX58	ISSpo9, transposase	0.00180396028647	0.000777321580853	-0.00102663870562
+UniRef50_UPI0004785315	hypothetical protein	3.45807084951e-06	6.87049441911e-06	3.4124235696e-06
+UniRef50_UPI0002DCF3B2	sugar ABC transporter ATP binding protein	8.07537297295e-05	0.0001221988905	4.14451607705e-05
+UniRef50_P26158		0.00852295504189	0.00259825798934	-0.00592469705255
+UniRef50_U6N1Q3	Mitochondrial carrier domain containing protein, putative 	3.4151325891e-05	1.49985599791e-05	-1.91527659119e-05
+UniRef50_UPI00047CE8B7	ABC transporter	4.53443613342e-05	4.33751977949e-05	-1.9691635393e-06
+UniRef50_UPI0001D2E721	TonB dependent siderophore receptor	5.21219542073e-05	4.77981645463e-06	-4.73421377527e-05
+UniRef50_Q97EZ4	Galactose 1 phosphate uridylyltransferase	0.000571267340116	0.00051661003385	-5.4657306266e-05
+UniRef50_U7IBM4		8.97675076014e-05	1.78850446549e-05	-7.18824629465e-05
+UniRef50_P02992	Elongation factor Tu, mitochondrial	0.00792274382853	0.0170887639404	0.00916602011187
+UniRef50_E3Z0Y0	Ion transport protein, putative 	0.00017135921283	0.000256795985818	8.5436772988e-05
+UniRef50_UPI0003A9A8D3	16S rRNA methyltransferase	5.80842023151e-05	1.93292658702e-05	-3.87549364449e-05
+UniRef50_W4TI17	Excinuclease ABC subunit A	5.06618167083e-06	0.0001153514594	0.000110285277729
+UniRef50_X4FS17		0.000116381944324	6.3101791844e-06	-0.00011007176514
+UniRef50_Q82F74	Probable M18 family aminopeptidase 2	8.98776163989e-05	0.00393773782772	0.00384786021132
+UniRef50_R5E350	Phospholipase patatin family	0.000552497353447	0.000463045368397	-8.945198505e-05
+UniRef50_Q04513	L threonine dehydratase biosynthetic IlvA	1.20853596503e-05	5.75814818574e-06	-6.32721146456e-06
+UniRef50_Q51688		0.000227491299583	0.000818694928362	0.000591203628779
+UniRef50_UPI0003732A38	hypothetical protein	1.85037008442e-05	8.05166134607e-06	-1.04520394981e-05
+UniRef50_K7T001	Transposase	0.00013047781796	5.91597526763e-05	-7.13180652837e-05
+UniRef50_UPI0003814692	hypothetical protein	4.28024181088e-06	1.57205370652e-05	1.14402952543e-05
+UniRef50_T2EQP3	AAA ATPase domain protein	0.000775213591037	0.00130682417084	0.000531610579803
+UniRef50_G7M265	Precorrin 2 dehydrogenase	0.000311971891609	0.0026524671094	0.00234049521779
+UniRef50_B9KM23	Trk system potassium uptake protein	0.0107478175445	0.00308468724863	-0.00766313029587
+UniRef50_Q9UW15	Ribonucleoside diphosphate reductase large chain	2.66085096079e-06	3.92353091686e-05	3.65744582078e-05
+UniRef50_A0A031JPA4	Short chain dehydrogenase	4.84173914696e-06	2.57569600472e-05	2.09152209002e-05
+UniRef50_Q8DT19		0.00589679267316	0.00256591766107	-0.00333087501209
+UniRef50_UPI00034AF93B	hypothetical protein	1.20324646676e-05	1.34992354662e-05	1.4667707986e-06
+UniRef50_Q2L2E4	Phage protein	1.58402342792e-05	5.0220130852e-06	-1.0818221194e-05
+UniRef50_Q8UEN6	Valine  tRNA ligase	2.15842189615e-06	2.74458036245e-06	5.861584663e-07
+UniRef50_D9SQP5	Metal dependent phosphohydrolase	0.000688759767944	0.00235844050013	0.00166968073219
+UniRef50_M1MG21		0.000250563420697	0.000492194508663	0.000241631087966
+UniRef50_D6LAV3	PTS system, mannose fructose sorbose family, IID component	0.00055789152799	0.00429288760443	0.00373499607644
+UniRef50_UPI0003B68CA0	ABC transporter	1.57938418023e-05	2.94897299128e-05	1.36958881105e-05
+UniRef50_A1SM04	5 carboxymethyl 2 hydroxymuconate delta isomerase	0.000170294431062	0.00402855519095	0.00385826075989
+UniRef50_X5F517	Ribonuclease G	0.000390020452734	0.00399395211082	0.00360393165809
+UniRef50_UPI0004670206	NADH	0.000114020594284	2.2944313289e-05	-9.1076280995e-05
+UniRef50_X5PZN2	Transposase	0.00501311883519	0.00124140747518	-0.00377171136001
+UniRef50_G5JV69	Mannosyl glycoprotein endo beta N acetylglucosaminidase	0.00699697848433	0.000302888928405	-0.00669408955592
+UniRef50_UPI00036BD2FB	hypothetical protein	4.00831103359e-05	2.25780162039e-05	-1.7505094132e-05
+UniRef50_B4U0E8	Transcriptional regulator AraC family	0.00069489168283	0.000755977475005	6.1085792175e-05
+UniRef50_Q9HTH5	HTH type transcriptional regulator CdhR	0.0001159117673	0.000190731994744	7.4820227444e-05
+UniRef50_O26979	Probable tyrosine recombinase XerC like	0.00224004279447	0.000492123507468	-0.001747919287
+UniRef50_B2UYR1	Surface protein PspC	0.00090537242023	0.0016474393278	0.00074206690757
+UniRef50_Q16DI2	Transcriptional regulator, LacI family, putative	0.0064036640893	0.000997109696131	-0.00540655439317
+UniRef50_UPI000365A6F0	hypothetical protein	2.35466749406e-05	2.14222778525e-05	-2.1243970881e-06
+UniRef50_T2EHK8		0.0103053082357	0.0216231310167	0.011317822781
+UniRef50_UPI00024849FE	RTX toxins and related Ca2+ binding protein like protein	1.31074119341e-05	4.76051440121e-06	-8.34689753289e-06
+UniRef50_UPI00047564FA	hypothetical protein	0.000134398643058	6.76827814778e-05	-6.67158615802e-05
+UniRef50_A5VBC0	Aldehyde dehydrogenase	0.000182674588784	0.00982813362649	0.00964545903771
+UniRef50_Q5F691	Dephospho CoA kinase	0.000820660205591	0.00287076001064	0.00205009980505
+UniRef50_R9YSL1	Thermolysin metallopeptidase, catalytic domain protein	0.0064132952579	0.000372053464676	-0.00604124179322
+UniRef50_UPI00037991D0	hypothetical protein	0.00032768904637	0.000115867403879	-0.000211821642491
+UniRef50_UPI00030D7518	hypothetical protein	0.0001646841461	2.56621220818e-05	-0.000139022024018
+UniRef50_UPI0004649A8B	MULTISPECIES	7.10232066516e-07	4.50521382424e-06	3.79498175772e-06
+UniRef50_F0TFK9	Cysteine synthase	5.02033113056e-05	2.69693317851e-05	-2.32339795205e-05
+UniRef50_Q68Y13	Zinc import ATP binding protein ZnuC	2.49795121395e-05	8.14253085734e-06	-1.68369812822e-05
+UniRef50_P23620	Phosphate regulon transcriptional regulatory protein PhoB	0.0033625437503	0.00596943731749	0.00260689356719
+UniRef50_Q04KA9	Uridine kinase	0.000272734724215	0.0360577192806	0.0357849845564
+UniRef50_K0L612		0.00424865104263	0.00233144767259	-0.00191720337004
+UniRef50_W4UDR2	Glucoamylase S1 S2	5.38508959721e-05	0.000155825829253	0.000101974933281
+UniRef50_Q57H69	DNA directed RNA polymerase subunit beta	5.20007446378e-06	4.98038951864e-06	-2.1968494514e-07
+UniRef50_G7LYD5		0.00129796819429	0.000383656151266	-0.000914312043024
+UniRef50_T9UYG2		0.000145186918795	0.000784601211943	0.000639414293148
+UniRef50_UPI00035F619C	hypothetical protein	2.23662314799e-05	7.53698296108e-06	-1.48292485188e-05
+UniRef50_Q897P8	D alanine  D alanine ligase A	0.00117346074632	0.00299032158069	0.00181686083437
+UniRef50_P64579	mRNA interferase HigB	0.000389160813245	0.000567916740756	0.000178755927511
+UniRef50_Q67KN9	NADH quinone oxidoreductase subunit D 2	0.000245166867811	0.00272469419497	0.00247952732716
+UniRef50_S9TMR0	LigA	9.01638508349e-05	0.000150662779873	6.04989290381e-05
+UniRef50_UPI00047706B6	hypothetical protein	4.91446625101e-05	2.9536463799e-05	-1.96081987111e-05
+UniRef50_UPI00036FBC1B	hypothetical protein	4.95459410972e-06	9.87819307095e-06	4.92359896123e-06
+UniRef50_J7QVF5	Conserved domain protein	0.00237397525437	0.000684615572919	-0.00168935968145
+UniRef50_B0VQE3	Transposase of ISAba7, IS5 family	4.3940266949e-05	4.35835014646e-05	-3.567654844e-07
+UniRef50_Q2SHM4	Phosphonoacetaldehyde hydrolase	0.000703753734855	0.00561755029929	0.00491379656443
+UniRef50_W8ADW9	NagD like phosphatase	2.81127906129e-05	1.21517477243e-05	-1.59610428886e-05
+UniRef50_Q2CIA8		1.71654394907e-05	0.000255408814794	0.000238243375303
+UniRef50_J7L244	Zinc binding dehydrogenase family protein	0.000557169284122	0.00798172167059	0.00742455238647
+UniRef50_I0EVS2	Cysteine rich protein C	0.000865001265076	0.000918397231504	5.3395966428e-05
+UniRef50_S5CUQ4	Folate dependent phosphoribosylglycinamide formyltransferase PurN	0.000209326796037	0.0118992480668	0.0116899212708
+UniRef50_A0A024HP52	Mig 14	0.000545682177815	0.000648017911051	0.000102335733236
+UniRef50_A1SEI7	50S ribosomal protein L1	0.0314538045871	0.0154660186077	-0.0159877859794
+UniRef50_B9KUB3		0.00151527662611	0.000755440359541	-0.000759836266569
+UniRef50_B5XK69	Oleate hydratase	0.0290207911557	0.00733131786053	-0.0216894732952
+UniRef50_Q9Z9J0	tRNA pseudouridine synthase A	6.61221346797e-06	1.01326898431e-05	3.52047637513e-06
+UniRef50_UPI000475A5BB	arabinose transporter permease	5.41907773541e-06	1.34564354996e-05	8.03735776419e-06
+UniRef50_UPI000470CEEA	hypothetical protein	0.000111675017345	3.68358643526e-05	-7.48391529924e-05
+UniRef50_Q13LX0	Ribose import ATP binding protein RbsA	3.77552860117e-06	0.00483226880594	0.00482849327734
+UniRef50_UPI0004413371	ribosomal protein S12	7.64926842815e-05	0.000110522871853	3.40301875715e-05
+UniRef50_F0KGI1	DNA directed DNA polymerase	0.000170743780995	0.00537394772967	0.00520320394868
+UniRef50_B8JA02		1.06211682348e-05	3.54175367128e-05	2.4796368478e-05
+UniRef50_R1GXI1		0.00019233625596	0.00546438875869	0.00527205250273
+UniRef50_Q03XB9		5.80872096252e-06	6.1328696289e-06	3.2414866638e-07
+UniRef50_R9HYC8		7.88729265857e-06	1.14454841506e-05	3.55819149203e-06
+UniRef50_UPI0003941003	PREDICTED	3.87265982673e-07	5.14957937677e-06	4.7623133941e-06
+UniRef50_UPI00047CE519	hypothetical protein	1.83136536847e-05	8.8381366584e-05	7.00677128993e-05
+UniRef50_UPI00035FDF95	acetylornithine aminotransferase	4.00023544073e-06	0.000204305853894	0.000200305618453
+UniRef50_Q56066	Molybdopterin molybdenumtransferase	0.00351663700722	0.0019003417703	-0.00161629523692
+UniRef50_UPI0003B4081B	biotin biosynthesis protein BioY	1.54784338901e-05	0.000224899355305	0.000209420921415
+UniRef50_Q62FS7	Ribosomal RNA small subunit methyltransferase G	4.48865217827e-05	1.04708773968e-05	-3.44156443859e-05
+UniRef50_UPI000477EC64	glycogen debranching protein, partial	6.20727357053e-05	0.000226370140902	0.000164297405197
+UniRef50_Q8YFU1	5 hydroxyisourate hydrolase	3.20998236775e-05	3.73443174851e-05	5.2444938076e-06
+UniRef50_B2HX69	Predicted hydrolase 	0.000175303090798	0.0049614658533	0.0047861627625
+UniRef50_Q8CU33		0.00573538598731	0.00409177570223	-0.00164361028508
+UniRef50_UPI00037B3020	hypothetical protein	0.000115750686468	5.19467639051e-05	-6.38039225629e-05
+UniRef50_Q74CZ3	Adenine phosphoribosyltransferase	1.18204234757e-05	3.31118484539e-05	2.12914249782e-05
+UniRef50_Q5PJI9	Arginine exporter protein ArgO	0.000985810997847	0.000279479531722	-0.000706331466125
+UniRef50_A5U672	LexA repressor	9.4561414589e-05	1.53493071337e-05	-7.92121074553e-05
+UniRef50_UPI0004743595	hypothetical protein, partial	1.89681409268e-05	4.24404208244e-05	2.34722798976e-05
+UniRef50_A6LT65		0.00013122340285	0.0019463580868	0.00181513468395
+UniRef50_UPI000361C034	hypothetical protein	2.36858367208e-06	5.8270716318e-06	3.45848795972e-06
+UniRef50_W0NSJ7	Transcriptional regulator ICP4	0.00011182888895	0.000264567152027	0.000152738263077
+UniRef50_Q67JB9	Ribosomal RNA small subunit methyltransferase A	1.94254594117e-05	2.82999621999e-05	8.8745027882e-06
+UniRef50_UPI00035FFF58	hypothetical protein	5.35079479959e-05	9.7596061496e-06	-4.37483418463e-05
+UniRef50_Q6A6S0		0.000230174383446	0.0014869168625	0.00125674247905
+UniRef50_Q99ZV9	CRISPR associated protein Csn2	0.00227792300668	0.0040999716039	0.00182204859722
+UniRef50_G2AB04		7.26642884203e-05	0.000181284462981	0.000108620174561
+UniRef50_H2K8K5		0.000290718097575	0.000121321463739	-0.000169396633836
+UniRef50_A3PIQ0	Methyl accepting chemotaxis sensory transducer	0.00469801662557	0.000584161428482	-0.00411385519709
+UniRef50_D6ENI5	Integral membrane protein 	0.000764388923005	0.000897250128943	0.000132861205938
+UniRef50_B8GW41	Uroporphyrinogen decarboxylase	5.20347657135e-06	2.5576022455e-05	2.03725458837e-05
+UniRef50_B1XUJ9	NADH quinone oxidoreductase subunit B	0.00028931674222	0.00422249043955	0.00393317369733
+UniRef50_W1H531	5 methyltetrahydrofolate  homocysteine methyltransferase	0.00237371339422	0.000904395817222	-0.001469317577
+UniRef50_J9P4V0		4.30365266484e-05	0.000210439457392	0.000167402930744
+UniRef50_P20691	3 phosphoshikimate 1 carboxyvinyltransferase	3.63590790378e-06	8.36104054843e-06	4.72513264465e-06
+UniRef50_UPI0003B3BE35	ABC transporter ATPase	8.07693593821e-06	1.13298816763e-05	3.25294573809e-06
+UniRef50_UPI00046F4B95	histidinol phosphatase, partial	4.72393444711e-05	6.32207055392e-05	1.59813610681e-05
+UniRef50_UPI0002626B3F	ABC transporter	1.03560664837e-05	7.88304556944e-05	6.84743892107e-05
+UniRef50_Q42682	Delta aminolevulinic acid dehydratase, chloroplastic	0.000152510220819	0.00477515458711	0.00462264436629
+UniRef50_Q8X1P0	Catalase	1.85663514085e-05	3.40677501607e-05	1.55013987522e-05
+UniRef50_D8HFS0		0.0126449300249	0.001220095075	-0.0114248349499
+UniRef50_Q18J88	Thymidine kinase	1.81511447887e-05	2.62090641476e-05	8.0579193589e-06
+UniRef50_P42449	Isocitrate lyase	1.70064558798e-05	5.26911653276e-05	3.56847094478e-05
+UniRef50_P58813	2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.0040352589527	0.00101247164942	-0.00302278730328
+UniRef50_C5QCS1	Mobilization protein	0.0875318015942	0.0342188277512	-0.053312973843
+UniRef50_W8X1S4	Tricarboxylate transport membrane protein TctA	0.000689138537299	0.000449138734104	-0.000239999803195
+UniRef50_P0ADW1	Lipopolysaccharide export system protein LptC	0.00218863110446	0.000618464304081	-0.00157016680038
+UniRef50_W5XB53	Putative hydrolase	1.27537116092e-05	1.11444624346e-05	-1.6092491746e-06
+UniRef50_Q9RR99	Oxidoreductase, short chain dehydrogenase reductase family	0.000120346223862	0.0183382945385	0.0182179483146
+UniRef50_UPI0004781063	peptide ABC transporter substrate binding protein	1.89618527615e-05	5.88922205479e-05	3.99303677864e-05
+UniRef50_A5WBZ4	Transporter, NhaC family	0.000217049728402	0.00352758977622	0.00331054004782
+UniRef50_Q87BX0	Phage related protein	1.67989450747e-05	0.000785026350168	0.000768227405093
+UniRef50_Q5N353	Phosphoribosylaminoimidazole carboxylase	0.00146760948304	0.00217830873862	0.00071069925558
+UniRef50_Q3DCS0		0.000258451294737	0.000169534363488	-8.8916931249e-05
+UniRef50_Q165N5	Trimethylamine methyltransferase family protein	0.00443649361198	0.00121763763818	-0.0032188559738
+UniRef50_I0C2I1		0.0194899647681	0.00707429789861	-0.0124156668695
+UniRef50_A1AXZ6	Rhodanese	0.00270982103251	0.000377803887234	-0.00233201714528
+UniRef50_A7GYU4	Porphobilinogen deaminase	0.00012527189896	0.00291086474774	0.00278559284878
+UniRef50_UPI0003667454	hypothetical protein	1.74307832821e-06	3.65107663576e-06	1.90799830755e-06
+UniRef50_Q8CPM3	Pyruvate carboxylase	0.0121790928414	0.0060183262941	-0.0061607665473
+UniRef50_Q88V19	Glutamate racemase	0.0038429661046	0.00833734215477	0.00449437605017
+UniRef50_Q6GDE9	Serine rich adhesin for platelets	0.00260334308793	0.000705089503951	-0.00189825358398
+UniRef50_I9MZI2	1 5 phosphoribosyl 5 methylideneamino imidazole 4 carboxamide isomerase (Fragment)	1.14772186354e-05	1.73308744056e-05	5.8536557702e-06
+UniRef50_K4S416		4.85316733861e-05	3.33283795348e-05	-1.52032938513e-05
+UniRef50_V8G5H9	GntR family transcriptional regulator	0.000307686483864	0.00105007392707	0.000742387443206
+UniRef50_F3U2E4	McpE	0.00257786582352	0.00011476037767	-0.00246310544585
+UniRef50_Q8A251	Ribosomal RNA small subunit methyltransferase H	1.08304589241e-05	8.31335042072e-06	-2.51710850338e-06
+UniRef50_A6TD39	2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.00545261978953	0.000732179251613	-0.00472044053792
+UniRef50_K0R9Z2		3.83954374459e-05	2.65533665821e-05	-1.18420708638e-05
+UniRef50_W7Q6R7		4.49091447258e-06	1.17340504534e-05	7.24313598082e-06
+UniRef50_A1BFY3	Lipoyl synthase	5.32397974754e-06	1.84138208097e-05	1.30898410622e-05
+UniRef50_UPI000479C2FE	hypothetical protein	3.0216536204e-06	8.35530152306e-06	5.33364790266e-06
+UniRef50_K2J3T1		0.00032810833849	4.05986804015e-05	-0.000287509658089
+UniRef50_X1ENU3	Marine sediment metagenome DNA, contig	0.000294849077439	3.19329884348e-05	-0.000262916089004
+UniRef50_Q5YSJ6		6.07818701413e-06	9.29505863175e-06	3.21687161762e-06
+UniRef50_A5ULM3	Precorrin 6X reductase, CbiJ	0.00162152371903	0.00144901602335	-0.00017250769568
+UniRef50_P0ADC7	Lipopolysaccharide export system permease protein LptG	0.00507535732097	0.00152992744476	-0.00354542987621
+UniRef50_B0VDU9		0.000358372774223	0.00333465903083	0.00297628625661
+UniRef50_Q3IIQ9		8.24371133558e-06	1.88770220023e-05	1.06333106667e-05
+UniRef50_A3PI11		0.00244467066402	0.000309651305176	-0.00213501935884
+UniRef50_UPI000467E1F1	hypothetical protein	1.29715854578e-05	1.06017928987e-05	-2.3697925591e-06
+UniRef50_U5MMP4	Methyl accepting chemotaxis protein	0.000899702522952	0.000836685586281	-6.3016936671e-05
+UniRef50_E8U5H6		0.000246186514471	0.0296667468942	0.0294205603797
+UniRef50_Q07422	Bifunctional dihydrofolate reductase thymidylate synthase	1.46732144429e-05	4.04652124949e-06	-1.06266931934e-05
+UniRef50_Q9CEG3	Aminopeptidase C	0.00760447669273	0.0100572788924	0.00245280219967
+UniRef50_A6LZZ3	AAA ATPase, central domain protein	0.000137652287579	0.00158274042109	0.00144508813351
+UniRef50_UPI00035E7781	hypothetical protein, partial	2.24083408422e-05	1.99916577965e-05	-2.4166830457e-06
+UniRef50_UPI00045E7C5F	translation initiation factor 2	0.000184628970971	7.258344268e-05	-0.000112045528291
+UniRef50_UPI000372ADBA	actetate permease	7.68225458453e-05	9.3721532223e-05	1.68989863777e-05
+UniRef50_UPI000468220F	hypothetical protein	1.58028421252e-05	7.72634080029e-06	-8.07650132491e-06
+UniRef50_L5JBS3		0.000275537218136	0.000440771201791	0.000165233983655
+UniRef50_UPI000300E129	hypothetical protein	5.16279100313e-06	2.76738796632e-05	2.25110886601e-05
+UniRef50_V9Z4G9	Replication protein	0.000724774954015	0.000855990449842	0.000131215495827
+UniRef50_D5ZZ05		7.5521921438e-05	6.47679894733e-05	-1.07539319647e-05
+UniRef50_G1X3P0		2.89121107581e-06	4.53691439515e-07	-2.4375196363e-06
+UniRef50_UPI0003C1128E		2.42641119652e-05	3.43199304391e-06	-2.08321189213e-05
+UniRef50_UPI0002000005	ATP dependent DNA helicase	5.58497019608e-05	0.000159255925212	0.000103406223251
+UniRef50_P54533	Dihydrolipoyl dehydrogenase	0.000181910555678	0.000835781594323	0.000653871038645
+UniRef50_A4W0T3	Endonuclease III	0.00593074057537	0.00171630963205	-0.00421443094332
+UniRef50_Q8FEF9	tRNA pseudouridine synthase C	0.00185429715988	0.000816930640887	-0.00103736651899
+UniRef50_A7ZPF5		0.00124168853918	0.000331816522686	-0.000909872016494
+UniRef50_A7X2C5	Extracellular matrix binding protein EbhB	0.00441803677974	0.00119794234017	-0.00322009443957
+UniRef50_UPI00039B42F6	3 dehydroquinate dehydratase	7.34189326571e-05	2.60355557787e-05	-4.73833768784e-05
+UniRef50_P24582	Modification methylase NlaIII	0.000314465419062	0.0057057551513	0.00539128973224
+UniRef50_Q5NRF0	Probable chemoreceptor glutamine deamidase CheD	0.000203181978107	5.17014581743e-05	-0.000151480519933
+UniRef50_UPI000376D860	hypothetical protein	8.58458814813e-06	3.64197684721e-06	-4.94261130092e-06
+UniRef50_A5UJQ2		0.00347819576324	0.000789332381461	-0.00268886338178
+UniRef50_UPI0002192D8C	peptide ABC transporter ATP binding protein	5.01171623516e-05	1.21005130696e-05	-3.8016649282e-05
+UniRef50_C7BZT5	Cytoplasmic pump proteins of the hefABC efflux system	0.000318110756219	0.00293283953496	0.00261472877874
+UniRef50_UPI0002B9F68A	hypothetical protein	6.18815898012e-05	0.000244902149441	0.00018302055964
+UniRef50_C5N6U7		0.0715481724334	0.000726188619325	-0.0708219838141
+UniRef50_E4ZD91		0.000286632948998	0.0050863424825	0.0047997095335
+UniRef50_UPI0003176417	hypothetical protein	1.64024443277e-05	7.95226633326e-05	6.31202190049e-05
+UniRef50_UPI00017444A4	lactate permease	7.40662163341e-06	3.88498798487e-05	3.14432582153e-05
+UniRef50_B8I6U9	Phosphatidylserine decarboxylase proenzyme	0.000141380520171	0.000207969510703	6.6588990532e-05
+UniRef50_O34318		0.0138738905858	0.00263926191736	-0.0112346286684
+UniRef50_UPI0002FA030F	hypothetical protein	6.10226680761e-06	7.87884375256e-06	1.77657694495e-06
+UniRef50_D4H9Z1		0.000289153712066	0.00368588003269	0.00339672632062
+UniRef50_H2EPJ7	Acyl CoA synthetase	7.72311769725e-05	8.30172333899e-05	5.7860564174e-06
+UniRef50_UPI00035F5072	hypothetical protein	1.39302969329e-06	2.2976221438e-06	9.0459245051e-07
+UniRef50_U2YKU9	Penicillin binding protein 2	0.00226273070915	0.000547598462688	-0.00171513224646
+UniRef50_UPI0003D25F22		4.13109145931e-05	3.4393318365e-05	-6.9175962281e-06
+UniRef50_UPI0003FE0ED1	hypothetical protein	1.78147400641e-05	9.12974863266e-06	-8.68499143144e-06
+UniRef50_D0UWA8		0.00156954141561	0.000854893855216	-0.000714647560394
+UniRef50_X0U2P0	Marine sediment metagenome DNA, contig	4.83257007873e-05	3.49786319579e-05	-1.33470688294e-05
+UniRef50_E0SXX7	Collagenase like protease	0.00626204089565	0.0093663121422	0.00310427124655
+UniRef50_UPI0003722924	hypothetical protein	6.40414374959e-05	2.28901557965e-05	-4.11512816994e-05
+UniRef50_E3J760		2.94963867728e-05	2.32061522841e-05	-6.2902344887e-06
+UniRef50_P31909	Hydrogenase expression formation protein HoxM	0.000915342883711	0.000286715247755	-0.000628627635956
+UniRef50_UPI0003C16579	PREDICTED	1.43437042808e-05	3.53754994253e-05	2.10317951445e-05
+UniRef50_I0LEQ3		0.000127012166912	0.000168544062146	4.1531895234e-05
+UniRef50_UPI0003FB6811	hypothetical protein	8.12482465594e-05	1.06964394103e-05	-7.05518071491e-05
+UniRef50_UPI0003C7E616	hypothetical protein	4.35852553171e-05	4.76949935468e-05	4.1097382297e-06
+UniRef50_A6UEM2		0.00376572124478	0.000576635328994	-0.00318908591579
+UniRef50_V6QFC6	Recombinase	0.020923534863	0.0148267651036	-0.0060967697594
+UniRef50_UPI00047624DC	hypothetical protein	0.000190017999071	0.00012478481605	-6.5233183021e-05
+UniRef50_I3TRE3	Lipoprotein	5.5189098585e-05	1.49090116143e-05	-4.02800869707e-05
+UniRef50_E3RRY8		4.73261104675e-05	1.52876557611e-05	-3.20384547064e-05
+UniRef50_L2LUI2		1.23983557214e-05	1.66074034659e-05	4.2090477445e-06
+UniRef50_S1HVV1		0.00125040625089	0.000223448032776	-0.00102695821811
+UniRef50_UPI0004638CB3	50S ribosomal protein L3	8.40080403615e-06	0.000313178303453	0.000304777499417
+UniRef50_Q3K3G9	Polyribonucleotide nucleotidyltransferase	0.00678262960423	0.00655278929019	-0.00022984031404
+UniRef50_P45804		0.00246801760607	0.00100625796452	-0.00146175964155
+UniRef50_Q47WT5	Lysine  tRNA ligase	7.64063478605e-06	9.37983991156e-06	1.73920512551e-06
+UniRef50_UPI0002377EE6	transposase	6.18990646015e-05	1.5470622179e-05	-4.64284424225e-05
+UniRef50_Q71ZM1	Probable endonuclease 4	0.0270973192318	0.00376535372977	-0.023331965502
+UniRef50_Q5HKZ3	Glutathione peroxidase homolog BsaA	0.00910768029996	0.0011710426068	-0.00793663769316
+UniRef50_UPI00046FCB34	carbon nitrogen hydrolase, partial	1.76324554057e-05	0.000323930572427	0.000306298117021
+UniRef50_W8YQ25		0.000389093993118	0.000161545937717	-0.000227548055401
+UniRef50_Q4L8I4	PTS system, arbutin like IIBC component	0.0105118790475	0.00337699435432	-0.00713488469318
+UniRef50_Q2G9M5	Guanylate kinase	0.00598015744794	0.00233708418992	-0.00364307325802
+UniRef50_UPI000477407F	peroxiredoxin, partial	1.1319983483e-05	2.75641953533e-05	1.62442118703e-05
+UniRef50_Q1N9Q9		3.06774988141e-05	1.60452825408e-06	-2.907297056e-05
+UniRef50_UPI000262D08E	hypothetical protein	9.39309256147e-05	5.50807120963e-05	-3.88502135184e-05
+UniRef50_I7DPQ7		8.30883883469e-06	5.15037915936e-06	-3.15845967533e-06
+UniRef50_N6VQS5		5.25293821999e-05	1.11134209575e-05	-4.14159612424e-05
+UniRef50_Q8KED5	Probable thiol peroxidase	0.000227858745785	3.38902059169e-05	-0.000193968539868
+UniRef50_Q1R155	Zinc import ATP binding protein ZnuC	2.14320683415e-05	9.68968778155e-06	-1.174238056e-05
+UniRef50_M1LWV2	Response regulator receiver protein	0.000250013402159	0.000210439457392	-3.9573944767e-05
+UniRef50_UPI0003B796C7	arginine ABC transporter ATP binding protein	0.000117971420867	4.65885312803e-05	-7.13828895867e-05
+UniRef50_F7PVM3	ABC type metal ion transport system protein	4.27427192848e-05	1.05945669124e-05	-3.21481523724e-05
+UniRef50_I0C688		0.00144663931089	0.000619545535373	-0.000827093775517
+UniRef50_W4NY50		9.5258590978e-05	1.9948830082e-05	-7.5309760896e-05
+UniRef50_UPI0004722448	hypothetical protein	6.15298949801e-06	1.1221811727e-05	5.06882222899e-06
+UniRef50_V5SBZ4	Phosphonate ABC transporter substrate binding protein	0.0129567124513	0.00280175016809	-0.0101549622832
+UniRef50_UPI00037B6D80	hypothetical protein	7.83542461151e-06	1.07166983607e-05	2.88127374919e-06
+UniRef50_B1GZJ0	Elongation factor P	1.11372934613e-05	3.87658587319e-05	2.76285652706e-05
+UniRef50_X1WW26		0.000311971891609	0.000488126785439	0.00017615489383
+UniRef50_F0PCL5	Amino acid ABC transporter, amino acid binding protein	0.00422798830317	0.00200063883992	-0.00222734946325
+UniRef50_UPI000378F8D9	hypothetical protein	9.43360177201e-06	4.35891507963e-05	3.41555490243e-05
+UniRef50_P30147	Hydroxypyruvate isomerase	0.00440676220297	0.00142076925352	-0.00298599294945
+UniRef50_UPI0004717369	amidohydrolase, partial	7.87065909331e-06	3.39558760833e-05	2.608521699e-05
+UniRef50_UPI0003B62CCC	electron transporter RnfB	1.38032260102e-05	2.88461883825e-05	1.50429623723e-05
+UniRef50_P68799	Fibrinogen binding protein	0.0109734696463	0.0015281408062	-0.0094453288401
+UniRef50_Q0TQG4	Porphobilinogen deaminase	0.00101842793199	0.0025549867956	0.00153655886361
+UniRef50_B7GQA5	Binding protein dependent transport systems inner membrane component	0.000128834808487	0.00722222076274	0.00709338595425
+UniRef50_C6M8K8		0.000199728036426	0.000175526786315	-2.4201250111e-05
+UniRef50_F3GKC7	RelA SpoT protein 	5.96074809253e-05	5.24433094958e-05	-7.1641714295e-06
+UniRef50_A6Q5D2	Cytochrome b	0.000114159069206	0.00229266878621	0.002178509717
+UniRef50_Q9F6X6	Light independent protochlorophyllide reductase subunit N	0.000102979068275	3.17531593788e-05	-7.12259088962e-05
+UniRef50_A5UMA2	Predicted endoglucanase 	0.00305274403381	0.000759595418098	-0.00229314861571
+UniRef50_UPI000301BD84	hypothetical protein	5.86119973284e-06	9.78741102064e-06	3.9262112878e-06
+UniRef50_Q8XVE6	Indole 3 glycerol phosphate synthase 1	2.10650835712e-05	2.02795980161e-05	-7.854855551e-07
+UniRef50_P0C8J9	D tagatose 1,6 bisphosphate aldolase subunit GatZ	0.00345888469187	0.00260400595107	-0.0008548787408
+UniRef50_UPI00047A0456	hypothetical protein, partial	6.0172973743e-05	0.000190977889755	0.000130804916012
+UniRef50_Q2NXB3		0.000289146491173	0.000455501344774	0.000166354853601
+UniRef50_W7T1C4		5.12403933111e-05	4.54557949759e-05	-5.7845983352e-06
+UniRef50_U3SSK6		0.001439770278	0.000785156013645	-0.000654614264355
+UniRef50_A1SJC3	Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000335251212962	0.0420744160778	0.0417391648648
+UniRef50_UPI0004785ED3	hypothetical protein	6.27263882353e-05	8.01976594409e-05	1.74712712056e-05
+UniRef50_R0WUD1		3.33488508537e-05	0.000274824462041	0.000241475611187
+UniRef50_I1H6Y1		0.000106066813943	3.32024226604e-05	-7.28643912826e-05
+UniRef50_A6YPV7	Recombination protein A 	0.00026108339293	0.00312578275834	0.00286469936541
+UniRef50_P58388	3 mercaptopyruvate sulfurtransferase	0.00223923146161	0.000533901715896	-0.00170532974571
+UniRef50_A6QIJ6		0.0176597259472	0.00249293899277	-0.0151667869544
+UniRef50_C1DBX8	BolA YrbA family protein	3.66962346387e-05	0.000119207497317	8.25112626783e-05
+UniRef50_A6QIJ0		0.0044150135555	0.000566102310275	-0.00384891124523
+UniRef50_R0MK27	Phenylacetic acid degradation protein paaD	8.62938628955e-05	6.66707113487e-05	-1.96231515468e-05
+UniRef50_UPI0003450573	hypothetical protein	3.35952872855e-05	3.27562973411e-05	-8.389899444e-07
+UniRef50_UPI0004785992	DNA polymerase III subunit alpha	8.52207281053e-06	5.48121768598e-06	-3.04085512455e-06
+UniRef50_P0A2K8	UTP  glucose 1 phosphate uridylyltransferase	0.00285622713346	0.00060714572454	-0.00224908140892
+UniRef50_Q9JWE5	Homoserine kinase	0.000233978918713	0.00297605788981	0.0027420789711
+UniRef50_P30011	Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.00302929863069	0.000635391554286	-0.0023939070764
+UniRef50_C3FD24		9.6885402055e-05	0.000159774592534	6.2889190479e-05
+UniRef50_J7QJP1		0.000221797528993	0.00103184081319	0.000810043284197
+UniRef50_L2YG78	Tat  pathway signal sequence	0.000481897007041	0.0017897982133	0.00130790120626
+UniRef50_UPI0002891AB1	MsbA	1.92037343567e-05	3.10785006581e-05	1.18747663014e-05
+UniRef50_UPI0003B3A4A3	adenine permease	7.21095974737e-06	7.16694302008e-06	-4.401672729e-08
+UniRef50_A6M229	5 dehydro 2 deoxygluconokinase	0.00038735209993	0.000778536942637	0.000391184842707
+UniRef50_A4WSW4	ErfK YbiS YcfS YnhG family protein	0.00497223729314	0.00186291773393	-0.00310931955921
+UniRef50_UPI0004786723	hypothetical protein	4.79637031014e-06	3.78467758894e-05	3.30504055793e-05
+UniRef50_UPI0003656635	hypothetical protein, partial	6.68600152884e-05	3.80047068984e-05	-2.885530839e-05
+UniRef50_A6LYJ9		0.000124037017145	0.000144056929367	2.0019912222e-05
+UniRef50_W8ZDM8		2.19473187102e-05	7.57753201192e-06	-1.43697866983e-05
+UniRef50_UPI000225ACBB	acetyl CoA carboxylase, biotin carboxylase	2.90490113369e-06	8.26464798869e-06	5.359746855e-06
+UniRef50_A3PGH2		0.00331466318752	0.000825750117316	-0.0024889130702
+UniRef50_C7RCC8	Serine O acetyltransferase	0.000151600798739	0.0050508999965	0.00489929919776
+UniRef50_UPI00037A1089	hypothetical protein	2.74466850089e-05	4.67270467813e-06	-2.27739803308e-05
+UniRef50_A5UMY5	Diphthamide synthase, subunit DPH2	0.00299401549467	0.000457459555424	-0.00253655593925
+UniRef50_Q9RYI7	N glycosidase F, putative	0.000580187185277	0.0589466853033	0.058366498118
+UniRef50_P07001	NAD transhydrogenase subunit alpha	0.0108030737621	0.00521694842415	-0.00558612533795
+UniRef50_V0AI23		0.0029703780783	0.00142104546197	-0.00154933261633
+UniRef50_V7ENM8		6.85992596688e-05	6.8972088663e-05	3.728289942e-07
+UniRef50_UPI00037DEAAC	hypothetical protein	0.00106358508853	0.00612062605704	0.00505704096851
+UniRef50_F0PHP0	Diacylglycerol kinase catalytic domain family protein	0.00804005244648	0.00250302163142	-0.00553703081506
+UniRef50_Q9CE10	UDP N acetylmuramate  L alanine ligase	0.024599496981	0.013772860967	-0.010826636014
+UniRef50_W4TIG8	Cytoplasmic axial filament protein CafA and Ribonuclease G	0.000247802618498	0.001156713887	0.000908911268502
+UniRef50_Q9RRN1		0.000574237126031	0.0347013330602	0.0341270959342
+UniRef50_R4ZVK8	Transcriptional repressor of the fructose operon, DeoR family	1.46559310506e-05	8.52056889553e-05	7.05497579047e-05
+UniRef50_UPI00037A56E2	hypothetical protein	1.26163853057e-05	9.08868592567e-06	-3.52769938003e-06
+UniRef50_Q4UPB2		1.16977323908e-05	0.0017785783706	0.00176688063821
+UniRef50_P34001		0.0054515887153	0.001104010369	-0.0043475783463
+UniRef50_V2I282	FAD linked oxidase	0.00282648428852	0.000554216021574	-0.00227226826695
+UniRef50_Q4L978	Diapolycopene oxygenase	0.0124513397721	0.000695954853552	-0.0117553849185
+UniRef50_M9S180		0.000754971977708	0.000214831016484	-0.000540140961224
+UniRef50_B3QZ51	Homoserine O acetyltransferase	5.16418688215e-06	3.77547628999e-05	3.25905760178e-05
+UniRef50_R4KG93	ATPase family protein associated with various cellular activities 	0.00130894519976	0.000635678428034	-0.000673266771726
+UniRef50_D8HI57	Hydrolase, haloacid dehalogenase like family	0.0126007549563	0.00429262324198	-0.00830813171432
+UniRef50_I6SDA8	Bacteriophage protein	0.000394961689434	0.00020695538306	-0.000188006306374
+UniRef50_K2NZ38		2.36924944638e-05	2.12520074187e-05	-2.4404870451e-06
+UniRef50_J7Q8S5		4.47380076552e-05	5.75682638892e-05	1.2830256234e-05
+UniRef50_A0YFR7		8.12687326901e-06	3.7419986077e-05	2.9293112808e-05
+UniRef50_A6LSK3	Protein kinase	0.00013632738744	0.000589779386703	0.000453451999263
+UniRef50_F4BWI8	Conserved domain protein	3.51065970154e-05	9.91024067913e-05	6.39958097759e-05
+UniRef50_R4MJG0		4.13894382772e-05	0.000102629832362	6.12403940848e-05
+UniRef50_UPI00037EA4BC	hypothetical protein, partial	5.34863809114e-06	2.54672631479e-06	-2.80191177635e-06
+UniRef50_D1DK94	ATP dependent DNA helicase RecQ	5.00865973677e-05	0.00353859272693	0.00348850612956
+UniRef50_Q0FEL8		0.000135782170466	1.64346354678e-05	-0.000119347534998
+UniRef50_A6LV27	Sigma54 specific transcriptional regulator, Fis family	0.000700697298445	0.000542155538194	-0.000158541760251
+UniRef50_B1I194	Bifunctional protein GlmU	4.76723660589e-06	6.12497682335e-06	1.35774021746e-06
+UniRef50_F0XY59	Expressed protein 	6.14927635066e-05	5.36822208263e-05	-7.8105426803e-06
+UniRef50_K0S277		3.17970254583e-06	9.36923462798e-06	6.18953208215e-06
+UniRef50_A7Z7B8	2 isopropylmalate synthase	7.09490263514e-06	0.000426278163124	0.000419183260489
+UniRef50_Q75SP7	 stereoselective amidase	0.00106490205464	0.000798871513982	-0.000266030540658
+UniRef50_Q9SA96	Arogenate dehydratase prephenate dehydratase 1, chloroplastic	7.77782506218e-05	2.13388504107e-05	-5.64394002111e-05
+UniRef50_P43741	DNA polymerase I	0.000260186226321	0.00267274970556	0.00241256347924
+UniRef50_O34635	Probable L serine dehydratase, beta chain	1.07338604181e-05	0.000708779098295	0.000698045237877
+UniRef50_E8MF10	UDP glucose 4 epimerase	0.00489001330252	0.00586586604472	0.0009758527422
+UniRef50_UPI0003787A5F	hypothetical protein	1.17109777891e-05	2.89817468477e-05	1.72707690586e-05
+UniRef50_A7GC03	Anaerobic sulfite reductase, subunit A	0.000470348727971	0.000874050051263	0.000403701323292
+UniRef50_Q83HF6	Ribonuclease PH	1.93677605877e-05	4.09959468119e-05	2.16281862242e-05
+UniRef50_U5MQT4	Pentapeptide repeat protein	0.000108785587569	0.000557075586851	0.000448289999282
+UniRef50_UPI00030D3128	glycerol 3 phosphate ABC transporter permease	1.29788743877e-05	9.86742807537e-05	8.5695406366e-05
+UniRef50_UPI000366A20C	MULTISPECIES	3.90031063163e-05	5.11675185958e-06	-3.38863544567e-05
+UniRef50_U9FGT0		0.00059290993013	0.00203313821883	0.0014402282887
+UniRef50_UPI0003B3E71E	long chain fatty acid  CoA ligase	7.80020776208e-06	4.13067198089e-06	-3.66953578119e-06
+UniRef50_UPI0003C26616		5.649602272e-06	0.000100214806997	9.4565204725e-05
+UniRef50_D5WFZ7	Type VI secretion protein, EvpB VC_A0108 family	0.000549154804951	0.00765489975813	0.00710574495318
+UniRef50_A3PNW5	Signal transduction histidine kinase	0.00221656644866	0.00186282065564	-0.00035374579302
+UniRef50_Q5P6B9		0.00155231174962	0.000597716433233	-0.000954595316387
+UniRef50_W5XA80	Vacuolar iron transporter	1.13981361739e-05	7.03893036915e-06	-4.35920580475e-06
+UniRef50_UPI00047633B9	transcriptional regulator	0.000161950088945	3.52724197317e-05	-0.000126677669213
+UniRef50_A0A059LC79		2.25871861578e-05	0.00070424699888	0.000681659812722
+UniRef50_D5W932	Sua5 YciO YrdC YwlC family protein	0.000184139506761	0.00389866545092	0.00371452594416
+UniRef50_UPI00035D05BC	hypothetical protein	3.10832502252e-06	4.85420394489e-06	1.74587892237e-06
+UniRef50_P41367	Medium chain specific acyl CoA dehydrogenase, mitochondrial	4.61407805298e-06	4.60819020001e-05	4.14678239471e-05
+UniRef50_Q59042	Phosphoribosylformylglycinamidine synthase 1	0.00285060398872	0.00118716033294	-0.00166344365578
+UniRef50_UPI0004283D87	hypothetical protein	0.000290935596716	0.000167887162047	-0.000123048434669
+UniRef50_Q897B2	Phosphomethylpyrimidine synthase	0.000666468985673	0.00100992685535	0.000343457869677
+UniRef50_Q83B06	Aminomethyltransferase	5.53014101491e-05	1.21592082216e-05	-4.31422019275e-05
+UniRef50_Q8CTQ7	Putative pyridoxine kinase	0.0200966551082	0.0103619900941	-0.0097346650141
+UniRef50_UPI00047B361F	hypothetical protein	4.6292380628e-05	1.75751300551e-05	-2.87172505729e-05
+UniRef50_A7X2E3	Holliday junction resolvase RecU	0.00798009649387	0.00190918494549	-0.00607091154838
+UniRef50_Q46866	Probable transcriptional regulator YgiV	0.00344227865087	0.00199089913615	-0.00145137951472
+UniRef50_R9LSU9		1.55257274073e-05	8.28017246776e-05	6.72759972703e-05
+UniRef50_W0F5B5	Phospholipid binding protein	9.66139171706e-06	1.99706191569e-05	1.03092274398e-05
+UniRef50_P70787	Probable tartrate dehydrogenase decarboxylase TtuC	0.00337935341214	0.000404077058733	-0.00297527635341
+UniRef50_Q886D0	Autotransporter, putative	0.000283014658313	0.000128485192585	-0.000154529465728
+UniRef50_P32128		0.00213658569127	0.00037242356339	-0.00176416212788
+UniRef50_W4VEN6	TRAP type C4 dicarboxylate transport system	0.000616914972404	0.000118208389294	-0.00049870658311
+UniRef50_UPI0004691530	hypothetical protein	3.83550796902e-06	8.03963861318e-06	4.20413064416e-06
+UniRef50_M1MML4	Transcriptional regulator, TetR family	0.00044977616363	0.00224998713684	0.00180021097321
+UniRef50_A0L5I2	Arginine  tRNA ligase	4.13660095565e-06	8.81731557796e-06	4.68071462231e-06
+UniRef50_S5U768		2.49673018419e-05	0.000109210383499	8.42430816571e-05
+UniRef50_UPI000255F373	hypothetical protein	1.33456158041e-05	0.00015762093289	0.000144275317086
+UniRef50_Q1GRQ0	30S ribosomal protein S2	0.0150328087202	0.002044863042	-0.0129879456782
+UniRef50_A0A015AL57	AcrB AcrD AcrF family protein	0.000152295547092	0.00814405451824	0.00799175897115
+UniRef50_UPI0004761E95	ligand binding protein SH3	0.000396942621906	9.60365693821e-05	-0.000300906052524
+UniRef50_U5MYJ1	Multidrug resistance protein MdtA	0.000877490138922	0.00262253119356	0.00174504105464
+UniRef50_W0HG73	Malonyl CoA acyl carrier protein transacylase	0.00012796135215	0.0104496691721	0.0103217078199
+UniRef50_R9V4R9	Pili assembly chaperone	0.000825288777521	0.000279491347657	-0.000545797429864
+UniRef50_Q08432	Cystathionine beta lyase PatB	2.12687162399e-05	4.09775960387e-05	1.97088797988e-05
+UniRef50_A6LZ60	ROK family protein	0.000568930430525	0.00396342131848	0.00339449088796
+UniRef50_Q9I427	Cytochrome bo ubiquinol oxidase subunit 2	0.00178020987535	0.000365340253849	-0.0014148696215
+UniRef50_C2PBH1	Phage infection protein	1.08454649208e-05	7.53726095451e-06	-3.30820396629e-06
+UniRef50_L0NF86		0.000160422811399	3.14194170622e-05	-0.000129003394337
+UniRef50_UPI00037B865B	hypothetical protein	0.00021303686448	4.46255309713e-05	-0.000168411333509
+UniRef50_A0AJ06	Glutamyl tRNA reductase	7.46753239132e-06	0.00155338981674	0.00154592228435
+UniRef50_Q49X25	Ribosome maturation factor RimM	0.0154063703103	0.0035612370028	-0.0118451333075
+UniRef50_U6M5K1		2.16993904463e-05	0.00025231773796	0.000230618347514
+UniRef50_J3HRH0	TRAP type C4 dicarboxylate transport system, small permease component	5.46876242616e-05	3.13853608562e-05	-2.33022634054e-05
+UniRef50_O27098	Coenzyme F420	0.00466664812955	0.000978940275044	-0.00368770785451
+UniRef50_UPI0004658FC6	hypothetical protein	0.000244991572185	2.36747205981e-05	-0.000221316851587
+UniRef50_A9W6R8	Chaperone protein DnaJ	0.00411259041248	0.00126748186121	-0.00284510855127
+UniRef50_A6T4V9	H Cl( ) exchange transporter ClcA	0.00102667276549	0.000553606431265	-0.000473066334225
+UniRef50_UPI000372F0D2	hypothetical protein	8.06057609936e-06	9.65594137464e-06	1.59536527528e-06
+UniRef50_R4YES8	Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000948294020264	0.000433454011891	-0.000514840008373
+UniRef50_Q8YN97	Ribose phosphate pyrophosphokinase	2.90153811629e-05	5.79161763932e-05	2.89007952303e-05
+UniRef50_UPI00030B21C2	hypothetical protein	6.84529572883e-06	2.52134056951e-05	1.83681099663e-05
+UniRef50_UPI00016C3D7A	elongation factor Tu	2.76528749943e-05	2.10550155247e-05	-6.5978594696e-06
+UniRef50_Q52812	General L amino acid binding periplasmic protein AapJ	0.0110852885914	0.00381903345192	-0.00726625513948
+UniRef50_A0LXJ9	Phosphoenolpyruvate carboxykinase [ATP]	2.5441323255e-05	0.000275792919131	0.000250351595876
+UniRef50_UPI0004776C78	PTS mannose transporter subunit IID	7.76124829762e-06	5.3198648522e-05	4.54374002244e-05
+UniRef50_UPI000472F6DD	hypothetical protein	6.0873802626e-06	0.000132735251447	0.000126647871184
+UniRef50_B2TQB8	Minor teichoic acid biosynthesis protein GgaB	0.000301941178804	0.000347431417872	4.5490239068e-05
+UniRef50_T2DYB6	Major Facilitator Superfamily protein	0.000186352833447	0.000582552576561	0.000396199743114
+UniRef50_A6LZ67	Methyl accepting chemotaxis sensory transducer	0.000254036331322	0.00119222142727	0.000938185095948
+UniRef50_D8U6Y2		8.48919015402e-05	2.65652208605e-05	-5.83266806797e-05
+UniRef50_Q3IRZ4	Urease subunit gamma	7.16128937202e-05	0.000263218196035	0.000191605302315
+UniRef50_Q9RYE3	UPF0173 metal dependent hydrolase DR_0006	0.000347379744345	0.0301466529734	0.0297992732291
+UniRef50_C5WIU5		0.000449083595315	0.000264578499311	-0.000184505096004
+UniRef50_K4SQW1	Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA	0.00140245005999	0.000417037689385	-0.000985412370605
+UniRef50_X4RBB0	3 dehydroquinate synthase	0.000478961058927	0.00570918213422	0.00523022107529
+UniRef50_R9JUE8		0.000190649489319	1.74801271967e-05	-0.000173169362122
+UniRef50_I6WWP7	Cell division protein FtsX	0.00026397621598	0.00258600715958	0.0023220309436
+UniRef50_B1IMR9	Integrase	0.000317032032568	0.00135153126155	0.00103449922898
+UniRef50_P43790		0.00308910692396	0.000566102310275	-0.00252300461369
+UniRef50_W4JVP7		0.000495605237007	0.000103458245741	-0.000392146991266
+UniRef50_UPI00038FA156	Urease subunit gamma beta	3.87775750133e-05	0.000227513459244	0.000188735884231
+UniRef50_F8GG26		2.95479126251e-05	2.68787644182e-05	-2.6691482069e-06
+UniRef50_G1Y156		0.000142821755973	0.000499126825692	0.000356305069719
+UniRef50_U5UI30	ATP dependent DNA helicase RecQ	0.00745318740602	0.00450171194787	-0.00295147545815
+UniRef50_B9KMZ8		0.0136561561427	0.00293953147563	-0.0107166246671
+UniRef50_B9KMZ6		0.00132609932222	0.000338459997828	-0.000987639324392
+UniRef50_W4U8Z0	Serine transporter	4.07286252948e-06	6.37877636163e-05	5.97149010868e-05
+UniRef50_P44598	Non canonical purine NTP pyrophosphatase	3.86401335727e-05	4.37484205648e-05	5.1082869921e-06
+UniRef50_D3HF85		0.0101118624827	0.0053260213334	-0.0047858411493
+UniRef50_F3KAS3	K+ transporting ATPase, subunit B 	9.42833683903e-06	0.000293593595164	0.000284165258325
+UniRef50_Q8EP56	Oligopeptide ABC transporter permease	0.00836817739095	0.00127012273101	-0.00709805465994
+UniRef50_A3U2G6		1.0042237603e-06	1.64945643231e-06	6.4523267201e-07
+UniRef50_UPI000424FB0D	50S ribosomal protein L35	0.000420231122862	0.000343290664489	-7.6940458373e-05
+UniRef50_C7D895		1.42591869837e-05	7.31491949374e-06	-6.94426748996e-06
+UniRef50_M4YX49	Cystathionine beta lyase	0.00348376936746	0.00178777927056	-0.0016959900969
+UniRef50_P50319	Phosphoglycerate kinase, chromosomal	0.0039052711004	0.00788458094338	0.00397930984298
+UniRef50_UPI00034DE802	peptide ABC transporter ATPase	3.85327023475e-05	3.67689252222e-05	-1.7637771253e-06
+UniRef50_Q6GJB5		0.0257041395827	0.0113228913842	-0.0143812481985
+UniRef50_B8CX90	Diaminopimelate epimerase	5.32676922932e-06	1.00550755099e-05	4.72830628058e-06
+UniRef50_K0RYW3		5.13549785225e-05	1.12765038728e-05	-4.00784746497e-05
+UniRef50_F3C2H3		3.37793083643e-05	7.52222354246e-05	4.14429270603e-05
+UniRef50_D4GIS8	RbsC	0.00327897282923	0.00111112934313	-0.0021678434861
+UniRef50_Q6LP67	Putative reductase PBPRA2527	0.00106108867978	0.00259760542494	0.00153651674516
+UniRef50_P0AD32	UPF0721 transmembrane protein YfcA	0.00312206719215	0.0010314978874	-0.00209056930475
+UniRef50_P29683	Light independent protochlorophyllide reductase subunit N	7.83016320161e-05	2.26965696363e-05	-5.56050623798e-05
+UniRef50_B9KQA6	CheX protein	0.00122071845545	0.000350267609694	-0.000870450845756
+UniRef50_R9SKF6	HEAT repeat containing protein	0.00422454410956	0.00175381310806	-0.0024707310015
+UniRef50_UPI0004793211	peptidase	0.00023256796435	6.77634736726e-05	-0.000164804490677
+UniRef50_L5ME78	Transforming acidic coiled coil containing protein 3	3.26544973088e-05	2.0560652968e-05	-1.20938443408e-05
+UniRef50_UPI000467A92B	hypothetical protein	5.06899637246e-06	1.93208625979e-05	1.42518662254e-05
+UniRef50_A5W1N9		0.000294357056807	0.00570514544943	0.00541078839262
+UniRef50_Q6AAL7	Phosphotransferase system protein, mannitol fructose specific IIA subunit	0.000252780796101	0.00561083792077	0.00535805712467
+UniRef50_B9KL54	Tripartite ATP independent periplasmic transporter, DctQ component	0.0355585645976	0.00684016796028	-0.0287183966373
+UniRef50_D4HCV9	ABC transporter, ATP binding protein	8.75837561086e-05	0.00222064107781	0.0021330573217
+UniRef50_U5Q1X8	Urease subunit gamma	1.49533600261e-05	2.24976527674e-05	7.5442927413e-06
+UniRef50_A6M1Q7	D galactose binding periplasmic protein	0.000747524204557	0.000714294896405	-3.3229308152e-05
+UniRef50_Q97KN0	Adenine deaminase	1.92713786756e-05	6.28074097571e-06	-1.29906376999e-05
+UniRef50_P80866	Vegetative protein 296	0.0218990119521	0.055922570925	0.0340235589729
+UniRef50_R4GHY1		1.31180576506e-05	0.000332127503491	0.00031900944584
+UniRef50_A0LZ82	Aldose 1 epimerase	0.000849987475304	0.00165503735787	0.000805049882566
+UniRef50_Q49UM3		0.00813379673982	0.00271463101389	-0.00541916572593
+UniRef50_B8DCV0	Transcriptional regulator, GntR family	0.000691422147927	0.00291192008868	0.00222049794075
+UniRef50_Q2YVT4	N acetylmuramoyl L alanine amidase sle1	0.0209698096105	0.00309222449035	-0.0178775851201
+UniRef50_D7C1Q5		8.68667197477e-05	0.00011754329141	3.06765716623e-05
+UniRef50_A0A024R8N7	HCG1776376, isoform CRA_a	0.000154666100132	6.69067397644e-05	-8.77593603676e-05
+UniRef50_Q5HNA1	ABC transporter, permease protein	0.0081955424068	0.0028084783298	-0.005387064077
+UniRef50_F0KFX3		0.000375512750092	0.00736210724278	0.00698659449269
+UniRef50_UPI00035DDF13	hypothetical protein, partial	2.88087794044e-05	9.35092631292e-05	6.47004837248e-05
+UniRef50_UPI0002D43593	multidrug transporter	6.91378482183e-05	0.00012614497054	5.70071223217e-05
+UniRef50_UPI0003EA94D2	PREDICTED	5.66792409427e-06	3.70790415883e-05	3.1411117494e-05
+UniRef50_F5X5K2	Predicted membrane protein	0.00681093680208	0.00143457585611	-0.00537636094597
+UniRef50_X0XNE1	Marine sediment metagenome DNA, contig	0.000327936002374	0.000200716054885	-0.000127219947489
+UniRef50_W4HQ00		0.000122902387329	5.00876399004e-05	-7.28147474286e-05
+UniRef50_R9YPL9	Host cell surface exposed lipofamily protein	0.0085495957931	0.00646450341434	-0.00208509237876
+UniRef50_Q9ZUC2	Beta carbonic anhydrase 3	3.12571044249e-05	1.13359499384e-05	-1.99211544865e-05
+UniRef50_E1V7W0	N alpha acetyl L 2,4 diaminobutyric acid deacetylase	0.000289367419874	0.000185461818189	-0.000103905601685
+UniRef50_R4Z8G3	Glycogen debranching protein	0.00718522976828	0.00202078940391	-0.00516444036437
+UniRef50_Q3V7G7	Alanine racemase	0.000328248685954	0.00326173694451	0.00293348825856
+UniRef50_P75860		0.00170509440298	0.00428941170745	0.00258431730447
+UniRef50_UPI00039BF8F5	hypothetical protein	0.000254694360043	0.000138440663452	-0.000116253696591
+UniRef50_A6LYW2		0.000598575634063	0.000952682763956	0.000354107129893
+UniRef50_J0H573		0.00246951809358	0.00110735193613	-0.00136216615745
+UniRef50_P08190	Protein FimG	0.00982874166741	0.000352266447552	-0.00947647521986
+UniRef50_A7MNJ8		0.000686689484448	0.000230016182029	-0.000456673302419
+UniRef50_D7B2I8		8.82414327827e-05	0.000110316269632	2.20748368493e-05
+UniRef50_A6V7D9		0.000449438717542	0.000621719379354	0.000172280661812
+UniRef50_UPI0002558E19	chemotaxis protein CheY	1.41432047155e-05	3.79743458309e-05	2.38311411154e-05
+UniRef50_A6LYX0	Phosphoglycerate mutase	0.000368878816464	0.00106205359972	0.000693174783256
+UniRef50_K7RNA7	SAM dependent methyltransferase related to tRNA	0.000151398123869	0.00430453211495	0.00415313399108
+UniRef50_UPI000350FEA2	PREDICTED	9.0302573244e-05	3.10005473249e-05	-5.93020259191e-05
+UniRef50_G0A8S2		0.000121769673823	0.000191143498515	6.9373824692e-05
+UniRef50_M9R9T3		0.00265034441592	0.000422639471078	-0.00222770494484
+UniRef50_UPI000377BD8B	hypothetical protein, partial	9.17848841115e-05	0.000124916073688	3.31311895765e-05
+UniRef50_D7GV59		4.49119619641e-05	6.68535487723e-05	2.19415868082e-05
+UniRef50_A1AYV3	Tryptophan synthase alpha chain	2.16461123079e-05	1.09213120305e-05	-1.07248002774e-05
+UniRef50_R5A036	Transcriptional regulator, MerR family	0.00858152773414	0.00369088433617	-0.00489064339797
+UniRef50_UPI00046400FC	branched chain amino acid ABC transporter substrate binding protein	1.21369417063e-06	8.2736786377e-06	7.05998446707e-06
+UniRef50_I1ZP03		0.00819017497212	0.00596474873702	-0.0022254262351
+UniRef50_J9HV03	Sigma 70 factor, ECF subfamily	0.000216945970609	0.00132774966207	0.00111080369146
+UniRef50_P55373	Putative transposase y4bF	0.0299957711967	0.00934349055752	-0.0206522806392
+UniRef50_P0AEJ7	Ethanolamine ammonia lyase heavy chain	0.00275860833969	0.00153511879688	-0.00122348954281
+UniRef50_A6LTI9	Transcriptional regulator, XRE family	0.000775245960967	0.000377000049191	-0.000398245911776
+UniRef50_P0A9H8	Cyclopropane fatty acyl phospholipid synthase	0.00187372168646	0.000364039045076	-0.00150968264138
+UniRef50_UPI000416C7B3	hypothetical protein	8.67042972356e-05	1.94449950177e-05	-6.72593022179e-05
+UniRef50_K2ADQ8		0.000206847041854	8.15881425901e-05	-0.000125258899264
+UniRef50_C5N2G7		0.0037690859581	0.000801764810481	-0.00296732114762
+UniRef50_B2HNE5	Bifunctional protein PyrR	9.31785572333e-06	8.04670643615e-05	7.11492086382e-05
+UniRef50_U3NTD9	IS1272 like transposase, degenerate	0.0193920707337	0.00198432095911	-0.0174077497746
+UniRef50_B9DM46	tRNA pseudouridine synthase A	0.0216339481163	0.00786699973341	-0.0137669483829
+UniRef50_I6G9X5	Na H(+) antiporter NhaB	0.000553101365644	0.000171862292072	-0.000381239073572
+UniRef50_Q6YWQ5		5.74693819727e-05	0.000519618836113	0.00046214945414
+UniRef50_Q5HJG9		0.0156672149103	0.000723312524878	-0.0149439023854
+UniRef50_I6SJA3		0.00169432849153	0.000627243021205	-0.00106708547033
+UniRef50_Q12PW9		7.6427788121e-06	0.00108705535655	0.00107941257774
+UniRef50_Q2NFV5		0.0034815703794	0.000805936444134	-0.00267563393527
+UniRef50_Q8YH17	Methionine  tRNA ligase	1.1485699885e-05	2.29990702511e-05	1.15133703661e-05
+UniRef50_A6LUK3	Glutathione biosynthesis bifunctional protein GshAB	0.000378442815358	0.000665166762273	0.000286723946915
+UniRef50_UPI00041F4DD3	cytochrome B562	0.000121740290412	2.858500981e-05	-9.3155280602e-05
+UniRef50_P0AB92	Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive	0.00351257010042	0.00103667722213	-0.00247589287829
+UniRef50_M5D5S2	Capsule assembly, only in sialic acid capsules	2.91285864515e-05	0.0024857769314	0.00245664834495
+UniRef50_P26389	Colanic acid biosynthesis protein WcaM	0.00287000931399	0.000275861932129	-0.00259414738186
+UniRef50_T1VWC8	ABC transporter ATP binding protein permease	0.000152610203936	0.00740103628683	0.00724842608289
+UniRef50_Q5FLS6	Alcohol acetaldehyde dehydrogenase	0.00844332053398	0.00175415449414	-0.00668916603984
+UniRef50_UPI000191169A	hypothetical protein	2.11546762959e-06	0.000111421844868	0.000109306377238
+UniRef50_Q89IP8	Serine acetyltransferase	0.0127054222658	0.004822155231	-0.0078832670348
+UniRef50_G7M4A2		0.0001780594287	0.000779431600775	0.000601372172075
+UniRef50_UPI000395B0F7	streptomycin 3 kinase	3.36731791826e-05	5.15851569864e-05	1.79119778038e-05
+UniRef50_F9UF35		4.12324945742e-06	9.03139535901e-06	4.90814590159e-06
+UniRef50_Q5HMZ8	ABC transporter, ATP binding protein	0.0177988087783	0.00461640262814	-0.0131824061502
+UniRef50_Q71Y59	Tyrosine recombinase XerD	0.00916725544038	0.00233120304932	-0.00683605239106
+UniRef50_P71238	Putative colanic acid polymerase	0.00433712665536	0.0016269188484	-0.00271020780696
+UniRef50_J1A645		0.0880639364827	0.0365636711504	-0.0515002653323
+UniRef50_Q6F9X3	DNA polymerase III, delta prime subunit	0.000471806134049	0.00362265843199	0.00315085229794
+UniRef50_UPI00036E0FA5	hypothetical protein, partial	1.95260974406e-06	6.64520368355e-06	4.69259393949e-06
+UniRef50_R5NMQ5		0.000383884056462	0.00271684180617	0.00233295774971
+UniRef50_A5UNF2		0.00345024546518	0.000239445977193	-0.00321079948799
+UniRef50_A5UNF1		0.00468184967718	0.000853593791268	-0.00382825588591
+UniRef50_UPI000478864C	cell division protein FtsW	6.15300540904e-06	0.000118672934863	0.000112519929454
+UniRef50_UPI00047B937D	DEAD DEAH box helicase	4.73477176522e-07	0.000108267066625	0.000107793589448
+UniRef50_A0A059LEJ0		8.36997758017e-05	0.000134785410465	5.10856346633e-05
+UniRef50_N6VGA3	Putative transcriptional regulator	0.000144209633311	3.21620963218e-05	-0.000112047536989
+UniRef50_P25885		0.00656613469629	0.0099806225267	0.00341448783041
+UniRef50_UPI0003B5626D	sodium	1.23599759508e-05	0.00432833813136	0.00431597815541
+UniRef50_Q3A9Q7	DNA directed RNA polymerase subunit beta	8.03165151481e-06	3.53833204156e-06	-4.49331947325e-06
+UniRef50_UPI00036DB2E6	hypothetical protein	5.99994622818e-05	6.130590221e-06	-5.38688720608e-05
+UniRef50_UPI000362123D	hypothetical protein	0.000171532437202	0.000992077370817	0.000820544933615
+UniRef50_S3YIQ8		1.21062467503e-05	0.000327276887326	0.000315170640576
+UniRef50_UPI00046C8BA3	hypothetical protein	1.75510078284e-05	2.26466570318e-05	5.0956492034e-06
+UniRef50_W1EYJ0	Ferredoxin like protein YgcO	0.000198724496172	0.000469151757403	0.000270427261231
+UniRef50_P46448	Formate dehydrogenase major subunit	0.00223558997434	0.000927536097449	-0.00130805387689
+UniRef50_UPI000262829F	rhodanese related sulfurtransferase	3.317868567e-05	1.27639102127e-05	-2.04147754573e-05
+UniRef50_UPI00047C1110	hypothetical protein	4.13394102706e-06	3.52305047408e-05	3.10965637137e-05
+UniRef50_A4VSJ2	ABC type Mn2+ Zn2+ transport system, permease component	0.00442380914091	0.0101847633373	0.00576095419639
+UniRef50_D3QEN2		0.0204616867683	0.00995614005708	-0.0105055467112
+UniRef50_UPI000377656B	hypothetical protein	1.53477556131e-06	1.2271856389e-05	1.07370808277e-05
+UniRef50_S5YYN3	Protein L isoaspartate O methyltransferase	0.00747174736479	0.00335435460619	-0.0041173927586
+UniRef50_Q6F7L8	Glycine  tRNA ligase beta subunit	6.78118542838e-05	0.00694957406664	0.00688176221236
+UniRef50_Q6N372		0.000123989885729	3.64342573535e-05	-8.75556283755e-05
+UniRef50_V8HFR8		2.78930533612e-05	9.75671986588e-06	-1.81363334953e-05
+UniRef50_P35818	Type II secretion system protein D	0.000367135319987	0.000351921638834	-1.5213681153e-05
+UniRef50_P00272	Rubredoxin 2	0.000175652976076	3.07637264446e-05	-0.000144889249631
+UniRef50_W7WXT6		0.000484648755024	0.00150973160647	0.00102508285145
+UniRef50_UPI0004680DA6	hypothetical protein, partial	8.65185667228e-07	1.17740603327e-06	3.12220366042e-07
+UniRef50_UPI00046D684B	hypothetical protein	1.75662583001e-05	3.795212583e-05	2.03858675299e-05
+UniRef50_A8MLB2	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.80317358274e-05	5.32593099871e-05	3.52275741597e-05
+UniRef50_UPI0004712276	hypothetical protein	0.000145148225617	1.18919555928e-05	-0.000133256270024
+UniRef50_Q54F10	NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	0.000106659074828	3.15541440277e-05	-7.51049308003e-05
+UniRef50_U6BPG2	Sulfide	0.000904583198461	0.000151737212916	-0.000752845985545
+UniRef50_A6QIL0	Phage transcriptional regulator	0.00186672001569	0.000784026650967	-0.00108269336472
+UniRef50_B2V042	Acetobutylicum phosphotransbutyrylase	0.000714665915355	0.000999317087393	0.000284651172038
+UniRef50_B0VU19		0.000180041012167	0.00331442310062	0.00313438208845
+UniRef50_C7NAK8	PP loop domain protein	0.0012506929996	0.00108102916097	-0.00016966383863
+UniRef50_UPI00046FF5CF	glycerol 3 phosphate ABC transporter substrate binding protein	1.42205785471e-05	5.82943828806e-06	-8.39114025904e-06
+UniRef50_G7M5U8	Type III restriction protein res subunit	0.000390435426871	0.00284407874193	0.00245364331506
+UniRef50_UPI0004770856	hypothetical protein	7.66754084355e-06	2.68481280329e-05	1.91805871894e-05
+UniRef50_Q88FX7	HTH type transcriptional repressor NicS	0.000106596061616	0.000106134180544	-4.61881072e-07
+UniRef50_UPI00038194DC	30S ribosomal protein S5	7.50639924337e-06	1.26197190849e-05	5.11331984153e-06
+UniRef50_UPI0003B76623	coproporphyrinogen III oxidase	4.99071300156e-05	1.15261886601e-05	-3.83809413555e-05
+UniRef50_Q56232	Aspartate aminotransferase	0.000510735844043	0.0341239739702	0.0336132381262
+UniRef50_R9SJX9	ABC transporter ATP binding protein	0.00392107418223	0.00186180023549	-0.00205927394674
+UniRef50_M1MQF5	Response regulator receiver protein	0.000340673678683	0.00139860928457	0.00105793560589
+UniRef50_V5SVS2	Membrane protein	0.000538024202165	0.000341406595601	-0.000196617606564
+UniRef50_Q9RXI1		7.70903993561e-05	0.0265189828195	0.0264418924201
+UniRef50_Q9RXI0		0.000297233062088	0.0412710739285	0.0409738408664
+UniRef50_Q9RXI3		0.000148618834644	0.0193078869303	0.0191592680957
+UniRef50_P0AEW2	Hydrogenase 4 component E	0.00211387184902	0.000273441393692	-0.00184043045533
+UniRef50_UPI0004630DB7	hypothetical protein	5.85645579847e-06	1.31434214566e-05	7.28696565813e-06
+UniRef50_UPI000361E4A2	hypothetical protein	1.27906103966e-05	7.49600025538e-06	-5.29461014122e-06
+UniRef50_Q4ZY83	Two component response regulator CbrB	0.000632095262601	0.000826584728306	0.000194489465705
+UniRef50_A6X6K2	Extracellular solute binding protein family 1	1.49781440385e-05	1.55204975913e-05	5.423535528e-07
+UniRef50_I7ER35	Signal transduction protein, FIST domain protein	0.00118528813216	0.000155021892496	-0.00103026623966
+UniRef50_P00934	Threonine synthase	0.00435048689627	0.000692603560001	-0.00365788333627
+UniRef50_UPI00040DCB98	hypothetical protein	2.20946403709e-05	6.54914422332e-06	-1.55454961476e-05
+UniRef50_UPI00046815CA	branched chain amino acid ABC transporter permease	1.12889454714e-05	1.39904750132e-05	2.7015295418e-06
+UniRef50_UPI0003C1A0D8	PREDICTED	0.000155662833724	4.60360207523e-05	-0.000109626812972
+UniRef50_A6LZT6	Transcriptional regulator, XRE family	0.000154707372483	0.00147805601357	0.00132334864109
+UniRef50_C1CVB0		0.00131681158902	0.0830196173726	0.0817028057836
+UniRef50_UPI00047588DA	hypothetical protein, partial	0.000114392138376	4.60357834771e-05	-6.83563548989e-05
+UniRef50_Q43844	NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.59224934122e-05	5.11133207216e-05	1.51908273094e-05
+UniRef50_Q56224	NADH quinone oxidoreductase subunit 9	5.47820906211e-06	5.61375581617e-05	5.06593490996e-05
+UniRef50_Q4RS53	Chromosome 13 SCAF15000, whole genome shotgun sequence	6.69003106456e-06	2.23710464737e-05	1.56810154091e-05
+UniRef50_D6SFZ4	Tetratricopeptide repeat protein	0.0212894254182	0.00417217374569	-0.0171172516725
+UniRef50_UPI0002554EAB	ribose ABC transporter permease	0.00012555511544	4.52013999995e-05	-8.03537154405e-05
+UniRef50_Q43931	Muconate cycloisomerase 1	0.000102950724233	0.010368195223	0.0102652444988
+UniRef50_D2ZXF5		8.32283723821e-06	0.000860760158686	0.000852437321448
+UniRef50_B7V7C6	Fimbrial subunit CupB6	0.000516368653549	0.000225146153897	-0.000291222499652
+UniRef50_P77295	Probable HTH type transcriptional regulator YgaV	0.000381298978638	0.000594597393014	0.000213298414376
+UniRef50_E3EZG9		2.08730323462e-05	2.77114751335e-05	6.8384427873e-06
+UniRef50_UPI00046E86F5	cell division protein FtsY	4.44790215621e-06	5.50714115337e-06	1.05923899716e-06
+UniRef50_UPI0003B5A40E	hypothetical protein	8.23966199431e-06	8.62091613637e-06	3.8125414206e-07
+UniRef50_Q4QLL8	Cytochrome c 552	0.00218347187021	0.00120498270762	-0.00097848916259
+UniRef50_UPI00046632A0	long chain fatty acid  CoA ligase	9.46841611191e-06	3.27533901489e-05	2.3284974037e-05
+UniRef50_W0A5F8	Transposase	2.98796429823e-06	9.58315507976e-06	6.59519078153e-06
+UniRef50_I0C313	Hydrolase 	0.0173053302443	0.0079398166645	-0.0093655135798
+UniRef50_UPI0004631CAE	hypothetical protein	5.27090708228e-06	8.19935238432e-06	2.92844530204e-06
+UniRef50_Q5HRP8	Cell division protein DivIC, putative	0.00295581924139	0.000533704888912	-0.00242211435248
+UniRef50_B6VMG8		1.98030914159e-05	8.14106868882e-05	6.16075954723e-05
+UniRef50_UPI00047BC877	phosphoribosylaminoimidazole succinocarboxamide synthase	3.968487207e-05	1.92206285762e-05	-2.04642434938e-05
+UniRef50_UPI0003B45BBB	biotin synthase	5.45801998651e-06	8.17450971758e-05	7.62870771893e-05
+UniRef50_L1K758		0.00116301362774	0.000390022291365	-0.000772991336375
+UniRef50_UPI0001BF7A81	hypothetical protein SMAC_09967, partial	4.85903190355e-05	8.48538313153e-05	3.62635122798e-05
+UniRef50_UPI000288416E	winged helix family two component transcriptional regulator	0.000110488407764	1.73936633382e-05	-9.30947444258e-05
+UniRef50_UPI0002DF8C9A	hypothetical protein	6.0836202983e-05	8.25663329766e-05	2.17301299936e-05
+UniRef50_Q30Q90		0.000484080713473	0.00305942859384	0.00257534788037
+UniRef50_Q56198	Glucokinase	0.024352163825	0.00390251198507	-0.0204496518399
+UniRef50_UPI00047A54E3	hypothetical protein	2.15048363986e-05	9.90193915469e-05	7.75145551483e-05
+UniRef50_Q3IYC6	Phosphoglycolate phosphatase	0.000270444877355	0.00091484620082	0.000644401323465
+UniRef50_V4R363	Tyrosyl tRNA synthetase	5.13564343198e-05	6.80541548978e-05	1.6697720578e-05
+UniRef50_D3V593		0.00020669008805	0.000283621214504	7.6931126454e-05
+UniRef50_B8DKL2	Appr 1 p processing domain protein	1.17890619663e-05	9.91570128406e-05	8.73679508743e-05
+UniRef50_UPI0002F80699	hypothetical protein	1.2837390593e-05	4.79105544061e-06	-8.04633515239e-06
+UniRef50_W4TMK3	Biotin synthase	0.0011131705313	0.000817163828026	-0.000296006703274
+UniRef50_H2JJL8	Anaerobic ribonucleoside triphosphate reductase activating protein	0.000692572461665	0.00258627886643	0.00189370640476
+UniRef50_F0DFZ2		1.85850148934e-05	2.96531180556e-05	1.10681031622e-05
+UniRef50_S4YYU9	Enoyl CoA hydratase	0.000487463689438	0.0103449588408	0.00985749515136
+UniRef50_B0RDR3	Serine hydroxymethyltransferase	0.000126714033796	0.000160056343506	3.334230971e-05
+UniRef50_A0A011QYI3	Leucine responsive regulatory protein	0.000590351127073	0.000214254722414	-0.000376096404659
+UniRef50_F0Y7D5	Expressed protein 	3.74097293279e-05	0.000222510081729	0.000185100352401
+UniRef50_B7NFU7	Bifunctional purine biosynthesis protein PurH	0.00621224802591	0.0119636472151	0.00575139918919
+UniRef50_UPI0002B4A5BA		3.55858144288e-06	1.16272400062e-05	8.06865856332e-06
+UniRef50_UPI0003593C55	PREDICTED	0.000263077113763	6.29258832946e-05	-0.000200151230468
+UniRef50_W5XHW0	Translation initiation factor IF 3	0.00013192011305	0.000378205675359	0.000246285562309
+UniRef50_M1LW12	Sensor histidine kinase AruS	0.000458017796203	0.00148956556954	0.00103154777334
+UniRef50_F8EJQ6	3 oxoacyl  reductase	0.000173158710486	0.00739270232583	0.00721954361534
+UniRef50_UPI000462EF2C	hypothetical protein	6.96201178551e-05	8.68564900473e-05	1.72363721922e-05
+UniRef50_F2JY03		0.00695153070535	0.00223720146784	-0.00471432923751
+UniRef50_D8JE80	Tyrosine recombinase XerC	0.000145935304967	0.00333522998216	0.00318929467719
+UniRef50_UPI00037E2E56	polyphosphate kinase	1.0098537128e-05	0.000553647801007	0.000543549263879
+UniRef50_P18956	Gamma glutamyltranspeptidase	0.00169593245734	0.00114273199784	-0.0005532004595
+UniRef50_Q213M9	C4 dicarboxylate transport protein	0.00417381924491	0.00192652873253	-0.00224729051238
+UniRef50_UPI000050FB19	ABC transporter related protein	6.25418431682e-05	9.05268998511e-06	-5.34891531831e-05
+UniRef50_UPI00047A7902	mechanosensitive ion channel protein MscL	3.5849646117e-05	6.41013825507e-05	2.82517364337e-05
+UniRef50_UPI0003B393FA	RNA pseudouridine synthase	5.4139451358e-05	4.43021179824e-05	-9.8373333756e-06
+UniRef50_UPI00036D2E60	hypothetical protein	0.000124252444931	1.10249772662e-05	-0.000113227467665
+UniRef50_H6SJP6		2.29604561717e-06	3.93410373036e-06	1.63805811319e-06
+UniRef50_P37677	L xylulose 3 keto L gulonate kinase	0.00221679626234	0.000691400347411	-0.00152539591493
+UniRef50_Q0WM29	Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial	0.00059524269573	0.000499054988108	-9.6187707622e-05
+UniRef50_UPI0003C767D3	hypothetical protein	2.7080872695e-05	0.00017330243097	0.000146221558275
+UniRef50_Q1IPE7	NADH quinone oxidoreductase subunit B 1	1.88901547525e-05	0.000205587040479	0.000186696885727
+UniRef50_UPI0003317A65	PREDICTED	0.0001381659917	4.17124883106e-05	-9.64535033894e-05
+UniRef50_B3PI58	Undecaprenyl diphosphatase	0.000163413847988	0.0029298532658	0.00276643941781
+UniRef50_UPI00036B3249	hypothetical protein	0.00024988564816	0.000114564381389	-0.000135321266771
+UniRef50_UPI0003A8BB10	zinc transporter ZitB	5.27299305854e-06	3.43458129047e-05	2.90728198462e-05
+UniRef50_UPI0004722EB3	hypothetical protein	1.62121452756e-05	4.07005194457e-05	2.44883741701e-05
+UniRef50_Q9RVR0		0.000319903380388	0.00759033111478	0.00727042773439
+UniRef50_B9KV19		0.000863717370006	0.000949745525536	8.602815553e-05
+UniRef50_UPI00035D3125	hypothetical protein	1.62332179968e-05	0.000172107308788	0.000155874090791
+UniRef50_F3L538	Putative exported protein	3.4193914385e-05	2.69215068335e-05	-7.2724075515e-06
+UniRef50_C8RX76	Flagellar protein FlgJ, putative	0.000244553912208	0.000125315924203	-0.000119237988005
+UniRef50_Q8CNW5	Septation ring formation regulator EzrA	0.0166278275511	0.00470385102223	-0.0119239765289
+UniRef50_Q89V93	Bll1154 protein	0.00290941049928	0.000226296325824	-0.00268311417346
+UniRef50_P44051	Short chain fatty acids transporter	0.00110968494846	0.000953764636463	-0.000155920311997
+UniRef50_UPI0004773F07	ATPase P	4.0735915493e-06	6.51819254606e-06	2.44460099676e-06
+UniRef50_A9S9Z8		7.18878781716e-06	3.33509712628e-05	2.61621834456e-05
+UniRef50_UPI0003494CA9	hypothetical protein	1.74357057825e-05	2.79859692705e-05	1.0550263488e-05
+UniRef50_A5UMD9		0.0027838263795	0.00647208543853	0.00368825905903
+UniRef50_J7RHN4	Aconitate hydratase	4.70289853191e-05	0.00335293530358	0.00330590631826
+UniRef50_UPI00046E29A5	dihydroxy acid dehydratase, partial	0.00123234505389	0.000157053056886	-0.001075291997
+UniRef50_M5AGE8		1.10802681553e-05	1.7698987033e-05	6.6187188777e-06
+UniRef50_B3DS65	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	6.49275752096e-06	3.64335107987e-06	-2.84940644109e-06
+UniRef50_A4JK78	Phospholipase C	2.19570434892e-05	4.22780073683e-05	2.03209638791e-05
+UniRef50_Q9RX49	Sensory box GGDEF family protein	4.71857486102e-05	0.0088516869521	0.00880450120349
+UniRef50_Q0F2B8	Stringent starvation protein A	1.09269686454e-05	3.7497929576e-05	2.65709609306e-05
+UniRef50_UPI0003B6D1EF	LysR family transcriptional regulator	1.19850650505e-05	2.0873804794e-05	8.8887397435e-06
+UniRef50_A7FKP6	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	7.17603803914e-06	1.44166319382e-05	7.24059389906e-06
+UniRef50_UPI0002628ACD	parB like partition proteins	2.40489727307e-05	0.000511234315636	0.000487185342905
+UniRef50_UPI0003601EED	hypothetical protein, partial	0.000379018403745	0.00055520098629	0.000176182582545
+UniRef50_A3M7V2	23 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.000155557412985	0.00607131945209	0.00591576203911
+UniRef50_UPI000372E28D	gamma aminobutyrate transporter, partial	4.0625742168e-05	9.72517135413e-05	5.66259713733e-05
+UniRef50_I0JLF4	Lactoylglutathione lyase	0.00276714417874	0.0116519516335	0.00888480745476
+UniRef50_B5ZZ54	Hydrolase of the alpha beta superfamily like protein	0.00160959866733	0.000253490734069	-0.00135610793326
+UniRef50_B7UVW2		0.00115431596661	0.000413957071086	-0.000740358895524
+UniRef50_UPI00036095F7	hypothetical protein	0.0189776969503	0.0052050143498	-0.0137726826005
+UniRef50_UPI00046CE9BB	hypothetical protein	0.000122170699499	0.000209197193767	8.7026494268e-05
+UniRef50_F0KJR3	Membrane alanyl aminopeptidase	4.93445737068e-05	0.00594282895461	0.0058934843809
+UniRef50_A2S1L9		0.000101116894552	8.84926248375e-05	-1.26242697145e-05
+UniRef50_A1VT74	Transposase, IS4 family	0.0010922193153	0.000626074002833	-0.000466145312467
+UniRef50_UPI0003C150A0	PREDICTED	9.0702000874e-06	1.32328999553e-05	4.1626998679e-06
+UniRef50_UPI00041D4C0B	hypothetical protein	0.000150740037596	0.000214478331209	6.3738293613e-05
+UniRef50_A3PJ68	SmpA OmlA domain protein	0.0134579703028	0.00419037778553	-0.00926759251727
+UniRef50_Q99ZQ6	Pseudouridine synthase	0.00311925984556	0.00332065650863	0.00020139666307
+UniRef50_Q5HQT9	Sodium transport family protein	0.0172259539806	0.00627233786729	-0.0109536161133
+UniRef50_G7M9D2	Pseudouridine synthase, RluA family	0.000127385598041	0.000396186713523	0.000268801115482
+UniRef50_P13036	Fe dicitrate transport protein FecA	0.00527385381521	0.00151267925277	-0.00376117456244
+UniRef50_UPI000366DA96	hypothetical protein	1.64334603922e-06	2.06483535067e-05	1.90050074675e-05
+UniRef50_UPI000475FEFF	FAD binding protein	1.57298077253e-05	0.00199718969537	0.00198145988764
+UniRef50_B4FJG3		4.46867420191e-05	0.000143220448845	9.85337068259e-05
+UniRef50_R7PWX3		9.54213507134e-06	7.58759236532e-07	-8.78337583481e-06
+UniRef50_P39522	Dihydroxy acid dehydratase, mitochondrial	6.36373341395e-06	6.90635110603e-06	5.4261769208e-07
+UniRef50_A2SLT0	tRNA specific 2 thiouridylase MnmA	5.67432646804e-06	1.05186865962e-05	4.84436012816e-06
+UniRef50_X2NG16	Lysine decarboxylase LdcC	0.00398208653109	0.00119116233895	-0.00279092419214
+UniRef50_Q9RY06	Valine  tRNA ligase	9.10160645133e-05	0.0558427482078	0.0557517321433
+UniRef50_Q0RRW7	NADH quinone oxidoreductase subunit B	2.00544750015e-05	0.000152527191493	0.000132472716491
+UniRef50_P37813	ATP synthase subunit a	0.0198051196505	0.00280035257875	-0.0170047670717
+UniRef50_U3T5D5		0.000556985325125	0.0159011099792	0.0153441246541
+UniRef50_S9XSX4		2.22283320959e-05	0.00100222821775	0.000979999885654
+UniRef50_J7D104		0.0040751905466	0.000500503771397	-0.0035746867752
+UniRef50_B0K6Q8		0.000152129137978	0.000201478912314	4.9349774336e-05
+UniRef50_UPI00020009E9	hypothetical protein, partial	0.000179880619506	0.00351812395118	0.00333824333167
+UniRef50_A0A058ZAA4		6.36876267111e-06	1.95527719833e-07	-6.17323495128e-06
+UniRef50_D2NQQ7	ATP dependent zinc metalloprotease FtsH	0.000887127455704	0.00693694989277	0.00604982243707
+UniRef50_UPI00035F9DDC	hypothetical protein	1.05874954465e-05	1.98829983183e-05	9.2955028718e-06
+UniRef50_B2E956	NADP dependent isocitrate dehydrogenase protein	0.000217423631052	0.00011901517842	-9.8408452632e-05
+UniRef50_UPI000349B827	hypothetical protein	4.48040620258e-06	1.05718895839e-05	6.09148338132e-06
+UniRef50_I9CFE3	Transposase IS66	2.53042661254e-05	3.46215107465e-05	9.3172446211e-06
+UniRef50_C6SRZ7		0.00456627355165	0.000972119515738	-0.00359415403591
+UniRef50_G0LSH0	Pathogenicity island protein	6.13422155185e-05	0.000553718822241	0.000492376606723
+UniRef50_X2HYB2	Sodium	0.000220272022714	0.00221249711021	0.0019922250875
+UniRef50_Q7MNQ6	UPF0246 protein VV0659	0.000894087280541	0.00428649462857	0.00339240734803
+UniRef50_A5WGK5	Aspartate carbamoyltransferase	0.00141432264821	0.00667240784141	0.0052580851932
+UniRef50_Q1GID4	Extracellular solute binding protein family 1	2.53537525793e-05	9.52938635971e-06	-1.58243662196e-05
+UniRef50_A6LVW3	RelA SpoT domain protein	0.000206276496643	0.00219321560862	0.00198693911198
+UniRef50_UPI000471FC6E	glyoxalase	6.59220560604e-05	0.000180390790446	0.000114468734386
+UniRef50_Q8XKQ2	Galactose methyl galactoside import ATP binding protein MglA	0.00275979847426	0.00114593119087	-0.00161386728339
+UniRef50_UPI00016C49DE	phosphoribosylanthranilate isomerase	9.07174811214e-06	1.31269812347e-05	4.05523312256e-06
+UniRef50_B0TGQ8	Dihydroorotate dehydrogenase B ), catalytic subunit	5.99704070456e-06	0.00199560677332	0.00198960973262
+UniRef50_B9KKA8		6.71606810779e-06	0.000195288060882	0.000188571992774
+UniRef50_UPI000472AD58	tryptophan synthase alpha chain	1.21211111217e-05	7.77844699951e-06	-4.34266412219e-06
+UniRef50_UPI00046ADEBA	ABC transporter ATP binding protein	5.27740504682e-06	4.72610002336e-06	-5.5130502346e-07
+UniRef50_A7IEL6	Binding protein dependent transport systems inner membrane component	0.000428338800051	0.00386680080175	0.0034384620017
+UniRef50_E8SEV3	Molybdopterin biosynthesis protein MoeB	0.0300974810281	0.00721240646572	-0.0228850745624
+UniRef50_UPI0002B45AB9		3.46835315563e-05	1.28551612318e-05	-2.18283703245e-05
+UniRef50_Q5WE04	L lactate dehydrogenase	0.0260637510171	0.0120648692818	-0.0139988817353
+UniRef50_A6LYL8	Integral membrane sensor signal transduction histidine kinase	0.000537243471011	0.00282380541781	0.0022865619468
+UniRef50_K8B662		0.000130734681622	0.000150671788373	1.9937106751e-05
+UniRef50_UPI0001FFDAEB	transcriptional regulator	0.000171316082874	9.86803785002e-06	-0.000161448045024
+UniRef50_K0FMM2	BclA protein	2.34817760961e-05	5.24767756059e-05	2.89949995098e-05
+UniRef50_B2VIE6	UPF0294 protein ETA_26410	0.00301966390065	0.000453966749505	-0.00256569715115
+UniRef50_Q0H8X2	Probable intron encoded endonuclease bI1	0.000292458690724	0.000111821289617	-0.000180637401107
+UniRef50_W0EIH2	UvrABC system protein A	1.09550659468e-05	8.55301548604e-05	7.45750889136e-05
+UniRef50_D2NRU1	Archaeal DNA polymerase II, large subunit	2.80803766649e-06	7.16939560287e-05	6.88859183622e-05
+UniRef50_UPI0001E7AE98	putative ribonucleotide reductase large subunit	2.68750178491e-06	0.000141807699165	0.00013912019738
+UniRef50_UPI0003614ECF	hypothetical protein	6.52380861244e-06	1.1080691072e-05	4.55688245956e-06
+UniRef50_Q2CJ82	Short chain dehydrogenase reductase SDR	1.03388304735e-05	1.39999671359e-05	3.6611366624e-06
+UniRef50_P0A936	Membrane bound lytic murein transglycosylase A	0.00426115866906	0.00130205066746	-0.0029591080016
+UniRef50_UPI000443285E	PREDICTED	5.01741881218e-06	6.89723717774e-05	6.39549529652e-05
+UniRef50_A5IW55	Transcriptional regulator, MarR family	0.0106057167506	0.00646839995983	-0.00413731679077
+UniRef50_UPI000350F61A	PREDICTED	2.10044736394e-06	1.1637722001e-06	-9.3667516384e-07
+UniRef50_UPI0003B45CE3	arabinose ABC transporter permease	2.9532503847e-06	4.40416752801e-06	1.45091714331e-06
+UniRef50_A0A022P145		0.000588111278528	1.88654342355e-05	-0.000569245844293
+UniRef50_UPI00026276EB	preprotein translocase subunit SecA	5.14905668541e-05	2.16180960222e-05	-2.98724708319e-05
+UniRef50_Q9RY70	Ornithine carbamoyltransferase	0.000163886825841	0.0521575567979	0.0519936699721
+UniRef50_P24520	Nicotinamide riboside transporter PnuC	0.00230166498542	0.000567916740756	-0.00173374824466
+UniRef50_A0Q6K3	Malate dehydrogenase	0.0264608191773	0.00755789098362	-0.0189029281937
+UniRef50_B9KQ46		0.00183519778278	0.000399977478817	-0.00143522030396
+UniRef50_Q5XD24	Probable metallo hydrolase M6_Spy0554	0.00515971547456	0.00881165215888	0.00365193668432
+UniRef50_V6URT8	Membrane protein 	4.55952041033e-05	8.21353738476e-06	-3.73816667185e-05
+UniRef50_Q5HR11	ATP dependent DNA helicase RecQ	0.00970656817334	0.00173184456588	-0.00797472360746
+UniRef50_UPI000471C72D	NAD dependent malic enzyme 1	2.50828407752e-05	1.64211519981e-05	-8.6616887771e-06
+UniRef50_C1CXG7	30S ribosomal protein S10	0.00074260337074	0.00398784410932	0.00324524073858
+UniRef50_UPI00046A2C95	histidine phosphotransferase	6.46251895901e-05	2.43624324826e-05	-4.02627571075e-05
+UniRef50_V5VBC4	Acinetobactin biosynthesis protein	7.7287698312e-05	0.00499994087583	0.00492265317752
+UniRef50_A0A031C6N4		0.000205901448467	6.42452596268e-05	-0.00014165618884
+UniRef50_A8LPB3	Import inner membrane translocase	0.00502587011153	0.000566246806702	-0.00445962330483
+UniRef50_Q6D6A4	UPF0176 protein ECA1781	0.00298869328346	0.00161361166763	-0.00137508161583
+UniRef50_D3DZB3	MatE efflux family protein	0.00350056434364	0.000651809326294	-0.00284875501735
+UniRef50_F8G4X8	Citrate synthase	0.00134989097874	0.000677906461153	-0.000671984517587
+UniRef50_UPI0003B63C52	peptide permease BMEII0860	8.77093862504e-06	1.151309756e-05	2.74215893496e-06
+UniRef50_P20839	Inosine 5 monophosphate dehydrogenase 1	2.26505895462e-05	9.593921748e-06	-1.30566677982e-05
+UniRef50_J3TFE7	Arabinose efflux permease family protein	0.000113359155811	0.00417289592959	0.00405953677378
+UniRef50_UPI00034B9571	hypothetical protein	2.70868313263e-05	3.33910883421e-05	6.3042570158e-06
+UniRef50_U2Z938	Initiation of plasmid replication	0.000729942375831	0.000151255992455	-0.000578686383376
+UniRef50_T2KQZ5	Lipoyltransferase and lipoate protein ligase	0.0202426221139	0.00349773755939	-0.0167448845545
+UniRef50_S6AU95	Transcriptional regulators	0.0041192970673	0.00412656654739	7.26948009e-06
+UniRef50_F4CWF2		0.000124632804606	6.12755474683e-05	-6.33572571377e-05
+UniRef50_N0AYY4	Aromatic amino acid transport protein AroP 	0.031394896346	0.00776212371052	-0.0236327726355
+UniRef50_A6U7Z3	Proline  tRNA ligase	0.0145095164521	0.00293635628332	-0.0115731601688
+UniRef50_F0Y346		0.000226814149978	0.000242567299515	1.5753149537e-05
+UniRef50_V9VJ25		0.000252123087322	0.0100227027858	0.00977057969848
+UniRef50_X2HPT1	Membrane protein	0.000139122600314	0.0048499777673	0.00471085516699
+UniRef50_C4ZU18	Fructose 1 phosphate kinase	0.00238540650076	0.000586721930844	-0.00179868456992
+UniRef50_S5SQS1	Oligopeptide ABC transporter ATP binding protein	0.00115727141235	0.000811442799272	-0.000345828613078
+UniRef50_C1DMJ1	TonB dependent siderophore receptor	0.00067187626896	0.000551484416891	-0.000120391852069
+UniRef50_D9VJK2		5.70526502717e-07	0.000169579680527	0.000169009154024
+UniRef50_Q8NQ46	Peptide deformylase 1	1.29258374628e-05	9.66405089067e-05	8.37146714439e-05
+UniRef50_F6DQM1	FAD linked oxidase domain protein	0.000603719017794	0.000163158400665	-0.000440560617129
+UniRef50_Q49ZH2	DNA topoisomerase 3	0.0102579146244	0.00346160852263	-0.00679630610177
+UniRef50_I0I0F8	Putative major facilitator superfamily transporter	6.13343134872e-06	3.79350676046e-06	-2.33992458826e-06
+UniRef50_Q3JPX4	Val start codon	3.32897357665e-05	5.87624370776e-05	2.54727013111e-05
+UniRef50_O32867	Tetrahydromethanopterin S methyltransferase subunit A	0.00283651439477	0.000508322774466	-0.0023281916203
+UniRef50_B8DWF1	ATP binding protein of ABC transporter	7.9806762976e-05	0.00134443644192	0.00126462967894
+UniRef50_D9RCU3	ABC type nitrate sulfonate bicarbonate transporter, TauA	0.00954138805413	0.00428885633426	-0.00525253171987
+UniRef50_H6P8S4	Acetoin dehydrogenase E1 component	0.00951654849752	0.00467300993691	-0.00484353856061
+UniRef50_C5D403	Anti sigma F factor	0.000514753621167	0.000826060713832	0.000311307092665
+UniRef50_UPI0003A374B9	ribonuclease 3	1.31455330626e-05	7.53506305934e-05	6.22050975308e-05
+UniRef50_A3PP97	Transcriptional regulator, AraC family	0.00427920469186	0.000302372053093	-0.00397683263877
+UniRef50_P06130	Formate dehydrogenase subunit beta	0.00368426348646	0.000690020470573	-0.00299424301589
+UniRef50_H3VE51		0.000399513634297	0.00031220860807	-8.7305026227e-05
+UniRef50_B9JCY0		8.21216023673e-05	5.04302581437e-05	-3.16913442236e-05
+UniRef50_U5NMX6		0.0157060533738	0.00490140401226	-0.0108046493615
+UniRef50_X1RXJ8	Marine sediment metagenome DNA, contig	1.18064935746e-05	1.19259609452e-05	1.194673706e-07
+UniRef50_M8R009		0.00766369264197	0.000694862835762	-0.00696882980621
+UniRef50_Q8FDH0	HTH type transcriptional activator TtdR	0.00245791682665	0.000473622087543	-0.00198429473911
+UniRef50_UPI0002DC6DF0	hypothetical protein	0.000233296747131	0.000369135180841	0.00013583843371
+UniRef50_UPI000363C9B5	hypothetical protein	3.27460368986e-06	0.000227585010365	0.000224310406675
+UniRef50_B2TGR6	NADH	0.00344866680628	0.00033063479302	-0.00311803201326
+UniRef50_P39773	2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.0257656392718	0.00374224139949	-0.0220233978723
+UniRef50_Q932I8	Tetracycline resistance protein TetM	0.000142381891009	9.44509718088e-05	-4.79309192002e-05
+UniRef50_S4X5W3		0.000173996884551	0.000110186878266	-6.3810006285e-05
+UniRef50_UPI000473EC6D	MFS transporter	1.65180832232e-05	0.000111677830249	9.51597470258e-05
+UniRef50_P36682		0.00347600416181	0.00248154314239	-0.00099446101942
+UniRef50_Q5X5E0	Orotidine 5 phosphate decarboxylase	3.61623490513e-05	1.20477939878e-05	-2.41145550635e-05
+UniRef50_P08005	Oligopeptide transport system permease protein OppB	0.00259948196924	0.00039323216977	-0.00220624979947
+UniRef50_A8BSP6		0.000113443423855	0.000221487528896	0.000108044105041
+UniRef50_R4ZI73	Hydrolase, haloacid dehalogenase like family	0.00571378903837	0.00247512991375	-0.00323865912462
+UniRef50_Q9RWJ0	Argininosuccinate lyase	0.00733429383423	0.0195192635832	0.012184969749
+UniRef50_K7EGT5		3.48781643324e-05	0.000604341161777	0.000569462997445
+UniRef50_B6JLQ7	Type II R M system protein	4.07799051658e-05	0.00472811258922	0.00468733268405
+UniRef50_UPI0004225DED	isoleucine  tRNA ligase	1.37531687293e-06	6.51499332703e-06	5.1396764541e-06
+UniRef50_A6E257		3.19333387442e-06	8.39392038982e-06	5.2005865154e-06
+UniRef50_Q3IMY5	50S ribosomal protein L2	0.00589840543537	0.000860667332413	-0.00503773810296
+UniRef50_G8VA00	Adhesion protein associated protein	0.000657845574193	0.00707684035524	0.00641899478105
+UniRef50_Q8IQF1	Molybdenum cofactor biosynthesis protein 1	3.13539564882e-06	7.87906153327e-05	7.56552196839e-05
+UniRef50_Q4L770	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0176000195049	0.0033443335214	-0.0142556859835
+UniRef50_I3UHD0	Spermidine putrescine ABC transporter ATPase	0.00104881287132	0.0014188488577	0.00037003598638
+UniRef50_B5X4Z4	Probable amino acid acetyltransferase NAGS2, chloroplastic	2.86314551725e-06	5.34244005008e-06	2.47929453283e-06
+UniRef50_W5XJA7	Primary replicative DNA helicase	4.65083201026e-06	7.24343625428e-06	2.59260424402e-06
+UniRef50_P23325	Ankyrin repeat protein A	0.000867212605624	0.000185200651719	-0.000682011953905
+UniRef50_Q8CUB3		0.0523263044	0.0116723163284	-0.0406539880716
+UniRef50_D0K767		0.00792308556173	0.000654638500648	-0.00726844706108
+UniRef50_Q8CUB1		0.00527565012877	0.00187196196748	-0.00340368816129
+UniRef50_Q8CUB0		0.000688045255084	0.000384496984105	-0.000303548270979
+UniRef50_Q9I576	4 hydroxyphenylpyruvate dioxygenase	0.00137192810219	0.00035389785821	-0.00101803024398
+UniRef50_Q8CUB6		0.00820714297245	0.00769431180473	-0.00051283116772
+UniRef50_Q8CUB4		0.0345894628862	0.0110947264562	-0.02349473643
+UniRef50_D4YZ36		9.68704126262e-05	4.18345603648e-05	-5.50358522614e-05
+UniRef50_G7M679	D galactose binding protein	0.000970125095041	0.00461549273457	0.00364536763953
+UniRef50_B5GNG9		2.88642298465e-05	0.000220890571829	0.000192026341983
+UniRef50_UPI00042A099E	MULTISPECIES	9.34986347e-06	1.15428299218e-05	2.1929664518e-06
+UniRef50_A6M2R3	Signal peptidase I	0.00101191085796	0.00193112350419	0.00091921264623
+UniRef50_UPI00036D23D9	hypothetical protein, partial	8.98441945633e-05	1.32615502885e-05	-7.65826442748e-05
+UniRef50_UPI0003802981	30S ribosomal protein S13	0.000188688016778	0.0010173289622	0.000828640945422
+UniRef50_UPI00046643A7	uracil phosphoribosyltransferase	8.90699868207e-06	2.47122974436e-05	1.58052987615e-05
+UniRef50_U5SG79	Rlx protein	0.000395483171821	4.9834431849e-05	-0.000345648739972
+UniRef50_Q9RUU7		6.74333839322e-05	0.0828867124478	0.0828192790639
+UniRef50_S4EU42		5.23117741504e-05	8.35624719508e-05	3.12506978004e-05
+UniRef50_UPI00046CF290	molecular chaperone DnaJ, partial	1.34954366863e-05	1.79363806799e-05	4.4409439936e-06
+UniRef50_R9ZBV1	Membrane protein	0.00022251613143	0.000296455743287	7.3939611857e-05
+UniRef50_H9K042		6.5437293272e-05	0.00013694047349	7.1503180218e-05
+UniRef50_P0ACQ2	Ribose operon repressor	0.00555451981669	0.0018868803424	-0.00366763947429
+UniRef50_Q6F9I9	Coenzyme PQQ synthesis protein E	0.000297733211355	0.00343423304362	0.00313649983227
+UniRef50_U3SUW9		0.0215533751035	0.00412069821203	-0.0174326768915
+UniRef50_UPI000478E845	acetyl CoA acetyltransferase	3.94063304549e-06	4.00508842265e-05	3.6110251181e-05
+UniRef50_E8QA77	Exported protein	0.00485836768309	0.0051253203629	0.00026695267981
+UniRef50_UPI000478CDB6	hypothetical protein	2.41767984707e-06	1.22124213446e-05	9.79474149753e-06
+UniRef50_A6LWY2	Peptidase M42 family protein	0.000119457591412	0.00131237308102	0.00119291548961
+UniRef50_Q898F3	DNA binding protein iolR	0.000208555794952	0.000522798163873	0.000314242368921
+UniRef50_U9DSS6		4.21643106482e-05	1.99254841624e-05	-2.22388264858e-05
+UniRef50_E5U235		0.000546347376875	0.000270118386102	-0.000276228990773
+UniRef50_G5N0A7	DNA ligase	0.00278720758274	0.00102131526159	-0.00176589232115
+UniRef50_UPI000375E551	hypothetical protein, partial	1.60300389907e-05	3.04770917789e-05	1.44470527882e-05
+UniRef50_UPI00037AE230	hypothetical protein	1.46798656517e-05	0.000301841269429	0.000287161403777
+UniRef50_UPI00047B09DF	hypothetical protein	4.14914404877e-06	2.80054536879e-05	2.38563096391e-05
+UniRef50_UPI00047229B1	hypothetical protein	0.000180557851816	2.25868571e-05	-0.000157970994716
+UniRef50_M2ZV09		1.64591066016e-06	1.54888495218e-06	-9.702570798e-08
+UniRef50_C7QH34	Thioesterase superfamily protein	6.7636987712e-05	0.00100434415332	0.000936707165608
+UniRef50_M8ZKF1	TraU family protein	0.000223775273993	4.09111443757e-05	-0.000182864129617
+UniRef50_A4J903	UPF0042 nucleotide binding protein Dred_3054	0.000569338702742	0.00413888113767	0.00356954243493
+UniRef50_UPI000429F6B2	hypothetical protein	3.6542628731e-06	1.74606430983e-05	1.38063802252e-05
+UniRef50_X1F770	Marine sediment metagenome DNA, contig	8.08838336464e-05	6.07813619599e-05	-2.01024716865e-05
+UniRef50_UPI000219576D	homoserine dehydrogenase	4.89841567849e-06	0.000159486969502	0.000154588553824
+UniRef50_Q9RYT7	Glucan synthase 1 related protein	0.000694443904091	0.0417365707965	0.0410421268924
+UniRef50_G8WNN7		2.88831785182e-05	1.77726240881e-05	-1.11105544301e-05
+UniRef50_S5STQ7	Fasciclin domain containing protein	0.000118444829756	2.09622244584e-05	-9.74826052976e-05
+UniRef50_P67431	HTH type transcriptional repressor NemR	0.00144142290001	0.000643261798562	-0.000798161101448
+UniRef50_Q92UB9		0.000213689721651	0.000101976277451	-0.0001117134442
+UniRef50_UPI000373D358	ferredoxin	7.87599171331e-06	8.69597216458e-06	8.1998045127e-07
+UniRef50_T1ZVD1	Two component system response regulator	0.00303100255673	0.00109195141113	-0.0019390511456
+UniRef50_Q7MUW1	UDP N acetylglucosamine 1 carboxyvinyltransferase	3.09593099145e-05	0.00708961575346	0.00705865644355
+UniRef50_A1KL82	Phosphoadenosine phosphosulfate reductase	8.67140763045e-06	1.08911020707e-05	2.21969444025e-06
+UniRef50_U9V3J0		0.000105983478365	0.000183511548505	7.752807014e-05
+UniRef50_Q5HNJ1		0.00920845685419	0.00274938243779	-0.0064590744164
+UniRef50_P40131	Flagella basal body P ring formation protein FlgA	0.00301986461335	0.00294140362215	-7.84609912e-05
+UniRef50_F0LTE4		2.80164479065e-05	3.32849731e-05	5.2685251935e-06
+UniRef50_M7CYB4	40K cell wall protein	0.00251880346255	0.00167084964205	-0.0008479538205
+UniRef50_A6M2E1		0.000549133561104	0.000460076405293	-8.9057155811e-05
+UniRef50_Q1RF99		0.00366473942394	0.000346814498151	-0.00331792492579
+UniRef50_UPI0003771A5E	hypothetical protein	5.32801363756e-05	1.95735016213e-05	-3.37066347543e-05
+UniRef50_Q9I2Q2	Methionine synthase	0.00096728335384	0.00367943663333	0.00271215327949
+UniRef50_P52690	HTH type transcriptional regulator CbbR	0.00241162990167	0.000438140473143	-0.00197348942853
+UniRef50_O05508	6 phospho beta glucosidase GmuD	0.000595633453839	0.00703651462641	0.00644088117257
+UniRef50_Q9K8D9	Non canonical purine NTP pyrophosphatase	1.14005894289e-05	1.1083631629e-05	-3.169577999e-07
+UniRef50_F3U3U4	Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein	0.0120934555519	0.0029230151804	-0.0091704403715
+UniRef50_A0AZ30	Extracellular solute binding protein, family 1	0.000235638738697	0.000277292680931	4.1653942234e-05
+UniRef50_UPI000373D0A7	Cro Cl family transcriptional regulator	0.000263274183169	3.08135301128e-05	-0.000232460653056
+UniRef50_S8AV33		4.483542443e-06	1.00492511852e-05	5.5657087422e-06
+UniRef50_A0ZA13	Putative restriction  modification enzyme	4.40571262719e-06	0.00106757328176	0.00106316756913
+UniRef50_Q8CSP4	UPF0291 protein SE_1024	0.00281641523841	0.000757222321012	-0.0020591929174
+UniRef50_B4RJ27		0.0113245796655	0.000418888943548	-0.010905690722
+UniRef50_D5WAU2	PTS system, N acetylglucosamine specific IIBC subunit	0.000712163215026	0.000380211470956	-0.00033195174407
+UniRef50_A0A014MC25		2.87616065281e-06	3.9996132031e-06	1.12345255029e-06
+UniRef50_UPI0003A406BC	hemolysin expression modulating protein	5.170654259e-06	1.67924535321e-06	-3.49140890579e-06
+UniRef50_B2IN54	Transketolase, N terminal subunit	0.000136276530269	0.00516618448885	0.00502990795858
+UniRef50_UPI0002481BB1	IS21 family transposase	1.05492138374e-05	2.0882851266e-05	1.03336374286e-05
+UniRef50_UPI00036B09EF	hypothetical protein, partial	3.69651666798e-05	0.000102180903294	6.52157366142e-05
+UniRef50_Q1R597	Hemin import ATP binding protein HmuV	9.53441855938e-06	0.000264640029823	0.000255105611264
+UniRef50_G7WK52		6.71158065137e-05	1.81039186132e-05	-4.90118879005e-05
+UniRef50_X5MEU2		6.64915406564e-06	1.12089597094e-05	4.55980564376e-06
+UniRef50_E8SKH8	Sucrose 6 phosphate hydrolase	0.012245056035	0.00357003316047	-0.00867502287453
+UniRef50_A0A011MXQ2	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.14087161398e-05	8.13246242588e-05	6.9915908119e-05
+UniRef50_A6LVK7	MATE efflux family protein	0.000165165424372	0.00109878632124	0.000933620896868
+UniRef50_Q03MN5	Adapter protein MecA	0.00396535296489	0.00113808286303	-0.00282727010186
+UniRef50_UPI0003629460	hypothetical protein, partial	3.23843943629e-05	0.000102480998873	7.00966045101e-05
+UniRef50_B7V3W3		6.41374026635e-06	0.000611000079721	0.000604586339455
+UniRef50_UPI00037C96DC	hypothetical protein	1.41818810768e-05	0.00246742207071	0.00245324018963
+UniRef50_R5QE34		0.000774967509291	0.00175508227294	0.000980114763649
+UniRef50_UPI00037C173A	hypothetical protein	5.92563212473e-05	1.93384438881e-05	-3.99178773592e-05
+UniRef50_UPI000440CBE5	PREDICTED	2.82233774435e-05	2.72593175217e-05	-9.640599218e-07
+UniRef50_G7U7Z2		8.93105651832e-05	0.00519012666675	0.00510081610157
+UniRef50_R5DNX0		0.000391212435035	0.00278794453153	0.00239673209649
+UniRef50_Q6MLR5	Ribonuclease 3	1.35811221478e-05	2.82851882375e-05	1.47040660897e-05
+UniRef50_UPI0003693C86	hypothetical protein	6.35675969136e-05	2.30734208503e-05	-4.04941760633e-05
+UniRef50_F5LZD2	Acetyltransferase	0.00332971789401	0.000381875049823	-0.00294784284419
+UniRef50_W8VP54	UPF0246 protein NMS_0251	1.09554499746e-05	2.08872897523e-05	9.9318397777e-06
+UniRef50_U6MRR8		6.21887955241e-05	9.73036919865e-05	3.51148964624e-05
+UniRef50_Q9RZC4	1 pyrroline 5 carboxylate dehydrogenase, putative	0.000546758895691	0.0523921647194	0.0518454058237
+UniRef50_P0AGI6	Xylose transport system permease protein XylH	0.00378210868293	0.000412792137545	-0.00336931654538
+UniRef50_U5PB97	Glutamyl tRNA synthetase	0.00432578052004	0.000871814643229	-0.00345396587681
+UniRef50_A8AYG2	ATP synthase gamma chain	0.00439785881599	0.00283511350248	-0.00156274531351
+UniRef50_A0A038G154		1.16109959176e-05	7.04091700241e-05	5.87981741065e-05
+UniRef50_M7DT58	Deacetylase	0.00492163425208	0.00109610117315	-0.00382553307893
+UniRef50_D3QIY9	Glutamate ABC transporter, periplasmic glutamine binding protein	0.0158632106534	0.00295388358511	-0.0129093270683
+UniRef50_A6LR18	ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein	0.000526565872226	0.000758452088735	0.000231886216509
+UniRef50_A0A025E7F4		0.000120966951921	8.27654050994e-05	-3.82015468216e-05
+UniRef50_Q9LU86	Peroxiredoxin Q, chloroplastic	1.19782465211e-05	0.000916667406568	0.000904689160047
+UniRef50_A5E987	Fructose 1,6 bisphosphatase class 1 1	0.000128056370821	3.72406398993e-05	-9.08157309217e-05
+UniRef50_C4LJK5	ABC type transport system, ATP binding protein	0.000393362768441	0.00629190023714	0.0058985374687
+UniRef50_UPI00046997D0	hypothetical protein	1.7446033867e-06	1.49778236965e-05	1.32332203098e-05
+UniRef50_A6LSX7	Adenine deaminase	0.000390590005447	0.000646741153082	0.000256151147635
+UniRef50_UPI00034A4595	hypothetical protein	2.04866504055e-05	3.46718720494e-05	1.41852216439e-05
+UniRef50_UPI0004696A10	tRNA hydroxylase	1.56556273912e-05	2.18607988315e-05	6.2051714403e-06
+UniRef50_T6AKZ2		5.00290209738e-05	0.000101547192284	5.15181713102e-05
+UniRef50_A3K6W1		3.77386141128e-05	2.96290545696e-05	-8.1095595432e-06
+UniRef50_D6XR13		5.23075273197e-05	0.00398883695534	0.00393652942802
+UniRef50_F5M2N9		0.000118986889085	5.24528466247e-05	-6.65340424603e-05
+UniRef50_I7E227	Uroporphyrinogen III C methyltransferase CobA	0.000982777380713	0.000267658645188	-0.000715118735525
+UniRef50_A0A026W2G8	Activating molecule in BECN1 regulated autophagy protein	1.76344471275e-06	6.99891317187e-05	6.8225687006e-05
+UniRef50_UPI000402E7C3	oxidoreductase	2.77480007274e-05	0.00706136052445	0.00703361252372
+UniRef50_UPI00036AC882	hypothetical protein	9.75021042822e-05	3.95773845017e-05	-5.79247197805e-05
+UniRef50_I3TXU6	TRAP type bacterial extracellular solute binding protein	0.0111613860287	0.0016406262168	-0.0095207598119
+UniRef50_W1WFT4	Replication initiation protein 	0.00014243337495	9.92567952405e-05	-4.31765797095e-05
+UniRef50_Q1GIZ8	Aspartate  tRNA ligase	0.00662754870603	0.00193816653781	-0.00468938216822
+UniRef50_UPI000464CCF6	resolvase	5.30985347139e-05	1.12095490788e-05	-4.18889856351e-05
+UniRef50_UPI0003B3855E	DNA polymerase I	1.65221542737e-06	2.21415119839e-05	2.04892965565e-05
+UniRef50_A6U4E8	Immunoglobulin binding protein sbi	0.00909314306788	0.00221084047587	-0.00688230259201
+UniRef50_Q5HPB4	Peptide methionine sulfoxide reductase MsrB	0.00314368509729	0.0011824198187	-0.00196126527859
+UniRef50_O85746	Tyrosine aminotransferase	0.00118397839161	0.000616044718624	-0.000567933672986
+UniRef50_UPI00041C01EF	peptidase M24	5.68186963466e-06	2.3489824758e-05	1.78079551233e-05
+UniRef50_UPI00022CAD53	PREDICTED	1.70320619322e-06	1.18721135705e-06	-5.1599483617e-07
+UniRef50_A7ZJI0	Tail fiber assembly protein	0.0108648743134	0.0018719813004	-0.008992893013
+UniRef50_A6LXY5	PAS PAC sensor hybrid histidine kinase	0.000710881334768	0.000690490674175	-2.0390660593e-05
+UniRef50_O83716	Purine nucleoside phosphorylase DeoD type	3.80737109731e-05	0.000228463138887	0.000190389427914
+UniRef50_UPI000273D5E4		8.06047579756e-06	0.00021674505538	0.000208684579582
+UniRef50_Q6FAN6		0.000116030529356	0.00706817677985	0.00695214625049
+UniRef50_C8N6A0	LemA family protein	2.37146347418e-05	1.50537493024e-05	-8.6608854394e-06
+UniRef50_C0SP91	Putative metallo hydrolase YycJ	0.0059701333986	0.00472848586651	-0.00124164753209
+UniRef50_UPI0004009357	ABC transporter permease	5.61307505546e-05	4.02772636529e-05	-1.58534869017e-05
+UniRef50_D6SHS5	Superantigen like protein	0.0294014747932	0.00469776743425	-0.024703707359
+UniRef50_A5UP87	N acetyltransferase, GNAT family	0.00328994806436	0.000827990762236	-0.00246195730212
+UniRef50_I3X1B7		0.000341657291347	0.000145268216702	-0.000196389074645
+UniRef50_B9KU34		0.00506972607126	0.00113375529374	-0.00393597077752
+UniRef50_Q8CQE1	Galactosamine containing minor teichoic acid biosynthesis protein	0.00731330278401	0.00413177683041	-0.0031815259536
+UniRef50_A1B9G9		0.00103895226289	0.000932579069031	-0.000106373193859
+UniRef50_A1WWL1	Diguanylate cyclase	2.37141620992e-06	4.7065936787e-05	4.46945205771e-05
+UniRef50_F0RQZ8	Xanthine dehydrogenase	0.000132347230999	0.0518109109646	0.0516785637336
+UniRef50_UPI00036CA33F	hypothetical protein	1.29876350145e-05	6.12867001272e-05	4.82990651127e-05
+UniRef50_A3PS71		0.0164538242589	0.00453308888517	-0.0119207353737
+UniRef50_UPI00045DD9A4	PREDICTED	0.000105400200103	1.44018756062e-05	-9.09983244968e-05
+UniRef50_UPI00035DAB70	hypothetical protein	1.70543161241e-05	2.62506918605e-05	9.1963757364e-06
+UniRef50_W7VIZ6	Basic proline rich protein	8.27424182141e-05	1.11261341999e-05	-7.16162840142e-05
+UniRef50_UPI0003681CA6	hypothetical protein	1.4334545561e-05	1.85063630302e-05	4.1718174692e-06
+UniRef50_D2YBW7	Diheme cytochrome c napB	0.000253269676065	6.93418983279e-05	-0.000183927777737
+UniRef50_G7MCB1	Transcriptional regulator, TrmB	0.000314326432122	0.00190502167396	0.00159069524184
+UniRef50_C6SRE9		0.00839404669527	0.00167206291721	-0.00672198377806
+UniRef50_N0AYA8	Two component system histidine kinase	0.00045504421599	0.00247691041382	0.00202186619783
+UniRef50_UPI0003A4D539	single stranded DNA binding protein	2.03435711702e-05	0.000627041220709	0.000606697649539
+UniRef50_UPI000473EB9F	mannose 1 phosphate guanyltransferase	1.18458435673e-05	1.74095454824e-05	5.5637019151e-06
+UniRef50_Q9ZKQ7		0.000404984233366	0.00392456101917	0.0035195767858
+UniRef50_Q0STN1	Undecaprenyl diphosphatase	4.68307320182e-06	0.00255352352906	0.00254884045586
+UniRef50_UPI000471BD1E	hypothetical protein, partial	0.000101889926055	0.000125993715289	2.4103789234e-05
+UniRef50_UPI000368EF4F	hypothetical protein	1.11711766716e-05	5.04437662606e-05	3.9272589589e-05
+UniRef50_Q9HJD0	30S ribosomal protein S8e	0.0140865472567	0.000653837723686	-0.013432709533
+UniRef50_UPI00045E5CBA	hypothetical protein	8.36411397894e-05	7.0054188276e-06	-7.66357209618e-05
+UniRef50_B2A3L9	Ribosomal RNA small subunit methyltransferase A	3.92596257346e-06	2.14329643068e-05	1.75070017333e-05
+UniRef50_UPI000375EF4E	hypothetical protein, partial	1.15158799917e-05	1.47314053896e-05	3.2155253979e-06
+UniRef50_Q2FXB1	Leucotoxin LukDv	0.0179290368545	0.00202877877544	-0.0159002580791
+UniRef50_P25306	Threonine dehydratase biosynthetic, chloroplastic	2.49259204348e-06	2.18103275469e-05	1.93177355034e-05
+UniRef50_U5MTT7	Cobalamin  biosynthesis CbiG protein	0.000202590450364	0.000507184923003	0.000304594472639
+UniRef50_UPI00031889A3	hypothetical protein	7.69021900174e-05	3.45626194629e-05	-4.23395705545e-05
+UniRef50_A1A025	Response regulator of two component system	0.000289631193489	0.00526341721738	0.00497378602389
+UniRef50_P75870	Inner membrane protein YccS	0.00340103413391	0.00157170744406	-0.00182932668985
+UniRef50_D1JNF2		6.60965481282e-05	1.18849786294e-05	-5.42115694988e-05
+UniRef50_I3X1L2	Transposase IS4 family protein	9.85580828551e-05	2.25051506874e-05	-7.60529321677e-05
+UniRef50_S5XKW1	Spermidine putrescine transport system, permease protein	0.00543322661624	0.000957848300693	-0.00447537831555
+UniRef50_P75750		0.00216783657664	0.00122312783156	-0.00094470874508
+UniRef50_A0A059LQ22		7.37708033943e-05	2.23090742277e-05	-5.14617291666e-05
+UniRef50_UPI00047BA782	major facilitator transporter	1.56422557579e-05	9.26174175117e-06	-6.38051400673e-06
+UniRef50_Q6FB59		0.000725934593951	0.00254128430164	0.00181534970769
+UniRef50_B7KX11	Alkanesulfonate monooxygenase	2.45750219016e-05	3.23122850483e-05	7.7372631467e-06
+UniRef50_K6S6A5	FliK family flagellar hook length control protein	4.923749642e-05	0.000221764734821	0.000172527238401
+UniRef50_UPI000476116B	50S ribosomal protein L35	0.000397915029565	0.00117914589748	0.000781230867915
+UniRef50_Q63IW3	ATP synthase subunit beta 2	1.7290998333e-06	1.11845092581e-05	9.4554094248e-06
+UniRef50_W1GG81		0.000296919065399	0.000535085236243	0.000238166170844
+UniRef50_A3KA49		0.000210034677438	4.00546546175e-05	-0.000169980022821
+UniRef50_B7RRM5	Cobyrinic Acid a,c diamide synthase	2.83039208439e-05	5.10816816179e-05	2.2777760774e-05
+UniRef50_Q67JT3	DNA directed RNA polymerase subunit beta	9.13658208948e-06	7.23888808761e-06	-1.89769400187e-06
+UniRef50_C7RN78		0.000948100370406	0.00117933524061	0.000231234870204
+UniRef50_M4R3U4	Metal dependent hydrolase	0.0003380471542	0.00710377809483	0.00676573094063
+UniRef50_V3BAW5	Anhydro N acetylmuramic acid kinase	0.000388720110795	0.000322163678398	-6.6556432397e-05
+UniRef50_UPI000364C8A1	hypothetical protein	3.60467761102e-05	1.61039445405e-05	-1.99428315697e-05
+UniRef50_A0A009MS46		0.000199536650972	5.4874074367e-05	-0.000144662576605
+UniRef50_P0AE22	Class B acid phosphatase	0.00194943127979	0.00128648064215	-0.00066295063764
+UniRef50_A1B792		0.000352210275884	0.000154892117939	-0.000197318157945
+UniRef50_Q75ZQ6	Urease subunit beta	4.28949757783e-05	3.34697297219e-05	-9.4252460564e-06
+UniRef50_A6W1Y7		0.00158403141371	0.000222773839728	-0.00136125757398
+UniRef50_UPI000373FA13	hypothetical protein	3.08929098158e-05	1.39816766072e-05	-1.69112332086e-05
+UniRef50_P0DMC6	Sensor histidine kinase RcsC	0.00338164222019	0.000960718495971	-0.00242092372422
+UniRef50_D4HFJ2	Helicase C terminal domain protein	0.000213016647942	0.00530437620506	0.00509135955712
+UniRef50_E1Q5C1	DNA topoisomerase I 	0.000117383764465	0.00181639739265	0.00169901362818
+UniRef50_Q9HJX7	ATP dependent DNA helicase Hel308	1.88132706411e-06	2.64834497024e-06	7.6701790613e-07
+UniRef50_I4D6H8	Multimeric flavodoxin WrbA	0.00179506995036	0.00121082539983	-0.00058424455053
+UniRef50_C6SQM5		0.00407628133728	0.00146563362355	-0.00261064771373
+UniRef50_B0V6S4		0.00437947145346	0.00972876671746	0.005349295264
+UniRef50_F7QL87	ATPase	0.000718037339298	0.00772760155004	0.00700956421074
+UniRef50_A3PPZ7	Peptidase S14, ClpP	0.00306368231745	0.000227458309521	-0.00283622400793
+UniRef50_R1G067		5.12577568022e-05	9.09519488068e-05	3.96941920046e-05
+UniRef50_D1BEK3		2.82563433063e-05	1.60802066943e-05	-1.2176136612e-05
+UniRef50_A1B788		0.000130713680585	5.28374117003e-05	-7.78762688847e-05
+UniRef50_A6VEE0		0.000729141860105	2.28337855193e-05	-0.000706308074586
+UniRef50_P23524	Glycerate 2 kinase	0.00610913276015	0.0012034699133	-0.00490566284685
+UniRef50_W1VWR4		0.00439283413576	0.00111401656501	-0.00327881757075
+UniRef50_UPI0003A482DB	hypothetical protein	7.76121257196e-05	6.68300777921e-05	-1.07820479275e-05
+UniRef50_UPI00035CB5E5	hypothetical protein	1.04888995338e-05	8.37631530297e-06	-2.11258423083e-06
+UniRef50_B4EXS5	UPF0225 protein PMI1492	2.45986825836e-05	0.00210466639836	0.00208006771578
+UniRef50_F0VYF6		0.000424141560512	0.000535317290393	0.000111175729881
+UniRef50_P0AEH2	Regulator of sigma E protease	0.00154921740244	0.00112850136484	-0.0004207160376
+UniRef50_Q1QMX7		0.000227430106357	0.000133764284384	-9.3665821973e-05
+UniRef50_I0C4V2	ComE operon protein 1	0.00411442192742	0.000262503737955	-0.00385191818947
+UniRef50_Q1H4N6	50S ribosomal protein L4	0.000377485988848	0.00735884208256	0.00698135609371
+UniRef50_P00873	Ribulose bisphosphate carboxylase small chain 1, chloroplastic	4.56176261594e-05	2.43032277143e-05	-2.13143984451e-05
+UniRef50_N8WZK4		5.35845233426e-06	2.30277162078e-05	1.76692638735e-05
+UniRef50_B5XSA9	Oxidoreductase, short chain dehydrogenase reductase family	7.59666807941e-06	1.13641394713e-05	3.76747139189e-06
+UniRef50_Q4L8E8	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0111238944366	0.00335348774375	-0.00777040669285
+UniRef50_F6BZ95		0.00011248480378	0.000238086708974	0.000125601905194
+UniRef50_K0C6H8	DoxX subfamily, putative	2.14604877026e-05	1.26213188628e-05	-8.8391688398e-06
+UniRef50_Q49WX9	Bifunctional protein PyrR	0.0183868583325	0.000382525994494	-0.018004332338
+UniRef50_M9RDG8	Monovalent cation proton antiporter subunit E	0.00426433096322	0.0049701414203	0.00070581045708
+UniRef50_O26901	ATP dependent DNA helicase Hel308	0.00321383427874	0.000355311866629	-0.00285852241211
+UniRef50_UPI00036A3BE1	hypothetical protein	1.93616255419e-05	4.08537668264e-06	-1.52762488593e-05
+UniRef50_S6B942		0.00439287586572	0.00233420865266	-0.00205866721306
+UniRef50_D5ARY7	Ferredoxin 4	0.00670905393495	0.00828435332543	0.00157529939048
+UniRef50_R3N2B8		0.000807874812632	0.000285102694652	-0.00052277211798
+UniRef50_UPI000308B01A	hypothetical protein	2.0075470761e-05	6.21853001399e-05	4.21098293789e-05
+UniRef50_P0CZ01	Hyaluronate lyase	0.000229678701724	0.00554886435555	0.00531918565383
+UniRef50_U5WBY0		8.41171942477e-06	0.000566174241381	0.000557762521956
+UniRef50_UPI0003144775	hypothetical protein	4.02352715105e-05	4.79159962661e-06	-3.54436718839e-05
+UniRef50_F6IG84	Cytochrome bd I oxidase subunit II	0.0075591224677	0.000496724435711	-0.00706239803199
+UniRef50_UPI00037B64B8	MULTISPECIES	1.38279815526e-05	0.000115141254818	0.000101313273265
+UniRef50_V5UAT4		1.53903132023e-05	0.00105492658608	0.00103953627288
+UniRef50_B9DSE2	Nucleoside diphosphate kinase	0.000641639841415	0.00228384599567	0.00164220615426
+UniRef50_UPI00045E79E3	hypothetical protein	5.37228520641e-05	2.90685023434e-05	-2.46543497207e-05
+UniRef50_A7ZSB8	N acetylneuraminate lyase	0.00343359952519	0.000704998718977	-0.00272860080621
+UniRef50_UPI0003B7208F	D alanyl D alanine carboxypeptidase	5.76401753535e-06	7.05048030589e-06	1.28646277054e-06
+UniRef50_X7XV22	Carbon starvation CstA family protein	0.00172810748046	0.000962989256073	-0.000765118224387
+UniRef50_UPI00036BCED8	hypothetical protein, partial	4.7738885768e-05	8.96246704021e-06	-3.87764187278e-05
+UniRef50_UPI0004775FD4	hypothetical protein	1.98354945263e-05	5.90370745081e-05	3.92015799818e-05
+UniRef50_UPI00036B23BD	hypothetical protein	1.20327556528e-05	0.000155772354544	0.000143739598891
+UniRef50_I1ELS0		1.43578379565e-05	4.95685120259e-05	3.52106740694e-05
+UniRef50_F0KJ61	Triacylglycerol lipase	0.000408341505389	0.00589555088389	0.0054872093785
+UniRef50_UPI0003B4CFA2	organic solvent ABC transporter ATP binding protein	0.000134952951007	4.63545033225e-05	-8.85984476845e-05
+UniRef50_Q6LPK7	Tetraacyldisaccharide 4 kinase	0.00191029905011	0.000378611160516	-0.00153168788959
+UniRef50_E8SFD5	Glycosyl transferase, group 1 family protein	0.00855406148252	0.00322640850895	-0.00532765297357
+UniRef50_B4U3U9	CRISPR associated endonuclease Cas9	0.00202458637509	0.00102306632804	-0.00100152004705
+UniRef50_H6PCS0	Transcriptional regulator CtsR	0.0103867646377	0.00690546396424	-0.00348130067346
+UniRef50_UPI0001E45F6A	ribonucleoside diphosphate reductase large subunit	1.54834830785e-06	9.90408488689e-05	9.74925005611e-05
+UniRef50_Q0BVI1		0.000143449969431	5.03850937891e-05	-9.30648756419e-05
+UniRef50_UPI00047AB688	acetylglutamate kinase	1.50471081807e-05	7.76887581462e-06	-7.27823236608e-06
+UniRef50_Q49YR8	Regulatory protein RecX	0.0178162515421	0.00237197770734	-0.0154442738348
+UniRef50_P0ABL2	Cytochrome c type protein NrfB	0.00739411113053	0.000338148899085	-0.00705596223145
+UniRef50_E3GWD7	Protease HtpX homolog	0.0031517637598	0.00200922138604	-0.00114254237376
+UniRef50_UPI00045E5DCC	potassium transporter	9.84963377248e-06	7.95375046273e-06	-1.89588330975e-06
+UniRef50_Q89A97	Multidrug resistance like ATP binding protein MdlA	3.27774448276e-06	1.22093464067e-05	8.93160192394e-06
+UniRef50_F0P8I6	Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.0218235052572	0.0053872846236	-0.0164362206336
+UniRef50_A0A021ZS12	Sigma 54 interaction domain protein	9.53233844019e-05	0.00444882215008	0.00435349876568
+UniRef50_Q9RVT7	Phosphatase, putative	0.000154919010474	0.0062461825796	0.00609126356913
+UniRef50_UPI00037BA24E	hypothetical protein	4.05189770433e-05	1.06670386595e-05	-2.98519383838e-05
+UniRef50_X2HYV0	Membrane protein	0.000227443927303	0.00801624657513	0.00778880264783
+UniRef50_UPI0004765AD1	uracil phosphoribosyltransferase	1.64612520206e-05	1.29993797886e-05	-3.461872232e-06
+UniRef50_P33011	Inner membrane protein YeeA	0.00191924795484	0.000939887594835	-0.000979360360005
+UniRef50_D4J5A0	Diaminopropionate ammonia lyase	0.000148616531043	0.00231589532608	0.00216727879504
+UniRef50_V9X5Q7		0.000320686713861	0.000495848722607	0.000175162008746
+UniRef50_Q08NT1		0.000278663593588	0.000125879134208	-0.00015278445938
+UniRef50_S9QSJ6	Flagellar basal body rod protein FlgF	2.55431284064e-05	9.62544174455e-06	-1.59176866618e-05
+UniRef50_E8PDG9	Malonyl CoA acyl carrier protein transacylase	0.000631245598596	0.00894979405408	0.00831854845548
+UniRef50_Q2P2V7	Uracil phosphoribosyltransferase	3.74603305623e-05	0.00011386551743	7.64051868677e-05
+UniRef50_T2A0W0	Relaxase mobilization nuclease family protein	0.000435596809792	0.00364149178266	0.00320589497287
+UniRef50_Q9RWN1	ATP dependent 6 phosphofructokinase	0.000362976996892	0.0190868843352	0.0187239073383
+UniRef50_E3GYU4	Aspartokinase	0.00219809712539	0.00139061755471	-0.00080747957068
+UniRef50_C7QHR1		0.0001496380278	0.00013069160053	-1.894642727e-05
+UniRef50_C3L0M2		0.000122826243664	0.00107381524158	0.000950988997916
+UniRef50_Q2JMP1	N acetylmuramic acid 6 phosphate etherase	7.11773760817e-06	1.25219884039e-05	5.40425079573e-06
+UniRef50_C5MZE1	Transporter, major facilitator family protein	0.0213299595402	0.00574093319301	-0.0155890263472
+UniRef50_C1DMN0	TonB dependent receptor	0.00048222452949	0.000478324356414	-3.900173076e-06
+UniRef50_UPI00036664BA	hypothetical protein	0.000244697046844	3.51077178488e-05	-0.000209589328995
+UniRef50_E3YDC7	Cell surface protein	5.69376769557e-05	0.000722171784474	0.000665234107518
+UniRef50_P14657	NADP specific glutamate dehydrogenase	9.6529513493e-05	0.00078652287375	0.000689993360257
+UniRef50_Q836R3	ATP dependent 6 phosphofructokinase	2.21380964635e-05	0.00101718699878	0.000995048902316
+UniRef50_Q0SHI1		0.00017498239613	0.00130357638981	0.00112859399368
+UniRef50_F5WYS7	ICESt1 ORFJ phage replication initiation factor	0.00783328810583	0.00238044796904	-0.00545284013679
+UniRef50_UPI000365D96C	hypothetical protein, partial	5.69037695561e-05	3.03873040304e-05	-2.65164655257e-05
+UniRef50_B8RD42	Cell wall surface anchor family protein,putative	0.000275354258771	0.00424143432964	0.00396608007087
+UniRef50_H1UU45	Dehydrogenase	0.000303306343316	4.40802117711e-05	-0.000259226131545
+UniRef50_L2ZHW9	3 propionate 3 hydroxycinnamic acid hydroxylase	0.00270627328175	0.000844980506742	-0.00186129277501
+UniRef50_UPI0001FFE295	hypothetical protein, partial	1.1163660231e-05	0.000129314284034	0.000118150623803
+UniRef50_M9R1X4		0.000113904183495	9.38082347389e-05	-2.00959487561e-05
+UniRef50_G7U5K4	6 phosphogluconate dehydrogenase, decarboxylating	8.19434129148e-05	0.00501170805201	0.0049297646391
+UniRef50_F5XWG5	1 aminocyclopropane 1 carboxylate deaminase like protein	7.94135899906e-06	0.000181547154827	0.000173605795828
+UniRef50_G7M6Z9	Nitroreductase	0.000202224636884	0.00110486271177	0.000902638074886
+UniRef50_S9RGW6	Flagellar protein FlgJ, putative	0.000109133365762	7.21534205673e-05	-3.69799451947e-05
+UniRef50_J7Q7T7	Escherichia coli IMT2125 genomic chromosome, IMT2125	0.00279812969814	0.000290475447734	-0.00250765425041
+UniRef50_X1YKD9		1.03915442628e-06	6.49158211296e-06	5.45242768668e-06
+UniRef50_C4ZPZ7	2 isopropylmalate synthase	0.00174834644778	0.00381975267088	0.0020714062231
+UniRef50_UPI0003FD05D8	methyltransferase	8.2566666434e-06	1.37996021107e-05	5.5429354673e-06
+UniRef50_P73283	3 oxoacyl [acyl carrier protein] synthase 2	1.06163200464e-05	0.00373554944781	0.00372493312776
+UniRef50_UPI00047C3DCE	hypothetical protein	1.19588774697e-05	2.07111890933e-05	8.7523116236e-06
+UniRef50_T0U8G3	ABC transporter membrane spanning permease,Pepexport, Vex3	0.000315339163609	0.00693141239577	0.00661607323216
+UniRef50_P38487	Creatinase	0.00560204074941	0.0035867774779	-0.00201526327151
+UniRef50_UPI0002DD21FE	hypothetical protein	4.3163189773e-06	7.6953031504e-06	3.3789841731e-06
+UniRef50_O26938	Aspartate carbamoyltransferase regulatory chain	0.00382011835841	0.000828545781828	-0.00299157257658
+UniRef50_UPI0003F6906F	chromosome partitioning protein ParB	4.97853629937e-05	0.000562060687001	0.000512275324007
+UniRef50_B4U896	Glutamate  tRNA ligase	2.73440161091e-05	5.19232175659e-06	-2.21516943525e-05
+UniRef50_Q7W4F7	Exported protein, conserved	0.00071109708681	0.000417382025963	-0.000293715060847
+UniRef50_D5BUA3	ABC transporter related protein	0.00326787070476	0.000976162663273	-0.00229170804149
+UniRef50_UPI00046CCD8A	ABC transporter permease	2.19728964625e-05	5.93436676277e-05	3.73707711652e-05
+UniRef50_F5XE95		0.00041120503439	0.00517475755317	0.00476355251878
+UniRef50_W2RQC0		5.03301536757e-05	1.87905659224e-05	-3.15395877533e-05
+UniRef50_UPI0002FFACA2	hypothetical protein	0.000154590807554	9.04086232071e-06	-0.000145549945233
+UniRef50_P09155	Ribonuclease D	0.00310989566436	0.000894509407104	-0.00221538625726
+UniRef50_F7TB61		9.23717369889e-06	7.94762672591e-05	7.02390935602e-05
+UniRef50_U5UU73		1.31476483582e-05	3.70007523029e-05	2.38531039447e-05
+UniRef50_UPI000420A761	hypothetical protein	9.63526148386e-06	1.50608592116e-05	5.42559772774e-06
+UniRef50_D1ZK87	Putative glutathione dependent formaldehyde activating enzyme	5.37317947109e-05	1.58691702405e-05	-3.78626244704e-05
+UniRef50_P46883	Primary amine oxidase	0.000430447438042	0.00834939671573	0.00791894927769
+UniRef50_UPI000350E610	PREDICTED	0.000510631361184	0.000138984926458	-0.000371646434726
+UniRef50_A3VBF6		0.000115721545935	0.000130353387106	1.4631841171e-05
+UniRef50_Q9K5Z9	L lactate permease	0.0178858488396	0.00371892939163	-0.014166919448
+UniRef50_UPI00041F2A30	hypothetical protein	4.07855854392e-06	6.02067076227e-06	1.94211221835e-06
+UniRef50_F2JYP7	ABC type transporter, integral membrane subunit	0.0119315065095	0.00330279874024	-0.00862870776926
+UniRef50_I0JKD6	PTS system subunit IIBC, sucrose specific	0.000362061334526	0.00113514792284	0.000773086588314
+UniRef50_W5XHN2	Transcriptional regulator, TetR family protein	9.84179333564e-06	9.81540364225e-05	8.83122430869e-05
+UniRef50_UPI00045D68F4	PREDICTED	4.60160852434e-06	5.32605149678e-06	7.2444297244e-07
+UniRef50_Q02001	Anthranilate synthase component 1	0.00494325793434	0.00674714315246	0.00180388521812
+UniRef50_R6U3E2		0.000420439547187	0.00117314225555	0.000752702708363
+UniRef50_UPI0003B74FC2	cysteine ABC transporter ATP binding protein	2.30510851973e-06	1.91063263045e-06	-3.9447588928e-07
+UniRef50_F0VTI5	PAP2 superfamily protein	0.00316040102358	0.00137068093217	-0.00178972009141
+UniRef50_Q88U25	Phosphoribosylformylglycinamidine synthase 2	8.25343527651e-06	3.13155775601e-06	-5.1218775205e-06
+UniRef50_UPI0001FFDC7C	ABC transporter related protein	7.1875849203e-06	8.99677473195e-06	1.80918981165e-06
+UniRef50_K7PC03	Protein ORF84	2.67753614348e-06	7.85273384581e-06	5.17519770233e-06
+UniRef50_UPI000262CF31	Inner membrane arginine ABC transporter permease	2.08036860788e-05	2.24806086464e-05	1.6769225676e-06
+UniRef50_UPI000471B2C3	shikimate dehydrogenase	3.72360970222e-05	2.98841186511e-05	-7.3519783711e-06
+UniRef50_UPI0004296A6B	hypothetical protein	0.000254409842809	4.74171590767e-05	-0.000206992683732
+UniRef50_UPI0001746B76	phosphoesterase	0.000323008602159	5.70794340911e-05	-0.000265929168068
+UniRef50_M5M5H9		9.7681109195e-05	0.000119548765337	2.1867656142e-05
+UniRef50_Q17RH7	Putative protein TPRXL	9.75858962174e-06	0.000189929121446	0.000180170531824
+UniRef50_K5VC32	DbpA RNA binding domain protein	0.00102050253579	0.000193396277319	-0.000827106258471
+UniRef50_P0AGF5	D xylose proton symporter	0.00376501033886	0.00728549788606	0.0035204875472
+UniRef50_A5G222	Probable chemoreceptor glutamine deamidase CheD	0.000281929683594	4.07061121122e-05	-0.000241223571482
+UniRef50_D3QDT5	Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.0177948409229	0.00408032911698	-0.0137145118059
+UniRef50_G0DXL2		0.000279619251005	0.00653873175753	0.00625911250653
+UniRef50_UPI00018506DA	deaminase reductase	1.6408445698e-05	0.000183307190219	0.000166898744521
+UniRef50_P76197	Inner membrane transport protein YdiM	0.00352663138889	0.000422921676383	-0.00310370971251
+UniRef50_A0A036SNN0		0.00119922673337	0.000661156802679	-0.000538069930691
+UniRef50_A5URZ0	Acyl carrier protein	3.20604114223e-05	0.000427761578736	0.000395701167314
+UniRef50_UPI00030E7C94	2 hydroxychromene 2 carboxylate isomerase	7.6381222831e-05	4.82921907076e-05	-2.80890321234e-05
+UniRef50_Q3IW11	Transcriptional regulator, GntR family	0.00336050532178	0.00174465298557	-0.00161585233621
+UniRef50_A3PPE3	Transcriptional regulator, LysR family	0.00168406435424	0.00128892834653	-0.00039513600771
+UniRef50_UPI00047388A6	hypothetical protein	3.03055796526e-05	0.000137536690825	0.000107231111172
+UniRef50_Q9RUK6	Peptide methionine sulfoxide reductase MsrB	0.000562462718885	0.041807055848	0.0412445931291
+UniRef50_Q9RV85		0.000350606181596	0.0319835531981	0.0316329470165
+UniRef50_Q9RV87		7.86429143391e-05	0.00444088596534	0.004362243051
+UniRef50_O34962	Probable NAD dependent malic enzyme 4	0.00903731453972	0.00234722528041	-0.00669008925931
+UniRef50_A5ULC6		0.00249920729388	0.000202966807698	-0.00229624048618
+UniRef50_J7M8F1	Primosome assembly protein	0.00548627090681	0.00594719568269	0.00046092477588
+UniRef50_UPI0004743B0B	hypothetical protein	0.000205983643093	0.00010050569844	-0.000105477944653
+UniRef50_UPI000287DB6E	SAM dependent methyltransferase	4.94769690279e-05	0.000281221291895	0.000231744322867
+UniRef50_UPI00046CBCB9	hypothetical protein	0.000166328249934	9.1200999236e-05	-7.5127250698e-05
+UniRef50_UPI00026286FB	diaminopimelate decarboxylase, partial	1.79958794677e-05	0.00031747480366	0.000299478924192
+UniRef50_J4ZBB1	Thi4 domain protein	3.97313451552e-05	0.000162506827182	0.000122775482027
+UniRef50_Q58375	Uroporphyrinogen III C methyltransferase	2.09263771411e-05	1.7510230878e-05	-3.4161462631e-06
+UniRef50_E6MV57	IS1016 transposase	0.00109956281708	0.0128961755162	0.0117966126991
+UniRef50_D6ANF2		3.27902413874e-05	2.80000050768e-05	-4.7902363106e-06
+UniRef50_P50620	Ribonucleoside diphosphate reductase subunit alpha	2.33207863585e-05	0.0105337450598	0.0105104242734
+UniRef50_A2WGI8	NAD+ synthase	4.44168475247e-05	0.000236254262592	0.000191837415067
+UniRef50_UPI00046AEE41	DNA primase	2.82310310588e-06	5.84930903287e-06	3.02620592699e-06
+UniRef50_F2D1Z4	Predicted protein 	1.93701857578e-05	3.22336754564e-05	1.28634896986e-05
+UniRef50_D9XU96	Acyl CoA dehydrogenase 	4.55893221618e-05	1.09510953345e-05	-3.46382268273e-05
+UniRef50_G7ZFF7	L sorbosone dehydrogenase	0.000169974953242	0.00814947524231	0.00797950028907
+UniRef50_A7G768	Xanthine uracil permease family protein	0.000617210715738	0.00228331498838	0.00166610427264
+UniRef50_Q2RKZ1	Leucine  tRNA ligase	2.16391243741e-06	3.25280458312e-06	1.08889214571e-06
+UniRef50_X2H662	Phosphoserine phosphatase	0.000448506463151	0.00485508695572	0.00440658049257
+UniRef50_UPI00037ADDB6	hypothetical protein	0.000136399184889	9.34451728953e-05	-4.29540119937e-05
+UniRef50_V6AGZ8		0.00187106657422	0.00113820565751	-0.00073286091671
+UniRef50_UPI0003B424BE	hypothetical protein	3.57916747669e-05	0.000243700266574	0.000207908591807
+UniRef50_UPI0004641C50	hypothetical protein	0.000183992753957	0.000183962771599	-2.9982358e-08
+UniRef50_UPI000476CD71	isopentenyl diphosphate delta isomerase	4.73997051056e-05	1.97167031782e-05	-2.76830019274e-05
+UniRef50_UPI00035C2722	hypothetical protein	5.90057664396e-06	4.35390849935e-06	-1.54666814461e-06
+UniRef50_UPI00046890BA	hypothetical protein, partial	1.86430528546e-05	0.000119713313774	0.000101070260919
+UniRef50_A8ALR3	L carnitine gamma butyrobetaine antiporter	0.00285184827112	0.00101765236943	-0.00183419590169
+UniRef50_A0A017KTW4		5.62089307755e-05	5.0659646186e-05	-5.5492845895e-06
+UniRef50_A0QM11		8.06019904975e-05	6.38272764067e-05	-1.67747140908e-05
+UniRef50_B6IQY6	Sensor protein KdpD	9.84746802476e-05	6.81762305136e-05	-3.0298449734e-05
+UniRef50_Q6G7J6	UPF0340 protein SAS2017	0.0156920268588	0.00101874404479	-0.014673282814
+UniRef50_M5TC97		2.37826877082e-05	0.000785951750331	0.000762169062623
+UniRef50_UPI00036AD709	hypothetical protein	1.59772865959e-05	3.94836691946e-05	2.35063825987e-05
+UniRef50_O26153	Isopentenyl phosphate kinase	0.00231493231061	0.000499870145261	-0.00181506216535
+UniRef50_UPI00046CFDF2	hypothetical protein	1.29175491729e-06	3.74038496119e-06	2.4486300439e-06
+UniRef50_Q8ZN19	Pyridoxine 5 phosphate synthase	0.00308235140282	0.00429827166635	0.00121592026353
+UniRef50_Q720G3	Gamma glutamyl phosphate reductase	0.00702664100625	0.00598564018567	-0.00104100082058
+UniRef50_C7N3H3	Anion transporter	0.0237432144303	0.00452606239393	-0.0192171520364
+UniRef50_P00728	Thermophilic aminopeptidase 1 alpha chain 	0.0259971018651	0.00576076226005	-0.0202363396051
+UniRef50_U5MQF0	Transporter YbhF	0.00147167979232	0.00061644321569	-0.00085523657663
+UniRef50_UPI00036FB801	hypothetical protein	8.46303742568e-05	2.00647899842e-05	-6.45655842726e-05
+UniRef50_Q1IZ80	Potassium proton antiporter regulatory subunit, CPA2 family	0.000248346045292	0.00615760034536	0.00590925430007
+UniRef50_Q51416	ATP dependent protease ATP binding subunit like protein AmiB	0.000102857217666	0.000200214715383	9.7357497717e-05
+UniRef50_C3YC75		7.12178172882e-07	1.29775847779e-05	1.2265406605e-05
+UniRef50_UPI0002492D8D	transketolase	1.39747773338e-05	3.99072219756e-06	-9.98405513624e-06
+UniRef50_UPI0003EB3D8F	hypothetical protein	3.1132416975e-05	2.03299058961e-05	-1.08025110789e-05
+UniRef50_UPI000255D367	30S ribosomal protein S3	0.000272568388437	0.0008342153111	0.000561646922663
+UniRef50_UPI0003B5823D	dihydrolipoamide succinyltransferase	8.02500430363e-06	7.28996358487e-05	6.48746315451e-05
+UniRef50_I7B1F5	TRZ ATZ atrazine degradation family enzyme	0.000709962959227	0.0019546252697	0.00124466231047
+UniRef50_I6Q147	IS861, transposase OrfB	0.000341354307019	4.40172007309e-05	-0.000297337106288
+UniRef50_UPI00037D6715	hypothetical protein	3.31050893557e-05	8.70666870102e-06	-2.43984206547e-05
+UniRef50_D4HDK2	Transporter, anaerobic C4 dicarboxylate uptake  family	9.44502057218e-05	0.00591509023624	0.00582064003052
+UniRef50_Q5HQV6		0.00336412819943	0.000757222321012	-0.00260690587842
+UniRef50_Q94BZ7	DNA gyrase subunit B, mitochondrial	2.23729522668e-06	2.29406004848e-05	2.07033052581e-05
+UniRef50_P50840	Putative RNA methyltransferase YpsC	0.00533417924636	0.00512598869241	-0.00020819055395
+UniRef50_UPI0004728778	hypothetical protein	1.05616600714e-05	1.86145888181e-05	8.0529287467e-06
+UniRef50_A7FVN3	Carbon monoxide dehydrogenase	0.000143215453489	0.000722702766858	0.000579487313369
+UniRef50_L0GY09	AAA+ family ATPase	0.000288585029476	0.000140515482254	-0.000148069547222
+UniRef50_A6LVS2	Restriction endonuclease	0.000146075327188	0.000951492496194	0.000805417169006
+UniRef50_P66717	Probable DNA directed RNA polymerase subunit delta	0.00768516023522	0.0100705323525	0.00238537211728
+UniRef50_W5XBG0	Leucyl phenylalanyl tRNA  protein transferase	1.77021805482e-05	0.000115772129991	9.80699494428e-05
+UniRef50_R8ZDY1		0.00022010844831	0.000201352299003	-1.8756149307e-05
+UniRef50_UPI000477AEDD	pseudouridine synthase	9.91005262121e-05	2.05999857157e-05	-7.85005404964e-05
+UniRef50_X7E4C5		4.58701515345e-05	9.3596353762e-06	-3.65105161583e-05
+UniRef50_A6M139	von Willebrand factor, type A	0.000305807775304	0.00103322539793	0.000727417622626
+UniRef50_B7NKV9	Phosphoheptose isomerase	5.02882655277e-05	1.4970082601e-05	-3.53181829267e-05
+UniRef50_B9TEU6		1.50750497351e-05	0.000150617567623	0.000135542517888
+UniRef50_E8SHT3	Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0312267521535	0.00652912722147	-0.024697624932
+UniRef50_M9V8S5	Cellulase 	0.000107443829842	0.00581875691343	0.00571131308359
+UniRef50_C3X191		1.77338467117e-05	1.63269972066e-05	-1.4068495051e-06
+UniRef50_X5DRB4	ABC type iron transporter, substrate binding lipoprotein	1.09437970387e-05	9.90725946941e-05	8.81287976554e-05
+UniRef50_Q3J5T4	50S ribosomal protein L11	0.139199499904	0.00245855772567	-0.136740942178
+UniRef50_P09099	Xylulose kinase	0.0026972184793	0.00146402956113	-0.00123318891817
+UniRef50_N8HI80		8.3782591309e-06	1.40835601794e-05	5.7053010485e-06
+UniRef50_W0YQ62	Fusaric acid resistance protein	5.36709936769e-05	9.80033313642e-05	4.43323376873e-05
+UniRef50_Z5X6F0		1.57932355862e-05	8.41816912623e-05	6.83884556761e-05
+UniRef50_L9IFJ0	BFD like [2Fe 2S] binding domain protein	0.000468741420051	4.30032067258e-06	-0.000464441099378
+UniRef50_Q031D5	Phosphoserine aminotransferase	0.000156850133866	0.000191629184058	3.4779050192e-05
+UniRef50_UPI000362AEF0	hypothetical protein	1.50753902652e-05	0.000203325586753	0.000188250196488
+UniRef50_G3W4Q5		0.00128363144715	4.50138816053e-05	-0.00123861756554
+UniRef50_W7X105		0.000224249102288	0.000315284738642	9.1035636354e-05
+UniRef50_F5M0G6	Response regulator receiver SARP domain containing protein	0.00195037146735	0.00168540739684	-0.00026496407051
+UniRef50_UPI00035E64FF	hypothetical protein	5.32328295747e-06	1.62396901007e-05	1.09164071432e-05
+UniRef50_UPI00036BE8CD	hypothetical protein	1.7294366263e-06	9.68483347305e-05	9.51188981042e-05
+UniRef50_UPI00031F67D7	hypothetical protein	8.93106652698e-05	2.62825054253e-05	-6.30281598445e-05
+UniRef50_E8NRV4		0.000104195027678	1.85279536345e-05	-8.56670740435e-05
+UniRef50_UPI0003B36054	riboflavin synthase subunit alpha	2.42622503288e-05	1.64145938764e-05	-7.8476564524e-06
+UniRef50_K7VT43		2.95483217934e-05	5.14123792077e-05	2.18640574143e-05
+UniRef50_UPI00037E7D3D	hypothetical protein, partial	0.000179703098997	0.00043565151384	0.000255948414843
+UniRef50_UPI00037D2DA0	hypothetical protein	0.000535347739285	9.5400475928e-05	-0.000439947263357
+UniRef50_UPI0003B493CA	pseudouridine synthase	4.3335336747e-05	3.77493923411e-05	-5.5859444059e-06
+UniRef50_UPI00047DB330	D ala D ala transporter subunit	8.58580204115e-06	2.43048664741e-06	-6.15531539374e-06
+UniRef50_P54616	Enoyl [acyl carrier protein] reductase [NADH] FabI	5.62826971963e-06	0.00139797536062	0.0013923470909
+UniRef50_UPI000478BABE	ferredoxin	1.2684503966e-05	0.000131575319965	0.000118890815999
+UniRef50_UPI0002E03FC6	hemolysin	3.13871470419e-05	1.05624215414e-05	-2.08247255005e-05
+UniRef50_UPI000364F5FC	hypothetical protein	2.51481312238e-06	5.56167962231e-06	3.04686649993e-06
+UniRef50_UPI00037C05D9	hypothetical protein	1.77706551968e-05	1.18508993887e-05	-5.9197558081e-06
+UniRef50_UPI000463A1BE	homoserine acetyltransferase	5.18384990836e-06	8.33814908584e-06	3.15429917748e-06
+UniRef50_A8F1A5	UDP glucose 4 epimerase	0.000192021386452	0.00466732232783	0.00447530094138
+UniRef50_F3FFT1		4.4757718709e-05	3.94813210547e-05	-5.2763976543e-06
+UniRef50_UPI00047AA814	hypothetical protein	4.15318109155e-06	5.51937610675e-06	1.3661950152e-06
+UniRef50_Q5LW04	Membrane protein, putative	0.000302796247737	0.00024781821415	-5.4978033587e-05
+UniRef50_UPI0003011CF5	hypothetical protein	2.0248256611e-05	2.31716765808e-05	2.9234199698e-06
+UniRef50_A3SLT2	Glutamate dehydrogenase	0.000171567865821	0.000242204169826	7.0636304005e-05
+UniRef50_A0A031UV61		1.90007455242e-05	3.13777964902e-05	1.2377050966e-05
+UniRef50_UPI0004653811	hypothetical protein	1.10435478887e-05	7.27103291112e-05	6.16667812225e-05
+UniRef50_Q8CP59	Probable elastin binding protein EbpS	0.00832140351875	0.00411289250804	-0.00420851101071
+UniRef50_UPI000248CD16	PTS system mannitol specific transporter subunit IICBA	1.61649916398e-06	1.44637478462e-05	1.28472486822e-05
+UniRef50_P05342	Homocitrate synthase	4.8631366005e-06	9.47718844693e-06	4.61405184643e-06
+UniRef50_Q8DT75	ATP dependent helicase deoxyribonuclease subunit B	0.00544756823373	0.00133373849452	-0.00411382973921
+UniRef50_UPI00029A0230	SecA DEAD domain containing protein	3.26174459568e-06	3.54871092945e-06	2.8696633377e-07
+UniRef50_H3ZCT1	Putative periplasmic ligand binding sensor protein	3.20883108606e-06	0.000276936061859	0.000273727230773
+UniRef50_B2V582	Purine nucleoside phosphorylase	0.00051921673785	0.00231032794423	0.00179111120638
+UniRef50_A6LX49	Nitroreductase	0.000641407587853	0.000260190929686	-0.000381216658167
+UniRef50_V5VAK2		0.000152618491829	0.00664637599475	0.00649375750292
+UniRef50_UPI0003B47659	DNA helicase	1.21175537429e-05	0.000118152969606	0.000106035415863
+UniRef50_Q9RS08		0.000402228976927	0.0469619058344	0.0465596768575
+UniRef50_Q1J0I2	Acid phosphatase vanadium dependent haloperoxidase related protein	0.00170958961568	0.0639888977144	0.0622793080987
+UniRef50_Q5HN66	A G specific adenine glycosylase	0.0184575329324	0.00461918443987	-0.0138383484925
+UniRef50_C1CXG1	50S ribosomal protein L22	0.000281705961835	0.0501256812034	0.0498439752416
+UniRef50_UPI0003620A7F	hypothetical protein	0.000105606761919	7.01492749984e-06	-9.85918344192e-05
+UniRef50_UPI0004797B60	DeoR faimly transcriptional regulator	5.3413347157e-05	1.10351678542e-05	-4.23781793028e-05
+UniRef50_X2GNE3	Aconitate hydratase	0.00443205394011	0.00112474200306	-0.00330731193705
+UniRef50_UPI00037C28A3	hypothetical protein	4.32363707923e-06	8.06105387024e-06	3.73741679101e-06
+UniRef50_Q5LZ45	Sensor histidine kinase 	0.00439994047338	0.0018470820442	-0.00255285842918
+UniRef50_I2BMM3	SAM dependent methyltransferase	0.000384771425101	0.000166688638861	-0.00021808278624
+UniRef50_S7N8D9		0.000373755414128	3.34874094057e-05	-0.000340268004722
+UniRef50_E8SP16		1.55110952123e-05	0.000156440820615	0.000140929725403
+UniRef50_Q8REV7	Phosphoribosylamine  glycine ligase	9.08874772519e-05	0.000914931261758	0.000824043784506
+UniRef50_UPI0003B37A7B	transporter	1.87929490226e-06	0.000869383380526	0.000867504085624
+UniRef50_F4CM54	Diguanylate cyclase	6.43618596827e-06	4.93578890273e-05	4.2921703059e-05
+UniRef50_A6TW03	Methyltransferase type 12	0.000393214571719	0.00031031527691	-8.2899294809e-05
+UniRef50_UPI00046554AE	elongation factor G	2.01910224572e-05	2.32991741404e-05	3.1081516832e-06
+UniRef50_P0A4L9	DNA gyrase subunit B	0.00556501643766	0.0062609292251	0.00069591278744
+UniRef50_UPI00037BCC78	hypothetical protein, partial	2.2779567868e-05	0.000431735614614	0.000408956046746
+UniRef50_L7UJT3		6.62226477192e-05	3.85196216903e-05	-2.77030260289e-05
+UniRef50_Q3YS50		2.29729563673e-05	3.15660806463e-05	8.593124279e-06
+UniRef50_A5UN86	Multidrug efflux permease, AraJ	0.00293176708695	0.00138452720838	-0.00154723987857
+UniRef50_S1EZD1		4.73953884703e-06	7.8571192103e-06	3.11758036327e-06
+UniRef50_Q5NXH9		6.36874448383e-06	1.49562425541e-05	8.58749807027e-06
+UniRef50_I2BZE4		0.000371565410131	0.000599477717425	0.000227912307294
+UniRef50_Q49Z78		0.0197913509673	0.00457283060761	-0.0152185203597
+UniRef50_X1RRN3	Marine sediment metagenome DNA, contig	6.31818709492e-05	0.000143842335682	8.06604647328e-05
+UniRef50_A7ZMU3	Probable manganese efflux pump MntP	0.00509427093074	0.000358684257326	-0.00473558667341
+UniRef50_S1S3U4	Integral membrane protein	5.52870625181e-05	0.000186513655394	0.000131226592876
+UniRef50_L0DFT8	Arabinose efflux permease family protein	0.00137966711738	0.00735236310614	0.00597269598876
+UniRef50_UPI0003B3A02D	AraC family transcriptional regulator	7.53321879241e-06	7.85397458351e-06	3.207557911e-07
+UniRef50_Q28W31	Transcriptional regulator PpsR	0.00498328705518	0.0013535030926	-0.00362978396258
+UniRef50_A5UN34	Molybdopterin guanine dinucleotide biosynthesis protein B, MobB	0.00276129094823	0.000176484086778	-0.00258480686145
+UniRef50_Q2FDU6	Dehydrosqualene desaturase	0.0128623149623	0.00248397643887	-0.0103783385234
+UniRef50_A5CVR1	Imidazoleglycerol phosphate dehydratase	0.000131182725299	5.74004032043e-05	-7.37823220947e-05
+UniRef50_UPI000315C86E	DNA invertase	7.33618185325e-05	1.99707840675e-05	-5.3391034465e-05
+UniRef50_P25536	Maf like protein YhdE	0.00178248514857	0.000364588524928	-0.00141789662364
+UniRef50_A6VCY0	Oxaloacetate decarboxylase	0.000914495448893	0.00034123904243	-0.000573256406463
+UniRef50_UPI00046D7227	ABC transporter permease	0.000228637083251	1.06805459259e-05	-0.000217956537325
+UniRef50_P0A992	Fructose bisphosphate aldolase class 1	0.0022035207065	0.0072797821002	0.0050762613937
+UniRef50_S6D840	Cobaltochelatase CobT	0.0041970248918	0.000430193727675	-0.00376683116413
+UniRef50_C0Q8E7	Phosphoserine phosphatase	0.000100107597085	4.53009638529e-05	-5.48066332321e-05
+UniRef50_D8UBN5		9.78287868212e-07	3.71463864838e-06	2.73635078017e-06
+UniRef50_A0A016UJ97		1.51097878153e-05	4.24544446883e-05	2.7344656873e-05
+UniRef50_UPI000368D600	hypothetical protein, partial	4.75644027597e-05	2.57494580698e-05	-2.18149446899e-05
+UniRef50_Q898U2	BmrU protein	0.000392033178228	0.00108389657175	0.000691863393522
+UniRef50_D4KWU8	N methylhydantoinase A acetone carboxylase, beta subunit	0.000607632576895	0.00119768719334	0.000590054616445
+UniRef50_Y3F751		0.00291254428598	0.00220106542379	-0.00071147886219
+UniRef50_V4J8H7		9.69955197423e-05	2.84758717061e-05	-6.85196480362e-05
+UniRef50_C6STY1		0.000712237714815	0.00902927955779	0.00831704184297
+UniRef50_N2KV62	Transposase IS66 family protein	2.36924537972e-05	4.95077337218e-05	2.58152799246e-05
+UniRef50_A3SMT4		1.56208431973e-05	1.70246624926e-05	1.4038192953e-06
+UniRef50_UPI000466B777	hypothetical protein	3.88576144811e-06	9.21973416065e-06	5.33397271254e-06
+UniRef50_UPI0003B73659	ActP protein	4.11618274984e-06	1.41510955897e-05	1.00349128399e-05
+UniRef50_UPI00035C4E49	hypothetical protein	6.25847185931e-05	1.59562263036e-05	-4.66284922895e-05
+UniRef50_P0ADT1		0.00488768768869	0.00141347723508	-0.00347421045361
+UniRef50_UPI00047198FB	DNA resolvase	7.28311414477e-05	1.59390613568e-05	-5.68920800909e-05
+UniRef50_Q899S7	DNA replication and repair protein RecF	0.0006763645327	0.00141605365713	0.00073968912443
+UniRef50_UPI0003AA2F1C	3 phosphoglycerate dehydrogenase	1.04137488984e-05	1.13390022492e-05	9.252533508e-07
+UniRef50_X0YNP2	Marine sediment metagenome DNA, contig	2.39197256315e-05	1.98911126115e-05	-4.02861302e-06
+UniRef50_UPI0003B51ADA	thiamine biosynthesis protein ThiF	3.92554490032e-06	8.70939792351e-06	4.78385302319e-06
+UniRef50_UPI000406D91D	phosphoserine phosphatase	3.42244562327e-05	6.07913087523e-05	2.65668525196e-05
+UniRef50_R4HZ48	23S rRNA  methyltransferase RlmB	0.000313700267745	0.000280808277526	-3.2891990219e-05
+UniRef50_A0A023X8D6	Transposase	2.41392996845e-05	4.23488168073e-05	1.82095171228e-05
+UniRef50_U3T6T2	Polyhydroxyalkanoate granule associated protein	0.000249440080738	0.00295753664493	0.00270809656419
+UniRef50_C5D8K3	Phosphopantetheine adenylyltransferase	0.0176856415322	0.00470212160973	-0.0129835199225
+UniRef50_Z5X3K7		4.44620384411e-05	4.95234013065e-05	5.0613628654e-06
+UniRef50_Q9RYU4	NADH dehydrogenase (quinone)	0.00197831249177	0.0374013551242	0.0354230426324
+UniRef50_K2JGC9		9.43039741426e-06	5.46046255034e-06	-3.96993486392e-06
+UniRef50_Q9HVN8		0.000498204428157	0.000609298553289	0.000111094125132
+UniRef50_UPI0001C36F9A	outer membrane adhesin like proteiin	4.87196884402e-06	1.42788262073e-05	9.40685736328e-06
+UniRef50_Q83GU1		7.09555827168e-06	8.1462065439e-05	7.43665071673e-05
+UniRef50_Q88NC4	GDP mannose 6 dehydrogenase	0.00100198839707	0.000220588117478	-0.000781400279592
+UniRef50_Q88WV4	Formamidopyrimidine DNA glycosylase	6.39387554937e-06	7.81622064859e-05	7.17683309365e-05
+UniRef50_D2TWU4		0.000177364466731	0.00267394014239	0.00249657567566
+UniRef50_A8AYT3	Potassium uptake protein, Trk family	0.00460954114003	0.00416797741363	-0.0004415637264
+UniRef50_O49506	Peroxisomal  2 hydroxy acid oxidase GLO5	3.97615820661e-06	0.000107291263378	0.000103315105171
+UniRef50_UPI00047A69B8	hypothetical protein	2.8617229111e-05	0.00012517339914	9.6556170029e-05
+UniRef50_P50853	Riboflavin biosynthesis protein RibD	1.48386375156e-05	4.72822340835e-05	3.24435965679e-05
+UniRef50_UPI0004730689	hypothetical protein, partial	2.62806251686e-05	5.72765848892e-05	3.09959597206e-05
+UniRef50_B1MXB4	Endonuclease MutS2	2.58757112327e-06	0.000948705011713	0.00094611744059
+UniRef50_U3UA35	Regulatory protein HrpB	1.43960835534e-05	2.02697542598e-05	5.8736707064e-06
+UniRef50_R7CL39	Extracellular solute binding protein family 3	0.00172359154281	0.0168070132897	0.0150834217469
+UniRef50_X1YEM9		1.14352887451e-05	8.12399341433e-06	-3.31129533077e-06
+UniRef50_V7EI41		3.20806774711e-05	3.41938576822e-05	2.1131802111e-06
+UniRef50_UPI0003705056	MULTISPECIES	0.000202149123024	0.000240647570781	3.8498447757e-05
+UniRef50_W8RSY4	Flp pilus assembly protein, pilin Flp	0.000128139089152	6.63471904157e-05	-6.17918987363e-05
+UniRef50_F8DIB1		0.000125186641126	8.58503344326e-05	-3.93363066934e-05
+UniRef50_A3V3M4		0.000110756626356	1.85691506338e-05	-9.21874757222e-05
+UniRef50_D0IU34	Transcriptional regulator of hydrogenase activity	0.000274362718687	0.00482883478871	0.00455447207002
+UniRef50_H7FEN7		0.000103253641383	0.000170908076434	6.7654435051e-05
+UniRef50_U3T2L8	Pirin like protein	0.000266227850401	0.0105316599056	0.0102654320552
+UniRef50_A6M260	ABC transporter related	0.000241033780736	0.00148307726135	0.00124204348061
+UniRef50_M2FX18	SAM dependent methyltransferase	0.00493382475933	0.00167482768286	-0.00325899707647
+UniRef50_D2RBW1		5.41238533916e-06	1.33656198187e-05	7.95323447954e-06
+UniRef50_D3E362		0.000871121512734	0.00100107357693	0.000129952064196
+UniRef50_G0DS16	LacI family transcriptional regulator	0.000742693016305	0.00613529355479	0.00539260053849
+UniRef50_E8QV25		7.25934593918e-05	0.00535058891104	0.00527799545165
+UniRef50_D9RQI3	Immunoglobulin G binding protein A	0.0034698789783	0.000618782833145	-0.00285109614516
+UniRef50_T2G7U7	Putative integral membrane protein MviN	1.33878022641e-05	6.22318278124e-06	-7.16461948286e-06
+UniRef50_A4ECQ1		5.87199597557e-06	2.49175115395e-05	1.90455155639e-05
+UniRef50_R4K2P7	Demethylmenaquinone methyltransferase	0.000161089326681	0.000663957401703	0.000502868075022
+UniRef50_UPI00035F2BDC	hypothetical protein	6.08295075518e-05	0.000443161534345	0.000382332026793
+UniRef50_A6LSN9	GTP sensing transcriptional pleiotropic repressor CodY	0.000261537636621	0.00115593245281	0.000894394816189
+UniRef50_Q3JUU4		3.44432256858e-05	3.52605845544e-05	8.173588686e-07
+UniRef50_S5Y2G0	Alpha beta fold family hydrolase	0.000382076712572	0.000349487225087	-3.2589487485e-05
+UniRef50_E6UYE2	Oxidoreductase FAD NAD binding domain protein	0.000601039619697	0.000747728237143	0.000146688617446
+UniRef50_UPI00035F6127	hypothetical protein	1.42965623319e-05	1.75641537002e-05	3.2675913683e-06
+UniRef50_B7H179	Ferric alcaligin E	0.000111116962251	0.00587061348075	0.0057594965185
+UniRef50_UPI00026CA76F	BLUF domain containing protein	0.000618829489919	0.00048412574623	-0.000134703743689
+UniRef50_B8GLJ6		5.06914610605e-06	7.61157111904e-06	2.54242501299e-06
+UniRef50_M0UCQ8		1.34906592086e-05	9.58278742817e-06	-3.90787178043e-06
+UniRef50_Q08UF6		0.000153019626108	0.000242228329614	8.9208703506e-05
+UniRef50_UPI00041CAC19	hypothetical protein	4.45821545997e-05	6.47006920291e-05	2.01185374294e-05
+UniRef50_A0A031I5W8		0.000100022465565	7.11707566996e-05	-2.88517088654e-05
+UniRef50_UPI0004750092	HAD family hydrolase	1.87616251786e-05	8.391742689e-05	6.51558017114e-05
+UniRef50_UPI00037547C0	hypothetical protein	1.83986028447e-05	6.90023971584e-06	-1.14983631289e-05
+UniRef50_D1ABT4	Transglutaminase domain protein	1.34278610735e-05	0.00011450204973	0.000101074188656
+UniRef50_S5XRZ9		0.000923024188812	0.00128450442334	0.000361480234528
+UniRef50_P27297	Protein bax	0.00106261850832	0.000281254004947	-0.000781364503373
+UniRef50_T2HU52	Conjugal transfer protein	0.000111334675313	2.06750274623e-05	-9.06596478507e-05
+UniRef50_H8GVP7	Alpha amylase	0.000159635914759	0.0355316863556	0.0353720504408
+UniRef50_F2HR75		0.0148041826021	0.00308156561942	-0.0117226169827
+UniRef50_P64274	Transcription elongation factor GreB	0.000952940513262	0.000482806602495	-0.000470133910767
+UniRef50_Q72TM7	Potassium transporting ATPase A chain	8.07216730493e-06	0.00177626566707	0.00176819349977
+UniRef50_UPI00041218DC	peptide ABC transporter permease	9.62446188e-05	5.72898347339e-05	-3.89547840661e-05
+UniRef50_UPI0003B710BC	hypothetical protein	1.69493399885e-05	8.59529015332e-06	-8.35404983518e-06
+UniRef50_UPI00036FA209	hypothetical protein	3.62913594103e-06	7.23494307578e-06	3.60580713475e-06
+UniRef50_UPI000478D470	hypothetical protein	6.16373838133e-06	3.42092625119e-06	-2.74281213014e-06
+UniRef50_Q92DC2	Serine protein kinase RsbW	0.000110395991086	0.00122367210878	0.00111327611769
+UniRef50_Q5LYH1	Dihydroxy acid dehydratase	0.00806699910533	0.00585520457941	-0.00221179452592
+UniRef50_B9TGU7		1.90328162922e-05	5.33660813462e-05	3.4333265054e-05
+UniRef50_Q57NQ3		3.21125959461e-05	4.21344363879e-05	1.00218404418e-05
+UniRef50_A6LS38	Tetratricopeptide TPR_2 repeat protein	0.000119836821857	0.00213865178833	0.00201881496647
+UniRef50_B8ZNP1	Pantothenate kinase	0.00336509900168	0.00696482045516	0.00359972145348
+UniRef50_UPI00036C732F	magnesium chelatase	1.2000624151e-05	2.70249066739e-05	1.50242825229e-05
+UniRef50_P25549	Arylsulfatase	0.00175430262597	0.00167989585173	-7.440677424e-05
+UniRef50_P75800	Putative cyclic di GMP phosphodiesterase YliE	0.00303515835543	0.00101305015105	-0.00202210820438
+UniRef50_S5MYM7	Phosphoserine phosphatase	0.000100107597085	4.53009638529e-05	-5.48066332321e-05
+UniRef50_UPI0002490F21	branched chain amino acid transporter II carrier protein	7.5299879238e-06	5.5820500607e-06	-1.9479378631e-06
+UniRef50_A6LYA1	Phage replisome organizer, putative	0.000187803974553	0.000940180338959	0.000752376364406
+UniRef50_D2U1P2		0.000101242092128	5.28209841651e-05	-4.84211079629e-05
+UniRef50_Q30UY1		0.0107188839784	0.00118377522267	-0.00953510875573
+UniRef50_UPI00038283FF	30S ribosomal protein S17	4.2042186347e-05	0.000236765376889	0.000194723190542
+UniRef50_K2A1K8		0.00293801491532	0.000566609276111	-0.00237140563921
+UniRef50_Q3JTY3		6.58405794467e-05	0.00015316518423	8.73246047833e-05
+UniRef50_P74587	Carbamoyl phosphate synthase small chain	2.25891074973e-05	6.75934614756e-06	-1.58297613497e-05
+UniRef50_M5NSU4	Membrane protein	1.13951041875e-05	3.81468351799e-05	2.67517309924e-05
+UniRef50_UPI0003B53AE0	hypothetical protein	5.32401572573e-06	8.29746762091e-06	2.97345189518e-06
+UniRef50_Q21NS8	Lipid A export ATP binding permease protein MsbA	8.46198254108e-06	4.87887184377e-06	-3.58311069731e-06
+UniRef50_UPI00036998C6	hypothetical protein	4.28937362125e-05	6.58143157671e-06	-3.63123046358e-05
+UniRef50_Q1IJT2	Adenylosuccinate synthetase	3.86785327876e-06	1.17854259033e-05	7.91757262454e-06
+UniRef50_UPI000378226F	hypothetical protein	2.82236688363e-06	3.99012689755e-05	3.70789020919e-05
+UniRef50_Q2NFZ1	Digeranylgeranylglycerophospholipid reductase 1	0.00334050099115	0.00413212017908	0.00079161918793
+UniRef50_A7FD15	Glutamate racemase	0.000733372697701	0.000642242449804	-9.1130247897e-05
+UniRef50_Q5E8X7	3 ketoacyl CoA thiolase	0.00338575586643	0.00623721539973	0.0028514595333
+UniRef50_F0MDS8	Ribonuclease E	0.000133680915218	0.00433833136964	0.00420465045442
+UniRef50_Q9Z7H0	Uridine kinase	1.34863350197e-05	0.000195542275674	0.000182055940654
+UniRef50_UPI000467A3EC	cupin	6.5150823885e-05	2.17184232814e-05	-4.34324006036e-05
+UniRef50_P0ACE1	Hydrogenase 2 large chain	0.00312555124396	0.00105664377758	-0.00206890746638
+UniRef50_UPI000468F1F3	hypothetical protein, partial	0.000157690144949	7.70389166955e-05	-8.06512282535e-05
+UniRef50_G4LC92		0.00204913533208	0.00167882825218	-0.0003703070799
+UniRef50_UPI00031A1A33	hypothetical protein	6.20886911887e-06	5.44192420364e-06	-7.6694491523e-07
+UniRef50_Q28K97	Taurine import ATP binding protein TauB	8.52049955463e-06	1.03504839523e-05	1.82998439767e-06
+UniRef50_Q9RUX9		0.00135496000475	0.05068317117	0.0493282111652
+UniRef50_M5R129	Bacteriophage replication	0.000189809794024	0.000466120556427	0.000276310762403
+UniRef50_G6Y6C6		0.000565882778137	4.60710263245e-05	-0.000519811751812
+UniRef50_P73016	Enoyl [acyl carrier protein] reductase [NADH] FabI	4.24505095136e-06	3.36347104132e-05	2.93896594618e-05
+UniRef50_P0ACH9	Melibiose operon regulatory protein	0.00313230269599	0.001129102604	-0.00200320009199
+UniRef50_UPI0003770906	membrane protein	1.23209880843e-05	1.57441250441e-05	3.4231369598e-06
+UniRef50_UPI00035D9DA9	hypothetical protein	1.23990260685e-05	0.000361596057602	0.000349197031533
+UniRef50_O76511	Thymidylate synthase	2.85302606085e-05	0.00020927438731	0.000180744126702
+UniRef50_G5FKI8		0.000172487459061	0.000114070981381	-5.841647768e-05
+UniRef50_UPI00016C4DB7	branched chain amino acid transport ATP binding protein	8.70191304705e-06	0.000146093730295	0.000137391817248
+UniRef50_UPI0003B40598	major facilitator transporter	5.70262590183e-06	1.99305033888e-05	1.4227877487e-05
+UniRef50_UPI00039F2091	potassium transporter	1.47779598854e-05	1.56416817285e-05	8.637218431e-07
+UniRef50_E3H4N2	Periplasmic binding protein	7.79552935173e-06	0.000119523794993	0.000111728265641
+UniRef50_UPI00047150D6	hypothetical protein	2.90893697153e-05	0.000356278564807	0.000327189195092
+UniRef50_UPI00036C6373	tail fiber protein	7.32124326048e-06	2.33857953437e-05	1.60645520832e-05
+UniRef50_UPI0004728F0C	DNA mismatch repair protein MutL	2.68462120821e-06	7.08654306481e-06	4.4019218566e-06
+UniRef50_UPI00041001CB	hypothetical protein	4.25877151765e-06	7.66636522004e-06	3.40759370239e-06
+UniRef50_K7U6X3		0.000105882543757	4.17777703601e-05	-6.41047733969e-05
+UniRef50_U3SR01		0.00450294280596	0.00250711205447	-0.00199583075149
+UniRef50_C7DF61	Chemotactic signal response protein, putative	0.000115145333304	5.88924754004e-05	-5.62528579036e-05
+UniRef50_A0A023RXZ9	Peptide transporter	0.0001265990815	0.00710388697802	0.00697728789652
+UniRef50_A6M202	Nitroreductase	0.00174224302547	0.000799065265672	-0.000943177759798
+UniRef50_A9MD69		0.000948433294362	0.00927165299754	0.00832321970318
+UniRef50_Q3JNQ1		0.000202622699755	6.0076060546e-05	-0.000142546639209
+UniRef50_B1ZHY8	Pyridoxal 5 phosphate dependent protein beta subunit	0.000144169711234	0.000986511342191	0.000842341630957
+UniRef50_R5HQZ2	TRAP transporter DctM subunit tripartite ATP independent periplasmic transporter solute receptor DctP family	9.69309895129e-05	2.43438350076e-05	-7.25871545053e-05
+UniRef50_D2NLM2	Transcriptional regulator	0.000580579479589	0.000498212180715	-8.2367298874e-05
+UniRef50_UPI0003B4984E	trehalose phosphatase	3.34519271892e-05	2.59270922195e-05	-7.5248349697e-06
+UniRef50_D8JJA0	Flavodoxin reductase  family protein 1	0.000274571937307	0.00533207792291	0.0050575059856
+UniRef50_UPI0003B42639	heme ABC transporter ATPase	3.27566694672e-05	4.87882166355e-06	-2.78778478037e-05
+UniRef50_UPI00029ADE28	50S ribosomal protein L22	2.04437180746e-05	0.000358998688252	0.000338554970177
+UniRef50_D7DK39		2.54757879259e-05	1.74232323308e-05	-8.0525555951e-06
+UniRef50_UPI00037A6F5F	hypothetical protein	1.68998196174e-05	2.15474190506e-05	4.6475994332e-06
+UniRef50_UPI0003642305	hypothetical protein	7.99728443918e-06	3.10902035097e-05	2.30929190705e-05
+UniRef50_UPI0003C7E218	hypothetical protein	2.29239941168e-05	5.72700117241e-05	3.43460176073e-05
+UniRef50_UPI000415A98C	3 hexulose 6 phosphate synthase	1.23292102048e-05	1.93882407166e-05	7.0590305118e-06
+UniRef50_Q8E7H3	Sensory transduction protein LytR	0.00360408532593	0.00238520267181	-0.00121888265412
+UniRef50_Q9RTV3		0.000365034324106	0.0480658044284	0.0477007701043
+UniRef50_F3GAC2		0.000171494568023	0.000179416010205	7.921442182e-06
+UniRef50_Q04440	Cytochrome c oxidase subunit 1	2.59521030308e-05	0.000349753103289	0.000323801000258
+UniRef50_Q4L7K3	UPF0421 protein SH1063	0.0181001297953	0.00404296698988	-0.0140571628054
+UniRef50_Q8CMQ2	Alkyl hydroperoxide reductase subunit C	0.0148373139772	0.00562444751678	-0.00921286646042
+UniRef50_UPI00016C50A5	N acetylmuramic acid 6 phosphate etherase	2.58224168548e-06	5.63091977782e-06	3.04867809234e-06
+UniRef50_UPI00047D14DB	cytochrome C oxidase assembly protein	9.61856960834e-06	2.45828268555e-05	1.49642572472e-05
+UniRef50_T1CPC3	Magnesium protoporphyrin chelatase 	5.69763612556e-05	0.000650460967098	0.000593484605842
+UniRef50_R0ZN34		0.000140678008262	0.00268628883158	0.00254561082332
+UniRef50_M8Q184	Prophage tail length tape measure family protein	0.000100842205389	0.000181919941603	8.1077736214e-05
+UniRef50_Q3M244	Phosphoribosyl AMP cyclohydrolase	3.64084507058e-05	1.58070497219e-05	-2.06014009839e-05
+UniRef50_UPI000360A98B	hypothetical protein, partial	9.1832894984e-05	0.000242974782543	0.000151141887559
+UniRef50_V9R1X9	Acriflavine resistance protein B	0.000922042096269	0.000249875192007	-0.000672166904262
+UniRef50_Q6G3Y9	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.0225879710182	0.00387876723162	-0.0187092037866
+UniRef50_P42405	3 hexulose 6 phosphate synthase	0.00963742585113	0.000956843054258	-0.00868058279687
+UniRef50_U3STF6		0.00781270110667	0.00156730461903	-0.00624539648764
+UniRef50_Q5HKV0	Indole 3 pyruvate decarboxylase	0.0212264419487	0.00595358167122	-0.0152728602775
+UniRef50_Q5HRL9	RNA polymerase sigma factor sigW, putative	0.00457115858125	0.00135766533028	-0.00321349325097
+UniRef50_UPI0003B61754	transporter	2.54202769767e-05	3.05085050717e-05	5.088228095e-06
+UniRef50_A3PHJ2		5.9772306434e-05	0.000401791435631	0.000342019129197
+UniRef50_A7X0F5	Na H(+) antiporter subunit G1	0.00935111552297	0.0129056256333	0.00355451011033
+UniRef50_UPI00039FEC41	hypothetical protein	5.31610297012e-06	3.30064596023e-06	-2.01545700989e-06
+UniRef50_Q89P04	Blr3679 protein	0.0134067948307	0.00378137333201	-0.00962542149869
+UniRef50_Q8XZP8	Sulfate thiosulfate import ATP binding protein CysA	8.11692831193e-05	0.0015493342529	0.00146816496978
+UniRef50_M6TCA5	Transcriptional regulator domain protein	1.36938052374e-05	0.000124560358728	0.000110866553491
+UniRef50_Q21QM7	Adenine phosphoribosyltransferase	4.58034412441e-05	2.01912434691e-05	-2.5612197775e-05
+UniRef50_A6E0W9		0.000108385718858	2.84085662353e-05	-7.99771526227e-05
+UniRef50_B8IL91	Endoribonuclease L PSP	0.00157794945669	0.00062907375522	-0.00094887570147
+UniRef50_UPI00032A8D12	PREDICTED	4.87753141301e-05	0.000271755108757	0.000222979794627
+UniRef50_A5UN72	Predicted transcriptional regulator	0.00258157449824	0.000228632287886	-0.00235294221035
+UniRef50_M1MA52	D alanyl D alanine carboxypeptidase	0.000371535728465	0.00145761759296	0.00108608186449
+UniRef50_UPI0002556197	coproporphyrinogen III oxidase	3.50474357464e-05	4.45719674196e-05	9.5245316732e-06
+UniRef50_Q21J87		2.57369353376e-05	0.000177695931482	0.000151958996144
+UniRef50_Q3J216	Putative class I holin	0.00140643784758	0.000468756674913	-0.000937681172667
+UniRef50_UPI000377F527	hypothetical protein	4.80886116183e-05	4.01904624068e-05	-7.8981492115e-06
+UniRef50_C6SU00		0.00303051667575	0.000771517864425	-0.00225899881132
+UniRef50_UPI0003B3C220	DNA repair protein RecO, partial	1.31720268035e-05	4.01872517414e-05	2.70152249379e-05
+UniRef50_UPI00047C9CC6	hypothetical protein	1.38994065938e-05	0.000338446452111	0.000324547045517
+UniRef50_Q5F9J0	ADP L glycero D manno heptose 6 epimerase	0.00113471942806	0.00407589827804	0.00294117884998
+UniRef50_D9S0U1	Amine oxidase	0.00028295022501	0.000339464198664	5.6513973654e-05
+UniRef50_B4RJU8	Tpc	0.000320954230783	0.00217566167269	0.00185470744191
+UniRef50_UPI0003A37E8C	protease	2.06138888301e-05	1.54457396144e-05	-5.1681492157e-06
+UniRef50_UPI000476C2A7	ATPase AAA	4.97971851641e-06	9.00040106754e-06	4.02068255113e-06
+UniRef50_A6DZ03		0.00505054023371	0.000460796461851	-0.00458974377186
+UniRef50_Q8NR12	Ribose import ATP binding protein RbsA	3.33629928643e-06	1.28226291259e-05	9.48632983947e-06
+UniRef50_G2JZ42	Carnitine transport binding protein OpuCC	0.0198117278382	0.00915125617052	-0.0106604716677
+UniRef50_B2GI94	Elongation factor P	3.07830177934e-05	0.000296930514669	0.000266147496876
+UniRef50_UPI0004783ADB	cell wall hydrolase	1.60815933582e-05	4.09489797081e-06	-1.19866953874e-05
+UniRef50_UPI00047D45FE	arginine ABC transporter permease	1.08268274711e-05	2.48833198363e-05	1.40564923652e-05
+UniRef50_S1S637		0.0001655503621	2.77872412152e-05	-0.000137763120885
+UniRef50_Q18C32	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.50252640178e-05	1.16510577651e-05	-3.3742062527e-06
+UniRef50_Q1J2H5	Pyruvate kinase	0.000629403728881	0.0588782914657	0.0582488877368
+UniRef50_Q1GIU5	Cell division protein ftsA	0.0054380014543	0.00103493369603	-0.00440306775827
+UniRef50_D4GMR6		0.000299397312428	3.48953214438e-05	-0.000264501990984
+UniRef50_UPI00029B2672	GntR family transcriptional regulator, partial	4.17685392267e-05	9.11968312661e-05	4.94282920394e-05
+UniRef50_Q2YCK0	Glycine cleavage system H protein	0.00173759018497	0.000496330596971	-0.001241259588
+UniRef50_A3LIM1		0.0008170887115	0.000908666785215	9.1578073715e-05
+UniRef50_Q5XB25	Exodeoxyribonuclease 7 large subunit	0.00671860777953	0.00291664467262	-0.00380196310691
+UniRef50_UPI000370F15C	hypothetical protein	1.26254349018e-05	2.01505973182e-05	7.5251624164e-06
+UniRef50_G3XD61	UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase	0.00129002718057	0.000456988449836	-0.000833038730734
+UniRef50_X5ZEE6		0.000259249311424	1.68095180831e-05	-0.000242439793341
+UniRef50_X1KYQ6	Marine sediment metagenome DNA, contig	2.60664074491e-05	2.8852742925e-05	2.7863354759e-06
+UniRef50_UPI00034A7DFF	hypothetical protein	1.45091890612e-06	3.70884597519e-05	3.56375408458e-05
+UniRef50_UPI00037DAE35	hypothetical protein	1.17908918598e-05	2.0244260177e-05	8.4533683172e-06
+UniRef50_UPI00037E1EAE	short chain dehydrogenase	1.94182088949e-05	4.42105901748e-05	2.47923812799e-05
+UniRef50_UPI000415BCBB	MarR family transcriptional regulator	1.34145716e-05	0.000107723481974	9.4308910374e-05
+UniRef50_Q6NBT1	Sulfate thiosulfate import ATP binding protein CysA	0.000868330497486	0.000216742500443	-0.000651587997043
+UniRef50_UPI000368D6F0	hypothetical protein	1.92220733129e-05	0.000222981753207	0.000203759679894
+UniRef50_B9DLF5	DNA polymerase III gamma and tau subunits	0.0270772474455	0.00824267245966	-0.0188345749858
+UniRef50_E5AVM4	Transcriptional regulators, LysR family	0.000125549663697	0.00570508560548	0.00557953594178
+UniRef50_R6J1R9		2.26669780816e-05	1.56112932497e-05	-7.0556848319e-06
+UniRef50_UPI000468AE38	cupin	0.000100693742006	3.19217275303e-05	-6.87720144757e-05
+UniRef50_Q9UY68	N5 carboxyaminoimidazole ribonucleotide mutase	8.21415623014e-05	0.0128947793688	0.0128126378065
+UniRef50_UPI0002F45A92	hypothetical protein	2.12775207723e-05	4.81994287538e-05	2.69219079815e-05
+UniRef50_Q9RVV9	DNA directed RNA polymerase subunit beta	0.000201427621312	0.0298571583257	0.0296557307044
+UniRef50_Q49UM5	Adenylyl sulfate kinase	0.0128117946947	0.00429336847484	-0.00851842621986
+UniRef50_A5UNL3	Adhesin like protein	0.00349912040045	0.00130543198649	-0.00219368841396
+UniRef50_F2AIB1	Molecular chaperone small heat shock protein	0.000158395206665	0.000106667554089	-5.1727652576e-05
+UniRef50_UPI00036E0C31	hypothetical protein	1.07533614235e-05	4.88836506504e-05	3.81302892269e-05
+UniRef50_Q2RPW9	Phosphoglycolate phosphatase	6.83146150906e-06	1.4853183202e-05	8.02172169294e-06
+UniRef50_Q637E1	Phosphonate ABC transporter, phosphate binding protein	0.0170656142937	0.00426598418179	-0.0127996301119
+UniRef50_UPI00046F5175	ATPase	2.88136860052e-06	9.62933042768e-06	6.74796182716e-06
+UniRef50_B4U470	Nickel or oligopeptide transport ATP binding protein	0.000144446169206	0.0010361989656	0.000891752796394
+UniRef50_P0AA87	Thiol	0.00631829578192	0.00298203894202	-0.0033362568399
+UniRef50_UPI0003708E67	hypothetical protein	3.53518796422e-06	4.08007198546e-06	5.4488402124e-07
+UniRef50_Q28UZ1		1.68791132125e-05	1.34658193061e-05	-3.4132939064e-06
+UniRef50_B8G0S1	Glycosyl transferase family 4	0.00024320610591	0.00130928295672	0.00106607685081
+UniRef50_UPI00046CFF8D	phenylacetate  CoA ligase	5.63540337813e-06	6.96269403389e-05	6.39915369608e-05
+UniRef50_L1K7B5		0.00224616590853	0.00100134539023	-0.0012448205183
+UniRef50_P29823	Lactose transport system permease protein LacF	0.00041872166478	0.000197756722234	-0.000220964942546
+UniRef50_I4Y2D8		0.00102300699327	0.000282664416606	-0.000740342576664
+UniRef50_A0A011QYY7	L threonine dehydratase biosynthetic IlvA	1.87109510819e-05	3.51207216829e-05	1.6409770601e-05
+UniRef50_UPI0002192A5B	cyclic nucleotide binding protein, partial	0.000126284299972	2.04166906102e-05	-0.000105867609362
+UniRef50_K6BVJ8		4.2143296543e-06	3.96522787554e-05	3.54379491011e-05
+UniRef50_A8FF31	3 dehydroquinate dehydratase	9.40057373735e-06	0.000186942872426	0.000177542298689
+UniRef50_K1VMV2		0.000217434706207	0.000221997421502	4.562715295e-06
+UniRef50_Q5LUZ4	Prolipoprotein diacylglyceryl transferase	0.00969019143465	0.002235458425	-0.00745473300965
+UniRef50_R7PUB9		0.00236795786484	0.000194287306055	-0.00217367055878
+UniRef50_A2SFU4	Transport protein B	0.000400716105696	0.00763294253207	0.00723222642637
+UniRef50_N0GPT3	L asparaginase I	0.000358372774223	0.000653837723686	0.000295464949463
+UniRef50_R7PUB1		0.00340672570152	0.000198982142971	-0.00320774355855
+UniRef50_B6JGY2	Peptide chain release factor 3	0.0144030370359	0.0044878011983	-0.0099152358376
+UniRef50_D2SD20	TRAP transporter solute receptor, TAXI family	1.15239900667e-05	2.06067941359e-05	9.0828040692e-06
+UniRef50_P05041	Aminodeoxychorismate synthase component 1	0.00200312560123	0.00124723505506	-0.00075589054617
+UniRef50_Q9RZS9	GGDEF family protein	0.000113793548035	0.0182196679135	0.0181058743655
+UniRef50_R6C7G1	Phage terminase	9.35117743834e-06	7.36313287246e-05	6.42801512863e-05
+UniRef50_Q2RYH6	KpsF GutQ	0.00277098583371	0.00103249224889	-0.00173849358482
+UniRef50_B2I4P8	Peptide methionine sulfoxide reductase MsrA	5.13684557461e-05	0.00308964459525	0.0030382761395
+UniRef50_Q9SJM7	Uridine nucleosidase 1	6.04471433116e-06	7.22201406908e-06	1.17729973792e-06
+UniRef50_C5WH94	Tetra tricopeptide repeat family protein	0.00563254290967	0.00320965063141	-0.00242289227826
+UniRef50_UPI0003607183	hypothetical protein	1.54754038063e-05	1.91542237445e-05	3.6788199382e-06
+UniRef50_R6R0W0	Electron transfer flavoprotein domain containing protein	0.000567306696935	0.000570660299901	3.353602966e-06
+UniRef50_D4HFL5	AMP binding enzyme	0.000198239267955	0.00548453008253	0.00528629081458
+UniRef50_B9KSR7		0.00170574734514	0.000560502775299	-0.00114524456984
+UniRef50_B9J5U3		0.000157719640427	1.81017232643e-05	-0.000139617917163
+UniRef50_B9KSF7	Entericidin EcnAB	0.000478240128508	0.00084341629595	0.000365176167442
+UniRef50_Q928I1	Triosephosphate isomerase 1	0.00386734406747	0.00223308783928	-0.00163425622819
+UniRef50_UPI00037BAD1C	hypothetical protein	1.16421623274e-06	2.09540025578e-06	9.3118402304e-07
+UniRef50_M1M081	DNA mismatch repair protein MutS	0.000340449036575	0.00161035886607	0.0012699098295
+UniRef50_Q3M630	DNA topology modulation protein	1.06036250001e-05	0.000146575448713	0.000135971823713
+UniRef50_M5KBZ8		0.000412806961006	4.5474397997e-05	-0.000367332563009
+UniRef50_X2GPQ0		2.49222912468e-06	3.9432153995e-05	3.69399248703e-05
+UniRef50_Q9RWZ0		0.00174224302547	0.00589430262056	0.00415205959509
+UniRef50_Q7CGI0	Cell division protein FtsP	0.00289849823589	0.00118728302618	-0.00171121520971
+UniRef50_UPI00036E8C31	hypothetical protein	0.000265389291912	3.51635433376e-05	-0.000230225748574
+UniRef50_A7NI76	AAA ATPase central domain protein	0.000373938161566	0.0106834373395	0.0103094991779
+UniRef50_P24173	Lipopolysaccharide heptosyltransferase 1	0.00370041992576	0.001021387734	-0.00267903219176
+UniRef50_Q1R011	3 octaprenyl 4 hydroxybenzoate carboxy lyase	0.00707112221482	0.000682057048299	-0.00638906516652
+UniRef50_UPI0003B662E9	uroporphyrin III C methyltransferase	7.35275078914e-06	5.2644238322e-06	-2.08832695694e-06
+UniRef50_D3E2B0	Calcineurin like phosphoesterase	0.00405404778582	0.00081953407602	-0.0032345137098
+UniRef50_A5UNH2	Glycosyltransferase, GT2 family	0.00317357199685	0.000273441393692	-0.00290013060316
+UniRef50_Q5NLZ3	Tyrosine  tRNA ligase	8.01499879515e-05	1.60654574323e-05	-6.40845305192e-05
+UniRef50_E6SII5	Endonuclease III	0.000361437403208	0.0276558927574	0.0272944553542
+UniRef50_X6YJ88		3.78566325289e-05	2.90787534417e-05	-8.7778790872e-06
+UniRef50_UPI000441D732	PREDICTED	1.08323711133e-05	3.95595906365e-05	2.87272195232e-05
+UniRef50_P32715	Multidrug resistance protein MdtO	0.00473586386858	0.000707832738041	-0.00402803113054
+UniRef50_UPI000315E7F4	hypothetical protein	5.51232177635e-06	3.85238842268e-06	-1.65993335367e-06
+UniRef50_G7D8U7	Biopolymer transport protein	0.000603761499101	0.000837777887078	0.000234016387977
+UniRef50_A0A017HLZ7		0.000184177191146	7.02253126948e-05	-0.000113951878451
+UniRef50_V6JSM6	UDP N acetylglucosamine 2 epimerase	0.000163886825841	0.00524739617613	0.00508350935029
+UniRef50_B4U8M6	Glutamate 1 semialdehyde 2,1 aminomutase	4.69046082534e-06	1.47103980062e-05	1.00199371809e-05
+UniRef50_A0A011U926	Polymerase	1.48300302688e-05	1.76380899938e-05	2.808059725e-06
+UniRef50_UPI000463B6AC	molybdopterin biosynthesis like protein MoeZ	2.05063260247e-05	5.33052622705e-05	3.27989362458e-05
+UniRef50_P34031	DNA gyrase subunit B	5.47255676056e-06	1.90734755754e-05	1.36009188148e-05
+UniRef50_A0A023LIT9		0.00016276234997	0.000205201838459	4.2439488489e-05
+UniRef50_E5RBE6	Protein smf. domain protein	0.0218020948679	0.00445137972063	-0.0173507151473
+UniRef50_UPI0003A10A10	hypothetical protein	1.6104116928e-06	2.93460448929e-06	1.32419279649e-06
+UniRef50_Q9RYG5	Methyl accepting chemotaxis protein	5.91361862444e-05	0.0122182316847	0.0121590954985
+UniRef50_Q6LRE4	Anhydro N acetylmuramic acid kinase	0.00141863383458	0.000170867910433	-0.00124776592415
+UniRef50_A0A010U7S7	Glutamine  tRNA ligase	0.000162070942107	0.00784970355268	0.00768763261057
+UniRef50_UPI00037E096F	hypothetical protein	3.01518530361e-06	1.1517170627e-05	8.50198532339e-06
+UniRef50_R7LLC2	Cation efflux protein	0.000392237051012	0.000493806474628	0.000101569423616
+UniRef50_F2CXC6	Predicted protein	5.13387069926e-06	4.04291236713e-06	-1.09095833213e-06
+UniRef50_UPI0003799FCE	hypothetical protein	0.000152166005089	3.28366751475e-05	-0.000119329329941
+UniRef50_Q2YUY9	N acetylmuramic acid 6 phosphate etherase	0.0152311823614	0.00367054031804	-0.0115606420434
+UniRef50_D7B3H1	CDP alcohol phosphatidyltransferase	0.000769563339957	0.00649409271662	0.00572452937666
+UniRef50_E6MY79	Phosphoglycerate kinase	9.7963491915e-05	0.000813575092068	0.000715611600153
+UniRef50_M9TYI3		2.53019622415e-05	8.52488090335e-05	5.9946846792e-05
+UniRef50_UPI0004740A93	citrate synthase, partial	1.89269214499e-05	0.000116417904346	9.74909828961e-05
+UniRef50_M9VKL6	Thiol reductant ABC exporter, CydC subunit	7.67768112925e-05	0.00404134262667	0.00396456581538
+UniRef50_D4HEU0	Transcriptional regulator, TetR family	0.000394584657338	0.00436389562582	0.00396931096848
+UniRef50_B8A0L8		0.000194542899263	0.000179649815205	-1.4893084058e-05
+UniRef50_A5UNY6	Adhesin like protein	0.00215068518922	0.0011086068635	-0.00104207832572
+UniRef50_K0PFX8	Group 1 glycosyl transferase	0.0107622468302	0.00290447593266	-0.00785777089754
+UniRef50_X5EKA8		0.000848550437128	0.000686783035329	-0.000161767401799
+UniRef50_Q6A900	Ribonuclease Y	0.000146745756494	0.00490997271259	0.0047632269561
+UniRef50_A7ZN22	Alpha,alpha trehalose phosphate synthase [UDP forming]	0.0027469796381	0.00106188235924	-0.00168509727886
+UniRef50_M9VHV5	Transcriptional regulator	0.000225589236365	0.00436925648719	0.00414366725083
+UniRef50_UPI00036BF090	hypothetical protein	3.43279814745e-06	8.4409372486e-06	5.00813910115e-06
+UniRef50_X5W5P1	Cupin	0.000180769829851	7.16667277517e-05	-0.000109103102099
+UniRef50_P05648	Chromosomal replication initiator protein DnaA	0.0113564731635	0.00668566528941	-0.00467080787409
+UniRef50_C1DQE7	KHG KDPG aldolase	0.000257376810578	0.00315629878782	0.00289892197724
+UniRef50_B9KXN9	tRNA  ) methyltransferase	0.0120231703974	0.00295971251012	-0.00906345788728
+UniRef50_A3PQ24	Phage integrase family protein	0.00255107659281	0.00136758569941	-0.0011834908934
+UniRef50_P96718	UDP glucose 6 dehydrogenase YwqF	0.000120829661313	0.00156833704801	0.0014475073867
+UniRef50_I1HFT3		1.25287881305e-05	2.90041678708e-05	1.64753797403e-05
+UniRef50_I0C140	OppC	0.0126924445712	0.00158630125612	-0.0111061433151
+UniRef50_G5KE14	Phage terminase, large subunit like protein	7.79843887406e-06	2.05572388529e-05	1.27587999788e-05
+UniRef50_B4RGD5	Patch repair protein	0.0108912907855	0.000940381616195	-0.0099509091693
+UniRef50_UPI0003442B9F	PREDICTED	5.82291780552e-05	2.3177070582e-05	-3.50521074732e-05
+UniRef50_D2N4E0	Peptidase propeptide and ypeb domain protein	0.00750510669895	0.00156342478604	-0.00594168191291
+UniRef50_B8JEW4	6,7 dimethyl 8 ribityllumazine synthase	0.0215648454522	0.0109127458277	-0.0106520996245
+UniRef50_UPI00016C4567	chemotaxis protein methyltransferase	0.000113021342479	5.88442649718e-05	-5.41770775072e-05
+UniRef50_UPI0003B71F4A	cell wall hydrolase	1.80208024441e-05	9.10392550799e-06	-8.91687693611e-06
+UniRef50_A5VZS9	Ribosomal protein S12 methylthiotransferase RimO	0.00111277494258	0.000165439681228	-0.000947335261352
+UniRef50_D7D802		8.102385349e-06	2.03666697605e-05	1.22642844115e-05
+UniRef50_UPI00037181FA	hypothetical protein	6.13558189659e-05	1.68214479329e-05	-4.4534371033e-05
+UniRef50_B0VU18		4.76623723326e-05	0.00827763282021	0.00822997044788
+UniRef50_I7ES66	TRAP transporter, subunit DctM	2.06772052005e-05	2.81742240132e-05	7.4970188127e-06
+UniRef50_P0AAM2	Probable Ni Fe hydrogenase 1 B type cytochrome subunit	0.00539712652045	0.000340096013652	-0.0050570305068
+UniRef50_UPI000472D060	transposase	2.14740062497e-05	0.00297784138086	0.00295636737461
+UniRef50_A7HHU8	LigA	0.000121427234682	0.000178526398263	5.7099163581e-05
+UniRef50_P33074	L serine dehydratase, beta chain	7.47890918861e-06	0.000127499314827	0.000120020405638
+UniRef50_Q1JF14	Trigger factor	0.00566061966744	0.00865077366818	0.00299015400074
+UniRef50_UPI0002629D2B	phenol hydroxylase	0.000201455958786	1.00466665675e-05	-0.000191409292218
+UniRef50_A9C3K7		4.70692549582e-06	1.66741009091e-05	1.19671754133e-05
+UniRef50_UPI000414ACF6	TonB dependent receptor	5.79642479055e-06	2.76292977141e-06	-3.03349501914e-06
+UniRef50_B1XKV1	Elongation factor P	1.17457306025e-05	7.05112435617e-05	5.87655129592e-05
+UniRef50_UPI000379A93B	hypothetical protein	0.000206051979774	0.000141918362078	-6.4133617696e-05
+UniRef50_Q1BN64	Methylmalonate semialdehyde dehydrogenase 	0.00231972154228	0.00499836766018	0.0026786461179
+UniRef50_Q3JID5		0.000106060571166	0.000413104750589	0.000307044179423
+UniRef50_B9E8I0	S ribosylhomocysteine lyase	0.0518448955425	0.00990487857501	-0.0419400169675
+UniRef50_P35755	Iron utilization periplasmic protein	0.000149598146176	0.00317446417631	0.00302486603013
+UniRef50_R9SK57	Molybdate ABC transporter ATP binding protein ModC	0.00157391740286	0.00110180842614	-0.00047210897672
+UniRef50_Q24YW4	Enolase 1	6.56414394538e-06	5.55422728282e-05	4.89781288828e-05
+UniRef50_I0C4F0	GTPases 	0.0177960036071	0.00410352845075	-0.0136924751563
+UniRef50_UPI0003A26BF2	twin arginine targeting protein translocase	6.05986919509e-05	3.4428606396e-05	-2.61700855549e-05
+UniRef50_UPI00035144CC	PREDICTED	1.13514881239e-05	3.69121429389e-05	2.5560654815e-05
+UniRef50_UPI00037AC467	hypothetical protein	4.4705954361e-06	2.55793114562e-05	2.11087160201e-05
+UniRef50_D8JW50		1.82978366557e-05	1.64609520844e-05	-1.8368845713e-06
+UniRef50_A8FDG9	8 amino 7 oxononanoate synthase	1.17714039908e-05	5.51694272071e-06	-6.25446127009e-06
+UniRef50_UPI000478F20C	macrolide transporter	2.20432737083e-06	4.88725153206e-06	2.68292416123e-06
+UniRef50_F2ETD0		0.000201491518566	0.000154080181991	-4.7411336575e-05
+UniRef50_E0TH65	Flagellar biosynthesis protein FlhA	0.000165651575802	8.9444736556e-05	-7.6206839246e-05
+UniRef50_M8D633		0.000126283134174	0.0114723697259	0.0113460865917
+UniRef50_P0AFP5		0.00354206917723	0.000231318568035	-0.00331075060919
+UniRef50_W7VDK3	Transposase IS861	0.000554027410123	7.10089136183e-05	-0.000483018496505
+UniRef50_F9X2K4		0.00701264215171	0.00842127296826	0.00140863081655
+UniRef50_D0TA60	Metallo beta lactamase domain protein	3.63374607323e-05	1.91833125345e-05	-1.71541481978e-05
+UniRef50_F8JIF8		0.000235108250449	0.00839854526208	0.00816343701163
+UniRef50_UPI0002F8A47D	hypothetical protein	2.22647700975e-05	2.8097533159e-05	5.8327630615e-06
+UniRef50_Q3IVG9	ABC Glycine betaine L proline transporter, inner membrane subunit	0.00358413891479	0.000417667859926	-0.00316647105486
+UniRef50_B3PDL9	Type IV pilus biogenesis protein PilF	7.04344071015e-06	1.69134258564e-05	9.86998514625e-06
+UniRef50_B7US81	Predicted tail fiber protein	6.96897210206e-05	0.00011899934394	4.93096229194e-05
+UniRef50_UPI0001BF5FA9	hypothetical protein SMAC_11727, partial	0.000270811010188	0.000348324282475	7.7513272287e-05
+UniRef50_P76501		0.0105527000924	0.00118126682079	-0.00937143327161
+UniRef50_UPI0003B2EAC3	1 phosphofructokinase	9.81497312978e-06	8.63958071324e-06	-1.17539241654e-06
+UniRef50_P06208	2 isopropylmalate synthase	2.88934276931e-06	1.04075332216e-05	7.51819045229e-06
+UniRef50_P32395	Uroporphyrinogen decarboxylase	2.81789315939e-05	0.000517486510466	0.000489307578872
+UniRef50_A0A011NCP8	Nitrite facilitator 1	9.53793078716e-06	6.2647177528e-06	-3.27321303436e-06
+UniRef50_Q28V62		9.00844273449e-05	0.000138680137097	4.85957097521e-05
+UniRef50_D3SCE5	Proteophosphoglycan ppg4	0.000156658286144	8.58129602549e-05	-7.08453258891e-05
+UniRef50_T0HYB4		4.79318307741e-05	7.47947260969e-05	2.68628953228e-05
+UniRef50_K7RU35	DNA repair protein RecN	9.33600961682e-05	0.00490240804962	0.00480904795345
+UniRef50_Q3J4R2		0.000979660569867	0.000472318782861	-0.000507341787006
+UniRef50_P76505		0.0011861195402	0.000191764094291	-0.000994355445909
+UniRef50_A1U4C6	tRNA dimethylallyltransferase	0.000754135212546	0.000182858640994	-0.000571276571552
+UniRef50_W5XIS1	50S ribosomal protein L22	1.06286406795e-05	0.0002321143706	0.00022148572992
+UniRef50_Q65T94	ARA1 protein	0.0126717049883	0.00114171278729	-0.011529992201
+UniRef50_Q8XAR8	UDP N acetylglucosamine 2 epimerase	0.00439405476616	0.00154209571462	-0.00285195905154
+UniRef50_Q31E54	8 amino 7 oxononanoate synthase	4.1699214476e-06	4.84113634015e-06	6.7121489255e-07
+UniRef50_Q3JR64		3.12690057201e-06	0.00178942595239	0.00178629905182
+UniRef50_UPI000258DCCB		1.25173663859e-06	5.54900986233e-06	4.29727322374e-06
+UniRef50_W1DUY3	Fosmidomycin resistance protein	0.000228192575379	3.80773092347e-05	-0.000190115266144
+UniRef50_UPI00041B42CD	multidrug transporter	7.5873342929e-07	2.03665566778e-06	1.27792223849e-06
+UniRef50_UPI000373198D	hypothetical protein	7.1376427539e-06	3.49775288082e-05	2.78398860543e-05
+UniRef50_Q8CSM5		0.00430974994928	0.00667339196815	0.00236364201887
+UniRef50_Q1GIM1	Type III pantothenate kinase	0.000103693486189	4.57436743484e-05	-5.79498118406e-05
+UniRef50_Q8CSM3		0.00803449790282	0.00136228319696	-0.00667221470586
+UniRef50_S5D4V1	Nucleotidyltransferase DNA polymerase involved in DNA repair	0.000506996594084	0.0121664668939	0.0116594702998
+UniRef50_UPI00047E5BE4	hypothetical protein	3.51881325961e-05	0.000485179158388	0.000449991025792
+UniRef50_R5WDX8	FAD dependent oxidoreductase	0.00032271312067	0.000199475571791	-0.000123237548879
+UniRef50_X2NEQ0		4.48148080554e-05	2.59505660349e-05	-1.88642420205e-05
+UniRef50_UPI00035C7733	hypothetical protein, partial	0.000393362236582	0.000104611618605	-0.000288750617977
+UniRef50_Q4A065		0.0132331569655	0.00402128347004	-0.00921187349546
+UniRef50_G7JG03	ATP synthase subunit a chloroplastic 	2.55601913431e-06	3.24101077973e-06	6.8499164542e-07
+UniRef50_UPI0002379BDC	3 oxoacyl ACP synthase	8.06941265869e-05	1.07815826361e-05	-6.99125439508e-05
+UniRef50_P65644	Ethanolamine utilization cobalamin adenosyltransferase	0.00740390265328	0.000215297719466	-0.00718860493381
+UniRef50_UPI0003B5520E	CoA transferase	9.18676219661e-06	0.000145819308469	0.000136632546272
+UniRef50_UPI000470029D	diguanylate cyclase	6.37848269373e-06	6.70825786958e-06	3.2977517585e-07
+UniRef50_A3PP83		3.0769299594e-05	4.45649505175e-05	1.37956509235e-05
+UniRef50_W5XDF7	UvrABC system protein C	4.28706663676e-06	1.12522389572e-05	6.96517232044e-06
+UniRef50_P46905		0.0187137881731	0.00745368134023	-0.0112601068329
+UniRef50_UPI00036028EF	hypothetical protein	6.22946038691e-06	6.10967123776e-06	-1.1978914915e-07
+UniRef50_B9DRH4	Haloacid dehalogenase like hydrolase	0.00703014796308	0.00333197992912	-0.00369816803396
+UniRef50_UPI0003C257FE	PREDICTED	1.58786891769e-05	1.63767043415e-05	4.980151646e-07
+UniRef50_UPI00037569F6	hypothetical protein, partial	0.000606467288123	0.000197378058402	-0.000409089229721
+UniRef50_A6LXY6	PAS PAC sensor hybrid histidine kinase	0.000304594294896	0.000539836778556	0.00023524248366
+UniRef50_Q5HME3		0.00313553451473	0.0017846992784	-0.00135083523633
+UniRef50_P45102	Succinyl CoA ligase [ADP forming] subunit alpha	5.15193386814e-05	0.000101954187703	5.04348490216e-05
+UniRef50_Q5HME1		0.00488604912808	0.00107575841395	-0.00381029071413
+UniRef50_X5ETW2	Peptidase, M50 family	0.000247802618498	0.000975145669635	0.000727343051137
+UniRef50_P26340	Mannose 1 phosphate guanylyltransferase ManC	0.000161981289498	1.83020976982e-05	-0.0001436791918
+UniRef50_P45413	Citrate lyase alpha chain	0.00303354985921	0.00248477608632	-0.00054877377289
+UniRef50_C5N5E9		0.00800917853217	0.00146166549668	-0.00654751303549
+UniRef50_P0A603	RNA polymerase sigma factor SigA	0.000307394026764	0.0100218740245	0.00971447999774
+UniRef50_T1YCL4		0.0128026211644	0.00175103865894	-0.0110515825055
+UniRef50_Q59635	Catalase	0.00115257957366	0.00813149353868	0.00697891396502
+UniRef50_I0KW88		5.04408481011e-05	8.63611380439e-05	3.59202899428e-05
+UniRef50_A5ULP8	Predicted surface protein	0.0017943588202	0.00287319834248	0.00107883952228
+UniRef50_C0P9U0		0.000107363767816	7.7641716853e-05	-2.9722050963e-05
+UniRef50_A3PS37	Sulfotransferase	0.00322524232645	0.000837911192891	-0.00238733113356
+UniRef50_P25906	Putative oxidoreductase YdbC	0.000988048056628	0.000405032096285	-0.000583015960343
+UniRef50_P52074	Glycolate oxidase iron sulfur subunit	0.00291222301915	0.00024712694996	-0.00266509606919
+UniRef50_B7GX21	Aldehyde dehydrogenase	0.000548308921475	0.00894479032768	0.00839648140621
+UniRef50_A5UNW8	Putative PeiW related protein 	0.00339560537233	0.00024372767966	-0.00315187769267
+UniRef50_B7N0I9	Zinc transporter ZupT	0.00191940539584	0.000477208159983	-0.00144219723586
+UniRef50_UPI0003959B2A	peptide synthetase, partial	1.18912502395e-05	1.11515083073e-05	-7.397419322e-07
+UniRef50_P0AAF2	Putrescine ornithine antiporter	0.00179473007606	0.000166063751755	-0.0016286663243
+UniRef50_C1DK50		0.000986243633233	0.00072459627969	-0.000261647353543
+UniRef50_A8LLD9	Ribonuclease 3	3.60711756531e-05	0.000104904496012	6.88333203589e-05
+UniRef50_Q7WH65	Beta hexosaminidase	1.74417489859e-05	3.30163746599e-05	1.5574625674e-05
+UniRef50_D6SCK6	ABC transporter, ATP binding protein	0.0119776074233	0.0053657227165	-0.0066118847068
+UniRef50_E0P352		0.000133584465064	2.4605116935e-05	-0.000108979348129
+UniRef50_F0Y057	Expressed protein 	8.81085793256e-05	0.000530170843736	0.00044206226441
+UniRef50_UPI00037F9362	hypothetical protein	4.56930838835e-06	0.00118298859726	0.00117841928887
+UniRef50_UPI000262CE64	deoxyguanosinetriphosphate triphosphohydrolase like protein	7.51483679131e-05	4.80846976467e-06	-7.03398981484e-05
+UniRef50_K2AIZ3	ABC transporter related protein	6.60806259164e-05	0.000131134803099	6.50541771826e-05
+UniRef50_Q8EED7	Phosphomethylpyrimidine synthase	0.000207414439285	0.0036316490367	0.00342423459742
+UniRef50_I6TQZ8	TetR family transcriptional regulator	0.0025522143318	0.00128892288952	-0.00126329144228
+UniRef50_UPI0003941799	PREDICTED	3.40757630182e-05	9.34874033554e-05	5.94116403372e-05
+UniRef50_R5PZ37		0.000352026230842	0.000156864890773	-0.000195161340069
+UniRef50_K9NJR2	Universal stress protein	0.00120520434655	0.00021848338239	-0.00098672096416
+UniRef50_P71838	KsdD like steroid dehydrogenase Rv0785	8.81976609493e-05	0.0105682986986	0.0104801010377
+UniRef50_UPI0003B5E589	ABC transporter ATP binding protein	4.38850560898e-05	4.0757998206e-05	-3.1270578838e-06
+UniRef50_P21189	DNA polymerase II	0.00267098761014	0.000239861091619	-0.00243112651852
+UniRef50_Q3K742	UDP N acetylmuramoylalanine  D glutamate ligase	0.000456052139785	0.000712403735486	0.000256351595701
+UniRef50_F3U2R3		0.000279921394165	7.39558267897e-05	-0.000205965567375
+UniRef50_F0XXV4	Expressed protein 	0.00016204852748	9.73360039515e-05	-6.47125235285e-05
+UniRef50_A6LWS8	TPR repeat containing protein	0.00104235234566	0.00247788291221	0.00143553056655
+UniRef50_UPI00046FEF63	iron dicitrate transporter subunit FecD	2.81786032377e-05	1.50652933565e-05	-1.31133098812e-05
+UniRef50_O67298	Methionine  tRNA ligase	1.22936509793e-05	2.07437458995e-05	8.4500949202e-06
+UniRef50_Q8H883	Putataive InsB from Escherichia coli	0.00718320690996	0.000545200071126	-0.00663800683883
+UniRef50_Q9JZ07	Inositol 1 monophosphatase	1.58914971407e-05	0.00177208467172	0.00175619317458
+UniRef50_Q9V076	Ribonuclease J	0.00323230462404	0.0014890962383	-0.00174320838574
+UniRef50_J4JDJ6	PF05787 domain protein	0.000114505355566	0.00226678256951	0.00215227721394
+UniRef50_A3PRQ7	Xanthine dehydrogenase, molybdenum binding subunit apoprotein	0.00118625448016	9.2479135246e-05	-0.00109377534491
+UniRef50_B7V1A6	Ketol acid reductoisomerase	0.000822742554283	0.000561307244918	-0.000261435309365
+UniRef50_O66113	Pyruvate dehydrogenase E1 component subunit beta	0.0106990374148	0.00255014247724	-0.00814889493756
+UniRef50_F3U3I1	Trimethylamine N oxide reductase c type cytochrome TorC	0.0150598207285	0.00293506373102	-0.0121247569975
+UniRef50_M9VCX6		4.84864128688e-05	0.000298599419336	0.000250113006467
+UniRef50_A5ULX3	Adhesin like protein	0.00334876688316	0.000901763509367	-0.00244700337379
+UniRef50_Q9RSL9		0.00514753621162	0.0337498544379	0.0286023182263
+UniRef50_A6FNW8		4.76586975179e-06	3.8331287354e-06	-9.3274101639e-07
+UniRef50_S5YTE6	L arabinose isomerase	0.00312364094062	0.000484085936396	-0.00263955500422
+UniRef50_U8LE05		0.000958677273497	0.00026134221699	-0.000697335056507
+UniRef50_Q51485	Porin B	0.00276268389693	0.00864446384869	0.00588177995176
+UniRef50_P68188	Maltose maltodextrin import ATP binding protein MalK	0.00759831846684	0.000271486210581	-0.00732683225626
+UniRef50_Q1IZP1	Gamma glutamyl phosphate reductase	0.00314763498006	0.00345601726425	0.00030838228419
+UniRef50_UPI0004729B76	multidrug transporter MurJ	5.521866328e-05	5.42657232714e-05	-9.529400086e-07
+UniRef50_E8U8Q1	Tellurite resistance TerB	0.000503314651798	0.100665192025	0.100161877373
+UniRef50_UPI000369225C	hypothetical protein	8.1909734249e-06	6.78926778378e-06	-1.40170564112e-06
+UniRef50_D5ATK1	TRAP C4 dicarboxylate transport system permease, DctM 2 subunit	9.96638334879e-06	2.51952995149e-05	1.52289161661e-05
+UniRef50_B8I813	Energy coupling factor transporter transmembrane protein EcfT	0.000324348472666	0.00124632378201	0.000921975309344
+UniRef50_E1DDS4	Putative permease protein	1.21729256036e-05	6.73740933166e-06	-5.43551627194e-06
+UniRef50_UPI00012E0EF0	UDP phosphate galactose phosphotransferase	9.77128728404e-06	1.3082297933e-05	3.31101064896e-06
+UniRef50_UPI0001CBAFEA	PREDICTED	8.50910113871e-06	7.26513639748e-06	-1.24396474123e-06
+UniRef50_E2Q3I4	Flavoprotein disulfide reductase	0.000335260977015	0.00605351063513	0.00571824965811
+UniRef50_R5Y4C4		7.5949657686e-06	8.65992531732e-06	1.06495954872e-06
+UniRef50_R7PXB7		0.00333521690897	0.000497417098993	-0.00283779980998
+UniRef50_P54458	Putative methyltransferase YqeM	1.23802129973e-05	3.64779497022e-05	2.40977367049e-05
+UniRef50_W5WZ80	N succinyldiaminopimelate aminotransferase	0.000146501677432	0.00629618262779	0.00614968095036
+UniRef50_UPI000344B62A	hypothetical protein	6.78356452778e-06	2.06090495523e-06	-4.72265957255e-06
+UniRef50_Q9L6S1	ATP dependent DNA helicase Rep	0.00600284279221	0.010309517612	0.00430667481979
+UniRef50_Q07HH8		2.41864746106e-05	1.17179738963e-05	-1.24685007143e-05
+UniRef50_Q87VV7	Probable nicotinate nucleotide adenylyltransferase	1.89806004332e-05	0.000280808277526	0.000261827677093
+UniRef50_Q97H93	Cell division protein SepF	0.000280311377865	0.000784030488532	0.000503719110667
+UniRef50_F4C9G0	ATPase	1.76197714348e-05	1.3833501344e-05	-3.7862700908e-06
+UniRef50_Q0VMD9	Putative ribosome biogenesis GTPase RsgA	0.0002593346888	1.35425056951e-05	-0.000245792183105
+UniRef50_R1FQ49		0.000148227482538	0.00024372767966	9.5500197122e-05
+UniRef50_P45262	Replication associated recombination protein A	0.000138611746215	0.00209575061554	0.00195713886933
+UniRef50_M4TV91	IS1114 transposase, IS5 family protein	4.33246200368e-05	3.09186792086e-05	-1.24059408282e-05
+UniRef50_F0MX83		0.000176844590442	0.000522684433979	0.000345839843537
+UniRef50_G4LLK3		0.00119853309102	0.000242062873115	-0.000956470217905
+UniRef50_A4GA34		1.43181128598e-05	2.10307879784e-05	6.7126751186e-06
+UniRef50_G2AUL8		0.000208615555801	7.37370050492e-05	-0.000134878550752
+UniRef50_H6NQR9		0.00132320002817	0.000818849088786	-0.000504350939384
+UniRef50_Q9RYB1		0.000207489046873	0.00525213281462	0.00504464376775
+UniRef50_UPI000312AE4D	hypothetical protein	6.33363640698e-06	1.05649019182e-05	4.23126551122e-06
+UniRef50_UPI000366A351	hypothetical protein	2.15533796624e-05	3.21547136285e-05	1.06013339661e-05
+UniRef50_UPI0003B3F958	Hsp33 chaperonin	1.3023074845e-05	2.02003037443e-05	7.1772288993e-06
+UniRef50_I1PKM1		0.000757180170735	0.000251952828095	-0.00050522734264
+UniRef50_Q83RK8		0.00354774107827	0.000792128302013	-0.00275561277626
+UniRef50_B8JEF4		4.09824530306e-05	0.000390066409537	0.000349083956506
+UniRef50_R5GFP8		0.000149796027328	0.00154388427373	0.0013940882464
+UniRef50_T2I1A7		2.16123660684e-05	0.00024628220106	0.000224669834992
+UniRef50_D5AUT9	Phage terminase, large subunit	0.00482221893476	0.00049982584478	-0.00432239308998
+UniRef50_UPI0003A838D0	acyl CoA dehydrogenase	7.74438936189e-06	9.13366183889e-06	1.389272477e-06
+UniRef50_P0AGE7		0.00636603080519	0.0028689498438	-0.00349708096139
+UniRef50_W5XIW0	Isoprenyl transferase	6.32998914491e-06	1.27660055201e-05	6.43601637519e-06
+UniRef50_Q51687	Histidinol phosphate aminotransferase	0.00318490080755	0.00129979258688	-0.00188510822067
+UniRef50_UPI000299D2EC	hypothetical protein	6.27701323686e-06	9.10577042822e-06	2.82875719136e-06
+UniRef50_UPI00045E7782	xanthine dehydrogenase	1.70681781797e-05	1.41366072931e-05	-2.9315708866e-06
+UniRef50_B3T3L8		0.00032370807636	0.00048018976455	0.00015648168819
+UniRef50_Q9RSZ4		0.000232061058724	0.013768881688	0.0135368206293
+UniRef50_UPI0003772F6B	hypothetical protein	6.99470208385e-05	7.07385685629e-05	7.915477244e-07
+UniRef50_F9VSE4	Threonine dehydratase	1.58709056122e-05	8.43109006723e-05	6.84399950601e-05
+UniRef50_UPI0004726CDF	DNA polymerase III subunit alpha, partial	2.24852445792e-05	9.21998128758e-06	-1.32652632916e-05
+UniRef50_C8S240		1.43100964277e-05	1.01396808755e-05	-4.1704155522e-06
+UniRef50_A4WY94		0.00605287865868	0.00168752402968	-0.004365354629
+UniRef50_UPI0003AB78D1		5.8313210298e-06	1.99508143091e-06	-3.83623959889e-06
+UniRef50_P11072	Bacteriophage T4 late gene expression blocking protein	0.00232809749275	0.000203901062277	-0.00212419643047
+UniRef50_A3M3V3		0.000519331415074	0.0141037790365	0.0135844476214
+UniRef50_A1IQR7	DNA ligase	9.2960325562e-05	0.00294036446176	0.0028474041362
+UniRef50_Q8GFF2		5.00435134913e-05	0.000656701483245	0.000606657969754
+UniRef50_V2U4R3		0.000110269303704	0.00493008201866	0.00481981271496
+UniRef50_B8ITI2	Electron transfer flavoprotein alpha subunit	3.3838402116e-06	4.74875993403e-06	1.36491972243e-06
+UniRef50_U6A8L3	Sigma factor PvdS, controling pyoverdin biosynthesis	0.00104963565189	0.000708883988783	-0.000340751663107
+UniRef50_Q2IPT7	Tyrosine  tRNA ligase	3.19228161487e-05	7.49197506507e-06	-2.44308410836e-05
+UniRef50_UPI000366594A	hypothetical protein	5.94977337556e-05	0.000136065147493	7.65674137374e-05
+UniRef50_M9VKU7	ABC transporter permease	0.000585231817474	0.00538143105719	0.00479619923972
+UniRef50_X0UZB7	Marine sediment metagenome DNA, contig	0.000450920335639	9.66092397758e-05	-0.000354311095863
+UniRef50_Q72UH6	Phosphoribosylformylglycinamidine synthase 1	1.12120589817e-05	8.13387951903e-06	-3.07817946267e-06
+UniRef50_P0A270	Exopolyphosphatase	0.00335710305091	0.000505068018825	-0.00285203503208
+UniRef50_P45360	Putative UDP N acetylglucosamine 2 epimerase	0.0228211688713	0.0153431431014	-0.0074780257699
+UniRef50_Q01BN9	Putative histone deacetylase 	1.70837191156e-06	1.77770071668e-05	1.60686352552e-05
+UniRef50_U5AK60		9.44956799112e-06	6.99160687062e-05	6.04665007151e-05
+UniRef50_A3CR82		0.0064341807471	0.000956486326462	-0.00547769442064
+UniRef50_Q5HNN4	Uroporphyrinogen III synthase	0.00948485868664	0.00109058284019	-0.00839427584645
+UniRef50_UPI000347D2C7	hypothetical protein	3.8660318447e-06	5.35940457728e-06	1.49337273258e-06
+UniRef50_Q6BA79		0.000209666923604	6.37929758557e-05	-0.000145873947748
+UniRef50_Q8KA16	Endonuclease III	5.08997239308e-06	1.66586615096e-05	1.15686891165e-05
+UniRef50_Q2YA02	Acetylglutamate kinase	4.6570163451e-05	1.63456003694e-05	-3.02245630816e-05
+UniRef50_X8A848		0.000157329471649	0.000295439128552	0.000138109656903
+UniRef50_A3P8Z9	AMP binding domain protein	8.14132254934e-05	0.000392451659996	0.000311038434503
+UniRef50_Q8TUZ5	Acetylornithine aminotransferase	9.38748652083e-06	4.83111600869e-05	3.89236735661e-05
+UniRef50_UPI0000E0FA29	hypothetical protein	0.000123237233712	3.84743594911e-05	-8.47628742209e-05
+UniRef50_B7V608	Anthranilate phosphoribosyltransferase	0.00131024828569	0.000475771409542	-0.000834476876148
+UniRef50_Q3BVS7		1.07533788181e-05	3.14675899973e-05	2.07142111792e-05
+UniRef50_Q1DG75		4.13640603699e-06	3.47206726092e-06	-6.6433877607e-07
+UniRef50_D8JGE0	Paraquat inducible protein A	0.000569290316935	0.0050559396245	0.00448664930757
+UniRef50_I7AAS7		0.00145937204691	0.00213481955563	0.00067544750872
+UniRef50_P07023	T protein	0.00208687828214	0.00298284358995	0.00089596530781
+UniRef50_UPI000415AB07	hypothetical protein	5.60599196008e-05	0.000107069429761	5.10095101602e-05
+UniRef50_A8L089		2.47191873227e-05	8.65782142323e-05	6.18590269096e-05
+UniRef50_R5PFJ0		1.71516534797e-05	0.00379385370791	0.00377670205443
+UniRef50_UPI000371AE89	hypothetical protein	1.48081540801e-05	7.80331289052e-06	-7.00484118958e-06
+UniRef50_UPI000471CA1B	hypothetical protein	1.44800047927e-05	6.31105398396e-05	4.86305350469e-05
+UniRef50_Q2GSP5		5.69840470326e-05	0.000178320165679	0.000121336118646
+UniRef50_Q67JS9	50S ribosomal protein L1	0.000246722868534	0.00152745208586	0.00128072921733
+UniRef50_UPI000347BD58	hypothetical protein	1.50150856668e-06	5.85692250364e-05	5.70677164697e-05
+UniRef50_F2ECI9	Predicted protein	0.000215052039164	8.34596449124e-05	-0.000131592394252
+UniRef50_P26275	Positive alginate biosynthesis regulatory protein	0.000955009829538	0.000892040883023	-6.2968946515e-05
+UniRef50_UPI00037F445F	hypothetical protein	7.92275228434e-06	1.60525168196e-05	8.12976453526e-06
+UniRef50_Q2G505		6.28004850054e-05	6.6169965823e-05	3.3694808176e-06
+UniRef50_UPI00041221D7	hypothetical protein	2.693182296e-06	0.000204439373878	0.000201746191582
+UniRef50_Q8TZ24	Shikimate dehydrogenase	7.03791767867e-06	2.84374033621e-05	2.13994856834e-05
+UniRef50_UPI0003A57B20	cell envelope biogenesis protein AsmA	3.46969141971e-06	4.56602143568e-06	1.09633001597e-06
+UniRef50_B9KNT5		0.00112124551144	9.90855989002e-05	-0.00102215991254
+UniRef50_UPI000375676E	hypothetical protein	3.4347237099e-05	1.89465646212e-05	-1.54006724778e-05
+UniRef50_Q2S5X4	Osteoblast specific factor 2 related protein	0.000105522770751	1.97755386114e-05	-8.57472321396e-05
+UniRef50_UPI000479735A	cobalt ABC transporter ATPase	7.1811675981e-06	1.13326514398e-05	4.1514838417e-06
+UniRef50_UPI000374B954	MULTISPECIES	3.8641347511e-06	0.000102575124499	9.87109897479e-05
+UniRef50_Q5PAE7	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.30288268063e-06	7.04288880134e-05	6.61260053328e-05
+UniRef50_UPI00037730C9	hypothetical protein	0.000103626864446	0.000115644783698	1.2017919252e-05
+UniRef50_UPI00030CFB49	DNA repair protein RecO	2.17891034493e-05	7.65086594979e-05	5.47195560486e-05
+UniRef50_G0DX72	Galactose proton symporter	7.97505610236e-05	0.00563611284579	0.00555636228477
+UniRef50_A6UF25		4.89641647118e-06	8.56735118484e-06	3.67093471366e-06
+UniRef50_UPI0003F4DAD2	valyl tRNA synthetase	3.22222034044e-06	2.38048879683e-06	-8.4173154361e-07
+UniRef50_UPI0002E6EF76	hypothetical protein	7.11779801575e-05	0.000102466264123	3.12882839655e-05
+UniRef50_A0A014FPC4		0.000241412826739	0.00472602389292	0.00448461106618
+UniRef50_A3PJ57		0.00216317432904	0.00100346291254	-0.0011597114165
+UniRef50_UPI00034D8CD9	glycoside hydrolase	5.84596530468e-05	4.15183368612e-05	-1.69413161856e-05
+UniRef50_Q3IUW8	TraE protein	0.0543644498031	0.00594806306319	-0.0484163867399
+UniRef50_L0D7B2		0.00129259428552	0.000677429293665	-0.000615164991855
+UniRef50_U5MVQ9	D galactose binding periplasmic protein MglB	0.000448173103436	0.00417271836385	0.00372454526041
+UniRef50_K1YJB5	TRAP C4 dicarboxylate transport system permease DctM subunit 	5.20817118718e-06	2.17330519833e-05	1.65248807961e-05
+UniRef50_UPI0004648032	gamma aminobutyrate transporter	0.000130534049084	4.11778601541e-05	-8.93561889299e-05
+UniRef50_R5UIW1	Ribose phosphate diphosphokinase	0.000191293575433	0.000534408280041	0.000343114704608
+UniRef50_V5SZP2		0.000338330271987	8.12698899949e-05	-0.000257060381992
+UniRef50_B1IC45		0.00648701327746	0.00293040489143	-0.00355660838603
+UniRef50_Y3DCZ9		0.00280399023561	0.000242394012474	-0.00256159622314
+UniRef50_R5TSA7		0.000115439140317	0.0013757934969	0.00126035435658
+UniRef50_Q0AVW1	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	5.03305853913e-05	0.0164640967694	0.016413766184
+UniRef50_UPI000420523B	hypothetical protein	1.47264003199e-05	0.000193427272408	0.000178700872088
+UniRef50_C1CER1	Mobile genetic element	2.11928801617e-05	0.00260906209998	0.00258786921982
+UniRef50_B2UML1	Aminotransferase class I and II	0.00249020386997	0.000248497779899	-0.00224170609007
+UniRef50_U3SWF7		0.00579262691103	0.0038693386554	-0.00192328825563
+UniRef50_UPI00037F27EC	hypothetical protein, partial	9.68568966044e-05	1.50697702042e-05	-8.17871264002e-05
+UniRef50_P44474	Rod shape determining protein MreB	0.001449768585	0.00417700638408	0.00272723779908
+UniRef50_F3GF13	PAS protein 	0.000116568593363	0.000258716503313	0.00014214790995
+UniRef50_UPI0004783EFD	dihydroxyacetone kinase	4.68188491481e-05	0.00040915200243	0.000362333153282
+UniRef50_J2LVD6		0.000196959304303	0.00012189212742	-7.5067176883e-05
+UniRef50_W1FRR0	Acyl CoA dehydrogenases	0.000124160488222	1.97202111862e-05	-0.000104440277036
+UniRef50_W8VHA5	Exodeoxyribonuclease III	0.00354122444956	0.000678291340013	-0.00286293310955
+UniRef50_M9VM96	Methylaspartate mutase	0.000218411220623	0.00768536071564	0.00746694949502
+UniRef50_UPI000454B050	PREDICTED	0.000102904605098	0.00015261986347	4.9715258372e-05
+UniRef50_UPI000440E201	ArfGap domain containing protein	6.17704543059e-06	0.000139458016112	0.000133280970681
+UniRef50_R9SKZ5	SAM dependent methyltransferase UbiE family	0.00143286453148	0.000268469732005	-0.00116439479948
+UniRef50_P37641		0.000621862712346	0.000199089913611	-0.000422772798735
+UniRef50_P37645		0.00387970536495	0.00174572035699	-0.00213398500796
+UniRef50_UPI00041FC02E	citrate  synthase	5.60156266897e-06	7.78100631447e-06	2.1794436455e-06
+UniRef50_B9KMR2		0.00356932619299	0.00190449140493	-0.00166483478806
+UniRef50_S5DFR0	Isoleucine  tRNA ligase	8.15034876593e-05	0.00734439548074	0.00726289199308
+UniRef50_P62051	L lactate dehydrogenase	3.38147255908e-06	7.75145975408e-06	4.369987195e-06
+UniRef50_D8HE77	Inosine uridine preferring nucleoside hydrolase	0.0105504940507	0.00492330823716	-0.00562718581354
+UniRef50_UPI0003FEA5A5	2 dehydro 3 deoxyglucarate aldolase	7.3338907549e-06	8.50562104595e-05	7.77223197046e-05
+UniRef50_A3V6T8		0.000277812688782	0.000113454417794	-0.000164358270988
+UniRef50_Q7T6Y8	Ribonucleoside diphosphate reductase large subunit	2.53435698004e-06	8.77604373359e-06	6.24168675355e-06
+UniRef50_Q9K7C3	L arabinose transport ATP binding protein AraG	0.000484223709654	0.00188076913427	0.00139654542462
+UniRef50_UPI00040B989C	alkaline phosphatase	2.51914912274e-06	6.24416977003e-06	3.72502064729e-06
+UniRef50_A4XZ93	Elongation factor G	0.00151598623922	0.000552796376438	-0.000963189862782
+UniRef50_J7M1N2	LacI family transcriptional regulator	0.0058463589806	0.00269379582364	-0.00315256315696
+UniRef50_UPI0003624EE9	hypothetical protein	0.000826077504824	0.000252134224663	-0.000573943280161
+UniRef50_Q08120	Bacteroid development protein BacA	0.00196591798834	0.00701873815889	0.00505282017055
+UniRef50_D8JM63		0.00148202596255	0.0103315108114	0.00884948484885
+UniRef50_B2HNH3	PE PGRS family protein, PE_PGRS59	5.27533670295e-06	4.75711369588e-05	4.22958002559e-05
+UniRef50_UPI0003FE4D19	dienelactone hydrolase	2.30731265665e-06	1.34073541645e-05	1.11000415078e-05
+UniRef50_Z9W2S3		2.89351749633e-05	5.66140501122e-05	2.76788751489e-05
+UniRef50_UPI00046A585D	phenazine biosynthesis protein PhzF	1.48480432698e-05	2.42120711729e-05	9.3640279031e-06
+UniRef50_UPI000249288F	peptide ABC transporter ATP binding protein	2.71351761948e-05	9.46090156526e-06	-1.76742746295e-05
+UniRef50_A0A029LLM4	FAD NAD binding family protein	0.000166347154043	2.49425765922e-05	-0.000141404577451
+UniRef50_Q3SEU9	Phosphoribosyl AMP cyclohydrolase	2.11283600111e-05	1.97402947008e-05	-1.3880653103e-06
+UniRef50_F8JK27		6.41460811758e-05	7.38187008306e-05	9.6726196548e-06
+UniRef50_Q88QZ8	Peptide methionine sulfoxide reductase MsrA	8.08561375296e-05	0.000118814469735	3.79583322054e-05
+UniRef50_D8JGI7	MJ0042 family finger like domain protein	0.000145186918795	0.00575316778636	0.00560798086756
+UniRef50_Q49YQ5		0.021690212582	0.00587832984961	-0.0158118827324
+UniRef50_B9DPJ4	Signal recognition particle receptor FtsY	0.0217904047944	0.00418360597676	-0.0176067988176
+UniRef50_UPI0004686D1F	hypothetical protein	1.03940310952e-05	0.000394884657073	0.000384490625978
+UniRef50_Q89AJ2	Thioredoxin reductase	7.82410790355e-05	3.30996253722e-05	-4.51414536633e-05
+UniRef50_A6LYH8	Cation diffusion facilitator family transporter	0.000361230611344	0.00161556950029	0.00125433888895
+UniRef50_D5AMX5		0.00016274326939	7.70205648058e-05	-8.57227045842e-05
+UniRef50_UPI0004747720	peptide ABC transporter	1.03074359415e-05	5.94822246265e-05	4.9174788685e-05
+UniRef50_UPI00047E1486	hypothetical protein	2.39890909808e-05	6.21370992618e-05	3.8148008281e-05
+UniRef50_R4NJW9	Low specificity L threonine aldolase	0.0164907866256	0.00527777341219	-0.0112130132134
+UniRef50_H4JD68	Dienelactone hydrolase family protein	0.000351149757071	0.000578641212619	0.000227491455548
+UniRef50_Q5H5C1	Phosphinothricin acetyltransferase	0.000212468661645	0.00411624696069	0.00390377829905
+UniRef50_B2IQF0		0.000269518708112	0.000330305531007	6.0786822895e-05
+UniRef50_UPI00026CA133	hypothetical protein	0.000216511834094	9.10804851429e-05	-0.000125431348951
+UniRef50_UPI000368DDFC	hypothetical protein	5.42936899248e-06	8.85508898254e-06	3.42571999006e-06
+UniRef50_G8DCQ6		4.56399245966e-05	1.03227427633e-05	-3.53171818333e-05
+UniRef50_UPI0003672F43	hypothetical protein	1.30716766001e-05	0.000364635141302	0.000351563464702
+UniRef50_P39161	Uxu operon transcriptional regulator	0.00287373611105	0.00035723794984	-0.00251649816121
+UniRef50_UPI0002D2FE43	hypothetical protein	0.000955833738743	0.000258940421357	-0.000696893317386
+UniRef50_UPI0004786318	hypothetical protein	0.000536924207238	4.1849157279e-05	-0.000495075049959
+UniRef50_B9L7V8	Acyl carrier protein	2.26712905155e-05	0.000513143114561	0.000490471824045
+UniRef50_UPI00036E7E1F	hypothetical protein	4.78428505846e-06	0.000543272156887	0.000538487871829
+UniRef50_UPI00035EB162	hypothetical protein	5.5716660629e-05	4.05804588527e-05	-1.51362017763e-05
+UniRef50_D6SCJ9	Quinone oxidoreductase, YhdH YhfP family	0.0214088430145	0.00508140959083	-0.0163274334237
+UniRef50_R5IBX6		1.49881332125e-05	1.49608535524e-05	-2.72796601e-08
+UniRef50_A5UP26		0.00114763408026	0.000440771201791	-0.000706862878469
+UniRef50_Q0B215	DEAD DEAH box helicase domain protein	0.000679280080716	0.000319879866729	-0.000359400213987
+UniRef50_T0QM98		5.11668441524e-06	7.18591037925e-06	2.06922596401e-06
+UniRef50_A3K9M4	Transposase orfA IS5 family element	2.92464930602e-05	5.86066281138e-05	2.93601350536e-05
+UniRef50_A1TL08	Phosphoribosyl ATP pyrophosphatase	1.54711900322e-05	0.000134216353082	0.00011874516305
+UniRef50_UPI00016A61F3	ABC transporter related protein	0.000212555823696	0.000241869153529	2.9313329833e-05
+UniRef50_L3AZC3	Diguanylate cyclase YdeH	0.000467479389619	0.000364588524928	-0.000102890864691
+UniRef50_K4NAI3		0.00017055089858	0.00201378883874	0.00184323794016
+UniRef50_Q6G956	Maltose operon transcriptional repressor	0.0112377751268	0.00165632591667	-0.00958144921013
+UniRef50_A9G862	Phosphoglucosamine mutase	4.72781120293e-06	5.48691046475e-06	7.5909926182e-07
+UniRef50_P0AB86	Thiamine biosynthesis lipoprotein ApbE	0.00344699539116	0.000380543256776	-0.00306645213438
+UniRef50_UPI00036588E1	chromosome partitioning protein ParA	7.49391355456e-06	2.37405676355e-05	1.62466540809e-05
+UniRef50_P46926	Glucosamine 6 phosphate isomerase 1	1.08646064161e-05	9.73035413219e-06	-1.13425228391e-06
+UniRef50_UPI000470FD75	hypothetical protein	3.51318179187e-06	0.000169973426916	0.000166460245124
+UniRef50_F7Z394	Bis tetraphosphatase, ApaH	3.7156450053e-05	0.000159842683594	0.000122686233541
+UniRef50_B4S1N2	Thymidylate kinase	0.0013312894856	0.00147001986999	0.00013873038439
+UniRef50_UPI00036DAC41	hypothetical protein	5.38907131149e-05	6.96992693949e-05	1.580855628e-05
+UniRef50_P33358	HTH type transcriptional regulator MlrA	0.00375415879462	0.000959613540458	-0.00279454525416
+UniRef50_I3R9M8	Respiratory nitrate reductase subunit beta	1.081078446e-05	3.2289311724e-05	2.1478527264e-05
+UniRef50_Q119B3	Acyl carrier protein	3.90957602786e-05	0.000141098069814	0.000102002309535
+UniRef50_G2SPG8	Primosomal protein n	0.000543525626661	0.000170441393493	-0.000373084233168
+UniRef50_A5W8P2	Protein translocase subunit SecA	0.00128189170512	0.000599954631425	-0.000681937073695
+UniRef50_M1F9S3	Hydrogen peroxide inducible genes activator	0.000845625339297	0.000542428114656	-0.000303197224641
+UniRef50_UPI000375B204	hypothetical protein	5.54064586374e-06	2.23487966338e-05	1.68081507701e-05
+UniRef50_F4GVQ8	ABC transporter protein	0.00671681162303	0.00264386164072	-0.00407294998231
+UniRef50_Q2RKD5	Flagellar biosynthetic protein FliP	0.000949038838322	0.00233864205726	0.00138960321894
+UniRef50_A5F3I6	Phosphoadenosine phosphosulfate reductase	1.01669637716e-05	1.57657967483e-05	5.5988329767e-06
+UniRef50_A6LSK1	Probable dual specificity RNA methyltransferase RlmN	0.000280207633198	0.000786546749325	0.000506339116127
+UniRef50_A8IHY5	C4 dicarboxylate binding protein	0.0143850533664	0.00281301284109	-0.0115720405253
+UniRef50_A3VGU5		0.00314735908656	0.00137139342748	-0.00177596565908
+UniRef50_Q8FQS8		5.7396550747e-05	0.00094675041122	0.000889353860473
+UniRef50_UPI000377BBC9	hypothetical protein	3.71488997065e-05	3.6272139982e-05	-8.767597245e-07
+UniRef50_A4WUT7	Phage SPO1 DNA polymerase related protein	0.00125853214858	0.000567416347288	-0.000691115801292
+UniRef50_UPI0001C3962F	S1 RNA binding domain protein	0.000546853994325	0.000254438502187	-0.000292415492138
+UniRef50_UPI00026276D0	aryldialkylphosphatase	0.000178192867389	0.000190545617046	1.2352749657e-05
+UniRef50_P13016	1,6 anhydro N acetylmuramyl L alanine amidase AmpD	0.00376029037006	0.000909924006954	-0.00285036636311
+UniRef50_G7MAE0		0.000615707367459	0.000718694309658	0.000102986942199
+UniRef50_P31125	Probable amino acid metabolite efflux pump	0.00237244834786	0.000444845840262	-0.0019276025076
+UniRef50_UPI00022CAAD4	PREDICTED	5.76073384891e-06	1.3924001485e-05	8.16326763609e-06
+UniRef50_A6LQD1	Transcriptional regulator	0.00021049404583	0.00171695789281	0.00150646384698
+UniRef50_U6Z4K6		1.89163041696e-05	2.01702655526e-05	1.253961383e-06
+UniRef50_A0A059IRR6		2.4665115535e-05	6.88274019879e-06	-1.77823753362e-05
+UniRef50_P58219	Inner membrane protein YjgN	0.00187377978863	0.00196702134066	9.324155203e-05
+UniRef50_A0A011M3E9	Putative hydrolase of the alpha beta hydrolase fold protein	7.11002243818e-05	3.07953615794e-05	-4.03048628024e-05
+UniRef50_P75976		0.00410062560927	0.00252501269969	-0.00157561290958
+UniRef50_F8KLB6		0.0104776619413	0.000540213485111	-0.00993744845619
+UniRef50_UPI0004409E56	PREDICTED	2.36548947869e-05	7.92658942225e-05	5.56109994356e-05
+UniRef50_R9SM81	NMD3 family protein	0.00250138011209	0.00113499109971	-0.00136638901238
+UniRef50_UPI0003621607	hypothetical protein	2.29177250673e-05	1.87675553172e-05	-4.1501697501e-06
+UniRef50_H0DMI5	GA module	0.0092163534855	0.00530479974748	-0.00391155373802
+UniRef50_B1VGA4	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.29729050126e-06	6.6618662258e-06	2.36457572454e-06
+UniRef50_UPI000255A1B0	sulfate ABC transporter, inner membrane subunit CysT	4.3519338608e-05	8.08582239535e-06	-3.54335162126e-05
+UniRef50_Q9RTQ6	Daunorubicin C 13 ketoreductase	9.42144730903e-05	0.00445955478839	0.0043653403153
+UniRef50_G7M7W5	Heat shock protein DnaJ domain protein	0.000178621130367	0.000635158908179	0.000456537777812
+UniRef50_Q59998	Zinc transporting ATPase	6.03961704725e-06	1.23506521367e-05	6.31103508945e-06
+UniRef50_I3G3U5		0.0087597689592	0.000705171643859	-0.00805459731534
+UniRef50_F3Z677	Putative GTP dependent nucleic acid binding protein EngD	1.69814558057e-05	5.36170720414e-05	3.66356162357e-05
+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	3.39451880327e-06	1.97286636465e-05	1.63341448432e-05
+UniRef50_Q5LSI1	ABC transporter, permease protein	0.00621612708683	0.00086919200598	-0.00534693508085
+UniRef50_V4IUE3		0.00010315645238	5.32492433079e-05	-4.99072090721e-05
+UniRef50_B2HQA4	Imidazoleglycerol phosphate dehydratase	0.000280203910878	0.00547463029235	0.00519442638147
+UniRef50_D8J0P8	Quinohemoprotein alcohol dehydrogenase protein	2.03003627687e-05	2.05273948792e-05	2.270321105e-07
+UniRef50_A0A023VQ43	Phosphatidylethanolamine binding protein	4.26538898029e-05	7.71788265224e-06	-3.49360071507e-05
+UniRef50_UPI0003619783	hypothetical protein	0.000183209910815	9.25604774978e-05	-9.06494333172e-05
+UniRef50_S9RV98		2.9672383764e-05	1.92457967002e-05	-1.04265870638e-05
+UniRef50_B2HWV5	Periplasmic serine protease 	0.000200435038326	0.00528682380956	0.00508638877123
+UniRef50_C3DVF3		8.19058504845e-06	0.000120732048569	0.000112541463521
+UniRef50_Q4WWN8	Sulfate adenylyltransferase	0.0107301470245	0.00317099974435	-0.00755914728015
+UniRef50_B2A2N1	Ribonuclease 3	1.67207751478e-05	3.774531247e-05	2.10245373222e-05
+UniRef50_UPI000473A452	hypothetical protein, partial	1.05582610668e-05	1.90789829071e-05	8.5207218403e-06
+UniRef50_UPI00042382C9	hypothetical protein	3.4606272488e-06	1.29922261312e-05	9.5315988824e-06
+UniRef50_E0XTA9		0.000225785656794	0.00023139536678	5.609709986e-06
+UniRef50_UPI00026292D6	TRAP dicarboxylate transporter subunit DctM, partial	3.80935032354e-05	7.92803232846e-05	4.11868200492e-05
+UniRef50_UPI0003B7A748	hypothetical protein	2.65686863385e-05	0.000294723584244	0.000268154897906
+UniRef50_Q6FDS1	Leucyl phenylalanyl tRNA  protein transferase	0.000659803906303	0.00659114390271	0.00593133999641
+UniRef50_V2J6J5		3.09497615159e-06	4.44521405757e-06	1.35023790598e-06
+UniRef50_A0A022H255	Methylhydantoinase	2.27711027447e-06	4.36558018335e-06	2.08846990888e-06
+UniRef50_W4WUV4		8.994143814e-05	2.20023027663e-05	-6.79391353737e-05
+UniRef50_O06844	Nitric oxide reductase subunit C	0.019246131115	0.00373190347592	-0.0155142276391
+UniRef50_C5YNI9		0.00195262885533	0.00124957710367	-0.00070305175166
+UniRef50_UPI00020D97D1	large conductance mechanosensitive channel protein MscL	0.00039352707688	8.81688854646e-05	-0.000305358191415
+UniRef50_A6LY57		0.000200775710763	0.00272581052311	0.00252503481235
+UniRef50_A6LY56		0.000508573831134	0.0014894868116	0.000980912980466
+UniRef50_G8V949	ABC transporter, molybdenum transport system	0.000477306289807	0.00553267193172	0.00505536564191
+UniRef50_Q9KIP8	D tagatose 1,6 bisphosphate aldolase subunit KbaY	0.00321271779445	0.00266264123273	-0.00055007656172
+UniRef50_P20576	Anthranilate synthase component 2	0.00101587443054	0.00370458718065	0.00268871275011
+UniRef50_UPI0004724CFA	hypothetical protein	2.41313566924e-05	2.16217316425e-06	-2.19691835281e-05
+UniRef50_F7ZHD8		0.000278621984047	5.76240456472e-05	-0.0002209979384
+UniRef50_H8FVA2	Transposase	0.000144376803346	7.15292622965e-05	-7.28475410495e-05
+UniRef50_K7RQ56	Cell cycle protein, FtsW RodA SpoVE family	0.000251540005745	0.00412506337596	0.00387352337021
+UniRef50_D3QHZ6		3.75615311622e-05	5.9894085134e-05	2.23325539718e-05
+UniRef50_UPI000374CE3A	hypothetical protein, partial	9.65932242645e-05	4.5022694151e-05	-5.15705301135e-05
+UniRef50_P72371	Cap8E	0.0298456966409	0.00745154278838	-0.0223941538525
+UniRef50_U5NN01		0.000588657486979	0.00118126682079	0.000592609333811
+UniRef50_A6LV36	Integral membrane sensor signal transduction histidine kinase	0.00022548951745	0.00220164270456	0.00197615318711
+UniRef50_Q1GCT8	Butyryl CoA dehydrogenase	0.000150392824239	0.000621333551003	0.000470940726764
+UniRef50_R4ZMT7	Additional lipoprotein component of predicted cobalamin ECF transporter	0.00286715376256	0.000864341576184	-0.00200281218638
+UniRef50_D6SCB6	Transporter, major facilitator family protein	0.0201908765071	0.00585977767828	-0.0143310988288
+UniRef50_A0A009KXU9		0.000856704583993	0.00673882369338	0.00588211910939
+UniRef50_Q2Y6A7	DedA	0.00072274974554	0.00630212612732	0.00557937638178
+UniRef50_UPI00040856F2	hypothetical protein	4.18592294051e-05	8.72697745955e-06	-3.31322519456e-05
+UniRef50_G7M3S1	Transcriptional regulator, TetR family	0.00120247925878	0.00067296182176	-0.00052951743702
+UniRef50_Q4I1N3	Sulfate adenylyltransferase	9.68744081644e-05	5.10222332665e-05	-4.58521748979e-05
+UniRef50_P76121		0.00833075965547	0.000456675317307	-0.00787408433816
+UniRef50_P76123		0.00203736621546	0.000440883819306	-0.00159648239615
+UniRef50_Y5PB14		0.00125137296672	0.00131251868976	6.114572304e-05
+UniRef50_L0GW54	Exopolyphosphatase	2.95460731849e-06	1.911798982e-05	1.61633825015e-05
+UniRef50_R5S9I0		2.3867989663e-05	0.00408832865663	0.00406446066697
+UniRef50_O35008	Putative protein YtqA	0.0318279159764	0.00959661938576	-0.0222312965906
+UniRef50_R6G2T1	Dihydroxyacetone kinase L subunit	0.000184740288181	0.000873555359152	0.000688815070971
+UniRef50_X9N846		0.00716955519116	0.00383507617837	-0.00333447901279
+UniRef50_D5WIU5	RND efflux system, outer membrane lipoprotein, NodT family	7.82624717782e-05	0.00800896019677	0.00793069772499
+UniRef50_UPI0003B5B66A	single stranded DNA binding protein	1.81003046964e-05	8.86394760128e-05	7.05391713164e-05
+UniRef50_Q1AVX4	UDP N acetylmuramate  L alanine ligase	4.14154932133e-06	5.45919075122e-06	1.31764142989e-06
+UniRef50_Q5E715	Methionine import ATP binding protein MetN	0.000709196778935	1.00549448677e-05	-0.000699141834067
+UniRef50_Q9PDT8	Enolase	0.00708847917128	0.0174609156404	0.0103724364691
+UniRef50_Q9Z3U1	DNA translocase FtsK	0.00073754896499	0.000244590306005	-0.000492958658985
+UniRef50_A1WTJ3	Dihydroorotate dehydrogenase 	1.17973315594e-05	1.92139002457e-05	7.4165686863e-06
+UniRef50_H2JB32	Terminase like family	0.00047380356794	0.00209457710738	0.00162077353944
+UniRef50_UPI0003812972	hypothetical protein	1.58488484792e-05	1.17149505207e-05	-4.1338979585e-06
+UniRef50_N1MA35		0.000403755792815	0.000143689554452	-0.000260066238363
+UniRef50_H8ZPX2	3 succinoylsemialdehyde pyridine dehydrogenase	0.00681615975786	0.00150922056954	-0.00530693918832
+UniRef50_Q9JXS7	Chromosomal replication initiator protein DnaA	7.29206675159e-05	0.0019026398556	0.00182971918808
+UniRef50_N9DK24		7.97875854232e-05	2.2566372817e-05	-5.72212126062e-05
+UniRef50_D5RTD5		1.61208480771e-05	3.12951140438e-05	1.51742659667e-05
+UniRef50_UPI00047C92E9	chromosomal replication initiation protein	6.80686735317e-06	8.35579829301e-06	1.54893093984e-06
+UniRef50_P0DKR8	Spermidine N acetyltransferase	0.0115619509848	0.00135578050752	-0.0102061704773
+UniRef50_UPI000475FA76	hypothetical protein	1.40828212188e-05	4.92898527894e-05	3.52070315706e-05
+UniRef50_UPI0003631E18	hypothetical protein	2.13458069458e-05	0.000513934948797	0.000492589141851
+UniRef50_A6E2Z7		1.8566465968e-05	1.75415932817e-05	-1.0248726863e-06
+UniRef50_I0G8T6		0.000395491838906	1.78703158228e-05	-0.000377621523083
+UniRef50_U1SML3		4.73797237908e-05	0.00157433376093	0.00152695403714
+UniRef50_F9NW45	Trehalose utilization	0.000232537570129	0.00616345902754	0.00593092145741
+UniRef50_Q9RTI6	3 isopropylmalate dehydratase large subunit 2	0.000504016906207	0.0441915962531	0.0436875793469
+UniRef50_E0RLY4	Short chain type dehydrogenase reductase	0.00016629338716	0.00165459953099	0.00148830614383
+UniRef50_U4JC67		0.000119423332984	2.41981232351e-05	-9.52252097489e-05
+UniRef50_M1LR29	Phage late control gene D protein GPD	0.000607658354639	0.00273424158235	0.00212658322771
+UniRef50_W4HIE7		8.65895119189e-05	7.51196124739e-05	-1.1469899445e-05
+UniRef50_P45260	Acetolactate synthase small subunit	0.000265606252909	0.000347344409226	8.1738156317e-05
+UniRef50_UPI0000379465	hypothetical protein	0.00102365695748	0.000401791435631	-0.000621865521849
+UniRef50_G7M1N6	Phage tail tape measure protein, TP901 family	0.000230585659666	0.00174424655247	0.0015136608928
+UniRef50_R9YLQ5	LXG domain of WXG superfamily protein	0.000333282140349	0.000658161901382	0.000324879761033
+UniRef50_Q4L5B7	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0142730581574	0.00636472446656	-0.00790833369084
+UniRef50_Q9LD57	Phosphoglycerate kinase 1, chloroplastic	5.78880574924e-06	4.43299766839e-05	3.85411709347e-05
+UniRef50_H3VIV1	Transposase, IS4 like family protein	0.00418770192483	0.00100962976135	-0.00317807216348
+UniRef50_UPI0003823D63	hypothetical protein	5.18225623424e-05	0.000135598700073	8.37761377306e-05
+UniRef50_U5P976	Magnesium transporter	0.00880023222741	0.00059187957924	-0.00820835264817
+UniRef50_UPI00026263A2	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.75423002605e-05	4.20471360329e-05	-5.4951642276e-06
+UniRef50_J7QFY9	Lysine , arginine , ornithine binding periplasmic protein	0.00293579100811	0.00161118574196	-0.00132460526615
+UniRef50_Q6GK28	Protein EsaA	0.0120703165844	0.0023850349728	-0.0096852816116
+UniRef50_B7H3M8	MotA TolQ ExbB proton channel family protein	0.000735708108644	0.00890439824847	0.00816869013983
+UniRef50_A1B5F3		0.00241560117097	0.00037381861418	-0.00204178255679
+UniRef50_U5LD58	Asparaginase	0.02092799312	0.00432627025036	-0.0166017228696
+UniRef50_P39280	L lysine 2,3 aminomutase	0.00301452340411	0.000516378222061	-0.00249814518205
+UniRef50_UPI000380B87F	hypothetical protein	4.2161090402e-06	4.10340899236e-06	-1.1270004784e-07
+UniRef50_L0GSA6	Type II secretory pathway, component ExeA 	0.000367105546411	0.000138972567152	-0.000228132979259
+UniRef50_R1B4D2		3.92656682586e-05	8.2153907676e-05	4.28882394174e-05
+UniRef50_Q8D335	Glutathione synthetase	5.27277228925e-05	8.64010558553e-06	-4.4087617307e-05
+UniRef50_U5NRL5		0.0268686315762	0.010024039437	-0.0168445921392
+UniRef50_J7L4M3		5.65104544586e-05	0.00157301845136	0.0015165079969
+UniRef50_L0NCJ2		0.000200649964896	2.78857245642e-05	-0.000172764240332
+UniRef50_UPI00036B778B	hypothetical protein	6.25968339341e-05	0.000278228713541	0.000215631879607
+UniRef50_Q8CWR6	Alpha monoglucosyldiacylglycerol synthase	0.00418503997781	0.00594243999149	0.00175740001368
+UniRef50_B9KQ22	Lysine exporter protein 	0.000829856265178	0.00187721433139	0.00104735806621
+UniRef50_A1SNL2	30S ribosomal protein S3	0.0173619141814	0.00434943766922	-0.0130124765122
+UniRef50_M0X3J8		6.53508961172e-05	0.00190569323248	0.00184034233636
+UniRef50_B3A0N5	Apyrase	9.70515907713e-06	5.14838127097e-06	-4.55677780616e-06
+UniRef50_S4JHM6		0.000855062237382	0.000359081748679	-0.000495980488703
+UniRef50_UPI0001F85C4F	L alanine dehydrogenase like protein	5.68994138396e-05	0.00115830354983	0.00110140413599
+UniRef50_W0E372	Sensor histidine kinase	0.000750315914886	0.000826984538403	7.6668623517e-05
+UniRef50_UPI0003B51C09	sugar ABC transporter permease	1.645191136e-05	0.000109049421513	9.2597510153e-05
+UniRef50_UPI0000164CD9	putative transposase	0.00104009031306	0.224490351769	0.223450261456
+UniRef50_A5UNF8	Transporter	0.00555748880488	0.00128402657247	-0.00427346223241
+UniRef50_U3SVD1	Glucosyltransferase	0.00591138245052	0.00169724332695	-0.00421413912357
+UniRef50_R4W4T4		0.00116557837691	0.000699750546659	-0.000465827830251
+UniRef50_UPI00046B847F	PREDICTED	4.57991772569e-05	7.8698535773e-05	3.28993585161e-05
+UniRef50_Q9KDD8	Uridine kinase	1.9242592149e-05	0.000553294454599	0.00053405186245
+UniRef50_UPI00024931AE	DNA primase	2.5629783988e-05	8.38050006709e-05	5.81752166829e-05
+UniRef50_N1MTW2	Zn dependent hydroxyacylglutathione hydrolase   Polysulfide binding protein	0.0128601120247	0.00189599563013	-0.0109641163946
+UniRef50_B9DXD9		0.000521870030673	0.00935843604362	0.00883656601295
+UniRef50_UPI0004137D5A	hypothetical protein	5.15221984775e-06	5.55916322277e-06	4.0694337502e-07
+UniRef50_B7J5S3	3 isopropylmalate dehydratase small subunit	2.79143686323e-05	4.75346164294e-05	1.96202477971e-05
+UniRef50_UPI0004561650	hypothetical protein PFL1_00576	4.92007997764e-05	8.13719612646e-06	-4.10636036499e-05
+UniRef50_I0TVV6		0.000394338795662	1.7073855617e-05	-0.000377264940045
+UniRef50_A4WT53	PAS PAC sensor hybrid histidine kinase	0.00817877758137	0.00177756860026	-0.00640120898111
+UniRef50_D1GN02	Phage protein	0.00129411856802	0.00552826745699	0.00423414888897
+UniRef50_B9KPL9	Serine alanine racemase VanTc3	0.00690152201695	0.00105136240652	-0.00585015961043
+UniRef50_A1A0Q3	ATP binding protein of ABC transporter for glutamate_aspartate	0.000822898073514	0.0145034286963	0.0136805306228
+UniRef50_U6IFI6	Succinate dehydrogenase  iron sulfur	1.56075853534e-05	3.63080855119e-05	2.07005001585e-05
+UniRef50_UPI0002FDF659	hypothetical protein	0.000224736170172	8.22763072484e-05	-0.000142459862924
+UniRef50_A3M3T0	Merops peptidase family S24	0.000214887659684	0.00497104478521	0.00475615712553
+UniRef50_Q8XBL0	Pyridoxine kinase	0.0047296818035	0.00128831036566	-0.00344137143784
+UniRef50_I8G444	QmcA domain protein	0.000153135691294	4.92535906739e-05	-0.00010388210062
+UniRef50_UPI00040A034C	hypothetical protein	0.000117410236328	3.18644624967e-05	-8.55457738313e-05
+UniRef50_UPI00046A4743	hypothetical protein	4.77346887315e-06	6.33420663349e-05	5.85685974617e-05
+UniRef50_D7GH22	Sugar  phosphate isomerase epimerase	0.000183245625651	0.00516893139385	0.0049856857682
+UniRef50_Q3HKP9	Capsule polysaccharide export protein	0.0167435587439	0.00428559219853	-0.0124579665454
+UniRef50_G8WJH0	SD repeat containing cell surface protein	5.89785219924e-06	4.9981671354e-06	-8.9968506384e-07
+UniRef50_M2IQZ0		9.40609324575e-05	9.5993694535e-05	1.9327620775e-06
+UniRef50_UPI00036C3395	hypothetical protein	1.25206527223e-05	1.71480064877e-05	4.6273537654e-06
+UniRef50_B7V5N6	ATP dependent DNA helicase RecG	5.97918672899e-05	0.000285566237096	0.000225774369806
+UniRef50_UPI000467A2E7	hypothetical protein	8.3421315248e-06	8.32340687593e-06	-1.872464887e-08
+UniRef50_O25890	Chaperone protein DnaJ	0.000149598146176	0.00576404844868	0.0056144503025
+UniRef50_UPI000370079F	hypothetical protein	1.60036673401e-06	2.68153547889e-06	1.08116874488e-06
+UniRef50_A0A037YH66	UDP pyrophosphate phosphatase	0.00110309795144	0.00234468534782	0.00124158739638
+UniRef50_UPI00035FC7A0	hypothetical protein, partial	1.14066281251e-05	1.29698171571e-05	1.563189032e-06
+UniRef50_Z2DJY9	Membrane protein	4.35541143537e-05	7.85753266549e-06	-3.56965816882e-05
+UniRef50_Q2RRZ4	ABC transporter component	0.00116755043878	0.000636426744807	-0.000531123693973
+UniRef50_W0DT44	Phosphate starvation inducible E	3.44221149706e-05	2.26576702423e-05	-1.17644447283e-05
+UniRef50_UPI00016C3CBF	tRNA pseudouridine synthase D	1.11517199679e-05	3.89456828263e-05	2.77939628584e-05
+UniRef50_P71243	Putative colanic acid biosynthesis glycosyltransferase WcaL	0.00266901998859	0.00040551752795	-0.00226350246064
+UniRef50_UPI0003B6E3CF	3 ketoacyl ACP reductase	5.50152188711e-06	1.59382655432e-05	1.04367436561e-05
+UniRef50_K1DU50		8.1572464485e-05	9.50415732837e-05	1.34691087987e-05
+UniRef50_UPI0003ADCF18	PREDICTED	1.29394338211e-05	4.28829839684e-05	2.99435501473e-05
+UniRef50_C8S4J7	Rhodanese domain protein	7.3414245391e-05	0.000482268201838	0.000408853956447
+UniRef50_Q6A9E9	Conserved protein DUF181	1.87411528866e-05	0.000187368131423	0.000168626978536
+UniRef50_Z4JX05	Aryl phospho beta D glucosidase BglA	0.00741555694237	0.000916473200507	-0.00649908374186
+UniRef50_UPI00046D6223	hypothetical protein	9.24800655398e-07	5.91317081203e-05	5.82069074649e-05
+UniRef50_K1YN95		0.00014837500546	0.000388327019228	0.000239952013768
+UniRef50_E2XQ21	Transcriptional regulator, GntR family	0.000546015685656	0.000891123966912	0.000345108281256
+UniRef50_G3Z0X9		6.51092115584e-05	0.000180156244632	0.000115047033074
+UniRef50_D8HEX2		0.0158601268871	0.00607171340058	-0.00978841348652
+UniRef50_P45077	Metalloprotease PmbA homolog	0.00268092204155	0.00154816858413	-0.00113275345742
+UniRef50_B6ISJ0	Peptidase M20D, amidohydrolase, putative	0.00409085510496	0.00126918829327	-0.00282166681169
+UniRef50_D4TZ64	Tat pathway signal sequence domain protein	1.07574370492e-05	0.00159110723982	0.00158034980277
+UniRef50_UPI0002EED4E0	hypothetical protein	3.03748642464e-05	0.000530679800708	0.000500304936462
+UniRef50_Q7VDQ5	Imidazoleglycerol phosphate dehydratase	2.89900469797e-05	2.96656052923e-05	6.755583126e-07
+UniRef50_UPI00037AD56D	hypothetical protein	0.00174576034116	0.00140627002474	-0.00033949031642
+UniRef50_V9U275	Two component hybrid sensor and regulator	0.000384996737874	0.000186284030768	-0.000198712707106
+UniRef50_UPI00033433B7		4.19559761385e-05	2.37401923471e-05	-1.82157837914e-05
+UniRef50_A5CXT4	Adenylate kinase	8.61323099979e-06	1.40693834537e-05	5.45615245391e-06
+UniRef50_Q65JY3	Phospho N acetylmuramoyl pentapeptide transferase	0.0151481888935	0.0119667640595	-0.003181424834
+UniRef50_UPI0003650BE9	hypothetical protein	1.28141903458e-05	9.78084798547e-05	8.49942895089e-05
+UniRef50_L7WTJ0	Lipase	0.00959269125166	0.00313940842354	-0.00645328282812
+UniRef50_A6LZ86	4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000591901940935	0.000195573976954	-0.000396327963981
+UniRef50_P13522	Sucrose 6 phosphate hydrolase	0.00377287916303	0.00496639246154	0.00119351329851
+UniRef50_U4V9A4		0.000110523066742	2.74657171253e-05	-8.30573496167e-05
+UniRef50_U5MRD6	Glycosyl transferases group 1	0.000221584936159	0.000438521638986	0.000216936702827
+UniRef50_UPI000362B65E	hypothetical protein	3.29133315166e-06	5.12265992425e-06	1.83132677259e-06
+UniRef50_O34527	HTH type transcriptional regulator CymR	0.0192150299721	0.0110022922138	-0.0082127377583
+UniRef50_R6AX85		7.9049456172e-06	1.24244419472e-05	4.51949633e-06
+UniRef50_A7NI79	Thymidine kinase	5.94286941918e-06	3.02363779631e-05	2.42935085439e-05
+UniRef50_Q49UR2		0.0016474594	0.00279498896508	0.00114752956508
+UniRef50_UPI0003F49ED6	hypothetical protein TREMEDRAFT_39067	2.6118484446e-05	6.48259576322e-05	3.87074731862e-05
+UniRef50_Q3JRJ0		4.49190764047e-05	3.27916737367e-05	-1.2127402668e-05
+UniRef50_A0A017TDI9		0.000228302484785	0.000595153886827	0.000366851402042
+UniRef50_U5RXJ0	ApbE family lipoprotein	0.000278271246844	0.000980471241071	0.000702199994227
+UniRef50_Q9KIP9	Putative tagatose 6 phosphate ketose aldose isomerase	0.0031908793394	0.000430670465334	-0.00276020887407
+UniRef50_R4ZN50	Accessory secretory protein Asp1	0.000420737103937	0.000958713139362	0.000537976035425
+UniRef50_A7GMU8	Imidazole glycerol phosphate synthase subunit HisH	0.00182852442582	0.0015499185642	-0.00027860586162
+UniRef50_F2A3T6		2.63248153318e-05	3.7530751246e-05	1.12059359142e-05
+UniRef50_F2A3T7		4.16371803198e-05	9.35014067362e-05	5.18642264164e-05
+UniRef50_F6G911	Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein	0.0083617128912	0.00239065456961	-0.00597105832159
+UniRef50_R6MA81		0.00636656717431	0.00231599442465	-0.00405057274966
+UniRef50_UPI0003A6077C	MULTISPECIES	2.27496268005e-05	2.05080173783e-05	-2.2416094222e-06
+UniRef50_G7M9L8	RNA polymerase sigma factor, sigma 70 family	0.000342132316185	0.00364988728217	0.00330775496599
+UniRef50_UPI00037595E9	hypothetical protein	0.000804680106966	0.000144089306556	-0.00066059080041
+UniRef50_UPI00029AD5DC	sugar acetyltransferase	0.000163192216292	0.000315548488631	0.000152356272339
+UniRef50_A8FSI3	Lipoprotein signal peptidase	1.2914898066e-05	3.35849165438e-05	2.06700184778e-05
+UniRef50_I6X4E6		0.000703390041336	0.00369249614578	0.00298910610444
+UniRef50_Q7NKY2	Gll1344 protein	6.20708487245e-05	2.42179461209e-05	-3.78529026036e-05
+UniRef50_K2JVH5		0.000401853519558	8.09797553478e-05	-0.00032087376421
+UniRef50_Q87IM1	Tryptophan synthase beta chain 2	0.00985695941472	0.00735173054717	-0.00250522886755
+UniRef50_UPI0003635E67	hypothetical protein	7.67537123549e-07	0.000130839672438	0.000130072135314
+UniRef50_D8HDF1		0.00402926014687	0.0012511240102	-0.00277813613667
+UniRef50_S9RXU2	Putative membrane protein	0.000135619347064	1.88613664487e-05	-0.000116757980615
+UniRef50_F2AIM8		0.00132363919928	0.0024201315059	0.00109649230662
+UniRef50_M5DRE1	Diguanylate cyclase	5.03261448424e-06	5.33281866195e-05	4.82955721353e-05
+UniRef50_L7WXF9		0.0196217480518	0.00383407240475	-0.015787675647
+UniRef50_A0A037V0H1	CRISPR associated protein Cas3	0.000129795395708	7.79523435085e-05	-5.18430521995e-05
+UniRef50_U5MZA5	Double stranded RNA RNA DNA hybrid binding protein	0.000119457591412	0.0010682729974	0.000948815405988
+UniRef50_W1DV17	FIG001826	0.000240623041765	0.000124814816943	-0.000115808224822
+UniRef50_C4L8H9	Hydroxyethylthiazole kinase	8.03186243511e-06	8.91352113137e-06	8.8165869626e-07
+UniRef50_Q82DT6	NADH quinone oxidoreductase subunit B 2	9.40441445721e-06	0.000132836295103	0.000123431880646
+UniRef50_UPI000262CA63	phosphoglycolate phosphatase	7.23667020105e-06	1.41718331835e-05	6.93516298245e-06
+UniRef50_S5VB68	Extracellular solute binding protein family 1	0.00107003461787	0.000467881152802	-0.000602153465068
+UniRef50_UPI0004746364	ABC transporter ATP binding protein	2.16693561435e-05	1.16754012645e-05	-9.993954879e-06
+UniRef50_UPI000470C654	hypothetical protein	4.05457825498e-05	2.25853472638e-05	-1.7960435286e-05
+UniRef50_UPI00046D6B42	hypothetical protein	1.88998607553e-06	1.29989358213e-05	1.11089497458e-05
+UniRef50_UPI00046533A1	hypothetical protein	4.48414150421e-05	1.51799489096e-05	-2.96614661325e-05
+UniRef50_A3PS59	ATP synthase subunit beta 2	0.00213670217093	0.000827177709709	-0.00130952446122
+UniRef50_Q8TY90	50S ribosomal protein L3	0.00203977377388	0.00138835882412	-0.00065141494976
+UniRef50_X1CQ64	Marine sediment metagenome DNA, contig	6.33774368481e-06	2.37809753065e-05	1.74432316217e-05
+UniRef50_UPI0003B5E6F5	succinyl CoA	4.50955400479e-05	7.29306988013e-05	2.78351587534e-05
+UniRef50_Q2FC51	Beta lactamase regulatory protein 	0.000884854930389	0.000235287798871	-0.000649567131518
+UniRef50_L9M7Y3		3.12057724381e-05	0.000116627837632	8.54220651939e-05
+UniRef50_W9GPH4		2.24026392221e-05	6.19239180645e-05	3.95212788424e-05
+UniRef50_Q1J961	Chromosome partitioning protein parB	0.00295416793063	0.00109889015683	-0.0018552777738
+UniRef50_O57979	Amidophosphoribosyltransferase	9.66977626597e-06	6.82197319754e-05	5.85499557094e-05
+UniRef50_UPI00037A9112	hypothetical protein	0.000101973264894	1.59757800731e-05	-8.59974848209e-05
+UniRef50_W1K3B0	ABC transporter permease 	0.000146275645051	9.37744974395e-05	-5.25011476115e-05
+UniRef50_Q46769	dTDP 4 dehydrorhamnose reductase	0.00268197223256	0.000576284914849	-0.00210568731771
+UniRef50_UPI000375C690	hypothetical protein	0.00346844481803	0.000518099482802	-0.00295034533523
+UniRef50_G7M2K9		0.00035947760683	0.0015253445231	0.00116586691627
+UniRef50_W1JQY9	ABC transporter substrate binding protein	3.6129500953e-05	4.26125806884e-06	-3.18682428842e-05
+UniRef50_B9KQ28	Short chain dehydrogenase reductase SDR	0.00014842175184	0.000779415626136	0.000630993874296
+UniRef50_Q3IV86	Putative signal peptide protein	0.00408977136998	0.00536618798999	0.00127641662001
+UniRef50_B2IHW6	NADH quinone oxidoreductase subunit B	0.0187173152377	0.00256464830968	-0.016152666928
+UniRef50_E4R4C3	Phospholipid glycerol acyltransferase	0.00152667343028	0.000463171940794	-0.00106350148949
+UniRef50_T5LAM1		7.09818393889e-05	0.00022354747467	0.000152565635281
+UniRef50_T1XT22	Amino acid permease, putative	0.0192927166706	0.006537445294	-0.0127552713766
+UniRef50_UPI0003D746D3	PREDICTED	3.37341420109e-05	3.83837609567e-05	4.6496189458e-06
+UniRef50_P12758	Uridine phosphorylase	0.00724037112896	0.00117622224142	-0.00606414888754
+UniRef50_T0T7N0	Methylenetetrahydrofolate reductase	0.00453118656265	0.00190930909601	-0.00262187746664
+UniRef50_UPI0003650C71	hypothetical protein	3.75398926197e-06	0.000493411660296	0.000489657671034
+UniRef50_A6TH46	Thiol	0.0026910727388	0.000588194810632	-0.00210287792817
+UniRef50_K8CFI0		3.29500338677e-05	0.00033240091381	0.000299450879942
+UniRef50_A9BPL9	Alkylphosphonate utilization operon protein PhnA	0.00142358009624	0.00170943992618	0.00028585982994
+UniRef50_B5EAA9	Repeat containing protein	8.41740174779e-07	4.61050513274e-06	3.76876495796e-06
+UniRef50_C0YBF1	Bmlf1	4.50553563171e-05	0.000481494628027	0.00043643927171
+UniRef50_Q4L4D1	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0059681273456	0.00280436316379	-0.00316376418181
+UniRef50_R9ZJX7	Membrane protein	0.000617291717953	0.000129809540745	-0.000487482177208
+UniRef50_UPI0004728032	hypothetical protein	9.13879209252e-06	6.37477685501e-06	-2.76401523751e-06
+UniRef50_K1UNJ2		0.000111250481525	0.000153266452563	4.2015971038e-05
+UniRef50_O31214	Ubiquinol cytochrome c reductase iron sulfur subunit	0.00271468647303	0.0052603280721	0.00254564159907
+UniRef50_F7Z135	Purine operon repressor, PurR	0.0246115778739	0.00744939611464	-0.0171621817593
+UniRef50_UPI000360723E	hypothetical protein	9.33102369204e-05	2.8095261512e-05	-6.52149754084e-05
+UniRef50_Q9CL21	ATP dependent DNA helicase RecQ	2.69715590188e-05	1.06163048148e-05	-1.6355254204e-05
+UniRef50_D4HDF7	Dihydroorotase	8.84732786372e-05	0.00689085363188	0.00680238035324
+UniRef50_C5N054	Transcriptional regulator, GntR family	0.0141059445048	0.00174771802447	-0.0123582264803
+UniRef50_UPI00036E9C27	hypothetical protein	3.28227202705e-05	3.65917202089e-05	3.7689999384e-06
+UniRef50_A8L4W4	Periplasmic binding protein LacI transcriptional regulator	0.0068694884087	0.00214281664935	-0.00472667175935
+UniRef50_UPI0003084509	hypothetical protein	2.13642745381e-05	2.74032755915e-05	6.0390010534e-06
+UniRef50_B2TER4	Lipid A ABC exporter family, fused ATPase and inner membrane subunits	0.000555789561762	0.000101950531138	-0.000453839030624
+UniRef50_M7Y7A3	Gram positive signal peptide protein, YSIRK family	0.00294802808926	0.000787511213846	-0.00216051687541
+UniRef50_B2UZX1	Medium FAD binding subunit of molybdenum enzyme	0.000915588036967	0.00129290121664	0.000377313179673
+UniRef50_Q5HPD3		0.0178369003335	0.00555979371893	-0.0122771066146
+UniRef50_Q8VYF5	N carbamoylputrescine amidase	0.00100311860661	0.0669718784096	0.065968759803
+UniRef50_UPI0003B638F3	NADH quinone oxidoreductase subunit C	1.71585260953e-05	1.43702158245e-05	-2.7883102708e-06
+UniRef50_UPI0001BF61FF	hypothetical protein SMAC_10357, partial	3.07715102878e-05	0.000108387659621	7.76161493332e-05
+UniRef50_X4XF16		0.000214016037738	0.00110291576289	0.000888899725152
+UniRef50_A7HVU8	UDP N acetylmuramate  L alanine ligase	0.00694832012535	0.00265222348691	-0.00429609663844
+UniRef50_Q7MWU9	Holliday junction DNA helicase RuvB	1.46679249356e-05	1.34160414192e-05	-1.2518835164e-06
+UniRef50_UPI0003498384	hypothetical protein	3.65358747517e-05	1.40246285142e-05	-2.25112462375e-05
+UniRef50_UPI000465F605	hypothetical protein	8.34053882458e-06	3.78458207996e-05	2.9505281975e-05
+UniRef50_A3CMZ0	Na+ driven multidrug efflux pump, putative	0.000400208282712	0.00013515638682	-0.000265051895892
+UniRef50_Q8DVR0	Biofilm regulatory protein A	0.00871238276259	0.0010967606795	-0.00761562208309
+UniRef50_UPI00035C59AE	hypothetical protein	5.3390897265e-06	9.26128422881e-06	3.92219450231e-06
+UniRef50_M1M0U2		0.000801822697712	0.00390471017803	0.00310288748032
+UniRef50_L0SNC2	Transketolase	0.00783452176476	0.00507993969819	-0.00275458206657
+UniRef50_F2JKB2	MATE efflux family protein	0.000195540920246	0.00212158824757	0.00192604732732
+UniRef50_V0VWL0		0.000164820678539	7.40620129786e-05	-9.07586655604e-05
+UniRef50_J0I8Y3		0.000992757340026	0.000355928317365	-0.000636829022661
+UniRef50_Q8Y2K1	Macro domain containing protein RSc0334	1.22545773291e-05	0.000250833345073	0.000238578767744
+UniRef50_UPI00037F821B	MULTISPECIES	5.46463936188e-06	9.57589200755e-06	4.11125264567e-06
+UniRef50_UPI00047CF530	hypothetical protein	1.07943575231e-05	0.000111973708883	0.00010117935136
+UniRef50_I7F2J7		3.05041227496e-05	6.5983800558e-05	3.54796778084e-05
+UniRef50_A0A023RS80	Peptidase	7.60549339569e-05	0.00374847791694	0.00367242298298
+UniRef50_A0A022H2W5	ABC transporter	9.75879467817e-05	0.000103797831926	6.2098851443e-06
+UniRef50_E6MXW1		4.33169288013e-05	0.00152777307547	0.00148445614667
+UniRef50_S2JUV8	Cache sensor containing methyl accepting chemotaxis sensory transducer	3.91681099492e-05	0.000124260445654	8.50923357048e-05
+UniRef50_J9YQ34	Oligopeptide ABC transporter permease	0.00674065476329	0.0010675470542	-0.00567310770909
+UniRef50_C2MTH9		0.000181528326302	0.00108589908587	0.000904370759568
+UniRef50_A6V0C7	Endoribonuclease YbeY	0.00353893114548	0.00103808296372	-0.00250084818176
+UniRef50_I6U028	Histidine kinase of the competence regulon, ComD	0.00596531478966	0.00164448262536	-0.0043208321643
+UniRef50_A5UN25	Adhesin like protein	0.00267203171297	0.000660439264929	-0.00201159244804
+UniRef50_W5X6E3	Dihydrodipicolinate synthetase	2.23442717949e-05	3.26909896346e-05	1.03467178397e-05
+UniRef50_A5UNS0		0.00143740141139	0.000525786418738	-0.000911614992652
+UniRef50_U5MUD4		0.000984333623217	0.00217971879889	0.00119538517567
+UniRef50_A6LXF6	Extracellular solute binding protein, family 3	0.000424024084238	0.00133299090213	0.000908966817892
+UniRef50_L7WW55		0.00191627895355	0.00126936057727	-0.00064691837628
+UniRef50_W4HNW2		0.000175548100933	6.9101234338e-05	-0.000106446866595
+UniRef50_Q326E0		0.00233156346323	0.000696732845364	-0.00163483061787
+UniRef50_Q87VJ2	DNA mismatch repair protein MutL	0.000283790145698	0.000516974879324	0.000233184733626
+UniRef50_UPI000364E75E	hypothetical protein	1.6289614279e-05	1.65944989468e-05	3.048846678e-07
+UniRef50_P76344	Metal binding protein ZinT	0.0010063269456	0.00027685941112	-0.00072946753448
+UniRef50_A6LZ35	Major facilitator superfamily MFS_1	0.000312463084358	0.000615650458012	0.000303187373654
+UniRef50_T1B713	Excinuclease ABC subunit C 	0.000114274265039	2.93117279695e-05	-8.49625370695e-05
+UniRef50_A6QDY4	Phage major head protein	0.0163061123752	0.00415989703457	-0.0121462153406
+UniRef50_T8P6W0	Glutathione regulated potassium efflux system protein kefC	0.00142496481699	0.00110007650047	-0.00032488831652
+UniRef50_A7IP37		0.00341658178	0.00110488934465	-0.00231169243535
+UniRef50_UPI0002628657	carbon monoxide dehydrogenase	1.65928134223e-06	7.83776851823e-06	6.178487176e-06
+UniRef50_P24255	RNA polymerase sigma 54 factor	0.00385715440208	0.00118774010612	-0.00266941429596
+UniRef50_G7MAG2	Integral membrane sensor signal transduction histidine kinase	0.000465813045532	0.00102671850504	0.000560905459508
+UniRef50_Q9RW34		0.000133702239266	0.130553421098	0.130419718859
+UniRef50_UPI00046F6D6F	hypothetical protein, partial	0.000116180000501	3.77713594034e-05	-7.84086410976e-05
+UniRef50_Q3SJE0	Succinyl diaminopimelate desuccinylase	0.00129564519235	0.00587669986218	0.00458105466983
+UniRef50_I1ZJN7		0.00141461333002	0.00343194160753	0.00201732827751
+UniRef50_Q493N1	Siroheme synthase	5.06156188783e-06	2.28116761026e-05	1.77501142148e-05
+UniRef50_A6LYS9	Conserved repeat domain	0.000683184240824	0.000984901515369	0.000301717274545
+UniRef50_P52132	UPF0380 protein YfjQ	0.00918469424836	0.00424149799921	-0.00494319624915
+UniRef50_A0A023RU18	Cytochrome C assembly protein	0.000139982443328	0.00523220817102	0.00509222572769
+UniRef50_P57090	Probable nicotinate nucleotide adenylyltransferase	7.74800028339e-06	0.00207833460035	0.00207058660007
+UniRef50_R5DD38		0.00126441938643	0.000907950505196	-0.000356468881234
+UniRef50_X5E2G1	Transposase DDE domain protein	3.75262501931e-05	0.00226354497405	0.00222601872386
+UniRef50_X8FIZ9		8.69349635899e-05	0.000348124593075	0.000261189629485
+UniRef50_A0A023XW63		1.09859342255e-05	7.43359240541e-06	-3.55234182009e-06
+UniRef50_UPI00037CE6B4	hypothetical protein	3.51651746946e-06	4.41408208943e-06	8.9756461997e-07
+UniRef50_L1NZC1	Peptidase, M61 family	0.000235358550272	0.00392459053246	0.00368923198219
+UniRef50_H7CZ41		0.000655255359131	0.000315284738642	-0.000339970620489
+UniRef50_A0P4I0	BolA like protein	4.09390414434e-05	0.000121558759842	8.06197183986e-05
+UniRef50_O53871	Putative acyltransferase Rv0859	0.0011653760883	0.0072072261005	0.0060418500122
+UniRef50_I0C833		0.00909588435484	0.00419425782576	-0.00490162652908
+UniRef50_P35484	Dihydrolipoyl dehydrogenase 	9.48565100103e-06	9.4082180455e-06	-7.743295553e-08
+UniRef50_UPI000366F4F8	hypothetical protein	3.04557665679e-05	7.11047852039e-05	4.0649018636e-05
+UniRef50_G7MB49	Integral membrane sensor signal transduction histidine kinase	0.000178097469345	0.00156581698798	0.00138771951863
+UniRef50_F0MAK0	ABC type spermidine putrescine transport system, ATPase component	0.000709722431858	0.000247472099328	-0.00046225033253
+UniRef50_P45322	Molybdenum transport system permease protein ModB	0.00738417193878	0.00603700445902	-0.00134716747976
+UniRef50_Q6G9Y4	Phosphate acyltransferase	0.0108364406024	0.000791064605568	-0.0100453759968
+UniRef50_A4VG13	D lactate dehydrogenase 	0.000402387962304	0.00308511148134	0.00268272351904
+UniRef50_UPI00036F21BD	hypothetical protein	1.71941792921e-06	4.68461902388e-06	2.96520109467e-06
+UniRef50_I0DWZ9		2.76012854526e-05	2.80375176223e-05	4.362321697e-07
+UniRef50_K6CXP7	Hemolysin type calcium binding region 	5.60140502968e-05	8.17774092473e-06	-4.78363093721e-05
+UniRef50_UPI0003C7E79E	phosphoprotein phosphatase	9.30420957086e-06	1.45630803605e-05	5.25887078964e-06
+UniRef50_Q4FP60		1.0938827632e-05	2.41537458519e-05	1.32149182199e-05
+UniRef50_Q5HP10		0.00793455641721	0.000745051619467	-0.00718950479774
+UniRef50_D7N6D8	Cysteine desulfurase ATPase component domain protein	1.88467875125e-05	5.25705025721e-05	3.37237150596e-05
+UniRef50_UPI0002D4A249	hypothetical protein	9.97859170997e-06	6.23259470773e-06	-3.74599700224e-06
+UniRef50_I4ES52		0.000119331714078	0.00749458221076	0.00737525049668
+UniRef50_O06458	Trehalose synthase	5.31295523526e-06	1.73191428668e-05	1.20061876315e-05
+UniRef50_A0A024HWE9		3.76245357897e-05	4.03277950936e-05	2.7032593039e-06
+UniRef50_D7I534	Acyl CoA thioesterase II	0.000560791751245	0.000285330149942	-0.000275461601303
+UniRef50_K7UZS6		3.0901299642e-05	8.40807501992e-05	5.31794505572e-05
+UniRef50_F5M3N6	Phospholipase D transphosphatidylase	0.00178261564169	0.000749477135326	-0.00103313850636
+UniRef50_V6ACD4	Peptidase M14, carboxypeptidase A	0.000770931904675	0.000696647785508	-7.4284119167e-05
+UniRef50_A5WCY2	FAD linked oxidase domain protein	0.000758397427981	0.00853445979932	0.00777606237134
+UniRef50_A0A009IP40	SnoaL like domain protein	0.000224561812277	8.43970280647e-05	-0.000140164784212
+UniRef50_R6FR88	Two component system response regulator	0.00203042247745	0.00130550034336	-0.00072492213409
+UniRef50_UPI00035F4A59	hypothetical protein	0.000168277426314	0.00010431825591	-6.3959170404e-05
+UniRef50_K8WUE9	Phosphomethylpyrimidine synthase ThiC	9.6474104816e-06	4.26944915255e-05	3.30470810439e-05
+UniRef50_Q9RU56	Osmotically inducible protein C	0.000438937196334	0.0660140364144	0.0655750992181
+UniRef50_UPI00047D8829	erythrose 4 phosphate dehydrogenase	4.8158850138e-05	6.72070788026e-05	1.90482286646e-05
+UniRef50_D3QEY2	4 phosphopantetheinyl transferase	0.00870557370541	0.00404025588936	-0.00466531781605
+UniRef50_R6M7U0	Transporter major facilitator family protein	0.00011958373459	0.00323895818993	0.00311937445534
+UniRef50_UPI00016A29CB	hypothetical protein	0.000342963099569	0.000320072121394	-2.2890978175e-05
+UniRef50_K2JWT8		2.46122398948e-05	1.99139740934e-05	-4.6982658014e-06
+UniRef50_Q5WE91	Acetoin dehydrogenase E1 component beta subunit	0.00530261546252	0.000842227625789	-0.00446038783673
+UniRef50_UPI00031ABCD6	hypothetical protein	2.0828158654e-06	2.92321189728e-07	-1.79049467567e-06
+UniRef50_Q2P3Y4	Serine  tRNA ligase	2.0856588026e-05	1.13012532969e-05	-9.5553347291e-06
+UniRef50_UPI0003AE0E87	PREDICTED	1.53720745704e-05	4.30159370849e-05	2.76438625145e-05
+UniRef50_S6AS82		1.21246862462e-06	9.43414266463e-06	8.22167404001e-06
+UniRef50_A7ZP69	Nucleoside triphosphatase NudI	0.000163022112397	0.000418888943548	0.000255866831151
+UniRef50_G7M113	Stage III sporulation protein AE	0.000305388425099	0.00113116022178	0.000825771796681
+UniRef50_Q5QW41		8.90234787764e-05	3.40285727732e-05	-5.49949060032e-05
+UniRef50_E0D539	Transposase, putative	0.000317938617421	0.00247439581659	0.00215645719917
+UniRef50_I8RAB7	Bifunctional protein	0.00619245505121	0.00564640726234	-0.00054604778887
+UniRef50_F4PKU5	GTP binding protein	7.09423075916e-06	2.45367823446e-05	1.74425515854e-05
+UniRef50_B9AFH2	Polymorphic outer membrane protein repeat  (Fragment)	0.00465239245404	0.000622427999749	-0.00402996445429
+UniRef50_Q9FBM1	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.71746473411e-05	0.000873183399587	0.000816008752246
+UniRef50_P40747		5.42123896349e-06	1.6198528947e-05	1.07772899835e-05
+UniRef50_UPI00037F886D	hypothetical protein, partial	9.41625882376e-06	6.15004152159e-05	5.20841563921e-05
+UniRef50_Q98C76	Mlr5266 protein	0.00539662797163	0.00112425841702	-0.00427236955461
+UniRef50_UPI0003A068C7	sodium hydrogen exchanger	3.66327363729e-06	8.92278046181e-06	5.25950682452e-06
+UniRef50_S5XZ35	N carbamoyl L amino acid hydrolase	0.00447841557911	0.00112297718678	-0.00335543839233
+UniRef50_UPI0003EDBEBD	PREDICTED	1.94336482946e-05	4.2857357702e-05	2.34237094074e-05
+UniRef50_K0TM35		1.052673218e-05	8.84786242565e-05	7.79518920765e-05
+UniRef50_A6LYV0	Response regulator receiver protein	0.000656703973554	0.000743254568069	8.6550594515e-05
+UniRef50_S3MI44	Major facilitator superfamily  transporter	0.000280435051188	0.000415369164399	0.000134934113211
+UniRef50_A5IQJ9		0.0124117318935	0.00699150844349	-0.00542022345001
+UniRef50_UPI0004675A7A	thymidylate synthase	3.71253420442e-05	0.000300782692181	0.000263657350137
+UniRef50_F5X1D7	Polysaccharide deacetylase family protein	0.00387249400138	0.00162700923417	-0.00224548476721
+UniRef50_Q97F65	Thymidine kinase	2.34972018836e-05	4.12676534309e-05	1.77704515473e-05
+UniRef50_G8VF81		0.000123361434261	0.00624718453483	0.00612382310057
+UniRef50_B5FTN1	D amino acid dehydrogenase small subunit	0.00266003357377	0.00101890091287	-0.0016411326609
+UniRef50_P0DD00	Peptidase T	1.98371540415e-05	0.00232413445904	0.002304297305
+UniRef50_X1XX47		2.76974454028e-06	3.40427439351e-06	6.3452985323e-07
+UniRef50_Q6FD39	Bifunctional protein	0.000114688224755	0.00658110354017	0.00646641531542
+UniRef50_Q2LTM3	Phosphopantothenoylcysteine decarboxylase   phosphopantothenate  cysteine ligase	0.0182382178451	0.00632858968866	-0.0119096281564
+UniRef50_P0ACB2	Delta aminolevulinic acid dehydratase	0.00511462776883	0.00156798900014	-0.00354663876869
+UniRef50_A5V3T8	Homoserine O succinyltransferase	0.00650266905991	0.00274662881032	-0.00375604024959
+UniRef50_UPI0003B3EBD2	MarR family transcriptional regulator	1.36053655022e-05	4.9056661204e-05	3.54512957018e-05
+UniRef50_UPI0004410872	NAD binding protein	2.25238124737e-05	2.17318480834e-05	-7.919643903e-07
+UniRef50_Q9HQC9	Uridine kinase	9.5557806236e-06	0.000589280326397	0.000579724545773
+UniRef50_G8MW75		9.64283406494e-05	0.00055425707085	0.000457828730201
+UniRef50_P37941	2 oxoisovalerate dehydrogenase subunit beta	0.0228810220159	0.0110168703129	-0.011864151703
+UniRef50_UPI0003B580E0	NADH quinone oxidoreductase subunit N	0.000380684136677	0.000255523260891	-0.000125160875786
+UniRef50_B1T5I2		0.0008644717302	0.00219013728749	0.00132566555729
+UniRef50_P74089	Serine acetyltransferase	1.16275196345e-05	3.39024034125e-05	2.2274883778e-05
+UniRef50_A5IUL9	Membrane flanked domain	0.013333421178	0.0027668044984	-0.0105666166796
+UniRef50_A9HYE8	Fumarate reductase iron sulfur protein	0.00497179103935	0.00105108424525	-0.0039207067941
+UniRef50_Q5KX81	Octanoyltransferase LipM	0.0117946890581	0.00188028250751	-0.00991440655059
+UniRef50_Q4L855	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0188163277998	0.00410456856888	-0.0147117592309
+UniRef50_A0A052JJE9	PF04304 family protein	9.30866365262e-06	1.65685528877e-05	7.25988923508e-06
+UniRef50_UPI0004790305	hypothetical protein	2.28734759483e-05	1.38956799455e-05	-8.9777960028e-06
+UniRef50_P0AEW8	Inosine guanosine kinase	0.00329720460027	0.000416698482988	-0.00288050611728
+UniRef50_U6AE90	Iron siderophore receptor protein	0.000546134873074	0.000455565921252	-9.0568951822e-05
+UniRef50_UPI00037FD430	hypothetical protein	0.000422004747285	0.000514968538689	9.2963791404e-05
+UniRef50_I3ZB99	Anti anti sigma regulatory factor 	1.34470147202e-05	0.00170866844165	0.00169522142693
+UniRef50_X7FC63	DNA topology modulation protein FlaR	1.20272092473e-05	7.27519882398e-05	6.07247789925e-05
+UniRef50_K7RWS7	UTP  hexose 1 phosphate uridylyltransferase	0.000219894750786	0.016278315577	0.0160584208262
+UniRef50_UPI00038EEF34	PREDICTED	5.36723583906e-05	8.38514547387e-05	3.01790963481e-05
+UniRef50_P33226	Cytochrome c type protein TorC	0.00304466669113	0.000661340127464	-0.00238332656367
+UniRef50_F4A9P0		0.000648973046738	0.000532102171523	-0.000116870875215
+UniRef50_A0A024E2H8		0.000569942476081	0.000841436265288	0.000271493789207
+UniRef50_K0SEA3		0.000236578271577	2.30476863029e-05	-0.000213530585274
+UniRef50_UPI00047DC367	hypothetical protein	0.000189622619208	2.05012572066e-05	-0.000169121362001
+UniRef50_UPI0004636621	LysR family transcriptional regulator	7.7137009514e-05	4.27484330411e-05	-3.43885764729e-05
+UniRef50_E6MWP3	Ribonuclease R	0.0005618383897	0.00267058580429	0.00210874741459
+UniRef50_Q5LLN0	Maf like protein SPO3892	0.000651022424552	0.000299813913899	-0.000351208510653
+UniRef50_A0A025DCK3		0.00196534011341	0.00066522059301	-0.0013001195204
+UniRef50_C1FNN6	Xanthine uracil permease family protein	0.000578975112097	0.00183787029211	0.00125889518001
+UniRef50_Q9K1B0	NADH quinone oxidoreductase subunit L	0.00019261353775	0.00365883782312	0.00346622428537
+UniRef50_UPI0004784A1B	hypothetical protein	5.49168705589e-06	4.72741849433e-06	-7.6426856156e-07
+UniRef50_UPI00046D54E5	hypothetical protein	3.37512462937e-05	2.49413424635e-05	-8.8099038302e-06
+UniRef50_D3QF80	Teichoic acid biosynthesis protein X	0.01260565396	0.00315157068384	-0.00945408327616
+UniRef50_V6UWS0		4.61070431122e-05	9.61659818164e-05	5.00589387042e-05
+UniRef50_UPI00037F4484	ADP ribose pyrophosphatase	1.60510613515e-05	4.13069991843e-05	2.52559378328e-05
+UniRef50_I6Y6R6	FAD containing monooxygenase EthA	4.33565901519e-06	0.00119064230854	0.00118630664952
+UniRef50_UPI000464816A	hypothetical protein	3.41086035292e-06	1.78316111783e-06	-1.62769923509e-06
+UniRef50_UPI0003099314	hypothetical protein	7.94262649132e-06	1.31194741009e-05	5.17684760958e-06
+UniRef50_C7NK94	Molybdopterin guanine dinucleotide biosynthesis protein A	3.20945684836e-06	1.03596168931e-05	7.15016004474e-06
+UniRef50_Q5GT42	NADH quinone oxidoreductase subunit C	2.38919801395e-05	4.02367479138e-05	1.63447677743e-05
+UniRef50_B9DPC0	DNA mismatch repair protein MutL	0.0105323675018	0.00351169813867	-0.00702066936313
+UniRef50_B7VH15	8 amino 7 oxononanoate synthase	4.72090388881e-06	6.5426369729e-06	1.82173308409e-06
+UniRef50_B0V8Y0		0.000905562938967	0.0211990466116	0.0202934836726
+UniRef50_C6SRM3		0.00526241595226	0.00273873043014	-0.00252368552212
+UniRef50_UPI00038126DC	hypothetical protein	4.40952202213e-05	1.17696306707e-05	-3.23255895506e-05
+UniRef50_Q1CRC0	DNA helicase II	7.03390041314e-05	0.00347929390156	0.00340895489743
+UniRef50_H3XJS2	HsdM N terminal domain protein	8.18920046117e-05	0.000131809027421	4.99170228093e-05
+UniRef50_A5WEV0	Serine O acetyltransferase	0.00140328078208	0.000735608824968	-0.000667671957112
+UniRef50_Q2RMV4	Peptidyl tRNA hydrolase	6.82353715596e-05	3.26482736208e-05	-3.55870979388e-05
+UniRef50_Q8CMP5	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.0139113553394	0.00270038693372	-0.0112109684057
+UniRef50_B6IRZ1	Phospholipase D	0.0033528290026	0.000661904767747	-0.00269092423485
+UniRef50_Q0I1I7	tRNA tmRNA ) methyltransferase	0.00394839151024	0.00619091115691	0.00224251964667
+UniRef50_M2HS82	N acetylmuramoyl L alanine amidase	0.00413667678269	0.00088874606378	-0.00324793071891
+UniRef50_A3PKI1	NADH quinone oxidoreductase subunit B 2	0.00458773028275	0.00118823496732	-0.00339949531543
+UniRef50_U3T6X0		0.000118334165783	0.00702522070571	0.00690688653993
+UniRef50_UPI00047861DB	hypothetical protein	1.0575360446e-05	0.000572678691158	0.000562103330712
+UniRef50_UPI000379BC38	hypothetical protein	4.07926122275e-06	8.87549613469e-06	4.79623491194e-06
+UniRef50_UPI00030F43CB	hypothetical protein	2.10293445681e-05	6.25829915054e-06	-1.47710454176e-05
+UniRef50_F8HCR3	Pyrimidine nucleoside phosphorylase	0.00451151931001	0.000570170699734	-0.00394134861028
+UniRef50_Q2NIS4	Uridylate kinase	2.11655019825e-05	2.08421570789e-05	-3.233449036e-07
+UniRef50_Q51697	Isoquinoline 1 oxidoreductase subunit alpha	3.3828006435e-05	6.41318624773e-05	3.03038560423e-05
+UniRef50_UPI0002896149	penicillin binding protein 2B	4.1256257506e-06	1.18698254272e-05	7.7441996766e-06
+UniRef50_L8BQX8		1.7143598997e-05	0.001051786854	0.001034643255
+UniRef50_A5UJP8	Adhesin like protein	0.00198957688591	0.000543399143023	-0.00144617774289
+UniRef50_Q2YSH2		0.025784256351	0.0086808658139	-0.0171033905371
+UniRef50_K0RL16		0.000229707498285	3.21104214386e-05	-0.000197597076846
+UniRef50_P09772	Nitrogenase molybdenum iron protein beta chain	0.0139273469701	0.00386512868688	-0.0100622182832
+UniRef50_A4YC85	Protoheme IX farnesyltransferase 2	1.05538520455e-05	1.94996543834e-05	8.9458023379e-06
+UniRef50_UPI0003696809	hypothetical protein	0.000200850807268	0.000109233211971	-9.1617595297e-05
+UniRef50_UPI00035C30D5	hypothetical protein	3.93936534939e-06	2.3581753157e-05	1.96423878076e-05
+UniRef50_R4VP47	Twin arginine translocation pathway signal	0.012262702714	0.0025642447106	-0.0096984580034
+UniRef50_W5X7K8	Polyribonucleotide nucleotidyltransferase	5.04790710489e-05	6.0176745144e-06	-4.44613965345e-05
+UniRef50_P0AGG9	Metalloprotease TldD	0.00275566454213	0.000579749737165	-0.00217591480496
+UniRef50_E4NBU8		2.48455827795e-05	3.37817215202e-05	8.9361387407e-06
+UniRef50_UPI000367E778	hypothetical protein	4.81897543951e-05	7.87393820955e-05	3.05496277004e-05
+UniRef50_W8RNL3		5.05451662561e-05	9.28884659938e-05	4.23432997377e-05
+UniRef50_Q8PGP9	Proline  tRNA ligase	0.00373782922409	0.00830906379545	0.00457123457136
+UniRef50_A4E7N7		1.02246847351e-05	0.000228554735532	0.000218330050797
+UniRef50_UPI00047E0F2D	hypothetical protein	9.02701809486e-05	3.09742967116e-05	-5.9295884237e-05
+UniRef50_P75863		0.00295708657843	0.00116231213264	-0.00179477444579
+UniRef50_UPI0000379EF0	hypothetical protein	0.00951739575211	0.00695175862668	-0.00256563712543
+UniRef50_B7UM47	Nucleoid occlusion factor SlmA	0.00445714182167	0.000824139642406	-0.00363300217926
+UniRef50_Q8VQ99	Serine rich adhesin for platelets	0.0133651410297	0.00307465969447	-0.0102904813352
+UniRef50_UPI000472F1A4	AsnC family transcriptional regulator, partial	0.000209721294802	9.25324162328e-05	-0.000117188878569
+UniRef50_P37567	Probable tRNA dihydrouridine synthase 1	2.48992172685e-05	8.76244473598e-06	-1.61367725325e-05
+UniRef50_A0A024H9L1	Short chain dehydrogenase	0.0011585744695	0.000420878914765	-0.000737695554735
+UniRef50_Q9HVL0	UPF0114 protein PA4574	0.000465553612639	0.000435356322155	-3.0197290484e-05
+UniRef50_A5W6U4	NAD kinase	0.00135514604476	0.00914883585972	0.00779368981496
+UniRef50_A8WXW9	Protein CBG04553	5.94233117324e-07	8.70296404213e-05	8.6435407304e-05
+UniRef50_UPI000470F5F1	indole 3 glycerol phosphate synthase	3.74433064122e-06	4.52793155202e-06	7.836009108e-07
+UniRef50_B2HWA5		0.000750638356551	0.00410416543211	0.00335352707556
+UniRef50_Q02151		0.00582056033768	0.00191034817387	-0.00391021216381
+UniRef50_Q3JHC8		8.9262173431e-06	2.89319566816e-05	2.00057393385e-05
+UniRef50_F4JP46	Formyltetrahydrofolate deformylase 2, mitochondrial	4.01045676852e-06	2.14538218759e-05	1.74433651074e-05
+UniRef50_Q3JQU1		0.000362050924882	0.000158986113162	-0.00020306481172
+UniRef50_P58381	Enoyl [acyl carrier protein] reductase [NADH] 2	0.0233456732439	0.00360406785844	-0.0197416053855
+UniRef50_P37560		0.0247124566727	0.00494176026267	-0.01977069641
+UniRef50_A7BEA1		0.000195588595265	0.00393825298334	0.00374266438808
+UniRef50_R5E7A9	Extracellular ligand binding receptor	9.93384181239e-05	0.00109204434406	0.000992705925936
+UniRef50_Q9RRM5	Transport protein, putative	0.000156850133866	0.0566886280836	0.0565317779497
+UniRef50_I0GP22		0.000574851759676	0.00955635529577	0.00898150353609
+UniRef50_UPI000467D29B	translation initiation factor IF 3	0.000284736057238	0.000345096788494	6.0360731256e-05
+UniRef50_Q8D2L3	Fumarate hydratase class II	6.38846853821e-06	2.87768563892e-05	2.2388387851e-05
+UniRef50_B8DP86	Ribosomal RNA small subunit methyltransferase H	5.55877566644e-06	3.00860929869e-05	2.45273173205e-05
+UniRef50_P45625		0.0191200132519	0.00611551050911	-0.0130045027428
+UniRef50_UPI00035FFFC6	hypothetical protein	4.89220189296e-06	7.10232832152e-06	2.21012642856e-06
+UniRef50_UPI000329D7B6		0.00152043927363	0.000409088821109	-0.00111135045252
+UniRef50_G8XAZ1	Nitrate nitrite antiporter	5.34104805209e-06	1.97567236534e-05	1.44156756013e-05
+UniRef50_A0A024L3K6	Fimbrial biogenesis outer membrane usher protein	0.00136673023498	0.00096768544727	-0.00039904478771
+UniRef50_UPI0004623CA1	hypothetical protein TRAVEDRAFT_50483	0.00146433848469	0.00114734779734	-0.00031699068735
+UniRef50_V6ECI2	Dihydroxy acid dehydratase	0.00300089830918	0.00117364870241	-0.00182724960677
+UniRef50_A0A039PB00	Integral membrane protein	0.00010239065735	7.24339404585e-05	-2.99567168915e-05
+UniRef50_D3E2D1	Fumarate hydratase FumA3	0.00455044301987	0.000575292282856	-0.00397515073701
+UniRef50_O33518	Protein translocase subunit SecF	0.0181422904964	0.00466741639474	-0.0134748741017
+UniRef50_Q3KIA5	Protein RnfH	2.13451397922e-05	5.22917510373e-05	3.09466112451e-05
+UniRef50_UPI00037B6FC9	hypothetical protein	5.31470782947e-05	1.59501656606e-05	-3.71969126341e-05
+UniRef50_O27572	Probable tRNA pseudouridine synthase D	0.00560182684156	0.000757531807255	-0.00484429503431
+UniRef50_P24891	Cytochrome c oxidase subunit 3	9.05422833056e-06	1.85659615324e-05	9.51173320184e-06
+UniRef50_C7MF62	Alpha L fucosidase	0.000484450537803	0.00649556280741	0.00601111226961
+UniRef50_I4E0F8		0.00735859046839	0.00230994579008	-0.00504864467831
+UniRef50_UPI00021931F3	amino acid adenylation protein	2.56154256215e-05	8.82164135343e-06	-1.67937842681e-05
+UniRef50_A5IUD1		0.0272242820652	0.00262765055399	-0.0245966315112
+UniRef50_R9TX51	YlmE	0.00706167836271	0.00261917102393	-0.00444250733878
+UniRef50_B5Y1Z5	Protein ApaG	0.000701549052867	4.21089715591e-05	-0.000659440081308
+UniRef50_E8QVJ8	Molybdenum ABC transporter ModA	0.000962945748232	0.000554111084734	-0.000408834663498
+UniRef50_U4KGU9	Toluene tolerance protein Ttg2B	0.000168924000892	3.32640212303e-05	-0.000135659979662
+UniRef50_UPI00042B69C5	Translation initiation factor 3 protein isoform 4, partial	0.000122654838245	4.90649270653e-05	-7.35899111797e-05
+UniRef50_UPI000416FC07	ADP ribose pyrophosphatase	1.7406307468e-05	0.00102772278334	0.00101031647587
+UniRef50_C5Q752		0.00615978929589	0.00278123323943	-0.00337855605646
+UniRef50_UPI0003815DCD	hypothetical protein	1.79626024847e-05	9.78533272344e-06	-8.17726976126e-06
+UniRef50_UPI000362D4DF	hypothetical protein	4.33292488794e-06	5.24399720686e-06	9.1107231892e-07
+UniRef50_P9WP46	Carbon starvation protein A homolog	5.53498517408e-05	0.001450268556	0.00139491870426
+UniRef50_Q5NP61	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.00311847761641	0.0108143639703	0.00769588635389
+UniRef50_UPI00046F7845	hypothetical protein	9.77725619819e-05	6.97851834327e-05	-2.79873785492e-05
+UniRef50_F2D112	Predicted protein 	0.000276070279952	0.000457255780377	0.000181185500425
+UniRef50_Q3J4J9	Ribonuclease E	0.0041726369635	0.000890576157891	-0.00328206080561
+UniRef50_P59399	Histidinol dehydrogenase	3.58042793865e-06	5.26211012032e-06	1.68168218167e-06
+UniRef50_W5BPL1		7.20976231916e-05	1.97741842596e-05	-5.2323438932e-05
+UniRef50_UPI0004738B2C	hypothetical protein	1.22342457111e-05	1.38680059825e-05	1.6337602714e-06
+UniRef50_K4QBP0	K12555 penicillin binding protein 2A	0.000170237920242	0.000113656204698	-5.6581715544e-05
+UniRef50_UPI00030CFAAF	hypothetical protein	5.42388370583e-06	0.000129024575317	0.000123600691611
+UniRef50_J1B0P3		0.00729065126538	0.00560599604239	-0.00168465522299
+UniRef50_UPI0003B4DEC2	DNA gyrase subunit B	7.58102851781e-06	2.06709034176e-05	1.30898748998e-05
+UniRef50_O34384		0.000393898423154	0.109211752741	0.108817854318
+UniRef50_Q8DT90	Ribonuclease Z	0.00556528829248	0.00304074178836	-0.00252454650412
+UniRef50_A9WMF4	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.0004127114371	0.00808159626611	0.00766888482901
+UniRef50_A8J8D8	Predicted protein	7.89779326069e-05	5.23951874321e-05	-2.65827451748e-05
+UniRef50_Q2YI45	Streptokinase like protein	0.000439832627451	0.000766000648442	0.000326168020991
+UniRef50_Q1GHZ2	GTPase Der	0.00525917139903	0.000531736013761	-0.00472743538527
+UniRef50_Q6GIW1	UPF0178 protein SAR0734	0.00989749961365	0.00641997573627	-0.00347752387738
+UniRef50_Q1R9Q5		6.32142872301e-05	6.36635190352e-05	4.492318051e-07
+UniRef50_A3UXL8		1.86111392492e-05	0.00030931744026	0.000290706301011
+UniRef50_R6QI78	RpiR family Helix turn helix domain containing protein	0.00124130768918	0.000716737921957	-0.000524569767223
+UniRef50_D3E0Y1	Thymidylate synthase ThyA	0.0028632083678	0.000360875810829	-0.00250233255697
+UniRef50_A7X5Z9	Ferredoxin  NADP reductase	0.0143967877412	0.00407085605633	-0.0103259316849
+UniRef50_Q83H92	Uroporphyrinogen decarboxylase	3.86158700379e-06	6.50499141093e-06	2.64340440714e-06
+UniRef50_UPI0004786744	hypothetical protein	2.86886674473e-05	0.000504092251724	0.000475403584277
+UniRef50_Q3JVX1		2.74543377408e-05	2.66449036922e-05	-8.094340486e-07
+UniRef50_P44324	Aspartate ammonia lyase	7.81706715078e-06	0.00884354366833	0.00883572660118
+UniRef50_C5YPR8		9.42582286729e-05	2.50149047621e-05	-6.92433239108e-05
+UniRef50_B2ZY73		1.16147818039e-05	0.000490013030344	0.00047839824854
+UniRef50_P0AGC1	Hexose phosphate transport protein	0.00288028788074	0.000703338153865	-0.00217694972687
+UniRef50_UPI0001FFF263	putative enterobactin iron transport system, ATP binding protein	3.85906011636e-06	0.000280956816684	0.000277097756568
+UniRef50_A3M517		0.000317215116685	0.00423129872881	0.00391408361212
+UniRef50_B1K7T3	Two component transcriptional regulator, LuxR family	0.00127799304247	0.000572669132518	-0.000705323909952
+UniRef50_B0T202	UPF0386 protein Caul_4643	0.000643442026451	8.2726730099e-05	-0.000560715296352
+UniRef50_T1B6U2		0.000145227997145	2.60747201073e-05	-0.000119153277038
+UniRef50_A8TBH7		3.33006228323e-05	2.71059672822e-05	-6.1946555501e-06
+UniRef50_F3L3B7		1.05663787293e-05	0.00259526988956	0.00258470351083
+UniRef50_Q1IXV7	UDP N acetylenolpyruvoylglucosamine reductase	0.000207790452577	0.0133036150785	0.0130958246259
+UniRef50_A8TBH9		2.28016211279e-05	1.85556357129e-05	-4.245985415e-06
+UniRef50_Q8DEZ6	Dual specificity RNA methyltransferase RlmN	0.00191758539698	0.00198092217823	6.333678125e-05
+UniRef50_T1DG32	Phosphoribosylformylglycinamidine synthase 	5.05035815728e-05	7.64946016312e-05	2.59910200584e-05
+UniRef50_I3XA84		5.329161694e-06	1.95837486089e-05	1.42545869149e-05
+UniRef50_UPI0004655A42	MULTISPECIES	1.29751929707e-05	4.02567288e-05	2.72815358293e-05
+UniRef50_M3BXT0	DNA polymerase II large subunit	5.2803885481e-05	0.000106517108153	5.3713222672e-05
+UniRef50_A8LRN8		0.0098425821442	2.64643439579e-05	-0.00981611780024
+UniRef50_P65098	Isocitrate dehydrogenase [NADP]	0.000222932078485	0.000952584681021	0.000729652602536
+UniRef50_UPI00036FD78D	hypothetical protein	6.41691420969e-05	2.8685344635e-05	-3.54837974619e-05
+UniRef50_J0FJU8		0.000730687607927	0.000391492522588	-0.000339195085339
+UniRef50_X6EJ38		1.05868996491e-05	2.95767613642e-06	-7.62922351268e-06
+UniRef50_F7X313		0.000190627024615	5.57962401566e-05	-0.000134830784458
+UniRef50_V9VVH8	Flagellar protein FlgJ	0.000181366325563	9.96839753491e-05	-8.16823502139e-05
+UniRef50_C5BY82	Glutamate racemase	0.00013291760171	0.00896206782647	0.00882915022476
+UniRef50_H1LKH2		0.00013577153381	3.6154790343e-05	-9.9616743467e-05
+UniRef50_F7X315		0.000180502741009	9.24195866583e-05	-8.80831543507e-05
+UniRef50_UPI0003B4E9FE	membrane protein, partial	1.07165518852e-05	3.44624577348e-05	2.37459058496e-05
+UniRef50_I4KLM3	Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein	0.000457799522156	0.0014228379447	0.000965038422544
+UniRef50_F8GY06	Endoribonuclease L PSP	0.000748288081995	3.68237718954e-05	-0.0007114643101
+UniRef50_G7M214	Pyruvate, water dikinase	0.000614755258589	0.0017276457733	0.00111289051471
+UniRef50_UPI000471162E	hypothetical protein	4.59840773834e-05	0.000142586141608	9.66020642246e-05
+UniRef50_UPI000400283D	hypothetical protein	3.14234853305e-05	2.41539503825e-05	-7.269534948e-06
+UniRef50_L7WWZ3		0.00134486477337	0.00101833346619	-0.00032653130718
+UniRef50_UPI0004651131	hypothetical protein	1.35461501585e-05	1.75834418796e-05	4.0372917211e-06
+UniRef50_Z5LDC7		8.81984199907e-06	1.46000310718e-05	5.78018907273e-06
+UniRef50_Q2YUU9	Superoxide dismutase [Mn Fe] 2	0.0172192372112	0.00742138719141	-0.00979785001979
+UniRef50_B6IVA8		0.000274786408743	2.20366318272e-05	-0.000252749776916
+UniRef50_P77307	Probable iron export permease protein FetB	0.00193535853081	0.00114289132711	-0.0007924672037
+UniRef50_UPI00047CBBFB	2 amino 4 ketopentanoate thiolase	1.74393197276e-05	2.43748277575e-05	6.9355080299e-06
+UniRef50_M9VDV1	ComE operon protein 1	0.000677992423077	0.00411448007384	0.00343648765076
+UniRef50_A0A023WVI0	Aldehyde dehydrogenase	0.000754962195672	0.00107917038281	0.000324208187138
+UniRef50_L8GN65		6.94448575617e-05	0.0042846689115	0.00421522405394
+UniRef50_W4U756	Helicase	0.000143441913114	0.0064589008652	0.00631545895209
+UniRef50_R7PWJ9	Glycosyl transferase group 1 family	0.00279894568767	0.00150713321948	-0.00129181246819
+UniRef50_U6ACI3		0.000682203594306	0.00207239793119	0.00139019433688
+UniRef50_P15505	Glycine dehydrogenase , mitochondrial	6.55682981838e-06	8.59353400528e-06	2.0367041869e-06
+UniRef50_X1P9R1	Marine sediment metagenome DNA, contig	1.02556610051e-05	0.000196793142582	0.000186537481577
+UniRef50_UPI0004655CAA	hypothetical protein	0.000105516926407	1.57294126552e-05	-8.97875137518e-05
+UniRef50_F4LAH5		7.21638694007e-05	9.30099593277e-05	2.0846089927e-05
+UniRef50_Q9HYL3	Regulatory protein NosR	0.000611603201991	0.000269419404064	-0.000342183797927
+UniRef50_UPI0003621B43	hypothetical protein, partial	2.14774681963e-05	1.32079766016e-05	-8.2694915947e-06
+UniRef50_F4C7A6		0.000132501228975	4.23127123377e-05	-9.01885166373e-05
+UniRef50_A0A058SUW3	Aminopeptidase N	0.00135730539713	0.000603066188573	-0.000754239208557
+UniRef50_C1KYE1	UPF0145 protein Lm4b_00206	0.000252976754703	0.00262455437968	0.00237157762498
+UniRef50_X1HW00	Marine sediment metagenome DNA, contig	2.24918768759e-05	3.10753539228e-05	8.5834770469e-06
+UniRef50_UPI0004240D5A	deoxyguanosinetriphosphate triphosphohydrolase	7.67713099362e-05	2.25363850358e-05	-5.42349249004e-05
+UniRef50_Q7VSF4	3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00121381161181	0.000703135012379	-0.000510676599431
+UniRef50_P0AFM7	Phage shock protein A	0.00430849669855	0.00131110077178	-0.00299739592677
+UniRef50_D9RI97	KAP family P loop domain	2.86097518987e-05	1.84998222023e-05	-1.01099296964e-05
+UniRef50_P95676	Alpha acetolactate decarboxylase	0.00502561603977	0.00460209865024	-0.00042351738953
+UniRef50_Q5HLB9		0.000404449273767	1.3402279265e-05	-0.000391046994502
+UniRef50_P0ACN9	HTH type transcriptional repressor CytR	0.0034596958985	0.000787133462401	-0.0026725624361
+UniRef50_UPI0002899BE2	LysR family transcriptional regulator	3.38659087046e-05	0.000355382544664	0.000321516635959
+UniRef50_I0C253	Arginine permease	0.0215364927056	0.0048707194372	-0.0166657732684
+UniRef50_I6TND0		0.0149196745975	0.00041399538111	-0.0145056792164
+UniRef50_D2VJL9	Predicted protein	4.16212611656e-06	2.47944454847e-05	2.06323193681e-05
+UniRef50_B5FI46	Ribulokinase	0.00314829642289	0.000828862732927	-0.00231943368996
+UniRef50_F6AE19	UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000432504887664	0.000342291567166	-9.0213320498e-05
+UniRef50_UPI00046A2ACC	hypothetical protein	6.03336173221e-05	4.09835822265e-05	-1.93500350956e-05
+UniRef50_R7E993	ABC transporter ATP binding protein	0.000380417985794	0.00843277692777	0.00805235894198
+UniRef50_UPI0002625F3E	inner membrane translocator	2.80488921251e-05	8.81686262712e-06	-1.9232029498e-05
+UniRef50_UPI00034F3E03	PREDICTED	5.78674528727e-06	1.35868164547e-05	7.80007116743e-06
+UniRef50_K2ET09		5.13683777198e-05	8.71913120182e-06	-4.2649246518e-05
+UniRef50_G8VFU9		0.000245754526308	0.00818443852214	0.00793868399583
+UniRef50_A5UMD6	Imidazole glycerol phosphate synthase subunit HisH	0.00432207144325	0.000510634072383	-0.00381143737087
+UniRef50_E8JET5		0.000699816215255	0.000210998085778	-0.000488818129477
+UniRef50_UPI0004767186	tyrosine protein kinase	5.14798070652e-06	1.24490306067e-05	7.30104990018e-06
+UniRef50_F0YJ58		0.000159894413794	0.000430282827554	0.00027038841376
+UniRef50_UPI00046523D9	LuxR family transcriptional regulator	1.33395908673e-05	0.000107855666581	9.45160757137e-05
+UniRef50_UPI000479578E	dTDP 4 dehydrorhamnose 3,5 epimerase	3.05745072204e-05	2.16364904375e-05	-8.9380167829e-06
+UniRef50_A6LTH3	Phosphotransferase system PTS, lactose cellobiose specific IIA subunit	0.000301988791085	0.00053693946399	0.000234950672905
+UniRef50_UPI0000F2F50C	glutamyl Q tRNA ligase	0.000148616531043	0.00468366758614	0.0045350510551
+UniRef50_UPI0001D2EE73	RNA polymerase, sigma 24 subunit, ECF subfamily	0.000278660683749	1.83035316085e-05	-0.00026035715214
+UniRef50_N0C910	IS3 Spn1, transposase	0.0293567644896	0.0167948224045	-0.0125619420851
+UniRef50_Q8DWS9	Membrane protein, putative	0.00047176087326	2.63539647265e-06	-0.000469125476787
+UniRef50_A9BQJ1	tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0164518363516	0.00915393675399	-0.00729789959761
+UniRef50_O66937	4 alpha glucanotransferase	3.23286954483e-06	0.000326711990062	0.000323479120517
+UniRef50_A6FVX6	Transcriptional regulator, MarR family protein	2.04133963314e-05	9.16620503164e-05	7.1248653985e-05
+UniRef50_UPI00047CC502	hypothetical protein	5.42685064378e-06	7.56700283146e-06	2.14015218768e-06
+UniRef50_Q3IVA9	Transcriptional regulator, LacI family	0.000130167582368	0.000197977679469	6.7810097101e-05
+UniRef50_B8EMC6	40 residue YVTN family beta propeller repeat protein	9.08940874882e-06	1.56118981588e-05	6.52248940998e-06
+UniRef50_D8GUE2	Predicted transcriptional regulator, marR family	0.000814717961549	0.000759664973668	-5.5052987881e-05
+UniRef50_O22514	Proline rich protein	8.03917357581e-05	1.76450228547e-05	-6.27467129034e-05
+UniRef50_U7G864		1.87288527963e-05	2.71089722478e-05	8.3801194515e-06
+UniRef50_E0SFZ4	Cobalamin synthesis protein	3.49261746501e-06	4.34942840909e-06	8.5681094408e-07
+UniRef50_Q9JVX8	DNA polymerase III subunit alpha	3.30162672461e-05	0.00336147975305	0.0033284634858
+UniRef50_P54388	NADP specific glutamate dehydrogenase	0.000337907212892	0.0104425555563	0.0101046483434
+UniRef50_W1U3S2		0.000256878736369	0.00249157891501	0.00223470017864
+UniRef50_M7XCW4	Sodium	1.78618307919e-05	2.77278640058e-05	9.8660332139e-06
+UniRef50_UPI0003B534E7	50S ribosomal protein L33	0.001376077638	0.00273300282519	0.00135692518719
+UniRef50_UPI00046CEEB8	hypothetical protein	4.5502863458e-05	1.62557467417e-05	-2.92471167163e-05
+UniRef50_UPI00016C3E34	30S ribosomal protein S4	5.32299285346e-05	0.000237052723203	0.000183822794668
+UniRef50_Q5HRX0		0.00886325496954	0.00478165043983	-0.00408160452971
+UniRef50_UPI0003608953	hypothetical protein	3.55755776883e-06	9.03389444709e-06	5.47633667826e-06
+UniRef50_M1F771		6.84979970328e-05	5.93571061799e-05	-9.1408908529e-06
+UniRef50_O87198	Homocitrate synthase	4.97507446483e-06	0.0462358003109	0.0462308252364
+UniRef50_Q55863	Pyruvate kinase 1	1.809883044e-05	1.49656893162e-05	-3.1331411238e-06
+UniRef50_UPI00046D1C25	NADH	0.000115721758712	3.90686069697e-05	-7.66531517423e-05
+UniRef50_A7NJ00		7.76789925156e-05	0.000121540426983	4.38614344674e-05
+UniRef50_A4EH59		0.000461785872597	0.000512015368673	5.0229496076e-05
+UniRef50_I1EUA2		1.49779302758e-05	3.04821339869e-06	-1.19297168771e-05
+UniRef50_B5YZZ5	Ethanolamine utilization cobalamin adenosyltransferase	0.000322178653362	0.000244063392719	-7.8115260643e-05
+UniRef50_UPI000373E5C0	hypothetical protein	3.41967650421e-06	4.21488006869e-06	7.9520356448e-07
+UniRef50_P0ADK2		0.00111854703114	0.000848379043652	-0.000270167987488
+UniRef50_G0DTN7		0.000158607558343	0.00484630578995	0.00468769823161
+UniRef50_H6VX72		0.00113245796655	0.00218255043805	0.0010500924715
+UniRef50_F5Y9N5	CoxE family protein	0.00052451288528	0.00121952776517	0.00069501487989
+UniRef50_Q28K41	Amino acid amide ABC transporter substrate binding protein, HAAT family	0.00636023133631	0.000762844857664	-0.00559738647865
+UniRef50_Q0C0L1	ATP dependent protease ATPase subunit HslU	0.00799186931531	0.00142960710333	-0.00656226221198
+UniRef50_Q9RZB3	dTDP glucose 4,6 dehydratase	0.000106134767253	0.0641356942014	0.0640295594341
+UniRef50_Q8E418	DNA translocase FtsK	0.00511595474315	0.00405708926061	-0.00105886548254
+UniRef50_B0VB35	Aldehyde dehydrogenase, phenylacetic acid degradation	0.000126233983302	0.00635835113196	0.00623211714866
+UniRef50_UPI0004799256	hypothetical protein	9.38623079481e-06	1.67740282149e-05	7.38779742009e-06
+UniRef50_O66490	Adenylate kinase	9.94787082059e-06	5.64104386291e-05	4.64625678085e-05
+UniRef50_UPI00046ED1E9	ABC transporter permease	1.77766167725e-05	0.0002052359528	0.000187459336028
+UniRef50_O32978	O acetylserine sulfhydrylase	0.000509942216265	0.00154193267087	0.0010319904546
+UniRef50_UPI0004091FE8	helicase	6.17598646915e-07	1.23310297591e-05	1.17134311122e-05
+UniRef50_A4SFY3	Serine hydroxymethyltransferase	0.000125927143782	0.000176834838788	5.0907695006e-05
+UniRef50_D7BLM0	Extracellular solute binding protein family 5	0.00030202361837	0.0101818178918	0.00987979427343
+UniRef50_S1SCM4	LigA	0.000197274840002	0.00084575975439	0.000648484914388
+UniRef50_P42914	Probable fimbrial chaperone YraI	0.00301925230417	0.000517721307994	-0.00250153099618
+UniRef50_P44992		0.000959939369103	0.000924123353799	-3.5816015304e-05
+UniRef50_C6BH49	Coproporphyrinogen III oxidase	0.000179186387112	0.00367707002983	0.00349788364272
+UniRef50_UPI0003B759B0	urease subunit alpha	7.53532873147e-06	2.93930562942e-05	2.18577275627e-05
+UniRef50_A3PL00	TspO and MBR like proteins	0.013832853738	0.00823006501382	-0.00560278872418
+UniRef50_B7LKC2	Cytoskeleton protein RodZ	0.0029254646315	0.00270144923128	-0.00022401540022
+UniRef50_Q3J225	Bacteriophage head tail adaptor	0.00279930612105	0.00170375022228	-0.00109555589877
+UniRef50_J7PFG8		9.06782017489e-05	0.000708295725507	0.000617617523758
+UniRef50_T0TD56	Carbonic anhydrase	0.00542660840758	0.000483065376332	-0.00494354303125
+UniRef50_Q59087	Catabolic 3 dehydroquinate dehydratase	0.000294910928794	0.00619208702156	0.00589717609277
+UniRef50_D7WB79	Succinate dehydrogenase flavoprotein subunit	0.000243215437692	0.00569247306942	0.00544925763173
+UniRef50_Q3IZA2	Trehalose 6 phosphate phosphatase	0.000600768982605	0.000270519119271	-0.000330249863334
+UniRef50_I3BX28		3.90161153479e-05	7.10788845762e-05	3.20627692283e-05
+UniRef50_G7M5J0	SEC C motif domain protein	0.000101748244975	0.000962600041849	0.000860851796874
+UniRef50_UPI0002003503	ABC transporter, ATP binding protein, partial	1.68027076777e-05	3.41597938571e-05	1.73570861794e-05
+UniRef50_A6LYT6	Baseplate J family protein	0.000650381606123	0.00133483873173	0.000684457125607
+UniRef50_T1YD73	Gluconate operon transcriptional repressor	0.0121377771378	0.00867676883901	-0.00346100829879
+UniRef50_B8CZ12	ATP synthase subunit alpha	4.59639012406e-06	2.23952231133e-05	1.77988329892e-05
+UniRef50_M1N6Y0		0.000613024942053	0.00153220657516	0.000919181633107
+UniRef50_Q9I4L1	Probable deoxyguanosinetriphosphate triphosphohydrolase	0.000775851158395	0.000270893432557	-0.000504957725838
+UniRef50_UPI00036419A0	hypothetical protein	6.20276273565e-06	9.530619177e-06	3.32785644135e-06
+UniRef50_Q04J73	Holo [acyl carrier protein] synthase	4.45916815382e-05	0.00251176677793	0.00246717509639
+UniRef50_S5RIC3		0.000490241543964	0.000760472202226	0.000270230658262
+UniRef50_UPI000364B6F1	hypothetical protein	5.80894541569e-06	0.000251114759401	0.000245305813985
+UniRef50_B0CE03	Acyl carrier protein	0.0017154385674	0.00276833520407	0.00105289663667
+UniRef50_I3TL38	UDP 2,3 diacylglucosamine hydrolase	0.000165322330884	0.000473770115279	0.000308447784395
+UniRef50_Q9RWB2	Citrate synthase	8.2782650063e-06	0.0385771009313	0.0385688226663
+UniRef50_D4LGP4	Tryptophanyl tRNA synthetase	0.000618812028312	0.00416823570762	0.00354942367931
+UniRef50_A6LY82	Alpha beta superfamily like hydrolase	0.0013730328516	0.00145778439525	8.475154365e-05
+UniRef50_V5XSJ4	Lipoprotein	2.36818614762e-05	4.3447100638e-05	1.97652391618e-05
+UniRef50_P20356	Regulatory protein RepA	0.000249990721098	0.016155365836	0.0159053751149
+UniRef50_UPI0003B686D0	PREDICTED	2.54906601227e-05	4.96192012366e-05	2.41285411139e-05
+UniRef50_A0A033G8H1		3.24643977845e-05	5.21538458851e-05	1.96894481006e-05
+UniRef50_H1XZH3	Aldo keto reductase	0.00128867913382	0.0102641093346	0.00897543020078
+UniRef50_L8NEI8	Lipopolysaccharide kinase  family	0.00108529104183	0.000322750497486	-0.000762540544344
+UniRef50_G8V9R1	Permease	0.000574851759676	0.0041469115867	0.00357205982702
+UniRef50_W1YFP0	Nitrate reductase, beta subunit 	5.79082618336e-05	1.70082095485e-05	-4.09000522851e-05
+UniRef50_UPI000312D337	hypothetical protein	2.48120615481e-05	5.37398358811e-05	2.8927774333e-05
+UniRef50_E8U983	GAF domain protein	1.77074143499e-05	0.0012936265149	0.00127591910055
+UniRef50_I6TS63	ABC transporter permease	0.00532495166308	0.00171476255206	-0.00361018911102
+UniRef50_K4KH04	Protein yffB	7.2248439142e-05	4.55911756842e-05	-2.66572634578e-05
+UniRef50_G7M8Y3	Flagellar biosynthetic protein FlhF	8.60530369777e-05	0.000409394080697	0.000323341043719
+UniRef50_P52311	Modification methylase XorII	0.0146474993026	0.00170584286275	-0.0129416564398
+UniRef50_F0XXV7		0.000413160251245	0.00060959984102	0.000196439589775
+UniRef50_E5QY81		0.00205589412918	1.62694473932e-05	-0.00203962468179
+UniRef50_UPI00047BEFD4	HAD family hydrolase	1.5244037559e-05	4.04382963381e-05	2.51942587791e-05
+UniRef50_G8PNB5	Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase	8.697833844e-05	0.000465159563536	0.000378181225096
+UniRef50_A0R079	Glutamine synthetase 1	0.00618672950365	0.0238869541307	0.0177002246271
+UniRef50_E2NST4		0.000149861358975	0.00100896906212	0.000859107703145
+UniRef50_V5DMC9	Selenocysteine specific translation elongation factor	0.00413498163856	0.000328129672448	-0.00380685196611
+UniRef50_W8UPZ5	Oxygenase subunit of ring hydroxylating dioxygenase	0.000446643936995	0.0085848265494	0.0081381826124
+UniRef50_Q3J1A8	1 deoxy D xylulose 5 phosphate synthase 1	0.00504664504189	0.00119862230715	-0.00384802273474
+UniRef50_C1DPC3	Cyclic pyranopterin monophosphate synthase accessory protein	2.42227587904e-05	3.86187660998e-05	1.43960073094e-05
+UniRef50_P0AEJ3	Isochorismate synthase EntC	0.00337275905119	0.000939285038917	-0.00243347401227
+UniRef50_B7G0W9	Predicted protein	0.000101605224956	3.24695860583e-05	-6.91356388977e-05
+UniRef50_G9YRQ6		1.45412439407e-05	2.9235060717e-05	1.46938167763e-05
+UniRef50_Q5HKS8	Cell wall surface anchor family protein	0.00845933571301	0.00388288149502	-0.00457645421799
+UniRef50_J7MBF6		0.000320466675773	0.000256679647439	-6.3787028334e-05
+UniRef50_P18156	Glycerol uptake facilitator protein	0.0125053930879	0.00498983932975	-0.00751555375815
+UniRef50_A5EPJ2	DNA ligase	2.2825243182e-06	3.47441570205e-06	1.19189138385e-06
+UniRef50_T2QWI5		4.29567620508e-06	3.02467766786e-05	2.59511004735e-05
+UniRef50_Q2FZ98	UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141	0.0205090440704	0.00514926989288	-0.0153597741775
+UniRef50_Q2IM08		2.78216273688e-05	2.09805728043e-05	-6.8410545645e-06
+UniRef50_UPI00036488F7	hypothetical protein	6.92167640613e-06	2.09258195278e-05	1.40041431217e-05
+UniRef50_Q99Y73	Endonuclease MutS2	0.00706263776976	0.00623248559896	-0.0008301521708
+UniRef50_A5UP17	O linked GlcNAc transferase	0.0033237759242	0.000205795613371	-0.00311798031083
+UniRef50_UPI00047C28A2	3,4 dihydroxy 2 butanone 4 phosphate synthase	5.59605003346e-06	0.000103052724277	9.74566742435e-05
+UniRef50_UPI00042B2DF2	Mitochondrial ribosomal L11 like protein	1.71016689707e-05	8.13424551744e-05	6.42407862037e-05
+UniRef50_UPI00037FB3DE	hypothetical protein	6.63790731981e-06	4.00451823048e-06	-2.63338908933e-06
+UniRef50_E9T6B7	Periplasmic binding protein	2.40085008347e-06	1.44946054887e-05	1.20937554052e-05
+UniRef50_S5CVC3	Permeases of the major facilitator superfamily	0.000973706705447	0.00688556650192	0.00591185979647
+UniRef50_UPI0003778082	hypothetical protein	3.63013420273e-06	6.15724720193e-06	2.5271129992e-06
+UniRef50_Q3HKI7	TraG	0.037812308622	0.0105863415612	-0.0272259670608
+UniRef50_P0AF68	tRNA threonylcarbamoyladenosine biosynthesis protein TsaE	0.00177211458413	0.00115810472625	-0.00061400985788
+UniRef50_UPI0002657B93	PREDICTED	1.13205118991e-05	1.00591106229e-05	-1.2614012762e-06
+UniRef50_Q1CS39	Uroporphyrinogen III cosynthase	0.000735241296867	0.00258144079485	0.00184619949798
+UniRef50_P28722		0.000710199154162	0.00375208555703	0.00304188640287
+UniRef50_Q6GIH0	UPF0051 protein SAR0880	0.0382831699031	0.0832777096523	0.0449945397492
+UniRef50_UPI0003657D51	hypothetical protein	3.78243745544e-06	5.86980088185e-06	2.08736342641e-06
+UniRef50_D3E3M2	2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase	0.00305550564105	0.00136802267205	-0.001687482969
+UniRef50_Q88MV0	Tyrosine recombinase XerD	0.000692567283908	0.00547392385327	0.00478135656936
+UniRef50_A6LWP7		0.000224249102288	0.000343391517665	0.000119142415377
+UniRef50_R7IGE7	Cyclodextrin ABC transporter permease protein	0.000135623708568	0.00166343344137	0.0015278097328
+UniRef50_U5MS83		0.000691844497729	0.000898955221447	0.000207110723718
+UniRef50_R4X107	Anti sigma factor antagonist	2.95772072742e-05	0.00637752975321	0.00634795254594
+UniRef50_S6AEE6	Sulfate ABC transporter substrate binding protein CysP	0.000591948497369	0.00176220616743	0.00117025767006
+UniRef50_UPI000473E8E4	hypothetical protein, partial	9.33657234311e-06	1.34248000638e-05	4.08822772069e-06
+UniRef50_X1SHF8	Marine sediment metagenome DNA, contig	1.95327356487e-05	9.25159393856e-05	7.29832037369e-05
+UniRef50_F8G4J9	Major facilitator transporter	0.000547425438424	0.00019492851828	-0.000352496920144
+UniRef50_UPI000469A483	hypothetical protein	1.51890095805e-06	8.7464839371e-06	7.22758297905e-06
+UniRef50_UPI00033433D0	PREDICTED	4.05926809863e-05	4.3033913243e-05	2.4412322567e-06
+UniRef50_G7U7D4	Sugar binding periplasmic protein	0.000243082038334	0.00497042504008	0.00472734300175
+UniRef50_A4WZR2		0.000274646083169	0.000108427347369	-0.0001662187358
+UniRef50_F8HEX8	NADPH dependent fmn reductase	0.00441043002963	0.00443407671267	2.364668304e-05
+UniRef50_R0EB23		8.6836115524e-06	5.18817703389e-05	4.31981587865e-05
+UniRef50_O66821	Hypoxanthine guanine phosphoribosyltransferase	3.30983163738e-05	2.64649898864e-05	-6.6333264874e-06
+UniRef50_V5UIB0	CoA transferase	0.000926301094676	0.000824547351209	-0.000101753743467
+UniRef50_UPI0004713504	hypothetical protein	2.37581834582e-06	3.16257156852e-05	2.92498973394e-05
+UniRef50_UPI0004627EF4	hypothetical protein	3.18574123072e-06	6.6924765642e-06	3.50673533348e-06
+UniRef50_UPI0003291A81	PREDICTED	0.000140923910209	0.000127514630105	-1.3409280104e-05
+UniRef50_B9DT59	Sensor histidine kinase	0.0046540926974	0.00202108316608	-0.00263300953132
+UniRef50_Q3J2Y0	ABC oligo dipeptide transporter, fused ATPase subunits	0.000121586395184	0.000322003593166	0.000200417197982
+UniRef50_UPI0001746395	Gluconate transporter	2.06752779835e-05	2.91398513791e-05	8.4645733956e-06
+UniRef50_UPI0003730BCE	hypothetical protein	1.3859305725e-05	1.15377818312e-05	-2.3215238938e-06
+UniRef50_Q131M0	Peptidyl tRNA hydrolase	7.09153483425e-05	3.36154058082e-05	-3.72999425343e-05
+UniRef50_P10725	Alanine racemase 1	7.70874581362e-06	0.00187601451452	0.00186830576871
+UniRef50_J9P8Y9		2.71129857262e-05	2.62081901225e-05	-9.047956037e-07
+UniRef50_A9BXI8	D isomer specific 2 hydroxyacid dehydrogenase NAD binding	0.00157348506985	0.000525835247257	-0.00104764982259
+UniRef50_A0A010IRI1	Copper resistance , CopA family protein	6.34785855703e-05	0.00150847159516	0.00144499300959
+UniRef50_F6FVA2	NADH quinone oxidoreductase, F subunit	8.63153937979e-05	0.0358285430734	0.0357422276796
+UniRef50_Q2SBV0	Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation	9.68740775547e-05	0.000613247427171	0.000516373349616
+UniRef50_Q4L8V4	Sensory transduction protein LytR	0.0076652359971	0.00381291693776	-0.00385231905934
+UniRef50_UPI00037BA9AE	hypothetical protein	2.9552656197e-05	1.16965239277e-05	-1.78561322693e-05
+UniRef50_Q87HJ2	3 oxoacyl [acyl carrier protein] synthase 3 protein 2	4.40081771352e-06	6.82662716615e-06	2.42580945263e-06
+UniRef50_B9KKK1	Transcriptional regulator, DeoR family	0.0100023148431	0.00516534795837	-0.00483696688473
+UniRef50_UPI0002628822	inosine uridine preferring nucleoside hydrolase	4.51647171601e-06	9.42215297768e-06	4.90568126167e-06
+UniRef50_UPI00047EB05D	hypothetical protein	8.3523522637e-06	2.18774661579e-05	1.35251138942e-05
+UniRef50_Q4JMN7	Predicted flagellar hook capping protein	7.98460703656e-06	1.09763008102e-05	2.99169377364e-06
+UniRef50_UPI000475B51F	hypothetical protein	0.000191374008792	0.00149954655469	0.0013081725459
+UniRef50_UPI00028835CE	glutamate dehydrogenase	2.91370767041e-05	2.62062440621e-06	-2.65164522979e-05
+UniRef50_UPI00047A79FF	LysR family transcriptional regulator	3.37756427904e-05	5.9431210237e-05	2.56555674466e-05
+UniRef50_Q3A248	Phosphopentomutase	1.49042528663e-05	1.75922515904e-05	2.6879987241e-06
+UniRef50_S2R0I0	Capsular polysaccharide synthesis protein	8.41593076416e-06	1.2508220615e-05	4.09228985084e-06
+UniRef50_P06149	D lactate dehydrogenase	0.00145169944198	0.0116939203239	0.0102422208819
+UniRef50_UPI00037C3443	hypothetical protein	2.01509662751e-05	3.76295302541e-05	1.7478563979e-05
+UniRef50_D2TN56	Translocation and assembly module TamA	0.00248494516097	0.000972029695316	-0.00151291546565
+UniRef50_R5IZV2	Rod shape determining protein MreB	0.000681000017594	0.00291018265994	0.00222918264235
+UniRef50_P96662		0.000224249102288	0.000431829731805	0.000207580629517
+UniRef50_P71311		0.00499343963263	0.000705936347077	-0.00428750328555
+UniRef50_Q18BQ3	UPF0271 protein CD630_13840	0.00104337951329	0.000270106742557	-0.000773272770733
+UniRef50_UPI00047614B3	glutamate dehydrogenase	8.85420021886e-06	0.000401351760438	0.000392497560219
+UniRef50_Q3IVA8		0.0012561916514	0.000404543431768	-0.000851648219632
+UniRef50_R4Q3U4		0.00507079684378	0.00120537430691	-0.00386542253687
+UniRef50_P56793	50S ribosomal protein L16, chloroplastic	0.000260335164724	0.00263412892114	0.00237379375642
+UniRef50_Q8SQT7	Elongation factor 2	1.48196021316e-06	1.83406852024e-06	3.5210830708e-07
+UniRef50_Q3IVA2		0.00402760804569	0.00109672781525	-0.00293088023044
+UniRef50_G7WCF3		5.72526777832e-05	0.0011012361577	0.00104398347992
+UniRef50_Q9HW91	Methyl accepting chemotaxis protein PctB	0.00128484215468	0.000568132442427	-0.000716709712253
+UniRef50_N0CH82	Periplasmic binding protein	3.74979745749e-06	8.21694446542e-06	4.46714700793e-06
+UniRef50_Q6GCY8	Purine nucleoside phosphorylase DeoD type	0.0147502511198	0.00792402011862	-0.00682623100118
+UniRef50_M4R901		0.000129128616484	0.00309372930715	0.00296460069067
+UniRef50_Q03727	Transport processing ATP binding protein ComA	0.0193933915309	0.0104226043337	-0.0089707871972
+UniRef50_P19926	Glucose 1 phosphatase	0.00316095952383	0.00123806024309	-0.00192289928074
+UniRef50_V5VFB4	Transcriptional regulator	0.000128688405295	0.0053388440446	0.0052101556393
+UniRef50_Q3IWX7	Putative phage tail tube protein FII	0.0388398445081	0.00593171217248	-0.0329081323356
+UniRef50_UPI000309F49D	hypothetical protein	1.08743757233e-05	1.02066381502e-05	-6.677375731e-07
+UniRef50_UPI0002B9193E	hypothetical protein	3.82107221024e-06	0.00369339488053	0.00368957380832
+UniRef50_UPI0004739302	urea ABC transporter ATP binding protein, partial	0.000326150705729	0.000211296038916	-0.000114854666813
+UniRef50_M5U8U8	UPF0246 protein RSSM_04267	8.6930495024e-06	8.38172890116e-06	-3.1132060124e-07
+UniRef50_W0ACK7		3.47572723268e-05	6.47003350976e-05	2.99430627708e-05
+UniRef50_Q5HL17	Pyruvate phosphate dikinase	0.0103404362982	0.00472827464497	-0.00561216165323
+UniRef50_P0C348	Peptide chain release factor 2	0.000859378625711	0.000202734580221	-0.00065664404549
+UniRef50_UPI00036F8282	hypothetical protein	5.27083749727e-05	8.60476422921e-05	3.33392673194e-05
+UniRef50_Q8XW28	Urocanate hydratase	3.71421864845e-05	0.000139629577818	0.000102487391333
+UniRef50_Q4L811	Type II pantothenate kinase	0.0101039800657	0.00294481699924	-0.00715916306646
+UniRef50_Q8G4X3	Glutamyl Q tRNA synthetase	4.29572152604e-06	5.27560670209e-06	9.7988517605e-07
+UniRef50_UPI0001850812	shikimate 5 dehydrogenase	4.69357380054e-05	4.69444404941e-05	8.7024887e-09
+UniRef50_Q51391	Glycerol 3 phosphate regulon repressor	0.00077097421028	0.000425937555561	-0.000345036654719
+UniRef50_F0YC37		0.000183633372986	0.000196404531762	1.2771158776e-05
+UniRef50_A3TSY0	Hemolysin type calcium binding protein	1.44255462819e-06	2.22952713197e-06	7.8697250378e-07
+UniRef50_T0SW85	Transcription repair coupling factor	0.00620322160439	0.00331695598001	-0.00288626562438
+UniRef50_UPI00036A708B	hypothetical protein	1.14746387603e-05	6.11765316988e-06	-5.35698559042e-06
+UniRef50_Q8CS12		0.00770624124112	0.0046984691421	-0.00300777209902
+UniRef50_UPI0003EB5DA3	50S ribosomal protein L36	9.59421150765e-05	0.000860145743281	0.000764203628205
+UniRef50_R4WT31	Ribonucleoside diphosphate reductase	9.56358134288e-05	0.0079963623657	0.00790072655227
+UniRef50_UPI00016AD465	hypothetical protein	2.80806776835e-05	0.000237999962373	0.00020991928469
+UniRef50_UPI000262572E	acetoin dehydrogenase E2 subunit dihydrolipoyllysine residue acetyltransferase	4.30090147939e-06	1.09067259605e-05	6.60582448111e-06
+UniRef50_UPI000367C756	hypothetical protein	0.000146291438332	0.000391575811449	0.000245284373117
+UniRef50_B5XYB9	Hydroxylamine reductase	0.00236008466842	0.000877741260164	-0.00148234340826
+UniRef50_A5UNH1	Lipopolysaccharide cholinephosphotransferase	0.00348214839823	0.000526121124967	-0.00295602727326
+UniRef50_UPI000408C071	hypothetical protein	1.94642124517e-05	3.4385740373e-05	1.49215279213e-05
+UniRef50_UPI0001BF66E3	hypothetical protein SMAC_10240	0.000142623931941	0.000537925129529	0.000395301197588
+UniRef50_Q55480		2.74486089077e-05	7.70182588018e-05	4.95696498941e-05
+UniRef50_L7WZA3		0.0175953067907	0.0010197621946	-0.0165755445961
+UniRef50_P16263	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.0338216081e-05	0.000146751354286	0.000136413138205
+UniRef50_B9KS54		0.00586237270687	0.00136259929603	-0.00449977341084
+UniRef50_B9KS55		9.59710141129e-05	0.000150161036537	5.41900224241e-05
+UniRef50_Q041L5	ABC type cobalt transport system, permease component CbiQ related transporter	0.0183782597345	0.0121791887134	-0.0061990710211
+UniRef50_UPI0003768F93	hypothetical protein	2.35481000484e-06	3.26200521049e-06	9.0719520565e-07
+UniRef50_I3UM51		0.000644764907314	0.000292830894442	-0.000351934012872
+UniRef50_F6D1X2	Dihydroorotase	0.00157733689139	0.000602662883296	-0.000974674008094
+UniRef50_F9YWS1		0.000225094201639	0.0034173265364	0.00319223233476
+UniRef50_A6LRH2	Histidine kinase internal region	0.000474382357875	0.000650807799911	0.000176425442036
+UniRef50_UPI000382BC4C	hypothetical protein	0.00182551647073	0.000568346028769	-0.00125717044196
+UniRef50_W0YNP0	AMP binding protein	0.000288314307811	0.000111510398435	-0.000176803909376
+UniRef50_A4XNT2		0.00117565402438	0.000875416956622	-0.000300237067758
+UniRef50_A8LLT3	Phosphate acyltransferase	0.00702147520337	0.00140734449033	-0.00561413071304
+UniRef50_UPI0004675B23	queuine tRNA ribosyltransferase	4.39710445179e-06	6.33537500147e-05	5.89566455629e-05
+UniRef50_F3YPM3	Prephenate dehydratase	0.00329528259278	0.00658125512197	0.00328597252919
+UniRef50_Q9X5M1	Diaminopimelate decarboxylase	0.000112090516671	0.00330277620106	0.00319068568439
+UniRef50_H8FVT2	CRISPR associated helicase Cas3	0.000172652722503	2.01437157537e-05	-0.000152509006749
+UniRef50_UPI00035C4745	hypothetical protein	5.05968255118e-06	4.55761272721e-05	4.05164447209e-05
+UniRef50_Q2NI23	DNA primase small subunit PriS	0.0029373144459	0.000728989697082	-0.00220832474882
+UniRef50_UPI000310953A	quinone oxidoreductase	5.4375340031e-06	5.95408010082e-05	5.41032670051e-05
+UniRef50_R0QWV3		7.24736421567e-05	0.000718815179355	0.000646341537198
+UniRef50_Q5HLY5		0.00517833153236	0.00346075285877	-0.00171757867359
+UniRef50_UPI00037F4158	hypothetical protein	9.91524753771e-06	3.16205065818e-05	2.17052590441e-05
+UniRef50_UPI0003725D3A	hypothetical protein	3.12817244687e-06	4.16706338478e-05	3.85424614009e-05
+UniRef50_Q8EWD1	Serine hydroxymethyltransferase	6.19148684601e-05	0.00010554432247	4.36294540099e-05
+UniRef50_A5IQ08		0.00201046198469	0.000424916122588	-0.0015855458621
+UniRef50_B2TJK8	Spore coat protein, CotS family	0.000225151650042	0.00202254361545	0.00179739196541
+UniRef50_UPI000367BD21	hypothetical protein, partial	4.12055616661e-06	3.56846262027e-06	-5.5209354634e-07
+UniRef50_UPI000255A109	FrpC, partial	3.08036837243e-06	2.59877457288e-06	-4.8159379955e-07
+UniRef50_UPI000372D109	hypothetical protein	1.22020072374e-05	2.10262272843e-05	8.8242200469e-06
+UniRef50_U7FV20		6.39548651838e-05	1.60285012635e-05	-4.79263639203e-05
+UniRef50_X5K4I4	ABC transporter, ATP binding  permease protein	0.00465586292638	0.00124285992577	-0.00341300300061
+UniRef50_D5STS9		0.0132522273193	0.00215545832029	-0.011096768999
+UniRef50_Q5XAE6	Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.0043836658129	0.000379421891038	-0.00400424392186
+UniRef50_J2YH36	4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein	0.000172368031437	0.00140500936133	0.00123264132989
+UniRef50_UPI00036BF70E	hypothetical protein	7.70368651236e-06	0.00115534270734	0.00114763902083
+UniRef50_C5BLW1	Type IV pilus biogenesis stability protein PilW	8.63231413958e-06	2.04455636538e-05	1.18132495142e-05
+UniRef50_A7FZ47	30S ribosomal protein S13	0.0154109451276	0.00266251245188	-0.0127484326757
+UniRef50_W9WZ32		2.11218766553e-05	2.38252674965e-05	2.7033908412e-06
+UniRef50_UPI00028929E9	iron ABC transporter permease	1.67519009136e-05	2.00352549588e-05	3.2833540452e-06
+UniRef50_O66680	Leucine  tRNA ligase subunit alpha	2.48571772918e-06	9.46962923702e-06	6.98391150784e-06
+UniRef50_A0A021WYJ6		5.64858555577e-05	3.63438559073e-05	-2.01419996504e-05
+UniRef50_Q0ADJ4	Nucleotidyl transferase	0.00129186278556	0.00460170035933	0.00330983757377
+UniRef50_UPI00037CB764	hypothetical protein	1.01562500624e-05	1.8431241672e-05	8.2749916096e-06
+UniRef50_UPI00018512AA	3 hydroxybutyryl CoA dehydrogenase	7.84977158673e-05	0.00153801146882	0.00145951375295
+UniRef50_Q9RUS8	Spermidine putrescine ABC transporter, permease protein	0.00018294959072	0.0238697283824	0.0236867787917
+UniRef50_UPI00032A2821	PREDICTED	0.00242545884748	0.000427679407501	-0.00199777943998
+UniRef50_V6EZP6		1.75155715992e-05	1.68437649277e-05	-6.718066715e-07
+UniRef50_R4XX04	Phage related protein	7.43082655217e-05	0.00565355020273	0.00557924193721
+UniRef50_UPI0004758F1B	hypothetical protein	6.59494023382e-05	1.27971992744e-05	-5.31522030638e-05
+UniRef50_P26395	Protein RfbI	1.11922254866e-05	1.6310161089e-05	5.1179356024e-06
+UniRef50_A4VMA8	Trk system potassium uptake protein	0.00188204989891	0.000938080986251	-0.000943968912659
+UniRef50_Q28TW0	Molybdenum cofactor sulfurylase	9.57124006777e-06	1.06440384377e-05	1.07279836993e-06
+UniRef50_UPI000287C21F	phosphoenolpyruvate protein phosphotransferase	3.91619910976e-06	0.000322519280133	0.000318603081023
+UniRef50_Q8A0B5	4 deoxy L threo 5 hexosulose uronate ketol isomerase 2	5.76859855432e-06	0.00516171581395	0.0051559472154
+UniRef50_Q2J545	Cysteine  tRNA ligase	3.13529146269e-06	1.00214658228e-05	6.88617436011e-06
+UniRef50_Q8CMP3	Transporter	0.00923917330682	0.00313485147203	-0.00610432183479
+UniRef50_A4G266	Phosphate starvation inducible protein	0.000278991505659	0.00169310147226	0.0014141099666
+UniRef50_A7X442	NH dependent NAD(+) synthetase	0.0249703906252	0.0107362000497	-0.0142341905755
+UniRef50_UPI000471E89E	pseudoazurin	0.000269817270939	0.000154455829908	-0.000115361441031
+UniRef50_F0RN28	Carboxyl terminal protease	0.000222649047128	0.0471826445006	0.0469599954535
+UniRef50_A6L7M5	Tryptophan synthase beta chain	2.86118987558e-06	0.0010859989366	0.00108313774672
+UniRef50_A4WU00	O antigen polymerase	0.00594215826773	0.00239549665815	-0.00354666160958
+UniRef50_E0MTZ8	Replication protein C	2.46580535838e-05	5.60785617514e-06	-1.90501974087e-05
+UniRef50_Q72KJ4	Pili assembly protein pilC	0.000232914420024	0.0442081867655	0.0439752723455
+UniRef50_X5DQJ7	ABC type glycine betaine L proline transporter, substrate binding lipoprotein	0.000181483648491	0.00459624578059	0.0044147621321
+UniRef50_P0CZ58	Fructose bisphosphate aldolase	0.0114601414292	0.00464358806397	-0.00681655336523
+UniRef50_M4ZP55	7 carboxy 7 deazaguanine synthase	0.000155344028336	0.00215656158993	0.00200121756159
+UniRef50_R5IQ58	Collagenase and related proteases	0.000580853182019	0.00117439606395	0.000593542881931
+UniRef50_V5X0C1	Nitrate reductase	0.0120705325822	0.00400976230393	-0.00806077027827
+UniRef50_UPI00046807CF	tRNA delta isopentenylpyrophosphate transferase	2.12031682705e-05	1.1385556075e-05	-9.8176121955e-06
+UniRef50_W6RZJ6	Amidase	0.000364134394391	0.000668144940642	0.000304010546251
+UniRef50_C7R130	D lactate dehydrogenase 	3.96102821484e-05	0.00350871892545	0.0034691086433
+UniRef50_D8JJL0	OmpW family protein	0.000200790419604	0.00482100762317	0.00462021720357
+UniRef50_UPI0003716EE9	amino acid ABC transporter	6.11544587779e-06	0.00157542638822	0.00156931094234
+UniRef50_I3THN7	Binding protein dependent transport systems inner membrane component	0.00589932216329	0.00347370654768	-0.00242561561561
+UniRef50_UPI000441338E	hypothetical protein AURDEDRAFT_112432	3.82578597592e-06	1.83276821125e-06	-1.99301776467e-06
+UniRef50_G7M1N3		0.00072439395647	0.000716471502476	-7.922453994e-06
+UniRef50_UPI00046ADCCD	hypothetical protein	0.000280397079295	6.82258494432e-05	-0.000212171229852
+UniRef50_Q9CIV7	PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL	0.00225561750896	0.00108558558255	-0.00117003192641
+UniRef50_W7D2I2		6.23198570249e-05	0.0001552207238	9.29008667751e-05
+UniRef50_UPI00047862A8	molecular chaperone DnaJ	4.59511379862e-06	1.26932244701e-05	8.09811067148e-06
+UniRef50_D4ZAF4	Iron  ABC transporter, permease protein	0.00163088669817	0.000777544647996	-0.000853342050174
+UniRef50_B0R332	Tryptophan synthase beta chain	3.70425743152e-05	1.84429427873e-05	-1.85996315279e-05
+UniRef50_M9RQH1	GTPase HflX	0.00325100596897	0.000550866565026	-0.00270013940394
+UniRef50_Q9ZBH5	Diaminopimelate decarboxylase	0.00288743181558	0.00519032246359	0.00230289064801
+UniRef50_A1HSV6		3.60400990814e-05	9.73536189965e-05	6.13135199151e-05
+UniRef50_Q5F6T9		4.80136652557e-05	0.000536945932242	0.000488932266986
+UniRef50_UPI00047BB8D4	lysyl tRNA synthetase	3.47551737236e-06	1.26051048771e-05	9.12958750474e-06
+UniRef50_Q9K0S5		0.000198328890814	0.00146335225451	0.0012650233637
+UniRef50_A5VFM2	tRNA specific 2 thiouridylase MnmA	0.00316692690828	0.00110555685172	-0.00206137005656
+UniRef50_UPI00045D6A2D	PREDICTED	0.000100241794407	7.46819813078e-06	-9.27735962762e-05
+UniRef50_C4XPA8	2 isopropylmalate synthase	7.96967558959e-06	8.42148555821e-06	4.5180996862e-07
+UniRef50_UPI0003316925	PREDICTED	7.65691660987e-05	5.99019686016e-05	-1.66671974971e-05
+UniRef50_I4DZ12	Response regulator homolog	0.00513658891457	0.00190985672017	-0.0032267321944
+UniRef50_C0ENU4		0.000139646004992	5.4765808357e-05	-8.4880196635e-05
+UniRef50_Q167Z8	ExbD TolR family biopolymer transport protein, putative	0.0295957277679	0.000758875099014	-0.0288368526689
+UniRef50_UPI0002488642	deoxyguanosinetriphosphate triphosphohydrolase	5.5381885817e-05	3.90276877867e-05	-1.63541980303e-05
+UniRef50_R9SLZ8		0.00457359287735	0.000299307471484	-0.00427428540587
+UniRef50_UPI0002000344	hypothetical protein	0.000313700267745	0.000952263440841	0.000638563173096
+UniRef50_D9USA0	YjeF family protein 	1.13887077819e-05	7.26357641651e-05	6.12470563832e-05
+UniRef50_B6IS55	Oxidoreductase, short chain dehydrogenase	0.00026397621598	0.000646564723045	0.000382588507065
+UniRef50_P45104	Ribosomal large subunit pseudouridine synthase B	0.00242504510072	0.00256826798284	0.00014322288212
+UniRef50_A5UP79	Integrase recombinase protein	0.00212371951123	0.000267658645188	-0.00185606086604
+UniRef50_UPI000467ACA1	hypothetical protein	2.17928376163e-05	2.53818858009e-05	3.5890481846e-06
+UniRef50_P0A9S6	Glycerol dehydrogenase	0.00405720776021	0.00155954928252	-0.00249765847769
+UniRef50_Q8X6C7	Xanthine dehydrogenase molybdenum binding subunit	0.00221401709463	0.000409536987534	-0.0018044801071
+UniRef50_E4ZBB9		0.000364134394391	0.00202507087052	0.00166093647613
+UniRef50_D2S3Z6	SSS sodium solute transporter superfamily	0.000278327865847	0.0351865339579	0.0349082060921
+UniRef50_Q4FS37	Ribosomal RNA small subunit methyltransferase G	1.006468976e-05	0.0118076778847	0.0117976131949
+UniRef50_C1FUR3	HTH domain protein	0.000620108639606	0.00120866584384	0.000588557204234
+UniRef50_C1CEF7	Mobile genetic element	2.00515107928e-05	7.39458745753e-05	5.38943637825e-05
+UniRef50_UPI00047EF6CC	bis tetraphosphatase	2.36683132814e-05	0.000331859667447	0.000308191354166
+UniRef50_I0EKX1	Antibiotic transport system permease protein	0.000102950724233	0.00186667679025	0.00176372606602
+UniRef50_A8LJS3		1.91389439336e-05	6.31886418883e-06	-1.28200797448e-05
+UniRef50_M1MUH2	Flagellar hook associated protein 2	8.59876967804e-05	0.000642207565288	0.000556219868508
+UniRef50_A8LJS1		0.000332096172905	4.12804261207e-05	-0.000290815746784
+UniRef50_X3EKE6		0.00177567888227	0.000554814616145	-0.00122086426612
+UniRef50_Q01S06		0.00893348343297	0.00043007287164	-0.00850341056133
+UniRef50_A3WQ21		0.000142416686256	0.00140844720854	0.00126603052228
+UniRef50_K0EZI3		6.50429601061e-06	0.00019013440353	0.000183630107519
+UniRef50_P0CE57	Transposase InsH for insertion sequence element IS5R	0.0245133048012	0.0107978567289	-0.0137154480723
+UniRef50_B3PCQ0	ACT domain protein phosphoserine phosphatase SerB	9.27484002093e-05	0.00595274781151	0.0058599994113
+UniRef50_Q5HR97	Teichoic acids export ATP binding protein TagH	0.01901823912	0.00349176346949	-0.0155264756505
+UniRef50_P37386	Probable cadmium transporting ATPase	0.0101330420044	0.00523637317601	-0.00489666882839
+UniRef50_Q71YA8	4 hydroxy tetrahydrodipicolinate reductase	0.00720325615299	0.00300631777061	-0.00419693838238
+UniRef50_D2NR34	ATPase with chaperone activity, ATP binding subunit	0.000134968337407	0.00505207978537	0.00491711144796
+UniRef50_P17618	Riboflavin biosynthesis protein RibD	6.79130371155e-06	0.000207239793125	0.000200448489413
+UniRef50_F6P2R4		0.00577697229933	0.00128903920536	-0.00448793309397
+UniRef50_Q58N56	Gp12	7.85021435854e-05	1.7730402895e-05	-6.07717406904e-05
+UniRef50_P0AD15	Sensor histidine kinase YehU	0.00340611863324	0.000995295032133	-0.00241082360111
+UniRef50_R7PSE2		0.00237831582337	0.00108330787793	-0.00129500794544
+UniRef50_P37061	NADH oxidase	0.000619214725088	0.0024204010713	0.00180118634621
+UniRef50_R9SMN4	2 phosphosulfolactate phosphatase ComB	0.00224543151923	0.000257169844878	-0.00198826167435
+UniRef50_Q1JFV4		0.00798364175219	0.00468133815433	-0.00330230359786
+UniRef50_UPI00030AE818	hypothetical protein	1.1287613882e-05	1.60554340407e-05	4.7678201587e-06
+UniRef50_UPI000255CD3D	glutamate synthase  small subunit	0.000160430997632	0.000164568465119	4.137467487e-06
+UniRef50_UPI0003B468FE	ammonium transporter	5.17097716805e-06	3.61473288889e-06	-1.55624427916e-06
+UniRef50_UPI000361E930	MULTISPECIES	4.79572855866e-05	6.39028720671e-05	1.59455864805e-05
+UniRef50_A5UM85	Protein GrpE	0.00467375248065	0.000580950895467	-0.00409280158518
+UniRef50_B5XYZ0	Guanosine 5 triphosphate,3 diphosphate pyrophosphatase	0.00293061247432	0.000830125289309	-0.00210048718501
+UniRef50_D5HC80		3.19229496315e-05	0.000162993966374	0.000131071016743
+UniRef50_P17430	Acetate operon repressor	0.00662662201789	0.00108969820902	-0.00553692380887
+UniRef50_Q6G329	Ribonuclease D	6.44720436075e-05	1.21496339182e-05	-5.23224096893e-05
+UniRef50_UPI00046E9EE1	hypothetical protein	0.000125351294772	0.000116895983387	-8.455311385e-06
+UniRef50_B8FTK7	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	3.58475205499e-05	2.94804683143e-05	-6.3670522356e-06
+UniRef50_A8MI43	Alpha beta hydrolase fold	0.00151227644607	0.0046864051606	0.00317412871453
+UniRef50_G7U7C7	Phospholipase, patatin family protein	9.5084631958e-05	0.00643196539946	0.0063368807675
+UniRef50_UPI0002D7CF6D	hypothetical protein	1.86585883207e-05	0.000898615699033	0.000879957110712
+UniRef50_P16440	Riboflavin synthase	2.12394962311e-05	2.98030393316e-05	8.5635431005e-06
+UniRef50_F0N020	ResB family protein	0.00038837637448	0.00247266011012	0.00208428373564
+UniRef50_D8HET5	Sirohydrochlorin ferrochelatase	0.0268815338203	0.00431352420361	-0.0225680096167
+UniRef50_B1TGN6		3.67314688714e-05	0.000126949879946	9.02184110746e-05
+UniRef50_Q0HNC2	L threonine ammonia lyase	0.000184910981555	0.00208533524369	0.00190042426213
+UniRef50_G8B0F2		2.05915397608e-05	0.000144732443384	0.000124140903623
+UniRef50_Z5KKF6	Type IV conjugative transfer system protein TraV	1.1529095946e-05	1.93496745284e-05	7.8205785824e-06
+UniRef50_P67088	Ribosomal RNA small subunit methyltransferase I	0.00222294531815	0.000712096169186	-0.00151084914896
+UniRef50_Q8NTE1	Dihydrolipoyl dehydrogenase	2.14379871331e-05	0.00601697923928	0.00599554125215
+UniRef50_F7ZAP7	Histidine kinase	0.00404390064912	0.000681650874371	-0.00336224977475
+UniRef50_J3PDD9		5.04013003814e-05	4.0364107531e-05	-1.00371928504e-05
+UniRef50_O68984	Polyphosphate kinase 2	2.88358420922e-06	0.000228367914683	0.000225484330474
+UniRef50_Q8R9G2	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000518832276502	0.001181105503	0.000662273226498
+UniRef50_B1M2H9		0.000452983186623	0.000158089666788	-0.000294893519835
+UniRef50_UPI0003809C52	flagellar biosynthesis protein FlhA, partial	0.000612619799497	0.000726752009906	0.000114132210409
+UniRef50_UPI00037BA0F7	hypothetical protein	1.5503080275e-05	0.000368367859339	0.000352864779064
+UniRef50_B9K0E0	ABC transporter substrate binding protein 	0.0133476190153	0.000705411989776	-0.0126422070255
+UniRef50_Q5HRC8		0.00015001213854	3.37827110025e-05	-0.000116229427537
+UniRef50_UPI00047CE8A1	hypothetical protein	3.64163508232e-05	1.08285677602e-05	-2.5587783063e-05
+UniRef50_UPI0002899EA1	N acyl L amino acid amidohydrolase	1.5246785389e-05	0.000173486136023	0.000158239350634
+UniRef50_C0PI11		7.27528599851e-05	3.68219465193e-05	-3.59309134658e-05
+UniRef50_U3SWE7		0.00128193433382	0.00046506567747	-0.00081686865635
+UniRef50_B9KWN5	ABC amino acid transporter, periplasmic ligand binding protein	0.012590059842	0.00362224690942	-0.00896781293258
+UniRef50_A5UKR1	Cobalt ABC transporter, permease component	0.000456636276836	0.00840059399941	0.00794395772257
+UniRef50_V5SUT2	Multidrug ABC transporter substrate binding protein	0.00298725858971	0.000371638766063	-0.00261561982365
+UniRef50_X6APU4		0.000183446371854	5.69875583353e-05	-0.000126458813519
+UniRef50_UPI0003B50A60	cell division protein FtsE	1.93723978332e-05	6.07970720172e-05	4.1424674184e-05
+UniRef50_J9NT05		1.83689616748e-05	0.000245386451787	0.000227017490112
+UniRef50_A4TJM2	Probable phosphatase YPDSF_1086	0.00166652123486	0.000720284646817	-0.000946236588043
+UniRef50_E3D657	Glutathione regulated potassium efflux system protein	0.000149038173604	0.00221787431051	0.00206883613691
+UniRef50_Q8FHG5	Glutamate decarboxylase beta	0.00777200005519	0.000888163560668	-0.00688383649452
+UniRef50_Q28PK8		2.10170540357e-05	5.90229484766e-05	3.80058944409e-05
+UniRef50_V4PD29		8.10484830239e-05	2.77765332678e-05	-5.32719497561e-05
+UniRef50_Q8FDA1	Penicillin binding protein activator LpoA	0.00240108409235	0.000357552165568	-0.00204353192678
+UniRef50_B6IZD5	Ribosomal RNA large subunit methyltransferase E	3.1537918464e-05	3.77344114741e-05	6.1964930101e-06
+UniRef50_Q8D2I8	Cardiolipin synthase A	0.00159588753899	0.000287139976776	-0.00130874756221
+UniRef50_F4BS97	PTS system, lactose cellobiose family IIC subunit	0.000345273803223	0.00401459208105	0.00366931827783
+UniRef50_UPI00046D0519	hypothetical protein	3.53834272033e-06	5.23634539746e-06	1.69800267713e-06
+UniRef50_W6RXA4	NAD dependent epimerase dehydratase	0.0175910678696	0.00609232716277	-0.0114987407068
+UniRef50_UPI0000123685	C. briggsae CBR GEI 7 protein, partial	1.44873627684e-05	7.91993092772e-05	6.47119465088e-05
+UniRef50_R5UKS9		0.000261462852246	0.000247472099328	-1.3990752918e-05
+UniRef50_UPI00042A7A25	hypothetical protein	2.13529362556e-05	4.5600192973e-05	2.42472567174e-05
+UniRef50_A3PHB4		0.0170356816418	0.000440771201791	-0.01659491044
+UniRef50_UPI000255D523	putative ATPase	0.00132298833221	0.000387765277012	-0.000935223055198
+UniRef50_A3PHB0		0.00192956750601	0.0015477767506	-0.00038179075541
+UniRef50_D0ZTB2	Magnesium transporting ATPase, P type 1	0.00253046255189	0.000558114507719	-0.00197234804417
+UniRef50_A7WXS7	Antiholin like protein LrgB	0.0168967605048	0.00050553501603	-0.0163912254888
+UniRef50_Q5JIZ8	4 phosphopantoate  beta alanine ligase	0.00223574282296	0.0012120315264	-0.00102371129656
+UniRef50_Q9YGB0	Tryptophan synthase beta chain 1	5.06730196507e-05	2.06286555221e-05	-3.00443641286e-05
+UniRef50_A4WTH7		0.00010676022073	0.000330618628011	0.000223858407281
+UniRef50_Q8X9A9	Succinate dehydrogenase hydrophobic membrane anchor subunit	0.0010605819952	0.000615243135819	-0.000445338859381
+UniRef50_M9VIE6		0.000176946557275	0.00835877819336	0.00818183163609
+UniRef50_L2YGD4		6.14634049415e-05	2.13483940957e-05	-4.01150108458e-05
+UniRef50_UPI00034BB763	hypothetical protein	3.68583616359e-06	0.000683096554407	0.000679410718243
+UniRef50_Q87VK8	UPF0313 protein PSPTO_4928	0.000809111819368	0.000262938038002	-0.000546173781366
+UniRef50_UPI000328C73F		7.58889498985e-06	6.96623967712e-05	6.20735017814e-05
+UniRef50_UPI000181653B	putative cation efflux protein	1.49953289863e-05	9.00611447477e-05	7.50658157614e-05
+UniRef50_UPI00045EB333	hypothetical protein	4.79318839769e-06	2.74902124056e-06	-2.04416715713e-06
+UniRef50_A6UC68	Glutamine synthetase catalytic region	0.0022185745605	0.000922704749051	-0.00129586981145
+UniRef50_Q5M6A1	Undecaprenyl diphosphatase	0.00559820986305	0.0049545608602	-0.00064364900285
+UniRef50_UPI00046976AA	hypothetical protein	7.14034026878e-05	8.43878224582e-06	-6.2964620442e-05
+UniRef50_UPI00045EBC8D	hypothetical protein	1.87976562087e-05	7.35570881426e-06	-1.14419473944e-05
+UniRef50_I1AS06		0.000167247939965	8.54746547458e-05	-8.17732852192e-05
+UniRef50_Q10Y48	Uridylate kinase	2.30896859897e-05	2.91910144666e-05	6.1013284769e-06
+UniRef50_UPI0003FA4543	membrane protein	3.60168932171e-05	7.3495143042e-06	-2.86673789129e-05
+UniRef50_E8SII5	Single stranded DNA specific exonuclease RecJ	0.00954681698391	0.00345634475734	-0.00609047222657
+UniRef50_Q5HKU8	CapA related protein	0.0117321999354	0.00325636740181	-0.00847583253359
+UniRef50_Q7MPS3	Formamidopyrimidine DNA glycosylase	0.00232890153192	0.00297333300328	0.00064443147136
+UniRef50_UPI00041EB905	thymidylate synthase	5.88810128769e-05	0.000430628652688	0.000371747639811
+UniRef50_R0EY14	CRISPR associated helicase Cas3	9.41653728385e-06	1.08079213661e-05	1.39138408225e-06
+UniRef50_A5ZLG0		3.76854056432e-05	0.000350807935395	0.000313122529752
+UniRef50_B8DT48	Methionine  tRNA ligase	0.000147222350615	0.00943185977574	0.00928463742513
+UniRef50_A5IVU5	Phospholipase Carboxylesterase	0.0139317848247	0.00179844916104	-0.0121333356637
+UniRef50_P77437	Hydrogenase 4 component F	0.00166538505333	0.00098222011707	-0.00068316493626
+UniRef50_K5ELG7		0.000103172044321	0.000281317040156	0.000178144995835
+UniRef50_A3X6J0		4.12976770655e-05	6.89750752718e-05	2.76773982063e-05
+UniRef50_D4GDN3	Catalase	0.000284243592468	9.13350634579e-05	-0.00019290852901
+UniRef50_A8ML82	Probable endonuclease 4	0.000530906383178	0.00125927348865	0.000728367105472
+UniRef50_UPI0003B59385	molybdopterin biosynthesis protein MoeB	1.95531421562e-05	1.98582654261e-05	3.051232699e-07
+UniRef50_A3JVB5	SN glycerol 3 phophate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 	0.000170039287998	5.61688633509e-05	-0.000113870424647
+UniRef50_G8AEH3		4.28119324318e-05	0.000121107636684	7.82957042522e-05
+UniRef50_UPI00047B7AB7	alpha ketoglutarate decarboxylase	1.07175579609e-06	4.57109484673e-06	3.49933905064e-06
+UniRef50_A5UKJ0	Tyrosine  tRNA ligase	0.00399065880485	0.000257543638253	-0.0037331151666
+UniRef50_B7G9B5	L threonine ammonia lyase	0.000249837012794	0.00114505925528	0.000895222242486
+UniRef50_UPI000374D549	hypothetical protein	2.05710879097e-05	1.72803343713e-05	-3.2907535384e-06
+UniRef50_UPI0003610FAC	hypothetical protein, partial	0.000207791778855	4.73430859924e-05	-0.000160448692863
+UniRef50_B5WT75	Transketolase domain protein	0.000142553870142	1.78191886693e-05	-0.000124734681473
+UniRef50_P58319	Low specificity L threonine aldolase	0.000456662185685	0.000398157978736	-5.8504206949e-05
+UniRef50_A7MI34	Ribonuclease H	0.00625382790229	2.45186780071e-05	-0.00622930922428
+UniRef50_Q5KP44	Inosine 5 monophosphate dehydrogenase	2.37252918055e-05	3.64058337172e-06	-2.00847084338e-05
+UniRef50_A3X8V2	DNA helicase II, putative	0.00631794572949	0.00265443006903	-0.00366351566046
+UniRef50_B0VAC9	Porin	0.000384062672354	0.00458226100245	0.0041981983301
+UniRef50_P08656	Mercuric transport protein	0.00272541931512	0.000436428628368	-0.00228899068675
+UniRef50_Q75FU1	Acetylglutamate kinase	2.92139968277e-05	9.3709752719e-06	-1.98430215558e-05
+UniRef50_O66119	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.00458693201879	0.0027304195949	-0.00185651242389
+UniRef50_Q88BC2	Phospholipase D family protein	0.00109691995495	0.000446743283418	-0.000650176671532
+UniRef50_B4TKU5	RNA 3 terminal phosphate cyclase	0.00289644883717	0.0021582726858	-0.00073817615137
+UniRef50_A5W974	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000152352837042	0.00106058267639	0.000908229839348
+UniRef50_UPI00045DB0AA	PREDICTED	0.000110844172911	2.15966381688e-06	-0.000108684509094
+UniRef50_UPI00040A4A10	betaine aldehyde dehydrogenase	1.61087158058e-05	4.93683722979e-05	3.32596564921e-05
+UniRef50_J9EAY7		0.0131906634757	0.00120537430691	-0.0119852891688
+UniRef50_I0DZ31	Major facilitator transporter	0.000231550071799	0.0062078612858	0.005976311214
+UniRef50_D0LZ79	Phosphoribosylformylglycinamidine synthase, purS	0.0188996648051	6.41985266265e-05	-0.0188354662785
+UniRef50_T0PX63		1.20284048624e-05	2.03517210887e-05	8.3233162263e-06
+UniRef50_UPI0004715F2C	ATP dependent DNA helicase RecQ	1.57326000835e-05	8.98946220602e-06	-6.74313787748e-06
+UniRef50_Q6GDN6	4,4 diaponeurosporenoate glycosyltransferase	0.0146150721323	0.00234009086268	-0.0122749812696
+UniRef50_Q3Z7P5	Isoleucine  tRNA ligase	3.0595540668e-06	9.36130840441e-06	6.30175433761e-06
+UniRef50_C8PYM1		1.11776384201e-05	1.01881291816e-05	-9.895092385e-07
+UniRef50_Q2T312	Glutamate 1 semialdehyde aminotransferase	0.000461553398489	0.00013312548694	-0.000328427911549
+UniRef50_UPI0003EE7EAE	acetyl CoA acetyltransferase	1.70245649132e-05	9.92470055448e-05	8.22224406316e-05
+UniRef50_W5XCV9	Hsp90 ATPase activator family protein, putative	1.60698332692e-05	0.00013905981389	0.000122989980621
+UniRef50_UPI000373AC76	hypothetical protein	3.01945320928e-05	0.000150657949832	0.000120463417739
+UniRef50_UPI00036BF734	hypothetical protein	3.00234985515e-06	0.00063401979096	0.000631017441105
+UniRef50_P60966	Prolipoprotein diacylglyceryl transferase	1.30583770364e-05	7.85366171909e-06	-5.20471531731e-06
+UniRef50_UPI00031187B6	hypothetical protein	2.81722564903e-05	1.18779699666e-05	-1.62942865237e-05
+UniRef50_X2MXQ1		0.000133773324648	0.000154771697738	2.099837309e-05
+UniRef50_N0BFG1	Polyhydroxyalkonate synthesis repressor PhaR	2.7596534463e-05	9.24033106559e-06	-1.83562033974e-05
+UniRef50_M1MRG1	Amino acid polyamine organocation transporter, APC superfamily	0.000137931626444	0.00197410152269	0.00183616989625
+UniRef50_Q2NH89	Replication factor C small subunit	0.00450335128371	0.00168752402968	-0.00281582725403
+UniRef50_K4AS36		4.32379557918e-05	1.66806348089e-05	-2.65573209829e-05
+UniRef50_F5LZU0		0.000658062089568	0.00102090374539	0.000362841655822
+UniRef50_C6WQE7	Periplasmic binding protein	1.05550482835e-05	5.41613637344e-05	4.36063154509e-05
+UniRef50_UPI0003B45185	DNA directed RNA polymerase subunit alpha	2.08130113379e-05	6.822731422e-05	4.74143028821e-05
+UniRef50_Q8DUE8		0.00813766927271	0.00200097968855	-0.00613668958416
+UniRef50_Q8FBT7		0.00133399305193	0.000537179542243	-0.000796813509687
+UniRef50_UPI0004014281	16S rRNA methyltransferase	2.27294644962e-05	2.24641701788e-05	-2.652943174e-07
+UniRef50_P45515	Cobyrinic acid a,c diamide adenosyltransferase	2.18983818154e-05	5.83046725533e-05	3.64062907379e-05
+UniRef50_V5CX68	Dipeptide ABC superfamily ATP binding cassette transporter, binding protein	0.000320487211153	0.000962989256073	0.00064250204492
+UniRef50_Q9I733		0.000306559544876	0.000765108454026	0.00045854890915
+UniRef50_UPI000463C6BF	hypothetical protein	1.65127410566e-05	0.000450369054678	0.000433856313621
+UniRef50_R6HVU1		0.000104159773061	0.00494754604704	0.00484338627398
+UniRef50_G7LXC7	Glycoside hydrolase family 25	0.000734813932868	0.00194727044432	0.00121245651145
+UniRef50_U5MY29	DnaD like protein	0.000317011917057	0.000782534735779	0.000465522818722
+UniRef50_UPI0003B69658	branched chain amino acid ABC transporter permease	0.000148859567984	0.000151996450797	3.136882813e-06
+UniRef50_R6VS65		0.000448213796037	0.000880905534551	0.000432691738514
+UniRef50_UPI0004624AAB	calcium binding protein	3.52093718112e-07	5.63777191094e-07	2.11683472982e-07
+UniRef50_R5QLU7		0.00179256010567	0.000725145259866	-0.0010674148458
+UniRef50_UPI0004750550	glutamyl tRNA amidotransferase	1.17672581416e-05	2.19638264666e-05	1.0196568325e-05
+UniRef50_A6LYZ5	Transposase 	0.000547081143264	0.00033432079833	-0.000212760344934
+UniRef50_F9YWL9		0.000207790452577	0.0081432615891	0.00793547113652
+UniRef50_P77434	Glutamate pyruvate aminotransferase AlaC	0.00310473449022	0.0018167050449	-0.00128802944532
+UniRef50_F0FD43		0.000321420152608	1.19644998639e-05	-0.000309455652744
+UniRef50_G0XA87		0.00110248507535	0.0484075526505	0.0473050675752
+UniRef50_S8AX05	NLPA family lipoprotein	1.22318184459e-05	3.16707821069e-05	1.9438963661e-05
+UniRef50_J9YR28	Rhodanese like domain containing protein	2.30337538454e-05	0.00233176490197	0.00230873114812
+UniRef50_Q218J2	Molybdopterin dehydrogenase, FAD binding	0.00243214515849	0.000377000049191	-0.0020551451093
+UniRef50_UPI00042C9909	PREDICTED	9.94150134473e-06	3.22633025144e-05	2.23218011697e-05
+UniRef50_Q21M27	Glucose 1 phosphate adenylyltransferase	1.1211431215e-05	2.72743404715e-05	1.60629092565e-05
+UniRef50_UPI00042517AA	coproporphyrinogen III oxidase	1.98377044727e-05	5.00371329475e-05	3.01994284748e-05
+UniRef50_Q3JUF7		2.45762240962e-06	0.000254766388374	0.000252308765964
+UniRef50_D8HGC2		1.44892464651e-05	0.000108682249339	9.41930028739e-05
+UniRef50_UPI00047BCF38	AsnC family transcriptional regulator	0.000199001247767	8.81865229419e-05	-0.000110814724825
+UniRef50_UPI00036EA5F9	hypothetical protein, partial	1.63693087209e-05	4.68909536302e-05	3.05216449093e-05
+UniRef50_P39347	Putative prophage P4 integrase	0.00399325683709	0.000610037123369	-0.00338321971372
+UniRef50_A0A052HCP6	PF07120 family protein	4.79369692794e-06	7.64789275259e-06	2.85419582465e-06
+UniRef50_Q7MVV7	Thymidine kinase	1.71654633517e-05	1.30619408193e-05	-4.1035225324e-06
+UniRef50_F0QIN2	Transcriptional regulator, TetR family	0.000354187347592	0.0176230422034	0.0172688548558
+UniRef50_P0AFJ9	Low affinity inorganic phosphate transporter 1	0.00510671070878	0.00184468659008	-0.0032620241187
+UniRef50_D0LA73		2.31221498111e-05	3.27205448773e-05	9.5983950662e-06
+UniRef50_A0A008HNV8		4.27378834968e-05	6.13269155292e-06	-3.66051919439e-05
+UniRef50_UPI00047161BF	thioredoxin	4.00958809738e-05	2.63955290762e-05	-1.37003518976e-05
+UniRef50_Q3HKI8	DSBA oxidoreductase	0.021748037005	0.00850313994098	-0.013244897064
+UniRef50_B6AH12	NAD dependent epimerase dehydratase family protein	0.00520640619842	0.00147268942774	-0.00373371677068
+UniRef50_UPI000463295C	hypothetical protein	0.00209106735988	0.000716520273746	-0.00137454708613
+UniRef50_UPI000414D457	hypothetical protein	4.08242233195e-06	5.91638470593e-06	1.83396237398e-06
+UniRef50_Q1J1L0	Mannose 6 phosphate isomerase, type 1	0.000495196673545	0.0623578518859	0.0618626552124
+UniRef50_O32165	FeS cluster assembly protein SufD	0.023296466832	0.00731892942908	-0.0159775374029
+UniRef50_Q08329	Ribosomal RNA small subunit methyltransferase I 	2.89875710755e-05	3.48986738968e-05	5.9111028213e-06
+UniRef50_W4UF17	Beta mannosidase	0.000158456006781	0.00657073933288	0.0064122833261
+UniRef50_J0S0K6		2.28291514076e-06	3.29374673001e-06	1.01083158925e-06
+UniRef50_A9VTC9	Aspartate carbamoyltransferase	1.07466160736e-05	8.62201047967e-06	-2.12460559393e-06
+UniRef50_UPI00046A3857	hypothetical protein	4.27190065776e-06	8.75090383769e-05	8.32371377191e-05
+UniRef50_UPI00036BBCF4	MULTISPECIES	3.20471423671e-05	1.38436268324e-05	-1.82035155347e-05
+UniRef50_Q2GJV5	Polyribonucleotide nucleotidyltransferase	2.25395772625e-06	5.98672827688e-06	3.73277055063e-06
+UniRef50_D3ERJ1	Energy coupling factor transporter transmembrane protein EcfT	0.0215703604285	0.0077733947985	-0.01379696563
+UniRef50_H6PBJ5	ThiW protein	0.00030606972069	0.000628333415313	0.000322263694623
+UniRef50_A6LIS9	7 cyano 7 deazaguanine synthase	5.55684245877e-05	0.000428303075717	0.000372734651129
+UniRef50_UPI00022CAA8B	PREDICTED	3.17400955732e-05	7.37294351724e-05	4.19893395992e-05
+UniRef50_A3N352	N acetylneuraminate lyase	0.0093611444294	0.00185271146756	-0.00750843296184
+UniRef50_T2K100	CadX	0.0325752976437	0.0132769353524	-0.0192983622913
+UniRef50_Q9I2Y8		0.000167453110285	0.000628333415313	0.000460880305028
+UniRef50_UPI0003633A56	hypothetical protein	1.08517612851e-05	4.22495753332e-05	3.13978140481e-05
+UniRef50_Q8CMW6	IS605 IS200 like transposase	0.011607661574	0.00554931599443	-0.00605834557957
+UniRef50_P75810	Inner membrane protein YbjJ	0.0022419732403	0.000418147692723	-0.00182382554758
+UniRef50_G7MCQ3		0.000397171325099	0.000693005924187	0.000295834599088
+UniRef50_P43386	Glutamine synthetase	1.03143143439e-05	0.000137660788728	0.000127346474384
+UniRef50_J7QU36	Hydrogenase 4 membrane subunit	0.00111454562337	0.000473537988818	-0.000641007634552
+UniRef50_UPI0003686401	hypothetical protein	5.84992495528e-05	5.7242572272e-06	-5.27749923256e-05
+UniRef50_F9XXP5	Transporter, Sodium bile acid symporter family, macrolide resistance protein	0.00352674685015	0.00483812307827	0.00131137622812
+UniRef50_A0A022M296	Short chain dehydrogenase 	2.04625376914e-05	2.4578154e-05	4.1156163086e-06
+UniRef50_A4XKN9	Cytidylate kinase	8.83789682173e-06	1.15421292239e-05	2.70423240217e-06
+UniRef50_Q6ZAM9		1.1190509507e-05	1.34122597411e-05	2.2217502341e-06
+UniRef50_D7BLX5	Extracellular solute binding protein family 1	3.71325680773e-05	3.25921255043e-05	-4.540442573e-06
+UniRef50_UPI0003661C1B	hypothetical protein	1.32286476861e-05	3.43279817057e-05	2.10993340196e-05
+UniRef50_Q8XU90	Uroporphyrinogen decarboxylase	0.00161703679992	0.0108927179906	0.00927568119068
+UniRef50_R6HIJ1		7.56409471529e-06	3.23027824714e-05	2.47386877561e-05
+UniRef50_C3MCT2		0.00140640512611	0.000464861285554	-0.000941543840556
+UniRef50_Q5HR58	Decarboxylase family protein	0.0323868111101	0.00471456183448	-0.0276722492756
+UniRef50_UPI000351149F	PREDICTED	3.191753689e-05	8.02559792158e-05	4.83384423258e-05
+UniRef50_G8V3B6	Heme ABC exporter, ATP binding protein CcmA	0.0201041664954	0.00466023403099	-0.0154439324644
+UniRef50_P94417	Aspartokinase 3	0.00533882783848	0.00827825489773	0.00293942705925
+UniRef50_D4HA31	D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase	0.000523885359156	0.00440807866749	0.00388419330833
+UniRef50_A0A023KQS7	Formate dehydrogenase	0.00137016793906	0.00103403590418	-0.00033613203488
+UniRef50_P31436	Sugar efflux transporter C	0.00543436062603	0.00126228159476	-0.00417207903127
+UniRef50_B9KJG1	Flagellar proximal rod protein FlgC	0.00181135554305	0.00180236871959	-8.98682346e-06
+UniRef50_Q9PNB4	Elongation factor Ts	0.000603527370052	0.00577119102051	0.00516766365046
+UniRef50_A4WSY4	Transcriptional regulator, RpiR family	0.0126498110329	0.00105897323501	-0.0115908377979
+UniRef50_G0VNQ5	Lipoprotein	3.30192671499e-05	8.79902403925e-06	-2.42202431106e-05
+UniRef50_UPI00047EE782	DNA gyrase subunit A	7.01461981345e-06	4.98789633342e-06	-2.02672348003e-06
+UniRef50_Q5SKN9	Long chain fatty acid  CoA ligase	1.15341051473e-05	0.00027172358915	0.000260189484003
+UniRef50_Q84630		1.6003773123e-05	2.44614945341e-05	8.4577214111e-06
+UniRef50_P09053	Valine  pyruvate aminotransferase	0.0025430093308	0.00173963361563	-0.00080337571517
+UniRef50_I6S241		0.000776607423632	0.000156252224977	-0.000620355198655
+UniRef50_UPI0003758FEB	hypothetical protein	5.75663027762e-05	9.16352463386e-05	3.40689435624e-05
+UniRef50_P45039	Protein CysZ homolog	0.00322890587385	0.00047037179594	-0.00275853407791
+UniRef50_UPI00036B404B	hypothetical protein	2.37339727073e-05	8.72854941856e-06	-1.50054232887e-05
+UniRef50_A7V4H6		3.64213943153e-05	0.000195252938045	0.00015883154373
+UniRef50_P77546		0.00476079440274	0.00176755562166	-0.00299323878108
+UniRef50_Q5HPS3	30S ribosomal protein L7Ae, putative	0.00145080607697	0.0112759004338	0.00982509435683
+UniRef50_D7CXV9	Electron transfer flavoprotein alpha beta subunit	0.000243016731023	0.0418156891054	0.0415726723744
+UniRef50_Q5HQF3	Transposase, IS200 family, truncation	0.00273160664935	0.0272816384799	0.0245500318305
+UniRef50_E3F2N0	Transcriptional regulator, LysR family protein	0.0165632690805	0.00191817118576	-0.0146450978947
+UniRef50_R5J6S8	Thioredoxin disulfide reductase	0.000659210045459	0.000474978262967	-0.000184231782492
+UniRef50_UPI000476E0F1	hypothetical protein	4.2840872078e-06	1.10935390851e-05	6.8094518773e-06
+UniRef50_Q1QDN1	Aminotransferase	0.000251492511024	0.00722499953124	0.00697350702022
+UniRef50_G7M5P4		2.39244889874e-06	0.000691565702328	0.000689173253429
+UniRef50_P76633		0.00371732589835	0.00281000044596	-0.00090732545239
+UniRef50_P76639		0.000945892396134	0.000196659293133	-0.000749233103001
+UniRef50_G2FJU8	CRISPR associated helicase Cas3	0.000120082733565	3.1697486628e-05	-8.8385246937e-05
+UniRef50_O05240	Probable NADH dependent butanol dehydrogenase 2	1.06020066497e-05	0.00220721872077	0.00219661671412
+UniRef50_E0TGB8		0.000130455852193	2.93630918666e-05	-0.000101092760326
+UniRef50_UPI00047C43B7	deoxyguanosinetriphosphate triphosphohydrolase	1.34274932965e-05	1.61224520561e-05	2.6949587596e-06
+UniRef50_C5D4L1	Transcriptional regulator, RpiR family	0.000285532641026	0.000679933622094	0.000394400981068
+UniRef50_A1BHE5	Chorismate synthase	1.8598161881e-05	0.000183750805589	0.000165152643708
+UniRef50_A8LS46		0.000210626445025	4.15137445388e-05	-0.000169112700486
+UniRef50_D6K042	Nucleotide binding protein	7.39852429849e-06	6.66728920087e-05	5.92743677102e-05
+UniRef50_UPI000345D912	hypothetical protein	0.000318438248205	0.000410697844162	9.2259595957e-05
+UniRef50_UPI00047E8FE9	hypothetical protein	1.26438236184e-05	5.50718964674e-05	4.2428072849e-05
+UniRef50_Q820Q4	Siroheme synthase	4.55681875857e-06	2.25730917386e-05	1.801627298e-05
+UniRef50_UPI0003B3A117	adenosylcobinamide amidohydrolase	5.92293959266e-05	0.000109286458476	5.00570625494e-05
+UniRef50_UPI00036900A5	hypothetical protein	4.44260505689e-05	2.62393386933e-05	-1.81867118756e-05
+UniRef50_UPI00040265B6	transcriptional regulator	9.86792717005e-06	0.00010949827694	9.963034977e-05
+UniRef50_Q21AL1		0.000614058473984	6.74747988232e-05	-0.000546583675161
+UniRef50_B0V8K7	Pilin like competence factor	0.000168270128756	0.00667540417739	0.00650713404863
+UniRef50_A3TXU1		0.000178616652232	3.23826946049e-05	-0.000146233957627
+UniRef50_UPI000237DC3E	hypothetical protein	1.9193595653e-05	0.000236206036376	0.000217012440723
+UniRef50_A1SVN9	D erythrose 4 phosphate dehydrogenase	0.00337369010844	0.00155891550011	-0.00181477460833
+UniRef50_S9S862		0.000494291732102	7.43775769457e-05	-0.000419914155156
+UniRef50_UPI0002559A2B	hypothetical protein	0.000588601910223	5.26857660642e-05	-0.000535916144159
+UniRef50_Q8YAE3	Ribonuclease M5	0.00887135506321	0.00101520055157	-0.00785615451164
+UniRef50_UPI00035C7818	hypothetical protein	2.72757265495e-06	4.094420993e-06	1.36684833805e-06
+UniRef50_E8SJM3	Siderophore staphylobactin biosynthesis protein SbnC	0.0153706349845	0.00244665240198	-0.0129239825825
+UniRef50_UPI0004720A04	diguanylate cyclase, partial	1.32894115641e-06	2.74895188129e-05	2.61605776565e-05
+UniRef50_Q73F30	Tn7 like transposition protein D	1.0161589647e-05	9.58301909705e-05	8.56686013235e-05
+UniRef50_Q7N5M7	Flagellar L ring protein	0.00526343826007	0.000386877779725	-0.00487656048035
+UniRef50_G7M4H8	Secretion protein HlyD family protein	0.000506221307211	0.00356337888767	0.00305715758046
+UniRef50_O87320	Putative aminotransferase AatC	2.82224494622e-05	0.000568651484471	0.000540429035009
+UniRef50_F7XGW6	Oxidoreductase protein	0.00194234594035	0.000974578793798	-0.000967767146552
+UniRef50_V3W6L3	Glucarate permease	0.00176731348197	0.000197096799911	-0.00157021668206
+UniRef50_J2WQI8		8.58735358218e-05	4.4700368914e-05	-4.11731669078e-05
+UniRef50_Q1C138	Autoinducer 2 import ATP binding protein LsrA	0.00242739173227	0.000787959436458	-0.00163943229581
+UniRef50_D4HCC5	Transcriptional regulator, LacI family	0.000490012037439	0.0036916409401	0.00320162890266
+UniRef50_UPI00046CFD96	hypothetical protein	2.87829172354e-05	2.95753969477e-05	7.924797123e-07
+UniRef50_Q9HT89		0.000993127259492	0.00452676555232	0.00353363829283
+UniRef50_UPI00035FFDBB	hypothetical protein	5.42138270638e-06	9.18312519576e-06	3.76174248938e-06
+UniRef50_Q134N9	Methionine import ATP binding protein MetN	1.30016123657e-05	2.25800360992e-05	9.5784237335e-06
+UniRef50_A0A059LBR4		2.33234134006e-05	0.000114084599834	9.07611864334e-05
+UniRef50_B8C7V4		6.05251272776e-05	2.82692177639e-05	-3.22559095137e-05
+UniRef50_D9T5Q5		1.90016670052e-05	6.23886266305e-06	-1.27628043422e-05
+UniRef50_UPI0002F33E46	hypothetical protein	0.00206212227828	0.000128347259578	-0.0019337750187
+UniRef50_UPI00035D42F6	hypothetical protein	3.00140852212e-06	1.46966132426e-05	1.16952047205e-05
+UniRef50_D5AL10	Transcriptional regulator, LuxR family	0.00464283362434	0.00155736771919	-0.00308546590515
+UniRef50_Q9RY69		0.000381181046844	0.0445152345643	0.0441340535175
+UniRef50_J0URR6		2.69301378738e-05	0.000181252542535	0.000154322404661
+UniRef50_E3A6Z3		0.000911506760953	0.00246478800461	0.00155328124366
+UniRef50_K7SLE8	Acyl CoA thioester hydrolase, YbgC YbaW family	0.000747463757461	0.00549933868084	0.00475187492338
+UniRef50_M4QZ02	Ribosomal RNA small subunit methyltransferase D	0.000228318138423	0.00143079294428	0.00120247480586
+UniRef50_C9RQ15	Nitrogenase	0.000577557994818	0.00118200168979	0.000604443694972
+UniRef50_UPI0002624B69	thioredoxin disulfide reductase, partial	0.000121964231924	7.95612360415e-05	-4.24029958825e-05
+UniRef50_R4NK63	Valyl tRNA synthetase	0.00038947694678	7.08193537646e-05	-0.000318657593015
+UniRef50_UPI0004448C06	PREDICTED	6.62065745959e-06	1.97963666431e-05	1.31757091835e-05
+UniRef50_O03042	Ribulose bisphosphate carboxylase large chain	0.00883595195123	0.00289369863074	-0.00594225332049
+UniRef50_UPI0003B45D4A	transcription termination factor Rho	5.62358300836e-06	2.3469583562e-05	1.78460005536e-05
+UniRef50_I0EV03	Cytosine specific methyltransferase	0.000272494044384	0.0022562352771	0.00198374123272
+UniRef50_B2V0J5	Phosphopentomutase	0.000125721391775	0.00143315151999	0.00130743012821
+UniRef50_A1R8R6	30S ribosomal protein S11	0.0104863386241	0.0243954171843	0.0139090785602
+UniRef50_P09546	Bifunctional protein PutA	0.000819864147582	0.000430975006151	-0.000388889141431
+UniRef50_UPI0003B6A42C	DNA helicase	1.68108671166e-05	1.62041420434e-05	-6.067250732e-07
+UniRef50_M1MDU9	Permease	0.000759632004564	0.00313821808373	0.00237858607917
+UniRef50_A5UNQ0	Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family	0.00362756580132	0.000810265473116	-0.0028173003282
+UniRef50_E1VK27	Phenylacetic acid degradation like protein	9.33584118295e-06	1.68771140037e-05	7.54127282075e-06
+UniRef50_UPI0002F8E904	hypothetical protein	9.33988473737e-06	1.75964802835e-05	8.25659554613e-06
+UniRef50_F5ZJY8	Membrane protein	2.09762388463e-05	7.39168549958e-05	5.29406161495e-05
+UniRef50_A5UJT5		0.00177999107223	0.00115610806808	-0.00062388300415
+UniRef50_Q37626	NADH ubiquinone oxidoreductase chain 6	0.000128546517711	3.13090150795e-05	-9.72375026315e-05
+UniRef50_UPI00046648B3	ABC transporter	4.66996317759e-06	1.81009027681e-05	1.34309395905e-05
+UniRef50_UPI0004772455	metallophosphoesterase, partial	2.89830313913e-06	0.000478316268362	0.000475417965223
+UniRef50_K0P9U6		0.000638616154308	0.000313886506919	-0.000324729647389
+UniRef50_M4X2Y6		0.000205607233078	4.65172830834e-05	-0.000159089949995
+UniRef50_Q9S208	Putative 3 methyladenine DNA glycosylase	1.63043284412e-05	3.28352497779e-05	1.65309213367e-05
+UniRef50_UPI0003ADF309	PREDICTED	4.72933697713e-05	5.40816707141e-05	6.7883009428e-06
+UniRef50_X7EE68		0.000242663372315	4.40568436321e-05	-0.000198606528683
+UniRef50_B4DT69	Dihydrolipoyl dehydrogenase, mitochondrial	2.07318309187e-05	6.38627267084e-05	4.31308957897e-05
+UniRef50_UPI0004773262	aldehyde oxidoreductase	1.49860918777e-05	1.00303792961e-05	-4.9557125816e-06
+UniRef50_P31474	Probable transport protein HsrA	0.00497813034149	0.00147858088371	-0.00349954945778
+UniRef50_R4LLL8		4.78887826154e-05	2.95179088852e-05	-1.83708737302e-05
+UniRef50_T1XS28		0.016261808291	0.00238095961426	-0.0138808486767
+UniRef50_Q6FDP2		0.00105968807219	0.00499342296233	0.00393373489014
+UniRef50_T6QCZ1	Acetoacetate metabolism regulatory protein AtoC	0.000342132316185	0.000425937555561	8.3805239376e-05
+UniRef50_I0C564	Adenine specific methyltransferase	0.0217620487287	0.00460832987574	-0.017153718853
+UniRef50_P0ABM3	Heme exporter protein C	0.00344094999836	0.00141656733714	-0.00202438266122
+UniRef50_P31442	Multidrug resistance protein D	0.00487573471624	0.000773234268918	-0.00410250044732
+UniRef50_K8M5I2		0.00231977266233	0.00033801582594	-0.00198175683639
+UniRef50_UPI000369D268	hypothetical protein	2.99996980448e-05	7.75520269841e-06	-2.22444953464e-05
+UniRef50_Q7DDR9	Adenosine monophosphate protein transferase NmFic	0.00603085916238	0.00220261976682	-0.00382823939556
+UniRef50_UPI00042A93F8	hypothetical protein	6.47829333748e-06	1.14662401013e-05	4.98794676382e-06
+UniRef50_UPI0004292FB7	hypothetical protein	6.03884220366e-05	2.95629887556e-05	-3.0825433281e-05
+UniRef50_H3Y6A9	PF04507 domain protein	2.57615613722e-05	3.58417882427e-05	1.00802268705e-05
+UniRef50_S5XQS3	Acetylornithine N succinyldiaminopimelate aminotransferase	0.00177221584407	0.000401531649578	-0.00137068419449
+UniRef50_E3HI99		4.93111813151e-06	7.18741089525e-06	2.25629276374e-06
+UniRef50_Q9SLK0	Peroxisomal isocitrate dehydrogenase [NADP]	0.0239172331837	0.00600846073708	-0.0179087724466
+UniRef50_P0A6X2	Glutamyl tRNA reductase	0.00272562583369	0.00104961466366	-0.00167601117003
+UniRef50_UPI00035D06F8	hypothetical protein	1.40619696326e-06	2.25888734162e-06	8.5269037836e-07
+UniRef50_M4JQT7	Transcriptional regulator	0.000651962580884	0.000760914455182	0.000108951874298
+UniRef50_F8CFH1	Acetyl CoA carboxylase carboxyltransferase	0.00119887829301	0.0052249233222	0.00402604502919
+UniRef50_UPI00047EBCE0	carboxymuconolactone decarboxylase	4.42922105938e-05	0.00260310785538	0.00255881564479
+UniRef50_A0A022H066	Transcriptional regulator	4.3752968435e-05	1.43775750931e-05	-2.93753933419e-05
+UniRef50_P64636	GMP IMP nucleotidase YrfG	0.00323368311678	0.00026525452562	-0.00296842859116
+UniRef50_UPI0004686F41	hypothetical protein	1.81719037965e-05	1.49795475782e-05	-3.1923562183e-06
+UniRef50_G7U923	Copper exporting ATPase	0.000207545247591	0.00448955197689	0.0042820067293
+UniRef50_R9SM10	Energy converting hydrogenase B subunit E EhbE	0.000588289852755	0.000550279574895	-3.801027786e-05
+UniRef50_UPI0003752C76	hypothetical protein	0.00136493327416	0.000798153257284	-0.000566780016876
+UniRef50_Q60DH5		0.000119674885215	2.51582449349e-05	-9.45166402801e-05
+UniRef50_A3VZ88	ISxac3 transposase	0.000767543042476	0.000775862119949	8.319077473e-06
+UniRef50_E6AYN5		0.00446983815931	0.00276268273754	-0.00170715542177
+UniRef50_UPI00047C2D15	transporter	6.01126752032e-05	6.08266059086e-05	7.139307054e-07
+UniRef50_D3PRK0	Phenylacetate  CoA ligase	9.05242179512e-05	0.0380884503778	0.0379979261598
+UniRef50_F4C648		0.00290377517524	0.000472506728318	-0.00243126844692
+UniRef50_K0SPN4		4.77219314567e-05	0.000118649754563	7.09278231063e-05
+UniRef50_P69680	Ammonia channel	0.00294997341488	0.0015987803799	-0.00135119303498
+UniRef50_P77499	Probable ATP dependent transporter SufC	0.0244759298122	0.00643388456404	-0.0180420452482
+UniRef50_UPI00030D778A	hypothetical protein	0.000157770227494	2.75922243165e-05	-0.000130178003178
+UniRef50_D1BCT4	ABC type hemin transport system, periplasmic component	8.05777751261e-06	2.77450941053e-05	1.96873165927e-05
+UniRef50_B7IAM2		0.000151558571295	0.00704558159001	0.00689402301871
+UniRef50_UPI00047272A3	glycerol 3 phosphate ABC transporter permease	8.41012091505e-06	5.47429574e-05	4.6332836485e-05
+UniRef50_UPI00026277B1	transketolase	3.19789987133e-05	1.21030752019e-05	-1.98759235114e-05
+UniRef50_Q2S0W2	Chorismate synthase	1.53830283946e-05	0.000196792685804	0.000181409657409
+UniRef50_P56935	3 isopropylmalate dehydratase small subunit	1.23925986335e-05	4.2051831604e-05	2.96592329705e-05
+UniRef50_D4HFH3	Exo alpha sialidase	7.88619753888e-05	0.00553648653826	0.00545762456287
+UniRef50_H6PCX4	Competence protein	2.47052537863e-05	3.50718613214e-05	1.03666075351e-05
+UniRef50_UPI00047A82E9	hemolysin	9.85330131688e-06	1.16352512456e-05	1.78194992872e-06
+UniRef50_A8GIW3	Probable L aspartate dehydrogenase	0.000607500965711	0.00491522942652	0.00430772846081
+UniRef50_Q9HWI0	D alanine  D alanine ligase A	0.000109099996778	0.000176898936641	6.7798939863e-05
+UniRef50_P49915	GMP synthase [glutamine hydrolyzing]	5.92527127152e-06	4.08194273999e-06	-1.84332853153e-06
+UniRef50_UPI0002375EBD	glucose methanol choline oxidoreductase, partial	0.000100286987634	2.82752259409e-05	-7.20117616931e-05
+UniRef50_C0B1I9	Formate transporter FocA	5.26823655275e-05	0.000207001811578	0.00015431944605
+UniRef50_D2NT48	Predicted thioesterase involved in non ribosomal peptide biosynthesis	1.99460651741e-06	2.98628609691e-05	2.78682544517e-05
+UniRef50_A6LSK6	Thiamine pyrophosphokinase	0.000201147063333	0.000334952784714	0.000133805721381
+UniRef50_UPI000399CFD2	type 12 methyltransferase	5.59844086286e-05	0.000246000345246	0.000190015936617
+UniRef50_R9ZNA1		0.000134177484187	0.000219838738361	8.5661254174e-05
+UniRef50_UPI0004213A08	chemotaxis protein CheD	0.000107165920875	2.56906378746e-05	-8.14752830004e-05
+UniRef50_D3HDQ8		0.00377767319777	0.00049178525602	-0.00328588794175
+UniRef50_A7X154	Probable heme iron transport system permease protein IsdF	0.0116631921483	0.00269081729806	-0.00897237485024
+UniRef50_UPI0002651C73	PREDICTED	3.38730729961e-06	7.24867735798e-06	3.86137005837e-06
+UniRef50_E8SK39	DNA polymerase III polC type	0.0202521881527	0.00476534590846	-0.0154868422442
+UniRef50_UPI00047262F8	hypothetical protein	1.23939100537e-05	8.59676683724e-06	-3.79714321646e-06
+UniRef50_P07874	Alginate biosynthesis protein AlgA	0.000370299763942	0.000301461818483	-6.8837945459e-05
+UniRef50_P50648	Ribonucleoside diphosphate reductase large subunit	2.67519971284e-06	0.00031384744164	0.000311172241927
+UniRef50_B1XZJ7	Pseudouridine synthase	0.000136935667056	0.00271019692285	0.00257326125579
+UniRef50_UPI0003B7021A	amino acid transporter	1.47664806801e-05	0.00164015197748	0.0016253854968
+UniRef50_UPI0003C0FDA1	PREDICTED	2.36845131039e-06	6.9681995618e-05	6.73135443076e-05
+UniRef50_UPI0003B40AC9	hypothetical protein	1.77440827614e-06	7.91465092019e-05	7.73721009258e-05
+UniRef50_UPI00047E50BD	hypothetical protein	4.46544416793e-06	7.9872210025e-06	3.52177683457e-06
+UniRef50_Q13V14	tRNA  ) methyltransferase	0.000757043994216	0.00425614902498	0.00349910503076
+UniRef50_L0KY29		0.000523764892083	0.000271763839138	-0.000252001052945
+UniRef50_Q9RWG0		0.000194946102928	0.0431041686099	0.042909222507
+UniRef50_Q9RWG3		0.000201864165162	0.0314751495341	0.0312732853689
+UniRef50_E6MYP0		7.12431646305e-05	4.2622339057e-05	-2.86208255735e-05
+UniRef50_Q83GH8	Peptide deformylase	9.29552743465e-06	6.6213311198e-05	5.69177837633e-05
+UniRef50_W5XCC5	Putative ferric uptake regulator	0.000149178504816	1.98364848386e-05	-0.000129342019977
+UniRef50_E5U1W5		4.29596378146e-05	0.000112855963559	6.98963257444e-05
+UniRef50_G7ZUI4		0.000139886427018	5.4990409522e-05	-8.4896017496e-05
+UniRef50_D1WQ15	KxYKxGKxW signal domain protein	3.91853967615e-05	6.23908532181e-05	2.32054564566e-05
+UniRef50_C7CKD2		1.44772032955e-05	2.45047385743e-05	1.00275352788e-05
+UniRef50_UPI00046E9E57	hypothetical protein	3.59942994122e-05	5.41165506057e-05	1.81222511935e-05
+UniRef50_UPI0003D0659C	50S ribosomal protein L6	0.000268032457028	0.000213389517458	-5.464293957e-05
+UniRef50_O27801	Ribosomal RNA large subunit methyltransferase E	0.00243723585527	0.000804397744613	-0.00163283811066
+UniRef50_A0A013I2H1		1.67251483267e-05	2.28521841338e-05	6.1270358071e-06
+UniRef50_E6MXU9	Bacterial regulatory helix turn helix , lysR family protein	0.000143530794236	0.00218035481854	0.0020368240243
+UniRef50_Q1MK98		3.84901086217e-05	4.85734682634e-05	1.00833596417e-05
+UniRef50_A4CFF4	Excinuclease ABC subunit C	3.8447429531e-05	5.07870386009e-05	1.23396090699e-05
+UniRef50_F7ZCB4		1.93614138063e-05	9.09200088522e-06	-1.02694129211e-05
+UniRef50_A5UJ70	Peptide methionine sulfoxide reductase, PMSR 	0.000873566966136	0.000467838431596	-0.00040572853454
+UniRef50_G4QEC1	Na+ H+ antiporter, NhaC family protein	0.00603024692687	0.0022571317283	-0.00377311519857
+UniRef50_UPI0003B48120	aldehyde activating protein	2.73946716222e-05	3.08713727503e-05	3.4767011281e-06
+UniRef50_H8FT83		0.000478836744996	0.000301847681352	-0.000176989063644
+UniRef50_UPI00046A638F	hypothetical protein	0.000108231213167	6.74619754926e-05	-4.07692376744e-05
+UniRef50_F0P106	Thioesterase superfamily protein	1.59595002903e-05	0.000616597096296	0.000600637596006
+UniRef50_W9C3F0		1.28447102352e-05	1.97437241251e-05	6.8990138899e-06
+UniRef50_E1YHR1		5.50747510539e-06	5.57491348976e-05	5.02416597922e-05
+UniRef50_UPI0002B46230	PREDICTED	3.75539143746e-06	1.48570686071e-05	1.11016771696e-05
+UniRef50_UPI0001BF6B99	90S preribosome component RRP12	1.84742307319e-07	4.34052266133e-06	4.15578035401e-06
+UniRef50_UPI0003B36FDF	histidinol dehydrogenase	3.84907475883e-06	5.89162415438e-06	2.04254939555e-06
+UniRef50_A6LU03		0.000250884475769	0.00152826718443	0.00127738270866
+UniRef50_UPI00026282A2	ATP dependent RNA helicase	5.95834247549e-06	5.79358421468e-05	5.19774996713e-05
+UniRef50_H9UXV0	Glycerol 3 phosphate regulon repressor	0.000186874251907	0.000297298696507	0.0001104244446
+UniRef50_T5BIS1		1.44105136951e-06	1.05731101751e-05	9.13205880559e-06
+UniRef50_A6LZX4		0.000254204442373	0.00116004954054	0.000905845098167
+UniRef50_D7GEA9	Regulatory protein	3.36201322807e-06	3.06219016011e-05	2.7259888373e-05
+UniRef50_Q1GEZ2	Phosphoribosyl ATP pyrophosphatase	0.000304933388166	3.20112924269e-05	-0.000272922095739
+UniRef50_A7HK75	Phospho N acetylmuramoyl pentapeptide transferase	6.86348620862e-06	1.66973283771e-05	9.83384216848e-06
+UniRef50_Z9UWI7		7.45259444518e-05	0.000304342777435	0.000229816832983
+UniRef50_UPI0003823FAA	hypothetical protein	1.0848406435e-05	3.6822934336e-05	2.5974527901e-05
+UniRef50_A6LV76	ABC transporter related	0.000358530744195	0.00186169977712	0.00150316903292
+UniRef50_F3H836	ABC transport protein, inner membrane component 	0.000126373116261	4.97905254017e-05	-7.65825908593e-05
+UniRef50_Q99UN8	Malonyl CoA acyl carrier protein transacylase	0.0234592647232	0.00790678632742	-0.0155524783958
+UniRef50_J3ML95		8.93941551785e-06	8.01036548357e-05	7.11642393178e-05
+UniRef50_Q8PZP6	NH dependent NAD(+) synthetase	3.24588708574e-05	8.86118586089e-06	-2.35976849965e-05
+UniRef50_G7M7P0	Pseudouridine synthase	0.000516252560877	0.00162564782028	0.0011093952594
+UniRef50_UPI00006CF5D0	Ribonucleotide reductase, barrel domain containing protein	7.35054378711e-07	4.03192371522e-05	3.95841827735e-05
+UniRef50_B2V1J4	Oligoendopeptidase F	0.000614246483524	0.00174180126492	0.0011275547814
+UniRef50_X0SDU2	Marine sediment metagenome DNA, contig	1.37992001787e-05	0.00010637778906	9.25785888813e-05
+UniRef50_A6LWR2	Pentapeptide repeat protein	0.000144630647073	0.000355424104548	0.000210793457475
+UniRef50_I9K9U7		7.42013673445e-05	6.86071883845e-05	-5.59417896e-06
+UniRef50_B8GPV2	Shikimate kinase	2.82490787016e-05	0.00494369666925	0.00491544759055
+UniRef50_B1MWT5	Predicted permease	0.00389650307883	0.00273138139925	-0.00116512167958
+UniRef50_K7S768	GHMP kinase, N terminal domain containing protein	0.000159726088367	0.00786419720344	0.00770447111507
+UniRef50_UPI00037B6D4D	hypothetical protein	0.000593569188326	0.000405854631615	-0.000187714556711
+UniRef50_A0A058Z9B5		0.000126521802953	4.77452129912e-05	-7.87765899618e-05
+UniRef50_A3WB27		0.00038153739661	0.000314341301456	-6.7196095154e-05
+UniRef50_UPI0003B50A22	amino acid lyase	2.33178989758e-05	6.70398064063e-05	4.37219074305e-05
+UniRef50_Q9JVF4	Bis tetraphosphatase, symmetrical	2.30308989982e-05	0.000884967415111	0.000861936516113
+UniRef50_S3ZBV7		5.5134272954e-05	3.46436966563e-06	-5.16699032884e-05
+UniRef50_K1ZWF0	Dihydroorotate dehydrogenase 	0.000291090554801	0.000951539999565	0.000660449444764
+UniRef50_A6M087	AraC type transcriptional regulator domain protein	0.000377275693748	0.0017729545956	0.00139567890185
+UniRef50_UPI0003631244	hypothetical protein	9.73237400121e-06	7.69874949636e-06	-2.03362450485e-06
+UniRef50_A7X1H5		0.0184345281928	0.00428859054347	-0.0141459376493
+UniRef50_D6UEI8		0.00246500185851	0.00212280476168	-0.00034219709683
+UniRef50_M0VCY1		8.97129956613e-06	0.000261158118716	0.00025218681915
+UniRef50_C1MV00	Predicted protein	7.18610528696e-05	1.21608864946e-05	-5.9700166375e-05
+UniRef50_Q0TRG3	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0123549807169	0.00568962191159	-0.00666535880531
+UniRef50_UPI000369953F	resolvase	6.01536219842e-05	0.00013987258286	7.97189608758e-05
+UniRef50_F0RM02	Metallophosphoesterase	0.000850538671587	0.0601819888457	0.0593314501741
+UniRef50_UPI0004633E17	dTDP 4 dehydrorhamnose 3,5 epimerase	1.51788923369e-05	2.6278356964e-05	1.10994646271e-05
+UniRef50_UPI00037B304C	hypothetical protein	7.13265152469e-06	2.84238792452e-05	2.12912277205e-05
+UniRef50_UPI000463C82A	aldehyde reductase	1.56427319225e-05	1.83284496111e-05	2.6857176886e-06
+UniRef50_Q4L9Z0	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0169082617177	0.00219941983288	-0.0147088418848
+UniRef50_Q56110	Outer membrane protein S1	0.00507547013477	0.00119738713923	-0.00387808299554
+UniRef50_B7H4N1		0.000222442599406	0.0076544063069	0.00743196370749
+UniRef50_UPI00031566CC	hypothetical protein	6.99237468115e-06	6.63175388527e-05	5.93251641716e-05
+UniRef50_UPI0003647B3B	50S ribosomal protein L5	0.000202434552792	0.000258215085618	5.5780532826e-05
+UniRef50_S9R870		4.7284257471e-05	7.25058753731e-06	-4.00336699337e-05
+UniRef50_D6SE47		0.0211952411663	0.00424967115831	-0.016945570008
+UniRef50_Q9FS88	2 methylacyl CoA dehydrogenase, mitochondrial	0.00019904460203	0.00595523740522	0.00575619280319
+UniRef50_UPI0004691E44	hypothetical protein	2.85920087172e-06	5.47493878032e-06	2.6157379086e-06
+UniRef50_A9M410		0.00106835657223	0.0104669733969	0.00939861682467
+UniRef50_Q1QE72	Diacylglycerol O acyltransferase	9.58086266163e-05	0.00606794619042	0.0059721375638
+UniRef50_F0KF01		0.000202949456367	0.00525753843661	0.00505458898024
+UniRef50_UPI000469EC64	peptidase S11	5.36367191231e-06	2.41231727767e-05	1.87595008644e-05
+UniRef50_UPI0004638197	pseudouridine synthase	3.31864683741e-06	8.68862368679e-06	5.36997684938e-06
+UniRef50_UPI00047D4A1B	3,4 dihydroxy 2 butanone 4 phosphate synthase	4.24200620789e-05	6.48154980876e-06	-3.59385122701e-05
+UniRef50_H8YVR6	Mating pair stabilization protein TraN	2.01678828869e-06	3.52323178377e-06	1.50644349508e-06
+UniRef50_Q92E26	Lin0635 protein	4.29742528301e-05	0.0026146944976	0.00257172024477
+UniRef50_UPI0004787C34	D ala D ala transporter subunit	3.27818645732e-05	7.88507486297e-05	4.60688840565e-05
+UniRef50_UPI0003B75E15	ABC transporter	3.13321171835e-05	3.07347915621e-05	-5.973256214e-07
+UniRef50_W4NLY9	Mobile element protein	4.6002034962e-05	1.85300634716e-05	-2.74719714904e-05
+UniRef50_E9AHU2	Proteophosphoglycan 5	4.16420175687e-05	0.000123403840882	8.17618233133e-05
+UniRef50_Q9RR77	Cytochrome c oxidase, subunit I	0.000359404236973	0.0633286180456	0.0629692138086
+UniRef50_A6M3F7	Sigma 54 factor, interaction domain containing protein	0.000281661293276	0.00168688576792	0.00140522447464
+UniRef50_P0AA77	D galactonate transporter	0.000836481684023	0.00021848338239	-0.000617998301633
+UniRef50_X0SPN8	Marine sediment metagenome DNA, contig	3.23592367072e-06	2.09756754314e-05	1.77397517607e-05
+UniRef50_M2TDC8		2.37689562817e-05	4.2721621462e-05	1.89526651803e-05
+UniRef50_K6MT38		0.00142910137732	0.0201678928387	0.0187387914614
+UniRef50_F2SGG3	Glutathione S transferase	0.000110936825073	2.03899444673e-05	-9.05468806057e-05
+UniRef50_H7CWV1	Phage shock protein A	0.000349524063753	0.00289098368658	0.00254145962283
+UniRef50_M9RNM4		0.00338826409766	4.30363478161e-05	-0.00334522774984
+UniRef50_A5ULI2	tRNA pseudouridine synthase A	0.003001306077	0.000210689682662	-0.00279061639434
+UniRef50_UPI00025578F4	dihydroxy acid dehydratase, partial	7.31610814116e-06	4.75614187949e-05	4.02453106537e-05
+UniRef50_B3GZA0	Siroheme synthase	0.00583420616867	0.00501592659389	-0.00081827957478
+UniRef50_K7ZDL1	DeoC LacD aldolase family protein	0.0126209664772	0.002568575884	-0.0100523905932
+UniRef50_UPI00034553FE	hypothetical protein	7.48360125642e-06	1.17326347229e-05	4.24903346648e-06
+UniRef50_C1MKI4	Predicted protein 	1.65434941078e-05	8.34313422084e-06	-8.20035988696e-06
+UniRef50_C0Z7W5	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0218614577609	0.0049415734419	-0.016919884319
+UniRef50_UPI000303E0FF	hypothetical protein	4.02165015633e-05	5.55832865067e-05	1.53667849434e-05
+UniRef50_Q5NYZ3	Nitrate nitrite antiporter	1.07389023022e-05	5.55199154517e-06	-5.18691075703e-06
+UniRef50_Q3JWL2		7.7364373451e-05	0.000139328915975	6.1964542524e-05
+UniRef50_N7V1R0		2.185632817e-05	2.95294652892e-05	7.6731371192e-06
+UniRef50_A4VMQ2		4.85315906147e-05	0.000211124935956	0.000162593345341
+UniRef50_W6KAJ6	BRO family, N terminal domain protein. Phage related DNA binding protein	2.00278823065e-05	1.84618745136e-05	-1.5660077929e-06
+UniRef50_G8AH05		3.35979929766e-05	6.85332758875e-05	3.49352829109e-05
+UniRef50_Q6GG70	GTP pyrophosphokinase	0.0214074686727	0.00397557495064	-0.0174318937221
+UniRef50_UPI0003B47D61	tRNA delta isopentenylpyrophosphate transferase	6.22345282197e-06	1.62077662881e-05	9.98431346613e-06
+UniRef50_B7Z712	60 kDa heat shock protein, mitochondrial	2.47096348245e-05	4.74255752308e-05	2.27159404063e-05
+UniRef50_T5X346	Sensor protein evgS	0.00314502537503	0.00114906057447	-0.00199596480056
+UniRef50_G4LPB8	ATP binding permease fusion ABC transporter	0.000296815460704	0.000345326751535	4.8511290831e-05
+UniRef50_Q6C5E4	YALI0E18766p	8.30797413508e-06	1.30546578664e-05	4.74668373132e-06
+UniRef50_A6V6R4		0.00020920330863	0.000244400031881	3.5196723251e-05
+UniRef50_Q89AK1	Glyceraldehyde 3 phosphate dehydrogenase	4.37068682341e-05	2.47709415116e-05	-1.89359267225e-05
+UniRef50_Q5HIB4	Serine aspartate repeat containing protein C	0.0202018905514	0.00446505189352	-0.0157368386579
+UniRef50_UPI0003F08AB5	PREDICTED	0.000148923402963	8.62405358341e-05	-6.26828671289e-05
+UniRef50_B1TFY4	LigA	0.000707227881682	0.000184492453673	-0.000522735428009
+UniRef50_Q9RS49	Amino acid ABC transporter, periplasmic amino acid binding protein	0.000920723343509	0.0557400564622	0.0548193331187
+UniRef50_V8BEZ6		6.7173661447e-05	6.9090248326e-05	1.916586879e-06
+UniRef50_P0ACL6	Glc operon transcriptional activator	0.00432523640196	0.00247363367397	-0.00185160272799
+UniRef50_U2SGB1	Imelysin 	1.73381625347e-05	0.000111237918984	9.38997564493e-05
+UniRef50_M1N514		0.000269359016931	0.000623549449316	0.000354190432385
+UniRef50_B4RCM7	NADH quinone oxidoreductase subunit C	0.0160166668845	0.00464350995767	-0.0113731569268
+UniRef50_UPI00040C5C40	multidrug ABC transporter ATPase	1.08102005534e-05	2.70939078355e-05	1.62837072821e-05
+UniRef50_A0A020WTM6	6 phospho beta galactosidase	0.00328654549774	0.000653259279449	-0.00263328621829
+UniRef50_UPI00016C5625	Putative bacteriophage holin protein	8.714161401e-05	4.53558919806e-05	-4.17857220294e-05
+UniRef50_Q31I51	Zinc import ATP binding protein ZnuC	1.82043894177e-05	3.38090238449e-05	1.56046344272e-05
+UniRef50_V4R6H1	ATPase AAA	2.48111105099e-05	3.75217986315e-05	1.27106881216e-05
+UniRef50_Q1CUH1	Ketol acid reductoisomerase	4.36521825183e-06	0.00340818401642	0.00340381879817
+UniRef50_D3E138		0.00319872884559	0.00194763281429	-0.0012510960313
+UniRef50_Q7UNN9	Bifunctional protein FolD	2.65767436071e-05	0.00357762756323	0.00355105081962
+UniRef50_U6MKZ6		8.06943107132e-06	5.32514598488e-07	-7.53691647283e-06
+UniRef50_I0C1R4		0.00159420992346	0.000744495895456	-0.000849714028004
+UniRef50_Q04E86	DNA directed RNA polymerase subunit beta	0.0185767700226	0.0145840021491	-0.0039927678735
+UniRef50_P14407	Fumarate hydratase class I, anaerobic	0.00292233837971	0.00414689287694	0.00122455449723
+UniRef50_Q74CZ6	5 nucleotidase SurE	0.000298801574284	0.00787581653699	0.00757701496271
+UniRef50_UPI00035047B5	PREDICTED	0.000370510237563	0.000237502126784	-0.000133008110779
+UniRef50_H8MLE9	Pirin family protein	2.81571081211e-05	6.43233306495e-06	-2.17247750562e-05
+UniRef50_B0VC75		0.000849822006764	0.0103289882688	0.00947916626204
+UniRef50_X5DWG5	ABC 2 transporter family protein	0.0118263476215	0.00247621423248	-0.00935013338902
+UniRef50_Q6A8C6	ATP synthase gamma chain	0.000255058100582	0.00249056800984	0.00223550990926
+UniRef50_R7YLT4		0.000231981179873	3.05484111531e-05	-0.00020143276872
+UniRef50_UPI00037397F4	hypothetical protein	1.15962366269e-05	6.30757280599e-05	5.1479491433e-05
+UniRef50_P0AA72		0.00235114999634	0.000394141203652	-0.00195700879269
+UniRef50_A4EAZ9		4.58239276806e-05	1.07580792655e-05	-3.50658484151e-05
+UniRef50_UPI0004653BA0	hypothetical protein	0.000335633263467	0.00019521068067	-0.000140422582797
+UniRef50_UPI00045E6087	hypothetical protein	8.75444887175e-05	0.000160937271259	7.33927825415e-05
+UniRef50_UPI000378C160	hypothetical protein	1.15329886117e-05	2.24450584983e-05	1.09120698866e-05
+UniRef50_K0LJV9		0.00301866158195	0.00272409348682	-0.00029456809513
+UniRef50_Q67N09	Shikimate kinase	3.46577290451e-05	3.95558399668e-05	4.8981109217e-06
+UniRef50_UPI00036A8298	hypothetical protein	2.00463914486e-05	4.9845087809e-05	2.97986963604e-05
+UniRef50_E3GX37	H+transporting two sector ATPase C subunit	0.00190124259117	0.00104229425363	-0.00085894833754
+UniRef50_UPI000382EE91	hypothetical protein	2.68395701029e-06	9.61879113497e-05	9.35039543394e-05
+UniRef50_H9K6K8		3.20250738869e-05	6.21586566608e-05	3.01335827739e-05
+UniRef50_J0LGW4		0.000275413787398	7.40842907259e-05	-0.000201329496672
+UniRef50_A6LWE8	Ribonucleoside triphosphate reductase, adenosylcobalamin dependent	0.00024613554059	0.000987560894937	0.000741425354347
+UniRef50_Q1N9J0	Plasmid partitioning protein RepAa1	3.16161271096e-05	2.35774287104e-05	-8.0386983992e-06
+UniRef50_UPI0003AE07B3	PREDICTED	0.000107721447032	7.00213515803e-05	-3.77000954517e-05
+UniRef50_A9WM93	Uracil DNA glycosylase	0.000709340724343	0.00665775573545	0.00594841501111
+UniRef50_A5IW30		0.0181019545967	0.00676680427745	-0.0113351503192
+UniRef50_UPI0003D0C408	PREDICTED	3.21738413227e-05	8.16265423969e-05	4.94527010742e-05
+UniRef50_X4ZB59	EAL domain protein	6.29813973851e-06	5.83736416967e-05	5.20755019582e-05
+UniRef50_UPI0001B46820	GTPase ObgE, partial	3.68909666183e-05	0.000450304867202	0.000413413900584
+UniRef50_UPI000463A064	L asparagine permease	5.8560281144e-06	1.36520119822e-05	7.7959838678e-06
+UniRef50_UPI00035FE410	peptide ABC transporter permease	6.84922962506e-05	0.000167176785893	9.86844896424e-05
+UniRef50_Q5YS08	Ribonuclease 3	2.52205637789e-05	6.93142376719e-05	4.4093673893e-05
+UniRef50_A9AC17	L carnitine dehydratase bile acid inducible protein F	0.00309243013243	0.00795824514871	0.00486581501628
+UniRef50_P33919		0.00382317897368	0.000977286184154	-0.00284589278953
+UniRef50_H1UL22	Dehydrogenase	0.00019561109237	2.84875484223e-05	-0.000167123543948
+UniRef50_UPI0004782043	AsnC family transcriptional regulator	0.00018988034278	0.00011683360775	-7.304673503e-05
+UniRef50_M9SF47		0.000251657325899	0.000393755606923	0.000142098281024
+UniRef50_UPI000470709D	hypothetical protein	5.82702939008e-05	7.18725314652e-05	1.36022375644e-05
+UniRef50_G8NUY5	Beta lactamase domain protein	3.57755165396e-06	0.00018748512452	0.000183907572866
+UniRef50_A6LXY2	Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.000343626321018	0.000909865031755	0.000566238710737
+UniRef50_P24734	HTH type transcriptional activator AmpR	0.00896469061121	0.00136719685808	-0.00759749375313
+UniRef50_V6PIL4	2 isopropylmalate synthase	0.00306085241467	0.000452015365101	-0.00260883704957
+UniRef50_O07599		0.000306692225712	0.00161501013008	0.00130831790437
+UniRef50_C7ZT42	DNA binding protein	0.0167421611663	0.00304410231283	-0.0136980588535
+UniRef50_C9CRT7		0.000525551496523	0.000252931023886	-0.000272620472637
+UniRef50_P31063		0.000275537218136	0.00043007287164	0.000154535653504
+UniRef50_B1Z5H1	Secretion protein HlyD family protein	0.00130745224531	0.000998317946022	-0.000309134299288
+UniRef50_P0ABH3	Cell division protein FtsA	0.00337080064067	0.000766383440838	-0.00260441719983
+UniRef50_B9JPQ6		1.95134207401e-05	0.000462184441305	0.000442671020565
+UniRef50_UPI0003B69DC4	flagellar P ring protein FlgI	1.20122179613e-05	1.23485711816e-05	3.363532203e-07
+UniRef50_F3X2S2		4.59759012182e-06	9.20508903668e-05	8.7453300245e-05
+UniRef50_R1D4S7		0.000781124102474	0.000504879154655	-0.000276244947819
+UniRef50_A6M1M3		0.000178521218719	0.00109088185213	0.000912360633411
+UniRef50_Q6AA07		8.65830399895e-05	0.00374771682532	0.00366113378533
+UniRef50_UPI0002895CF3	amino acid carrier protein, partial	3.07527779269e-06	6.57245516558e-05	6.26492738631e-05
+UniRef50_Q4L5Y3	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.014158780232	0.00699647351658	-0.00716230671542
+UniRef50_H5VFC5	GTP binding protein TypA BipA	0.000309734987058	0.00092465194711	0.000614916960052
+UniRef50_S8FC16		9.02169197517e-06	8.93450055413e-07	-8.12824191976e-06
+UniRef50_Q8X8V7		0.00216837480698	0.000689827503621	-0.00147854730336
+UniRef50_E8SG33	Chromosome partition protein Smc	0.01119904703	0.00408161349581	-0.00711743353419
+UniRef50_Q4L928	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0284514376016	0.00283334220864	-0.025618095393
+UniRef50_Q9RUV2	Superoxide dismutase [Mn]	8.98827358224e-06	0.0432369876598	0.0432279993862
+UniRef50_Q59092	3 carboxy cis,cis muconate cycloisomerase	0.000116388280223	0.00755411772186	0.00743772944164
+UniRef50_M9RIH4	TAXI family TRAP transporter periplasmatic solute binding protein	3.83686424031e-05	6.58205425613e-05	2.74519001582e-05
+UniRef50_C4LED9	Transcriptional regulator, LuxR family	0.00126490570685	0.000453171414615	-0.000811734292235
+UniRef50_C5MZG2	Molybdopterin guanine dinucleotide biosynthesis protein B	0.0205282096216	0.00326447077521	-0.0172637388464
+UniRef50_UPI00036FB829	hypothetical protein	3.83276617277e-05	3.4514050012e-05	-3.8136117157e-06
+UniRef50_N1K138	FtsK SpoIIIE family protein	0.000192896796686	0.0024574042677	0.00226450747101
+UniRef50_A5UMP2		0.000978079377288	0.000381875049823	-0.000596204327465
+UniRef50_S1IPQ9		0.0032416877403	0.00139545809872	-0.00184622964158
+UniRef50_P58054	Hydrolase YbeM	0.00268118851425	0.000867621868769	-0.00181356664548
+UniRef50_F5RN18	Prophage terminase large subunit	1.13869694362e-05	8.96154016274e-05	7.82284321912e-05
+UniRef50_P09127	Putative uroporphyrinogen III C methyltransferase	0.00334090812159	0.00168626546733	-0.00165464265426
+UniRef50_B9KSC1		0.00142630939619	0.000569742758434	-0.000856566637756
+UniRef50_A3PNN6	Polysaccharide biosynthesis protein CapD	0.0105844402743	0.00344667600007	-0.00713776427423
+UniRef50_B3PD00	Capsular polysaccharide synthesis	3.56062356243e-05	2.18696537434e-05	-1.37365818809e-05
+UniRef50_UPI00028A40F7	thymidylate synthase	0.000111203512763	0.00086195914914	0.000750755636377
+UniRef50_A6H086	Potassium transporting ATPase A chain	1.50854074449e-05	0.00400522737693	0.00399014196949
+UniRef50_P66878	Cobalamin biosynthesis protein CobIJ	2.18934684314e-05	1.0563013675e-05	-1.13304547564e-05
+UniRef50_Q1GMI4	HTH type transcriptional regulator BetI	0.00224099555763	0.000624343953484	-0.00161665160415
+UniRef50_R6XE72		0.000182360381085	0.00239078308213	0.00220842270105
+UniRef50_UPI000369508B	hypothetical protein	3.14306742076e-05	2.09627932915e-05	-1.04678809161e-05
+UniRef50_UPI0004648EC6	beta ketoadipyl CoA thiolase, partial	5.67598216689e-06	0.000263468450984	0.000257792468817
+UniRef50_A4VWG8	Transcriptional antiterminator	0.000870876505477	0.0038648993834	0.00299402287792
+UniRef50_J9NVM5		0.000317615403647	8.56114941001e-05	-0.000232003909547
+UniRef50_Q96255	Phosphoserine aminotransferase, chloroplastic	0.00128321897074	0.00228206884437	0.00099884987363
+UniRef50_Q8Z9J5	Ribosomal large subunit pseudouridine synthase A	0.00407451511282	0.000294614182339	-0.00377990093048
+UniRef50_H6NE34		0.000126083817428	1.72353724561e-05	-0.000108848444972
+UniRef50_I7ENJ2		0.00127049820569	0.000937513349825	-0.000332984855865
+UniRef50_UPI00047AC07F	hypothetical protein	1.79504123901e-05	3.76411731093e-05	1.96907607192e-05
+UniRef50_UPI00037F808C	hypothetical protein	5.66961179638e-06	3.95169639974e-05	3.3847352201e-05
+UniRef50_UPI0003B4238D	acyl CoA dehydrogenase	4.23360286583e-06	3.97437736944e-05	3.55101708286e-05
+UniRef50_A0A024DFE0	Membrane protein	0.00649501524262	0.00124521318026	-0.00524980206236
+UniRef50_E6MXN3	Bacteriophage Mu I protein GP32	0.00011069970347	0.00377147114122	0.00366077143775
+UniRef50_D7GDI2	Glycogen debranching enzyme GlgX Isoamylase	0.000209928833228	0.00604758440643	0.0058376555732
+UniRef50_Q018U5	COG0031	0.00219675561832	0.000927724786466	-0.00126903083185
+UniRef50_A3M5U8	Glu tRNA amidotransferase	0.000582600360026	0.00686477668204	0.00628217632201
+UniRef50_B9DNN7	Aminomethyltransferase	0.00914115016219	0.00522048673461	-0.00392066342758
+UniRef50_P76470	Inner membrane transport protein RhmT	0.00437819412686	0.000930064678071	-0.00344812944879
+UniRef50_UPI0002000D3D	DeoR family transcriptional regulator	0.000198150867052	0.000372785016686	0.000174634149634
+UniRef50_S7VF17		2.2587823641e-05	2.75024297817e-05	4.9146061407e-06
+UniRef50_Q81K13	UDP N acetylglucosamine 1 carboxyvinyltransferase 1	1.69984866032e-05	8.37543625088e-05	6.67558759056e-05
+UniRef50_Q9RXY2		0.000152622367462	0.067113292039	0.0669606696715
+UniRef50_Q0TUR6	Beta galactosidase Pbg	0.000477938266819	0.00212120636312	0.0016432680963
+UniRef50_A7ZUJ0	Pantothenate kinase	0.00398103938752	0.000452305822341	-0.00352873356518
+UniRef50_Q6LSD6	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	9.33443576863e-06	2.74349808578e-06	-6.59093768285e-06
+UniRef50_P27840		0.00312804233966	0.000504814880674	-0.00262322745899
+UniRef50_Q4L783	UPF0478 protein SH1183	0.0129183532718	0.0102050111044	-0.0027133421674
+UniRef50_F1PYJ5		9.01117188233e-07	0.000102201738892	0.000101300621704
+UniRef50_UPI00021A59F3	PREDICTED	6.59175382665e-05	3.05040399008e-05	-3.54134983657e-05
+UniRef50_Q2FVY9	HTH type transcriptional regulator SarV	0.0168220999643	0.00377878829936	-0.0130433116649
+UniRef50_Q2S4I8	Biotin synthase	4.7621694114e-06	5.7193065787e-05	5.24308963756e-05
+UniRef50_W8TJK1		5.88725873443e-06	2.03083448293e-05	1.44210860949e-05
+UniRef50_B5E267	Ribosome binding factor A	0.00296405241928	0.000535317290393	-0.00242873512889
+UniRef50_E0WIF5	CagZ protein	0.000834795787505	0.00344756603461	0.00261277024711
+UniRef50_B5Y8S3	Transcription termination factor Rho	0.000197982161991	0.00426045117553	0.00406246901354
+UniRef50_D5V5Y4	Hemolysin type calcium binding region	2.55320873603e-06	8.45993003455e-07	-1.70721573258e-06
+UniRef50_Q5FNA2	Transcriptional repressor NrdR	0.00576095190673	0.000397287047353	-0.00536366485938
+UniRef50_D7FSA3		0.00106198297138	0.000329962799096	-0.000732020172284
+UniRef50_UPI00035ED229	hypothetical protein	2.75187199693e-05	3.23876030697e-06	-2.42799596623e-05
+UniRef50_B5YDT2	D tyrosyl tRNA deacylase	0.00330452693409	0.00747744939336	0.00417292245927
+UniRef50_V9X558		0.0027262416657	0.000358955293068	-0.00236728637263
+UniRef50_E6K0A1	GroES like protein	0.00325834409436	0.00118599040039	-0.00207235369397
+UniRef50_B5XY59	Dihydroorotate dehydrogenase 	0.00243255812297	1.77869503976e-05	-0.00241477117257
+UniRef50_UPI00037BE1B4	hypothetical protein	2.29578583471e-05	6.93144360538e-06	-1.60264147417e-05
+UniRef50_A6LXY0	D galactose binding periplasmic protein	0.000237062033318	0.000168591839309	-6.8470194009e-05
+UniRef50_UPI0003800F45	hypothetical protein, partial	1.66972765658e-05	5.90526863844e-05	4.23554098186e-05
+UniRef50_E3A0J6		0.00211674386272	0.000383806722049	-0.00173293714067
+UniRef50_UPI000476452D	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.03588972662e-05	4.31104507748e-05	3.27515535086e-05
+UniRef50_A0A023S0J1	Sodium	0.000677184245367	0.00952386807991	0.00884668383454
+UniRef50_Q0FNM1		5.41260145744e-06	1.08677490104e-05	5.45514755296e-06
+UniRef50_G8AZY0		6.58176502531e-05	2.37447774224e-05	-4.20728728307e-05
+UniRef50_UPI0003787256	hypothetical protein	8.37676771772e-06	1.47905367657e-05	6.41376904798e-06
+UniRef50_Q094V3		4.1498880895e-05	5.25822912724e-05	1.10834103774e-05
+UniRef50_UPI00036D8B59	hypothetical protein	0.000111349102001	3.31189048694e-05	-7.82301971316e-05
+UniRef50_Q83SQ3	Glutathione regulated potassium efflux system protein KefC	0.00139778165811	0.000210094264896	-0.00118768739321
+UniRef50_Q3J5H6	Bifunctional uridylyltransferase uridylyl removing enzyme	0.00595333929402	0.00283608266032	-0.0031172566337
+UniRef50_Q48335	Glyceraldehyde 3 phosphate dehydrogenase	0.0137980454389	0.00453567906558	-0.00926236637332
+UniRef50_UPI0003B4462C	hypothetical protein, partial	3.03877483906e-05	3.40130587235e-05	3.6253103329e-06
+UniRef50_A8Z4R9	Bacteriophage integrase	0.0145715884757	0.0043042838889	-0.0102673045868
+UniRef50_Q8X9Z2	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.00571900380746	0.00112612177666	-0.0045928820308
+UniRef50_W5W9B3		9.02907257519e-05	1.92865753007e-05	-7.10041504512e-05
+UniRef50_P0ADV3	Lipopolysaccharide export system protein LptA	0.00360963106788	0.000969245214967	-0.00264038585291
+UniRef50_A5UN28	Biopolymer transport protein	0.00305111682171	0.00216182931077	-0.00088928751094
+UniRef50_A3PHB1		0.0282865972439	0.00101711841837	-0.0272694788255
+UniRef50_Q8T137	Glutathione reductase	0.00247083372516	0.000274129199397	-0.00219670452576
+UniRef50_P94357	UPF0750 membrane protein YxkD	0.0123248103717	0.00535017271149	-0.00697463766021
+UniRef50_J2X5J3		8.656701238e-05	5.96094739784e-05	-2.69575384016e-05
+UniRef50_Q9RSY5	Thymidine kinase	1.78085265277e-05	0.0200502663909	0.0200324578644
+UniRef50_F9YYP8	Pyridoxal kinase	0.000751232532717	0.00756003279175	0.00680880025903
+UniRef50_Q0HDL5	LexA repressor	0.00271502841277	0.00175759417293	-0.00095743423984
+UniRef50_G1FTZ5	Gp57	7.35095055468e-06	1.1241430419e-05	3.89047986432e-06
+UniRef50_Q5QVL6	D erythrose 4 phosphate dehydrogenase	0.000287020616154	0.000156148935472	-0.000130871680682
+UniRef50_UPI0003C11E65	PREDICTED	0.000119800171384	5.33905138125e-05	-6.64096575715e-05
+UniRef50_A0A024F1P3	Membrane protein	9.24807478684e-05	6.4267487052e-05	-2.82132608164e-05
+UniRef50_UPI00036780D5	peptide ABC transporter permease	3.63602092308e-05	2.80630446978e-05	-8.297164533e-06
+UniRef50_UPI0003789F55	hypothetical protein	1.52277889728e-05	0.000116564904591	0.000101337115618
+UniRef50_F8I5D2		3.73706477959e-06	1.44868590244e-05	1.07497942448e-05
+UniRef50_F0P5S5	Accessory Sec system protein translocase subunit SecY2	0.0117429628346	0.00256164763503	-0.00918131519957
+UniRef50_A9M194	AraC family transcriptional regulator	0.000191942028225	0.00334782423651	0.00315588220828
+UniRef50_A9C190	Potassium transporting ATPase A chain	3.20190825613e-05	0.00513072833528	0.00509870925272
+UniRef50_S8VH52		3.23269025974e-05	4.55918139403e-05	1.32649113429e-05
+UniRef50_A4WU01	Polysaccharide export protein	0.00364722274638	0.00129377448768	-0.0023534482587
+UniRef50_A6X187	Leucyl phenylalanyl tRNA  protein transferase	3.0318842638e-05	8.91259578659e-05	5.88071152279e-05
+UniRef50_Q8RG83	Orotidine 5 phosphate decarboxylase	2.55651245226e-05	7.54271368688e-05	4.98620123462e-05
+UniRef50_D1ZR99	Catabolic 3 dehydroquinase	3.32767199175e-05	1.6669198008e-05	-1.66075219095e-05
+UniRef50_A4WTH1		0.000957905348971	0.000189011797994	-0.000768893550977
+UniRef50_U4Q3Y6	Carboxylesterase	1.16196847354e-05	2.29638682635e-05	1.13441835281e-05
+UniRef50_UPI000299F85F	ribokinase	6.31491108994e-06	1.30142341952e-05	6.69932310526e-06
+UniRef50_O27507		0.00222258976562	0.000660924140129	-0.00156166562549
+UniRef50_UPI00047263C5	hypothetical protein	9.9479596506e-06	0.000123031849122	0.000113083889471
+UniRef50_A6LGA4	Non canonical purine NTP pyrophosphatase	8.91839599951e-06	0.00100074099436	0.00099182259836
+UniRef50_P22759	Bacterioferritin	7.19257972469e-05	0.000153741909245	8.18161119981e-05
+UniRef50_UPI0003B5D657	NAD dependent malic enzyme 1	1.29550330898e-05	5.85551840915e-06	-7.09951468065e-06
+UniRef50_W4U517	PTS system	1.07766827986e-05	2.12859764118e-05	1.05092936132e-05
+UniRef50_X0UC79	Marine sediment metagenome DNA, contig	1.36075545208e-05	0.000174334548928	0.000160726994407
+UniRef50_P56062	Citrate synthase	1.3483385012e-05	0.00158325514648	0.00156977176147
+UniRef50_P37050		0.00170892126497	0.00158666192294	-0.00012225934203
+UniRef50_UPI0003840695	PREDICTED	0.000138105092199	1.50169683924e-05	-0.000123088123807
+UniRef50_A9EUD2		2.12977261213e-06	8.47491045166e-05	8.26193319045e-05
+UniRef50_Q9B0F8	DnaC	0.00859070677453	0.00138972300884	-0.00720098376569
+UniRef50_B9KNG3		5.10600788578e-05	0.000367875078469	0.000316814999611
+UniRef50_UPI000361064B	hypothetical protein	1.07763301738e-05	3.1731219976e-05	2.09548898022e-05
+UniRef50_P76298	Flagellar biosynthesis protein FlhA	0.00380631142845	0.000780012191102	-0.00302629923735
+UniRef50_UPI00028A1A5C	HAD superfamily hydrolase, partial	3.81488485513e-05	0.000119305653981	8.11568054297e-05
+UniRef50_UPI000470C144	tRNA dihydrouridine synthase	7.87905553304e-06	7.70875686992e-06	-1.7029866312e-07
+UniRef50_O59428		0.000113108158144	0.000399142896727	0.000286034738583
+UniRef50_R5LUL0	Spore coat polysaccharide biosynthesis protein spsC	0.000111352799069	0.000828471383495	0.000717118584426
+UniRef50_Q07X28	Hydroxylamine reductase	0.000874975687224	0.00382974708205	0.00295477139483
+UniRef50_UPI0004702B05	integrase, partial	0.000225897872189	0.000137998460376	-8.7899411813e-05
+UniRef50_A6LTH9		0.000283824051773	0.00132451746136	0.00104069340959
+UniRef50_O28994	Carbamoyl phosphate synthase large chain	0.00395879071948	0.0461174565857	0.0421586658662
+UniRef50_A6M0L2	Beta ketoacyl acyl carrier protein synthase I	0.000664025621124	0.00159830751656	0.000934281895436
+UniRef50_J0SEV2	G5 domain protein 	0.000352931665289	0.000178226775303	-0.000174704889986
+UniRef50_X8A0M6		0.00133776936483	0.000652809788015	-0.000684959576815
+UniRef50_A6TVZ6	Metal dependent phosphohydrolase	0.000283824051773	0.000673652252854	0.000389828201081
+UniRef50_Q169C1		0.000294241340882	2.25449069014e-05	-0.000271696433981
+UniRef50_H9KBT1		7.45842352229e-06	2.14826545911e-05	1.40242310688e-05
+UniRef50_D7I3U8	Dipeptide transport system permease protein	3.49468616108e-05	4.16251014161e-05	6.6782398053e-06
+UniRef50_UPI00035FCD14	hypothetical protein	1.07663972604e-05	1.17417356986e-05	9.753384382e-07
+UniRef50_D9UU07	Radical SAM domain containing protein	0.000163241227578	0.000862081090623	0.000698839863045
+UniRef50_A5G2W1	Carbohydrate ABC transporter substrate binding protein, CUT1 family	1.45430315596e-05	7.61275457121e-06	-6.93027698839e-06
+UniRef50_UPI0002EE07FC	hypothetical protein	4.73987436036e-06	1.0936994393e-05	6.19712003264e-06
+UniRef50_P75995		0.00120637898388	0.000337957755454	-0.000868421228426
+UniRef50_N4S0B6	Type 1V conjugative transfer system mating pair stabilization family protein	2.4185626762e-05	2.08577560381e-05	-3.3278707239e-06
+UniRef50_D8GPT5	Predicted aminoacid permease	0.00025135343659	0.000562779026146	0.000311425589556
+UniRef50_UPI00047A1147	nucleoside triphosphate diphosphatase, partial	9.72665400358e-05	8.96010207788e-05	-7.665519257e-06
+UniRef50_B8GIV7	CRISPR associated helicase Cas3	8.82302985918e-05	2.53871312813e-05	-6.28431673105e-05
+UniRef50_C5BIJ8	Leucyl phenylalanyl tRNA  protein transferase	9.05398084321e-06	1.72972504902e-05	8.24326964699e-06
+UniRef50_UPI00046616FD	4 alpha glucanotransferase, partial	7.8970119451e-06	0.000346638971304	0.000338741959359
+UniRef50_D9RCZ8		0.0184525643998	0.000729177049855	-0.0177233873499
+UniRef50_Q51519	Anthranilate synthase, phenazine specific	0.000635317413918	0.000208236527794	-0.000427080886124
+UniRef50_UPI0002559CB6	nucleoside triphosphate diphosphatase	9.14582280039e-05	1.7521070832e-05	-7.39371571719e-05
+UniRef50_Z5XN41	Diguanylate cyclase	4.77440390972e-06	0.000527919795919	0.000523145392009
+UniRef50_D3A856	DNA gyrase, B subunit, C terminal domain protein	0.000101171386051	0.00243788110412	0.00233670971807
+UniRef50_UPI00016C4069	transporter	3.07101452896e-05	2.55993414771e-06	-2.81502111419e-05
+UniRef50_X2H969	D 2 hydroxyglutarate dehydrogenase	0.000175044792492	0.00105306477336	0.000878019980868
+UniRef50_A9M0U6	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.49529057972e-05	0.0105349705462	0.0105200176404
+UniRef50_Q6NCF3	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000215365618767	0.0444317258033	0.0442163601845
+UniRef50_Q8CN93	Membrane protein	0.0117688374796	0.00609235660517	-0.00567648087443
+UniRef50_Q6AAZ9	DNA integrity scanning protein DisA	0.000206276496643	0.00544561143834	0.0052393349417
+UniRef50_Q55842	UPF0062 protein slr0519	2.06978826827e-05	7.10017158759e-05	5.03038331932e-05
+UniRef50_UPI00047D4A4F	hypothetical protein	1.83433260313e-05	2.39649053723e-05	5.621579341e-06
+UniRef50_B1ZS98	Polyribonucleotide nucleotidyltransferase	2.50058124e-06	8.98044110755e-06	6.47985986755e-06
+UniRef50_D2N4J0	Sau1hsdS1	0.0104085122778	0.00216805395542	-0.00824045832238
+UniRef50_UPI00026286DA	sugar ABC transporter ATP binding protein	0.000119729800084	7.53174262817e-05	-4.44123738023e-05
+UniRef50_Q8CSR0	ABC transporter 	0.0105629027881	0.00563935023729	-0.00492355255081
+UniRef50_A3PNK2	OstA family protein	0.00205676612335	0.00156805330192	-0.00048871282143
+UniRef50_V8G4T0	Sugar ABC transporter substrate binding protein	0.000288910775359	0.00118187358362	0.000892962808261
+UniRef50_P62417	Phosphoglycerate kinase	1.42804882688e-05	2.04166383748e-05	6.136150106e-06
+UniRef50_C5BF52	Adenine deaminase	0.000915415584082	0.00051227034625	-0.000403145237832
+UniRef50_A6LXY1	PAS PAC sensor hybrid histidine kinase	0.000384272226826	0.000668424457461	0.000284152230635
+UniRef50_P77744	HTH type transcriptional regulator AbgR	0.00291693286932	0.00121961066811	-0.00169732220121
+UniRef50_P21864	4 hydroxy 3 methylbut 2 enyl diphosphate reductase 	0.000171818849762	0.000112316296738	-5.9502553024e-05
+UniRef50_UPI00046EEC85	hypothetical protein	5.18488924431e-06	1.94089311602e-05	1.42240419159e-05
+UniRef50_P37197	Probable cytochrome c peroxidase	0.00175058074837	0.00215170087626	0.00040112012789
+UniRef50_UPI0004757670	3 phosphoshikimate 1 carboxyvinyltransferase	4.25705310328e-06	6.03287562878e-06	1.7758225255e-06
+UniRef50_UPI0001BF6FB5	hypothetical protein SMAC_10438, partial	7.63915731118e-05	0.00016806865008	9.16770769682e-05
+UniRef50_UPI000375EC1F	hypothetical protein, partial	4.27225766513e-06	1.35847077517e-05	9.31245008657e-06
+UniRef50_UPI000476341B	major facilitator transporter	1.49980391734e-05	0.00016562263317	0.000150624593997
+UniRef50_UPI000463A3EE	hypothetical protein	5.6772810305e-05	0.000108837759561	5.2064949256e-05
+UniRef50_P34842	Cytochrome c oxidase subunit 3	7.53617671939e-05	2.73335263335e-05	-4.80282408604e-05
+UniRef50_UPI00026533A3		5.63782328225e-06	7.2977677582e-05	6.73398542998e-05
+UniRef50_Q9RTL7	Fosmidomycin resistance protein, putative	0.000107341987354	0.0170317927987	0.0169244508113
+UniRef50_UPI0003514416	PREDICTED	0.000872771219099	0.000290850682017	-0.000581920537082
+UniRef50_N9IA23		0.000108906838666	2.72427087213e-05	-8.16641299447e-05
+UniRef50_Q9RXT0	Phosphoribosylaminoimidazole succinocarboxamide synthase	2.97399608376e-05	0.0448614174803	0.0448316775195
+UniRef50_Q3IUV6	Thioredoxin domain protein	0.00134711416884	0.000900993179516	-0.000446120989324
+UniRef50_Q05627		0.0001469154725	0.000114095314303	-3.2820158197e-05
+UniRef50_A7X2Q3	N utilization substance protein B homolog	0.00606330486314	0.00767751000156	0.00161420513842
+UniRef50_F8DIJ3	Acetyltransferase, GNAT family	0.00502559585656	0.00378879746326	-0.0012367983933
+UniRef50_UPI00047D4833	hypothetical protein	2.61790042001e-06	4.00269138362e-06	1.38479096361e-06
+UniRef50_UPI00037A95AF	hypothetical protein	1.06226531703e-05	3.19483786463e-05	2.1325725476e-05
+UniRef50_Q3J3X7		0.0132387453601	0.00215941909487	-0.0110793262652
+UniRef50_UPI0004758995	hypothetical protein	3.483005933e-05	3.2354975104e-05	-2.475084226e-06
+UniRef50_Q5HME0	Probable DEAD box ATP dependent RNA helicase SERP1688	0.0206454340274	0.00528303690403	-0.0153623971234
+UniRef50_M9RWN2	Chromosome partitioning protein ParA	9.31047042135e-06	6.28541806761e-05	5.35437102547e-05
+UniRef50_A0A024HNH0		0.000489563015601	9.84936204108e-05	-0.00039106939519
+UniRef50_Q3J3X0		0.00933182625375	0.00428272733204	-0.00504909892171
+UniRef50_UPI0002001DF1	superfamily II RNA helicase, partial	1.16764018316e-05	3.45178371476e-05	2.2841435316e-05
+UniRef50_UPI0003B3ECAB	large mechanosensitive ion channel protein MscL	0.000323393402553	7.778216695e-05	-0.000245611235603
+UniRef50_A0A010AWY9	CSLREA domain protein	0.000206276496643	0.00149619473811	0.00128991824147
+UniRef50_UPI000475CD3E	hypothetical protein, partial	3.07619221852e-06	2.74847523127e-05	2.44085600942e-05
+UniRef50_H9KRI1		0.000182687712035	8.67872991152e-05	-9.59004129198e-05
+UniRef50_Q2CG67		3.35159057983e-05	0.000256548605175	0.000223032699377
+UniRef50_A8IL90	Predicted protein	1.90694146156e-05	2.13878347521e-05	2.3184201365e-06
+UniRef50_H9KH51		2.98835578895e-06	3.93310390022e-06	9.4474811127e-07
+UniRef50_J9NXN3		2.30664202071e-05	1.90347954718e-05	-4.0316247353e-06
+UniRef50_UPI00035E2C47	hypothetical protein	3.20974134219e-05	1.66219279978e-05	-1.54754854241e-05
+UniRef50_B7MBY5	Putative N acetylmannosamine 6 phosphate 2 epimerase	0.00290228934463	0.00250829376334	-0.00039399558129
+UniRef50_UPI0003B58132	hypothetical protein	1.66134263882e-05	2.13337791438e-05	4.7203527556e-06
+UniRef50_B8J7M5	FHA domain containing protein	5.56574297819e-06	9.55729557795e-06	3.99155259976e-06
+UniRef50_UPI000307F825	hypothetical protein	1.58648297374e-05	2.19619675484e-05	6.097137811e-06
+UniRef50_A6UZY8		0.00144151145681	0.000326798772262	-0.00111471268455
+UniRef50_UPI0003F490D8	hypothetical protein TREMEDRAFT_66895	4.96909919759e-06	1.51076461132e-05	1.01385469156e-05
+UniRef50_R9SLB7	RNA methylase	0.00260833065135	0.000251333366122	-0.00235699728523
+UniRef50_M4RYW8	Putative thioesterase	3.33677059278e-06	0.00149850091015	0.00149516413956
+UniRef50_B2TRN5	Bifunctional protein FolD	0.000428055966941	0.00100938176843	0.000581325801489
+UniRef50_F9YW81	Sugar ABC transporter permease	0.000725730064477	0.00812963508282	0.00740390501834
+UniRef50_Q6FCZ3	Pseudouridine synthase	0.000437242458129	0.00840542176787	0.00796817930974
+UniRef50_A4FBF7	Elongation factor P	2.89581685257e-05	0.000287901060692	0.000258942892166
+UniRef50_F5M415	Periplasmic binding protein	0.000717843357164	0.000313056577946	-0.000404786779218
+UniRef50_U9TNM9		2.36067059259e-05	2.14362424995e-05	-2.1704634264e-06
+UniRef50_UPI0003797F94	membrane protein, partial	5.87800439099e-05	1.04875332767e-05	-4.82925106332e-05
+UniRef50_O83349	Serine hydroxymethyltransferase	0.00033171414778	0.00667324212929	0.00634152798151
+UniRef50_Q65SJ3		0.000111682253253	0.000619176282051	0.000507494028798
+UniRef50_Q5X9H5	DNA mismatch repair protein MutL	0.000555962962344	0.00326716524713	0.00271120228479
+UniRef50_UPI00046BF5D1	PREDICTED	4.4607981119e-06	5.98573422312e-06	1.52493611122e-06
+UniRef50_A9WVW5		0.00140613824156	0.00194889095648	0.00054275271492
+UniRef50_UPI000378BFDC	hypothetical protein	0.000575501309685	0.000150161036537	-0.000425340273148
+UniRef50_G0FKS6		8.1262235892e-06	2.44768294624e-05	1.63506058732e-05
+UniRef50_M9RJC1		4.7717567677e-05	6.14400162045e-05	1.37224485275e-05
+UniRef50_V5VA04	Hemolysin type calcium binding domain containing protein	2.05789199777e-05	0.00292492781909	0.00290434889911
+UniRef50_Q28TQ1	Type II secretion system protein E	0.00963185998795	0.00162684823669	-0.00800501175126
+UniRef50_Q08WT9		0.000151744877719	0.000220431791988	6.8686914269e-05
+UniRef50_G0DVY4	Cell division protein FtsW	0.000267305821545	0.0052214869336	0.00495418111206
+UniRef50_B3W763	Cellobiose PTS, EIIC	0.000644738947052	0.000907731266315	0.000262992319263
+UniRef50_E3D8W4	Anaerobic ribonucleoside triphosphate reductase activating protein	0.00928591065863	0.00464918861517	-0.00463672204346
+UniRef50_D9WSF3	Vegetative cell wall protein gp1  (Fragment)	2.47364894345e-06	3.62058689288e-05	3.37322199854e-05
+UniRef50_Q6AA77	Ornithine carbamoyltransferase	8.6561162204e-06	0.00744304135163	0.00743438523541
+UniRef50_B2VDR3	High frequency lysogenization protein HflD homolog	0.00617065823227	0.00139169534204	-0.00477896289023
+UniRef50_P77293	Bactoprenol glucosyl transferase homolog from prophage CPS 53	0.00353725912068	0.000661891287945	-0.00287536783274
+UniRef50_P33073	L serine dehydratase, alpha chain	9.33956236055e-06	1.04518748299e-05	1.11231246935e-06
+UniRef50_A1URA3	ATP dependent zinc metalloprotease FtsH	0.0080795771326	0.0100568055855	0.0019772284529
+UniRef50_G7MD19	Polysaccharide biosynthesis protein	0.000654647512657	0.000868495252532	0.000213847739875
+UniRef50_P42505	Trans acting regulatory protein HvrA	0.00722701121772	0.0167819102434	0.00955489902568
+UniRef50_C8WV62	Transcriptional regulator, MarR family	0.000226491593311	0.00342578409497	0.00319929250166
+UniRef50_UPI0003C83EE0	PREDICTED	4.90868203282e-06	1.10259584914e-05	6.11727645858e-06
+UniRef50_S6ARI5		8.19516347409e-05	0.000102773856293	2.08222215521e-05
+UniRef50_C7RR12	AzlC family protein	2.72294495041e-05	1.4111148542e-05	-1.31183009621e-05
+UniRef50_U5MRF4	Nitrite and sulphite reductase 4Fe 4S region	0.000161779709512	0.000907432183606	0.000745652474094
+UniRef50_UPI00036A7350	hypothetical protein	2.71212034528e-05	2.21854883151e-05	-4.9357151377e-06
+UniRef50_A1RLC1	AzlC family protein	0.000667630234129	0.000276427493162	-0.000391202740967
+UniRef50_E8QBY5	Ribosomal RNA small subunit methyltransferase E	0.00682014150316	0.00103295581091	-0.00578718569225
+UniRef50_F8H6V7	Cytochrome C oxidase assembly protein	0.00207807943358	0.000538571498834	-0.00153950793475
+UniRef50_UPI0003798B2F	hypothetical protein	3.92257755468e-07	2.496506516e-06	2.10424876053e-06
+UniRef50_B2IQP4	Peptidase, U32 family	0.00549716419596	0.0060388973229	0.00054173312694
+UniRef50_UPI00036CA0EA	hypothetical protein	3.54707788955e-06	3.89766900173e-05	3.54296121278e-05
+UniRef50_C5N2R4		0.00410907359878	0.000913121177628	-0.00319595242115
+UniRef50_F5SR33		1.23829062881e-05	1.94234902796e-05	7.0405839915e-06
+UniRef50_UPI00047D1C2C	sugar ABC transporter permease	0.000288766832613	0.000136965985398	-0.000151800847215
+UniRef50_Q8CVW1	Outer membrane protein C	0.00213432753308	0.000535036542953	-0.00159929099013
+UniRef50_A5UMQ0	Cobalt precorrin 3B C17 methyltransferase, CbiH	0.00369709723668	0.000356493659109	-0.00334060357757
+UniRef50_G8VAL6	Methyltransferase	0.00349249961464	0.0112046091711	0.00771210955646
+UniRef50_A9G928		0.000625382609059	0.000187502669965	-0.000437879939094
+UniRef50_UPI00037376DC	hypothetical protein	2.18665915799e-06	3.42526042547e-06	1.23860126748e-06
+UniRef50_UPI000375C11B	hypothetical protein	0.00010166978036	9.16890832591e-05	-9.9806971009e-06
+UniRef50_Z7FZL7	MFS transporter, ACS family, glucarate transporter	0.0130885473894	0.000603645180008	-0.0124849022094
+UniRef50_A8TZF0	Putative translation initiation inhibitor	0.000214037508404	8.28933163977e-05	-0.000131144192006
+UniRef50_L7WZD3	Dihydrolipoyl dehydrogenase	0.0180312549162	0.00693378911649	-0.0110974657997
+UniRef50_B3E602	Fumarate reductase succinate dehydrogenase flavoprotein domain protein	8.29287035067e-06	2.93748774306e-06	-5.35538260761e-06
+UniRef50_P65591	Transcription termination antitermination protein NusG	0.0289436228778	0.00411556156615	-0.0248280613117
+UniRef50_I2BLI3	Malonate utilization transcriptional regulator	0.00169673362846	0.00322848089983	0.00153174727137
+UniRef50_P37147	UPF0716 protein FxsA	0.00719653847967	0.00161093745608	-0.00558560102359
+UniRef50_Q7MW52	Fructose 1,6 bisphosphatase class 3	0.000357753816084	0.00546183616362	0.00510408234754
+UniRef50_R9YQ76	Thioesterase superfamily protein	0.0108543941282	0.00203828817876	-0.00881610594944
+UniRef50_D4HEH1	Sugar binding domain protein	0.000349732796402	0.00730122357995	0.00695149078355
+UniRef50_I6U0M8		0.00890903694864	0.00218955822568	-0.00671947872296
+UniRef50_G7SE40	DegV family protein	0.00915967040298	0.000256054946702	-0.00890361545628
+UniRef50_Q5FS85	Guanylate kinase	1.17243272149e-05	3.02704731155e-05	1.85461459006e-05
+UniRef50_Q5L287	ABC transporter 	0.000251657325899	0.00157719268409	0.00132553535819
+UniRef50_Q1LT82	D alanine  D alanine ligase	0.00338508301089	0.000679565132264	-0.00270551787863
+UniRef50_G7LZT8	Beta lactamase domain containing protein	0.000940696554154	0.00048237775423	-0.000458318799924
+UniRef50_UPI00036D9B8C	hypothetical protein, partial	1.69491675945e-06	2.80383614367e-06	1.10891938422e-06
+UniRef50_Q3JQ05		4.48006483898e-05	0.000145585310244	0.000100784661854
+UniRef50_A6LXY4	Transcriptional regulator, TetR family	0.000231586496233	0.00231655910057	0.00208497260434
+UniRef50_N8Z5H6		1.22757174995e-05	3.77264799525e-05	2.5450762453e-05
+UniRef50_B7MIH3	Glyoxylate hydroxypyruvate reductase A	0.00227180375265	0.000868798181929	-0.00140300557072
+UniRef50_UPI0003595012	PREDICTED	4.05491718267e-05	2.33543254742e-05	-1.71948463525e-05
+UniRef50_Q8ZLB5	Cellulose biosynthesis protein BcsE	0.00231359707405	0.000864330049016	-0.00144926702503
+UniRef50_A9BVK1	Trans aconitate 2 methyltransferase	0.0024532162627	0.000494947080615	-0.00195826918209
+UniRef50_U6MWK3		7.95171241676e-06	2.79205033155e-06	-5.15966208521e-06
+UniRef50_C6WDZ3	PE PGRS family protein	4.68292241956e-05	0.000640241431337	0.000593412207141
+UniRef50_UPI0003C129CB	PREDICTED	2.14510477708e-05	6.66898343518e-06	-1.47820643356e-05
+UniRef50_UPI000471E8AE	hypothetical protein, partial	2.909890064e-06	1.55049768261e-05	1.25950867621e-05
+UniRef50_Q1IYH9	Sulfate adenylyltransferase	0.000270032955147	0.0244597251167	0.0241896921616
+UniRef50_G7M254		0.000248346045292	0.000749558866192	0.0005012128209
+UniRef50_P76403		0.00332722759033	0.0114099229532	0.00808269536287
+UniRef50_UPI0001C396B6	Zn ribbon protein, possibly nucleic acid binding	0.00100928886693	0.000481652197517	-0.000527636669413
+UniRef50_P94513	Sensor protein LytS	2.61091357223e-05	0.000547138498953	0.000521029363231
+UniRef50_Q8TYY5	Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis	0.00224129830003	0.000711591220217	-0.00152970707981
+UniRef50_UPI00035F8915	MULTISPECIES	0.000100251488508	3.35670304868e-05	-6.66844580212e-05
+UniRef50_R9ZEN0	Methyl accepting chemotaxis protein	0.000603393784801	0.00068604219268	8.2648407879e-05
+UniRef50_UPI0002000F87	oxidoreductase	6.63808890152e-05	2.61112630334e-05	-4.02696259818e-05
+UniRef50_P54919	Delta aminolevulinic acid dehydratase	5.99475255851e-05	0.000328648900577	0.000268701374992
+UniRef50_P49078	Asparagine synthetase [glutamine hydrolyzing] 1	0.00406593625662	0.00566697638354	0.00160104012692
+UniRef50_UPI000402C450	hypothetical protein	6.81684696913e-06	2.88410631788e-05	2.20242162097e-05
+UniRef50_R7MP32		0.0052992926421	0.00104955032726	-0.00424974231484
+UniRef50_D5APZ2	Transcriptional regulator, LysR family	0.00148882236235	0.000197977679469	-0.00129084468288
+UniRef50_I0I0C0		6.83431409367e-05	1.41611087042e-05	-5.41820322325e-05
+UniRef50_UPI0003B76791	chemotaxis protein CheY	0.000235824646383	2.37528640029e-05	-0.00021207178238
+UniRef50_K0HKA6	Periplasmic binding protein	4.32473351485e-05	0.00544668381229	0.00540343647714
+UniRef50_F4DNZ1	LysR family transcriptional regulator	0.000543157802059	0.00021503643582	-0.000328121366239
+UniRef50_A3PRC4	Methyl accepting chemotaxis sensory transducer	0.00198717080356	0.00116256553647	-0.00082460526709
+UniRef50_UPI000454B9A5	PREDICTED	6.73327479871e-06	3.20184356833e-05	2.52851608846e-05
+UniRef50_UPI000372C723	hypothetical protein	6.43797675803e-06	5.80139102105e-06	-6.3658573698e-07
+UniRef50_Q1CSQ2	Glycine  tRNA ligase beta subunit	5.42884931205e-05	0.00423107346824	0.00417678497512
+UniRef50_A3DFY9		4.68915684868e-05	4.76521239978e-05	7.60555511e-07
+UniRef50_D7GHW6	Cytochrome d ubiquinol oxidase, subunit II	0.000188115941288	0.00647790909825	0.00628979315696
+UniRef50_A5ULR2	UPF0272 protein Msm_0935	0.00198845290565	0.000945948161065	-0.00104250474458
+UniRef50_D8JEL1		0.000320809622254	0.00654125490092	0.00622044527867
+UniRef50_L9MZ90		1.17399844202e-05	0.00247040549478	0.00245866551036
+UniRef50_UPI0003B53446	branched chain amino acid transporter AzlC	4.55751863798e-05	1.68663281458e-05	-2.8708858234e-05
+UniRef50_A5UNA6	Exodeoxyribonuclease, XthA	0.00186722848983	0.000497724784029	-0.0013695037058
+UniRef50_Q6GHK8	ATP dependent DNA helicase RecG	0.0177893753039	0.00824845543423	-0.00954091986967
+UniRef50_UPI0003B4E531	sodium	1.55081094869e-05	0.00144598549527	0.00143047738578
+UniRef50_D7BD64		1.31480332354e-05	0.000196629958119	0.000183481924884
+UniRef50_A7HS58	Undecaprenyl diphosphatase	0.000170747660365	1.40348964988e-05	-0.000156712763866
+UniRef50_UPI000476E422	hypothetical protein	4.65736009819e-06	5.72379137337e-05	5.25805536355e-05
+UniRef50_UPI0003EC50DD	PREDICTED	4.29498285769e-06	6.24797753045e-06	1.95299467276e-06
+UniRef50_U3SR69	Pyrroline 5 carboxylate reductase	0.00297683665452	0.000986888791207	-0.00198994786331
+UniRef50_Q8Y3Y6	Thymidylate kinase	1.12254992647e-05	0.000296304386488	0.000285078887223
+UniRef50_R0VLG7		5.54203369098e-05	0.000650017363458	0.000594597026548
+UniRef50_B0TVV8	Adenylosuccinate synthetase	1.70088420707e-05	1.18704482501e-05	-5.1383938206e-06
+UniRef50_UPI0003810A5E	hypothetical protein	8.11988226624e-06	5.84673906877e-06	-2.27314319747e-06
+UniRef50_F2BFB8	BolA family protein	5.5562245059e-05	0.00039186842261	0.000336306177551
+UniRef50_D8ICU4	Pyridine nucleotide disulfide oxidoreductase family protein	0.000158424287166	0.000694371627541	0.000535947340375
+UniRef50_Q168U2	Polyhydroxyalkanoate synthesis repressor	0.018682567673	0.000799377569805	-0.0178831901032
+UniRef50_UPI00036FDE6E	MULTISPECIES	4.56690367049e-06	1.63660701759e-05	1.17991665054e-05
+UniRef50_F8IRK1	Replication initiator A protein	0.000764952767111	1.63200789285e-05	-0.000748632688182
+UniRef50_B0UIS6	Glutathione S transferase domain	0.000996193478007	0.00632526309644	0.00532906961843
+UniRef50_Q1YVL9		0.0001165931718	0.000280583644681	0.000163990472881
+UniRef50_P0AG14	Probable protease SohB	0.00443645858254	0.00112096301852	-0.00331549556402
+UniRef50_D3E3R8	Carbohydrate kinase PfkB family	0.00104606618296	0.000316976785549	-0.000729089397411
+UniRef50_D5HIW6	Phosphate ABC transporter membrane protein 2, PhoT family 	0.00022469404098	0.0018553994404	0.00163070539942
+UniRef50_UPI00046EB4A8	hypothetical protein	2.46106769669e-05	1.82002129388e-05	-6.4104640281e-06
+UniRef50_A5IU36		0.0095518978364	0.00120674592009	-0.00834515191631
+UniRef50_M4XIN2		0.000222856296256	0.000114686099098	-0.000108170197158
+UniRef50_E3H779	Transcriptional regulator, XRE family	0.000410310857448	0.00264080366452	0.00223049280707
+UniRef50_M1MDC6	Transcription termination factor Rho	0.000430526166203	0.000909743452732	0.000479217286529
+UniRef50_F6D6V6	Cobalamin  biosynthesis CbiM protein	0.00117110853981	0.000615008310206	-0.000556100229604
+UniRef50_P0A1H0	DNA polymerase III subunit epsilon	0.00478076789886	0.000744495895456	-0.0040362720034
+UniRef50_UPI0003B2F0C5	ABC transporter ATP binding protein	4.9762028199e-05	1.92760907899e-05	-3.04859374091e-05
+UniRef50_Q6FFD2	Sensor protein	0.000173767186165	0.00885291032232	0.00867914313616
+UniRef50_UPI0003684932	amino acid ABC transporter substrate binding protein	7.50796697288e-06	2.31112611087e-05	1.56032941358e-05
+UniRef50_UPI0002F69D2E	hypothetical protein	3.566649805e-05	0.000145880220871	0.000110213722821
+UniRef50_UPI000350C2AA	PREDICTED	2.58873824238e-05	2.24555399791e-05	-3.4318424447e-06
+UniRef50_UPI00036F359E	hypothetical protein	4.72610270888e-05	1.1122557761e-05	-3.61384693278e-05
+UniRef50_UPI00021977C8	Appr 1 p processing domain protein	1.44985907041e-05	0.000156184631342	0.000141686040638
+UniRef50_P25539	Riboflavin biosynthesis protein RibD	0.00288500159525	0.00733306655177	0.00444806495652
+UniRef50_Q492E3	Probable malate	4.4623910839e-06	1.44561288878e-05	9.9937378039e-06
+UniRef50_Q56998	UvrABC system protein B	0.000244790219358	0.00225325914776	0.0020084689284
+UniRef50_Q8FSD6	Uroporphyrinogen decarboxylase	1.06648569457e-05	1.16106873041e-05	9.458303584e-07
+UniRef50_W7SQL2	LigA protein	3.23364339073e-05	0.000160498209337	0.00012816177543
+UniRef50_Q9K706	Gluconeogenesis factor	0.0243832938128	0.00670065831023	-0.0176826355026
+UniRef50_Q6N0X7	Short chain dehydrogenase	0.00413869016037	0.0025417544708	-0.00159693568957
+UniRef50_I1B7Q6		0.000173956676891	0.000344727671428	0.000170770994537
+UniRef50_UPI00040FD25C	2 C methyl D erythritol 4 phosphate cytidylyltransferase	1.65330679976e-05	1.04640673109e-05	-6.0690006867e-06
+UniRef50_Q9RZB7	Glycosyltransferase	0.000433696543761	0.057416123176	0.0569824266322
+UniRef50_K2EHC8		3.01868660091e-05	3.63345258958e-05	6.1476598867e-06
+UniRef50_W4LZ78		1.01496688509e-05	2.11114493421e-05	1.09617804912e-05
+UniRef50_D7CU09	ABC transporter related protein	0.00022195756869	0.040165132865	0.0399431752963
+UniRef50_K2EHC4		7.69025043084e-06	8.88506035955e-05	8.11603531647e-05
+UniRef50_UPI0003802618	hypothetical protein	2.12301214723e-05	9.08337339669e-06	-1.21467480756e-05
+UniRef50_UPI00031E0792	hypothetical protein	2.48374813677e-05	0.000304509564278	0.00027967208291
+UniRef50_UPI000374F92F	hypothetical protein	4.58973050115e-06	1.07735213938e-05	6.18379089265e-06
+UniRef50_Q9RY24	Protein GrpE	0.000397353672473	0.0305262098793	0.0301288562068
+UniRef50_F9V983	16S rRNA  methyltransferase	0.00244039875685	0.00340519355921	0.00096479480236
+UniRef50_A9VN98	2 C methyl D erythritol 4 phosphate cytidylyltransferase	6.17239616292e-05	0.000275567687578	0.000213843725949
+UniRef50_M1VMH5		0.000489259683473	8.01883374738e-05	-0.000409071345999
+UniRef50_B3QSU1	Cytidylate kinase	8.42850121746e-06	2.15139230308e-05	1.30854218133e-05
+UniRef50_UPI00037A45FC	MULTISPECIES	9.74593275058e-06	2.04817326203e-05	1.07357998697e-05
+UniRef50_Q9RWU7	Purine pyrimidine phosphoribosyltransferase related protein	0.000211279471374	0.00813180252886	0.00792052305749
+UniRef50_Q56114	Aspartate aminotransferase	0.00289341526546	0.00187943622966	-0.0010139790358
+UniRef50_UPI000360A2CC	MULTISPECIES	0.000101744338675	0.0001272543476	2.5510008925e-05
+UniRef50_UPI0001FFF9AA	integral membrane protein	0.000153930089018	1.53618445328e-05	-0.000138568244485
+UniRef50_Q8EQK8	Choline ABC transporter ATP binding protein	0.0213341364021	0.00275005555182	-0.0185840808503
+UniRef50_Q6LI26	Glutathione peroxidase	0.00141960518512	0.000366095089089	-0.00105351009603
+UniRef50_U1S9N3		3.00158589901e-06	1.53125929357e-06	-1.47032660544e-06
+UniRef50_U3SQV1		0.00606889404617	0.0031556847819	-0.00291320926427
+UniRef50_Q3JFY3	200 kDa antigen p200, putative	1.41553736446e-05	0.00022165109453	0.000207495720885
+UniRef50_UPI000471C806	molybdenum cofactor biosynthesis protein MoaE	6.05118962841e-05	4.0901645573e-05	-1.96102507111e-05
+UniRef50_UPI0003680F4C	hypothetical protein	9.95381293513e-05	1.56813430219e-05	-8.38567863294e-05
+UniRef50_A6LWT3		0.000318754396167	0.00245837998826	0.00213962559209
+UniRef50_UPI0004785ED6	hypothetical protein	6.94512828564e-06	3.7654245073e-05	3.07091167874e-05
+UniRef50_B7UZU0	Na translocating NADH quinone reductase subunit D	0.00148171884257	0.00588590673462	0.00440418789205
+UniRef50_X8AWD6	UvrABC system A domain protein	1.27207238108e-05	2.57766253756e-05	1.30559015648e-05
+UniRef50_W0CYP1	Peptide deformylase	2.81145635437e-05	5.29452252023e-05	2.48306616586e-05
+UniRef50_G2KWZ9	ATP dependent RNA helicase RhlB	0.000713702114467	0.000552514329134	-0.000161187785333
+UniRef50_UPI00037A3CF4	hypothetical protein	2.03365995551e-05	3.67876132059e-05	1.64510136508e-05
+UniRef50_UPI000255CC88	transcriptional regulator	7.24530425311e-06	3.69707503287e-05	2.97254460756e-05
+UniRef50_A1VM60	NADH quinone oxidoreductase subunit A	1.59831267382e-05	0.000311244648788	0.00029526152205
+UniRef50_K0VGX6	Phenol hydroxylase	3.83414225869e-06	5.28105382462e-06	1.44691156593e-06
+UniRef50_Q46WJ3	Shikimate kinase	1.76304802857e-05	1.83659885933e-05	7.355083076e-07
+UniRef50_B7H076	Glycosyl transferases group 1 family protein	0.000562083580112	0.00724390770007	0.00668182411996
+UniRef50_G0LRQ0	Serine aspartate repeat containing protein D	3.52680774356e-05	5.45200071144e-05	1.92519296788e-05
+UniRef50_UPI0004774AD6	adenosylcobinamide kinase	0.00010407317639	1.74729834443e-05	-8.66001929457e-05
+UniRef50_B6TG94	Seed specific protein Bn15D17A	0.000158848859395	4.88952867194e-05	-0.000109953572676
+UniRef50_G8WCZ8	Crispr associated helicase Cas3	7.92589212031e-05	9.95889215841e-06	-6.93000290447e-05
+UniRef50_UPI00037A187F	DNA invertase	0.000320980636282	7.14589750543e-05	-0.000249521661228
+UniRef50_B1K1J6	Inner membrane translocator	0.00992116305348	0.0027564065215	-0.00716475653198
+UniRef50_D2ZUL4		0.00130167582364	3.91747097732e-05	-0.00126250111387
+UniRef50_P69435	Poly beta 1,6 N acetyl D glucosamine export protein	0.00263291918326	0.000800734767099	-0.00183218441616
+UniRef50_UPI000395E0BE	TetR family transcriptional regulator	9.88500515826e-05	1.98643625526e-05	-7.898568903e-05
+UniRef50_B1TBD8		0.000174503795997	0.000306124625344	0.000131620829347
+UniRef50_T0PPT5		3.51810903721e-05	2.81447424638e-05	-7.0363479083e-06
+UniRef50_B9NWB2	Proline dehydrogenase transcriptional activator	9.03066076255e-05	0.000183235899391	9.29292917655e-05
+UniRef50_UPI0002D562AA	peptidase	3.72898109644e-05	3.67795944005e-05	-5.102165639e-07
+UniRef50_Q9I7C4	DNA polymerase III subunit beta	0.00427236383984	0.0023846751409	-0.00188768869894
+UniRef50_A9I3J3	TonB dependent outer membrane receptor	0.000457003959482	0.000371786323606	-8.5217635876e-05
+UniRef50_UPI00046FA567	phytoene dehydrogenase	1.60859005829e-05	5.18358239027e-06	-1.09023181926e-05
+UniRef50_Q65I56	3 methyl 2 oxobutanoate hydroxymethyltransferase	4.79656887758e-05	2.09742172815e-05	-2.69914714943e-05
+UniRef50_A6LQ20	Efflux transporter, RND family, MFP subunit	0.000431193963246	0.000629086901818	0.000197892938572
+UniRef50_L7VT83	Chemotaxis protein	0.00024209135047	0.00159479453032	0.00135270317985
+UniRef50_P20582	PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III	0.000852857991627	0.000186515813799	-0.000666342177828
+UniRef50_A6KZR2	Phosphopantetheine adenylyltransferase	1.22817373064e-05	0.00617215247028	0.00615987073297
+UniRef50_UPI00047AB6F5	imidazoleglycerol phosphate dehydratase	8.12856384076e-05	1.45222711593e-05	-6.67633672483e-05
+UniRef50_B0CC69	Biotin synthase	6.98703207287e-06	4.12834686329e-05	3.429643656e-05
+UniRef50_A0A011QDW9	Hemolysin, chromosomal	6.41481851694e-05	4.40572578669e-05	-2.00909273025e-05
+UniRef50_Q4JV87	LexA repressor	1.0659224213e-05	1.41994007971e-05	3.5401765841e-06
+UniRef50_B0VLK5	Lipoprotein	0.000443669852339	0.0155852694677	0.0151415996154
+UniRef50_P77360		0.00177059313482	0.00021271311299	-0.00155788002183
+UniRef50_P40876		0.000947127930449	0.00136184168126	0.000414713750811
+UniRef50_Q73NX5	Ribonuclease 3	1.14558512826e-05	1.71662051965e-05	5.7103539139e-06
+UniRef50_X3WN19		5.45928050509e-05	0.000107697579787	5.31047747361e-05
+UniRef50_D4HD90		0.000340488450495	0.00693359654316	0.00659310809267
+UniRef50_F4H6S8	Binding protein dependent transport systems inner membrane component	0.000194580406623	0.00138110232183	0.00118652191521
+UniRef50_H4FT59	Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein	0.00767552210164	0.00273920237106	-0.00493631973058
+UniRef50_H8H0A6		0.000676631962682	0.0196893642939	0.0190127323312
+UniRef50_Q5XDJ2	Bifunctional protein GlmU	3.7234297705e-06	0.002500673955	0.00249695052523
+UniRef50_P75990	Blue light  and temperature regulated antirepressor YcgF	0.0037424596613	0.00308930663933	-0.00065315302197
+UniRef50_B9DX64	ATP synthase subunit delta	0.000289631193489	0.000512109893401	0.000222478699912
+UniRef50_UPI000365E273	hypothetical protein	7.79160947531e-05	0.000331486338912	0.000253570244159
+UniRef50_Q97S57	Translation initiation factor IF 2	0.00571825699288	0.00605391914705	0.00033566215417
+UniRef50_UPI00016ABA18	sugar ABC transporter ATP binding protein	6.49995302299e-06	6.77401712709e-06	2.740641041e-07
+UniRef50_A8IC84	Lipoprotein	1.48673673513e-05	9.21639581202e-06	-5.65097153928e-06
+UniRef50_B7I2S0	Exodeoxyribonuclease X, putative	0.000821111998078	0.0101340932737	0.00931298127562
+UniRef50_Q49WD6	NAD kinase	0.0173415412865	0.00223478124547	-0.015106760041
+UniRef50_UPI00034A3652	hypothetical protein	2.58892129062e-05	8.72288904784e-06	-1.71663238584e-05
+UniRef50_Q58036		0.00377181672284	0.000885256171839	-0.002886560551
+UniRef50_UPI0003B7A911	ABC transporter permease	2.72551153843e-05	4.45676821321e-05	1.73125667478e-05
+UniRef50_A6M1F1	Single stranded DNA specific exonuclease RecJ	0.000161989611535	0.000553490513765	0.00039150090223
+UniRef50_Q5WY31	NAD transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II)	3.58941938425e-05	1.81115347188e-05	-1.77826591237e-05
+UniRef50_U6HSW1	Glutamate synthase	9.31146375686e-06	1.89906645069e-05	9.67920075004e-06
+UniRef50_Q8F498	Biotin synthase	4.61994385683e-06	1.6807784633e-05	1.21878407762e-05
+UniRef50_Q8DRX4		0.00628163897327	0.000697598516207	-0.00558404045706
+UniRef50_P0AEB1	Sulfate transport system permease protein CysW	0.0077116730414	0.00234861917266	-0.00536305386874
+UniRef50_R9SLZ9	Energy converting hydrogenase B subunit O EhbO	0.00287185229938	0.000177545113341	-0.00269430718604
+UniRef50_Q0AYL3	Chemotaxis response regulator protein glutamate methylesterase 1	1.99182136841e-05	5.84780725883e-06	-1.40704064253e-05
+UniRef50_A4VU31	Predicted membrane metal binding protein	0.00568038595817	0.00263890597453	-0.00304147998364
+UniRef50_M1MHF4	YibE F family protein	0.000520071649111	0.0011408993239	0.000620827674789
+UniRef50_P29976	Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic	0.000818827605803	0.00318891603242	0.00237008842662
+UniRef50_A4WT17		0.00371316568208	0.000582861918147	-0.00313030376393
+UniRef50_Q3IYW4		0.0220436616711	0.000455501344774	-0.0215881603263
+UniRef50_UPI00016C4263	multi sensor signal transduction histidine kinase	2.67368124978e-05	6.47279029593e-06	-2.02640222019e-05
+UniRef50_UPI0004669627	hypothetical protein	7.55489930495e-05	6.27031292647e-05	-1.28458637848e-05
+UniRef50_UPI000376E080	hypothetical protein, partial	0.000258621246147	5.43635423171e-05	-0.00020425770383
+UniRef50_UPI0003B639BB	hypothetical protein	2.42900982856e-06	7.11194051172e-05	6.86903952886e-05
+UniRef50_Q5LUP8	Endoribonuclease L PSP family protein	0.000155557431819	4.87968574133e-05	-0.000106760574406
+UniRef50_N2DBA0	2,3 cyclic nucleotide 2 phosphodiesterase	0.000827670381379	0.000365152031161	-0.000462518350218
+UniRef50_S5KKJ7	Cell wall surface anchor protein	1.45876429746e-05	0.00194959914292	0.00193501149995
+UniRef50_T0M6P4	Blastn match against entry EMBL	0.000621242815114	7.65292751672e-05	-0.000544713539947
+UniRef50_B2TQI3	Undecaprenyl phosphate glucose phosphotransferase	0.000443789338149	0.00105239442004	0.000608605081891
+UniRef50_D3E1Y0	Fumarate hydratase FumA2	0.00451951073802	0.000203666693245	-0.00431584404477
+UniRef50_A4VRL6	Predicted Zn dependent peptidase	0.000579718390169	0.000320158786789	-0.00025955960338
+UniRef50_D5VDZ2		0.000185435434152	4.0239806887e-05	-0.000145195627265
+UniRef50_UPI000328A627	PREDICTED	1.96456828615e-05	5.69158103916e-05	3.72701275301e-05
+UniRef50_F3U2B2	Transcriptional regulator, LysR family protein	0.0014572115411	0.000646248318541	-0.000810963222559
+UniRef50_D3QEV8	ABC transporter, ATP binding protein	0.00963458880402	0.00164208908989	-0.00799249971413
+UniRef50_UPI00035ED201	hypothetical protein	1.25042849789e-05	7.11893739312e-05	5.86850889523e-05
+UniRef50_G8B0Y4		5.05571370728e-05	6.91814235256e-05	1.86242864528e-05
+UniRef50_A5UK70	Fumarate reductase, iron sulfur protein	0.00444421792101	0.000270624926699	-0.00417359299431
+UniRef50_M1MGY4	Drug resistance transporter, EmrB QacA subfamily	0.000413014083503	0.00124370545861	0.000830691375107
+UniRef50_Q58691		0.0031943546441	0.000940443079037	-0.00225391156506
+UniRef50_K7RP68	Molybdopterin biosynthesis protein	1.00508630937e-05	4.50518907081e-05	3.50010276144e-05
+UniRef50_X1ABV5	Marine sediment metagenome DNA, contig	4.42704831194e-05	6.08497253615e-05	1.65792422421e-05
+UniRef50_UPI0004408C74	beta subunit of citrate lyase	7.85031511446e-05	3.4396727377e-05	-4.41064237676e-05
+UniRef50_P37369	Superoxide dismutase [Fe]	1.33445575788e-05	1.16760229357e-05	-1.6685346431e-06
+UniRef50_A6LQR1	S layer domain protein domain	0.000303884949952	0.00154676403163	0.00124287908168
+UniRef50_UPI00037FF171	hypothetical protein	2.87975798482e-06	5.73946785666e-06	2.85970987184e-06
+UniRef50_Q03CA4	Ribose import ATP binding protein RbsA	0.000176052902248	0.000128975996315	-4.7076905933e-05
+UniRef50_A0A035W1W9	Replication initiation protein	0.000113691607499	5.27716672912e-05	-6.09199402078e-05
+UniRef50_A4WXQ6		0.00181922005014	0.00129824186002	-0.00052097819012
+UniRef50_D9X0C7	Phosphatase	3.81470391213e-06	4.09788202091e-05	3.7164116297e-05
+UniRef50_F8KS43	GTP pyrophosphokinase	9.90568220772e-05	0.00392702091567	0.00382796409359
+UniRef50_B9KQA0		0.000918516658134	0.0010620906196	0.000143573961466
+UniRef50_UPI0003823562	hypothetical protein	2.57000819506e-06	4.52571513517e-06	1.95570694011e-06
+UniRef50_UPI000455DD45	ribosomal protein L17	3.29565939363e-05	4.70889100584e-05	1.41323161221e-05
+UniRef50_A5UJI1	Homoserine dehydrogenase, ThrA	0.00293036914689	0.000485116526038	-0.00244525262085
+UniRef50_R4Q226	APC family amino acid polyamine organocation transporter	0.020368330451	0.0089781248391	-0.0113902056119
+UniRef50_Q1WVB2	Aspartate carbamoyltransferase	0.000535523054843	0.000341406595601	-0.000194116459242
+UniRef50_C0DVB0		4.65965291675e-05	7.10555888546e-05	2.44590596871e-05
+UniRef50_O87388	Sarcosine oxidase subunit beta	0.00050210180816	0.000346892517522	-0.000155209290638
+UniRef50_UPI000470EA5E	2 oxoglutarate dehydrogenase, partial	2.99496806379e-06	5.60109423176e-06	2.60612616797e-06
+UniRef50_H0YYM6		1.46873196033e-05	6.69845746637e-05	5.22972550604e-05
+UniRef50_UPI0003613AC8	MFS transporter	9.31354014233e-05	2.87164772411e-05	-6.44189241822e-05
+UniRef50_D8JND0	Universal stress family protein	0.000154075913818	0.00494791442327	0.00479383850945
+UniRef50_U1MD60	Nucleotide binding protein	1.6126604712e-05	6.10085428524e-05	4.48819381404e-05
+UniRef50_Q2NGD5	Polyphosphate kinase	0.0031843625763	0.00054412936095	-0.00264023321535
+UniRef50_A4CBI0		1.956776468e-05	0.000868374286781	0.000848806522101
+UniRef50_T8XWN9		0.000184246632608	5.74295629588e-05	-0.000126817069649
+UniRef50_D8HJF1		1.08076739377e-05	2.00993222465e-05	9.2916483088e-06
+UniRef50_M9VHP6	Membrane associated protein	0.000229242503354	0.00502977134367	0.00480052884032
+UniRef50_UPI00035D007C	hypothetical protein	2.37289501883e-06	2.44924446344e-05	2.21195496156e-05
+UniRef50_A4WWG0	FAD dependent oxidoreductase	0.0054385377167	0.00151227158009	-0.00392626613661
+UniRef50_P0AFR9	Inner membrane ABC transporter permease protein YdcV	0.00289922850061	0.00117154720605	-0.00172768129456
+UniRef50_F2V5D2	PE PGRS family protein 	0.000107815504132	0.000325484974845	0.000217669470713
+UniRef50_A0QWW2	Glyceraldehyde 3 phosphate dehydrogenase	0.000101269785731	0.0383281786669	0.0382269088812
+UniRef50_Q6A7C7	Conserved phage related protein	0.000270922958506	0.00415755844177	0.00388663548326
+UniRef50_D8JF19	Subtilisin like serine protease	5.34430375889e-05	0.0069512553291	0.00689781229151
+UniRef50_UPI000363C5FE	hypothetical protein	1.8407117615e-05	1.56163566141e-05	-2.7907610009e-06
+UniRef50_X5Q8M2		0.000318240365921	0.000255228738558	-6.3011627363e-05
+UniRef50_C6S6G3	Putative phage associated protein	4.49224047893e-06	0.000132897681949	0.00012840544147
+UniRef50_B7LF20	4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.00198119180787	0.000222390824303	-0.00175880098357
+UniRef50_O52177	GTP pyrophosphokinase	4.65401729743e-06	2.41453589521e-06	-2.23948140222e-06
+UniRef50_UPI0002B4176A		6.8035608024e-06	7.35344421944e-06	5.4988341704e-07
+UniRef50_A8FCN2	N acetyldiaminopimelate deacetylase	2.98377990454e-05	0.0014477365658	0.00141789876675
+UniRef50_E6MVH5	Periplasmic binding family protein	7.15280731734e-06	0.0026424037078	0.00263525090048
+UniRef50_UPI000287C383	tRNA 2 selenouridine synthase	4.08570103445e-05	2.1126082775e-05	-1.97309275695e-05
+UniRef50_A5IVH0	Zn dependent protease like protein	0.0084437073772	0.00260816981716	-0.00583553756004
+UniRef50_B1B3N7	Truncated replication protein RepA	6.86598711068e-05	9.10568255969e-06	-5.95541885471e-05
+UniRef50_UPI000287D657	exodeoxyribonuclease III	3.74884915643e-05	5.12804488676e-05	1.37919573033e-05
+UniRef50_D0IXB3	Pirin like protein	5.65915572138e-06	1.04493625766e-05	4.79020685522e-06
+UniRef50_UPI0003055179	hypothetical protein	8.9102924825e-05	2.51725755501e-05	-6.39303492749e-05
+UniRef50_R9DJ31		0.00854387606928	0.00268469731995	-0.00585917874933
+UniRef50_M1MFG9	Spermidine putrescine transport system permease protein PotC	0.000288580987542	0.00171190246186	0.00142332147432
+UniRef50_A4WWW0		0.00200550013867	0.00074138084986	-0.00126411928881
+UniRef50_F0SXK4	Cyclopropane fatty acyl phospholipid synthase	0.000587468382401	0.000761654774908	0.000174186392507
+UniRef50_UPI0002B483E1	PREDICTED	8.89997418119e-05	2.05555491511e-05	-6.84441926608e-05
+UniRef50_Q3HKK2	Mandelate racemase muconate lactonizing enzyme	0.00571999984406	0.000751526710911	-0.00496847313315
+UniRef50_Q2FWE1	Release factor glutamine methyltransferase	0.0199268340236	0.00655541115868	-0.0133714228649
+UniRef50_Q7WCS7	Integral membrane component of multidrug efflux system	0.000236018661833	0.000128868005765	-0.000107150656068
+UniRef50_F0VCY6		1.89798803485e-06	5.23998013185e-07	-1.37399002167e-06
+UniRef50_B1I3R5	Adenylate kinase	9.34499473876e-06	2.53027713417e-05	1.59577766029e-05
+UniRef50_G0LRB5	Exotoxin	0.00811678016393	0.00167374041006	-0.00644303975387
+UniRef50_P64613	Cell division protein ZapE	0.00236308489721	0.000601100459804	-0.00176198443741
+UniRef50_UPI0003457696	UDP pyrophosphate phosphatase	0.000147573942925	1.19351425601e-05	-0.000135638800365
+UniRef50_A0LNI2	tRNA N6 adenosine threonylcarbamoyltransferase	1.23578854448e-05	9.26006615371e-06	-3.09781929109e-06
+UniRef50_UPI00037A37E6	hypothetical protein	9.35765046615e-06	1.68825044609e-05	7.52485399475e-06
+UniRef50_A8AQN0		0.0105958135006	9.93207149997e-05	-0.0104964927856
+UniRef50_UPI00036DA784	hypothetical protein	2.02300200628e-06	3.31397476964e-05	3.11167456901e-05
+UniRef50_A1RBI9	Oxidoreductase, short chain dehydrogenase reductase family	0.0067476328262	0.00104039147066	-0.00570724135554
+UniRef50_UPI0003B44831	signal peptidase	0.000186874251907	5.10504489882e-05	-0.000135823802919
+UniRef50_P63388	Probable phospholipid import ATP binding protein MlaF	0.00173325454046	0.0106321929777	0.00889893843724
+UniRef50_S7NJS1		0.00157861355759	0.000160499569961	-0.00141811398763
+UniRef50_F8IS38	Xaa His dipeptidase	0.000205678140304	0.000153810783964	-5.186735634e-05
+UniRef50_F3NI62		0.000258409482373	0.00026586885112	7.459368747e-06
+UniRef50_Q3J2S3		0.00293512741231	0.000821039200228	-0.00211408821208
+UniRef50_UPI00047E9C04	hypothetical protein	0.000139329352406	0.00011263096912	-2.6698383286e-05
+UniRef50_P78016	DNA topoisomerase 4 subunit B	2.5640192364e-06	9.69480056424e-06	7.13078132784e-06
+UniRef50_Q82IE8	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.3545585259e-05	6.36038617945e-05	1.00582765355e-05
+UniRef50_E4U760	Carbohydrate ABC transporter membrane protein 2, CUT1 family	8.27215461305e-05	0.0377707885084	0.0376880669623
+UniRef50_Q15TJ8	PKHD type hydroxylase Patl_2273	2.03677049479e-05	2.78529658499e-05	7.485260902e-06
+UniRef50_A0A013SUS4	NMT1 like family protein	1.81462814707e-05	2.41427839912e-05	5.9965025205e-06
+UniRef50_R7FRD0		0.000188471294548	2.3963247919e-05	-0.000164508046629
+UniRef50_L0EBI3	Transcriptional accessory protein	0.00316277061713	0.00047146388675	-0.00269130673038
+UniRef50_E6Q8B0		0.00055587413815	0.000381612029945	-0.000174262108205
+UniRef50_UPI00036A5069	hypothetical protein	8.10755840567e-06	2.85293459895e-05	2.04217875838e-05
+UniRef50_P0A0Y5	Phosphoheptose isomerase	0.00128138399555	0.00943826696134	0.00815688296579
+UniRef50_UPI0003673DF5	hypothetical protein	7.43855509084e-06	2.88043994445e-05	2.13658443537e-05
+UniRef50_Q99ZE5	Stress response regulator gls24 homolog	0.000452866143683	0.00262263027854	0.00216976413486
+UniRef50_UPI0003B50954	aspartyl glutamyl tRNA amidotransferase subunit B	3.5840060619e-05	3.65763753756e-05	7.363147566e-07
+UniRef50_Q881Q1	Macrolide export ATP binding permease protein MacB 2	2.23773806305e-06	0.00387805896652	0.00387582122846
+UniRef50_A9W856	Integrase, catalytic region	0.000443187411452	1.82058133662e-05	-0.000424981598086
+UniRef50_Q5F5Y6	Lipid A disaccharide synthase	0.000172368031437	0.00148096691416	0.00130859888272
+UniRef50_UPI00035E69D2	hypothetical protein	2.25877661461e-05	4.96295620688e-05	2.70417959227e-05
+UniRef50_W5BGQ3		2.3608436718e-05	3.47127582927e-05	1.11043215747e-05
+UniRef50_UPI000373B42C	hypothetical protein	9.92699529428e-06	1.97222787812e-05	9.79528348692e-06
+UniRef50_K2FSL8		0.000101529305495	0.000314728377367	0.000213199071872
+UniRef50_UPI000477E8B8	hypothetical protein	3.72390132826e-05	4.86868472866e-05	1.1447834004e-05
+UniRef50_Q9AGS1	Xanthine phosphoribosyltransferase	4.10169945387e-05	9.0243148315e-05	4.92261537763e-05
+UniRef50_F9FGU0		1.9933277572e-06	0.000291892474162	0.000289899146405
+UniRef50_F8IRL8	Phosphate starvation inducible protein PhoH	0.0107746323808	0.0015781052303	-0.0091965271505
+UniRef50_P37169	Protein MurJ homolog	0.00235462686186	0.00494146045148	0.00258683358962
+UniRef50_J3P2Z6		0.000132142119782	8.02509909447e-05	-5.18911288373e-05
+UniRef50_B7NMR0	Endonuclease 8	0.0041643522863	0.00200772766633	-0.00215662461997
+UniRef50_M3AAL9	Secretory lipase	1.61012105199e-05	0.000288100780162	0.000271999569642
+UniRef50_R7FPS5	DEAD DEAH box helicase	0.000236750500858	0.00111245969258	0.000875709191722
+UniRef50_Q8R9G3	Phospho N acetylmuramoyl pentapeptide transferase	6.08573365739e-06	2.2089740975e-05	1.60040073176e-05
+UniRef50_O86489	Serine aspartate repeat containing protein E	0.0163301316185	0.00228892132239	-0.0140412102961
+UniRef50_UPI00047946DB	hypothetical protein	0.00015691474296	7.98009612077e-06	-0.000148934646839
+UniRef50_I7EZZ6		0.00140713945468	0.000167966529658	-0.00123917292502
+UniRef50_Q2G5Y5	NADH quinone oxidoreductase subunit C	1.37856831377e-05	1.16466096931e-05	-2.1390734446e-06
+UniRef50_A3PRZ2	Transcriptional regulator, LysR family	0.00855940720262	0.000771081712194	-0.00778832549043
+UniRef50_O94524	Glutathione S transferase omega like 2	0.000345131676658	2.05756329669e-05	-0.000324556043691
+UniRef50_P21399	Cytoplasmic aconitate hydratase	1.11568490399e-05	0.000102376443204	9.12195941641e-05
+UniRef50_P15493	Lipase	0.000176395321898	0.000895250808683	0.000718855486785
+UniRef50_S0F090	Acetolactate synthase, small subunit	0.00311606650786	0.00149345449214	-0.00162261201572
+UniRef50_A6LRW0	Phage Terminase	0.000584111960843	0.00286120442282	0.00227709246198
+UniRef50_UPI00026CC897	NADPH	9.82086139028e-06	8.24440330384e-05	7.26231716481e-05
+UniRef50_D3QFY8		0.0100786007853	0.000499126825692	-0.00957947395961
+UniRef50_R9SLI7	DEAD DEAH box helicase domain containing protein	0.00306234382992	0.000284283218367	-0.00277806061155
+UniRef50_UPI00016AB4FD	type III secretion inner membrane protein SctV, partial	7.37494727105e-06	1.46959988716e-05	7.32105160055e-06
+UniRef50_UPI0003806CCD	hypothetical protein	3.57136003062e-06	1.23789294672e-05	8.80756943658e-06
+UniRef50_F2AE31		0.00040070120529	9.96651490864e-06	-0.000390734690381
+UniRef50_T0UHV5	Transcriptional regulator, AraC family	0.00396242382186	0.00200687394925	-0.00195554987261
+UniRef50_P75809	Flavin mononucleotide phosphatase YbjI	0.00128388286163	0.000431119277652	-0.000852763583978
+UniRef50_B2IMU5	HIT family protein	0.00371832888944	0.00436660278698	0.00064827389754
+UniRef50_G6Y3Q8	Transposase IS66	0.000163773566194	6.26007188886e-05	-0.000101172847305
+UniRef50_A4AR30	Dihydrolipoyl dehydrogenase	0.00961007068128	0.00286033685317	-0.00674973382811
+UniRef50_UPI000467AD6A	hypothetical protein, partial	4.32144918176e-06	7.12264422081e-06	2.80119503905e-06
+UniRef50_B4SJH6	NADH quinone oxidoreductase subunit D 1	0.000243878560175	0.00322026065615	0.00297638209598
+UniRef50_I1Y681	Type F conjugative transfer system protein TraW	2.7994327254e-05	2.7660501781e-05	-3.33825473e-07
+UniRef50_UPI0003B68FBD	pseudouridine synthase	1.64488243362e-05	6.56537153548e-05	4.92048910186e-05
+UniRef50_P26408	Hydrogenase transcriptional regulatory protein hupR1	0.00201759858255	0.000513504491966	-0.00150409409058
+UniRef50_F5X1L0	PTS system, fructose specific IIABC component	0.00477827631999	0.00347690520491	-0.00130137111508
+UniRef50_P06136	Cell division protein FtsQ	0.00228586479949	0.00131588582471	-0.00096997897478
+UniRef50_E8QRB2	Outer membrane protein HopZ	0.000199826061273	0.00378916387798	0.00358933781671
+UniRef50_Q5HQR1	Toprim domain protein	0.0190646700317	0.00204192349508	-0.0170227465366
+UniRef50_Q5P409	Peptide chain release factor 3	0.00511472723211	0.00838669308537	0.00327196585326
+UniRef50_B0JJ94	Potassium transporting ATPase A chain	2.62195208282e-06	0.00119321641215	0.00119059446007
+UniRef50_W8EUK6	Iron ABC transporter	0.00017584751034	0.00966314847053	0.00948730096019
+UniRef50_UPI000288243F	phospho 2 dehydro 3 deoxyheptonate aldolase, partial	8.37330316189e-05	8.63655411629e-05	2.632509544e-06
+UniRef50_UPI00041C714B	mechanosensitive ion channel protein MscL	2.48146638006e-05	2.04123022336e-05	-4.402361567e-06
+UniRef50_D1DHF6	Oxidoreductase	0.000199055565955	0.00275370961895	0.002554654053
+UniRef50_UPI00038110F4	hypothetical protein	4.99321832134e-06	4.97846218907e-05	4.47914035694e-05
+UniRef50_A6M363	Amidohydrolase 3	0.000659457594916	0.000775379174986	0.00011592158007
+UniRef50_A5UJ78	Adhesin like protein	0.00291363873103	0.000686348845086	-0.00222728988594
+UniRef50_UPI00047DA4D0	iron transporter FeoB	1.61605448737e-05	1.3106663404e-05	-3.0538814697e-06
+UniRef50_K5W0W9		0.000113388359286	2.21810139657e-05	-9.12073453203e-05
+UniRef50_F0K6G2	Integral membrane protein	0.000209218669562	0.00166674430571	0.00145752563615
+UniRef50_UPI00046C4A93	hypothetical protein	4.14199883807e-05	0.000234906620536	0.000193486632155
+UniRef50_Q3BJT1	Nitrite oxidoreductase beta subunit 	4.15461609812e-05	2.33813759765e-05	-1.81647850047e-05
+UniRef50_I7CFF2	Methionine aminopeptidase	0.00105608567524	0.0022252582284	0.00116917255316
+UniRef50_M1Q6R0		9.18337801584e-06	2.38826384188e-06	-6.79511417396e-06
+UniRef50_J3JP50		0.00103855666506	0.000697401347832	-0.000341155317228
+UniRef50_D2PTZ5		1.97904602289e-05	9.34335712368e-06	-1.04471031052e-05
+UniRef50_A6M151	Putative cell wall binding repeat containing protein	0.00157285828688	0.000787511213846	-0.000785347073034
+UniRef50_UPI0003606801	hypothetical protein	1.11114806108e-05	8.36998747515e-06	-2.74149313565e-06
+UniRef50_Q4RIY1	Chromosome undetermined SCAF15041, whole genome shotgun sequence. 	9.87930173869e-05	3.3401251448e-05	-6.53917659389e-05
+UniRef50_A4WSI1	Mammalian cell entry related domain protein	0.0123802568087	0.00333679510214	-0.00904346170656
+UniRef50_UPI00038114B4	hypothetical protein	1.47129989823e-05	4.10526056076e-05	2.63396066253e-05
+UniRef50_L1G4X2	Permease family protein	0.00242569727243	0.000621986729279	-0.00180371054315
+UniRef50_R9SJI3	CCA adding enzyme	0.00294314804048	0.000138106019575	-0.00280504202091
+UniRef50_Q31DZ2	Hydrogenase expression formation protein hypD	0.000119457591412	0.00321045415015	0.00309099655874
+UniRef50_J9YR02	BioY family protein	0.0159961464001	0.0054973650689	-0.0104987813312
+UniRef50_A4IJA6	Thymidylate kinase	1.25615031425e-05	0.00376235354431	0.00374979204117
+UniRef50_Q5LPC1	Adenosine deaminase	0.00329656744838	0.000994349652413	-0.00230221779597
+UniRef50_P60070	Anti sigma B factor antagonist	0.00326174586468	0.00474568967811	0.00148394381343
+UniRef50_Q87J85	Tyrosine  tRNA ligase 1	0.000105805441149	2.53322420646e-05	-8.04731990844e-05
+UniRef50_B3QV79	Serine  tRNA ligase	3.5713814454e-06	6.21207647515e-06	2.64069502975e-06
+UniRef50_Q3JCN0	1,4 alpha glucan branching enzyme GlgB	0.00878594112446	0.00171266175316	-0.0070732793713
+UniRef50_Q7NFY1	Chorismate synthase	1.6068196992e-05	0.000200068193126	0.000183999996134
+UniRef50_F5M2D5	Choline ethanolamine kinase	0.00436158911311	0.000448581620499	-0.00391300749261
+UniRef50_X5ZST2		4.4175057183e-05	0.000339784599388	0.000295609542205
+UniRef50_B8DDV4	Peptidoglycan bound protein	1.27508975305e-05	0.000211431843286	0.000198680945755
+UniRef50_UPI00047EA9AC	hypothetical protein	4.09229034531e-05	2.4523937893e-05	-1.63989655601e-05
+UniRef50_Q8TX14		0.00668251729082	0.000340342830921	-0.0063421744599
+UniRef50_A3CL70	Cobalt transport protein CbiM	0.00591999053386	0.000421192976745	-0.00549879755711
+UniRef50_Q5HRI1	GTP cyclohydrolase FolE2	0.00801347349531	0.00312648749146	-0.00488698600385
+UniRef50_A1SSZ0		2.25195836605e-05	4.15900731281e-05	1.90704894676e-05
+UniRef50_UPI0002658599	PREDICTED	2.31251119588e-05	0.000924594603085	0.000901469491126
+UniRef50_A6LYD5	Transposase, IS111A IS1328 IS1533	0.000363450351672	0.00141562051353	0.00105217016186
+UniRef50_B6AM37		1.23516923153e-06	1.80822624131e-06	5.7305700978e-07
+UniRef50_A6LQ17	Malonyl CoA acyl carrier protein transacylase	0.000129128616484	0.00107259462602	0.000943466009536
+UniRef50_B9AH82		0.00161897137691	0.000838646786657	-0.000780324590253
+UniRef50_B9AH81		0.000860587187197	8.75462581866e-06	-0.000851832561378
+UniRef50_UPI0004656F44	FAD binding molybdopterin dehydrogenase	0.000225566598847	0.000397910340246	0.000172343741399
+UniRef50_UPI00036CFDE4	hypothetical protein	4.11188340714e-06	2.79268293538e-06	-1.31920047176e-06
+UniRef50_UPI0002624A61	succinylarginine dihydrolase	1.22562388261e-05	4.4916233353e-05	3.26599945269e-05
+UniRef50_C4RAQ9		8.07906485273e-05	0.0014890537728	0.00140826312427
+UniRef50_Q47QV2		0.000201444574503	0.000790033647941	0.000588589073438
+UniRef50_E1ZQF3		8.09761181218e-06	1.8448565895e-05	1.03509540828e-05
+UniRef50_H6RSF4		8.60077953952e-05	2.31136025685e-05	-6.28941928267e-05
+UniRef50_Q1Q8I7	Arginine  tRNA ligase	8.95929081425e-05	0.00695042086118	0.00686082795304
+UniRef50_Q81FQ4	Nucleoside diphosphate kinase	0.0149732698738	0.00146824940952	-0.0135050204643
+UniRef50_UPI00037813C2	hypothetical protein	1.95682366092e-05	7.32628651722e-06	-1.2241950092e-05
+UniRef50_J9P031		0.000193942195576	7.91059043362e-05	-0.00011483629124
+UniRef50_P76241		0.00232168573377	0.000686483173392	-0.00163520256038
+UniRef50_UPI0003728B23	hypothetical protein	0.00218136180688	0.000143130836355	-0.00203823097053
+UniRef50_P00905	Bifunctional protein TrpGD	0.000669114355967	0.000123172955868	-0.000545941400099
+UniRef50_K1ST89	Heat shock protein 70	0.000224484549948	4.38393863434e-05	-0.000180645163605
+UniRef50_Q92M91	Holliday junction ATP dependent DNA helicase RuvA	2.6716072051e-05	1.10569430906e-05	-1.56591289604e-05
+UniRef50_D3P3A5	Transposase	0.00132961906049	9.78697682891e-05	-0.0012317492922
+UniRef50_A7H8W4	Phosphopentomutase	1.02725229985e-05	2.03785262537e-05	1.01060032552e-05
+UniRef50_B3PJZ1		0.000509049186673	0.000853016030968	0.000343966844295
+UniRef50_G1ZE91	Outer membrane protein assembly complex, YaeT protein	0.00124593678802	0.000300341454349	-0.000945595333671
+UniRef50_A6M2H1		0.000534436541738	0.00301417088865	0.00247973434691
+UniRef50_A6M2H8		0.00754971977705	0.000668641596675	-0.00688107818038
+UniRef50_X6L2P2		0.000309943931679	0.000171446167593	-0.000138497764086
+UniRef50_Q04KA6		0.00441979912214	0.000774727423463	-0.00364507169868
+UniRef50_UPI00037EF484	hypothetical protein, partial	2.16387975468e-05	4.04567357241e-06	-1.75931239744e-05
+UniRef50_R4LGH4		9.93137683078e-06	2.84797711446e-05	1.85483943138e-05
+UniRef50_A4WR12	ABC transporter related	0.00108551391904	0.000892678575865	-0.000192835343175
+UniRef50_UPI000466F502	nitrate reductase	9.15200794493e-06	6.1169656903e-06	-3.03504225463e-06
+UniRef50_UPI000360428B	hypothetical protein	8.71547338186e-06	2.19357967414e-05	1.32203233595e-05
+UniRef50_UPI0002DA4A3A	hypothetical protein	8.82274084231e-07	3.76501175199e-07	-5.05772909032e-07
+UniRef50_O59229	30S ribosomal protein S12	0.00174677559691	0.000551993841485	-0.00119478175543
+UniRef50_F8YC51	Pyridine nucleotide disulfide oxidoreductase	0.000483683128658	0.000251333366122	-0.000232349762536
+UniRef50_UPI000472E3C4	hypothetical protein	4.8837811337e-05	9.76803971961e-05	4.88425858591e-05
+UniRef50_F9NUL2	ABC transporter, permease protein	0.000247396680356	0.0043789438506	0.00413154717024
+UniRef50_F3GFB2	ABC transporter, substrate binding protein, aliphatic sulfonate 	2.94489270222e-05	4.09717762502e-05	1.1522849228e-05
+UniRef50_B5F5V3	Nitrate reductase, alpha subunit	0.00345831062314	0.00156790405427	-0.00189040656887
+UniRef50_Q9HZQ3	Aerobic cobaltochelatase subunit CobN	0.00022331838668	4.73263950644e-05	-0.000175991991616
+UniRef50_P76236	Inner membrane protein YeaI	0.00371131098361	0.00263352550596	-0.00107778547765
+UniRef50_A5ULS0		0.00325908261111	0.00165607918084	-0.00160300343027
+UniRef50_A4F866	Transcription elongation factor GreA	0.000472804571187	0.00444399385044	0.00397118927925
+UniRef50_P32136	Putative sulfoquinovose importer	0.00453391657987	0.00138951746038	-0.00314439911949
+UniRef50_P08417	Fumarate hydratase, mitochondrial	0.0410183192903	0.0695359995187	0.0285176802284
+UniRef50_Q9X581	NatC	0.000312013049321	0.00414904351622	0.0038370304669
+UniRef50_A6LS24	Peptidase M56, BlaR1	0.000171020333855	0.00141249566387	0.00124147533001
+UniRef50_K2LBK5	2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	2.82067635151e-05	1.90088237201e-05	-9.197939795e-06
+UniRef50_UPI00037E01EF	hypothetical protein	1.92677154912e-06	8.87944061494e-06	6.95266906582e-06
+UniRef50_UPI0004702907	ABC transporter ATP binding protein	0.000213854263286	4.53025280333e-05	-0.000168551735253
+UniRef50_E2ZV83		4.70294884022e-05	8.37586948934e-05	3.67292064912e-05
+UniRef50_Q7V3Y9	Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	4.52511763736e-05	4.84480614221e-05	3.1968850485e-06
+UniRef50_G2RNK8	Lipoprotein	0.000134860263728	3.39613182269e-05	-0.000100898945501
+UniRef50_Q8DWH8	UPF0237 protein SMU_72	0.000473831785168	0.000714475899663	0.000240644114495
+UniRef50_D7GFE3	Regulatory protein, TetR	0.000501087595826	0.00324268868148	0.00274160108565
+UniRef50_P29686	Glucose 6 phosphate 1 dehydrogenase	4.56920928695e-06	0.0148166093729	0.0148120401636
+UniRef50_T0TBX4	Excinuclease ABC subunit A	9.44997724897e-05	0.000169066719468	7.45669469783e-05
+UniRef50_UPI00025578A6	dihydroxyacetone kinase	7.67053331843e-06	0.00112566279693	0.00111799226361
+UniRef50_Q8KDE3	N acetyl gamma glutamyl phosphate reductase	6.01565855135e-06	1.93245995178e-05	1.33089409665e-05
+UniRef50_Q1J1R8	Tfp pilus assembly pathway, ATPase PilB	0.00024203711588	0.0296952352018	0.0294531980859
+UniRef50_A7NQM8	Formamidopyrimidine DNA glycosylase	1.13091774332e-05	2.30650908815e-05	1.17559134483e-05
+UniRef50_Q8CW45	Outer membrane lipoprotein LolB	0.00140175073626	0.00195094987545	0.00054919913919
+UniRef50_Q9X909	DNA topoisomerase 1	0.000133354605847	0.00551356984067	0.00538021523482
+UniRef50_UPI000371ABD8	hypothetical protein	3.84091768676e-06	3.04016786597e-05	2.65607609729e-05
+UniRef50_UPI000467A9B2	hypothetical protein	2.82941817392e-05	2.50995874357e-05	-3.1945943035e-06
+UniRef50_P24211	Putative protein RhsE	0.00329138397159	0.00101245717621	-0.00227892679538
+UniRef50_P04179	Superoxide dismutase [Mn], mitochondrial	9.94275113666e-06	0.00011224211477	0.000102299363633
+UniRef50_UPI000478DF96	AraC family transcriptional regulator	9.35895407023e-05	0.00020627476498	0.000112685224278
+UniRef50_Q9HTT0		0.00135594283752	0.000461432351874	-0.000894510485646
+UniRef50_J9YQC3		0.000439296040465	0.000112216607416	-0.000327079433049
+UniRef50_A0A045ECZ1		5.52356674421e-05	1.4068428116e-05	-4.11672393261e-05
+UniRef50_B9E3J2		0.000276590966753	0.00102352169998	0.000746930733227
+UniRef50_K1DV80	Cupin superfamily protein	2.16600795122e-05	4.66666001768e-05	2.50065206646e-05
+UniRef50_UPI00040C1A9F	hypothetical protein	3.85714566219e-05	9.8705218238e-06	-2.87009347981e-05
+UniRef50_Q5HF61	Probable thiol peroxidase	0.0108355483715	0.00213480575774	-0.00870074261376
+UniRef50_F8JFK7		0.00189878008234	0.00982733864575	0.00792855856341
+UniRef50_G7M7E3	Membrane bound O acyl transferase MBOAT family protein	7.39202328085e-05	0.000850778285585	0.000776858052777
+UniRef50_G7M6M8	Peptidase M56 BlaR1	5.19714532615e-05	0.00106571659894	0.00101374514568
+UniRef50_Q9I5Z5		0.000321721013225	0.000386877779725	6.51567665e-05
+UniRef50_UPI00047B409A	hypothetical protein	6.05653551629e-06	1.76958406166e-05	1.16393051003e-05
+UniRef50_P44797	Adenylosuccinate lyase	0.0030644247723	0.000868500021796	-0.0021959247505
+UniRef50_K1V508		0.000314079579682	0.000513212257297	0.000199132677615
+UniRef50_X6P3I6		3.93175781386e-06	9.85128623436e-06	5.9195284205e-06
+UniRef50_B8DI47	Cell wall surface anchor family protein	6.50092094613e-06	0.0018729655695	0.00186646464855
+UniRef50_F3ZH26	Putative dehydrogenase	0.000140069012559	0.000109309082736	-3.0759929823e-05
+UniRef50_P0ABP1	Anaerobic C4 dicarboxylate transporter DcuB	0.00408742209439	0.000716782922252	-0.00337063917214
+UniRef50_UPI0004688581	replication initiation protein RepC	5.76615686509e-05	3.17533745407e-05	-2.59081941102e-05
+UniRef50_D9REY1		0.045000304697	0.00491130489144	-0.0400889998056
+UniRef50_Q2CKE9		2.76801292372e-05	2.29455026417e-05	-4.7346265955e-06
+UniRef50_Q9JUV1	Proline iminopeptidase	0.000130998423461	0.00301352004719	0.00288252162373
+UniRef50_F9HJK1		2.73662275961e-05	2.52243960835e-05	-2.1418315126e-06
+UniRef50_A7MXL0	Prolipoprotein diacylglyceryl transferase	1.96362483315e-05	3.16662745345e-05	1.2030026203e-05
+UniRef50_C9XQG5	Trehalose 6 phosphate hydrolase	0.0135372014062	0.00249773631348	-0.0110394650927
+UniRef50_X1YC61		2.6321106951e-06	8.62626920644e-06	5.99415851134e-06
+UniRef50_Q57658	Aspartate semialdehyde dehydrogenase	0.00266662094418	0.00053760170224	-0.00212901924194
+UniRef50_Q5NNB4	N succinylarginine dihydrolase	1.39463737705e-05	4.44828576711e-05	3.05364839006e-05
+UniRef50_A9WR14	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.24044804198e-06	0.00188583378856	0.00188159334052
+UniRef50_P54374	Shikimate dehydrogenase	5.41130798207e-05	1.79841875759e-05	-3.61288922448e-05
+UniRef50_A0A024HXE1		3.25996490061e-05	1.46496623339e-05	-1.79499866722e-05
+UniRef50_T1Y972	Transposase	0.00856066326392	0.000927696456103	-0.00763296680782
+UniRef50_W7VQ87	Phytoene dehydrogenase 	2.5442867101e-05	0.000536025806937	0.000510582939836
+UniRef50_M9RUX7	TonB domain containing protein	0.000260669263266	0.000703839941747	0.000443170678481
+UniRef50_UPI000470A397	30S ribosomal protein S2, partial	1.81717833935e-05	1.84541417283e-05	2.823583348e-07
+UniRef50_UPI000441C901	PREDICTED	2.82105770673e-05	2.60881424641e-05	-2.1224346032e-06
+UniRef50_B3EPQ3	Protease HtpX homolog	0.0050205306552	0.00101731550466	-0.00400321515054
+UniRef50_I0KKW1	DoxX family protein	5.86445008878e-05	2.84505658345e-05	-3.01939350533e-05
+UniRef50_G4E2Y7	ATP dependent chaperone ClpB	0.000340572692208	0.0110094406366	0.0106688679444
+UniRef50_P57408	UPF0053 protein BU323	0.00203987074879	0.000742333055207	-0.00129753769358
+UniRef50_M1Z917		1.25367967486e-05	7.52455487413e-05	6.27087519927e-05
+UniRef50_UPI0003B3F37B	polyphosphate kinase, partial	2.66527187285e-06	5.34365714532e-05	5.07712995804e-05
+UniRef50_UPI0002880AE8	bacteriocin ABC transporter ATPase	7.06539959106e-06	8.32063544678e-06	1.25523585572e-06
+UniRef50_Q46911		0.00355076701897	0.000687430956767	-0.0028633360622
+UniRef50_X0SYL6	Marine sediment metagenome DNA, contig	1.05868542035e-05	6.91404664592e-06	-3.67280755758e-06
+UniRef50_G2T0A1		0.00412671179513	0.000771160477641	-0.00335555131749
+UniRef50_I0C2G3	Deoxyribodipyrimidine photolyase	0.0187891547181	0.00382756929225	-0.0149615854258
+UniRef50_O67315	UDP N acetylglucosamine 1 carboxyvinyltransferase	2.21212594522e-05	1.12262390678e-05	-1.08950203844e-05
+UniRef50_W0Z2H6	ISSod1 transposase	0.000158036515303	1.79254757326e-05	-0.00014011103957
+UniRef50_UPI0004726C09	hypothetical protein	9.35757189622e-06	1.16911950086e-05	2.33362311238e-06
+UniRef50_C4RCM2	Polyketide synthase 	0.000327559620365	0.000507883902509	0.000180324282144
+UniRef50_P19529	Replication initiation protein	0.961640316151	0.326879196825	-0.634761119326
+UniRef50_P9WHM0	N5 carboxyaminoimidazole ribonucleotide mutase	7.46857686182e-05	8.86204313279e-05	1.39346627097e-05
+UniRef50_B9DYP5		0.000291819534415	0.00152270260843	0.00123088307402
+UniRef50_Q2G9D9	Arginine  tRNA ligase	0.0092711124598	0.00164073648942	-0.00763037597038
+UniRef50_X1L2W8	Marine sediment metagenome DNA, contig	0.000156334471216	5.32238616877e-05	-0.000103110609528
+UniRef50_O27434	CoB  CoM heterodisulfide reductase iron sulfur subunit A	0.00299828804169	0.000674670492881	-0.00232361754881
+UniRef50_UPI00035FE7E0	hypothetical protein	0.000223973636734	0.00010563046806	-0.000118343168674
+UniRef50_F0RPB8	Lon protease	0.000155068084511	0.0285957922034	0.0284407241189
+UniRef50_Q6AAY2		0.000342734707915	0.00764689023824	0.00730415553032
+UniRef50_Q6AAY0		0.000359125433534	0.0112153445524	0.0108562191189
+UniRef50_A3U7W4		2.2183390728e-05	0.002468786419	0.00244660302827
+UniRef50_C1KVS7	Indole 3 glycerol phosphate synthase	0.00389445300091	0.0121390033582	0.00824455035729
+UniRef50_P08390	USG 1 protein	0.00233512029835	0.00128254442089	-0.00105257587746
+UniRef50_UPI00019116B2	trehalose 6 phosphate phosphatase, partial	0.000107071555372	0.000226024154437	0.000118952599065
+UniRef50_A5ULH0	2 deoxyribose 5 phosphate aldolase , DeoC	0.0050966092525	0.00200885303049	-0.00308775622201
+UniRef50_D2ZQG6		0.00317600418799	0.000411978194691	-0.0027640259933
+UniRef50_G7M5P7	Cell wall binding repeat containing protein	0.000347273687573	0.00149190717103	0.00114463348346
+UniRef50_UPI0002C33B71		6.1891197869e-05	7.03108583015e-06	-5.48601120388e-05
+UniRef50_I6T197	Chitin binding protein CbpD	0.000244787443557	0.000248862392015	4.074948458e-06
+UniRef50_B9KM20	PTSINtr with GAF domain, PtsP	0.00622828357139	0.00103566352799	-0.0051926200434
+UniRef50_A9EDR0		0.000237417313196	9.5173615342e-05	-0.000142243697854
+UniRef50_Q4RQQ9	Chromosome 2 SCAF15004, whole genome shotgun sequence	1.13014725629e-05	7.73417822508e-05	6.60403096879e-05
+UniRef50_J3HVJ5		0.000228565962343	0.000212245274184	-1.6320688159e-05
+UniRef50_D8HCA2		0.0020226388606	0.000533704888912	-0.00148893397169
+UniRef50_U0EAS4	Adenine deaminase	0.00109217809168	0.000998155248336	-9.4022843344e-05
+UniRef50_UPI0003C1ADBB		6.23769906392e-06	6.21915146015e-06	-1.854760377e-08
+UniRef50_F8C6I4		7.83165951945e-05	5.24663792293e-06	-7.30699572716e-05
+UniRef50_UPI000474BE5B	hypothetical protein	5.63742923218e-06	0.000104725883986	9.90884547538e-05
+UniRef50_UPI00047B93C9	hypothetical protein	1.26891751512e-05	1.29060405319e-05	2.168653807e-07
+UniRef50_R1CD42		9.16801717706e-05	2.58089128529e-05	-6.58712589177e-05
+UniRef50_A5EUT6	Phosphoglucosamine mutase	4.82415262964e-06	2.54316925875e-05	2.06075399579e-05
+UniRef50_Q53058		0.00218475783613	0.000740425575159	-0.00144433226097
+UniRef50_UPI000287CEB1	4 hydroxythreonine 4 phosphate dehydrogenase	3.69501355878e-05	7.97085367124e-05	4.27584011246e-05
+UniRef50_G6RIH0	Prepilin type N terminal cleavage methylation domain protein	2.46997661441e-05	0.0040920689097	0.00406736914356
+UniRef50_A3UGH3		5.50932157358e-05	7.05373329677e-05	1.54441172319e-05
+UniRef50_J9P8Q4		2.12490180849e-05	5.39629330572e-05	3.27139149723e-05
+UniRef50_F0KF14	Acyl CoA dehydrogenase	0.000135051668988	0.00583146236004	0.00569641069105
+UniRef50_U3T9B5		0.000180327701681	0.00474701565199	0.00456668795031
+UniRef50_P44482	2 dehydro 3 deoxygluconokinase	1.50595174965e-05	1.70382920555e-05	1.978774559e-06
+UniRef50_Q8CMX1	Transcriptional regulator	0.00258205047089	0.0126844066385	0.0101023561676
+UniRef50_V4R7Y3	Hydrogenase expression protein HypA	7.19797112264e-07	6.89010781312e-06	6.17031070086e-06
+UniRef50_S8ENL7		5.477274286e-07	1.00968664856e-05	9.549139057e-06
+UniRef50_W0YWD4	Sensor response regulator hybrid	0.000748229339576	0.000510598424851	-0.000237630914725
+UniRef50_Q7MWN4	Elongation factor P 1	1.05261677856e-05	1.75107588688e-05	6.9845910832e-06
+UniRef50_UPI000372A8A8	hypothetical protein	0.0308348091306	0.00546000547488	-0.0253748036557
+UniRef50_Q0VN20	Aliphatic amidase	0.00113670186582	0.00391987248444	0.00278317061862
+UniRef50_O54461	Beta lactamase	0.0088219028137	0.00451639022296	-0.00430551259074
+UniRef50_V9WM02	MoxR like ATPase	0.00236124573194	0.000661056310422	-0.00170018942152
+UniRef50_F0KI93		0.000323132273634	0.00492883039506	0.00460569812143
+UniRef50_F4PTN3		1.57854807292e-05	0.000289295551579	0.00027351007085
+UniRef50_A6M0Z8	Integral membrane sensor signal transduction histidine kinase	0.000262606461243	0.000404082150784	0.000141475689541
+UniRef50_Q06065	Acetoacetate metabolism regulatory protein AtoC	0.00271277639972	0.000586953393125	-0.00212582300659
+UniRef50_L1K929		0.00107302980842	0.000315262930128	-0.000757766878292
+UniRef50_H3TTB7	FtsK SpoIIIE family protein	0.00181369400756	0.000604744106207	-0.00120894990135
+UniRef50_Q9I2K3		0.00046989957119	0.000298802737126	-0.000171096834064
+UniRef50_UPI0004571B3D	PREDICTED	2.13299073152e-05	0.0001306219132	0.000109292005885
+UniRef50_UPI0002897681	3 oxoadipate enol lactonase	1.05862573869e-05	4.30268138235e-05	3.24405564366e-05
+UniRef50_V9C7N3		0.00019525137354	0.000314166707656	0.000118915334116
+UniRef50_P76080	Putative 1,2 phenylacetyl CoA epoxidase, subunit D	0.00214064927638	0.00017926794122	-0.00196138133516
+UniRef50_A6LS79		0.000422487375095	0.00124146187299	0.000818974497895
+UniRef50_UPI000376E372	hypothetical protein	3.89589639201e-06	1.58550971533e-05	1.19592007613e-05
+UniRef50_UPI00040D66F2	serine threonine protein phosphatase	1.12389394683e-05	1.43369561231e-05	3.0980166548e-06
+UniRef50_O27653	30S ribosomal protein S19e	0.000846694658247	0.00222829965378	0.00138160499553
+UniRef50_W4TX83		0.000189789700572	0.00483271273757	0.004642923037
+UniRef50_A6LS70		0.000289036004135	0.000285330149942	-3.705854193e-06
+UniRef50_UPI0003C14FAA		0.000166660609633	4.22070817812e-05	-0.000124453527852
+UniRef50_A6LUP1	Peptidoglycan glycosyltransferase	0.000772142176353	0.000935993889296	0.000163851712943
+UniRef50_UPI000255BA6E	general secretion pathway protein I	3.24124263893e-05	2.2354823841e-05	-1.00576025483e-05
+UniRef50_UPI0003B5E2AD	ABC transporter	8.03359617502e-05	3.12782999686e-05	-4.90576617816e-05
+UniRef50_D4HCQ8	Methylenetetrahydrofolate reductase	0.000456636276836	0.000567916740756	0.00011128046392
+UniRef50_UPI00040E317A	hypoxanthine phosphoribosyltransferase	3.19796163673e-05	4.95839871114e-05	1.76043707441e-05
+UniRef50_P77658		0.00186668006789	0.00116830758242	-0.00069837248547
+UniRef50_I0C113	Isovaleryl CoA dehydrogenase	0.00605817725938	0.00127652614849	-0.00478165111089
+UniRef50_D8JKL5	DNA polymerase III subunit beta	0.000858992221721	0.00548410960008	0.00462511737836
+UniRef50_UPI0002C34F8A		4.68122146317e-06	5.54093701401e-06	8.5971555084e-07
+UniRef50_E0MMN1		1.58558704661e-05	4.36481772228e-05	2.77923067567e-05
+UniRef50_D1RMY5	Thioesterase family protein	1.08970032187e-05	0.000798824874874	0.000787927871655
+UniRef50_P77657		0.00180367857012	0.00191060592047	0.00010692735035
+UniRef50_UPI000464369A	hypothetical protein	3.74004536252e-05	0.000286787997281	0.000249387543656
+UniRef50_F5M2M3	CheBRA	0.00661375269939	0.00117690669288	-0.00543684600651
+UniRef50_O31219	Aspartate semialdehyde dehydrogenase	0.0084113206791	0.0116524852308	0.0032411645517
+UniRef50_Q28UY2	50S ribosomal protein L11	0.0450617343031	0.0707945800118	0.0257328457087
+UniRef50_P0AEJ4	Osmolarity sensor protein EnvZ	0.00170004430835	0.000293999580636	-0.00140604472771
+UniRef50_K1E414		0.000171723718775	0.000142643098225	-2.908062055e-05
+UniRef50_R9SK13	Phage integrase family protein	0.00149785617481	0.000178799216058	-0.00131905695875
+UniRef50_UPI0003716E27	hypothetical protein	4.45818568992e-06	0.000164660077216	0.000160201891526
+UniRef50_UPI00046FA912	ABC transporter substrate binding protein, partial	1.56505359167e-05	0.00115566324153	0.00114001270561
+UniRef50_UPI00040758D9	hypothetical protein	6.06323873884e-06	5.3587939592e-05	4.75247008532e-05
+UniRef50_UPI00047851F7	peptide ABC transporter permease	5.74563174052e-05	6.00066050513e-05	2.5502876461e-06
+UniRef50_UPI0003B46F2A	ArsR family transcriptional regulator	0.000138190902389	6.46256949344e-05	-7.35652074546e-05
+UniRef50_H1KC86		2.41653561268e-05	6.80122606734e-05	4.38469045466e-05
+UniRef50_A6W0Y0	8 amino 7 oxononanoate synthase	4.68134875144e-06	5.17591720301e-06	4.9456845157e-07
+UniRef50_A6LQ18	Transcriptional regulator, TetR family	0.000547081143264	0.000743615203507	0.000196534060243
+UniRef50_P44917		0.00395794193003	0.00344391700485	-0.00051402492518
+UniRef50_Q8CNS8	Sortase	0.0116566051104	0.00411902800539	-0.00753757710501
+UniRef50_UPI0004418A78	PREDICTED	1.10999035609e-05	4.0012885702e-06	-7.0986149907e-06
+UniRef50_Q9ZM40	Flagellar biosynthesis protein FlhA	5.1475362111e-05	0.00339264232595	0.00334116696384
+UniRef50_Q1GDE2	ATP synthase subunit b 2	0.00392912696703	0.000775579225764	-0.00315354774127
+UniRef50_H2KZ84	Protein C37C3.1, isoform a	3.78557081942e-05	1.64405504429e-05	-2.14151577513e-05
+UniRef50_Q5HLQ2		0.00818263448597	0.00347377885968	-0.00470885562629
+UniRef50_Q5HLQ1		0.00559983324563	0.00383036008974	-0.00176947315589
+UniRef50_Q31ID1	Lipoprotein signal peptidase	1.08524794447e-05	1.5683090399e-05	4.8306109543e-06
+UniRef50_UPI0004018A38	succinate semialdehyde dehydrogenase	5.14022398097e-06	1.54042339146e-05	1.02640099336e-05
+UniRef50_D3S8C7	Hypoxanthine guanine phosphoribosyltransferase	0.00108344230656	0.000322163678398	-0.000761278628162
+UniRef50_I7DNF2		0.000459021597851	4.02889530915e-05	-0.000418732644759
+UniRef50_D3E4Q3		0.00311966974646	0.000202966807698	-0.00291670293876
+UniRef50_Q5HLQ8		0.0198419340317	0.00777697228541	-0.0120649617463
+UniRef50_A3PR56	HpcH HpaI aldolase	0.00155846992109	0.00200651167921	0.00044804175812
+UniRef50_Q2S6N0	Ribosomal RNA small subunit methyltransferase G	3.77421846055e-05	4.05724032981e-05	2.8302186926e-06
+UniRef50_I0TMR6	Gram positive signal peptide protein, YSIRK family	0.0016286634156	0.000735967704826	-0.000892695710774
+UniRef50_UPI00046F57AB	2 oxoglutarate dehydrogenase	1.47487292429e-05	2.2736521734e-05	7.9877924911e-06
+UniRef50_J0XPW7	LPXTG motif cell wall anchor domain protein	7.1833988234e-06	6.87501489099e-07	-6.4958973343e-06
+UniRef50_Q68W26	Queuine tRNA ribosyltransferase	5.56987846554e-06	1.68587115441e-05	1.12888330786e-05
+UniRef50_UPI0002B45411		2.67098942211e-05	1.49044138345e-05	-1.18054803866e-05
+UniRef50_I4EB97	Transposase and inactivated derivative	4.91278094178e-06	8.61183769922e-06	3.69905675744e-06
+UniRef50_P25396	Tellurite resistance protein TehA	0.00250751055345	0.000938326644269	-0.00156918390918
+UniRef50_Q87VS1	tRNA dihydrouridine synthase B	0.00282740476991	0.00039059383359	-0.00243681093632
+UniRef50_Q057P9	Serine hydroxymethyltransferase	8.49069856539e-05	0.000103470254174	1.85632685201e-05
+UniRef50_X6K4S1	Head tail adaptor protein	0.000150171720178	4.65028384463e-05	-0.000103668881732
+UniRef50_P26850	NADH ubiquinone oxidoreductase chain 6	0.000155364531907	3.60642158355e-05	-0.000119300316072
+UniRef50_Q03007	Hydrogenase expression formation protein HupH	0.00153017686735	0.000546259530231	-0.000983917337119
+UniRef50_B7J5S6	Ribose 5 phosphate isomerase A	0.00134717657979	0.00330263630215	0.00195545972236
+UniRef50_P77656		0.0106961871223	0.000577166199074	-0.0101190209232
+UniRef50_A6LU84	Small GTP binding protein	0.000499726509487	0.000967435178252	0.000467708668765
+UniRef50_A6LWF4		0.000663125447862	0.0021953259667	0.00153220051884
+UniRef50_P18868	Superoxide dismutase [Fe]	7.88723856106e-06	2.69943713577e-05	1.91071327966e-05
+UniRef50_A5UKH0	Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS	0.0027161799779	0.00023815863322	-0.00247802134468
+UniRef50_P39352	Putative metabolite transport protein YjhB	0.00178942885126	0.000642924522031	-0.00114650432923
+UniRef50_UPI0004703186	chemotaxis protein CheY, partial	6.93353841637e-05	4.22012111924e-05	-2.71341729713e-05
+UniRef50_C1DWC2	Membrane protein	0.000155248536932	6.17243958791e-05	-9.35241410529e-05
+UniRef50_UPI0003827112	hypothetical protein	7.12000377547e-05	3.7009515076e-05	-3.41905226787e-05
+UniRef50_B0V8D4		0.000188218433003	0.00731610218401	0.00712788375101
+UniRef50_UPI000380411C	hypothetical protein	0.000167275918245	0.00218649093407	0.00201921501582
+UniRef50_UPI0002555E12	dihydrofolate reductase	1.97677306537e-05	2.80831587778e-05	8.3154281241e-06
+UniRef50_A5FVL8	Prolipoprotein diacylglyceryl transferase	8.51530587704e-05	2.41339726503e-05	-6.10190861201e-05
+UniRef50_UPI0003B597DA	short chain dehydrogenase	7.63499378642e-06	7.40313523005e-06	-2.3185855637e-07
+UniRef50_M4WY98	SAM dependent methyltransferase	0.000851928757705	0.000222600531548	-0.000629328226157
+UniRef50_F2CWZ0	Predicted protein 	5.95271062046e-05	0.000403667209988	0.000344140103783
+UniRef50_V9TIQ4	Glycosyltransferase	0.000172476105513	0.000128305592405	-4.4170513108e-05
+UniRef50_N1ZDW1		2.94295977313e-05	9.82373572136e-05	6.88077594823e-05
+UniRef50_A5WEW9	Cysteine  tRNA ligase	2.43012708894e-06	0.00959894352248	0.00959651339539
+UniRef50_H0E5U4	Glyoxalase family protein	1.22471063114e-05	3.17367907771e-05	1.94896844657e-05
+UniRef50_F7X1V6	MFS type transport protein	0.00155281629653	0.000367253076177	-0.00118556322035
+UniRef50_UPI000255639C	ABC transporter permease	3.62809266414e-06	0.000125298111857	0.000121670019193
+UniRef50_U5MRX8	Sensor histidine kinase ResE	0.000375191146479	0.00119865990613	0.000823468759651
+UniRef50_A9FBU8	Methionine  tRNA ligase 1	5.17295699902e-06	4.50976316037e-06	-6.6319383865e-07
+UniRef50_UPI0002F98998	hypothetical protein	1.09927903186e-06	1.23436757579e-06	1.3508854393e-07
+UniRef50_Q8XK37	DNA polymerase IV	4.04427517959e-06	8.09976606299e-06	4.0554908834e-06
+UniRef50_UPI00029A19D9	3 oxoacyl  reductase	1.86003336749e-05	2.97394913879e-05	1.1139157713e-05
+UniRef50_P33015	UPF0394 inner membrane protein YeeE	0.0242149386692	0.00587925926735	-0.0183356794018
+UniRef50_UPI0004692C4A	alpha glucosidase	4.04128471256e-05	3.25544899182e-05	-7.8583572074e-06
+UniRef50_Q8P682	Ribosomal large subunit pseudouridine synthase D	0.00334943668386	0.00197224666554	-0.00137719001832
+UniRef50_F9V6Y3	ATP dependent Clp protease proteolytic subunit	0.00570263811579	0.000307621567909	-0.00539501654788
+UniRef50_UPI000262A74C	ribose ABC transporter permease	5.32665864594e-05	1.76499572247e-05	-3.56166292347e-05
+UniRef50_UPI00047136FC	dTDP glucose 4,6 dehydratase	5.24921540484e-06	6.25153215724e-06	1.0023167524e-06
+UniRef50_K1YIN2		4.01096451738e-06	4.88148357155e-06	8.7051905417e-07
+UniRef50_U5MMQ6	Stage II sporulation P	0.000244471834225	0.000854592165034	0.000610120330809
+UniRef50_Q9FCD1	Urease subunit gamma	0.000258429434312	0.0005089350382	0.000250505603888
+UniRef50_UPI0004416D75	RF 1 domain containing protein	2.81668205788e-06	4.13218574183e-05	3.85051753604e-05
+UniRef50_UPI0003A49BEA	3 phosphoglycerate dehydrogenase	3.9868507309e-05	3.40575009581e-05	-5.8110063509e-06
+UniRef50_UPI00020D91AD	XRE family transcriptional regulator	7.43483556209e-05	0.000279128326833	0.000204779971212
+UniRef50_O33579	Phosphoadenosine phosphosulfate reductase 	1.46639714908e-05	1.57390399562e-05	1.0750684654e-06
+UniRef50_Q6FAE6		0.00031632904094	0.00580366843269	0.00548733939175
+UniRef50_UPI0003AE93A7	PREDICTED	0.000132296491424	0.000133885093534	1.58860211e-06
+UniRef50_UPI000237B0FC	DEAD DEAH box helicase domain protein	5.5924520333e-06	0.00618933658081	0.00618374412878
+UniRef50_UPI00037131BB	hypothetical protein	9.97341897719e-05	0.00325743202213	0.00315769783236
+UniRef50_UPI000361CF9B	hypothetical protein	0.000181591334825	8.58654398998e-05	-9.57258949252e-05
+UniRef50_R5AUS4		1.52037780442e-05	2.36810228574e-05	8.4772448132e-06
+UniRef50_T2EQ25	Helix turn helix domain protein	0.00166608454527	0.000288113858735	-0.00137797068653
+UniRef50_UPI0003B62920	amino acid ABC transporter ATPase	0.000133556188472	1.34429290129e-05	-0.000120113259459
+UniRef50_I9SM88	Flavoprotein oxidoreductase	0.00235928743033	0.0442975057792	0.0419382183489
+UniRef50_P52037		0.00127528965054	0.00100175766806	-0.00027353198248
+UniRef50_D6XAF0	Transcriptional regulator 	0.000666315502637	0.00017392912584	-0.000492386376797
+UniRef50_I3THN3		0.000841148897818	0.00049271195543	-0.000348436942388
+UniRef50_A5ULL2	Adhesin like protein	0.00245763342503	0.000351537442491	-0.00210609598254
+UniRef50_U6M3I8		3.20510913725e-05	2.89005372935e-05	-3.150554079e-06
+UniRef50_Q21TC3	Putative prolin rich exported protein	1.83612194674e-05	5.68022951094e-06	-1.26809899565e-05
+UniRef50_UPI00032A0CE2	PREDICTED	8.25826985281e-06	9.76587279193e-05	8.94004580665e-05
+UniRef50_Q9CF79	Aspartate carbamoyltransferase	0.0131676780485	0.00845498474287	-0.00471269330563
+UniRef50_A9GWZ1		0.000730789728445	0.000255262450271	-0.000475527278174
+UniRef50_UPI000477BC16	ABC transporter ATP binding protein	8.67292517622e-05	7.24422148959e-06	-7.94850302726e-05
+UniRef50_Q184N3	N acetylmuramic acid 6 phosphate etherase	7.33268114256e-06	9.20934145196e-06	1.8766603094e-06
+UniRef50_UPI0003EF6AD2	hypothetical protein	0.000590349688807	0.000364999101269	-0.000225350587538
+UniRef50_P19934	Protein TolA	0.0040214688705	0.000761507007501	-0.003259961863
+UniRef50_C2WHY8	Antisigma factor antagonist, STAS	0.000947341164526	0.000365360349307	-0.000581980815219
+UniRef50_L0A3G2	ABC type metal ion transport system, periplasmic component surface adhesin	0.000167523367831	0.0148776035682	0.0147100802004
+UniRef50_A5UTU3	Peptidoglycan binding domain 1 protein	8.65116055036e-06	5.0644900521e-06	-3.58667049826e-06
+UniRef50_Q17WK7		0.000814693042933	0.00212338613798	0.00130869309505
+UniRef50_J9GTY9		0.00122004432289	8.28536304926e-05	-0.0011371906924
+UniRef50_B9JRL5	Transposase	3.63730340908e-05	2.94162461802e-05	-6.9567879106e-06
+UniRef50_A0A037ZJL2		0.000170721820302	0.000132819199225	-3.7902621077e-05
+UniRef50_A5UJV0	Probable 3 phosphoshikimate 1 carboxyvinyltransferase	0.00278167706262	0.000863764099901	-0.00191791296272
+UniRef50_G7U4Y3		0.00019226790604	0.00299738298451	0.00280511507847
+UniRef50_W0N4N9		0.000202604783069	0.000186795258236	-1.5809524833e-05
+UniRef50_P33228	Protein RecT	0.00239386714412	0.00183133793264	-0.00056252921148
+UniRef50_K2KBM0	Sulfite oxidase subunit YedZ	7.09512539188e-05	2.59479089111e-05	-4.50033450077e-05
+UniRef50_Q5HGR8		0.00243521485344	0.000702314631218	-0.00173290022222
+UniRef50_UPI00034742BC	hypothetical protein	5.63730120781e-06	0.000334189854387	0.000328552553179
+UniRef50_UPI00047A7CB2	DNA mismatch repair protein MutT	9.88724964352e-06	6.61209898448e-05	5.62337402013e-05
+UniRef50_D1GUM7	Probable siderophore biosynthesis protein SbnA	0.0148637308871	0.00169477649664	-0.0131689543905
+UniRef50_A0A022P693		0.000569240968097	0.000443699278139	-0.000125541689958
+UniRef50_F0L7M8	Transcriptional regulator, GntR family	0.00169853613007	0.00197041611899	0.00027187998892
+UniRef50_U5WK69		0.000976474198911	0.000194500574217	-0.000781973624694
+UniRef50_X5EXM8	Glycosyl transferase	0.000280239524405	0.000387519549816	0.000107280025411
+UniRef50_UPI000363A82D	hypothetical protein	3.22718469417e-05	4.5148619415e-05	1.28767724733e-05
+UniRef50_Q8CS03		0.00947913578412	0.00288158408082	-0.0065975517033
+UniRef50_Q8CS02		0.00188348440519	0.000546882787401	-0.00133660161779
+UniRef50_P29018	ATP binding permease protein CydD	0.00229030241694	0.00110439726391	-0.00118590515303
+UniRef50_Q8CS00		0.0103572605038	0.00299171270556	-0.00736554779824
+UniRef50_UPI00047DEE62	hypothetical protein	0.00108211581057	0.000190342861798	-0.000891772948772
+UniRef50_B2GKX1	O acetylhomoserine  lyase	0.0177439382789	0.0118076687546	-0.0059362695243
+UniRef50_Q8CS04		0.00315742328581	0.000590142034844	-0.00256728125097
+UniRef50_M4BT40		0.000146858441804	0.000414930542032	0.000268072100228
+UniRef50_A4WS78	Signal transduction histidine kinase	0.00538570611265	0.00171979358173	-0.00366591253092
+UniRef50_Q9RTF4		0.00103895226289	0.00705999066355	0.00602103840066
+UniRef50_E3FY93	Fibronectin type III domain protein	1.17128833081e-06	2.1915480541e-05	2.07441922102e-05
+UniRef50_UPI0003666F64	hypothetical protein	1.0507380625e-05	1.59119537993e-05	5.4045731743e-06
+UniRef50_UPI00047D0052	hypothetical protein, partial	1.67163930338e-05	2.08642588941e-05	4.1478658603e-06
+UniRef50_Q65MD5	UPF0753 protein BLi00845 BL00917	8.64083282815e-06	0.000491866063033	0.000483225230205
+UniRef50_Q9RTF9		0.000175574878536	0.0130618619574	0.0128862870789
+UniRef50_Q9RUC1	SsrA binding protein	0.000238915182824	0.0331756388493	0.0329367236665
+UniRef50_A1WR56	Oxidoreductase FAD binding domain protein	0.0140584201309	0.00669403384336	-0.00736438628754
+UniRef50_G8U508	DNA directed RNA polymerase	0.000131954380742	0.00200828367244	0.0018763292917
+UniRef50_P37478	Transcriptional regulatory protein YycF	0.0110149563229	0.00562359779721	-0.00539135852569
+UniRef50_B7GY06	3 oxoadipate enol lactonase 2	0.000620041420128	0.00481444432024	0.00419440290011
+UniRef50_O26858	Endonuclease III	0.00498845489152	0.000416917701458	-0.00457153719006
+UniRef50_Q6GAV6	Coenzyme A disulfide reductase	0.00789921248907	0.000763789910027	-0.00713542257904
+UniRef50_B0K8B2	Chorismate synthase	2.07610984002e-05	0.00021091136051	0.00019015026211
+UniRef50_Q8DTC7	Chaperone protein ClpB	0.00533918440011	0.0022109248304	-0.00312825956971
+UniRef50_Q3SFC9	Dihydroxy acid dehydratase	0.00376069344137	0.000635884848475	-0.00312480859289
+UniRef50_B7H186	FhuE receptor	6.53844091497e-05	0.0049880673943	0.00492268298515
+UniRef50_X1BNR5	Marine sediment metagenome DNA, contig	2.06504580609e-05	5.59046047906e-05	3.52541467297e-05
+UniRef50_A3PWR0	Nitric oxide reductase, NorZ apoprotein	0.00034044194681	0.0054231420636	0.00508270011679
+UniRef50_B7H4G2	Opine oxidase subunit A	0.00013198810799	0.0120781402686	0.0119461521606
+UniRef50_Q8TYD7	GMP synthase [glutamine hydrolyzing] subunit B	0.00286690139835	0.00189303208621	-0.00097386931214
+UniRef50_A0AYH9	Transcriptional regulator, LysR family	0.000123901309249	0.00311019322598	0.00298629191673
+UniRef50_P77804	Protein YdgA	0.00234066627055	0.000696885418981	-0.00164378085157
+UniRef50_E3GWU1	Radical SAM domain protein	0.00314492234277	0.000969791778839	-0.00217513056393
+UniRef50_X1I3C3	Marine sediment metagenome DNA, contig	2.29214721782e-05	2.99570050762e-05	7.035532898e-06
+UniRef50_UPI0003814C5C	hypothetical protein	0.000119891435221	0.000132805091763	1.2913656542e-05
+UniRef50_R5SU23		8.02697736249e-06	6.30031567142e-06	-1.72666169107e-06
+UniRef50_UPI00045E9580	macrolide ABC transporter ATP binding protein	1.49711890819e-05	6.44543156809e-05	4.9483126599e-05
+UniRef50_B2ULR4	Bifunctional protein PyrR	1.34848221917e-05	8.86866134317e-05	7.520179124e-05
+UniRef50_A9KCM9	BolA	3.01647321862e-05	0.000101075491463	7.09107592768e-05
+UniRef50_C1CVP1	Ribosome recycling factor	0.000218199993555	0.0354299737415	0.0352117737479
+UniRef50_G7MCQ9	ABC type transporter, integral membrane subunit	0.000613986828896	0.00139444730836	0.000780460479464
+UniRef50_B3DRY6	Bifunctional purine biosynthesis protein PurH	2.6486789968e-06	1.77147347963e-05	1.50660557995e-05
+UniRef50_H1G027		1.56116992561e-05	2.43115455811e-05	8.699846325e-06
+UniRef50_D3MIV3	Peptidase, M16 family	0.000226718311622	0.00668854626663	0.00646182795501
+UniRef50_R4ZWW3	PTS system, galactitol specific IIC component	0.000869192638007	0.000999538161359	0.000130345523352
+UniRef50_U8B0J7		0.000518183557978	0.000343945912219	-0.000174237645759
+UniRef50_UPI000374EC18	hypothetical protein	4.99872153593e-05	0.000586898500224	0.000536911284865
+UniRef50_UPI00036B9450	hypothetical protein	1.75695431869e-05	1.98088847462e-06	-1.55886547123e-05
+UniRef50_UPI000370E751	hypothetical protein	5.44963059974e-05	7.33102245217e-06	-4.71652835452e-05
+UniRef50_C6SNZ9		0.00492207714096	0.000717081644945	-0.00420499549602
+UniRef50_B8G2Q5	Cytidylate kinase	1.36281666374e-05	2.42597041569e-05	1.06315375195e-05
+UniRef50_UPI0003809B2B	hypothetical protein	1.23160486197e-05	0.000126591717211	0.000114275668591
+UniRef50_C7ZTG5	Glycosyl transferase	0.014954770324	0.0015921349195	-0.0133626354045
+UniRef50_Q8YD09	Bifunctional imidazolonepropionase histidine ammonia lyase	1.56719494513e-06	4.26088746529e-05	4.10416797078e-05
+UniRef50_H4U829	Hydrogenase accessory protein HypB	0.00148974325882	0.000688711730073	-0.000801031528747
+UniRef50_Q5FUG4	3 isopropylmalate dehydratase small subunit	0.0175692221427	0.00215737735038	-0.0154118447923
+UniRef50_D6ZU16	Glycerate kinase	0.00155180822735	0.00242593427238	0.00087412604503
+UniRef50_UPI00026288A1	hypothetical protein	2.31766341306e-06	0.000416969038085	0.000414651374672
+UniRef50_Q2S158	Aspartate  tRNA ligase	3.12312628212e-06	0.00825784797146	0.00825472484518
+UniRef50_A7X770	ATP phosphoribosyltransferase	0.0101935989528	0.00666135996184	-0.00353223899096
+UniRef50_UPI00036DFED1	MULTISPECIES	3.2976425846e-05	5.85964362855e-05	2.56200104395e-05
+UniRef50_P07822	Iron hydroxamate binding protein FhuD	0.00208461444654	0.000793292768142	-0.0012913216784
+UniRef50_U6I825	Zinc finger protein 341	7.82951039281e-05	7.9040042468e-05	7.449385399e-07
+UniRef50_B2VIL6	Ubiquinone biosynthesis O methyltransferase	0.000147263714763	0.000281042008797	0.000133778294034
+UniRef50_Q6D3A9	Glutathione import ATP binding protein GsiA	0.0027166830581	0.000915446067899	-0.0018012369902
+UniRef50_F8H1K8	Chemotaxis transducer	0.00104644365957	0.000392743874731	-0.000653699784839
+UniRef50_Q0AXL3	Peptide deformylase	6.44861604208e-06	1.44844697055e-05	8.03585366342e-06
+UniRef50_J3N076		2.91696897156e-05	0.000273746690366	0.00024457700065
+UniRef50_V4V1N3		0.000329202897256	0.000269285749417	-5.9917147839e-05
+UniRef50_UPI0002191AAA	replication initiation protein	0.000212250100338	9.45082511593e-05	-0.000117741849179
+UniRef50_X1NJX5	Marine sediment metagenome DNA, contig	8.97212298765e-06	6.49761880694e-05	5.60040650818e-05
+UniRef50_B0U1N1	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00913814578866	0.002904872743	-0.00623327304566
+UniRef50_I4AP74	O acetylhomoserine sulfhydrylase	0.000376162982168	0.000899768045418	0.00052360506325
+UniRef50_R7PTJ2	Predicted ATPase involved in DNA repair	0.00244458684891	0.000517001043326	-0.00192758580558
+UniRef50_Q81G06	Histidinol dehydrogenase	3.93926476448e-06	6.03117589805e-06	2.09191113357e-06
+UniRef50_S1GW72	Autoinducer 2 kinase LsrK	0.00216597231677	0.000546882787401	-0.00161908952937
+UniRef50_UPI00037675A5	hypothetical protein	2.55536300176e-05	1.66172493484e-05	-8.9363806692e-06
+UniRef50_P06999	ATP dependent 6 phosphofructokinase isozyme 2	0.00293851928884	0.000398179827223	-0.00254033946162
+UniRef50_X1DD44	Marine sediment metagenome DNA, contig	0.000135118283823	3.2429155335e-05	-0.000102689128488
+UniRef50_K0ZUL0	Replication initiator protein A protein	6.47859419759e-06	5.11901190062e-06	-1.35958229697e-06
+UniRef50_S2WX32	Polyphosphate kinase	0.000113947921988	0.00565192022217	0.00553797230018
+UniRef50_G0DRX2		0.000374986081636	0.000868578544689	0.000493592463053
+UniRef50_R6ESV1		2.04989088667e-05	2.46507692003e-05	4.1518603336e-06
+UniRef50_UPI0004719DB7	ABC transporter	2.45422070974e-06	3.90619031269e-06	1.45196960295e-06
+UniRef50_UPI00036E309D	hypothetical protein	3.62529285432e-06	1.98283870066e-05	1.62030941523e-05
+UniRef50_UPI000362C308	hypothetical protein	0.00570725105787	0.000865534902244	-0.00484171615563
+UniRef50_UPI00036A7F13	hypothetical protein	2.55784353542e-05	4.21281825015e-06	-2.13656171041e-05
+UniRef50_A7X4P8	Holo [acyl carrier protein] synthase	0.00359001701015	0.000516588988672	-0.00307342802148
+UniRef50_J7N1F5	Teichoic acid biosynthesis protein B family protein	0.0237707360528	0.00474298684634	-0.0190277492065
+UniRef50_A0A034GY86	Azaleucine resistance protein AzlC	4.69094440527e-05	3.15413185886e-05	-1.53681254641e-05
+UniRef50_V6U6B5		0.000322390049211	0.00036970888349	4.7318834279e-05
+UniRef50_B0SW92		0.000171799375959	7.39978776146e-05	-9.78014983444e-05
+UniRef50_J0CH97		3.1646394846e-05	2.5116673533e-05	-6.529721313e-06
+UniRef50_B2VHU9	Adenine phosphoribosyltransferase	3.24908098978e-05	1.63089275807e-05	-1.61818823171e-05
+UniRef50_M7DRE6	Transposon protein	0.00641392057456	0.000707138259181	-0.00570678231538
+UniRef50_Q8G7Y6	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000211878320628	0.00648924587117	0.00627736755054
+UniRef50_D1B2W6		4.20646833606e-05	6.30860352391e-05	2.10213518785e-05
+UniRef50_UPI000471F8A5	hypothetical protein	9.96621724212e-05	5.45286899571e-05	-4.51334824641e-05
+UniRef50_W0L7A3	AAT family amino acid transporter	0.000601047681903	0.000254054674718	-0.000346993007185
+UniRef50_P23669	Threonine synthase	0.000290022701184	0.0383347011995	0.0380446784983
+UniRef50_K4S1D1		0.000152212092278	2.84036977267e-05	-0.000123808394551
+UniRef50_UPI00035D2EF1	hypothetical protein	2.54283141328e-05	2.59626016317e-05	5.342874989e-07
+UniRef50_P54517	3 dehydroquinate dehydratase	0.000549297682778	0.0816695787821	0.0811202810993
+UniRef50_UPI0003C13F0C	PREDICTED	0.000103615913215	3.06378321006e-05	-7.29780811144e-05
+UniRef50_UPI0004711337	hypothetical protein	0.000111024693234	0.000750538228566	0.000639513535332
+UniRef50_Q6BF16	2 dehydro 3 deoxy 6 phosphogalactonate aldolase	0.00170742647499	0.00126876993397	-0.00043865654102
+UniRef50_V6MLI1		4.24078677035e-05	0.000183161495439	0.000140753627735
+UniRef50_UPI0003AA777F	hypothetical protein	7.8523302985e-05	0.000212208784433	0.000133685481448
+UniRef50_Q2RWR9	Light independent protochlorophyllide reductase subunit B	0.000254560331955	1.59474598804e-05	-0.000238612872075
+UniRef50_D2ZR32		0.00317551299089	0.00292163659538	-0.00025387639551
+UniRef50_E4UD93		7.31611406844e-05	4.63072628498e-05	-2.68538778346e-05
+UniRef50_P55995	Lon protease	0.000144271651601	0.00243176166838	0.00228749001678
+UniRef50_Q09580	Probable GMP synthase [glutamine hydrolyzing]	2.77076506611e-06	3.80762783076e-06	1.03686276465e-06
+UniRef50_Q18FG3	CTP synthase	6.23446819532e-06	0.00020174364918	0.000195509180985
+UniRef50_B1XZN1	Protease Do	0.00124996424237	0.000559370466766	-0.000690593775604
+UniRef50_UPI0004705E36	ABC transporter substrate binding protein	1.00796048995e-05	1.35195029217e-05	3.4398980222e-06
+UniRef50_UPI0003B69A56	signal recognition particle, partial	7.12264366523e-06	2.40897757354e-05	1.69671320702e-05
+UniRef50_A0L3M0	Biotin synthase	4.61669780197e-06	1.80576090261e-05	1.34409112241e-05
+UniRef50_UPI0003B4EA07	transposase ISSod13	1.477178825e-05	6.3086796412e-05	4.8315008162e-05
+UniRef50_W8QW60	Lipoprotein	0.000610653276963	0.00041337386219	-0.000197279414773
+UniRef50_UPI0001FE2A0F	phospho 2 dehydro 3 deoxyheptonate aldolase	2.39917669223e-05	4.36138947983e-06	-1.96303774425e-05
+UniRef50_I0C5E5		0.0108766569786	0.000798177414467	-0.0100784795641
+UniRef50_P07658	Formate dehydrogenase H	0.00370533294739	0.000965600641632	-0.00273973230576
+UniRef50_J1E3J1		0.00148712953523	0.000973571555587	-0.000513557979643
+UniRef50_J7QJA6	SPFH domain   band 7 family protein	0.000604884381308	0.00089552099581	0.000290636614502
+UniRef50_UPI0004776671	heat shock protein Hsp33	0.000270577728831	0.000218441107368	-5.2136621463e-05
+UniRef50_P32051		0.000279346522841	0.000115487565524	-0.000163858957317
+UniRef50_C3GUE0	Alcohol dehydrogenase GroES domain protein	0.000175032143208	0.00190735761525	0.00173232547204
+UniRef50_UPI000472812C	hypothetical protein	8.51989178709e-05	4.88846429145e-06	-8.03104535795e-05
+UniRef50_R1ALN2		0.000241462252992	0.00031983758685	7.8375333858e-05
+UniRef50_UPI000478EC80	hypothetical protein	6.98586484844e-06	1.25555570006e-05	5.56969215216e-06
+UniRef50_UPI000479C4BA	MFS transporter	5.30949588193e-06	1.56224775903e-05	1.03129817084e-05
+UniRef50_U3T7W9		0.000936607797792	0.00574592944676	0.00480932164897
+UniRef50_A4IJB8	Ribosomal RNA small subunit methyltransferase A	5.24567330848e-05	2.20134410198e-05	-3.0443292065e-05
+UniRef50_X1R1D8	Marine sediment metagenome DNA, contig	2.7838324363e-05	3.38350365452e-05	5.9967121822e-06
+UniRef50_UPI000372FCE9	hypothetical protein	4.38166925355e-06	6.64063069258e-05	6.20246376723e-05
+UniRef50_UPI000428F92B	chemotaxis protein CheR	0.000228015843763	0.00010140946232	-0.000126606381443
+UniRef50_K2F9K7		0.000177972950428	0.000275730957517	9.7758007089e-05
+UniRef50_M8DGK3		0.00323559419016	0.0148311731469	0.0115955789567
+UniRef50_C6WMT0		8.01439071958e-05	3.92897523446e-05	-4.08541548512e-05
+UniRef50_B8ZR59	Ribonuclease PH	1.47781175576e-05	2.20404192462e-05	7.2623016886e-06
+UniRef50_UPI000474B21F	porin	0.00019725458607	4.71499843053e-05	-0.000150104601765
+UniRef50_H9KFK6		1.02576622508e-06	2.4755441389e-06	1.44977791382e-06
+UniRef50_P23160	34.2 kDa protein in rubredoxin operon	0.000380167100671	0.00234258368332	0.00196241658265
+UniRef50_UPI00016C0EFE	tagatose bisphosphate aldolase, partial	7.13004778866e-06	0.000202503536621	0.000195373488832
+UniRef50_K7S7L1	Drug resistance MFS transporter, drug	0.000187176344854	0.00298870740571	0.00280153106086
+UniRef50_H1R8C9		0.00255930873442	0.00243563045475	-0.00012367827967
+UniRef50_Q6A7W9	NAD kinase	0.000184740288181	0.00979345085327	0.00960871056509
+UniRef50_UPI000334035B	PREDICTED	9.51943504312e-05	3.63412218712e-05	-5.885312856e-05
+UniRef50_UPI00036D6A4E	hypothetical protein	0.000137196393215	1.01062626954e-05	-0.00012709013052
+UniRef50_F0KFU5		5.3629395291e-06	0.00565326475231	0.00564790181278
+UniRef50_P59210	Regulatory protein RecX	0.00426187714962	0.00437926485832	0.0001173877087
+UniRef50_Q9RX92	Single stranded DNA binding protein DdrA	0.000181193274649	0.0104170248907	0.0102358316161
+UniRef50_UPI00046E5527	DNA polymerase IV	3.05611113412e-06	6.18071952887e-06	3.12460839475e-06
+UniRef50_UPI0004133718	phosphopantetheine adenylyltransferase	1.4494256663e-05	1.77881648403e-05	3.2939081773e-06
+UniRef50_B3WF00	tRNA dimethylallyltransferase	5.36728692198e-06	7.34228059238e-06	1.9749936704e-06
+UniRef50_Q8CT65		0.014620603275	0.00701764692989	-0.00760295634511
+UniRef50_A6M077	Transcriptional regulator, MarR family	0.000291870609934	0.0022219020663	0.00193003145637
+UniRef50_Q5HL47		0.0105786317969	0.00361078024366	-0.00696785155324
+UniRef50_G2XMI1	Hypothetical_protein	1.76008782196e-05	3.94499770079e-05	2.18490987883e-05
+UniRef50_U3QV92	N acetyl anhydromuranmyl L alanine amidase	0.00325920959562	0.00228375937235	-0.00097545022327
+UniRef50_Q46D36	2 cys peroxiredoxin, subunit A	0.000489184988913	0.000446322476372	-4.2862512541e-05
+UniRef50_Q49WA8		0.00846796228654	0.000792220826285	-0.00767574146026
+UniRef50_P48924	NADH ubiquinone oxidoreductase chain 6	0.000156395330266	3.89457286124e-05	-0.000117449601654
+UniRef50_P19765	Insertion element IS1 protein InsB	0.000385189784541	0.00244605755818	0.00206086777364
+UniRef50_P37329	Molybdate binding periplasmic protein	0.00513967355875	0.000707475113025	-0.00443219844573
+UniRef50_F3ZLD3		0.000182289081746	0.000206109014451	2.3819932705e-05
+UniRef50_A5ULS6	Transcriptional activator	0.00489828015995	0.000873176457548	-0.0040251037024
+UniRef50_UPI000255E297	cobinamide adenolsyltransferase	5.78782405088e-05	0.00340786668262	0.00334998844211
+UniRef50_P11551	L fucose proton symporter	0.00149024098429	0.000516338772935	-0.000973902211355
+UniRef50_Q5XCB9	Putative NADH nitroreductase Spy0809	0.00580300403822	0.00648984392626	0.00068683988804
+UniRef50_A4SZM1	Glutamine  tRNA ligase	0.000226669038139	0.000585261468638	0.000358592430499
+UniRef50_W6K439		5.12763621579e-05	1.12797752791e-05	-3.99965868788e-05
+UniRef50_UPI000255A647	hypothetical protein	2.37212705831e-05	1.27675722166e-05	-1.09536983665e-05
+UniRef50_M4ZGM6	PTS system, 3 keto L gulonate specific IIB component	0.000810348186513	0.000760472202226	-4.9875984287e-05
+UniRef50_K0LCS5	Sulfite reductase  alpha subunit	0.0248514044015	0.00449535662932	-0.0203560477722
+UniRef50_D9SQP8	YhhN family protein	0.000493600794051	0.000570031624348	7.6430830297e-05
+UniRef50_UPI000255AA05	3 hydroxybutyrate dehydrogenase, partial	0.000220896778268	0.00032203874492	0.000101141966652
+UniRef50_E2QLB6	C4 dicarboxylate binding periplasmicprote in	0.011406222281	0.00266474772113	-0.00874147455987
+UniRef50_Q2NGX7		0.00059291399331	0.000644327356797	5.1413363487e-05
+UniRef50_D5RU63		7.8431940772e-06	6.52581587215e-05	5.74149646443e-05
+UniRef50_D6M4D2	Nogalamycin resistance protein SnorO	3.51337358496e-06	3.89185400082e-05	3.54051664232e-05
+UniRef50_A0A028PVV2	Lactate dehydrogenase	0.00246811448246	0.000379711036505	-0.00208840344595
+UniRef50_A6W2Y6	PfkB domain protein	0.00041177469548	0.000655510165066	0.000243735469586
+UniRef50_UPI00037B582D	hypothetical protein	0.00011168952412	8.69198172477e-05	-2.47697068723e-05
+UniRef50_X5HEL8	Alkyl hydroperoxide reductase	0.000116398560529	0.000190635416028	7.4236855499e-05
+UniRef50_Q03K00	ABC type multidrug transport system, permease component	0.00737999127257	0.000241074861385	-0.00713891641119
+UniRef50_O34512		0.000758252431427	0.00594254443063	0.0051842919992
+UniRef50_A6LQS2	Metal dependent phosphohydrolase	0.00198571452162	0.00260441625686	0.00061870173524
+UniRef50_UPI00036F122F	hypothetical protein	5.31141996539e-05	7.61631486805e-06	-4.54978847859e-05
+UniRef50_Q8GNZ1	Rep1	0.00492007061126	0.000843642587898	-0.00407642802336
+UniRef50_L1K8E5		0.00192960502688	1.07672354005e-05	-0.00191883779148
+UniRef50_Q3IVQ7		0.000109117967776	0.000249220233964	0.000140102266188
+UniRef50_A0A009CML4	Surface protein G	0.00176237235561	0.00225190517071	0.0004895328151
+UniRef50_UPI0004560170	hypothetical protein PFL1_00672	9.84704557944e-05	3.53474105363e-05	-6.31230452581e-05
+UniRef50_UPI0004736936	hypothetical protein, partial	1.37102730109e-05	5.42533653659e-05	4.0543092355e-05
+UniRef50_X5HTN1	Biofilm synthesis protein	0.00010614802384	0.00423095276818	0.00412480474434
+UniRef50_Q1RGX4	Lipoyl synthase	0.00747414202997	0.000847949748779	-0.00662619228119
+UniRef50_I3YAK9	Proline iminopeptidase	0.000246144750781	0.000383793876199	0.000137649125418
+UniRef50_Q2YV92		0.0129379010153	0.00264618521775	-0.0102917157976
+UniRef50_UPI00046D6590	hypothetical protein	0.000110403675481	1.59313951595e-05	-9.44722803215e-05
+UniRef50_UPI000362AF2C	hypothetical protein	3.64046394639e-05	2.6270241094e-05	-1.01343983699e-05
+UniRef50_Q8DT23	S adenosylmethionine synthase	0.00619315117993	0.000941558918183	-0.00525159226175
+UniRef50_UPI0003ADBFFE	PREDICTED	2.08720010393e-05	2.87353820168e-05	7.8633809775e-06
+UniRef50_A4JKW7	Major facilitator superfamily MFS_1	0.00112910833939	0.000826114833423	-0.000302993505967
+UniRef50_W5VF97	ATPase	5.53455376421e-05	4.18394387606e-05	-1.35060988815e-05
+UniRef50_B9AGK2		0.00642758079257	0.000453476387174	-0.0059741044054
+UniRef50_UPI0002488527	hypothetical protein	7.04413658293e-05	2.89464911362e-05	-4.14948746931e-05
+UniRef50_Q5LLN2	Dephospho CoA kinase	0.00062158264181	0.000391147953907	-0.000230434687903
+UniRef50_Q93Z70	Probable N acetyl gamma glutamyl phosphate reductase, chloroplastic	6.03080642009e-05	4.23970424209e-05	-1.791102178e-05
+UniRef50_Q1CV54		0.000516482740875	0.00205630799377	0.0015398252529
+UniRef50_S9U7T2	Solute carrier family 39 , member 1 2 3	2.6426198099e-05	0.000180793668234	0.000154367470135
+UniRef50_UPI00039DF06E	hypothetical protein	3.41279982195e-05	5.36642369426e-06	-2.87615745252e-05
+UniRef50_UPI0002378355	cystathionine beta lyase	9.73673120119e-06	1.41385853007e-05	4.40185409951e-06
+UniRef50_I6TQY3	Alpha beta hydrolase	0.00400829099202	0.0015111363497	-0.00249715464232
+UniRef50_F6CZ33	AsmA family protein	1.53678330736e-06	1.75217784758e-06	2.1539454022e-07
+UniRef50_UPI0003A40D95	dehydrogenase	1.71183054011e-06	1.16303984539e-05	9.91856791379e-06
+UniRef50_A6LT40	Phage integrase family protein	0.000176120990128	0.000923717368627	0.000747596378499
+UniRef50_A8F1C5	NADH quinone oxidoreductase subunit D	2.72989312928e-05	5.69265240448e-05	2.9627592752e-05
+UniRef50_A3QJ60		3.65883834415e-05	1.73998254933e-05	-1.91885579482e-05
+UniRef50_X2H5U3		0.000713033898912	0.00364424347889	0.00293120957998
+UniRef50_UPI000328E03F	PREDICTED	0.00030773851109	0.000525595856749	0.000217857345659
+UniRef50_A0A037ZQW3	Chromosome partitioning protein ParA	2.85452048409e-05	7.92152142789e-05	5.0670009438e-05
+UniRef50_A9B2Q5	Aminomethyltransferase	2.09469785559e-05	2.16496345351e-05	7.026559792e-07
+UniRef50_Q6GDH0	Carbamate kinase 2	0.0138025709526	0.00386581497156	-0.00993675598104
+UniRef50_A9CLS9		1.52410409167e-05	0.000729942624529	0.000714701583612
+UniRef50_Q59266	4 alpha glucanotransferase	0.000386332411414	0.00276906262183	0.00238273021042
+UniRef50_Q9CJS1	ATP dependent RNA helicase RhlB	0.00178983202047	0.000576320433583	-0.00121351158689
+UniRef50_A6M113	CheA signal transduction histidine kinase	0.000296146035164	0.00117233099005	0.000876184954886
+UniRef50_UPI000310CC9F	C4 dicarboxylate ABC transporter	6.10350673584e-06	1.37205802685e-05	7.61707353266e-06
+UniRef50_P77930	Bacterioferritin	0.00015322765884	0.0105728180323	0.0104195903735
+UniRef50_B9MJH4	Biotin synthase	0.0022712549375	0.0082576251672	0.0059863702297
+UniRef50_I0EIM7	Fucosyltransferase	0.000210757552288	0.0071965523592	0.00698579480691
+UniRef50_UPI0003B315F6	deoxyguanosinetriphosphate triphosphohydrolase	0.000117367724376	2.39213697482e-05	-9.34463546278e-05
+UniRef50_Q0AM89		5.23807335475e-06	0.000517718723785	0.00051248065043
+UniRef50_Q9RWF7	UDP glucose 4 epimerase, putative	0.000216531159953	0.0320619284332	0.0318453972732
+UniRef50_UPI00036BC390	hypothetical protein	8.78125982316e-05	1.04066611986e-05	-7.7405937033e-05
+UniRef50_B1KTG4	Glutamate racemase	0.000569646163234	0.00041545197336	-0.000154194189874
+UniRef50_UPI00047ECB6C	hypothetical protein	1.30435070366e-06	2.31000919179e-05	2.17957412142e-05
+UniRef50_UPI0002377A5A	flagellar basal body P ring protein, partial	7.53903847578e-05	4.63279600798e-05	-2.9062424678e-05
+UniRef50_B3WF19	Phenylalanine  tRNA ligase alpha subunit	0.025359766962	0.0147225722693	-0.0106371946927
+UniRef50_UPI000360FD43	hypothetical protein	4.63865287782e-06	6.76460391419e-05	6.30073862641e-05
+UniRef50_B1J595	Hydrolase, alpha beta fold family	0.000136935667056	0.000860222715458	0.000723287048402
+UniRef50_UPI00046E9EAA	peptide ABC transporter permease	4.36104846346e-05	5.07013831364e-05	7.0908985018e-06
+UniRef50_A5UJB4	Putative transposase	0.0211444271328	0.00296404468402	-0.0181803824488
+UniRef50_Q57N58		6.53488926519e-05	0.000542894065856	0.000477545173204
+UniRef50_UPI0002B4C28A	PREDICTED	9.24170305512e-06	4.36142557167e-05	3.43725526616e-05
+UniRef50_UPI0003A5EC9D	hypothetical protein	0.00024649387294	0.000297798358178	5.1304485238e-05
+UniRef50_UPI000418F39C	glycosyl transferase	1.58039777767e-05	1.40363762127e-05	-1.767601564e-06
+UniRef50_S3ANI4		0.000104810425869	3.93087257461e-05	-6.55017001229e-05
+UniRef50_B9KTI2		0.000360328859787	0.00035873433672	-1.594523067e-06
+UniRef50_UPI00045D9861	PREDICTED	5.27446951194e-06	0.000159304303971	0.000154029834459
+UniRef50_UPI00022CAA7D	PREDICTED	0.0028929446423	0.000786007976872	-0.00210693666543
+UniRef50_UPI000288AA6A	riboflavin synthase subunit alpha	1.80391184681e-05	1.52491920597e-05	-2.7899264084e-06
+UniRef50_A6LTI2	Signal transduction histidine kinase regulating citrate malate metabolism	0.0008909823002	0.00140950392552	0.00051852162532
+UniRef50_C5N6M7		0.0102905817507	0.00023815863322	-0.0100524231175
+UniRef50_W6VNR8		6.00241511792e-05	0.000135229329591	7.52051784118e-05
+UniRef50_Q6YTQ3		0.000327240139295	0.000422529031195	9.52888919e-05
+UniRef50_UPI0003B3015D	DNA directed RNA polymerase subunit alpha, partial	5.18412173225e-06	1.10923936579e-05	5.90827192565e-06
+UniRef50_D3QGV6		0.0121287276709	0.00523999172167	-0.00688873594923
+UniRef50_U3QX72	GntR family transcriptional regulator	0.00128197014836	0.00332626120494	0.00204429105658
+UniRef50_A5UKM5	6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB	0.00277479063826	0.000501161660873	-0.00227362897739
+UniRef50_UPI00034DE84F	ABC transporter permease	2.12250811283e-05	0.000122659462902	0.000101434381774
+UniRef50_UPI00046C9569	hypothetical protein	1.10739205926e-05	6.43258338839e-05	5.32519132913e-05
+UniRef50_W9GJ85	Transcriptional regulator	3.65539529709e-06	1.20840586725e-05	8.42866337541e-06
+UniRef50_X8FK87	 binding domain protein	0.0165654163339	0.00339189547824	-0.0131735208557
+UniRef50_I6TYV1	Phage associated cell wall hydrolase	0.00100662930361	0.00217936040507	0.00117273110146
+UniRef50_UPI000471FDE5	membrane protein	1.9463527258e-05	5.19044610804e-05	3.24409338224e-05
+UniRef50_A8B5Y9		0.000113809673637	0.000619356268256	0.000505546594619
+UniRef50_J8PEK3		2.19262028083e-05	3.37538434873e-05	1.1827640679e-05
+UniRef50_Q72PJ7	2 oxoglutarate dehydrogenase E1 component	2.02471641175e-06	8.40877917307e-06	6.38406276132e-06
+UniRef50_A3JLI9		1.50135827591e-05	9.89688039901e-06	-5.11670236009e-06
+UniRef50_UPI00031F6CF4	hypothetical protein	0.000408761562644	0.000414494370311	5.732807667e-06
+UniRef50_D0K9Z2	Glycosyltransferase stabilizing protein Gtf2	0.0129972223263	0.00145299990964	-0.0115442224167
+UniRef50_UPI00046D6398	hypothetical protein	4.10090065992e-06	0.000303905032514	0.000299804131854
+UniRef50_K8CED6		9.08829735005e-05	0.000129558264083	3.86752905825e-05
+UniRef50_B9XI35		2.9033758e-05	8.91693641059e-05	6.01356061059e-05
+UniRef50_P21824	Chemotaxis protein methyltransferase	0.00189724813346	0.000449606032923	-0.00144764210054
+UniRef50_A7FAU8		0.000290190797016	0.0150241883261	0.0147339975291
+UniRef50_N3H3N3	ThiC associated domain protein	1.52762855114e-05	4.42498746558e-05	2.89735891444e-05
+UniRef50_UPI0003B6CE6C	gas vesicle protein GvpS	0.000323921906157	0.000169837366082	-0.000154084540075
+UniRef50_G7M8E0	Cell wall binding repeat containing protein	0.000120090982672	0.00257760363653	0.00245751265386
+UniRef50_O83041	Probable proline iminopeptidase	6.82716177001e-06	9.7607547662e-06	2.93359299619e-06
+UniRef50_Q1WV02	UPF0374 protein LSL_0370	0.0279453443087	0.0136773593566	-0.0142679849521
+UniRef50_F6ZMA7		3.88236068703e-05	2.85875158438e-06	-3.59648552859e-05
+UniRef50_P57245	Carbamoyl phosphate synthase small chain	1.58984129822e-05	7.45422905407e-06	-8.44418392813e-06
+UniRef50_A6LX23		0.000399223967155	0.000946555515946	0.000547331548791
+UniRef50_A1SUY3		6.77320649985e-05	2.75808413104e-05	-4.01512236881e-05
+UniRef50_U3SUB6		0.00407202725424	0.00291456954692	-0.00115745770732
+UniRef50_P42200	L cystine transport system permease protein TcyB	0.000377719071698	0.00483140027771	0.00445368120601
+UniRef50_Q9RZU0		0.000109185943826	0.0216774639779	0.0215682780341
+UniRef50_D6KCK7	Lanthionine synthetase C family protein	9.62390193955e-05	2.24371751724e-05	-7.38018442231e-05
+UniRef50_D3E1H3	Divalent cation transporter mgtE family	0.00180286151255	0.000285790545738	-0.00151707096681
+UniRef50_B8EJS2	Anthranilate phosphoribosyltransferase	3.69532075839e-05	4.00965810729e-05	3.143373489e-06
+UniRef50_UPI0002EDD593	membrane protein	5.81372995094e-05	6.18185279727e-05	3.6812284633e-06
+UniRef50_P43753	Formate acetyltransferase	0.030702288119	0.0154114090334	-0.0152908790856
+UniRef50_UPI0003814F39	hypothetical protein	4.77319666649e-05	3.50155416498e-05	-1.27164250151e-05
+UniRef50_UPI00035C39A9	hypothetical protein	8.64418114397e-06	7.13446540004e-06	-1.50971574393e-06
+UniRef50_UPI000475BF33	hypothetical protein	4.36700753542e-06	0.000442598774154	0.000438231766619
+UniRef50_R9ITT5		1.21775341979e-05	1.42136629461e-05	2.0361287482e-06
+UniRef50_A0A024HN09	Penicillin binding protein 1B	0.000962363216191	0.00049772736482	-0.000464635851371
+UniRef50_U9T899		1.7167914455e-05	8.79821426313e-06	-8.36970019187e-06
+UniRef50_UPI000380512A	hypothetical protein	2.79341834759e-05	0.000255194101028	0.000227259917552
+UniRef50_Q836J8	ATP dependent helicase nuclease subunit A	3.13649038461e-06	0.000481556224736	0.000478419734351
+UniRef50_Q5QCP2	Carboxynorspermidine carboxyspermidine decarboxylase	0.00705619208358	0.00118773769061	-0.00586845439297
+UniRef50_Q16DV7	1 deoxy D xylulose 5 phosphate synthase 1	1.95896258298e-05	0.000119595938992	0.000100006313162
+UniRef50_UPI000473F09C	cysteine protease	1.37611633391e-05	5.57633312206e-05	4.20021678815e-05
+UniRef50_D3P107		2.28877284981e-05	9.02665948431e-05	6.7378866345e-05
+UniRef50_G0AJ01	ABC sugar transporter, periplasmic ligand binding protein	0.0126935665188	0.00114034642715	-0.0115532200916
+UniRef50_UPI00036BD086	hypothetical protein	8.66196423334e-06	1.71672713135e-05	8.50530708016e-06
+UniRef50_F0Y3C6	Expressed protein 	0.000160449628038	7.57320676271e-05	-8.47175604109e-05
+UniRef50_D3P109		7.74936426106e-06	4.64695372295e-06	-3.10241053811e-06
+UniRef50_C1CJ99	Peptidase, M42	0.000179186387112	0.00188632002173	0.00170713363462
+UniRef50_Q8TLL3	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.54956647602e-05	2.89867875495e-05	3.4911227893e-06
+UniRef50_UPI00047E3B33	2 oxoglutarate dehydrogenase	1.05842871818e-05	6.85388304935e-05	5.79545433117e-05
+UniRef50_P14491	Protein rlx	0.193994034719	0.0453697194461	-0.148624315273
+UniRef50_E5ZTR3		0.000101519317952	0.000236772196986	0.000135252879034
+UniRef50_G8B0S1		1.2368060353e-05	9.39003832077e-05	8.15323228547e-05
+UniRef50_UPI0003B334FD	LuxR family transcriptional regulator	1.43104383281e-05	2.41046885439e-05	9.7942502158e-06
+UniRef50_K7UNI1		8.21831450481e-06	0.000125240809525	0.00011702249502
+UniRef50_P57037	Capsule polysaccharide modification protein LipA	0.000223964603593	0.00356728363485	0.00334331903126
+UniRef50_V4QFM6		0.000131330517835	9.69176033959e-05	-3.44129144391e-05
+UniRef50_G2SD77	Type F conjugative transfer system protein TraW	5.81565079104e-05	2.84427826033e-05	-2.97137253071e-05
+UniRef50_P52130	Antitoxin RnlB	0.00438979878167	0.00048018976455	-0.00390960901712
+UniRef50_E3Z582	Integral membrane protein	2.32179649734e-05	0.00131187240275	0.00128865443778
+UniRef50_E4HNQ2		4.63086551023e-05	0.000283805413828	0.000237496758726
+UniRef50_F7XC63		0.000438862815601	0.000133054478835	-0.000305808336766
+UniRef50_A1TWP1	Anhydrase, family 3 protein	0.000485100856535	0.00249717943892	0.00201207858239
+UniRef50_I6D3Q6	Oxoglutarate dehydrogenase , E1 component	0.00345066856066	0.00116842567521	-0.00228224288545
+UniRef50_Q94BZ7-2	Isoform 2 of DNA gyrase subunit B, mitochondrial	9.79376845456e-06	3.38140307567e-05	2.40202623021e-05
+UniRef50_P37610	Alpha ketoglutarate dependent taurine dioxygenase	0.0017380835065	0.000942071004454	-0.000796012502046
+UniRef50_F0XVZ5	Expressed protein 	4.1307838305e-05	0.000138424177799	9.7116339494e-05
+UniRef50_P0A9K5	PhoH like protein	0.00361015603306	0.00189845962736	-0.0017116964057
+UniRef50_U5MRD5	D galactose binding periplasmic protein MglB	0.000116388280223	0.000969855922107	0.000853467641884
+UniRef50_UPI0004639C8D	multidrug ABC transporter permease	2.94148386332e-06	3.88700483259e-06	9.4552096927e-07
+UniRef50_Q88WU9	Threonine  tRNA ligase	3.10274753793e-05	0.00179602659548	0.0017649991201
+UniRef50_Q9ZLX3	DNA gyrase subunit B	0.000125133342931	0.00352216962688	0.00339703628395
+UniRef50_M4XCL5		2.57325968572e-06	1.63019691513e-05	1.37287094656e-05
+UniRef50_P39265	D allose binding periplasmic protein	0.00126748101067	0.000193650298495	-0.00107383071217
+UniRef50_A5UJ66		0.00118905159156	0.000431119277652	-0.000757932313908
+UniRef50_UPI0003104B05	hypothetical protein	3.59121761313e-06	1.33047730482e-05	9.71355543507e-06
+UniRef50_UPI0004737FFB	isopropylmalate isomerase	1.12639821229e-05	1.44764736336e-05	3.2124915107e-06
+UniRef50_UPI0002887E27	anthranilate synthase, component I, partial	1.66405034582e-05	2.29963521739e-05	6.3558487157e-06
+UniRef50_A5WAN0	NLPA lipoprotein	0.000105648400768	7.1671295179e-05	-3.3977105589e-05
+UniRef50_B5FMP4	Leucine  tRNA ligase	0.00241208025941	0.00158790738918	-0.00082417287023
+UniRef50_F2M7N9	ABC superfamily ATP binding cassette transporter, ABC protein	0.00501262118706	0.000917654983631	-0.00409496620343
+UniRef50_G2LWG0		0.000408883706435	0.000156706112424	-0.000252177594011
+UniRef50_O31775		0.0191488436664	0.00382816013928	-0.0153206835271
+UniRef50_A2SNG4		1.29227855339e-05	1.13480370444e-05	-1.5747484895e-06
+UniRef50_Q8XDS6	Leucine efflux protein	0.00102621383002	0.00128398567476	0.00025777184474
+UniRef50_Q3J1F1	Phage terminase like protein large subunit	0.00780230296138	0.00114454123784	-0.00665776172354
+UniRef50_W5XGS0	UDP N acetylmuramoylalanine  D glutamate ligase	2.17399221928e-06	1.43984399271e-05	1.22244477078e-05
+UniRef50_Q1LRP7	Formamidopyrimidine DNA glycosylase	7.12375770943e-06	4.10657510696e-05	3.39419933602e-05
+UniRef50_F0PKX1	Membrane associated protein	1.32998842636e-05	0.000509982610938	0.000496682726674
+UniRef50_UPI0004244D92	xanthine phosphoribosyltransferase	3.78715192325e-05	3.06887839422e-05	-7.1827352903e-06
+UniRef50_A5HZF5	Sensor histidine kinase	0.00159144090862	0.00103560365961	-0.00055583724901
+UniRef50_Q01FQ9	WGS project CAID00000000 data, contig chromosome 01 	7.48960553722e-06	6.2435764138e-06	-1.24602912342e-06
+UniRef50_G9W9E3	Diaminopimelate decarboxylase	0.000333303811472	0.000122972472728	-0.000210331338744
+UniRef50_Q8DT21		0.000490241543964	0.00150949085114	0.00101924930718
+UniRef50_Q8DT20		0.00442723723792	0.0018039286078	-0.00262330863012
+UniRef50_A1WSR7	CreA family protein	0.00260310776707	3.11183114643e-05	-0.00257198945561
+UniRef50_D8LC87		3.3244050419e-05	3.20462940479e-05	-1.1977563711e-06
+UniRef50_Q72IE1	Ribonuclease H	4.07404402175e-05	3.02410999533e-05	-1.04993402642e-05
+UniRef50_Q5KQI9		5.94931688289e-05	0.000386034908756	0.000326541739927
+UniRef50_A6LSZ1	Lipase	0.000527614665002	0.00221871312068	0.00169109845568
+UniRef50_I6RV19	Adenylosuccinate lyase	0.000226832352982	0.00044219475427	0.000215362401288
+UniRef50_Q8VL04	Arginine repressor	2.14006765161e-05	0.000396398262003	0.000374997585487
+UniRef50_UPI00036D83C9	hypothetical protein	5.47412039057e-06	8.49992065332e-06	3.02580026275e-06
+UniRef50_B2SA42	NAD NADP dependent betaine aldehyde dehydrogenase	4.0263901237e-05	6.5644247897e-06	-3.36994764473e-05
+UniRef50_UPI00047CA754	hypothetical protein	4.23346816562e-05	0.000183504730729	0.000141170049073
+UniRef50_UPI0002003A7E	exodeoxyribonuclease III, partial	7.03515961127e-05	6.65964878657e-05	-3.755108247e-06
+UniRef50_UPI0001D560FB	PREDICTED	7.34371493647e-05	3.96335350986e-05	-3.38036142661e-05
+UniRef50_D3QFS6		0.0104148996637	0.00243224638237	-0.00798265328133
+UniRef50_UPI00037E9BF3	hypothetical protein	3.71102096765e-05	3.68407738452e-05	-2.694358313e-07
+UniRef50_O26329	Cobalt precorrin 8X methylmutase	0.00506235893435	0.000301343576728	-0.00476101535762
+UniRef50_P76213	Excinuclease cho	0.00196527045627	0.00162953304588	-0.00033573741039
+UniRef50_Q03174	Fructan beta fructosidase	0.0061342964015	0.00194866052745	-0.00418563587405
+UniRef50_R7PXR3		0.00358171861704	0.00136139602135	-0.00222032259569
+UniRef50_Q8YGU6	3 dehydroquinate dehydratase	6.19112518197e-05	0.000117787826595	5.58765747753e-05
+UniRef50_K4Q9M3	Ferrous iron transport protein B	0.00596298712912	0.00131439973706	-0.00464858739206
+UniRef50_D4HCC8	ABC transporter, permease protein	0.000324392471557	0.00890145303037	0.00857706055881
+UniRef50_X1J4V9	Marine sediment metagenome DNA, contig	5.81175182093e-05	3.26691313139e-05	-2.54483868954e-05
+UniRef50_U5MVM4	Chaperone protein HtpG	0.000515259560648	0.00130488949875	0.000789629938102
+UniRef50_B1I4W9	Ribonuclease PH	3.10161000316e-05	0.00101958630973	0.000988570209698
+UniRef50_UPI000304D965	hypothetical protein	2.48133905781e-06	3.33315491985e-05	3.08502101407e-05
+UniRef50_J3ABJ4	Conjugative relaxase domain protein, TrwC TraI family	1.13589389611e-05	7.88486252553e-06	-3.47407643557e-06
+UniRef50_M5ABW2		0.000165839576067	0.000629588728662	0.000463749152595
+UniRef50_D0IXW2	Transposase, IS4	3.64918164744e-06	1.12001391191e-05	7.55095747166e-06
+UniRef50_K2BFW3		9.6510748687e-05	2.2892470022e-05	-7.3618278665e-05
+UniRef50_G2LBA7		0.00020713362391	0.00015099223637	-5.614138754e-05
+UniRef50_A7GEL0	3 dehydroquinate dehydratase	1.1802211785e-05	2.0238471131e-05	8.436259346e-06
+UniRef50_Q8CU45		0.0104735315487	0.00396233141951	-0.00651120012919
+UniRef50_Q8CU48		0.0080355450717	0.00680648958456	-0.00122905548714
+UniRef50_UPI00035CC3C8	50S ribosomal protein L18	3.2725783488e-05	0.000532975325771	0.000500249542283
+UniRef50_K2HP40	Protein translocase subunit SecA	0.0108639833735	0.00193586160445	-0.00892812176905
+UniRef50_X6L0R0		8.16920778663e-06	5.35598792837e-06	-2.81321985826e-06
+UniRef50_A4IKU2	Foldase protein PrsA	8.2965843938e-06	2.14245869219e-05	1.31280025281e-05
+UniRef50_R5KA87	MATE efflux family protein	0.00274929033615	0.000446691940694	-0.00230259839546
+UniRef50_UPI0003B582E0	membrane protein	3.93810956675e-06	1.12759346499e-05	7.33782508315e-06
+UniRef50_C7ZUY2	Tagatose 6 phosphate kinase	0.0260498346865	0.00750557279323	-0.0185442618933
+UniRef50_K2J2X7	Cation transport protein ChaC	6.45946342661e-06	5.69499032583e-06	-7.6447310078e-07
+UniRef50_P9WNP4	1,4 Dihydroxy 2 naphthoyl CoA synthase	2.73734026912e-05	0.0081086042199	0.00808123081721
+UniRef50_V0ULY3		0.00039953100943	0.000162493155004	-0.000237037854426
+UniRef50_A3PR66	NADH dehydrogenase (Quinone)	0.0127156575828	0.00336642233364	-0.00934923524916
+UniRef50_R1DJN2		2.70997668162e-05	6.93501211852e-05	4.2250354369e-05
+UniRef50_B9KJM8		3.82023528416e-05	2.76579304526e-05	-1.0544422389e-05
+UniRef50_A1KWK7	Possible lipoprotein	0.000129571849717	0.0031414493173	0.00301187746758
+UniRef50_A6W6A1	Hydroxyethylthiazole kinase	7.81795534889e-06	1.07767911699e-05	2.95883582101e-06
+UniRef50_A6UXC5	Membrane protein, putative	0.000715123188949	0.00073149716971	1.6373980761e-05
+UniRef50_V7HHQ1		0.000483358068422	0.000220296783714	-0.000263061284708
+UniRef50_Q3JSI8	Ribose import ATP binding protein RbsA 1	0.000172176607797	5.26878863908e-05	-0.000119488721406
+UniRef50_UPI00035C22D6	hypothetical protein	0.000129778803965	4.90030295935e-06	-0.000124878501006
+UniRef50_W0HY15		8.09072793881e-05	2.94860052545e-05	-5.14212741336e-05
+UniRef50_UPI000475A254	4 amino 4 deoxychorismate lyase	0.00012278209941	2.82481540343e-05	-9.45339453757e-05
+UniRef50_K0X9S8	Type VI secretion associated protein	0.000621917636126	2.49584740632e-05	-0.000596959162063
+UniRef50_P40398		0.0236617015915	0.0078336192163	-0.0158280823752
+UniRef50_B6WBV7	Glyoxalase family protein	2.81565270229e-05	7.78883931307e-05	4.97318661078e-05
+UniRef50_UPI00047137A9	coproporphyrinogen III oxidase	7.5367803025e-05	3.42960206831e-05	-4.10717823419e-05
+UniRef50_G7M0V7	ASCH domain protein	1.01226729668e-05	1.69421997442e-05	6.8195267774e-06
+UniRef50_UPI00047D052E	iron ABC transporter substrate binding protein	4.45482243358e-05	2.17091927089e-05	-2.28390316269e-05
+UniRef50_P9WPZ4	Probable N succinyldiaminopimelate aminotransferase DapC	7.0698901606e-06	0.000151766774095	0.000144696883934
+UniRef50_P0A067	Signal peptidase IB	0.0181248449529	0.00707748024904	-0.0110473647039
+UniRef50_UPI000302F3DC	hypothetical protein	2.61200308852e-06	9.93558413979e-07	-1.61844467454e-06
+UniRef50_UPI0004690173	type II and III secretion system protein, partial	8.91416981359e-06	7.57161526496e-06	-1.34255454863e-06
+UniRef50_H2JSU9		5.83209830705e-05	0.000504082775762	0.000445761792691
+UniRef50_UPI000383150A	hypothetical protein	3.72025928229e-05	1.24063564805e-05	-2.47962363424e-05
+UniRef50_R5XYV5	Aspartate  tRNA ligase	0.000384309536152	0.000138972567152	-0.000245336969
+UniRef50_A5FY40	Nucleoside diphosphate kinase	0.000182671429973	0.000193760958431	1.1089528458e-05
+UniRef50_P26993	Exoenzyme S synthesis regulatory protein ExsA	0.000145560149942	0.000355090226682	0.00020953007674
+UniRef50_A3PHN8	Signal transduction histidine kinase	0.0143952576317	0.0014540326391	-0.0129412249926
+UniRef50_Q7PY41	Adenylyltransferase and sulfurtransferase MOCS3	9.53041672471e-06	8.0033163949e-06	-1.52710032981e-06
+UniRef50_A4WTQ7	NnrU family protein	0.0254524113493	0.00266548158841	-0.0227869297609
+UniRef50_D3E0A9	DNA polymerase	0.00376015445116	0.000580872951704	-0.00317928149946
+UniRef50_Q05619	Butyrate kinase	0.000845335380761	0.00230818149184	0.00146284611108
+UniRef50_W5X3P1	Holliday junction ATP dependent DNA helicase RuvA	7.34662771348e-06	0.000168125883006	0.000160779255293
+UniRef50_UPI0004038030	sugar ABC transporter ATP binding protein	3.73091814994e-05	2.61353494832e-05	-1.11738320162e-05
+UniRef50_Q8CPX4	Phosphoglycerate mutase	0.0152768451828	0.0016669708524	-0.0136098743304
+UniRef50_UPI0003B52C1D	tRNA uridine 5 carboxymethylaminomethyl modification protein	1.68455706115e-05	1.20961306819e-05	-4.7494399296e-06
+UniRef50_K0CF00	Ferric mycobactin receptor, FemA	0.000606311937618	8.75012459849e-05	-0.000518810691633
+UniRef50_UPI0003654A4C	hypothetical protein	0.000374145246884	0.000128278786	-0.000245866460884
+UniRef50_Q5LYY8	Galactose 1 phosphate uridylyltransferase	0.00517479552004	0.00881808031446	0.00364328479442
+UniRef50_C6A075	DNA helicase, UvrD REP family	0.00236831830568	0.000760621310767	-0.00160769699491
+UniRef50_Q81M98	Acetylornithine aminotransferase	4.06626404797e-06	0.00091283878551	0.000908772521462
+UniRef50_Q8XQ83	Chemotaxis response regulator protein glutamate methylesterase	8.03333364862e-05	8.23309473356e-06	-7.21002417526e-05
+UniRef50_B7GSK0		0.00059150412716	0.00172018267431	0.00112867854715
+UniRef50_UPI0004671C29	calcium ABC transporter ATPase	1.34250215937e-05	1.57002208293e-05	2.2751992356e-06
+UniRef50_A5A3S4	BcepGomrgp35	1.08094921896e-05	2.38600744388e-05	1.30505822492e-05
+UniRef50_Y8DMX3		0.000161730008049	4.21103378182e-05	-0.000119619670231
+UniRef50_UPI0002895DAD	glycerophosphoryl diester phosphodiesterase	1.63317333239e-05	1.02923598306e-05	-6.0393734933e-06
+UniRef50_A4W7D6	D galactonate dehydratase family member Ent638_0932	0.000345020568046	0.00225333512853	0.00190831456048
+UniRef50_T1YBI3	Extracellular matrix binding protein	0.00162839315222	0.00019105478436	-0.00143733836786
+UniRef50_Q2NHG2	DNA polymerase II large subunit	0.00388700893854	0.00106173021251	-0.00282527872603
+UniRef50_UPI0004791B8E	2 oxoisovalerate dehydrogenase	3.15312443683e-06	4.6811220069e-05	4.36580956322e-05
+UniRef50_UPI00047249EC	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial	3.17988941838e-05	8.59485268887e-06	-2.32040414949e-05
+UniRef50_UPI00047E8CB8	hypothetical protein	1.33179409435e-05	0.000785826998294	0.00077250905735
+UniRef50_K7SIX4	PTS system, mannitol specific IIC component	6.02371258787e-05	0.00520490517464	0.00514466804876
+UniRef50_UPI000369E93F	hypothetical protein	7.29149146068e-06	1.01214992477e-05	2.83000778702e-06
+UniRef50_Q47537	Taurine binding periplasmic protein	0.00280711000335	0.00108023711531	-0.00172687288804
+UniRef50_A6LYI5	Metal dependent phosphohydrolase	0.000350774526433	0.000767300735797	0.000416526209364
+UniRef50_J0NDK0	Toxin antitoxin system, antitoxin component, HicB family	6.39025503368e-05	0.000214205712327	0.00015030316199
+UniRef50_UPI000381C2B6	hypothetical protein	8.56101381368e-05	0.000132455661573	4.68455234362e-05
+UniRef50_K0R8M8		3.01695949833e-05	8.72962515337e-05	5.71266565504e-05
+UniRef50_M4XJN9	Acyl CoA dehydrogenase	0.000307107386331	0.000311679899937	4.572513606e-06
+UniRef50_A6M3C8	Phage integrase family protein	0.000452983186623	0.00290655584421	0.00245357265759
+UniRef50_UPI000468A0F6	zinc ABC transporter ATPase	5.07311131702e-06	3.58924417493e-06	-1.48386714209e-06
+UniRef50_M9VF55		0.000330162672461	0.00612323445631	0.00579307178385
+UniRef50_UPI0003F904B8	hypothetical protein	3.26907560195e-05	0.000100927875483	6.82371194635e-05
+UniRef50_Q57CX9	Uridylate kinase	1.70263504483e-05	1.61839524629e-05	-8.423979854e-07
+UniRef50_Q52742		0.000236523384216	3.77930830775e-05	-0.000198730301139
+UniRef50_UPI0004411EC4	hypothetical protein AURDEDRAFT_182094	5.16598407029e-05	3.72318586984e-05	-1.44279820045e-05
+UniRef50_F3SY37	Transcriptional regulator, AraC family	0.0102771998338	0.00433906243324	-0.00593813740056
+UniRef50_Q6GGT1	Elastin binding protein EbpS	0.00746992168598	0.0017701374524	-0.00569978423358
+UniRef50_F0P4S1	Transcriptional regulator, GntR family	0.0168111571508	0.00590157569716	-0.0109095814536
+UniRef50_D8HFV1		0.0202642239977	0.00685450978975	-0.013409714208
+UniRef50_UPI000471A03D	hypothetical protein	1.0073116357e-05	1.15510014827e-05	1.4778851257e-06
+UniRef50_B8A150		9.60040598365e-05	0.000476372572497	0.00038036851266
+UniRef50_UPI0004576376	PREDICTED	5.01957489891e-05	1.13855953581e-05	-3.8810153631e-05
+UniRef50_R4K5C7	Arabinose efflux permease family protein	0.000630353699287	0.00244473203256	0.00181437833327
+UniRef50_O41971		1.57006288586e-05	1.64291530845e-05	7.285242259e-07
+UniRef50_UPI000475E8C5	hypothetical protein	4.23475347031e-05	0.000461799092111	0.000419451557408
+UniRef50_F0YD72		0.000170471384753	0.000376106522305	0.000205635137552
+UniRef50_W1JYG5	Transcriptional regulator 	0.000800101425473	0.00136510320554	0.000565001780067
+UniRef50_Q5HRK4	Elongation factor Tu	0.0140244499828	0.00370254022403	-0.0103219097588
+UniRef50_U6EDF1	Probable cyclic pyranopterin monophosphate synthase accessory protein	0.00322063940795	0.00106740977781	-0.00215322963014
+UniRef50_UPI00016C47EA	nuclease PIN	6.094417447e-06	2.82738813168e-05	2.21794638698e-05
+UniRef50_U5NMR3		0.00615862530681	0.000868578544689	-0.00529004676212
+UniRef50_I0C1G6		0.018000991922	0.00240554514446	-0.0155954467775
+UniRef50_B2THX3	3D G5 domain protein	0.000289273011926	0.000912951073309	0.000623678061383
+UniRef50_Q6MIP7	Phosphonates import ATP binding protein PhnC	4.04715213242e-05	1.39436345294e-05	-2.65278867948e-05
+UniRef50_UPI0003B485D5	AsnC family transcriptional regulator	0.000122279548856	4.06057027078e-05	-8.16738461482e-05
+UniRef50_K9W5R6	HI0933 family protein	0.000116448682564	0.000303099174468	0.000186650491904
+UniRef50_Q2FF06	Putative aldehyde dehydrogenase SAUSA300_2076	0.0119496933678	0.00209525434317	-0.00985443902463
+UniRef50_W5W167	Putative membrane protein	0.000467776325828	0.000626101212682	0.000158324886854
+UniRef50_I0IAE1		0.000104698002146	1.72497540489e-05	-8.74482480971e-05
+UniRef50_A6M1H4	Sodium	0.00011796437152	0.00206449640376	0.00194653203224
+UniRef50_Q6ABT4		0.00112124551144	0.00233144767259	0.00121020216115
+UniRef50_H2JLK0	Putative zinc binding oxidoreductase	0.000103901761154	0.000112524502528	8.622741374e-06
+UniRef50_V9AUV8		1.67824685474e-05	1.08336337115e-05	-5.9488348359e-06
+UniRef50_F8XNS8	ppGpp synthetase I SpoT RelA (Fragment)	9.7525589773e-06	2.63067531004e-05	1.65541941231e-05
+UniRef50_Q9I3X3		0.000831618249846	0.000307621567909	-0.000523996681937
+UniRef50_G7U7F2	Pyridine nucleotide disulfide oxidoreductase	0.000197228714886	0.00612385898276	0.00592663026787
+UniRef50_UPI000472306F	adenylate kinase	8.45010770009e-06	6.22807847248e-05	5.38306770247e-05
+UniRef50_UPI000477F500	alanine glycine permease, partial	4.1514734763e-05	0.00377300648726	0.0037314917525
+UniRef50_A5E8I8	Non canonical purine NTP pyrophosphatase	0.000204605908547	3.19302892282e-05	-0.000172675619319
+UniRef50_Q9I6V7	Chemotaxis protein methyltransferase 2	6.11076867238e-05	4.62758162454e-05	-1.48318704784e-05
+UniRef50_Q04789	Acetolactate synthase	0.0280988059447	0.0147439016901	-0.0133549042546
+UniRef50_Q1LCM1		0.0188709243964	0.00425903358193	-0.0146118908145
+UniRef50_UPI00035F8C60	hypothetical protein	5.63043533032e-06	5.74798300673e-05	5.1849394737e-05
+UniRef50_B9KSL8	Efflux transporter, RND family, MFP subunit	0.00261474490436	0.000879803240378	-0.00173494166398
+UniRef50_W9B9V7	Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome	0.000235826686109	8.94250962646e-05	-0.000146401589844
+UniRef50_UPI0004234081	excinuclease ABC subunit A	6.86939916803e-06	1.68460854083e-05	9.97668624027e-06
+UniRef50_UPI00035EC56E	hypothetical protein	1.96120532652e-05	1.90709946493e-05	-5.410586159e-07
+UniRef50_A6V0D0		5.16362877968e-05	0.00916138720528	0.00910975091748
+UniRef50_Y6JBS8		0.000217746730244	6.43944201019e-05	-0.000153352310142
+UniRef50_M8I708	Signal transduction histidine kinase	0.000202586398316	0.00443433465256	0.00423174825424
+UniRef50_R5WAI2	Exodeoxyribonuclease V gamma subunit	0.00314601428688	0.000842847380391	-0.00230316690649
+UniRef50_C5Y406		0.000125327380181	9.1361242894e-05	-3.3966137287e-05
+UniRef50_C7ZW47	Membrane protein	0.0159088723835	0.00463342187787	-0.0112754505056
+UniRef50_Q4L4Y7	Coenzyme A disulfide reductase	0.00961601020177	0.00245570663477	-0.007160303567
+UniRef50_B1MYD1	3 phosphoshikimate 1 carboxyvinyltransferase	4.47834828864e-06	7.6036089436e-06	3.12526065496e-06
+UniRef50_Q9RTK2	Diaminopimelate decarboxylase	6.33840722591e-06	0.00662673698177	0.00662039857454
+UniRef50_B9L5V9	3 dehydroquinate dehydratase	1.1717218142e-05	5.47666818152e-05	4.30494636732e-05
+UniRef50_P40740	Aryl phospho beta D glucosidase BglH	0.000231027788867	0.00224497348862	0.00201394569975
+UniRef50_P0A543	Aspartate semialdehyde dehydrogenase	2.87552817617e-05	0.00566387025243	0.00563511497067
+UniRef50_Q6AB89	Isoleucine  tRNA ligase	6.12395642737e-05	0.00400819803301	0.00394695846874
+UniRef50_X1H4N6	Marine sediment metagenome DNA, contig	1.58096863954e-05	5.85433118815e-05	4.27336254861e-05
+UniRef50_Q28K40	Amino acid amide ABC transporter membrane protein 2, HAAT family	0.0101244549727	0.00313125511961	-0.00699319985309
+UniRef50_P37466	Protein Veg	0.00194680700336	0.000678888977457	-0.0012679180259
+UniRef50_A6LXW3	ApbE family lipoprotein	0.000157067679132	0.00326002812986	0.00310296045073
+UniRef50_Q6GGI4	UPF0403 protein SAR1592	0.0331693382658	0.0187582942078	-0.014411044058
+UniRef50_Q6FB03		0.000359016199141	0.00555074961453	0.00519173341539
+UniRef50_E0SM47	D alanine aminotransferase	0.0171884753556	0.00268454218103	-0.0145039331746
+UniRef50_V8R541	Restriction endonuclease	0.000311114825983	0.0003565191612	4.5404335217e-05
+UniRef50_Q6FB06		8.04349092798e-05	0.000958204459656	0.000877769550376
+UniRef50_P75712	Putative allantoin permease	0.00321904121788	0.000151444464203	-0.00306759675368
+UniRef50_UPI000478D97F	sugar ABC transporter substrate binding protein	5.31797843376e-06	3.02491837165e-05	2.49312052827e-05
+UniRef50_R8ZKN1		0.000230861243448	0.000332770741212	0.000101909497764
+UniRef50_Q9RZ80		0.000169276228183	0.0491503072973	0.0489810310691
+UniRef50_UPI00046D31AE	hypothetical protein	0.000472660882089	5.48209363548e-05	-0.000417839945734
+UniRef50_UPI0003B5BDB9	hypothetical protein	3.93927340513e-06	9.05484707872e-06	5.11557367359e-06
+UniRef50_C3AH20	Dehydrogenase	0.0209451855636	0.00512323231779	-0.0158219532458
+UniRef50_UPI000465EB7D	hypothetical protein	4.95502173151e-05	1.8994276118e-05	-3.05559411971e-05
+UniRef50_Q3SPM7	Peptidyl tRNA hydrolase	8.14021061265e-05	3.92248215214e-05	-4.21772846051e-05
+UniRef50_UPI0001FE2E53	molybdenum cofactor synthesis 1 isoform 1	9.31127820362e-06	3.00811025009e-05	2.07698242973e-05
+UniRef50_L9NDB6	Nonribosomal peptide synthase	0.000120485005023	0.00227557716739	0.00215509216237
+UniRef50_UPI00036FD9CA	hypothetical protein	1.68439047885e-05	1.00290216129e-05	-6.8148831756e-06
+UniRef50_UPI0004110BE6	FAD binding molybdopterin dehydrogenase	0.000127801713254	0.00042509297696	0.000297291263706
+UniRef50_P05707	Sorbitol 6 phosphate 2 dehydrogenase	0.00623005233159	0.000497724784029	-0.00573232754756
+UniRef50_UPI00041879E9	LamB YcsF family protein	0.00016310195304	5.6045230536e-05	-0.000107056722504
+UniRef50_F0L271		0.000171052351058	5.39993962479e-05	-0.00011705295481
+UniRef50_UPI0003791D67	1 phosphofructokinase, partial	4.43759000302e-05	0.000329590505955	0.000285214605925
+UniRef50_Q8FAI6	L ribulose 5 phosphate 4 epimerase UlaF	0.00979612057419	0.00548822883165	-0.00430789174254
+UniRef50_Q132P2	Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	0.0093221480392	0.00297444463549	-0.00634770340371
+UniRef50_B9E6Y4	Shikimate dehydrogenase	2.39488807618e-05	2.08658749382e-05	-3.0830058236e-06
+UniRef50_C5N6P2		0.00387790003355	0.00243110115954	-0.00144679887401
+UniRef50_B6FWG5		0.000587078810021	0.00274665187349	0.00215957306347
+UniRef50_UPI000365F4CD	hypothetical protein	0.000249372168594	0.000153659472455	-9.5712696139e-05
+UniRef50_Q98LU4	Glutathione dependent formaldehyde activating enzyme	0.00013348254079	3.46342443128e-05	-9.88482964772e-05
+UniRef50_A6LUC8	40 residue YVTN family beta propeller repeat protein	0.000332423594962	0.00106518367585	0.000732760080888
+UniRef50_B5GFD4	Nogalamycin resistance protein SnorO	3.40874237228e-05	2.19294524526e-05	-1.21579712702e-05
+UniRef50_Q8CP35	N acetyl gamma glutamyl phosphate reductase	0.00823372728749	0.00200731456205	-0.00622641272544
+UniRef50_P37146	Ribonucleoside diphosphate reductase 2 subunit beta	0.00251457372069	0.00358368991699	0.0010691161963
+UniRef50_UPI000418FD7E	delta aminolevulinic acid dehydratase	1.02364857851e-05	1.92982102178e-05	9.0617244327e-06
+UniRef50_M7ADI3		1.74376136457e-05	2.28931813338e-05	5.4555676881e-06
+UniRef50_S5YCH9	Hydrolase, HAD superfamily	0.00262544447645	0.0007812157027	-0.00184422877375
+UniRef50_K0R081		3.44698377345e-05	0.000342888264474	0.000308418426739
+UniRef50_J0F9K3		0.0108277379529	0.00718360530916	-0.00364413264374
+UniRef50_A7WYM2	Thymidylate kinase	0.00602459553981	0.00273014984433	-0.00329444569548
+UniRef50_A6LZ87	Aminoglycoside phosphotransferase	0.000430260279658	0.000853241004089	0.000422980724431
+UniRef50_G2JIT2	ABC type spermidine putrescine transport system, ATPase component	0.000231526254158	0.00998168623361	0.00975015997945
+UniRef50_UPI000429A03C	hypothetical protein	4.68282530677e-06	8.7349521446e-06	4.05212683783e-06
+UniRef50_A8GID3	Lipid A disaccharide synthase	0.00028237150095	0.000240420655515	-4.1950845435e-05
+UniRef50_Q55621	Amidophosphoribosyltransferase	8.18685089287e-06	0.000111003151258	0.000102816300365
+UniRef50_J9P1J0		2.28481669509e-05	2.0156335493e-05	-2.6918314579e-06
+UniRef50_C5BT54	Cysteine synthase	0.000865043167471	0.000495131436238	-0.000369911731233
+UniRef50_A0A023RU88	RND transporter	0.000348980833836	0.00819444253723	0.00784546170339
+UniRef50_UPI00046C9C35	microcin ABC transporter permease	5.02272161003e-05	1.65808919402e-05	-3.36463241601e-05
+UniRef50_E0SGK4	ABC transporter, permease component	0.00406739659753	0.000536830407535	-0.00353056619
+UniRef50_R9SHD6	Glycine betaine L proline ABC transporter permease substrate binding protein	0.00234712029076	0.000117577984809	-0.00222954230595
+UniRef50_Q487D7	Na translocating NADH quinone reductase subunit E	0.000118955923212	9.03392377203e-05	-2.86166854917e-05
+UniRef50_UPI00047D9DB1	iron transporter FeoB	1.39188499233e-05	3.95430769872e-06	-9.96454222458e-06
+UniRef50_A6M1E2		0.000129642592261	0.00118809907898	0.00105845648672
+UniRef50_B1ZUJ0	NADH quinone oxidoreductase subunit B 2	2.37940454123e-05	0.000170198328684	0.000146404283272
+UniRef50_P0A908	MltA interacting protein	0.00404825734619	0.000666127906449	-0.00338212943974
+UniRef50_Q8T154	Uridine cytidine kinase B	7.74242220313e-06	8.5760030512e-05	7.80176083089e-05
+UniRef50_Q1QEF7	Putative 3 methyladenine DNA glycosylase	0.000808898547544	0.00876884567528	0.00795994712774
+UniRef50_B1ZDM1		4.00735779729e-05	1.0995215225e-05	-2.90783627479e-05
+UniRef50_UPI0003B3485A	AP endonuclease	9.12448762411e-05	7.52097898278e-05	-1.60350864133e-05
+UniRef50_Q8G7G5	Cysteine  tRNA ligase	4.57892781473e-06	1.15490214905e-05	6.97009367577e-06
+UniRef50_N3MBX3		0.00065820052722	0.000249194165413	-0.000409006361807
+UniRef50_B6EJ69	Putative type VI secretion protein VasE	6.24297267153e-06	9.19107308968e-06	2.94810041815e-06
+UniRef50_A7FB19		9.46080172615e-05	0.00204599715281	0.00195138913555
+UniRef50_W6W5E1	Methionine synthase 	0.00624045920239	0.00299185018381	-0.00324860901858
+UniRef50_M4R2Z9		2.48326147089e-05	0.000490619845149	0.00046578723044
+UniRef50_Q7N4Q1	Complete genome; segment 8 17	0.000184740288181	0.00639427841546	0.00620953812728
+UniRef50_V4JEN2		0.00053726434014	0.000122288038061	-0.000414976302079
+UniRef50_R5FLK7	Sporulation initiation inhibitor protein Soj	3.35385596348e-06	3.06994855462e-05	2.73456295827e-05
+UniRef50_E4B644		8.54121748243e-05	0.000752850682436	0.000667438507612
+UniRef50_UPI0003A4C566	methyltransferase	3.43430710126e-05	0.000713412508587	0.000679069437574
+UniRef50_Q9RZ06	Histidine ammonia lyase	0.000174105725641	0.0187171776142	0.0185430718886
+UniRef50_Q8CNZ3	Type IV prepilin peptidase	0.0054998721138	0.00243928236518	-0.00306058974862
+UniRef50_A7ZJM7	DNA protection during starvation protein	0.000458637236771	0.00341815956565	0.00295952232888
+UniRef50_R4ZTN2	Glycerophosphoryl diester phosphodiesterase	9.65437311629e-05	0.000707549823905	0.000611006092742
+UniRef50_E6CZE7	4 phosphoerythronate dehydrogenase	0.00118846646536	0.00293315580668	0.00174468934132
+UniRef50_W7U7T7		0.000243138088752	0.0002727253566	2.9587267848e-05
+UniRef50_M3YRF2		1.72730621127e-05	8.59119144685e-06	-8.68187066585e-06
+UniRef50_P37678	3 keto L gulonate 6 phosphate decarboxylase SgbH	0.00233704508406	0.0010588588756	-0.00127818620846
+UniRef50_P63333	Putative zinc metalloprotease SA1105	0.0131556230552	0.00452635684121	-0.00862926621399
+UniRef50_B0V5R2	Ribonuclease P protein component	0.00031457165738	0.00056429943668	0.0002497277793
+UniRef50_D3HGD1		0.00943092595701	0.000854088800515	-0.0085768371565
+UniRef50_P0ADA2	Acyl CoA thioesterase I	0.00196164767471	0.00109700679661	-0.0008646408781
+UniRef50_E3ENU9	Chromosome partitioning protein	3.96661646684e-06	0.00413873120965	0.00413476459318
+UniRef50_Q3J6K3	TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor	0.012056170466	0.00290160846893	-0.00915456199707
+UniRef50_UPI000473CDCF	hypothetical protein	1.35973070673e-05	7.05970769252e-05	5.69997698579e-05
+UniRef50_F4M5Y2		0.00010519977716	0.000148172671653	4.2972894493e-05
+UniRef50_K0T360		1.05486568153e-05	1.70874901235e-05	6.5388333082e-06
+UniRef50_Q0J8P0	Os08g0101500 protein 	0.000368593330243	0.000280322328022	-8.8271002221e-05
+UniRef50_UPI00034D7F07	hypothetical protein	0.000107437472019	0.000245236287	0.000137798814981
+UniRef50_UPI00036FC1AC	hypothetical protein	1.87759474198e-05	0.000165028307834	0.000146252360414
+UniRef50_U6MJL8		0.000176633819618	6.13183512621e-05	-0.000115315468356
+UniRef50_A5HXZ1	Anaerobic ribonucleoside triphosphate reductase	0.000356472131832	0.00193301027966	0.00157653814783
+UniRef50_UPI000346628F	hypothetical protein	2.25310603745e-05	3.83680173395e-05	1.5836956965e-05
+UniRef50_B0TZ13	Ribosomal RNA small subunit methyltransferase H	1.12916254897e-05	8.18146880791e-06	-3.11015668179e-06
+UniRef50_P46068	HTH type transcriptional regulator DsdC	0.00246218531057	0.000193650298495	-0.00226853501207
+UniRef50_UPI00036C038C	hypothetical protein	1.00827684322e-05	1.92883645301e-05	9.2055960979e-06
+UniRef50_UPI00046E972F	hypothetical protein	3.62855717574e-06	0.000469954452165	0.000466325894989
+UniRef50_UPI0003728245	hypothetical protein	2.88478474604e-05	7.02243844317e-06	-2.18254090172e-05
+UniRef50_T0IDY3		5.97718648886e-05	0.000105974029096	4.62021642074e-05
+UniRef50_Q9CFZ5	Metal ABC transporter substrate binding lipoprotein	0.00425538075008	0.00870062177881	0.00444524102873
+UniRef50_UPI0004651F41	hypothetical protein	4.93789722874e-06	2.53306117569e-05	2.03927145282e-05
+UniRef50_UPI00035D4E82	hypothetical protein	5.63682245554e-05	0.00281691432903	0.00276054610447
+UniRef50_V1HUM9	Methyl accepting chemotaxis protein	1.24581256864e-05	2.00201460009e-05	7.5620203145e-06
+UniRef50_A0LBD9	Transposase, IS4 family	5.09836717603e-05	1.35133233843e-05	-3.7470348376e-05
+UniRef50_G9A7N2		1.89744403375e-05	3.68543962498e-05	1.78799559123e-05
+UniRef50_G3XD65		0.00181249817962	0.000341406595601	-0.00147109158402
+UniRef50_D5AU05		3.11880101292e-05	3.73062252448e-05	6.1182151156e-06
+UniRef50_O54068	UDP glucose 6 dehydrogenase	2.52999175774e-05	2.11779815379e-05	-4.1219360395e-06
+UniRef50_D5AU02		0.0149867015503	0.00227954493088	-0.0127071566194
+UniRef50_I0C5N7	Nitrogen regulation protein NIFR3	3.52815790751e-05	7.90885549699e-05	4.38069758948e-05
+UniRef50_C1CCZ1	UvrABC system protein C	0.0140953220009	0.00903437287589	-0.00506094912501
+UniRef50_UPI0003735CBD	hypothetical protein	1.48072830386e-05	0.000310918645689	0.00029611136265
+UniRef50_O27082	Cation transporting P ATPase PacL	0.00233764224672	0.000864212354176	-0.00147342989254
+UniRef50_Q07ML1		0.0013839064221	0.000194500574217	-0.00118940584788
+UniRef50_R5JK63	Hypoxanthine phosphoribosyltransferase	0.000243539347646	0.00239689879925	0.0021533594516
+UniRef50_B9KSE1	MIP family channel proteins	0.00700400781053	0.000600142354897	-0.00640386545563
+UniRef50_I2DGR3	Phage colicin tellurite resistance cluster TerY protein	0.00284171677941	0.00137187338525	-0.00146984339416
+UniRef50_D0CPI3	Peptidase U35, phage prohead HK97	2.66220077029e-05	3.53179413548e-05	8.6959336519e-06
+UniRef50_Q9EVM1	Replication protein 	0.000122764808724	6.86638358046e-05	-5.41009729194e-05
+UniRef50_UPI00021A5775	PREDICTED	1.63483871941e-05	8.52664567521e-06	-7.82174151889e-06
+UniRef50_B0TBU3	Glutamate  tRNA ligase	4.31777366486e-06	5.9818612036e-06	1.66408753874e-06
+UniRef50_A3PIY0	Carboxymuconolactone decarboxylase	0.00623178297502	0.00261492803837	-0.00361685493665
+UniRef50_A6QIG4		0.00186086860811	0.00179342128661	-6.74473215e-05
+UniRef50_P31062	DNA packaging protein NU1 homolog	0.00202294030927	0.00029336096543	-0.00172957934384
+UniRef50_B4EV71	Glutamine  tRNA ligase	0.00246330427238	0.000809794892792	-0.00165350937959
+UniRef50_Q67NS3	Homoserine O acetyltransferase	1.15961394167e-05	2.69256732797e-05	1.5329533863e-05
+UniRef50_Q5HIW9		0.0169924915629	0.00315332454756	-0.0138391670153
+UniRef50_Q04809	Dipicolinate synthase subunit A	6.13376142851e-05	0.00087118544229	0.000809847828005
+UniRef50_G2JDG3	RNA splicing ligase RtcB	9.63794014105e-05	0.0115888513754	0.011492471974
+UniRef50_A6LYE0		0.0011267085075	0.00230651363309	0.00117980512559
+UniRef50_Q98CW9	Mll4969 protein	1.51861703725e-05	1.4207847162e-06	-1.37653856563e-05
+UniRef50_Q836D3	S ribosylhomocysteine lyase	1.52878458235e-05	0.00377527703327	0.00375998918745
+UniRef50_Q58033	N5 carboxyaminoimidazole ribonucleotide mutase	3.85096007712e-05	6.03788955891e-05	2.18692948179e-05
+UniRef50_M9VMX1		0.000173956676891	0.00851237809427	0.00833842141738
+UniRef50_P9WK18	Methionine aminopeptidase 2	0.000166783205682	0.00751080269353	0.00734401948785
+UniRef50_A3PGE5		0.017493556092	0.00298239942379	-0.0145111566682
+UniRef50_A1BAM2	ABC polyamine transporter, periplasmic substrate binding protein	0.0105615981658	0.00157956802615	-0.00898203013965
+UniRef50_M1MCE4	Diguanylate cyclase	0.000146691446449	0.00109879277316	0.000952101326711
+UniRef50_P92549	ATP synthase subunit alpha, mitochondrial	0.0105726489235	0.0149622264326	0.0043895775091
+UniRef50_O33013	Signal recognition particle protein	0.000101565736906	0.00498792489921	0.0048863591623
+UniRef50_Q7KS14	CG6695, isoform B	3.06839478451e-05	1.33258897047e-05	-1.73580581404e-05
+UniRef50_P0ABF0	Carbonic anhydrase 1	0.00378547023802	0.00214600650225	-0.00163946373577
+UniRef50_Q4FUD2	30S ribosomal protein S4	0.00306145288697	0.00152425458184	-0.00153719830513
+UniRef50_Q8CC86	Nicotinate phosphoribosyltransferase	2.99861490685e-06	6.48156359414e-06	3.48294868729e-06
+UniRef50_Q3IVT5	Agmatinase	0.00064496070633	0.000254949673557	-0.000390011032773
+UniRef50_UPI0003B4603D	multidrug ABC transporter ATP binding protein	6.07738318414e-06	2.62101733218e-05	2.01327901377e-05
+UniRef50_C1DQ18	TonB dependent siderophore receptor	0.000724904608867	0.000790927970444	6.6023361577e-05
+UniRef50_G7SF07	Small conductance mechanosensitive channel	0.00655679898713	0.00275384573213	-0.003802953255
+UniRef50_P60845	Aquaporin Z	0.00468411742489	0.00270078097834	-0.00198333644655
+UniRef50_UPI000329DC11		1.66940850613e-06	1.18437971519e-05	1.01743886458e-05
+UniRef50_UPI0003733B95	hypothetical protein	2.06609219046e-06	5.24846824271e-06	3.18237605225e-06
+UniRef50_K0UFN2		0.000107544419209	0.000692019474371	0.000584475055162
+UniRef50_UPI0002492BA5	hypothetical protein	0.000170622048932	0.000110028532791	-6.0593516141e-05
+UniRef50_B0JTA0	Proline rich extensin like family protein	5.42980627867e-05	2.12187187823e-06	-5.21761909085e-05
+UniRef50_UPI000476476F	thioredoxin	5.81586060719e-05	4.26859000773e-05	-1.54727059946e-05
+UniRef50_Q9RXQ6		0.000177223468942	0.0641726679441	0.0639954444752
+UniRef50_O85128	Chemotaxis response regulator protein glutamate methylesterase of group 1 operon	7.18206908673e-05	9.47724892188e-06	-6.23434419454e-05
+UniRef50_Q53174	Motility protein A	0.0135357985254	0.00172712778915	-0.0118086707362
+UniRef50_UPI00047893F1	chemotaxis protein	4.69249996992e-05	1.21559801383e-05	-3.47690195609e-05
+UniRef50_F9EDC6	SagD family bacteriocin biosynthesis protein	4.51777001112e-06	2.0765330001e-05	1.62475599899e-05
+UniRef50_I1F0D0		2.92224560283e-05	8.33626672536e-05	5.41402112253e-05
+UniRef50_Q99VJ2	Extracellular matrix protein binding protein emp	0.0113021103726	0.00137669692898	-0.00992541344362
+UniRef50_UPI00037AEF72	hypothetical protein	1.48891359001e-05	9.57549422304e-05	8.08658063303e-05
+UniRef50_A0A011RWZ7		0.000111572213456	0.000176484086778	6.4911873322e-05
+UniRef50_Q8TTR1	Outer membrane protein expression inhibitor	0.000115556935367	0.000503027604922	0.000387470669555
+UniRef50_P0AE86	Periplasmic protein CpxP	0.00822271990849	0.00206906385235	-0.00615365605614
+UniRef50_M9RTA8	Phosphoesterase	4.61526642719e-05	0.000435356322155	0.000389203657883
+UniRef50_A6LZM9		0.000122959605492	0.00171056470651	0.00158760510102
+UniRef50_P24240	6 phospho beta glucosidase AscB	0.00800071298498	0.0113138077501	0.00331309476512
+UniRef50_P43984		0.0123820098273	0.00109034401664	-0.0112916658107
+UniRef50_Q44653	30S ribosomal protein S1	0.000135542545373	0.00632017824854	0.00618463570317
+UniRef50_P68801	Staphylokinase	0.00750150896264	0.00145089523974	-0.0060506137229
+UniRef50_M5ANL0	Beta lactamase co inducer 	0.00129236167479	0.000305745279313	-0.000986616395477
+UniRef50_UPI00035E68E1	hypothetical protein	8.67533285433e-06	5.7583603885e-06	-2.91697246583e-06
+UniRef50_A5UJ57	Putative manganese efflux pump MntP	0.00282904504452	0.00116572383629	-0.00166332120823
+UniRef50_H5SY94	ABC transporter ATP binding protein	0.0034987298727	0.00115189666322	-0.00234683320948
+UniRef50_A4WVG7		0.000276521188486	0.000249246984589	-2.7274203897e-05
+UniRef50_P71298	Putative prophage CP4 6 integrase	0.00169689897739	0.000609180403973	-0.00108771857342
+UniRef50_F3SV15		0.000825971774981	0.000726188619325	-9.9783155656e-05
+UniRef50_A4WVG4		0.00765935967302	0.000441870381833	-0.00721748929119
+UniRef50_Q6F7B6		0.000358183456254	0.00963675217819	0.00927856872194
+UniRef50_R5K1D1		0.00113341645163	0.00589833049632	0.00476491404469
+UniRef50_V5VEN2	Excinuclease ABC, A subunit	1.89984905172e-05	1.28488901225e-05	-6.1496003947e-06
+UniRef50_Q5HN96	Foldase protein PrsA	0.0144810900662	0.00360431188203	-0.0108767781842
+UniRef50_I2DNZ8	Peptidase M14, carboxypeptidase A	0.0019897321282	0.00284930598048	0.00085957385228
+UniRef50_UPI000478D2A2	cytochrome bd I ubiquinol oxidase subunit 2 apoprotein	4.59283306226e-06	1.3630925448e-05	9.03809238574e-06
+UniRef50_Q1GIE6	Binding protein dependent transport systems inner membrane component	0.010832028089	0.00194423719361	-0.00888779089539
+UniRef50_K1ZWG6		9.90413966068e-05	0.000229261185475	0.000130219788868
+UniRef50_UPI00034D08B0	hypothetical protein	9.95978765312e-06	0.00179411352499	0.00178415373734
+UniRef50_P72151	B type flagellin	0.000804472978569	0.000685027760166	-0.000119445218403
+UniRef50_UPI00041834C2	hypothetical protein	5.30973785084e-05	1.32064583488e-05	-3.98909201596e-05
+UniRef50_P46702	N5 carboxyaminoimidazole ribonucleotide mutase	7.2374366939e-05	8.57458783271e-05	1.33715113881e-05
+UniRef50_Q1IZI7	Elongation factor Ts	0.00022248683036	0.0474335234405	0.0472110366101
+UniRef50_UPI00016C08D0	phosphoenolpyruvate synthase	2.37207378296e-06	0.000101597197949	9.9225124166e-05
+UniRef50_F7ZIC0		5.12540508788e-05	1.52564729218e-05	-3.5997577957e-05
+UniRef50_Q3IZN1	NAD kinase	0.00207990207277	0.000254218110649	-0.00182568396212
+UniRef50_A6LTP4		0.000583741219879	0.000307088428274	-0.000276652791605
+UniRef50_P77737	Oligopeptide transport ATP binding protein OppF	0.0164376442975	0.00444531582318	-0.0119923284743
+UniRef50_Q9SMC2	Acetolactate synthase small subunit 1, chloroplastic	1.19203281476e-05	0.000271647852197	0.000259727524049
+UniRef50_A9T869	Predicted protein	0.000739577487117	0.000356941432277	-0.00038263605484
+UniRef50_Q7VFF5	Histidinol dehydrogenase	4.41809077779e-06	6.46261005579e-06	2.044519278e-06
+UniRef50_Q4L7L1	Diacylglycerol kinase	0.0228217794699	0.00480271064249	-0.0180190688274
+UniRef50_P0CL46	Formate hydrogenlyase transcriptional activator	0.00214635690591	0.000297442616675	-0.00184891428924
+UniRef50_Q9RT45	Exonuclease SbcD, putative	0.000275206078797	0.0218415862459	0.0215663801671
+UniRef50_R7MPC8	ComG operon protein 4	0.00383315044909	3.95136020646e-05	-0.00379363684703
+UniRef50_Q030J8	3 oxoacyl [acyl carrier protein] synthase 3	0.000276434856029	0.00403222781146	0.00375579295543
+UniRef50_V5T2N8	Transcriptional regulator	0.00210016045958	0.000283504036987	-0.00181665642259
+UniRef50_F0YAA2		0.000224540307818	0.000269324433419	4.4784125601e-05
+UniRef50_P75910		0.00214659634746	0.003613914015	0.00146731766754
+UniRef50_Q50566	DNA ligase	0.00338985687825	0.000357084604739	-0.00303277227351
+UniRef50_F3U2V1	Gas vesicle synthesis GvpLGvpF	0.0165252776161	0.00376685704829	-0.0127584205678
+UniRef50_A5UJ79	Adhesin like protein	0.00270571158404	0.000661118596452	-0.00204459298759
+UniRef50_Q9RZV9	Chromosome partitioning ATPase, putative, ParA family	9.89181409236e-05	0.0142210844073	0.0141221662664
+UniRef50_D6DM05	Predicted oxidoreductases of the aldo keto reductase family	0.00389218339831	0.00116905658432	-0.00272312681399
+UniRef50_S5D7U1	Nucleotidyltransferase DNA polymerase involved in DNA repair	8.73810159412e-05	0.000464321908157	0.000376940892216
+UniRef50_Q7UTH1	Uridylate kinase	8.6405095114e-06	1.05269874172e-05	1.8864779058e-06
+UniRef50_J8YHU3	Aida related Type V secretory pathway adhesin	5.87984406329e-05	0.00164431511601	0.00158551667538
+UniRef50_Q1QAW5	Lysine  tRNA ligase	3.69569698471e-06	1.13451976806e-05	7.64950069589e-06
+UniRef50_Q94C74	Serine hydroxymethyltransferase 2, mitochondrial	4.13432558939e-05	1.87684479651e-05	-2.25748079288e-05
+UniRef50_E2QQ87	Phage baseplate assembly protein	0.00125710720405	0.000358684257326	-0.000898422946724
+UniRef50_UPI000366BB43	hypothetical protein	1.87911308953e-05	0.00027367738364	0.000254886252745
+UniRef50_X1YA55		5.29733717903e-06	1.57684392185e-05	1.04711020395e-05
+UniRef50_UPI00047BFE08	hypothetical protein	1.85880667997e-05	3.05547407351e-05	1.19666739354e-05
+UniRef50_N8D5Y6		0.00196405921091	0.000143088933094	-0.00182097027782
+UniRef50_A9EDB3	Putative transposase	0.000232439056637	9.81465269321e-05	-0.000134292529705
+UniRef50_UPI0004640326	hypothetical protein	0.000102195053718	9.19592481122e-05	-1.02358056058e-05
+UniRef50_UPI0003A56F69	hypothetical protein	0.000321736141935	0.000195213844699	-0.000126522297236
+UniRef50_P50060	Superoxide dismutase [Mn] 3 	6.64154734548e-06	2.86319739546e-05	2.19904266091e-05
+UniRef50_A0A028WHC5	DNA polymerase III, alpha subunit	0.00933961191453	0.00416697508595	-0.00517263682858
+UniRef50_P0A5R7	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.000707678181702	0.00289830446541	0.00219062628371
+UniRef50_E6JZ36	Citrate transporter	0.000272473679391	0.00229828828851	0.00202581460912
+UniRef50_Q831N0	tRNA N6 adenosine threonylcarbamoyltransferase	0.000151751904315	0.0010218205796	0.000870068675285
+UniRef50_U7NE48		6.05033643005e-06	8.85950282145e-06	2.8091663914e-06
+UniRef50_UPI000474C12F	glutathione ABC transporter permease, partial	0.000491900973046	0.000132263657277	-0.000359637315769
+UniRef50_D4HAW3		0.000228779387182	0.00152516705953	0.00129638767235
+UniRef50_T1YCD5	Fructokinase	0.0123544747591	0.00190009449478	-0.0104543802643
+UniRef50_UPI000376AD8E	hypothetical protein	1.88156850188e-05	3.04752653574e-05	1.16595803386e-05
+UniRef50_UPI000406F970	hypothetical protein	6.03156931171e-05	3.02157377708e-05	-3.00999553463e-05
+UniRef50_UPI000454108C	PREDICTED	2.47621179548e-05	3.53480930015e-05	1.05859750467e-05
+UniRef50_A1B402		1.91317748971e-05	6.60727285983e-05	4.69409537012e-05
+UniRef50_UPI00046A6AED	ABC transporter ATP binding protein	2.34595826039e-05	8.88101838579e-06	-1.45785642181e-05
+UniRef50_UPI00047B7506	membrane protein	6.89647817452e-06	2.69079904418e-06	-4.20567913034e-06
+UniRef50_Q7WYU3	Putative AgrB like protein	0.000203313818048	0.000913828104671	0.000710514286623
+UniRef50_H0G932		0.000457093875161	0.000240005457227	-0.000217088417934
+UniRef50_X5EAP1		0.00145907502578	0.00046637676108	-0.0009926982647
+UniRef50_Q8CNS4	Replication initiator protein A	0.0041095741658	0.0143059922859	0.0101964181201
+UniRef50_V4JMR5		0.000229930040147	0.000100414362636	-0.000129515677511
+UniRef50_Q2G8P8		7.32329307848e-05	3.94427720717e-05	-3.37901587131e-05
+UniRef50_N0BAQ7	dTDP 4 dehydrorhamnose 3,5 epimerase	0.0093824587694	0.00266896656043	-0.00671349220897
+UniRef50_Q8CU52	Alkylmercury lyase	0.0137635330485	0.00521695670851	-0.00854657633999
+UniRef50_A6V8R6	Ribonuclease D	0.000196650832005	0.000189914279868	-6.736552137e-06
+UniRef50_O66608	N5 carboxyaminoimidazole ribonucleotide synthase	6.33367038072e-06	8.92962116616e-06	2.59595078544e-06
+UniRef50_D3QEW5	CAAX amino terminal protease family protein	0.00688349437723	0.00039463256819	-0.00648886180904
+UniRef50_A0A017IAI8	AraC type transcriptional regulator family protein	1.24114953028e-05	8.1384982853e-05	6.89734875502e-05
+UniRef50_UPI0003714DE7	hypothetical protein	4.35666848183e-05	0.000113403427679	6.98367428607e-05
+UniRef50_UPI00039CF99B	ketol acid reductoisomerase	1.19336623305e-05	1.19683000937e-05	3.46377632e-08
+UniRef50_G8REC3		4.06143954149e-05	7.52187729899e-05	3.4604377575e-05
+UniRef50_R6CMC1	YhgE Pip domain protein	3.61310782178e-06	4.90728998721e-06	1.29418216543e-06
+UniRef50_UPI0002E4DB1A	threonyl tRNA synthetase	5.99085467897e-05	0.000516337351392	0.000456428804602
+UniRef50_Q9PD20		3.90203897991e-06	1.25108547573e-05	8.60881577739e-06
+UniRef50_Q5M430	tRNA dimethylallyltransferase	0.00514687055144	0.00411006536166	-0.00103680518978
+UniRef50_Q2RSC8	Phosphoribosylformylglycinamidine cyclo ligase	5.45172803872e-06	9.2305700216e-06	3.77884198288e-06
+UniRef50_F0RN90	Alpha beta hydrolase fold protein	0.000501322597353	0.0340076319762	0.0335063093788
+UniRef50_C9X0H3	DNA repair protein RecN	8.02024055691e-05	0.00344911278078	0.00336891037521
+UniRef50_UPI0003488344	hypothetical protein	1.82234674955e-05	0.000111083601552	9.28601340565e-05
+UniRef50_Q6A8H6	Guanylate kinase	0.00107853139672	0.00121931646621	0.00014078506949
+UniRef50_UPI00046F8C65	hypothetical protein	5.68590918017e-06	1.02431313037e-05	4.55722212353e-06
+UniRef50_UPI0003B73489	glycosyltransferase	5.68649671636e-05	2.21804795251e-05	-3.46844876385e-05
+UniRef50_UPI0003B360FE	MerR family transcriptional regulator	0.000176930842518	3.51558596517e-05	-0.000141774982866
+UniRef50_O27088	Type 2 DNA topoisomerase 6 subunit B	0.00210491129458	0.000134540640185	-0.00197037065439
+UniRef50_R9RCS6	MATE efflux family protein	0.00587621273293	0.00257485953005	-0.00330135320288
+UniRef50_C8W561	SpoVR family protein	1.48208946172e-05	0.000269821914715	0.000255001020098
+UniRef50_Q5HLN9	Transcriptional regulator, TetR family	0.0256634848327	0.00319965850955	-0.0224638263231
+UniRef50_A7ZJW5		0.00175334244593	0.0010030996119	-0.00075024283403
+UniRef50_Q9JTK4	Lactoferrin binding protein A	8.91838071812e-05	0.00395826584533	0.00386908203815
+UniRef50_O27585	Lysine  tRNA ligase	0.00193627870736	0.000604093784075	-0.00133218492329
+UniRef50_B7J8G6	Ribosomal RNA large subunit methyltransferase E	2.92904203346e-05	3.28262426774e-05	3.5358223428e-06
+UniRef50_A6LUF8		0.000191293575433	0.000564853822888	0.000373560247455
+UniRef50_UPI0003B3F0AB	hypothetical protein	6.33339922838e-05	2.77087402587e-05	-3.56252520251e-05
+UniRef50_UPI0003506CEC	PREDICTED	3.44371371501e-05	7.78513325262e-05	4.34141953761e-05
+UniRef50_G7M8A4		0.000128981545165	0.00107582513206	0.000946843586895
+UniRef50_B5YKI3	NADH quinone oxidoreductase subunit B 1	3.28135767483e-05	0.00011625212419	8.34385474417e-05
+UniRef50_P31135	Putrescine transport system permease protein PotH	0.00194973235726	0.00113161037917	-0.00081812197809
+UniRef50_I4Z1X0	Hydrogenase urease accessory protein	4.11245642975e-05	1.29426351267e-05	-2.81819291708e-05
+UniRef50_Q3JXY3		4.93426189711e-05	0.000361160138623	0.000311817519652
+UniRef50_UPI0003B638D4	phosphopentomutase, partial	3.02762974831e-05	2.97749804764e-05	-5.013170067e-07
+UniRef50_B2U2C8	Electron transport complex subunit RsxC	0.00191630193174	0.00102383712537	-0.00089246480637
+UniRef50_UPI000359674D	PREDICTED	6.16416802457e-06	5.67171708962e-07	-5.59699631561e-06
+UniRef50_W9T5C9		8.09162370286e-06	0.000135054906656	0.000126963282953
+UniRef50_UPI00047CBCCD	4 alpha glucanotransferase	1.25801724821e-05	0.000687866036113	0.000675285863631
+UniRef50_D3E1B3	Transposase	0.00281288824377	0.000120128829233	-0.00269275941454
+UniRef50_Q3A253	Valine  tRNA ligase	7.12792951471e-06	3.69481012797e-06	-3.43311938674e-06
+UniRef50_Q6D7E5	Zinc transporter ZitB	0.00494883712271	0.000683700605828	-0.00426513651688
+UniRef50_A6M0L7	UPF0249 protein Cbei_4037	0.000535591888877	0.000853409226561	0.000317817337684
+UniRef50_Q6HLQ9	Spermidine putrescine import ATP binding protein PotA	0.000478006394018	0.00149339455194	0.00101538815792
+UniRef50_F2MPN2	2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase	0.00026583520342	0.00165499178402	0.0013891565806
+UniRef50_UPI0002DFA60B	hypothetical protein	3.80349441285e-06	6.49859531178e-06	2.69510089893e-06
+UniRef50_F8XHG2		0.000157501679073	0.000103117378312	-5.4384300761e-05
+UniRef50_I0C7U2	4 aminobutyrate aminotransferase	0.0184473118621	0.00690204873872	-0.0115452631234
+UniRef50_P10932	Aliphatic amidase regulator	0.00245483589124	0.00204093245518	-0.00041390343606
+UniRef50_M7PBX7	Transferase	0.000208172420321	0.00676983444191	0.00656166202159
+UniRef50_J3HPZ9	Putative transcriptional regulator	5.11069574423e-05	1.21275278149e-05	-3.89794296274e-05
+UniRef50_UPI000479F530	ABC transporter	1.28120191747e-05	1.82440411391e-05	5.4320219644e-06
+UniRef50_E2XT98	Alcohol dehydrogenase	0.000286294842109	0.0219982123901	0.021711917548
+UniRef50_K0HWR7	LysR family transcriptional regulator	0.000164841043168	0.00601952036587	0.0058546793227
+UniRef50_A0A012DIE8		6.73024258588e-05	2.00021163844e-05	-4.73003094744e-05
+UniRef50_P42905	Putative N acetylgalactosamine permease IIC component 2	0.00059337694823	0.00133225581291	0.00073887886468
+UniRef50_B9JHG8		0.00501511811089	0.00307047149712	-0.00194464661377
+UniRef50_Q6MCU1	Chorismate synthase	4.51111768124e-06	1.4013270864e-05	9.50215318276e-06
+UniRef50_A3PS82	ABC transporter related	0.00270362290846	0.000216878853269	-0.00248674405519
+UniRef50_UPI00016C5336	ATP dependent RNA helicase	2.52470730571e-06	5.67163636893e-05	5.41916563836e-05
+UniRef50_E5QR85		0.00902968775528	0.000754947013561	-0.00827474074172
+UniRef50_D9XU17	Anti sigma B factor RsbT 	6.97149978448e-05	0.00256352982984	0.002493814832
+UniRef50_D7YAA8	Poly beta 1,6 N acetyl D glucosamine export porin PgaA	0.00141255925513	0.000269602475149	-0.00114295677998
+UniRef50_Q67P19	NADH quinone oxidoreductase subunit D 1	1.54514425812e-05	7.93300980706e-05	6.38786554894e-05
+UniRef50_UPI000468EA31	chemotaxis protein	6.32633467701e-05	1.00565829895e-05	-5.32067637806e-05
+UniRef50_D3P499		8.33816592992e-05	2.29487385568e-05	-6.04329207424e-05
+UniRef50_A4XY80	Aminopeptidase Y	0.000811105023959	0.000253271881941	-0.000557833142018
+UniRef50_A0A024H1Y9	NrdI protein	1.17934103105e-05	5.35419430642e-05	4.17485327537e-05
+UniRef50_D7BFI6		0.000420988091661	0.0531974945702	0.0527765064785
+UniRef50_P66951	Beta barrel assembly enhancing protease	0.00282278994908	0.000932645999834	-0.00189014394925
+UniRef50_G7ZNX7	Competence protein ComEC, putative	0.00852210096471	0.00186276751313	-0.00665933345158
+UniRef50_S5YYC5	D 3 phosphoglycerate dehydrogenase	0.017058627612	0.0032196499719	-0.0138389776401
+UniRef50_UPI000364F717	hypothetical protein	0.000299994827148	0.000228432242104	-7.1562585044e-05
+UniRef50_J8SAI7	Integral membrane protein MviN 	6.60825688746e-05	4.71843092021e-05	-1.88982596725e-05
+UniRef50_F3ZC85		3.09625389259e-06	5.70018343938e-05	5.39055805012e-05
+UniRef50_B2TJ37	DNA uptake protein	0.000228353856397	0.000594301749581	0.000365947893184
+UniRef50_P15644	Type II secretion system protein D	0.00184145083519	0.000863776243494	-0.000977674591696
+UniRef50_A6LSN4	Ribonuclease HII	0.000319452176746	0.002172169607	0.00185271743025
+UniRef50_A3DJ91	Chemotaxis response regulator protein glutamate methylesterase	0.000828657659638	0.00265057915224	0.0018219214926
+UniRef50_A3VZA4		0.00312348413126	0.000809190486442	-0.00231429364482
+UniRef50_UPI00036D2281	hypothetical protein	1.10158609674e-05	0.000120376636834	0.000109360775867
+UniRef50_T3G9C0	Modulator of DNA gyrase family protein	0.000480960977159	0.00111278630821	0.000631825331051
+UniRef50_W1YWP9		6.8229564802e-05	0.00260590019156	0.00253767062676
+UniRef50_M4S4L0	ParB family protein	0.000164402341726	3.30095016892e-05	-0.000131392840037
+UniRef50_M9WZ57		5.35688982539e-06	1.75259005891e-05	1.21690107637e-05
+UniRef50_Q8XC28	Tyrosine protein kinase etk	0.00287693786193	0.000730554893067	-0.00214638296886
+UniRef50_F2CYK8	Predicted protein 	0.000359150497354	4.10353144307e-05	-0.000318115182923
+UniRef50_Q181T5	Enolase	1.11747127829e-05	0.0029049222586	0.00289374754582
+UniRef50_F8B5V8	Methylmalonyl CoA epimerase	5.13723684337e-05	2.6596749752e-05	-2.47756186817e-05
+UniRef50_D8AI56		0.000403912302854	0.000375013205696	-2.8899097158e-05
+UniRef50_A3PRU0	Protease Do	0.00668774361918	0.00131215698786	-0.00537558663132
+UniRef50_A7M2I7		0.000113333960784	6.0604165806e-05	-5.2729794978e-05
+UniRef50_P9WN34	Anthranilate synthase component 2	1.02990941202e-05	0.000970593936786	0.000960294842666
+UniRef50_UPI0001BF66E0	hypothetical protein SMAC_10559	7.34551944029e-05	2.60859946198e-05	-4.73691997831e-05
+UniRef50_A5UMG7	Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family	0.00265172060313	0.000687965988473	-0.00196375461466
+UniRef50_B2TKT2	D alanine  poly ligase subunit 1	9.72066924068e-05	0.000953951928533	0.000856745236126
+UniRef50_P77608	2 keto 4 pentenoate hydratase	0.00229198367168	8.84925370398e-05	-0.00220349113464
+UniRef50_UPI00035F6D04	hypothetical protein	4.81829758415e-06	7.78005949958e-06	2.96176191543e-06
+UniRef50_UPI0003688491	hypothetical protein	0.000148393233729	0.000174888431651	2.6495197922e-05
+UniRef50_UPI0003AF89CE	PREDICTED	7.05582642558e-06	9.86024436303e-05	9.15466172047e-05
+UniRef50_C7ZUX9	Exported protein	0.0107910022788	0.00167683375285	-0.00911416852595
+UniRef50_UPI000395A56D	hypothetical protein, partial	1.12869047595e-05	3.05002773062e-05	1.92133725467e-05
+UniRef50_P95784	ATP synthase subunit a	0.00706529539011	0.0017726855061	-0.00529260988401
+UniRef50_W6EGR2		0.0321252960984	0.00415807993141	-0.027967216167
+UniRef50_R5GIU2	ABC transporter permease protein	0.000176670509603	0.00155195290105	0.00137528239145
+UniRef50_B9AFH0	Polymorphic outer membrane protein repeat  (Fragment)	0.00350436013622	0.00137174198417	-0.00213261815205
+UniRef50_Q1H276	UPF0125 protein Mfla_1143	2.00018733029e-05	3.07484600537e-05	1.07465867508e-05
+UniRef50_Q8X9B6	Biotin carboxylase	0.00343132376192	0.00267149555587	-0.00075982820605
+UniRef50_Q6A7Q4	Phosphopantetheine adenylyltransferase	0.00390502747089	0.00222179388572	-0.00168323358517
+UniRef50_A0A022KFC8	FCD domain protein	0.00017584751034	0.00452399232121	0.00434814481087
+UniRef50_A8I308	D hydantoinase	0.00141085008063	0.000393386043517	-0.00101746403711
+UniRef50_A8L8P5	UPF0225 protein Franean1_5815	1.47442169188e-05	8.54757163091e-05	7.07314993903e-05
+UniRef50_Q8XDS0	Aspartate ammonia lyase	0.00371662976952	0.00223329296489	-0.00148333680463
+UniRef50_B9TEB7		0.000230693169858	1.55375221327e-05	-0.000215155647725
+UniRef50_UPI0002378CC4	serine threonine protein kinase	5.10662009143e-06	0.00111183747181	0.00110673085172
+UniRef50_P0AEI0	Inner membrane protein YjiG	0.00429740806271	0.0039649657845	-0.00033244227821
+UniRef50_Q6YWN8	BKRF1 encodes EBNA 1 protein like	2.2129784845e-05	0.000213225057899	0.000191095273054
+UniRef50_P47227	Cis 2,3 dihydrobiphenyl 2,3 diol dehydrogenase	1.20830995812e-05	1.29751677288e-05	8.920681476e-07
+UniRef50_P77288		0.00142159318365	0.00256797134953	0.00114637816588
+UniRef50_Q5HRN0	UvrB UvrC domain protein	0.0164415474507	0.00555139918332	-0.0108901482674
+UniRef50_Q2S0M8	3 isopropylmalate dehydrogenase	6.14853873775e-05	0.00961525308831	0.00955376770093
+UniRef50_UPI0002E4EFAA	hypothetical protein	0.000133468751449	8.15373332446e-05	-5.19314182044e-05
+UniRef50_C5N2L9	Sua5 YciO YrdC YwlC family protein	0.0217879065272	0.00690338607265	-0.0148845204546
+UniRef50_Q28W83		0.000104839170676	1.98402702908e-05	-8.49989003852e-05
+UniRef50_UPI0003B4DCFB	ketol acid reductoisomerase	7.37937188625e-06	2.20856894897e-05	1.47063176035e-05
+UniRef50_B7JTI5	SAF domain family	0.000136605303564	0.000219838738361	8.3233434797e-05
+UniRef50_G4LM62	Outer membrane OprD family porin	0.000965852908246	0.00240066438947	0.00143481148122
+UniRef50_R8AF48	DNA single strand annealing protein 	3.09122402051e-05	7.98239877779e-05	4.89117475728e-05
+UniRef50_P07648	RecBCD enzyme subunit RecC	7.09842051955e-05	0.000110513205694	3.95290004985e-05
+UniRef50_Q97FT9	Lon protease	0.00062658326208	0.000871016769331	0.000244433507251
+UniRef50_A8LK44	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	6.30121142543e-05	3.45410562344e-05	-2.84710580199e-05
+UniRef50_Q7CTM5	Replication protein C	2.61476560876e-05	5.3053551528e-06	-2.08423009348e-05
+UniRef50_Q6F9Y0	Type II secretion system protein K	0.000118334165783	0.00692475896506	0.00680642479928
+UniRef50_R0DQ91		2.41315403657e-05	6.08747515742e-05	3.67432112085e-05
+UniRef50_UPI0002ECAD7A	hypothetical protein	3.91594156617e-06	0.000413821036438	0.000409905094872
+UniRef50_UPI00035E723E	hypothetical protein	2.61762813861e-05	1.32801570306e-05	-1.28961243555e-05
+UniRef50_UPI000479B32F	hypothetical protein	4.60099476383e-05	1.11411166263e-05	-3.4868831012e-05
+UniRef50_Q483C5	Holliday junction ATP dependent DNA helicase RuvA	0.00379776065942	0.00193431844603	-0.00186344221339
+UniRef50_H3TL67	Phenol hydroxylase	0.000985670080054	0.000662129088634	-0.00032354099142
+UniRef50_UPI0003B4F6D8	hypothetical protein	2.64174346183e-06	5.43829316898e-05	5.1741188228e-05
+UniRef50_A5UNK2		0.0035845793656	0.00048412574623	-0.00310045361937
+UniRef50_O25657	4 hydroxy tetrahydrodipicolinate synthase	0.000159501122048	0.00497804360017	0.00481854247812
+UniRef50_B2GD08	Dihydroorotase	4.1560455647e-06	0.00195482858848	0.00195067254292
+UniRef50_Q1IY18	RNA ligase of LigT family	0.000376231882575	0.0195667760961	0.0191905442135
+UniRef50_P07607	Thymidylate synthase	2.66552955573e-05	9.42510242078e-05	6.75957286505e-05
+UniRef50_O32044	Single stranded DNA specific exonuclease RecJ	5.1475362111e-05	0.000276808252674	0.000225332890563
+UniRef50_UPI0003B455BB	histidine kinase	3.26439894125e-06	1.65119946651e-05	1.32475957239e-05
+UniRef50_UPI0004633AFB	relaxase	1.41730229001e-05	5.2653357938e-06	-8.9076871063e-06
+UniRef50_A0A033ZCU2		0.000175774479779	8.40279231199e-06	-0.000167371687467
+UniRef50_P76481		0.00369475847658	0.000711800433208	-0.00298295804337
+UniRef50_Q466I1	DNA 3 methyladenine glycosylase III	0.00228798246567	0.000320996418691	-0.00196698604698
+UniRef50_Q02H50		0.00111109932407	0.00059602647001	-0.00051507285406
+UniRef50_P76486		0.00126122746107	0.000284871419803	-0.000976356041267
+UniRef50_P76485		0.00016700764064	0.000420878914765	0.000253871274125
+UniRef50_P76484		0.00475692025709	0.000350871332905	-0.00440604892419
+UniRef50_G9UAR6	Nitrite extrusion protein 	5.48394375904e-05	3.17769379433e-05	-2.30624996471e-05
+UniRef50_Q3J6L0	Dimethlysulfonioproprionate lyase DddL	0.0199228529549	0.00138047354394	-0.018542379411
+UniRef50_F4D682	Sel1 repeat protein	0.000347379744345	0.00686335542532	0.00651597568098
+UniRef50_UPI000289216F	DNA mismatch repair protein MutS	2.31850332316e-06	2.08201817064e-05	1.85016783832e-05
+UniRef50_A3JNX6		0.000236296152086	2.53817331871e-05	-0.000210914418899
+UniRef50_R5AYM2		1.75382491039e-05	0.000193591288849	0.000176053039745
+UniRef50_A3JNX5		0.000312141726568	2.99302073354e-05	-0.000282211519233
+UniRef50_UPI0004744F96	amidohydrolase	6.0412349673e-06	3.82915000607e-05	3.22502650934e-05
+UniRef50_UPI0003B74A4B	RNA polymerase subunit sigma 24	0.000119325596245	3.255348984e-05	-8.6772106405e-05
+UniRef50_G8VJE3	BadF BadG BcrA BcrD ATPase family protein	0.000376108485017	0.00551566915926	0.00513956067424
+UniRef50_Q823P5	Na translocating NADH quinone reductase subunit E	1.4745186382e-05	4.29424316819e-05	2.81972452999e-05
+UniRef50_S4XM14		7.23885105463e-06	5.18343814163e-05	4.45955303617e-05
+UniRef50_Q7ZAK9	Segregation and condensation protein B	0.00553826383443	0.00158619682925	-0.00395206700518
+UniRef50_UPI000306724C	thioredoxin	3.23952116692e-05	8.00773813649e-06	-2.43874735327e-05
+UniRef50_B1VAN9	Proline  tRNA ligase	5.41407800143e-06	1.53956858958e-05	9.98160789437e-06
+UniRef50_R6KZL2	L serine dehydratase iron sulfur dependent alpha subunit	8.82090596597e-06	1.22046742601e-05	3.38376829413e-06
+UniRef50_S5YFS5		0.000229585157287	6.0003333397e-05	-0.00016958182389
+UniRef50_Q1GN45		0.000514583464975	0.00019287795798	-0.000321705506995
+UniRef50_A0A059LCY3		0.000134018694272	0.000111306225312	-2.271246896e-05
+UniRef50_D9SMI0		9.25678139208e-05	0.000970849450822	0.000878281636901
+UniRef50_B7H3X7	RNA methyltransferase, TrmH family, group 1 family protein	0.000189058091245	0.0069974121164	0.00680835402515
+UniRef50_A0A023RS70		0.000754971977708	0.00649521698905	0.00574024501134
+UniRef50_Q9RYG9	Aldehyde dehydrogenase	8.88899502839e-05	0.0474508543153	0.047361964365
+UniRef50_Q4EF29		0.000532708507638	0.000225172491813	-0.000307536015825
+UniRef50_R9SK97	Energy converting hydrogenase A subunit L EhaL	0.00098441731494	0.00119319880887	0.00020878149393
+UniRef50_K7RWV6	Type I phosphodiesterase nucleotide pyrophosphatase	0.000100395209802	0.00516792670462	0.00506753149482
+UniRef50_Q5Z380	Glutamyl Q tRNA synthetase	7.71306720528e-06	1.14489673521e-05	3.73590014682e-06
+UniRef50_Q2J6V8	3 isopropylmalate dehydrogenase	4.99309380192e-05	0.00147466571303	0.00142473477501
+UniRef50_Q4L351	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.146690779987	0.0313604727515	-0.115330307236
+UniRef50_UPI000474339B	hypothetical protein, partial	2.68543045134e-05	4.25282675978e-05	1.56739630844e-05
+UniRef50_C5C6N2	Cobyrinic acid ac diamide synthase	4.08622150193e-06	2.75030285068e-05	2.34168070049e-05
+UniRef50_U7GP52		0.000498031644221	0.00013478540219	-0.000363246242031
+UniRef50_O26880	Probable cobyric acid synthase	0.00184492692467	0.00126786892769	-0.00057705799698
+UniRef50_UPI0003783691	hypothetical protein, partial	4.90056105217e-06	7.37651023192e-06	2.47594917975e-06
+UniRef50_A3PFT3		0.0121008246677	0.00195334490879	-0.0101474797589
+UniRef50_L0A0P5		3.5489640402e-05	4.19737100999e-05	6.4840696979e-06
+UniRef50_P15028	Fe dicitrate binding periplasmic protein	0.00252953224648	0.00106137438557	-0.00146815786091
+UniRef50_V6YIB9		1.15897161265e-05	9.25509449579e-05	8.09612288314e-05
+UniRef50_UPI0002627F77	hypothetical protein	7.25049225708e-05	2.14149768971e-05	-5.10899456737e-05
+UniRef50_C0QHR6	UgpB	1.33020447329e-05	6.95275708449e-06	-6.34928764841e-06
+UniRef50_UPI0003505377	PREDICTED	5.18284010692e-06	1.04173402818e-05	5.23450017488e-06
+UniRef50_F0P831	Nitroreductase family protein	0.0375989831202	0.00526833858042	-0.0323306445398
+UniRef50_A6QEY2		0.0178351850004	0.00369144252742	-0.014143742473
+UniRef50_V4QDF6		1.10005147011e-05	1.47186948936e-05	3.7181801925e-06
+UniRef50_D7GAG5	Heat shock protein DnaJ 	2.48988985043e-05	3.12457458379e-05	6.3468473336e-06
+UniRef50_Q49ZB7	UPF0457 protein SSP0714	0.00949247154328	0.00175435666453	-0.00773811487875
+UniRef50_C7CIU9		0.000204788180408	4.57339379516e-05	-0.000159054242456
+UniRef50_Q72I44	Maltose maltodextrin binding protein	0.000525796472968	0.0550429009884	0.0545171045154
+UniRef50_Q8FQP8	Fumarate hydratase class II	7.63395438253e-06	1.07974433758e-05	3.16348899327e-06
+UniRef50_Q8GDY3	Isoprenyl transferase	7.22078346917e-06	1.29117543963e-05	5.69097092713e-06
+UniRef50_UPI000363611D	hypothetical protein, partial	3.79090304304e-07	2.97566443213e-06	2.59657412783e-06
+UniRef50_E2XCC3	Porin thermoregulatory envY domain protein	3.95957943646e-05	6.31347907217e-05	2.35389963571e-05
+UniRef50_UPI00037CBE46	hypothetical protein	1.58818851999e-05	5.09814010307e-06	-1.07837450968e-05
+UniRef50_A0A017HI16	Putative inner membrane protein	1.04505148597e-05	1.8284873694e-05	7.8343588343e-06
+UniRef50_A5UJ74	Chloramphenicol O acetyltransferase	0.00168940887183	0.000350871332905	-0.00133853753892
+UniRef50_Q2S4B9	Leucyl phenylalanyl tRNA  protein transferase	1.63919476428e-05	4.0630313711e-05	2.42383660682e-05
+UniRef50_Q9KPL8	Thymidine phosphorylase	0.00275091960508	0.00089763764448	-0.0018532819606
+UniRef50_A5UJ64		0.00171708182643	0.00061738684013	-0.0010996949863
+UniRef50_Q38XI1	Phosphopentomutase	1.39465648841e-05	1.51672510828e-05	1.2206861987e-06
+UniRef50_T2A3N6	Replication initiation factor	0.000137936414928	0.00878178138178	0.00864384496685
+UniRef50_A0A034MYR1		0.00813166827365	0.000899594919637	-0.00723207335401
+UniRef50_A4X046		4.14177856367e-05	1.8310656756e-05	-2.31071288807e-05
+UniRef50_P10173	Fumarate hydratase, mitochondrial	7.68565490509e-06	2.87440250094e-05	2.10583701043e-05
+UniRef50_E3GZR7	C4 dicarboxylate transporter malic acid transport protein	0.000259768094505	0.00134842505848	0.00108865696397
+UniRef50_UPI00036C6CE0	methionyl tRNA synthetase	9.53304226055e-06	1.65977317256e-05	7.06468946505e-06
+UniRef50_A3M9C4		0.000116030529356	0.00540148742801	0.00528545689865
+UniRef50_C7M0E4	2 isopropylmalate synthase	0.00868456851448	0.00318708548283	-0.00549748303165
+UniRef50_UPI00034512D5	hypothetical protein	0.000152644904249	4.99342069486e-05	-0.0001027106973
+UniRef50_Q3J3B7	ABC transporter, fused ATPase and inner membrane subunits	0.00347920830776	0.00110754262457	-0.00237166568319
+UniRef50_B1YMH0	tRNA dimethylallyltransferase	7.34687766961e-06	8.8742903743e-06	1.52741270469e-06
+UniRef50_F8LKP2		0.00512369866803	0.0026842517056	-0.00243944696243
+UniRef50_Q1QNK0		0.020792651585	0.00953177936199	-0.011260872223
+UniRef50_B9KKX9	Na+ solute symporter	0.00868768981435	0.0017356498707	-0.00695203994365
+UniRef50_UPI0004689C7D	succinylglutamate desuccinylase	0.000139811249249	1.34969873678e-05	-0.000126314261881
+UniRef50_A0A024RXB9		0.000617107139422	6.32769582685e-05	-0.000553830181153
+UniRef50_P54304	Oxygen independent coproporphyrinogen III oxidase like protein YqeR	2.09034716046e-05	0.000156390135144	0.000135486663539
+UniRef50_UPI000472E48E	hypothetical protein	3.30198369461e-05	1.41672052991e-05	-1.8852631647e-05
+UniRef50_B5Z6E9	Acetyl coenzyme A synthetase	0.000126903165919	0.00389659082509	0.00376968765917
+UniRef50_UPI00036C5675	hypothetical protein, partial	1.65298260422e-05	2.11167240586e-05	4.5868980164e-06
+UniRef50_C7RVA0	Transposase IS4 family protein	5.63871600227e-05	1.67445832553e-05	-3.96425767674e-05
+UniRef50_Q9HZ55	Ribosomal large subunit pseudouridine synthase B	0.000679746682604	1.20817857143e-05	-0.00066766489689
+UniRef50_D2Z027	O ureido L serine synthase	5.78628026039e-05	9.74749310295e-06	-4.81153095009e-05
+UniRef50_M3DVL4		9.06873424513e-06	4.15391734511e-06	-4.91481690002e-06
+UniRef50_I6STE7	Transcriptional regulator	0.00413494153596	0.000986952797098	-0.00314798873886
+UniRef50_S3FNF7	Nitrite extrusion 1 domain protein	4.11420351115e-05	3.78116226998e-05	-3.3304124117e-06
+UniRef50_Q9XDH5	DNA polymerase III subunit alpha	1.77744155347e-06	1.11834011294e-05	9.40595957593e-06
+UniRef50_A6LRS6	Methyl accepting chemotaxis sensory transducer	0.000362914169993	0.000576700963191	0.000213786793198
+UniRef50_UPI00036C22DF	hypothetical protein, partial	3.13781564694e-05	4.69435660614e-05	1.5565409592e-05
+UniRef50_A4FVV8	Tetrahydromethanopterin S methyltransferase subunit H	0.00460681242472	0.000420878914765	-0.00418593350995
+UniRef50_UPI000469A37F	hypothetical protein	3.76370854623e-05	2.62625779443e-05	-1.1374507518e-05
+UniRef50_Q8CJR5	Phosphate acetyltransferase	3.63169941818e-06	1.29372822869e-05	9.30558286872e-06
+UniRef50_Q8CQB7	OpuCB protein	0.00933715815705	0.00575446329409	-0.00358269486296
+UniRef50_D5H607	GTP binding protein TypA	0.000402610177941	0.00554073267646	0.00513812249852
+UniRef50_UPI00040B08A2	hypothetical protein	7.9878624342e-06	2.45554915025e-05	1.65676290683e-05
+UniRef50_R7PVW1		0.00526133122526	0.000799776047734	-0.00446155517753
+UniRef50_Q9RU45		6.50090681193e-05	0.00193362323375	0.00186861416563
+UniRef50_UPI0003B4FB17	succinyl CoA synthetase subsunit alpha	8.03005203118e-06	6.26067677485e-06	-1.76937525633e-06
+UniRef50_B4U3L2	Glycine D amino acid oxidases family	0.00520826489182	0.00427899087141	-0.00092927402041
+UniRef50_Q0BPU7	Protoheme IX farnesyltransferase	0.00354625724806	0.000938789246667	-0.00260746800139
+UniRef50_UPI00035C8085	MULTISPECIES	3.38538896111e-06	2.45922718809e-05	2.12068829198e-05
+UniRef50_D6K0E4	Tellurium resistance protein	8.55281585193e-05	0.000282812834405	0.000197284675886
+UniRef50_A4WRY9		0.00593547535954	0.0297460523065	0.023810576947
+UniRef50_Q74HC8	N acetylmuramic acid 6 phosphate etherase	7.07622268436e-06	1.10689666031e-05	3.99274391874e-06
+UniRef50_S4MRC0		4.25462990936e-05	0.0007980793015	0.000755533002406
+UniRef50_B9E7V9	Two component response regulator	0.0185652325943	0.00629951231988	-0.0122657202744
+UniRef50_Q7WEH6	Hemin import ATP binding protein HmuV	2.346945672e-05	0.000279017478474	0.000255548021754
+UniRef50_C5C1A7	Ribulokinase	0.000158806901612	0.00415406081521	0.0039952539136
+UniRef50_UPI00035EC645	hypothetical protein	3.64714282561e-05	0.000140116837553	0.000103645409297
+UniRef50_Q8CND6	FDHD protein	0.00121392972285	0.00105564091509	-0.00015828880776
+UniRef50_A1VV51		4.40227065256e-05	7.72371549974e-06	-3.62989910259e-05
+UniRef50_G4LN90	Acyl CoA synthetase	0.000656381761222	0.000231562543847	-0.000424819217375
+UniRef50_D8THS6	Pathogenesis related protein 1 like protein	4.75931520965e-06	4.28543409532e-05	3.80950257435e-05
+UniRef50_U3SRT7		0.00185279851598	0.0019055539861	5.275547012e-05
+UniRef50_X7Z2N8		0.00214830408532	0.00187085625902	-0.0002774478263
+UniRef50_E4REV8	BirA	0.00118503109539	0.000527475429582	-0.000657555665808
+UniRef50_A6LXY3	Diguanylate cyclase	0.000203496489951	0.00144348123307	0.00123998474312
+UniRef50_Q8RKJ0	Putative ribitol 5 phosphate dehydrogenase	0.00935580263371	0.00204932539342	-0.00730647724029
+UniRef50_A3JXP6		9.00490404456e-06	5.6721191515e-06	-3.33278489306e-06
+UniRef50_B4U3L6	DNA replication protein DnaD	0.00859148713415	0.00629849185467	-0.00229299527948
+UniRef50_UPI0003D0F47B	PREDICTED	5.01228085039e-06	8.17100699863e-05	7.66977891359e-05
+UniRef50_M1MTG9	Tetratricopeptide TPR_2 repeat containing protein	0.000299563807054	0.000313615848291	1.4052041237e-05
+UniRef50_UPI000421FD3A	acetyl CoA acetyltransferase	5.43840349299e-06	0.000155847162666	0.000150408759173
+UniRef50_A7WYS8	Lysine  tRNA ligase	0.0282354385134	0.0108128239338	-0.0174226145796
+UniRef50_UPI00035D12EA	hypothetical protein	0.000358642225905	0.000103607080292	-0.000255035145613
+UniRef50_B7KKV6	Transposase, IS605 OrfB family	0.000138104630066	0.0408555658011	0.040717461171
+UniRef50_UPI000467FC65	hypothetical protein	3.65300548237e-06	9.01597706282e-06	5.36297158045e-06
+UniRef50_G8VDJ6	Kinase, PfkB family protein	0.000486144684264	0.00495801056252	0.00447186587826
+UniRef50_K4LCD0	Transposase	0.000701437052639	0.000461688595543	-0.000239748457096
+UniRef50_I3THN5	ABC transporter, periplasmic solute binding protein	0.00705048334824	0.000360658156203	-0.00668982519204
+UniRef50_R9YM38		0.00341502750521	0.0010361989656	-0.00237882853961
+UniRef50_H3USA6		0.00478524494577	0.00114184482882	-0.00364340011695
+UniRef50_UPI0003820DEC	DNA binding protein	5.76808633565e-05	0.000330145169625	0.000272464306268
+UniRef50_D0WAX6		0.000173821309264	0.00176994996211	0.00159612865285
+UniRef50_C6NU33	DNA repair protein RadA 	7.29874260036e-06	6.10225328375e-05	5.37237902371e-05
+UniRef50_D3EY08		0.00868313021052	0.000726188619325	-0.00795694159119
+UniRef50_J7TVX7	Integral membrane protein	0.000184790683319	4.15688804925e-05	-0.000143221802826
+UniRef50_A5IUD7	Phage transcriptional regulator, RinA family	0.0240077126472	0.00292464598326	-0.0210830666639
+UniRef50_A6Q5I8	Glutamate  tRNA ligase 2	4.55477150107e-06	1.30156777978e-05	8.46090629673e-06
+UniRef50_Q1QJ73		0.000117090754681	3.20068933125e-05	-8.50838613685e-05
+UniRef50_Q3IVG4	Hemolysin type calcium binding protein	0.00363163566087	0.00100026594597	-0.0026313697149
+UniRef50_Q9AAL4	N succinylarginine dihydrolase 1	1.39343843814e-05	4.69487016485e-05	3.30143172671e-05
+UniRef50_Q223D6	ATP synthase subunit beta 1	2.38968077398e-05	5.63111242768e-05	3.2414316537e-05
+UniRef50_M1LNT9	ABC type metal ion transport system, periplasmic component surface adhesin	0.000387272504918	0.000406691331196	1.9418826278e-05
+UniRef50_B2TL84	Cyclic nucleotide binding domain protein	0.000189374241902	0.00383650078313	0.00364712654123
+UniRef50_UPI000361F512	hypothetical protein	1.66122576576e-05	1.31223973287e-05	-3.4898603289e-06
+UniRef50_B9C0V9		5.43776236324e-05	0.000578447554131	0.000524069930499
+UniRef50_J0EHT6		0.0284727798813	0.00625492954049	-0.0222178503408
+UniRef50_UPI00036BFB9E	hypothetical protein	6.77397920763e-05	1.47148639922e-05	-5.30249280841e-05
+UniRef50_B9KQI2		0.00456910066061	0.0018191574448	-0.00274994321581
+UniRef50_P0A2U6	Zinc transport system ATP binding protein AdcC	0.00743395409295	0.0110868924	0.00365293830705
+UniRef50_D9SLD8	Fibronectin binding A domain protein	0.000275808980077	0.00208680996202	0.00181100098194
+UniRef50_UPI000248DBE4	multidrug transporter	3.53340808004e-06	0.0001220956294	0.00011856222132
+UniRef50_UPI0003B77FDC	peptidyl tRNA hydrolase	1.78154991167e-05	4.4239483223e-05	2.64239841063e-05
+UniRef50_Q93YZ7	Acetolactate synthase small subunit 2, chloroplastic	1.87022389469e-05	0.000326351724296	0.000307649485349
+UniRef50_V7C557		2.43715819432e-05	8.28080739986e-07	-2.35435012032e-05
+UniRef50_A6LYZ3		0.000236872393028	0.000806912347246	0.000570039954218
+UniRef50_B0V8I1		0.000114044105391	0.00507037285646	0.00495632875107
+UniRef50_Q9FA52	Glucans biosynthesis glucosyltransferase H	0.00672991507532	0.00163025750352	-0.0050996575718
+UniRef50_Q6A910	Orotate phosphoribosyltransferase	2.86615951336e-05	0.00385141541149	0.00382275381636
+UniRef50_B5F1C0	Cysteine desulfurase IscS	0.00373632505104	0.00106969172297	-0.00266663332807
+UniRef50_A3M8T8	Phage integrase	0.000467559904254	0.00543028547724	0.00496272557299
+UniRef50_B4IVR0	GE15000	8.01456451903e-05	0.00012566668307	4.55210378797e-05
+UniRef50_D3QH80	Hydroxymethylglutaryl CoA reductase	0.0261247515505	0.00542510070036	-0.0206996508501
+UniRef50_D5BRV4	Binding protein dependent transport systems inner membrane component	0.0186131191613	0.0031797774973	-0.015433341664
+UniRef50_Q9K678	PTS system mannitol specific EIICB component	7.25565611933e-06	0.00155665267991	0.00154939702379
+UniRef50_Q1MHS1	Ribose import ATP binding protein RbsA 1	5.72047374741e-05	6.58279811933e-06	-5.06219393548e-05
+UniRef50_C1KWM3	3 phosphoshikimate 1 carboxyvinyltransferase	0.00672018972832	0.00678986082623	6.967109791e-05
+UniRef50_A3PN67		0.00505107074785	0.0021895732016	-0.00286149754625
+UniRef50_A4SIM5	Argininosuccinate synthase	3.53388418802e-06	6.84757887109e-05	6.49419045229e-05
+UniRef50_B7HEC5	SsrA binding protein	0.0366579350599	0.0056128352379	-0.031045099822
+UniRef50_Q7NCQ9	Valine  tRNA ligase	3.2344464246e-06	2.61089678025e-06	-6.2354964435e-07
+UniRef50_Q2T8Y7	Probable chemoreceptor glutamine deamidase CheD 2	3.90630920259e-05	1.74103418452e-05	-2.16527501807e-05
+UniRef50_P95646	Anthranilate synthase component 1	0.00105112652862	0.00013832045875	-0.00091280606987
+UniRef50_UPI00047BA852	hypothetical protein	1.62657406834e-05	7.84398002079e-06	-8.42176066261e-06
+UniRef50_UPI00035E8084	hypothetical protein	2.30164997838e-05	4.28964192602e-06	-1.87268578578e-05
+UniRef50_Q0AQH3	Ribosomal RNA large subunit methyltransferase E	0.000330982315753	0.000102764576072	-0.000228217739681
+UniRef50_UPI0003C1AC12	PREDICTED	1.03607069794e-05	1.6649208032e-05	6.2885010526e-06
+UniRef50_B9KMC5	Transcriptional regulator, LysR family	0.00381060621614	0.000975993471022	-0.00283461274512
+UniRef50_UPI0002DED034	hypothetical protein	0.000182224950357	0.000210983997576	2.8759047219e-05
+UniRef50_UPI00047129D7	transposase	0.000102159962651	0.0172533378248	0.0171511778621
+UniRef50_UPI00036A3DAC	hypothetical protein	8.8639502822e-05	4.14199314228e-05	-4.72195713992e-05
+UniRef50_Q6F9R1	Protoheme IX farnesyltransferase	7.70137112277e-06	0.0030296902406	0.00302198886948
+UniRef50_Q9UJM8	Hydroxyacid oxidase 1	5.03996479327e-06	0.000100104296414	9.50643316207e-05
+UniRef50_A6M2U7	Response regulator receiver sensor signal transduction histidine kinase	0.00070534543686	0.00120553686606	0.0005001914292
+UniRef50_A4WXL5		0.00457967202102	0.00101645984431	-0.00356321217671
+UniRef50_UPI0004790384	hypothetical protein	2.18716966552e-05	5.76142044956e-05	3.57425078404e-05
+UniRef50_UPI00037C9F17	hypothetical protein	0.00122371667986	0.000257609826611	-0.000966106853249
+UniRef50_G0HE81	Alcohol dehydrogenase	0.00017184491147	0.00616768952251	0.00599584461104
+UniRef50_C4Y1J5	Isocitrate dehydrogenase, mitochondrial	0.000357524976554	0.000136514626931	-0.000221010349623
+UniRef50_A0A038FV36		3.81163807889e-05	2.56416453118e-05	-1.24747354771e-05
+UniRef50_UPI0002F90E7D	hypothetical protein	2.02275777247e-05	0.00109304893085	0.00107282135313
+UniRef50_C8WIL3	2 nitropropane dioxygenase NPD	0.000353447267603	0.00630030521259	0.00594685794499
+UniRef50_O29329	Putative branched chain amino acid aminotransferase	0.000129646082167	3.09431216509e-05	-9.87029605161e-05
+UniRef50_UPI00036F30A5	hypothetical protein	1.6177650991e-05	3.76971102985e-05	2.15194593075e-05
+UniRef50_M1MI89	Sensor histidine kinase YesM	0.000364378607423	0.00174270182161	0.00137832321419
+UniRef50_A3M8H3	Chemotactic signal transduction system component	0.000187178460387	0.00735889845319	0.0071717199928
+UniRef50_UPI0001FFE87D	ABC type Fe3+ transport system, periplasmic component	0.000110952463117	8.22955941343e-05	-2.86568689827e-05
+UniRef50_UPI0003807E5F	hypothetical protein, partial	0.00095642428546	0.107632591229	0.106676166944
+UniRef50_UPI0003B5D592	adenylosuccinate synthetase	2.63329123836e-05	2.41355870463e-05	-2.1973253373e-06
+UniRef50_Q6MCV4	Spermidine putrescine import ATP binding protein PotA	0.000150905353334	6.06413392275e-05	-9.02640141065e-05
+UniRef50_UPI000475EAAA	epimerase	6.45370730131e-06	4.21705017338e-05	3.57167944325e-05
+UniRef50_M9SCU9		0.000329202897256	0.000228927678448	-0.000100275218808
+UniRef50_F7P1G2		4.94770542113e-05	3.0174299474e-05	-1.93027547373e-05
+UniRef50_UPI0001BC2D8F	putative enterobactin synthetase component A 	5.25925959356e-06	1.19258930283e-05	6.66663343474e-06
+UniRef50_R0P3C6	Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain	0.012543489925	0.042977778887	0.030434288962
+UniRef50_Q02KY6		0.00321364903152	0.00819906267417	0.00498541364265
+UniRef50_Q2GL45	30S ribosomal protein S8	0.00441245341561	0.00138709361531	-0.0030253598003
+UniRef50_A7ZLN4	ABC transporter, ATP binding protein	0.00173059899336	0.000355150487929	-0.00137544850543
+UniRef50_G8LHY7		0.00411827725455	0.0011937024265	-0.00292457482805
+UniRef50_W4KP08		0.000104639966869	3.86495865146e-05	-6.59903803544e-05
+UniRef50_C5C7X4	Chromosomal replication initiator protein DnaA	0.000152941569257	0.00583511166666	0.0056821700974
+UniRef50_UPI00047B2DE4	hypothetical protein	1.51936233275e-06	2.30705803702e-05	2.15512180375e-05
+UniRef50_UPI00036A72D9	hypothetical protein	8.16615648056e-05	5.83553331655e-05	-2.33062316401e-05
+UniRef50_P39308		0.00309831995768	0.000246097254331	-0.00285222270335
+UniRef50_Q7MT94	Tryptophan  tRNA ligase	7.75801686278e-06	6.37280228483e-06	-1.38521457795e-06
+UniRef50_A0A023RUT4	NADH	9.29768445451e-05	0.00788419021807	0.00779121337352
+UniRef50_S6P0Z4	ABC transporter permease 	0.000100355053352	7.23019300995e-05	-2.80531232525e-05
+UniRef50_A5UKM7	Protein disulfide isomerase, thioredoxin related	0.0116263031349	0.00226415187466	-0.00936215126024
+UniRef50_V2DIK3		3.35413986389e-05	3.09888708567e-05	-2.5525277822e-06
+UniRef50_P83221	Peptidyl prolyl cis trans isomerase cyp18	0.000260335164724	0.00122422355603	0.000963888391306
+UniRef50_UPI0003B343E5	imidazoleglycerol phosphate dehydratase	0.000113767503552	2.32338350358e-05	-9.05336685162e-05
+UniRef50_Q2YTP0	2 succinylbenzoate  CoA ligase	0.0088624456869	0.00124339747476	-0.00761904821214
+UniRef50_A0A017HIG9		4.7770840459e-05	1.16712820749e-05	-3.60995583841e-05
+UniRef50_Q6CX23	Glyceraldehyde 3 phosphate dehydrogenase 2	5.00631177316e-05	1.72323339307e-05	-3.28307838009e-05
+UniRef50_G2TA75	TRAP transporter solute receptor TAXI family protein	0.000107399778315	9.74206972388e-06	-9.76577085911e-05
+UniRef50_UPI000477C7AD	DNA gyrase subunit A	2.45962173019e-06	4.24370695408e-06	1.78408522389e-06
+UniRef50_UPI0003B4541A	coproporphyrinogen III oxidase	8.51794744736e-06	9.47936903594e-06	9.6142158858e-07
+UniRef50_Q8DVU8	Putative hydrolase SMU_367	0.00280682047299	0.00155719042023	-0.00124963005276
+UniRef50_UPI00035C6E64	hypothetical protein, partial	1.90868809566e-05	0.000202376363391	0.000183289482434
+UniRef50_UPI00016AE124	glycosyltransferase family 4	1.02923970582e-05	2.7818279007e-05	1.75258819488e-05
+UniRef50_Q6A7G2	Conserved membrane protein	0.000264592982837	0.00545241360452	0.00518782062168
+UniRef50_M0CR54	PKD domain containing protein	3.95926742616e-06	3.61637838177e-06	-3.4288904439e-07
+UniRef50_Q46891	Putative hydroxypyruvate isomerase YgbM	0.00344280515231	0.00118621754893	-0.00225658760338
+UniRef50_O34718	Major myo inositol transporter IolT	0.000395104281576	0.00189983605869	0.00150473177711
+UniRef50_D8GNL4	Dihydrodipicolinate synthase	0.000881676249207	0.00175470218562	0.000873025936413
+UniRef50_UPI000304D536	hypothetical protein	1.44428921972e-05	1.29567811985e-05	-1.4861109987e-06
+UniRef50_UPI000471E9C0	hypothetical protein	4.08836139677e-05	0.000194630009402	0.000153746395434
+UniRef50_A6M1I0	Extracellular solute binding protein, family 3	0.000256357290153	0.00261415192231	0.00235779463216
+UniRef50_A0QUX7	Acetolactate synthase small subunit	3.74335187026e-05	0.000640449166123	0.00060301564742
+UniRef50_Q1M3I8		0.00417888188414	0.000199763272963	-0.00397911861118
+UniRef50_J9G6J0	Membrane protein	8.5861223467e-05	0.00215981620182	0.00207395497835
+UniRef50_UPI000365FCDF	hypothetical protein	4.04327578996e-05	1.95363742338e-05	-2.08963836658e-05
+UniRef50_UPI000308E21F	tail fiber protein	2.74944922881e-06	8.94109517698e-06	6.19164594817e-06
+UniRef50_B9KVR5	Cobyrinate a,c diamide synthase   hydrogenobyrinic acid a,c diamide synthase 	5.87760757658e-06	8.69077452561e-05	8.10301376795e-05
+UniRef50_UPI00047054EB	hypothetical protein	7.43970942223e-05	5.43977524304e-05	-1.99993417919e-05
+UniRef50_UPI0003792A51	hypothetical protein	2.07699054691e-06	1.41522606495e-05	1.20752701026e-05
+UniRef50_I4YZ70	Integral membrane protein MviN	3.69631303844e-05	2.90818763095e-05	-7.8812540749e-06
+UniRef50_A8FIC1	Serine hydroxymethyltransferase	0.000127489980519	0.000166760288553	3.9270308034e-05
+UniRef50_D8JKE9	Outer membrane porin protein	0.000232297985442	0.00862024098171	0.00838794299627
+UniRef50_UPI000369E2AC	hypothetical protein	1.22888122016e-05	1.68311188226e-05	4.542306621e-06
+UniRef50_F0RQZ2	ABC type transporter, periplasmic subunit	3.22008348285e-06	3.87402221705e-05	3.55201386876e-05
+UniRef50_Q8CRR5		0.0119267904035	0.00347297129013	-0.00845381911337
+UniRef50_UPI000473A232	amino acid ABC transporter permease	5.55050411192e-05	7.47240347728e-05	1.92189936536e-05
+UniRef50_U5NMU5		0.0143920291139	0.00254724299656	-0.0118447861173
+UniRef50_U5NMU8		0.0059355935752	0.00288375786677	-0.00305183570843
+UniRef50_R6GNA7	Peptidoglycan binding LysM	0.000346112355382	0.00232851979323	0.00198240743785
+UniRef50_A5WCM3	Peptidoglycan binding LysM	0.000241462252992	0.00534092944532	0.00509946719233
+UniRef50_D0DDK5		0.00210084356972	0.000337474609877	-0.00176336895984
+UniRef50_Q26HR0		0.000299429818387	0.000382737424664	8.3307606277e-05
+UniRef50_V4KQA6	Oxidoreductase	5.49837193262e-05	0.000304078364772	0.000249094645446
+UniRef50_M9S8V5	Oxidoreductase	8.85424524313e-05	0.000143823070714	5.52806182827e-05
+UniRef50_UPI00037B160E	hypothetical protein	6.21887955241e-05	1.15010309726e-05	-5.06877645515e-05
+UniRef50_C6SJ34	Prephenate dehydrogenase	0.000413772243308	0.00261093735615	0.00219716511284
+UniRef50_UPI0003A88B86	ATPase	4.87784573465e-06	2.87074446075e-06	-2.0071012739e-06
+UniRef50_B5F4R2	NADPH dependent 7 cyano 7 deazaguanine reductase	0.00457981763693	0.000702762717764	-0.00387705491917
+UniRef50_P50252	Adenosylhomocysteinase	0.00318206327514	0.000519979206723	-0.00266208406842
+UniRef50_C5N5T0	Bacteriocin biosynthesis cyclodehydratase, SagC family	0.00789438749373	0.00385380281108	-0.00404058468265
+UniRef50_Q7VG78	Probable GMP synthase [glutamine hydrolyzing]	1.45641272358e-05	1.5552333429e-05	9.882061932e-07
+UniRef50_Q6FCS8	ATP phosphoribosyltransferase regulatory subunit	0.000117596881266	0.0106861048564	0.0105685079751
+UniRef50_Q3ZXA9	Peptide deformylase	2.27385940213e-05	6.05781521844e-05	3.78395581631e-05
+UniRef50_UPI0003958315	PREDICTED	5.19507593474e-05	3.70690726827e-05	-1.48816866647e-05
+UniRef50_UPI00030811AD	hypothetical protein	1.01575844376e-05	3.70410502223e-05	2.68834657847e-05
+UniRef50_F6G330	NADPH	0.000180615305666	0.000368410671781	0.000187795366115
+UniRef50_A0A024JQL9	Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit	2.0824653991e-05	6.17305624286e-05	4.09059084376e-05
+UniRef50_P29922	NADH quinone oxidoreductase chain 10	0.000316720518374	7.63170756914e-05	-0.000240403442683
+UniRef50_X2HFC0	Electron transport complex protein RnfB	0.000587783848974	0.00124088424906	0.000653100400086
+UniRef50_UPI000477E177	hypothetical protein	7.85384613765e-05	2.59707217722e-05	-5.25677396043e-05
+UniRef50_O67012	Guanosine 3,5 bis 3 pyrophosphohydrolase	4.64553250333e-06	2.87446146447e-06	-1.77107103886e-06
+UniRef50_UPI00047897DA	xanthine permease	1.26424488597e-06	8.00957878646e-05	7.88315429786e-05
+UniRef50_A6M0Q8	Periplasmic binding protein LacI transcriptional regulator	0.00037065852589	0.00124342965031	0.00087277112442
+UniRef50_D2JDC8		0.0569698015977	0.0107849684656	-0.0461848331321
+UniRef50_B8HGC5	Acetylglutamate kinase	4.78547149843e-05	1.67475798044e-05	-3.11071351799e-05
+UniRef50_UPI000360FD52	acetyl CoA carboxylase carboxyl transferase subunit alpha	7.42548437424e-06	3.23382240376e-05	2.49127396634e-05
+UniRef50_UPI0003C369DA		4.4264125206e-07	1.3328195886e-05	1.28855546339e-05
+UniRef50_D9SL48	Extracellular solute binding protein family 1	0.000203935256531	0.00135425872638	0.00115032346985
+UniRef50_Q8CPL9	Lipoprotein VsaC	0.00784270126571	0.00282553854699	-0.00501716271872
+UniRef50_P25084	Transcriptional activator protein LasR	0.000511082280691	0.000249212409446	-0.000261869871245
+UniRef50_C0ZBE7	Deoxyadenosine deoxycytidine kinase	0.00858121638011	0.000561653906887	-0.00801956247322
+UniRef50_UPI0003B3EDEC	ketol acid reductoisomerase	3.44636184566e-06	6.60663715874e-06	3.16027531308e-06
+UniRef50_UPI0003655A5A	hypothetical protein	3.2591751867e-05	1.41151778963e-05	-1.84765739707e-05
+UniRef50_A0A023VR15		0.00382509961169	0.00154359420418	-0.00228150540751
+UniRef50_A6UB50	CreA family protein	0.000355370959716	0.00018831296088	-0.000167057998836
+UniRef50_UPI0003FA4F40	hypothetical protein	4.98863595587e-05	2.33599765602e-05	-2.65263829985e-05
+UniRef50_E6N0G1	Cell division protein ZipA	0.000352054485057	0.00259589369247	0.00224383920741
+UniRef50_Q6N8F8	Formyl coenzyme A transferase	0.00289590993037	0.000577098329252	-0.00231881160112
+UniRef50_Q65Q81	5 nucleotidase SurE	0.00123296781655	0.00026565220857	-0.00096731560798
+UniRef50_G2DGI6	Proton translocating NADH quinone oxidoreductase, chain M	1.59955918616e-05	3.58023446094e-05	1.98067527478e-05
+UniRef50_UPI00046F0142	MULTISPECIES	4.9556509195e-06	8.01157740131e-06	3.05592648181e-06
+UniRef50_Q5HRH4	Putative long chain fatty acid CoA ligase VraA	0.010046404653	0.003066499627	-0.006979905026
+UniRef50_UPI0003C1970F	PREDICTED	4.3565678018e-06	1.01824494263e-05	5.8258816245e-06
+UniRef50_D2JC88		0.00274260153085	0.000386581595083	-0.00235601993577
+UniRef50_P30131	Carbamoyltransferase HypF	0.00188933468516	0.000253397898209	-0.00163593678695
+UniRef50_UPI00037CE6E8	hypothetical protein	3.1712093455e-05	8.33912385247e-05	5.16791450697e-05
+UniRef50_H8H0T6	ABC type Fe3+ siderophore transport system, periplasmic component	5.00401948346e-05	0.0121619189773	0.0121118787825
+UniRef50_G5QK83	Transcription repair coupling factor	1.98278394162e-05	4.95979438203e-05	2.97701044041e-05
+UniRef50_W1YIT0		5.22816770188e-05	2.19216543551e-05	-3.03600226637e-05
+UniRef50_P56908	NADH quinone oxidoreductase subunit D 2	1.53916116559e-05	4.06178214954e-05	2.52262098395e-05
+UniRef50_Q5F6M1	Cell division protein FtsQ	0.000155985945804	0.00164425241496	0.00148826646916
+UniRef50_X8N4L8	Putative lipoprotein 	0.000109583671999	0.00102929777806	0.000919714106061
+UniRef50_C6CTD5	Glycosyl transferase family 2	0.000166783205682	0.00126515309275	0.00109836988707
+UniRef50_Q1IKB4	Imidazoleglycerol phosphate dehydratase	0.000174690371268	5.58775551211e-05	-0.000118812816147
+UniRef50_UPI000349BE1A	hypothetical protein	1.75130162644e-07	1.32946712678e-06	1.15433696414e-06
+UniRef50_A6LZ95		0.000862049552083	0.00179738736202	0.000935337809937
+UniRef50_X6GZW0		6.42653548763e-05	5.08109691414e-05	-1.34543857349e-05
+UniRef50_P0AC77	3 deoxy D manno octulosonic acid transferase	0.00205425422367	0.000441164308773	-0.0016130899149
+UniRef50_UPI0002E36CA8	hypothetical protein	4.39002915566e-05	0.000132802502467	8.89022109104e-05
+UniRef50_UPI00037A380E	hypothetical protein	0.00010536512412	0.00177688041526	0.00167151529114
+UniRef50_A0A023VMY7	Peptidase M16	0.00755958782603	0.00341911950191	-0.00414046832412
+UniRef50_O83806	Tyrosine  tRNA ligase	2.51273111992e-05	1.21985504666e-05	-1.29287607326e-05
+UniRef50_Q5F5C4	Thiazole synthase	0.000143895548483	0.00219247396442	0.00204857841594
+UniRef50_UPI0004679209	hypothetical protein	6.49497301643e-06	1.89181844318e-05	1.24232114154e-05
+UniRef50_T1D567	Thiamine biosynthesis protein ThiC	1.19925264764e-05	5.14889209919e-05	3.94963945155e-05
+UniRef50_UPI0003345F86		2.41069267881e-05	3.14305163161e-05	7.323589528e-06
+UniRef50_A5W3L7	Short chain fatty acid transporter	0.000624552368801	0.00734387794309	0.00671932557429
+UniRef50_Q59966	Cysteine synthase, plasmid	0.0346076975164	0.0119846152909	-0.0226230822255
+UniRef50_UPI0003C1981F		1.65900017103e-05	1.62767901832e-05	-3.132115271e-07
+UniRef50_E4U6C3	Extracellular solute binding protein family 1	1.47422429993e-05	5.44840033952e-06	-9.29384265978e-06
+UniRef50_UPI0002BCBF5F	PREDICTED	7.04766363345e-05	0.000728332780576	0.000657856144241
+UniRef50_U5MSM7	Metallophosphoesterase	0.000336454474477	0.00119069431316	0.000854239838683
+UniRef50_M4HRQ0	Radical SAM protein, TIGR01212 family	2.572993583e-05	0.00227005879318	0.00224432885735
+UniRef50_E0SZG6	Transcriptional regulator	0.00469262597334	0.00545795093686	0.00076532496352
+UniRef50_Q0ARN8	Peptidyl tRNA hydrolase	4.33627225589e-05	5.95856346201e-05	1.62229120612e-05
+UniRef50_A4WR48		0.000210886027289	0.000287179940213	7.6293912924e-05
+UniRef50_UPI000371F47B	hypothetical protein	3.82422628007e-05	2.23627205449e-05	-1.58795422558e-05
+UniRef50_I4CC90	CRISPR associated helicase, Cas3 family	5.69566866217e-05	3.46025070634e-05	-2.23541795583e-05
+UniRef50_T6MH84	Flagellar P ring protein	0.000950293626516	0.000528546110857	-0.000421747515659
+UniRef50_M4MLW3		9.54252696068e-05	0.000143818702005	4.83934323982e-05
+UniRef50_A7ZJK9		0.00125700249557	0.000296360674957	-0.000960641820613
+UniRef50_UPI0003B57AFE	amino acid permease	7.48046472609e-05	9.94530932053e-06	-6.48593379404e-05
+UniRef50_K2IJJ6		1.60631681879e-05	4.46391767117e-05	2.85760085238e-05
+UniRef50_A0A020BC98		6.02910244569e-05	9.82432910949e-05	3.7952266638e-05
+UniRef50_G7MBK8	Membrane protein insertase, YidC Oxa1 family	0.00133087049941	0.000248165298485	-0.00108270520092
+UniRef50_P75892	Putative pyrimidine permease RutG	0.00330732105326	0.00206254641343	-0.00124477463983
+UniRef50_V9C5G3	Siderophore interacting protein	2.08384642706e-05	0.00124427150844	0.00122343304417
+UniRef50_Q9X049	Glycerol kinase 1	4.99426087346e-06	3.57545530227e-05	3.07602921492e-05
+UniRef50_UPI00037DACA5	hypothetical protein	6.02285774518e-06	5.27697508748e-06	-7.458826577e-07
+UniRef50_O27185	tRNA  2 O) methyltransferase	0.0010861917943	0.00129335783297	0.00020716603867
+UniRef50_UPI00016B0688	hypothetical protein	0.00107378329079	0.000429466412809	-0.000644316877981
+UniRef50_Q01813	ATP dependent 6 phosphofructokinase, platelet type	2.47064795248e-06	6.15879097001e-06	3.68814301753e-06
+UniRef50_O27290	Inosine 5 monophosphate dehydrogenase related protein I	0.00414267154563	0.00113335169169	-0.00300931985394
+UniRef50_P42257	Protein PilJ	0.00127270379668	0.000503654477282	-0.000769049319398
+UniRef50_D3S395	Transcription initiation factor IIB	0.0036064183301	0.000393755606923	-0.00321266272318
+UniRef50_UPI00047856BF	hypothetical protein	4.35366086939e-05	1.26007859943e-05	-3.09358226996e-05
+UniRef50_W6VG46	Rhamnan synthesis F	3.3449132147e-06	4.83064835637e-06	1.48573514167e-06
+UniRef50_G9ZUA1		7.23508264674e-05	2.11909206089e-05	-5.11599058585e-05
+UniRef50_UPI0003B470E0	50S ribosomal protein L17	3.47972979099e-05	8.31891848431e-05	4.83918869332e-05
+UniRef50_L7WUL7	Lipoprotein	0.0123025207035	0.00227843138154	-0.010024089322
+UniRef50_D2ZVP2		0.000506612912954	0.00397616746141	0.00346955454846
+UniRef50_Q6A997	Chaperone protein DnaJ 1	0.000126815001857	0.00678716247069	0.00666034746883
+UniRef50_UPI0003F7FC45	hypothetical protein	5.72471591344e-05	1.90041962255e-05	-3.82429629089e-05
+UniRef50_UPI0003B6D4D5	xylose ABC transporter permease	5.58806145186e-05	1.02786558302e-05	-4.56019586884e-05
+UniRef50_M2CG06		5.87558626368e-06	3.87171584793e-05	3.28415722156e-05
+UniRef50_Q6F9L9		0.000270276364337	0.00678174997168	0.00651147360734
+UniRef50_A3DLR9	Succinyl CoA ligase [ADP forming] subunit beta	3.27775039419e-06	1.19765096264e-05	8.69875923221e-06
+UniRef50_W8YZG7		0.000160533307226	0.000267010082269	0.000106476775043
+UniRef50_J7IXF3	Response regulator with CheY like receiver domain and winged helix DNA binding domain	0.000239927535287	0.000783394479633	0.000543466944346
+UniRef50_V7WI05		0.000450696683096	0.000203993841276	-0.00024670284182
+UniRef50_J3MZQ8		1.61293785772e-05	9.61214321516e-05	7.99920535744e-05
+UniRef50_G7U7Y1		0.000107240337745	0.00583301223217	0.00572577189442
+UniRef50_A6LU93	Anthranilate phosphoribosyltransferase	0.00060201007552	0.000401678089584	-0.000200331985936
+UniRef50_W0YKM5		0.000309230134126	0.00030100653912	-8.223595006e-06
+UniRef50_U6AG49		7.80819072667e-05	0.000249037811538	0.000170955904271
+UniRef50_UPI0003756A18	hypothetical protein	9.71051588642e-06	4.51275285751e-05	3.54170126887e-05
+UniRef50_UPI0003B48EBA	N acetyltransferase, partial	2.9700108917e-05	2.13314846569e-05	-8.3686242601e-06
+UniRef50_T0IVY5		7.24075375954e-05	0.000114094355758	4.16868181626e-05
+UniRef50_R4ZTG2		0.000789863938504	0.000682699793449	-0.000107164145055
+UniRef50_Q42588	Serine acetyltransferase 1, chloroplastic	6.21393176088e-06	8.26801670768e-06	2.0540849468e-06
+UniRef50_G9EEV4		5.99445062936e-05	7.37161033597e-05	1.37715970661e-05
+UniRef50_F3U4V4	ATPase, ParA type	0.000278443466986	9.61737589345e-05	-0.000182269708052
+UniRef50_P30958	Transcription repair coupling factor	0.00363054992439	0.00148371706116	-0.00214683286323
+UniRef50_A1BAH6	MOSC domain containing protein	0.0040525585453	0.000263283838205	-0.0037892747071
+UniRef50_UPI00046767C0	HupU protein	7.45372396894e-05	7.50634147267e-06	-6.70308982167e-05
+UniRef50_C5N074	Cof like hydrolase	0.0222525068775	0.0041379937165	-0.018114513161
+UniRef50_N6UD17		0.000621030517749	0.000255906513856	-0.000365124003893
+UniRef50_A0A011NGP1		2.01571717711e-05	7.42181222794e-06	-1.27353595432e-05
+UniRef50_E8X2E5	ParB like partition protein	9.85648772518e-05	2.02548358698e-05	-7.8310041382e-05
+UniRef50_Q9HZ68	Histidinol phosphate aminotransferase 2	0.000995787577032	0.00023688505764	-0.000758902519392
+UniRef50_A6M204	Glycoside hydrolase, family 1	0.000511980745415	0.000917963895707	0.000405983150292
+UniRef50_Q835V5	Ribonuclease HIII	2.45482166667e-05	0.000389857036561	0.000365308819894
+UniRef50_H1S0G1		7.33238463562e-05	9.77300272533e-06	-6.35508436309e-05
+UniRef50_D4H9Y2	Biotin biosynthesis bifunctional protein BioWF	0.000197856627519	0.00615518034056	0.00595732371304
+UniRef50_UPI000474CF85	hypothetical protein, partial	8.90064393496e-05	0.000216455541661	0.000127449102311
+UniRef50_P37339	L 2 hydroxyglutarate oxidase LhgO	0.00462627746075	0.00195593258028	-0.00267034488047
+UniRef50_B9KQG5	Flagellar hook associated protein	0.00589234238184	0.000958933518391	-0.00493340886345
+UniRef50_D2NAF2	Regulatory protein	0.0123386445561	0.00209033726046	-0.0102483072956
+UniRef50_D8TNG9		3.06225931636e-06	2.61971986532e-05	2.31349393368e-05
+UniRef50_J9P0I4		6.43187242682e-05	5.79016073866e-05	-6.4171168816e-06
+UniRef50_P39071	2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	1.77479751666e-05	0.00126118663396	0.00124343865879
+UniRef50_Q4L933	Poly gamma glutamate synthesis protein PgsA	0.00626519481821	0.00247545954349	-0.00378973527472
+UniRef50_H5YRD9		1.45442409681e-05	0.000267889152911	0.000253344911943
+UniRef50_UPI00036B457B	hypothetical protein	0.000183962024756	1.23057383108e-05	-0.000171656286445
+UniRef50_UPI000456173C	hypothetical protein PFL1_01203	1.23178275527e-05	4.09633398965e-06	-8.22149356305e-06
+UniRef50_B5F769	Bis tetraphosphatase, symmetrical	0.00162915062011	0.000289053871314	-0.0013400967488
+UniRef50_M5R4A6		4.98739118753e-05	8.3145433685e-05	3.32715218097e-05
+UniRef50_U3SRI3		0.00379923911363	0.00061064582018	-0.00318859329345
+UniRef50_A0A038G9V0	Protein ImpB	2.81467911798e-05	0.000608900423076	0.000580753631896
+UniRef50_Q6GE71		0.00497869070783	0.000432170788082	-0.00454651991975
+UniRef50_E7TI03		0.00123246923771	0.000916047830981	-0.000316421406729
+UniRef50_B8HSV8	Anti sigma factor antagonist	2.54664438906e-05	0.00147831862885	0.00145285218496
+UniRef50_B0V9D5	3 deoxy D manno 2 octulosonate transferase	0.000290605900796	0.00577623961588	0.00548563371508
+UniRef50_E7TI06		0.00014122141653	1.82236632765e-05	-0.000122997753254
+UniRef50_C5BD16	Adenylate kinase	1.86127176124e-05	2.86360223214e-05	1.0023304709e-05
+UniRef50_Q8EUX2	Tyrosine  tRNA ligase	1.65770545675e-05	1.61193772954e-05	-4.576772721e-07
+UniRef50_Q3YS21	Acetylglutamate kinase	3.27748217265e-05	1.60187911439e-05	-1.67560305826e-05
+UniRef50_I7AAC7		0.000631479564446	0.00026725493682	-0.000364224627626
+UniRef50_Q8DTN6	Probable bifunctional oligoribonuclease and PAP phosphatase NrnA	0.00472091204095	0.00620055847535	0.0014796464344
+UniRef50_UPI0003B4C1BA	ATPase AAA	1.11797175224e-05	5.88394939887e-06	-5.29576812353e-06
+UniRef50_Q8XU11	Potassium transporting ATPase B chain	0.0121782519392	0.0202568300757	0.0080785781365
+UniRef50_A3PPK7	Amidohydrolase 2	0.00996544692966	0.000699412800539	-0.00926603412912
+UniRef50_U3AFY8		0.000788720795864	0.000174317901624	-0.00061440289424
+UniRef50_B2A8E3	Argininosuccinate lyase	1.68696946162e-05	2.04669242123e-05	3.5972295961e-06
+UniRef50_D8JIY9	AraC type DNA binding domain containing protein	0.000373201600826	0.00487052294765	0.00449732134682
+UniRef50_UPI0003783041	hypothetical protein	2.40226199582e-05	0.00014919005704	0.000125167437082
+UniRef50_UPI000471FB1B	sodium	5.0251821728e-05	1.31269630018e-05	-3.71248587262e-05
+UniRef50_UPI00040DE95E	sodium	4.20559605918e-06	8.05548078333e-06	3.84988472415e-06
+UniRef50_A4IM35	Dihydroorotate dehydrogenase B ), catalytic subunit	0.000419409410863	0.0103997236431	0.00998031423224
+UniRef50_P77269	ABC transporter periplasmic binding protein YphF	0.00167241206415	0.0013807022778	-0.00029170978635
+UniRef50_UPI00036C797A	hypothetical protein	5.58052568019e-05	2.94819464866e-05	-2.63233103153e-05
+UniRef50_A6LWR6	MgtC SapB transporter	0.000295680931211	0.00178193241284	0.00148625148163
+UniRef50_D3DZA0	Amidohydrolase	0.00270099520593	0.000358450948281	-0.00234254425765
+UniRef50_B4RE78		0.00018014106638	0.000103196878372	-7.6944188008e-05
+UniRef50_A4WQR7		0.000269947603827	0.000107964082565	-0.000161983521262
+UniRef50_A6LSY8	Glutamate 1 semialdehyde 2,1 aminomutase	0.000329481214735	0.000708222307583	0.000378741092848
+UniRef50_S5CRD4	Integrase	0.000134977111625	0.00869283693492	0.00855785982329
+UniRef50_Q8HXP0	Superoxide dismutase [Mn], mitochondrial	1.11964780701e-05	0.000105648254501	9.44517764309e-05
+UniRef50_W1S795		6.5972310955e-05	3.84146952516e-05	-2.75576157034e-05
+UniRef50_Q080M3		7.39870414414e-06	1.13236507714e-05	3.92494662726e-06
+UniRef50_UPI0003D0B013	PREDICTED	4.09420833841e-05	1.86812191241e-05	-2.226086426e-05
+UniRef50_Q7DDB6	Probable TonB dependent receptor NMB1497	0.000170213385665	0.00305950151367	0.002889288128
+UniRef50_P64618		0.000442366393186	0.00196393479223	0.00152156839904
+UniRef50_R5CFG0		0.00131404045591	0.00160837294848	0.00029433249257
+UniRef50_UPI0003778CA4	hypothetical protein	2.69609134496e-05	1.53744904784e-05	-1.15864229712e-05
+UniRef50_UPI000368AAAC	peptidase, partial	2.92983181078e-05	4.36259648942e-05	1.43276467864e-05
+UniRef50_Q5Z642	HGWP repeat containing protein like	9.97465753967e-06	0.000119915294134	0.000109940636594
+UniRef50_Q7MF00	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	1.64317244814e-05	2.4527920221e-05	8.0961957396e-06
+UniRef50_UPI0002E5A819	hypothetical protein	4.36599250203e-06	1.52185887203e-05	1.08525962183e-05
+UniRef50_A0QVM6		8.97787910502e-05	6.13073859284e-05	-2.84714051218e-05
+UniRef50_O80952	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase 1, chloroplastic	7.40308505778e-06	3.20665505708e-05	2.4663465513e-05
+UniRef50_I7G695		2.09311020502e-05	4.45865165986e-05	2.36554145484e-05
+UniRef50_Q9RYR4		0.000319243274761	0.00258484739038	0.00226560411562
+UniRef50_UPI0003751DCE	hypothetical protein	3.46878467194e-06	1.34068021112e-05	9.93801743926e-06
+UniRef50_Q3MEA8	GMP synthase [glutamine hydrolyzing]	2.39775515625e-05	3.09801741047e-05	7.0026225422e-06
+UniRef50_D9UIH8	Predicted protein	0.000241594708843	0.0016939274376	0.00145233272876
+UniRef50_P76204	Putative anti FlhCFlhD(4) factor YdiV	0.00268031481586	0.00091214826715	-0.00176816654871
+UniRef50_UPI00036659B6	hypothetical protein	3.33943524372e-06	5.320815443e-06	1.98138019928e-06
+UniRef50_R5BWI2		0.000849945705849	0.00488191564993	0.00403196994408
+UniRef50_UPI000468EFA0	hypothetical protein	5.63097827598e-06	3.99339378013e-06	-1.63758449585e-06
+UniRef50_UPI00035D659D	hypothetical protein	5.97632234076e-06	1.21343746146e-05	6.15805227384e-06
+UniRef50_UPI000455EDC7	ribosomal protein L2	2.34099769927e-05	0.000120717070306	9.73070933133e-05
+UniRef50_UPI0003045834	hypothetical protein	6.99396876295e-06	7.44594416422e-05	6.74654728792e-05
+UniRef50_Q88TV5	Tyrosine  tRNA ligase	0.0292305852207	0.0188629680503	-0.0103676171704
+UniRef50_P75764		0.00256561660799	0.000272214844857	-0.00229340176313
+UniRef50_P75769		0.0017645533705	0.000309772767695	-0.0014547806028
+UniRef50_Q6G6F1	D lactate dehydrogenase	0.0148475575884	0.00408244967367	-0.0107651079147
+UniRef50_E6S2D5		0.000169298209736	0.0030970951449	0.00292779693516
+UniRef50_A5UCW1	UPF0042 nucleotide binding protein CGSHiEE_06315	0.00235296626673	0.00112980999072	-0.00122315627601
+UniRef50_F2I802	Response regulator receiver domain protein	0.0187303305754	0.00699612634655	-0.0117342042288
+UniRef50_Q2NIC5	ORC1 type DNA replication protein	0.00368145545877	0.000639649954385	-0.00304180550438
+UniRef50_UPI00026291DF	excinuclease ABC subunit A	9.25903811014e-06	2.30567272821e-05	1.3797689172e-05
+UniRef50_Q16CW9	Lipopolysaccharide 1,3 galactosyltransferase, putative	0.0148691640696	0.0024949880301	-0.0123741760395
+UniRef50_U3T279	Amidohydrolase	0.000597094277823	0.00985021506034	0.00925312078252
+UniRef50_F2E8D4	Predicted protein 	0.000182470265724	0.000186869668477	4.399402753e-06
+UniRef50_B0TC61	50S ribosomal protein L22	0.0416162198954	0.00268584865685	-0.0389303712385
+UniRef50_Q9K0U7	Putative phospholipase A1	0.000105051759422	0.00277292916969	0.00266787741027
+UniRef50_Q13DH5	Transcriptional regulator, LysR family	0.00285819681324	0.00071466704907	-0.00214352976417
+UniRef50_C5BQ83	30S ribosomal protein S13	0.00460396557604	0.00345950110368	-0.00114446447236
+UniRef50_S9THQ0		0.000144396909606	0.000193438889871	4.9041980265e-05
+UniRef50_A6QF95		0.0110584938544	0.000671174329992	-0.0103873195244
+UniRef50_P64246	Probable glutamine synthetase 2	0.000429784776661	0.00833590896681	0.00790612419015
+UniRef50_A5VI99	Cysteine  tRNA ligase	0.0352152559888	0.0182607398788	-0.01695451611
+UniRef50_G8PIV9	Universal stress protein	0.0191942146693	0.00862881371594	-0.0105654009534
+UniRef50_G7MBZ4	PTS system transcriptional activator	0.000696719322904	0.00151277335215	0.000816054029246
+UniRef50_B5F752	Crotonobetainyl CoA dehydrogenase	0.00350275358721	0.00073198058343	-0.00277077300378
+UniRef50_X5EJB2	DNA polymerase III, delta subunit	0.0172985790258	0.00223254125179	-0.015066037774
+UniRef50_UPI000467516D	hypothetical protein	8.35869649707e-06	0.000147560048276	0.000139201351779
+UniRef50_Q8E2G3	Phosphoribosylformylglycinamidine synthase, putative	0.00721167366097	0.00300817506583	-0.00420349859514
+UniRef50_I4DYY6	3 ketoacyl  reductase	0.000162709477954	0.00573196984085	0.0055692603629
+UniRef50_J9P2V2		1.80202225123e-05	8.91453557969e-06	-9.10568693261e-06
+UniRef50_I1AVP4		9.70395219062e-05	2.727879331e-05	-6.97607285962e-05
+UniRef50_P27747	Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system	1.33422613503e-05	7.27484456797e-06	-6.06741678233e-06
+UniRef50_UPI0003B5A625	TetR family transcriptional regulator	7.53628758136e-05	1.19282511795e-05	-6.34346246341e-05
+UniRef50_Q9I4U2	Acyl homoserine lactone acylase QuiP	0.00068661204422	8.52284863478e-05	-0.000601383557872
+UniRef50_UPI000466F3A3	hypothetical protein	0.000129039663384	3.08133016795e-05	-9.82263617045e-05
+UniRef50_UPI0002FD307E	hypothetical protein	2.34598089256e-05	1.75413443652e-05	-5.9184645604e-06
+UniRef50_M1YUE3		0.000158104493821	0.000237452682353	7.9348188532e-05
+UniRef50_W4TKZ4		3.60545003908e-05	0.000327566501565	0.000291512001174
+UniRef50_Q9I602		0.000275749970218	0.000161081839199	-0.000114668131019
+UniRef50_UPI00035F31F7	hypothetical protein	1.12868440598e-05	1.27624089702e-05	1.4755649104e-06
+UniRef50_V8MVT4	Transposase	0.000927671674024	0.00107501043914	0.000147338765116
+UniRef50_UPI000361F9D7	hypothetical protein	5.40438044678e-06	2.28090218137e-05	1.74046413669e-05
+UniRef50_A9VTL7	Nucleoid occlusion protein	0.0123820043037	0.00328498850866	-0.00909701579504
+UniRef50_I6U3X8		0.00567268880766	0.00242935925963	-0.00324332954803
+UniRef50_B9KTM2	Membrane fusion protein, HlyD family	0.000975530574878	0.000354165483842	-0.000621365091036
+UniRef50_A8ARB7		0.000599184109289	0.00213366718257	0.00153448307328
+UniRef50_B4U4S6	Primosomal protein DnaI	0.00594527448144	0.00621620353887	0.00027092905743
+UniRef50_D8JGQ3	Acetyltransferase  family protein	0.00025679318969	0.00585820848286	0.00560141529317
+UniRef50_UPI000374923B	hypothetical protein, partial	2.95627044399e-05	0.0133682787821	0.0133387160777
+UniRef50_R7B3T9	Molybdate ABC transporter permease protein	0.00218804159564	0.00193047900641	-0.00025756258923
+UniRef50_UPI0003608764	hypothetical protein	1.59192750663e-05	4.65840152205e-05	3.06647401542e-05
+UniRef50_Q5HMA3	Thymidine kinase	0.0132645316066	0.000625059622022	-0.0126394719846
+UniRef50_UPI00036390EE	hypothetical protein	0.00121716361445	0.000221946700328	-0.000995216914122
+UniRef50_Q0ARE0		2.91056178259e-05	0.000171322494467	0.000142216876641
+UniRef50_A6LV67		0.000156201098833	0.000794059417456	0.000637858318623
+UniRef50_Q4T2R9	Chromosome undetermined SCAF10201, whole genome shotgun sequence. 	1.73267143926e-05	5.91128524793e-06	-1.14154291447e-05
+UniRef50_UPI00036EEDB2	30S ribosomal protein S4, partial	6.93305953387e-06	0.00210213192495	0.00209519886542
+UniRef50_UPI0003A27699	glutaminyl tRNA synthetase	4.47210670126e-06	3.27372875803e-06	-1.19837794323e-06
+UniRef50_UPI0003C15EA6		4.75411600565e-05	1.32299988408e-05	-3.43111612157e-05
+UniRef50_Q2NSV5	tRNA 2 thiocytidine biosynthesis protein TtcA	0.00194989892984	0.0674905609956	0.0655406620658
+UniRef50_UPI00036FCB79	hypothetical protein	4.33495916748e-06	6.50788876904e-06	2.17292960156e-06
+UniRef50_UPI00036DB284	hypothetical protein, partial	0.000235029299217	0.0231070284154	0.0228719991162
+UniRef50_UPI0003658156	hypothetical protein, partial	6.77635701263e-05	0.000101700727669	3.39371575427e-05
+UniRef50_A6WFN3	Diguanylate cyclase	6.15837425637e-06	0.000296198272362	0.000290039898106
+UniRef50_UPI00037A43CA	hypothetical protein	5.38341610631e-05	0.00022507748853	0.000171243327467
+UniRef50_UPI0004443E9D	PREDICTED	5.8035071034e-06	5.8935745204e-06	9.0067417e-08
+UniRef50_A6LR97	Acyl ACP thioesterase	0.000161548925324	0.000695116469478	0.000533567544154
+UniRef50_UPI00047B48B0	GNAT family acetyltransferase	0.000113912221375	2.73767042464e-05	-8.65355171286e-05
+UniRef50_Q02198	Morphine 6 dehydrogenase	6.33981966145e-06	2.31147908758e-05	1.67749712144e-05
+UniRef50_P00811	Beta lactamase	0.00231437103161	0.000848417179586	-0.00146595385202
+UniRef50_C0H3V2	Mannitol specific phosphotransferase enzyme IIA component	0.0106647230104	0.000270956201096	-0.0103937668093
+UniRef50_Q0A892	RNA polymerase binding transcription factor DksA	0.00131681158902	0.000791026888919	-0.000525784700101
+UniRef50_H8FSH1		0.00094198488676	0.000177604236956	-0.000764380649804
+UniRef50_UPI000174692C	spermidine putrescine ABC transporter ATP binding protein	1.42818803994e-05	1.4794901204e-05	5.130208046e-07
+UniRef50_UPI0002557C62	hypothetical protein	4.27778845508e-05	4.58692947036e-05	3.0914101528e-06
+UniRef50_UPI00029A3335	helicase	2.53646827806e-06	6.95170726906e-06	4.415238991e-06
+UniRef50_A6Q747	Alanine  tRNA ligase	4.58670703315e-05	0.00336358411295	0.00331771704262
+UniRef50_Q75W16	Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic	5.7377861159e-05	7.12570872227e-06	-5.02521524367e-05
+UniRef50_A9CR53		0.00394726935459	0.00218753114959	-0.001759738205
+UniRef50_Q9ZJE9	DNA polymerase I	9.46844177454e-05	0.00432093604965	0.0042262516319
+UniRef50_F5LZL6	CBS domain containing protein	0.0198053219569	0.00336038692814	-0.0164449350288
+UniRef50_P65168	Inosine 5 monophosphate dehydrogenase	0.0246477281768	0.0518027414494	0.0271550132726
+UniRef50_P0ABK4	Cytochrome bd I ubiquinol oxidase subunit 2	0.000660126201259	0.00454057166589	0.00388044546463
+UniRef50_P0C1L0	Transposase for insertion sequence like element IS431mec	0.0256288850193	0.009401152508	-0.0162277325113
+UniRef50_D5AUS5		7.06334911283e-05	1.64098024101e-05	-5.42236887182e-05
+UniRef50_A5EY33	Recombination protein RecR	0.000360655403362	0.00703347528962	0.00667281988626
+UniRef50_I0EKM3	DNA transfer protein ComE	0.000269915988217	0.00296896065226	0.00269904466404
+UniRef50_E3YSL3	Pts system fructose specific eiibc component	3.28898923433e-05	0.000340829686273	0.00030793979393
+UniRef50_D4H949	YD repeat protein 	0.000375467785191	0.00299110058819	0.002615632803
+UniRef50_K9HQP8	Phosphate binding protein	3.49509925797e-06	6.46207396736e-06	2.96697470939e-06
+UniRef50_UPI0003094A6C	hypothetical protein	1.81454384124e-05	1.34668115525e-05	-4.6786268599e-06
+UniRef50_A7GKB6	Nitrite reductase H), small subunit	0.00307850814899	0.000588671173145	-0.00248983697584
+UniRef50_P54122	Ribonuclease J	1.00996062589e-05	4.34040422574e-05	3.33044359985e-05
+UniRef50_P47269	Fructose bisphosphate aldolase	2.45229810867e-05	4.71522977869e-05	2.26293167002e-05
+UniRef50_P0ADL0		0.000313700267745	0.00089040212621	0.000576701858465
+UniRef50_UPI000344BE75	hypothetical protein	2.36052018066e-05	6.00892559755e-06	-1.75962762091e-05
+UniRef50_UPI0003C18F39	PREDICTED	3.07797452843e-05	2.67297990116e-05	-4.0499462727e-06
+UniRef50_C1A7X4	Acyl CoA dehydrogenase	0.000263342038884	0.0243153190531	0.0240519770142
+UniRef50_P0A2T6	cAMP activated global transcriptional regulator CRP	0.00229006728674	0.000603558775012	-0.00168650851173
+UniRef50_S9TKQ0		6.21887955241e-05	0.000215584242449	0.000153395446925
+UniRef50_UPI0003B40961	glutathione ABC transporter permease	9.97942209044e-05	6.5815392994e-05	-3.39788279104e-05
+UniRef50_UPI0004770C99	hypothetical protein	9.71512597558e-06	0.000254742637539	0.000245027511563
+UniRef50_H6RLH1	ComEC Rec2 related protein 	8.53560149315e-06	0.000120012960584	0.000111477359091
+UniRef50_UPI00047780B8	acyl CoA synthetase	1.68533595895e-05	1.37205186773e-05	-3.1328409122e-06
+UniRef50_I1AQX6		3.86576307731e-05	9.2312893688e-05	5.36552629149e-05
+UniRef50_A3PFZ4	Peptidase S16, lon domain protein	0.00973136440559	0.00153128603206	-0.00820007837353
+UniRef50_J8RSG4		2.67505992788e-05	0.000101995764509	7.52451652302e-05
+UniRef50_Q0B6I4	Lipoprotein	0.00154858238741	0.000522804727682	-0.00102577765973
+UniRef50_B8ZUG9	Threonine  tRNA ligase	5.96030508744e-05	0.00405343855563	0.00399383550476
+UniRef50_L1K7L5		0.000369957090474	0.000948567695346	0.000578610604872
+UniRef50_Y4SN89		0.033058554491	0.0118674026068	-0.0211911518842
+UniRef50_Q8YR06	Phosphoribosylformylglycinamidine synthase 2	2.52385415944e-05	5.73766349522e-06	-1.95008780992e-05
+UniRef50_M1MJ06	Diguanylate cyclase  domain containing protein	0.000326090758671	0.000907355934752	0.000581265176081
+UniRef50_Q6CGG3	FK506 binding protein 2	1.72873770042e-05	2.20011063438e-05	4.7137293396e-06
+UniRef50_C5VT76	LicC protein	0.000277563227102	0.00329857056985	0.00302100734275
+UniRef50_A6M234	Sigma 54 factor, interaction domain containing protein	0.00035531591543	0.000759440853061	0.000404124937631
+UniRef50_E1V429	Formyltetrahydrofolate deformylase	0.00198303692832	0.00046506567747	-0.00151797125085
+UniRef50_Q9I452	Probable 3 mercaptopyruvate sulfurtransferase	0.00013291760171	0.000331196304892	0.000198278703182
+UniRef50_UPI000362E0E9	Fis family transcriptional regulator	0.000200282434269	9.38337095257e-05	-0.000106448724743
+UniRef50_Q8DXP9	Transcriptional antiterminator, BglG family	0.00711803092308	0.00140310025585	-0.00571493066723
+UniRef50_U5VYZ3	Diguanylate cyclase	6.14840581776e-06	0.000193300736068	0.00018715233025
+UniRef50_Q8YC76	DNA polymerase IV	0.00396393866472	0.000398061796678	-0.00356587686804
+UniRef50_Q03025	Alkaline protease secretion protein AprE	0.00057547605159	0.000503453071886	-7.2022979704e-05
+UniRef50_V8AQW0		0.00794109240991	0.000974938654562	-0.00696615375535
+UniRef50_UPI0003A20063	DNA 3 methyladenine glycosylase	2.43570778518e-05	0.000107087014985	8.27299371332e-05
+UniRef50_F5M1J2	Phage related integrase	0.00306927417536	0.00152420788163	-0.00154506629373
+UniRef50_UPI0003B727F3	membrane protein	6.27888360558e-05	1.77484282766e-05	-4.50404077792e-05
+UniRef50_C1D040		2.78954640925e-05	0.034235403569	0.0342075081049
+UniRef50_P28631	DNA polymerase III subunit delta	0.00296492025393	0.00138432956065	-0.00158059069328
+UniRef50_Q8FFR0		0.00186662330029	0.00579090294712	0.00392427964683
+UniRef50_O34788	 butanediol dehydrogenase	0.000439462577242	0.00163732982485	0.00119786724761
+UniRef50_C0PLL4		4.94976574155e-05	7.952710313e-05	3.00294457145e-05
+UniRef50_UPI0004077D5F	prephenate dehydratase	7.55095824817e-06	0.000243410004811	0.000235859046563
+UniRef50_A7X6I0	Phytoene desaturase 	9.32693205232e-05	0.000206365269178	0.000113095948655
+UniRef50_Q58065	Putative NADH oxidase	0.00400013086888	0.000985017402641	-0.00301511346624
+UniRef50_Q8DMA8	Polyphosphate kinase	3.16319631414e-06	0.000149169395301	0.000146006198987
+UniRef50_Q932Q4	Orf513	0.000189997020661	0.0118276393253	0.0116376423046
+UniRef50_B0V6C9	Extracellular serine proteinase	0.000329610591411	0.00560570819595	0.00527609760454
+UniRef50_UPI000401E192	hypothetical protein	1.56877311137e-05	3.51617130709e-05	1.94739819572e-05
+UniRef50_E8MRI6	Two component response regulator	0.00518123056752	0.00528848296374	0.00010725239622
+UniRef50_Q5HE75	Fructose bisphosphate aldolase	0.0244410385622	0.00594337298281	-0.0184976655794
+UniRef50_A5UP16	Conserved hypothetical membrane protein Msm_1739	0.00348476016988	0.000306557133415	-0.00317820303647
+UniRef50_F0VS21	Rhamnosyltransferase	0.00408047940937	0.00020319956779	-0.00387727984158
+UniRef50_UPI00046543C3	hypothetical protein	2.82998094325e-05	4.8124583688e-05	1.98247742555e-05
+UniRef50_D5SQR1	Glycogen debranching enzyme GlgX	0.00899446089993	0.00211573708431	-0.00687872381562
+UniRef50_A7ZML4	N succinylglutamate 5 semialdehyde dehydrogenase	0.00265289576811	0.00105686756918	-0.00159602819893
+UniRef50_B9KN09		0.000349931892217	0.000104776886433	-0.000245155005784
+UniRef50_Q3AEQ2	3 isopropylmalate dehydrogenase	0.00101831944697	0.00319062641136	0.00217230696439
+UniRef50_E2XRP0	DNA binding response regulator, LuxR family	0.000975420178776	0.000279921047585	-0.000695499131191
+UniRef50_B9KN06		0.00337157608571	0.000756835527187	-0.00261474055852
+UniRef50_B9KN07		0.0215769468369	0.00465537939525	-0.0169215674416
+UniRef50_V0AP01		0.00337981609622	0.001212455279	-0.00216736081722
+UniRef50_UPI00035C9482	hypothetical protein	1.25926108794e-05	0.000236167557065	0.000223574946186
+UniRef50_E8U6V1	Aldose 1 epimerase	0.000126673150626	0.0399815641162	0.0398548909656
+UniRef50_UPI00031CD3FF	hypothetical protein	1.77068377251e-05	0.000168469099496	0.000150762261771
+UniRef50_Q5HKI6		0.0306202768582	0.000363094309672	-0.0302571825485
+UniRef50_Q09751	Lactoylglutathione lyase	1.53042951152e-05	1.70512589277e-05	1.7469638125e-06
+UniRef50_UPI0003761A55	hypothetical protein	2.18656173264e-06	0.000493750144307	0.000491563582574
+UniRef50_UPI0004762DA5	hypothetical protein	1.10424742732e-05	2.99250812811e-05	1.88826070079e-05
+UniRef50_UPI000467CD77	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	8.11412666188e-06	1.34838495604e-05	5.36972289852e-06
+UniRef50_UPI0003775761	hypothetical protein	2.36726771288e-05	2.66604066852e-05	2.9877295564e-06
+UniRef50_UPI0003821846	hypothetical protein	1.61524258635e-05	1.60018020405e-05	-1.50623823e-07
+UniRef50_I0EQ26	GDP L fucose synthase	0.000375006824528	0.00263950294765	0.00226449612312
+UniRef50_B7V4A2	Heme d1 biosynthesis protein NirF	0.000143167884525	1.20950684986e-05	-0.000131072816026
+UniRef50_G8I0W8	Integrase	0.00188583388181	0.000161522354718	-0.00172431152709
+UniRef50_Q7DDS7	Septum site determining protein MinD	0.00370310683505	0.00652255160584	0.00281944477079
+UniRef50_M9VKM1	RecF RecN SMC N terminal domain protein	9.35258428407e-05	0.0032379888687	0.00314446302586
+UniRef50_Q16DR4	PucC family protein, putative	1.50877010232e-06	8.68313552703e-06	7.17436542471e-06
+UniRef50_Q57865	4 hydroxy tetrahydrodipicolinate reductase	0.00616237216954	0.000758665583133	-0.00540370658641
+UniRef50_D3CU37		9.98156564651e-06	2.1029466761e-05	1.10479011145e-05
+UniRef50_K2FAW5		3.31087656313e-05	8.89141141167e-05	5.58053484854e-05
+UniRef50_Q5HPT2	Ribosome recycling factor	0.0151856724147	0.00368710362448	-0.0114985687902
+UniRef50_C5N0X8	Na Pi cotransporter II like protein	0.0110825875635	0.00406434795339	-0.00701823961011
+UniRef50_Q97TN5	Divalent metal cation transporter MntH	0.000274953836277	0.000719805747829	0.000444851911552
+UniRef50_UPI00047D3BA3	hypothetical protein	0.000333736856185	0.000254782515944	-7.8954340241e-05
+UniRef50_U5MKF5	UPF0750 membrane protein YpjC	0.000131681158905	0.000878203483356	0.000746522324451
+UniRef50_Q1QGJ1	Transposase IS66	2.2344969004e-05	6.0363566331e-06	-1.63086123709e-05
+UniRef50_A0A010ZU52		4.11503642719e-05	5.14348806217e-05	1.02845163498e-05
+UniRef50_UPI00036DBF3D	hypothetical protein, partial	1.9879421076e-05	1.10292734155e-05	-8.8501476605e-06
+UniRef50_P0AGM3	UPF0126 inner membrane protein YicG	0.00263099388966	0.00762722629695	0.00499623240729
+UniRef50_P04040	Catalase	1.79023730023e-05	5.05776937449e-05	3.26753207426e-05
+UniRef50_E8WXY4		6.59180885164e-06	6.73591694869e-06	1.4410809705e-07
+UniRef50_P0AA94	Sensor histidine kinase YpdA	0.0021557415598	0.000344552275314	-0.00181118928449
+UniRef50_B8FWK7	Nucleotide sugar dehydrogenase	8.77194397025e-05	0.000278383357729	0.000190663918027
+UniRef50_A4W0U2	Transcriptional regulator of sugar metabolism	2.73886600256e-05	0.000126920974175	9.95323141494e-05
+UniRef50_Q3IV07	Asparagine synthetase	0.0187847628379	0.00455680443678	-0.0142279584011
+UniRef50_D8JH55	Transcriptional regulatory protein, C terminal family protein	0.00011796437152	0.00404744760097	0.00392948322945
+UniRef50_Q8E0Z8	Prophage LambdaSa1, reverse transcriptase maturase family protein	0.00014803372112	0.000150543774942	2.510053822e-06
+UniRef50_F0XFM1	Endoribonuclease l psp	0.000206243426844	0.000114000104947	-9.2243321897e-05
+UniRef50_Q9FD71	Hydroxymethylglutaryl CoA synthase	0.0121424840541	0.00524317175092	-0.00689931230318
+UniRef50_P75826		0.00192964892965	0.000844513687861	-0.00108513524179
+UniRef50_E6YJH1		0.000193177675909	7.52960076227e-05	-0.000117881668286
+UniRef50_UPI0002193D96	glutamate racemase Nucleoside triphosphatase	5.98295621159e-06	5.52675532701e-06	-4.5620088458e-07
+UniRef50_R6I4T0	Short chain dehydrogenase reductase SDR	7.70018872341e-06	4.80612557611e-06	-2.8940631473e-06
+UniRef50_G5IIY2		1.97998768321e-05	7.37845444237e-05	5.39846675916e-05
+UniRef50_UPI0004154A70	hydroperoxidase	2.29104163195e-05	3.54877905724e-05	1.25773742529e-05
+UniRef50_UPI0003EF5A08	hypothetical protein	4.6610040365e-05	6.00205804537e-05	1.34105400887e-05
+UniRef50_Q46896	CRISPR associated endonuclease Cas1	0.00207603961797	0.000625135419908	-0.00145090419806
+UniRef50_X8FKW3		0.000110738548998	1.63027412745e-05	-9.44358077235e-05
+UniRef50_M4WYD7		0.000597733030037	5.64452334518e-05	-0.000541287796585
+UniRef50_Q8CPQ8	Nucleotidase	0.0186789289193	0.00927115484438	-0.00940777407492
+UniRef50_UPI00047311ED	glutaredoxin, partial	0.000476227391326	0.000187654240136	-0.00028857315119
+UniRef50_F4AQK9		4.22576955442e-05	1.80443810999e-05	-2.42133144443e-05
+UniRef50_A0NSX2	Immunogenic protein	0.000111529522135	2.04787074904e-05	-9.10508146446e-05
+UniRef50_M6ZD49	Winged helix turn helix	4.10268164145e-05	0.00288475323019	0.00284372641378
+UniRef50_UPI000429EA82	hypothetical protein	4.17366390408e-06	2.10953240223e-05	1.69216601182e-05
+UniRef50_G5FKQ3		0.000866374101029	0.000468357367202	-0.000398016733827
+UniRef50_T0T8E0	Alanine  tRNA ligase	0.00581565627091	0.00153975709969	-0.00427589917122
+UniRef50_S4XCV1	Surface protein G2	0.000473304400909	0.000144291549777	-0.000329012851132
+UniRef50_Q5HKF2	Aminotransferase, class II	0.00791345434064	0.00236667382994	-0.0055467805107
+UniRef50_E0S0H5	Phosphoglucomutase phosphomannomutase family protein	0.000518488440746	0.00157026666418	0.00105177822343
+UniRef50_M4QZL8		2.16626022775e-05	0.00206332387246	0.00204166127018
+UniRef50_B7N6B0	Peptidase B	0.00315425371136	0.00034749745064	-0.00280675626072
+UniRef50_M4QZL0		0.000266497178474	0.00496856186239	0.00470206468392
+UniRef50_C1CU33	Transketolase, C subunit	0.00187611648258	0.00529792329156	0.00342180680898
+UniRef50_U5MMW0	Sporulation protein YunB	0.00181445024617	0.000368378426439	-0.00144607181973
+UniRef50_Q74AX0	Thymidylate kinase	9.18192879807e-06	3.07049292137e-05	2.15230004156e-05
+UniRef50_Q166C2	Acyl carrier protein	0.000149042142596	0.00208458850726	0.00193554636466
+UniRef50_UPI00035FDAE3	hypothetical protein	0.000155540054093	7.99930003751e-05	-7.55470537179e-05
+UniRef50_UPI000370852C	hypothetical protein, partial	1.71943340652e-05	4.89459035123e-05	3.17515694471e-05
+UniRef50_L8E5H5	Phosphoribosylformylglycinamidine synthase 1	2.72514914055e-05	2.77722223231e-05	5.207309176e-07
+UniRef50_E4NK07		6.90589737553e-05	0.00522345932432	0.00515440035056
+UniRef50_UPI0002485CB9	membrane protein	1.18248469585e-05	3.41748866197e-05	2.23500396612e-05
+UniRef50_T2AJH5		1.60484281829e-05	1.58793104712e-05	-1.691177117e-07
+UniRef50_Q0FVE7	Flagellar protein FlgJ, putative	0.000131977576868	6.46920406909e-05	-6.72855361771e-05
+UniRef50_M9VIA8	DNA topoisomerase IV subunit B	0.000334535132373	0.00495333407036	0.00461879893799
+UniRef50_P0A2T8	Fumarate and nitrate reduction regulatory protein	0.00580831152854	0.00228155989671	-0.00352675163183
+UniRef50_UPI0003AA4737	LuxR family transcriptional regulator	1.96350577785e-05	2.94414852334e-05	9.8064274549e-06
+UniRef50_UPI000346AB98	hypothetical protein	0.000140555524225	8.59062772212e-05	-5.46492470038e-05
+UniRef50_F4A3Y5	Peptidase, M24 family protein	0.000218455885457	0.00114858934478	0.000930133459323
+UniRef50_Q9K4V0	Nitric oxide reductase transcription regulator NorR1	2.89817222699e-06	1.42272796273e-05	1.13291074003e-05
+UniRef50_M4R0H3	ABC transporter, ATP binding domain protein	0.000111688576412	0.00678937562518	0.00667768704877
+UniRef50_Y1B2H8		0.000748080752802	0.000477175154709	-0.000270905598093
+UniRef50_Q6A9Q2	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000104086210166	0.00561321876948	0.00550913255931
+UniRef50_UPI000473DF01	hypothetical protein	2.26996678398e-05	2.32421263772e-05	5.424585374e-07
+UniRef50_UPI00037F561A	hypothetical protein, partial	1.12490508231e-05	1.42737696293e-05	3.0247188062e-06
+UniRef50_Q4UY06	Sulfate adenylyltransferase subunit 2	0.00442624543048	0.0172910189041	0.0128647734736
+UniRef50_W1YEB9		0.00687940767631	0.00306109010037	-0.00381831757594
+UniRef50_E8SNW0	Macrophage infectivity potentiator related protein	4.24965103299e-05	0.000336223952777	0.000293727442447
+UniRef50_UPI0002E6D910	hypothetical protein	1.15850385429e-06	1.99423595276e-05	1.87838556733e-05
+UniRef50_P33570	Transketolase 2	0.0072954510457	0.00287671984998	-0.00441873119572
+UniRef50_B5H7E3	ABC transporter ATP binding protein	0.0115276043552	0.003752163989	-0.0077754403662
+UniRef50_F5X6Q7	ABC transport system permease protein	0.00473752992177	0.00125142753188	-0.00348610238989
+UniRef50_Q7NMQ5	Nucleoside diphosphate kinase	5.32455244512e-05	0.000106270438378	5.30249139268e-05
+UniRef50_J8VUX1		0.000158907166529	2.88496999697e-05	-0.000130057466559
+UniRef50_R7I3D6		8.32661900232e-05	1.66051503707e-05	-6.66610396525e-05
+UniRef50_D2J7E4	Replication initiator protein	4.23880012087e-05	5.87596215104e-06	-3.65120390577e-05
+UniRef50_U3QYE8	Membrane protein	0.000413512788083	0.000110207866814	-0.000303304921269
+UniRef50_D3FRH5		8.1793290844e-06	1.2315613979e-05	4.1362848946e-06
+UniRef50_UPI00041C9E3C	hypothetical protein	1.96589645437e-06	1.93752778666e-05	1.74093814122e-05
+UniRef50_Q6A8N5	Prolipoprotein diacylglyceryl transferase	0.000396952775185	0.00559804704	0.00520109426481
+UniRef50_W8UXR7		0.00214646160899	0.000109406083607	-0.00203705552538
+UniRef50_P58664		0.00594424752907	0.000798280213812	-0.00514596731526
+UniRef50_S5YW82		1.16846275306e-05	1.61290894881e-05	4.4444619575e-06
+UniRef50_Q6AAL4	S ribosylhomocysteine lyase	0.000184587448664	0.00140012541053	0.00121553796187
+UniRef50_UPI0004665EA7	fusaric acid resistance protein	2.84460366972e-06	6.25977207803e-06	3.41516840831e-06
+UniRef50_P0AC90	GDP mannose 4,6 dehydratase	0.0185791832537	0.0148244287622	-0.0037547544915
+UniRef50_E3JA76		2.44090876712e-05	1.76692322921e-06	-2.2642164442e-05
+UniRef50_R0S9J4		3.08232641491e-05	0.001547456555	0.00151663329085
+UniRef50_A1B2V6		0.000139232886318	8.93269488857e-05	-4.99059374323e-05
+UniRef50_A5UKK8	Adenine cytosine DNA methyltransferase	0.0036461992992	0.00031031527691	-0.00333588402229
+UniRef50_S8F0C2		4.88829852552e-07	1.58284210713e-05	1.53395912187e-05
+UniRef50_W4RSX5	NAD synthetase	3.59143930309e-05	0.000171458933106	0.000135544540075
+UniRef50_UPI000473309C	hypothetical protein, partial	3.62010277115e-05	6.20953223906e-06	-2.99914954724e-05
+UniRef50_UPI000382DF5B	hypothetical protein	5.51611284246e-05	8.73718062633e-05	3.22106778387e-05
+UniRef50_A6LX54	Response regulator receiver protein	0.0041343671809	0.00092447586961	-0.00320989131129
+UniRef50_UPI0002F1891F	hypothetical protein	8.37418466037e-07	3.02178031685e-05	2.93803847025e-05
+UniRef50_UPI00036F5244	hypothetical protein	1.26424675227e-05	4.69337249452e-06	-7.94909502818e-06
+UniRef50_F4DLN9		0.000271572653853	0.000295316705201	2.3744051348e-05
+UniRef50_P31040	Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	3.71301717056e-06	8.15442119386e-06	4.4414040233e-06
+UniRef50_A4WZY2		0.000713870995659	0.000504814880674	-0.000209056114985
+UniRef50_UPI0003796C9F	hypothetical protein, partial	2.26399297194e-05	0.000121365349473	9.87254197536e-05
+UniRef50_UPI000363A9F6	alcohol dehydrogenase	1.32451733281e-05	0.00050770780263	0.000494462629302
+UniRef50_UPI00047212B5	spermidine putrescine ABC transporter substrate binding protein	1.91741171721e-05	0.000148989102043	0.000129814984871
+UniRef50_O32129	Lipoyl synthase	1.42446390888e-05	4.01408443809e-05	2.58962052921e-05
+UniRef50_UPI0003EC0C27	PREDICTED	3.5134585193e-05	1.06400782762e-05	-2.44945069168e-05
+UniRef50_P0A9T2	D 3 phosphoglycerate dehydrogenase	0.00413355463648	0.00156016112754	-0.00257339350894
+UniRef50_UPI00021928D0	3 keto L gulonate 6 phosphate decarboxylase, partial	1.70654975724e-05	3.29762082509e-05	1.59107106785e-05
+UniRef50_UPI0004785282	ABC transporter ATP binding protein	3.64333142282e-05	6.83483140087e-06	-2.95984828273e-05
+UniRef50_UPI00016C377C	excinuclease ABC subunit A	1.06886415753e-05	3.13265745753e-05	2.0637933e-05
+UniRef50_G9G2D7	ABC transporter related protein	0.000158496566353	0.000228145881214	6.9649314861e-05
+UniRef50_UPI0003794563	hypothetical protein, partial	7.71840816016e-06	2.36710379869e-05	1.59526298267e-05
+UniRef50_P55357	Mannose 1 phosphate guanylyltransferase	2.09823618314e-05	5.11139366872e-06	-1.58709681627e-05
+UniRef50_UPI0003B39652	ribosomal large subunit pseudouridine synthase A	0.000123949735269	2.79446695009e-05	-9.60050657681e-05
+UniRef50_F0KHF7		0.00025334630124	0.00541226303447	0.00515891673323
+UniRef50_D3X7Y2	Glutathione peroxidase	0.0293419934203	0.0199377997535	-0.0094041936668
+UniRef50_A6M2T7	Abortive infection protein	0.000344799308646	0.0014586548139	0.00111385550525
+UniRef50_W9D4Z0		3.95199237577e-05	2.07834882752e-05	-1.87364354825e-05
+UniRef50_K0HMC2		0.000228377380324	0.00498520866254	0.00475683128222
+UniRef50_UPI0003C10DF6		1.42286679549e-05	3.88080642259e-05	2.4579396271e-05
+UniRef50_N3NX82		0.00167492185909	0.000998376946437	-0.000676544912653
+UniRef50_U5Y027	Xanthine uracil vitamin C permease	9.43714972093e-05	0.00270638617765	0.00261201468044
+UniRef50_Q59931	NADP dependent glyceraldehyde 3 phosphate dehydrogenase	0.00566385244841	0.0075310977636	0.00186724531519
+UniRef50_Q187U6	tRNA 2 methylthio N dimethylallyladenosine synthase	0.000117353157162	0.0015548713406	0.00143751818344
+UniRef50_J9S761		3.32993428377e-06	6.34150717784e-06	3.01157289407e-06
+UniRef50_UPI000469984F	hypothetical protein	1.49814960801e-05	2.22185400663e-05	7.2370439862e-06
+UniRef50_UPI00046F91FB	inner membrane translocator	2.48324095868e-05	1.4242882963e-05	-1.05895266238e-05
+UniRef50_A0A011MQD2	DNA primase	2.52231844225e-06	6.08921424204e-06	3.56689579979e-06
+UniRef50_K6VMV8		1.01121886256e-06	3.65874940142e-05	3.55762751516e-05
+UniRef50_P37981	Inorganic pyrophosphatase	0.00516493894268	5.2163594827e-05	-0.00511277534785
+UniRef50_L1K7R1	Pirin domain protein	8.37001702481e-05	0.000262252683879	0.000178552513631
+UniRef50_Q57N15	Putative mannosyl 3 phosphoglycerate phosphatase	0.002465001165	0.00172918885835	-0.00073581230665
+UniRef50_P47924	Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic	1.14522756712e-05	7.05380809221e-05	5.90858052509e-05
+UniRef50_Q6GGK7	Sensor protein SrrB	0.0221210085623	0.00376725351664	-0.0183537550457
+UniRef50_UPI000289481B	50S ribosomal protein L22	2.8148682849e-05	0.000422796130075	0.000394647447226
+UniRef50_UPI000380885A	hypothetical protein, partial	8.12209150601e-05	0.000104036224659	2.28153095989e-05
+UniRef50_UPI0003B51BB3	diguanylate cyclase	2.02361715745e-05	2.64521732183e-05	6.2160016438e-06
+UniRef50_F0KFG3	Modulator of drug activity	0.000577784676811	0.00697775493285	0.00639997025604
+UniRef50_Q49Z27		0.0086905584063	0.00478648491576	-0.00390407349054
+UniRef50_A3PP65	Transcriptional regulator, LysR family	0.00653236321355	0.000853438555497	-0.00567892465805
+UniRef50_R6FTR0	Sporulation integral membrane protein YlbJ	0.000444121251354	0.00079481279483	0.000350691543476
+UniRef50_A4WYU2		0.00233776319973	0.000461390356386	-0.00187637284334
+UniRef50_Q3IY96	PAS sensor Signal Tranduction Histidine Kinase	0.00570928142879	0.00159021523704	-0.00411906619175
+UniRef50_A4WYU6		0.0117064402984	0.00109833256403	-0.0106081077344
+UniRef50_Q8XE45	Malate	0.00499347628972	0.0063254866526	0.00133201036288
+UniRef50_UPI00047A4FE0	hypothetical protein	2.75166775813e-05	7.31968750716e-05	4.56801974903e-05
+UniRef50_A0A028V4R5		7.02100879136e-05	4.31762775947e-05	-2.70338103189e-05
+UniRef50_UPI000472245F	hypothetical protein	3.71193837864e-05	3.15532260949e-05	-5.5661576915e-06
+UniRef50_Q6D4A8	Zinc import ATP binding protein ZnuC	5.1162344795e-05	7.35273000545e-05	2.23649552595e-05
+UniRef50_B4SGR9	3 dehydroquinate dehydratase	8.10037107999e-06	0.000172195051267	0.000164094680187
+UniRef50_UPI00035E131B	hypothetical protein	1.25257461219e-05	4.01365476645e-05	2.76108015426e-05
+UniRef50_UPI000471D845	hypothetical protein	4.43371170367e-05	1.49618588931e-05	-2.93752581436e-05
+UniRef50_UPI000190BCFA	hypothetical protein, partial	7.40716520758e-05	0.000127325991728	5.32543396522e-05
+UniRef50_F0Y0F0		5.37476303124e-05	0.000358608381777	0.000304860751465
+UniRef50_G7U5I2	Tricorn protease	4.07945953426e-05	0.00683914754632	0.00679835295098
+UniRef50_B9KX51	DSBA oxidoreductase	0.000260141357182	0.000501954739708	0.000241813382526
+UniRef50_Q9RYP2	Adenine deaminase related protein	5.48404655451e-05	2.74615808367e-05	-2.73788847084e-05
+UniRef50_R0NKC6	ABC transporter substrate binding protein	0.000175902156329	0.000162494663388	-1.3407492941e-05
+UniRef50_M5UK49	Glucose 1 dehydrogenase	1.07991065648e-05	1.17528365826e-05	9.537300178e-07
+UniRef50_E5U6M9		1.62633086508e-05	4.12741175889e-05	2.50108089381e-05
+UniRef50_UPI0003FF8F9D	hypothetical protein	3.35932401412e-06	5.03785832074e-06	1.67853430662e-06
+UniRef50_A5UN83		0.00329784931191	0.000256054946702	-0.00304179436521
+UniRef50_A5UN84		0.00797008843261	0.00198267950293	-0.00598740892968
+UniRef50_Q4L8H9	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.016794474735	0.00127474836775	-0.0155197263672
+UniRef50_S0GCD5		4.43955066941e-05	0.00114888921244	0.00110449370575
+UniRef50_Q2J713	Probable dual specificity RNA methyltransferase RlmN	0.000260252589163	0.0102117291117	0.00995147652254
+UniRef50_Q8FFV6	Multidrug resistance outer membrane protein MdtQ	0.0017230021876	0.000952804451949	-0.000770197735651
+UniRef50_D3QIE1	Hydrolase 	0.0224623648376	0.0105761405087	-0.0118862243289
+UniRef50_B6C5I5		4.63317921584e-05	9.02509862803e-05	4.39191941219e-05
+UniRef50_UPI0004786084	hypothetical protein	2.72384581959e-05	2.63063258775e-05	-9.321323184e-07
+UniRef50_A0RQU5	TonB dependent receptor protein	0.000155012497258	0.000926151086815	0.000771138589557
+UniRef50_A5UN65	MEMO1 family protein Msm_1438	0.00340691272955	0.000643025619111	-0.00276388711044
+UniRef50_C6CW93	Major facilitator superfamily MFS_1	0.000500352935972	0.00153830007556	0.00103794713959
+UniRef50_E7C3U5		6.98476723961e-05	5.18285630098e-05	-1.80191093863e-05
+UniRef50_Q2FE11	Phosphoglucomutase	0.0211829766817	0.00710477773023	-0.0140781989515
+UniRef50_Q68WT1	DNA helicase II	6.57047734114e-06	9.47556921361e-06	2.90509187247e-06
+UniRef50_UPI0003F6F54C	hypothetical protein	6.12541117495e-05	0.000112080046108	5.08259343585e-05
+UniRef50_C6NW58	Putative ATP dependent RNA helicase	3.49382345348e-06	2.86103231412e-05	2.51164996877e-05
+UniRef50_P76086	Transcriptional repressor PaaX	0.00345582632693	0.000384290105381	-0.00307153622155
+UniRef50_D9RB01		0.00398590586768	0.00134980017437	-0.00263610569331
+UniRef50_J2X6M2		0.000155557412985	8.29646113906e-05	-7.25928015944e-05
+UniRef50_G8PLF5	TRAP transporter solute receptor, TAXI family	1.6093305499e-05	8.38531549301e-06	-7.70799000599e-06
+UniRef50_S5YTP5	Iron complex transport system, substrate binding protein	0.000568226263642	0.000580957140637	1.2730876995e-05
+UniRef50_Q8G6D6	Phosphoglycerate kinase	0.000179440505051	0.00665159747029	0.00647215696524
+UniRef50_Q02ZD2	Redox sensing transcriptional repressor Rex	0.0055451001399	0.00120031566504	-0.00434478447486
+UniRef50_UPI0002D2A0E3	hypothetical protein	5.76355084716e-05	2.50567047746e-05	-3.2578803697e-05
+UniRef50_UPI0002B9B247	hypothetical protein, partial	3.31485548704e-05	4.83863367105e-05	1.52377818401e-05
+UniRef50_P44997	Phosphoserine phosphatase	6.43380728562e-06	8.31204160662e-06	1.878234321e-06
+UniRef50_UPI00046D3094	Fis family transcriptional regulator	1.22057959548e-05	3.21025264004e-05	1.98967304456e-05
+UniRef50_UPI0003598719	PREDICTED	3.5665284474e-05	9.84662241577e-06	-2.58186620582e-05
+UniRef50_A4W090	Putative sporulation transcription regulator WhiA	0.00534934845888	0.00682230266586	0.00147295420698
+UniRef50_UPI0003C2A5BF	PREDICTED	2.83428486787e-05	7.83417944571e-06	-2.0508669233e-05
+UniRef50_W5XDD5	DNA polymerase	1.66108531379e-06	1.43597468532e-05	1.26986615394e-05
+UniRef50_UPI0003B74800	hypothetical protein	8.77093342479e-05	2.21079798175e-05	-6.56013544304e-05
+UniRef50_UPI000474F6A9	hypothetical protein, partial	0.00018254436888	0.00961102755211	0.00942848318323
+UniRef50_E3E7X3	Oxidoreductase Fe S binding subunit	0.000199026004668	0.00106429072327	0.000865264718602
+UniRef50_C2MSC7	S layer y domain protein	9.79575047117e-06	0.000203041512412	0.000193245761941
+UniRef50_O31546	Probable tRNA dihydrouridine synthase 2	0.0209995014934	0.00703686350551	-0.0139626379879
+UniRef50_T9WCL0	Phage tail fiber assembly protein	0.000835977375802	0.000123535008968	-0.000712442366834
+UniRef50_S1H2Y6	Protein YibB	0.000497000804833	0.000533868336627	3.6867531794e-05
+UniRef50_C5N1K2	ROK family protein	0.0130752436692	0.000860371846485	-0.0122148718227
+UniRef50_P74755	Histidine biosynthesis bifunctional protein HisIE	1.08637969125e-05	4.05456368493e-05	2.96818399368e-05
+UniRef50_Y1MEW7	ATP dependent helicase	0.0029348110386	0.000861996124924	-0.00207281491368
+UniRef50_A0A011P8Z8		9.5611001184e-06	3.28034913898e-05	2.32423912714e-05
+UniRef50_UPI000308DF5E	50S ribosomal protein L20	4.74957121289e-05	0.00022549432742	0.000177998615291
+UniRef50_Q8CQW2		0.00186957193293	0.00141228848282	-0.00045728345011
+UniRef50_A7Z635	Glycerol 3 phosphate dehydrogenase [NAD+]	0.0282606874843	0.00933360194144	-0.0189270855429
+UniRef50_UPI00036159B5	30S ribosomal protein S2	1.9562629957e-05	8.72080362758e-06	-1.08418263294e-05
+UniRef50_A6V6R8		0.00189995576076	0.000269695621179	-0.00163026013958
+UniRef50_C7RQ14		0.00830825775856	0.00070345792957	-0.00760479982899
+UniRef50_UPI00015D2B59	hypothetical protein	1.03005823625e-05	1.36493194203e-05	3.3487370578e-06
+UniRef50_D3E3U4	Exosome subunit	0.00179597989534	0.000341406595601	-0.00145457329974
+UniRef50_P42314		0.00054977460658	0.00719583201442	0.00664605740784
+UniRef50_Q1CRH7	tRNA modification GTPase MnmE	8.41350643778e-05	0.00315810400977	0.00307396894539
+UniRef50_Q8ZLS0	3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC	0.00176578138917	0.000334256188166	-0.001431525201
+UniRef50_U5MWL6	Pyruvate kinase	0.000418697266709	0.000906345296054	0.000487648029345
+UniRef50_Q9RYX4	Probable guanine deaminase	0.00017161922569	0.00623335425637	0.00606173503068
+UniRef50_W8TV76	2 hydroxyacid dehydrogenase	0.0206520760475	0.0134102557222	-0.0072418203253
+UniRef50_UPI000360F94C	MULTISPECIES	9.12009469056e-06	2.35415122396e-05	1.4421417549e-05
+UniRef50_P35141	Adenylate kinase 	0.000123133192114	0.000119194181292	-3.939010822e-06
+UniRef50_UPI00036AE0E8	hypothetical protein, partial	0.000336137646621	6.94066700523e-05	-0.000266730976569
+UniRef50_R8BHP6		1.66030028487e-05	2.19958110554e-05	5.3928082067e-06
+UniRef50_E6AX10		0.000124470397768	0.000394529152331	0.000270058754563
+UniRef50_X5A009	Oxidoreductase	0.0191699464962	0.00348732398351	-0.0156826225127
+UniRef50_UPI000470CE1D	hypothetical protein, partial	4.41701815211e-05	0.00011859035889	7.44201773689e-05
+UniRef50_A0A010Q6A8	TonB dependent receptor family protein	6.28096487306e-05	0.00622493568842	0.00616212603969
+UniRef50_A7GXA8	Argininosuccinate lyase	2.77175730313e-05	2.33574739992e-05	-4.3600990321e-06
+UniRef50_UPI00037A50BE	hypothetical protein	9.57436095205e-06	1.6682277892e-05	7.10791693995e-06
+UniRef50_UPI00047EC686	CoA transferase	7.8104388743e-06	0.000139577998334	0.00013176755946
+UniRef50_UPI0003B49CD4	glutamine amidotransferase	2.6574305074e-06	1.9754718766e-05	1.70972882586e-05
+UniRef50_L0NM51		6.28544702505e-07	1.6300728892e-05	1.56721841895e-05
+UniRef50_Q6FF15	Exonuclease V, alpha subunit	0.000305144312301	0.00695343683073	0.00664829251843
+UniRef50_E3YPZ5	Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.00237902327167	0.000399977478817	-0.00197904579285
+UniRef50_Q2SRK6	Tyrosine  tRNA ligase	5.14167437652e-06	1.69782233265e-05	1.183654895e-05
+UniRef50_Q2YV14		0.00110453367413	2.4035292532e-05	-0.0010804983816
+UniRef50_A1AYM7		0.000609005269761	2.66256484703e-05	-0.000582379621291
+UniRef50_L7KRU0		8.48536226037e-06	7.45591583222e-06	-1.02944642815e-06
+UniRef50_C5WGJ7	XRE family transcriptional regulator	0.00509663834726	0.00251383816687	-0.00258280018039
+UniRef50_X7YQG6		7.30966912105e-06	2.59484695403e-05	1.86388004192e-05
+UniRef50_B2I3G0	Molybdopterin biosynthesis protein	0.000119206101737	0.00654230304145	0.00642309693971
+UniRef50_G8UTB0	Flagellar basal body rod modification protein FlgD	9.42383145694e-06	1.2957966582e-05	3.53413512506e-06
+UniRef50_Q4JVG0	Chorismate synthase	0.000178288933788	0.00613161285929	0.0059533239255
+UniRef50_UPI0003B6C9F3	30S ribosomal protein S5	7.89460949214e-06	1.26854668605e-05	4.79085736836e-06
+UniRef50_M3ZEB7		5.17010988532e-05	2.34189864549e-05	-2.82821123983e-05
+UniRef50_R9SLQ2		0.00338932260661	0.00240845609506	-0.00098086651155
+UniRef50_Q5X496	Dihydroorotate dehydrogenase 	1.0156177721e-05	6.73936574871e-05	5.72374797661e-05
+UniRef50_B7KV96		7.52983512691e-05	1.13043462905e-05	-6.39940049786e-05
+UniRef50_UPI00039B1B0F	general secretion pathway protein I	1.71988796948e-05	1.87246931924e-05	1.5258134976e-06
+UniRef50_Q6ME91	Aspartate  tRNA ligase	3.29351183091e-06	1.64893117375e-05	1.31957999066e-05
+UniRef50_UPI00046FBF5E	butanol dehydrogenase, partial	1.46457574333e-05	2.89331299453e-05	1.4287372512e-05
+UniRef50_Q49V04	4 diphosphocytidyl 2 C methyl D erythritol kinase	0.0290426869888	0.00569948043676	-0.023343206552
+UniRef50_A6LTZ1		0.00101871065361	0.00132433597517	0.00030562532156
+UniRef50_S8N5S2		1.37782205568e-05	1.48410233772e-05	1.0628028204e-06
+UniRef50_E3F4P1	Short chain dehydrogenase reductase SDR	0.00537712820083	0.000515491518799	-0.00486163668203
+UniRef50_W0Z0G1	NADH quinone oxidoreductase	0.000565264778962	0.000425937555561	-0.000139327223401
+UniRef50_Q89ER4	Aliphatic sulfonates import ATP binding protein SsuB	5.73127687095e-05	1.48257726497e-05	-4.24869960598e-05
+UniRef50_Q0T1X7	3 phenylpropionate cinnamic acid dioxygenase ferredoxin  NAD reductase component	0.00438649403774	0.000877935462662	-0.00350855857508
+UniRef50_Q9CGF0	Xanthine phosphoribosyltransferase	4.36025764995e-05	5.47123979683e-05	1.11098214688e-05
+UniRef50_D8IIA8		0.00824256666788	0.00599974650514	-0.00224282016274
+UniRef50_UPI000408C6D9	ribosome binding factor A	0.000128991778768	0.000159796465455	3.0804686687e-05
+UniRef50_Q1R421		0.000200118466156	0.000594841864338	0.000394723398182
+UniRef50_UPI0004682957	tRNA uridine 5 carboxymethylaminomethyl modification protein	2.16393714311e-05	1.54717843684e-05	-6.1675870627e-06
+UniRef50_G4AEU2		1.17949001381e-05	0.000579560234898	0.00056776533476
+UniRef50_I0C2K0	Nitrogen regulation protein NIFR3	0.000170700875662	7.85094744967e-05	-9.21914011653e-05
+UniRef50_UPI000455F8BC	alcohol oxidase	1.19285836302e-05	8.1310154195e-06	-3.7975682107e-06
+UniRef50_D2JBV0	Beta lactamase regulatory sensor transducer BlaR1	0.000235210666732	0.00284976736831	0.00261455670158
+UniRef50_UPI000416161F	hypothetical protein	6.32856856698e-06	3.60553897701e-06	-2.72302958997e-06
+UniRef50_A4WVT3	Transposase, IS4 family	0.000113437509933	0.000337724491539	0.000224286981606
+UniRef50_F4FMD5	Periplasmic iron binding protein	0.0134540534973	0.00438698056029	-0.00906707293701
+UniRef50_V9BNZ4	TRAP transporter, DctM like membrane protein	0.000215148340172	0.000116529539996	-9.8618800176e-05
+UniRef50_P39377	Isoaspartyl dipeptidase	0.00256128034184	0.0006413100635	-0.00191997027834
+UniRef50_Q1J1P5	Phosphopantetheine adenylyltransferase	1.07723512941e-05	0.101273271699	0.101262499348
+UniRef50_E6V848	Short chain dehydrogenase reductase SDR	0.0157888346465	0.00490830609638	-0.0108805285501
+UniRef50_Y6EQN4	Serine rich adhesin for platelets	0.000336127804747	4.3407648978e-05	-0.000292720155769
+UniRef50_W8S2G5	Glutathione peroxidase	0.0062440430294	0.00268469731995	-0.00355934570945
+UniRef50_A6LRE6	Membrane protein	9.3437125959e-05	0.00351019904868	0.00341676192272
+UniRef50_A6VD85	Lipoprotein	0.00119656498788	0.000477601140485	-0.000718963847395
+UniRef50_G9WG99	Alpha glucosidase	0.000375194456211	0.00132401314879	0.000948818692579
+UniRef50_A4WSV2	Pseudouridine synthase	0.000799205044925	0.000357126760603	-0.000442078284322
+UniRef50_V5T5N9	Fimbrial protein	0.000513327420365	0.00121130650698	0.000697979086615
+UniRef50_Q2YUZ7	Acetylglutamate kinase	0.00934449658849	0.00433959016749	-0.005004906421
+UniRef50_K0C8G2	Alpha L glutamate ligase like protein	0.000334483234429	0.000521844501014	0.000187361266585
+UniRef50_F8JNJ0		2.15837662388e-05	2.53048951411e-05	3.7211289023e-06
+UniRef50_V6XU76		0.0136222171402	0.000600644146164	-0.013021572994
+UniRef50_Q5WH73	Peptide methionine sulfoxide reductase MsrB	1.42564752224e-05	4.39141249356e-05	2.96576497132e-05
+UniRef50_UPI000479EE06	hypothetical protein	7.07228491284e-06	6.51958774208e-05	5.8123592508e-05
+UniRef50_Q8CQZ2	ABC transporter 	0.0117175331604	0.00312025685453	-0.00859727630587
+UniRef50_UPI0002625DD5	ABC transporter	8.00121400038e-06	7.51578057656e-05	6.71565917652e-05
+UniRef50_Q931P4	Iron regulated surface determinant protein H	0.00930572974121	0.00193265400763	-0.00737307573358
+UniRef50_S9R7G4	Multisubunit Na+ H+ antiporter, MnhB subunit	6.51126605838e-05	1.24571473627e-05	-5.26555132211e-05
+UniRef50_F7Z2N3	Transcriptional activator, TenA family	0.00087690840061	0.000586721930844	-0.000290186469766
+UniRef50_UPI0004641455	electron transporter RnfC	0.000429362130574	0.00018225473207	-0.000247107398504
+UniRef50_B2EBN8		0.000490988865704	0.00114506279426	0.000654073928556
+UniRef50_C4L8G4	Type VI secretion protein, VC_A0114 family	5.03846661933e-06	8.23640196763e-06	3.1979353483e-06
+UniRef50_X0P1E3		3.60408261874e-06	0.00158611334968	0.00158250926706
+UniRef50_I1EQF0		3.35626174585e-06	0.000186832467184	0.000183476205438
+UniRef50_P56032	50S ribosomal protein L4	0.000202949456367	0.00165086272058	0.00144791326421
+UniRef50_UPI00037FFF27	hypothetical protein, partial	3.81379949496e-05	4.11357945162e-06	-3.4024415498e-05
+UniRef50_P57389	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.52394463366e-05	3.01457891917e-05	1.49063428551e-05
+UniRef50_M1IRD2	Dehydrogenase	0.000155131228296	0.00647712818571	0.00632199695741
+UniRef50_Q8ET05	Ornithine carbamoyltransferase	0.00428174580697	0.00851735725824	0.00423561145127
+UniRef50_D8JTY5	Binding protein dependent transport systems inner membrane component	0.000965328331553	0.000196659293133	-0.00076866903842
+UniRef50_G7M273		0.000248482349383	0.000436866068578	0.000188383719195
+UniRef50_W7WNN7		3.89946372973e-05	0.000318464886917	0.00027947024962
+UniRef50_UPI000364C068	hypothetical protein	5.82960092807e-06	8.75281982707e-07	-4.95431894536e-06
+UniRef50_UPI00046650EC	hypothetical protein	1.20074142218e-05	0.000102359633577	9.03522193552e-05
+UniRef50_Q3SL72	Putative pilus assembly protein PilF, TPR repeat	6.35564499147e-06	1.1623412684e-05	5.26776769253e-06
+UniRef50_UPI000473F325	hypothetical protein	4.75509770741e-05	2.799074968e-05	-1.95602273941e-05
+UniRef50_A6LUF1		0.000185953689091	0.00249516431661	0.00230921062752
+UniRef50_UPI00034F6213	PREDICTED	1.20228376991e-05	9.77191298898e-06	-2.25092471012e-06
+UniRef50_K7RJS3	Transcriptional regulator, LacI family	0.000173158710486	0.00499098743873	0.00481782872824
+UniRef50_B3E717	Elongation factor Ts	0.0125406544533	0.00227945365959	-0.0102612007937
+UniRef50_D2P385		0.0261848323859	0.00209149965921	-0.0240933327267
+UniRef50_X7ELL2	Transcriptional regulator	0.000158471737472	6.14474901861e-05	-9.70242472859e-05
+UniRef50_C2DNC2		0.000254785127998	0.000114495103492	-0.000140290024506
+UniRef50_H8H2P8	Transposase, IS4	4.51008619322e-06	0.00334313515128	0.00333862506509
+UniRef50_A6M074	Alcohol dehydrogenase GroES domain protein	0.000796859789197	0.000905768528868	0.000108908739671
+UniRef50_UPI00036452A7	hypothetical protein	1.33872329776e-05	0.000161660174712	0.000148272941734
+UniRef50_X6KYR9		1.18752521757e-05	4.64843148773e-05	3.46090627016e-05
+UniRef50_UPI000362C621	hypothetical protein	7.66522711868e-06	0.00228697194376	0.00227930671664
+UniRef50_Q3JP83		2.77395697363e-05	2.80761906206e-06	-2.49319506742e-05
+UniRef50_Q46VJ2	Twin arginine translocation pathway signal	0.000243411926725	0.000187304464177	-5.6107462548e-05
+UniRef50_Q6AEX4	ABC type glycine betaine transport, ATP binding protein	0.000148811822151	0.00973452068884	0.00958570886669
+UniRef50_F0K5E7	Translation factor 	0.000374774721742	0.000464442295204	8.9667573462e-05
+UniRef50_UPI0003B62D20	acyltransferase	0.000323666582535	7.80613774246e-05	-0.00024560520511
+UniRef50_A0A010V7A5		0.000164601448628	0.00768276763468	0.00751816618605
+UniRef50_UPI0001DD0BD2	hypothetical protein, partial	0.000101612368852	4.30557294456e-05	-5.85566394064e-05
+UniRef50_UPI00038FA867	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial	1.30548469271e-05	7.31761408798e-05	6.01212939527e-05
+UniRef50_UPI00046F700B	hypothetical protein	4.55936381743e-05	3.66972647928e-05	-8.8963733815e-06
+UniRef50_P76057		0.000501781337401	0.000831878042813	0.000330096705412
+UniRef50_U5N033		0.000280989491069	0.00147458920369	0.00119359971262
+UniRef50_UPI0004785487	5 keto 4 deoxyuronate isomerase, partial	9.80347993844e-06	9.21256127817e-06	-5.9091866027e-07
+UniRef50_K9ZYV5	Diguanylate cyclase  domain containing protein	5.27616103042e-06	0.000113690998245	0.000108414837215
+UniRef50_UPI00038240F5	hypothetical protein	6.07283945701e-06	0.000170464760179	0.000164391920722
+UniRef50_B2S1K4	Uridine kinase	1.02781113614e-05	9.16935230741e-05	8.14154117127e-05
+UniRef50_UPI00035D9BD3	hypothetical protein	8.72677380167e-05	9.10880445477e-05	3.820306531e-06
+UniRef50_E4BE72		0.000159270106002	9.28638639564e-05	-6.64062420456e-05
+UniRef50_O75251	NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	4.24588359561e-05	0.00533529624212	0.00529283740616
+UniRef50_I6TQZ1	Thioesterase	0.00403294363131	0.00101981229436	-0.00301313133695
+UniRef50_UPI0003AEA946		8.6906603445e-06	0.000138697762915	0.00013000710257
+UniRef50_G1RN76		0.000171884919535	0.00021929458307	4.7409663535e-05
+UniRef50_U6HZU1	Heat shock protein 70	3.52350351094e-05	1.10420552482e-05	-2.41929798612e-05
+UniRef50_UPI00016C4061	DNA polymerase I 	1.61113337995e-05	0.000101427191971	8.53158581715e-05
+UniRef50_D8U3W2	Metalloproteinase, extracellular matrix glycoprotein VMP28	1.37341502869e-05	2.0849033558e-05	7.1148832711e-06
+UniRef50_R7PYE0		0.00212293283083	0.000817378482542	-0.00130555434829
+UniRef50_A1WUU5	3 methyl 2 oxobutanoate hydroxymethyltransferase	4.06144398752e-05	1.67944014706e-05	-2.38200384046e-05
+UniRef50_C1DQS2	Ribonuclease 3	3.39353062611e-05	4.82134779736e-05	1.42781717125e-05
+UniRef50_D7A1Q0	Arginine ornithine antiporter	0.0106320556227	0.00311243451657	-0.00751962110613
+UniRef50_Q28QF9	Hemin import ATP binding protein HmuV	1.7776776585e-05	0.00143865902348	0.00142088224689
+UniRef50_D3D4M2		8.10436449709e-05	9.60704069354e-05	1.50267619645e-05
+UniRef50_UPI0004677544	para aminobenzoate synthase	6.69090285335e-06	1.91686560845e-05	1.24777532312e-05
+UniRef50_Q4L6X8	D tyrosyl tRNA deacylase	8.93769413644e-06	4.66497103175e-05	3.77120161811e-05
+UniRef50_K6DPK7	YhgE Pip C terminal domain containing protein	2.2396426082e-06	3.43340585083e-06	1.19376324263e-06
+UniRef50_Q8DS55		0.00356304779995	0.00187174277999	-0.00169130501996
+UniRef50_Q9X196	Spermidine putrescine import ATP binding protein PotA	0.000133268777525	4.14698577948e-05	-9.17989197302e-05
+UniRef50_A5WAX5	L pipecolate dehydrogenase	0.000126673150626	0.000160935534159	3.4262383533e-05
+UniRef50_P31060	Putative molybdenum transport ATP binding protein ModF	0.00296057007924	0.000542735327959	-0.00241783475128
+UniRef50_M9VFB1	ABC transporter	0.000317057321181	0.00454052339103	0.00422346606985
+UniRef50_I1EII6		1.00229404513e-05	4.15422886112e-05	3.15193481599e-05
+UniRef50_W0RBV9	LigA	2.50527203152e-05	0.00012992855333	0.000104875833015
+UniRef50_UPI0003677181	hypothetical protein	1.45831335383e-05	2.12041248803e-05	6.620991342e-06
+UniRef50_T3QN35	Putative GTP binding protein typA bipA	1.59713456081e-05	3.29003535741e-05	1.6929007966e-05
+UniRef50_U3TN39	Mobilization protein	1.75602193886e-05	1.81649386932e-05	6.047193046e-07
+UniRef50_Q03Q56	D ribose pyranase	0.0212957568583	0.0130851656942	-0.0082105911641
+UniRef50_L9NPU9	Pirin family protein	0.000180041012167	0.000282599717884	0.000102558705717
+UniRef50_UPI00036BABDE	hypothetical protein	5.55526745096e-05	0.00411409191349	0.00405853923898
+UniRef50_V4JV50		0.000845993888298	0.000326510424257	-0.000519483464041
+UniRef50_W4HIB0	Putative NAD specific glutamate dehydrogenase	0.000540905120035	0.000405348990859	-0.000135556129176
+UniRef50_UPI0003650DAD	hypothetical protein	9.19396119793e-06	9.96138610444e-05	9.04198998465e-05
+UniRef50_Q9SC75	L1332.3a protein	0.0012655927843	0.000248440738836	-0.00101715204546
+UniRef50_Q6MER0		4.97289288535e-05	8.28883893456e-05	3.31594604921e-05
+UniRef50_G8VKT7		0.000204046480461	0.00516520870194	0.00496116222148
+UniRef50_E1VFK2		0.000150086028104	0.00022350980524	7.3423777136e-05
+UniRef50_F8LS47		0.00105018989057	0.00242318168618	0.00137299179561
+UniRef50_Q00266	S adenosylmethionine synthase isoform type 1	4.5530303141e-05	0.000253718831903	0.000208188528762
+UniRef50_C1KWF9	Peptide methionine sulfoxide reductase MsrA	0.0111303015954	0.00412192185318	-0.00700837974222
+UniRef50_G7R477		0.000121184894193	2.79610185585e-05	-9.32238756345e-05
+UniRef50_A3C947		0.000393556200369	0.0007697220813	0.000376165880931
+UniRef50_Q8ZBZ0	Na translocating NADH quinone reductase subunit A	0.00037579237787	0.00351209789683	0.00313630551896
+UniRef50_Q5LSI0	ABC transporter, periplasmic substrate binding protein	0.00588815343838	0.00146058720011	-0.00442756623827
+UniRef50_UPI00037F3C99	hypothetical protein	9.38268419239e-05	8.13171417013e-05	-1.25097002226e-05
+UniRef50_UPI0003462712	hypothetical protein	2.91237757135e-05	3.77310421526e-06	-2.53506714982e-05
+UniRef50_A7HHJ4	LigA	5.57543945134e-05	4.68629334025e-05	-8.8914611109e-06
+UniRef50_UPI00035EDF20	hypothetical protein	2.30232792208e-05	0.00165181868161	0.00162879540239
+UniRef50_Q9PHZ7	Phosphoribosylformylglycinamidine synthase 1	1.15429536869e-05	1.13336482932e-05	-2.093053937e-07
+UniRef50_O29627	3 isopropylmalate dehydrogenase	1.09282927832e-05	4.32229783998e-05	3.22946856166e-05
+UniRef50_P22142	NADH ubiquinone oxidoreductase 49 kDa subunit, mitochondrial	1.98464728569e-05	3.75049363428e-05	1.76584634859e-05
+UniRef50_G9G2D3	Dipeptide ABC transporter, permease protein DppC	0.00832520431281	0.00268696261889	-0.00563824169392
+UniRef50_Q9RWW2		8.07168899885e-05	0.015267929336	0.015187212446
+UniRef50_Q8DUN4	FruR	0.00484905812453	0.00599930192646	0.00115024380193
+UniRef50_UPI000349D5C4	hypothetical protein	9.43720580817e-06	2.68681594889e-05	1.74309536807e-05
+UniRef50_A9M185	Histidinol phosphate aminotransferase	0.000148811822151	0.0030849853084	0.00293617348625
+UniRef50_UPI00036E2FCA	FAD containing monooxygenase EthA	8.5016224316e-06	0.00152873748969	0.00152023586726
+UniRef50_B7I5R6		0.000162280929733	0.00406827457212	0.00390599364239
+UniRef50_UPI00037EE754	hypothetical protein	0.000256004421799	7.14653329689e-05	-0.00018453908883
+UniRef50_U5MPF8	Multidrug resistance efflux pump	0.000101565736906	0.00220088728461	0.0020993215477
+UniRef50_A6LZS4	NADPH dependent FMN reductase	0.000180041012167	0.000297798358178	0.000117757346011
+UniRef50_A8AKU2	50S ribosomal protein L1	0.00316646177371	0.0014162610657	-0.00175020070801
+UniRef50_Q5GWU5		0.000175967760106	0.0019755443907	0.00179957663059
+UniRef50_P21622	Acetolactate synthase isozyme 3 small subunit	9.84545065508e-05	0.000441945105789	0.000343490599238
+UniRef50_UPI00037D5428	hypothetical protein	0.000454254030465	4.44128764005e-05	-0.000409841154065
+UniRef50_F0RQZ6	ABC type transporter, periplasmic subunit	5.10234287243e-05	0.0140183075989	0.0139672841702
+UniRef50_Q6A6N8	50S ribosomal protein L5	0.00154515758415	0.00412077663233	0.00257561904818
+UniRef50_UPI0004788E38	PTS fructose transporter subunit IIA	2.65990362573e-06	0.000341345212724	0.000338685309098
+UniRef50_Q7MN70	Phosphoribosylformylglycinamidine synthase	0.0003239118224	0.00683560783147	0.00651169600907
+UniRef50_E6UYF1	Short chain dehydrogenase reductase SDR	0.000595381900397	0.0134352023169	0.0128398204165
+UniRef50_B2I798	Acyl carrier protein	0.00127242468152	3.56011348131e-05	-0.00123682354671
+UniRef50_P36879		0.00222450590001	0.000389520816507	-0.0018349850835
+UniRef50_I4CDV3	Thioredoxin reductase	0.000467813691505	0.00186750379415	0.00139969010265
+UniRef50_A8A033		0.000595968057209	8.08473860903e-05	-0.000515120671119
+UniRef50_P72138	Imidazole glycerol phosphate synthase subunit HisH 2	0.00308396480303	0.000333691192315	-0.00275027361071
+UniRef50_UPI000404E07B	fatty acid  CoA ligase	3.68955238896e-05	9.95444015276e-06	-2.69410837368e-05
+UniRef50_UPI0004785A11	uroporphyrin III methyltransferase	1.26734823415e-05	1.95529499352e-05	6.8794675937e-06
+UniRef50_Q7U8M8	Glutamyl Q tRNA synthetase	5.31889013037e-06	8.54985044521e-06	3.23096031484e-06
+UniRef50_B9KJE5		0.000295440166627	0.000206733138648	-8.8707027979e-05
+UniRef50_C0PP08		6.44125859857e-05	1.40249072518e-05	-5.03876787339e-05
+UniRef50_N6AES7	Hyperosmolarity resistance protein Ebh	0.00785290283046	0.00400188784362	-0.00385101498684
+UniRef50_UPI000371B471	hypothetical protein	0.000340433739356	0.000134648260231	-0.000205785479125
+UniRef50_Q8XMI8	Shikimate dehydrogenase	0.000168020469813	0.000892768051351	0.000724747581538
+UniRef50_UPI000289E4F2	alcohol dehydrogenase	3.67940492347e-06	1.38918181599e-05	1.02124132364e-05
+UniRef50_UPI0004729BC1	cation diffusion facilitator family transporter	1.85225773897e-05	2.01379313855e-05	1.6153539958e-06
+UniRef50_Q5HT48	Holliday junction ATP dependent DNA helicase RuvB	1.40432115083e-05	1.16964516696e-05	-2.3467598387e-06
+UniRef50_Q4LAB0	Multicopper oxidase mco	0.00887286572868	0.00289089664303	-0.00598196908565
+UniRef50_G2TA66	Phosphate ABC transporter permease	0.000116508021255	0.00771621490842	0.00759970688716
+UniRef50_W1VWW7	Putative copper transporting P type ATPase B	0.00656060073477	0.0017316373141	-0.00482896342067
+UniRef50_B8KQR9	Transcriptional regulator	1.76346093407e-05	2.77368949737e-05	1.0102285633e-05
+UniRef50_Q7VMD0	Nucleoside diphosphate kinase	7.65704841325e-05	2.49234107625e-05	-5.164707337e-05
+UniRef50_Q0RRL9	60 kDa chaperonin 1	0.000163990211586	0.0041365009386	0.00397251072701
+UniRef50_C5J508	DNA replication protein	0.000199728036426	0.037893561556	0.0376938335196
+UniRef50_UPI000478279F	succinate semialdehyde dehydrogenase	5.02021807841e-06	1.67644449457e-05	1.17442268673e-05
+UniRef50_B1M8C4	Polar amino acid ABC transporter, inner membrane subunit	0.00474495588046	0.00306924390126	-0.0016757119792
+UniRef50_F9Z2M8	L fucose proton symporter	8.49555863898e-05	0.00359011708231	0.00350516149592
+UniRef50_UPI00037CF736	hypothetical protein	5.39868041212e-06	5.19001181886e-06	-2.0866859326e-07
+UniRef50_H0A168		0.000264909101321	0.000143941620691	-0.00012096748063
+UniRef50_D9VMY8		4.57145055376e-05	0.00342465599954	0.003378941494
+UniRef50_A0A011P7P6	Putative carbamoyl transferase, NodU family	7.34885117805e-05	0.00076722108167	0.00069373256989
+UniRef50_G9ZBL9		0.000282967258073	0.000968841557828	0.000685874299755
+UniRef50_G7U641		0.000124173022652	0.00406619148961	0.00394201846696
+UniRef50_UPI0003B5C516	iron ABC transporter permease	1.15978470049e-05	7.33025129992e-05	6.17046659943e-05
+UniRef50_B0VC22	Alpha ketoglutarate dependent taurine dioxygenase  (Sulfate starvation induced protein 3) (SSI3)	0.000257669616962	0.00259263450134	0.00233496488438
+UniRef50_UPI00046F1DB8	hypothetical protein	1.69084650167e-06	1.57605206318e-06	-1.1479443849e-07
+UniRef50_B4F197	3 isopropylmalate dehydratase small subunit	4.45238707479e-05	6.26890054657e-05	1.81651347178e-05
+UniRef50_UPI0003632A72	hypothetical protein	2.00031064591e-05	1.6144201529e-06	-1.83886863062e-05
+UniRef50_UPI00036D8769	hypothetical protein	2.07203364137e-05	8.75678557014e-06	-1.19635508436e-05
+UniRef50_C5QMF5		0.000274345686213	0.000123158846332	-0.000151186839881
+UniRef50_P76180	Inner membrane protein YdgK	0.00106235436086	0.000826424439199	-0.000235929921661
+UniRef50_A5CXF1	Acetylglutamate kinase	0.000201608148679	0.00175115336717	0.00154954521849
+UniRef50_Q5HLT6	Abortive infection family protein	0.0182775108759	0.00534404045403	-0.0129334704219
+UniRef50_Q4FUL2	Tryptophan synthase alpha chain	1.15892789525e-05	3.28964249523e-05	2.13071459998e-05
+UniRef50_X2M4D8		0.000770379569081	0.000467992588528	-0.000302386980553
+UniRef50_B0CDQ3	UPF0246 protein AM1_4276	4.65786104097e-06	8.49381739614e-06	3.83595635517e-06
+UniRef50_G8PMP6	Endoribonuclease L PSP	0.000363513067692	0.000154817983405	-0.000208695084287
+UniRef50_V6URL6	Cell envelope biogenesis protein AsmA 	1.10892538922e-05	1.25218155727e-05	1.4325616805e-06
+UniRef50_X2H351		2.84756497483e-05	2.85282649532e-05	5.26152049e-08
+UniRef50_U6KK83		4.97565011699e-05	8.49458792466e-06	-4.12619132452e-05
+UniRef50_UPI00036BEE13	hypothetical protein	4.94357235951e-05	2.2624328059e-05	-2.68113955361e-05
+UniRef50_UPI00046D6656	hypothetical protein	3.25145387086e-06	4.71171945828e-06	1.46026558742e-06
+UniRef50_Q165E2	1,4 alpha glucan branching enzyme GlgB	3.94189825019e-06	3.27944427029e-06	-6.624539799e-07
+UniRef50_UPI000315BFA8	hypothetical protein	8.67844005852e-06	8.53644743749e-06	-1.4199262103e-07
+UniRef50_UPI00035CD1FF	hypothetical protein	1.38963729088e-05	1.09064110583e-05	-2.9899618505e-06
+UniRef50_UPI000469790A	hypothetical protein	0.000239251470474	7.56707628382e-05	-0.000163580707636
+UniRef50_Q4L4C2	Fructose specific permease	0.0250728254733	0.00876659851908	-0.0163062269542
+UniRef50_UPI0003FDF28D	AMP dependent synthetase	1.16613846236e-05	2.90173312644e-05	1.73559466408e-05
+UniRef50_M1MC89	Cell wall hydrolase	0.000555126454193	0.00060847863502	5.3352180827e-05
+UniRef50_Q5LWG6		0.0100960318222	0.00151255596664	-0.00858347585556
+UniRef50_A6LRW3	Phage major capsid protein, HK97 family	0.000325718517098	0.000806020591215	0.000480302074117
+UniRef50_C5N1T2		0.00411181451639	0.000942500122969	-0.00316931439342
+UniRef50_P0ABY0	Flagellar protein FliL	0.000750682364195	0.00377000049185	0.00301931812765
+UniRef50_P50971	Thioredoxin reductase	5.32255902692e-05	1.79323577931e-05	-3.52932324761e-05
+UniRef50_W0AMQ6	Cell envelope integrity inner membrane protein TolA	0.000146501677432	0.000349400152972	0.00020289847554
+UniRef50_UPI00047BFB23	hypothetical protein	1.8061693576e-05	0.000167852905616	0.00014979121204
+UniRef50_B9KW07		0.000677512190902	0.000901115685083	0.000223603494181
+UniRef50_C0PKV4		0.000110694834275	0.00039539759228	0.000284702758005
+UniRef50_I4E8E6		6.11920058974e-05	4.36550441335e-05	-1.75369617639e-05
+UniRef50_T2BJL4	ISSoc3 transposase	0.000273540571632	0.00514361420723	0.0048700736356
+UniRef50_Q2FUW3	Accessory Sec system protein Asp1	0.0142619194855	0.00211009529852	-0.012151824187
+UniRef50_UPI0003A6ABB5	sulfonate ABC transporter ATP binding protein	6.99006745546e-05	7.56013544229e-05	5.7006798683e-06
+UniRef50_P37749	Beta 1,6 galactofuranosyltransferase WbbI	0.00245559096698	0.000919581419804	-0.00153600954718
+UniRef50_C5N0Z4	Siderophore biosynthesis protein, IucA IucC family	0.0117060052259	0.00235676076999	-0.00934924445591
+UniRef50_V5VD99		0.000252780796101	0.00625500113512	0.00600222033902
+UniRef50_F8FZJ8	Major facilitator transporter	0.000228410147281	0.000154346710037	-7.4063437244e-05
+UniRef50_Q9LPM9	Branched chain amino acid aminotransferase 6	7.53490755902e-06	2.24529737537e-05	1.49180661947e-05
+UniRef50_Q9RUA0	NADH quinone oxidoreductase subunit N	7.95824291342e-05	0.0226002540623	0.0225206716332
+UniRef50_G6Y8D4	Transposase	0.000118289126582	6.61912370599e-05	-5.20978895221e-05
+UniRef50_Q1G0V6		0.000183557556203	0.00266306269558	0.00247950513938
+UniRef50_Q1G0V5		0.00018946883016	0.000525107495247	0.000335638665087
+UniRef50_X6AX71		0.000976586125756	0.000127059397147	-0.000849526728609
+UniRef50_A1TRM3	Alkanesulfonate monooxygenase	2.46771539709e-05	3.23924530086e-05	7.7152990377e-06
+UniRef50_Q8D032	Putrescine binding periplasmic protein	0.00198591008641	0.00124354448994	-0.00074236559647
+UniRef50_UPI0003658106	hypothetical protein	3.76002895475e-05	1.15004128274e-05	-2.60998767201e-05
+UniRef50_A6L170	NADH quinone oxidoreductase subunit B	1.959131078e-05	0.00280851785292	0.00278892654214
+UniRef50_UPI000307B6D2	hypothetical protein	5.09050114678e-05	0.000100811997478	4.99069860102e-05
+UniRef50_A6LQN1		0.000136605303564	0.00219094971619	0.00205434441263
+UniRef50_UPI0003620B51	hypothetical protein	1.09453883234e-05	1.81660674291e-05	7.2206791057e-06
+UniRef50_UPI000376D6A5	hypothetical protein	0.000248144130823	4.42045452485e-05	-0.000203939585575
+UniRef50_A1KU02		0.000168520530738	0.000250977369854	8.2456839116e-05
+UniRef50_UPI0001746901	leucyl phenylalanyl tRNA  protein transferase	1.02958411347e-05	2.21408846248e-05	1.18450434901e-05
+UniRef50_P77596		0.00123419443709	0.000196163311307	-0.00103803112578
+UniRef50_UPI0002F262C3	hypothetical protein	0.000154769699674	4.70617012545e-05	-0.000107707998419
+UniRef50_A5VRG1		0.000382469253204	0.000191896255988	-0.000190572997216
+UniRef50_UPI0002BC7439	hypothetical protein	3.13429970243e-05	0.000241420379894	0.00021007738287
+UniRef50_P23189	Glutathione reductase	0.00292648310971	0.00188678545604	-0.00103969765367
+UniRef50_B2S648	Protein RecA	0.00555168569786	0.00393852958417	-0.00161315611369
+UniRef50_M4YYE1	Universal stress protein	0.0126884230222	0.000858414500682	-0.0118300085215
+UniRef50_E6MZX2		0.000145976705705	0.00357737506393	0.00343139835823
+UniRef50_B0VSH7	Outer membrane lipoproteins carrier protein	0.000209714438257	0.00114041865536	0.000930704217103
+UniRef50_Q7AX70	FhaC protein	0.000131990976721	0.00543933943015	0.00530734845343
+UniRef50_UPI0003C757EC	LuxR family transcriptional regulator	1.44228219278e-05	9.3792265116e-05	7.93694431882e-05
+UniRef50_P16701	Sulfate transport system permease protein CysT	0.00246343349573	0.00854212828943	0.0060786947937
+UniRef50_W9GLM8		0.000233978918713	0.000108833678059	-0.000125145240654
+UniRef50_D3P377	Simple sugar transport system permease protein	0.0130930815522	0.00166376860096	-0.0114293129512
+UniRef50_UPI000409B662	hypothetical protein	2.4300908401e-05	2.23178409345e-05	-1.9830674665e-06
+UniRef50_G7M4C6		0.00150283802342	0.000799117776273	-0.000703720247147
+UniRef50_F0Y5D8	Expressed protein 	0.000265308422183	0.000119966163246	-0.000145342258937
+UniRef50_F5Z794	FMN binding oxidoreductase	0.000642047765232	0.00331828055204	0.00267623278681
+UniRef50_K0RRH8		0.00130700349402	0.009434495105	0.00812749161098
+UniRef50_M4X5I0	Response regulator receiver modulated diguanylate cyclase phosphodiesterase	0.0012062793865	0.000310009632749	-0.000896269753751
+UniRef50_UPI000378EFFC	hypothetical protein	0.00029668115103	6.23719181074e-05	-0.000234309232923
+UniRef50_UPI00030E8238	hypothetical protein	1.62676695085e-05	4.38487211923e-06	-1.18827973893e-05
+UniRef50_Q92506	Estradiol 17 beta dehydrogenase 8	1.75382891136e-05	4.61871393011e-05	2.86488501875e-05
+UniRef50_P39333	Cyclic di GMP binding biofilm dispersal mediator protein	0.0037941477395	0.000877195807327	-0.00291695193217
+UniRef50_D9VNI8	Galactose oxidase 	0.000456145361199	0.00013150105369	-0.000324644307509
+UniRef50_Q8CN30	Thiazole synthase	0.0104543284896	0.00102059142058	-0.00943373706902
+UniRef50_Q71YH9	Dihydroorotase	0.022833128131	0.0050923225525	-0.0177408055785
+UniRef50_A0JUU8	tRNA pseudouridine synthase B	0.000844875575059	0.00785024750816	0.0070053719331
+UniRef50_P54383	Farnesyl diphosphate synthase	1.86914629752e-05	0.000547863115053	0.000529171652078
+UniRef50_Q6GJ46	Putative antiporter subunit mnhB2	0.00891400485779	0.00901556091592	0.00010155605813
+UniRef50_A6LW15	ROK family protein	0.000322526474055	0.00133353847767	0.00101101200361
+UniRef50_Q9ZHC7	Silver exporting P type ATPase	4.04979096332e-06	1.47177746395e-05	1.06679836762e-05
+UniRef50_N4BUJ9	ATP dependent helicase HrpA	0.00133894560082	0.000638484455681	-0.000700461145139
+UniRef50_UPI000346DC0F	hypothetical protein	1.63956734181e-05	1.35516514113e-05	-2.8440220068e-06
+UniRef50_X2HS12	Multidrug transporter	6.9178861735e-05	0.0034652787341	0.00339609987237
+UniRef50_Q9NQW7	Xaa Pro aminopeptidase 1	3.64542599782e-06	8.06819990845e-06	4.42277391063e-06
+UniRef50_W5XIY9		0.000417712798123	7.2446503745e-05	-0.000345266294378
+UniRef50_UPI0003785425	hypothetical protein	8.06664251248e-05	4.24296270106e-05	-3.82367981142e-05
+UniRef50_K7T5I3		2.81963860326e-05	2.55253018819e-05	-2.6710841507e-06
+UniRef50_G7U9V5		1.22695688869e-05	0.00128398567476	0.00127171610587
+UniRef50_UPI00047018EB	hypothetical protein	0.000460398289766	0.000196912304698	-0.000263485985068
+UniRef50_I3Y6A0	CRISPR associated helicase, Cas3 family	5.15929001838e-05	1.88104348598e-05	-3.2782465324e-05
+UniRef50_C5TD27	Xanthine dehydrogenase accessory protein XdhC 	6.3056035085e-06	3.67076114321e-05	3.04020079236e-05
+UniRef50_Q0IDE8	Bifunctional purine biosynthesis protein PurH	3.56121505315e-06	5.68540291034e-06	2.12418785719e-06
+UniRef50_P96110	Glutamate dehydrogenase	8.08573526118e-06	0.000669483390311	0.00066139765505
+UniRef50_A3PRG7	Extradiol ring cleavage dioxygenase, class III enzyme, subunit B	0.00324559664414	0.00251461018982	-0.00073098645432
+UniRef50_UPI0001E8E9B9	PTS system, cellobiose specific IIC component, partial	3.50174448055e-05	4.67814083438e-05	1.17639635383e-05
+UniRef50_Q8KY51	Protein phosphatase PhpP	0.00882582267538	0.00298640368895	-0.00583941898643
+UniRef50_L9CVM1	CO dehydrogenase flavoC terminal domain protein	0.000150458910931	0.000286866145984	0.000136407235053
+UniRef50_UPI00047124E8	hypothetical protein	6.52502705794e-06	5.13620564083e-06	-1.38882141711e-06
+UniRef50_Q838L1	Rhamnulose 1 phosphate aldolase	1.02966690407e-05	0.00122386949404	0.001213572825
+UniRef50_P45541	Protein FrlC	0.00420105120066	0.00048412574623	-0.00371692545443
+UniRef50_I2FAM9	Serine protease Do	8.93810549727e-05	0.00461845774432	0.00452907668935
+UniRef50_N6VEV1		0.000254157238898	0.000526634170831	0.000272476931933
+UniRef50_B8EMC7		1.16806089355e-06	2.46030326665e-05	2.34349717729e-05
+UniRef50_Q08194	Cysteine rich extensin like protein 1	0.000120328251754	4.15421666867e-05	-7.87860850673e-05
+UniRef50_B7UI87	Protein FixA	0.00180068068382	0.00023688505764	-0.00156379562618
+UniRef50_T1Y9S4	Phosphoesterase family protein	0.00824980101019	0.00186744007426	-0.00638236093593
+UniRef50_A9AQ58	Aldehyde Dehydrogenase	0.000291894248533	0.00750247704093	0.0072105827924
+UniRef50_R7RGB1		0.000410562620543	4.62700554433e-05	-0.0003642925651
+UniRef50_D5AR26	Histidine ammonia lyase	0.00643388321354	0.00157195134562	-0.00486193186792
+UniRef50_M9VD49	Sua5 YciO YrdC YwlC family protein	0.00039130817473	0.00581404264265	0.00542273446792
+UniRef50_M1MLW9		0.000541182709978	0.00102718853981	0.000486005829832
+UniRef50_UPI000475FB40	hypothetical protein, partial	1.8981962984e-05	4.86133478904e-05	2.96313849064e-05
+UniRef50_D7AAI4	Peptidyl prolyl cis trans isomerase	0.00223649737417	0.000608900423076	-0.00162759695109
+UniRef50_P17583	Cyanate transport protein CynX	0.00265330720421	0.00439361592331	0.0017403087191
+UniRef50_A5KZA1		0.000209366426369	0.000473633001244	0.000264266574875
+UniRef50_W0H3E7		0.000248534016838	0.000158391115868	-9.014290097e-05
+UniRef50_O86507	Urease subunit gamma beta	8.56178580122e-06	0.000124965916391	0.00011640413059
+UniRef50_Q01993	Riboflavin synthase	2.74857355682e-05	0.0122935730735	0.0122660873379
+UniRef50_A9QYJ6	Tellurium resistance protein	0.000584487712967	0.0694667828496	0.0688822951366
+UniRef50_Q53726	Heptaprenylglyceryl phosphate synthase	0.0151622029008	0.00350863017196	-0.0116535727288
+UniRef50_U5MQB0	DNA polymerase III epsilon subunit like 3 5 exonuclease	0.000295569823245	0.00141261043477	0.00111704061153
+UniRef50_P75820	N acetylmuramoyl L alanine amidase AmiD	0.0030064394004	0.000949081265654	-0.00205735813475
+UniRef50_UPI00036D10D1	hypothetical protein	0.00121646092353	0.000642762617483	-0.000573698306047
+UniRef50_A0B343	Binding protein dependent transport systems inner membrane component	0.00845056234471	0.00393320019857	-0.00451736214614
+UniRef50_Q1GCC9	Flagellar biosynthetic protein flhB	0.00796323140706	0.00194880883204	-0.00601442257502
+UniRef50_Q9ZH77	Malate synthase	1.39148058592e-05	2.13304655663e-05	7.4156597071e-06
+UniRef50_UPI00046CFBE6	acyl CoA dehydrogenase	6.82888352512e-06	0.000164064836215	0.00015723595269
+UniRef50_F0KN46	Threonine dehydratase catabolic	0.000103232266783	0.00560520249971	0.00550197023293
+UniRef50_L0DM84		1.73454969327e-05	7.47568788217e-06	-9.86980905053e-06
+UniRef50_O84823	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.25746442527e-05	1.84711007095e-05	5.8964564568e-06
+UniRef50_A4WVF0	Glucose sorbosone dehydrogenase	0.007971401732	0.000770408156694	-0.00720099357531
+UniRef50_UPI0003B3270D	iron ABC transporter ATP binding protein	1.06714927643e-05	0.000419865912883	0.000409194420119
+UniRef50_Q9K9X4	Transposase related protein 	0.000247802618498	0.00186590295227	0.00161810033377
+UniRef50_UPI00037D8C4A	hypothetical protein	4.24497101115e-06	7.67790204472e-06	3.43293103357e-06
+UniRef50_F8JB05		1.2834847421e-05	1.82300508528e-05	5.3952034318e-06
+UniRef50_UPI000377A6D2	cold shock protein	1.12222600386e-05	6.10776688798e-06	-5.11449315062e-06
+UniRef50_UPI00047DCFEE	MarR family transcriptional regulator	1.26560960088e-05	4.13777755241e-05	2.87216795153e-05
+UniRef50_UPI00036E9D0F	hypothetical protein	0.000128020255547	8.69219225664e-05	-4.10983329806e-05
+UniRef50_Q2FG29	Alanine dehydrogenase 2	0.0269328599985	0.035107418586	0.0081745585875
+UniRef50_Q6A5S0	Probable potassium transport system protein kup	8.32077859384e-05	0.0065296891444	0.00644648135846
+UniRef50_R5T303		0.000180636541122	4.33289887985e-05	-0.000137307552323
+UniRef50_A9AQT5		0.0068770406176	0.00050338074749	-0.00637365987011
+UniRef50_L1NZZ4		0.000469547999705	0.000548119772464	7.8571772759e-05
+UniRef50_Z6HHY0		0.000106434019418	8.74985770602e-05	-1.89354423578e-05
+UniRef50_UPI00047D45C1	cysteine desulfurase	2.21798720113e-05	0.000101844412104	7.96645400927e-05
+UniRef50_A2XBC4		0.00228473895238	0.000219838738361	-0.00206490021402
+UniRef50_UPI0004651636	hypothetical protein	0.000110827995103	4.87007501649e-05	-6.21272449381e-05
+UniRef50_J7R4R4	Pleiotrophic effects on 3 hydrogenase isozymes	0.00280208829306	0.000682379141098	-0.00211970915196
+UniRef50_F3WHR7	Starvation sensing protein rspA	0.00263712159185	0.000525067199596	-0.00211205439225
+UniRef50_A0A023RWV4	Histidine kinase	0.00019667122319	0.00513423053322	0.00493755931003
+UniRef50_C1N829	Predicted protein	6.33792468556e-06	0.000441552582737	0.000435214658051
+UniRef50_P23921	Ribonucleoside diphosphate reductase large subunit	2.93939043549e-06	0.000236614229776	0.000233674839341
+UniRef50_P35483	Alkaline phosphatase H	0.000967308257962	0.000557068713933	-0.000410239544029
+UniRef50_A0RU57		8.32635333901e-06	7.3868188941e-05	6.5541835602e-05
+UniRef50_Q9I406	Gamma glutamyltranspeptidase	0.000352845315482	0.000304059782712	-4.878553277e-05
+UniRef50_R9SL02	Heavy metal translocating P type ATPase	0.0033916913342	0.000761426041618	-0.00263026529258
+UniRef50_UPI0003B6145B	ABC transporter	3.53472061581e-05	7.3161796178e-05	3.78145900199e-05
+UniRef50_H5IZ71		0.000854763273451	0.000902444607244	4.7681333793e-05
+UniRef50_F9YXP6		0.000472962942534	0.0041037498896	0.00363078694707
+UniRef50_UPI00041FBFE4	transcriptional regulator	2.70723079266e-05	3.21268342669e-05	5.0545263403e-06
+UniRef50_UPI00035E0033	hypothetical protein	2.82478914101e-05	2.20990300734e-05	-6.1488613367e-06
+UniRef50_I6T5B9	Transcriptional regulator	0.0063447190306	0.00284113914307	-0.00350357988753
+UniRef50_UPI000370C159	hypothetical protein	0.000190389779155	1.13571134971e-05	-0.000179032665658
+UniRef50_A9VIS8	UPF0758 protein BcerKBAB4_4299	0.0143862482617	0.00679762790384	-0.00758862035786
+UniRef50_M9VBP8		0.0001909709893	0.00309564666142	0.00290467567212
+UniRef50_A1A2G3	LexA repressor	4.38984494777e-05	1.08219407825e-05	-3.30765086952e-05
+UniRef50_UPI00037C10BF	hypothetical protein	6.17365736436e-05	5.44869762894e-06	-5.62878760147e-05
+UniRef50_D9RNU6	Ferrichrome ABC transporter subunit	0.00983453771375	0.00257531841779	-0.00725921929596
+UniRef50_D5CRQ8	TRAP dicarboxylate transporter, DctP subunit	0.0110907431185	0.00179070892151	-0.00930003419699
+UniRef50_UPI00046CD945	hypothetical protein	1.56943776114e-05	4.57678010027e-05	3.00734233913e-05
+UniRef50_Q58070	Dihydroorotate dehydrogenase B ), catalytic subunit	0.00149369079139	0.000291430959074	-0.00120225983232
+UniRef50_Q9RSA9		0.000184740288181	0.030155549551	0.0299708092628
+UniRef50_V7ZGG5	OmpW family outer membrane protein	0.0199386561703	0.0010242197868	-0.0189144363835
+UniRef50_UPI00029B3E2F	replication factor A	1.03547792301e-05	4.10329426536e-05	3.06781634235e-05
+UniRef50_D7BHE9	Transcriptional activator domain protein	5.29331185719e-06	2.13967185638e-06	-3.15364000081e-06
+UniRef50_D4HCR0		0.00026185134639	0.00560652877988	0.00534467743349
+UniRef50_Q5HNV7	ComE operon protein 1, putative	0.00719814745666	0.000871590521789	-0.00632655693487
+UniRef50_P46843	Bifunctional thioredoxin reductase thioredoxin	0.000115315227933	0.000182375796055	6.7060568122e-05
+UniRef50_R4LUX8		7.18453675114e-06	1.43733730672e-05	7.18883631606e-06
+UniRef50_S9R328	Xanthine and CO dehydrogenase maturation factor, XdhC CoxF family	1.179493136e-05	1.83485201199e-05	6.5535887599e-06
+UniRef50_R6BD47		4.01193421282e-05	3.15023159993e-05	-8.6170261289e-06
+UniRef50_O28142	Phosphoserine phosphatase	4.81532526702e-06	9.37944470692e-06	4.5641194399e-06
+UniRef50_UPI00046385E1	multidrug ABC transporter	7.29140141895e-06	6.4394726375e-05	5.71033249561e-05
+UniRef50_U2SYT7		1.5690564263e-05	2.88100012715e-05	1.31194370085e-05
+UniRef50_L0FSR8	TolC family type I secretion outer membrane protein	0.000726389583344	0.000294842672612	-0.000431546910732
+UniRef50_K7R3S2		6.46406434626e-05	1.44259095546e-05	-5.0214733908e-05
+UniRef50_S3P9S1		0.000151907083638	0.00682094276177	0.00666903567813
+UniRef50_I7DPT5		0.00924712400842	0.00184952450445	-0.00739759950397
+UniRef50_UPI0003641916	hypothetical protein	3.17732199461e-06	4.98579441679e-06	1.80847242218e-06
+UniRef50_Q8CR25		0.0029137438575	0.00142490690233	-0.00148883695517
+UniRef50_J6LH83	PE PGRS family protein	2.08491533149e-05	2.03255288594e-05	-5.236244555e-07
+UniRef50_H3VJS7		0.00781287229804	0.00229869888127	-0.00551417341677
+UniRef50_A6M1M4		0.000238915182824	0.000876730167469	0.000637814984645
+UniRef50_G0AAP1	Sulfate adenylyltransferase subunit 1	0.00013291760171	0.00550238213934	0.00536946453763
+UniRef50_UPI00026276D2	inner membrane translocator	0.000437298535183	6.89946108793e-05	-0.000368303924304
+UniRef50_E1Z5M0		4.7248663547e-05	0.000134627942383	8.7379278836e-05
+UniRef50_Q04PF0	Glutamate  tRNA ligase	3.79225665873e-06	4.50381795668e-06	7.1156129795e-07
+UniRef50_UPI0003F4A008	hypothetical protein TREMEDRAFT_32941	4.28269234913e-05	0.000164444627915	0.000121617704424
+UniRef50_UPI00046874E6	hypothetical protein	4.11671780792e-05	8.29003363121e-06	-3.2877144448e-05
+UniRef50_UPI0003815981	hypothetical protein	1.04319004556e-05	0.000143914612839	0.000133482712383
+UniRef50_Q899C3	Isoleucine  tRNA ligase	0.000277875881126	0.00126095067952	0.000983074798394
+UniRef50_UPI0003B62A8A	hypothetical protein	0.000208046378055	7.18304745803e-05	-0.000136215903475
+UniRef50_A8FNY3	Enolase	7.77379841196e-06	0.000102907234683	9.5133436271e-05
+UniRef50_UPI000468DB65	leucyl tRNA synthetase	0.00763843647986	0.00266581924649	-0.00497261723337
+UniRef50_B2TMH9	Autolytic lysozyme	0.000746606065437	0.00514698973474	0.0044003836693
+UniRef50_UPI00041375E2	cation	0.00524513749207	0.00144328094373	-0.00380185654834
+UniRef50_W4LU01		6.93622058191e-05	7.46572567789e-05	5.2950509598e-06
+UniRef50_G5P4U0	Potassium efflux system KefA	0.000524777478615	0.000229660863177	-0.000295116615438
+UniRef50_UPI00042B93D3	Ribosomal protein S9 isoform 1	3.43978094443e-05	7.36707639765e-05	3.92729545322e-05
+UniRef50_Q9RRE8		0.000309414744966	0.0252345060504	0.0249250913054
+UniRef50_I1E9S6		8.60398934553e-05	1.30538713199e-05	-7.29860221354e-05
+UniRef50_UPI0002FC4FA4	hypothetical protein	3.91877773919e-06	0.000300965304628	0.000297046526889
+UniRef50_P77389	Inner membrane transport protein YdhP	0.00476608150304	0.0100764273687	0.00531034586566
+UniRef50_UPI000475B66E	phosphoenolpyruvate synthase	1.84126723554e-06	0.000196088747194	0.000194247479958
+UniRef50_B8IW50		7.74415896331e-06	7.21415818993e-06	-5.3000077338e-07
+UniRef50_UPI0004717EC9	hypothetical protein, partial	1.21722485183e-05	2.68377987758e-05	1.46655502575e-05
+UniRef50_S6AW69		0.000151342128602	0.000121598484056	-2.9743644546e-05
+UniRef50_Q1J212	Peptide chain release factor 2	0.000522212461196	0.0475139109057	0.0469916984445
+UniRef50_D2V1D7		5.85442293337e-05	2.54704061801e-05	-3.30738231536e-05
+UniRef50_Q92HI8	Pyruvate, phosphate dikinase	5.24655796765e-06	1.36269826333e-05	8.38042466565e-06
+UniRef50_T2E942	Helix turn helix domain protein	0.000416873661651	0.000199089913611	-0.00021778374804
+UniRef50_UPI0003B650F3	hypothetical protein	3.77435423094e-06	2.99446742807e-05	2.61703200498e-05
+UniRef50_A6M324		0.000425371116535	0.0014582154319	0.00103284431536
+UniRef50_T3G5Y0	Ferrous iron transport protein B	0.000363640057678	0.00132673064976	0.000963090592082
+UniRef50_Q15P31	2 C methyl D erythritol 4 phosphate cytidylyltransferase	5.37532063541e-06	1.08712708747e-05	5.49595023929e-06
+UniRef50_Q3IY12	Thiamine import ATP binding protein ThiQ	8.71396073511e-06	2.34326223789e-05	1.47186616438e-05
+UniRef50_I0E580		0.000186753458811	0.0032162681675	0.00302951470869
+UniRef50_UPI000478031E	50S ribosomal protein L3	1.17381648547e-05	0.000382009431765	0.00037027126691
+UniRef50_C6SQB8		0.00275762954035	0.000920720011175	-0.00183690952918
+UniRef50_UPI0002F01DF0	hypothetical protein	8.04120350331e-06	3.1933107347e-05	2.38919038437e-05
+UniRef50_B5F623	Uronate isomerase	7.42852274764e-06	0.0051445997467	0.00513717122395
+UniRef50_G3ECR2	CRISPR associated endonuclease Cas1	0.00604804628175	0.00311258378819	-0.00293546249356
+UniRef50_A0Q0N0	5 methyltetrahydrofolate  homocysteine methyltransferase, putative	0.000209702096469	0.00308217956529	0.00287247746882
+UniRef50_W1VEW5		5.51818055216e-05	0.0001810137117	0.000125831906178
+UniRef50_P0AC06	Flagellar biosynthetic protein FliP	0.00788631526036	0.00296154101091	-0.00492477424945
+UniRef50_V5PI53	Glyoxalase family protein	0.000172374381514	7.07011469337e-05	-0.00010167323458
+UniRef50_D8JGK5	RDD family protein	0.000152007780746	0.0103696193525	0.0102176115718
+UniRef50_B9ECE2		0.00041048444449	5.20162021235e-05	-0.000358468242366
+UniRef50_Q9ZMS7	Protein RecA	0.000738798464809	0.00400306406329	0.00326426559848
+UniRef50_M9VGZ5		0.000272718039927	0.00281490906634	0.00254219102641
+UniRef50_A3PKV8	Drug resistance transporter, EmrB QacA subfamily	0.000261727535746	0.000402703752633	0.000140976216887
+UniRef50_I9V7J9	Outer membrane protein HopL	3.20537210985e-05	0.00418938497901	0.00415733125791
+UniRef50_S4MVA0		4.56681997051e-05	1.01133044218e-05	-3.55548952833e-05
+UniRef50_E4BBY5		0.00020367949039	0.000322750497486	0.000119071007096
+UniRef50_W9GWC0	Rrf2 family transcriptional regulator	2.96603612052e-05	4.65347506707e-05	1.68743894655e-05
+UniRef50_Q06129	Anthranilate synthase component 2	0.000579524916815	0.00356317779097	0.00298365287415
+UniRef50_UPI00036E37BC	hypothetical protein	8.32017367443e-06	8.57557590806e-05	7.74355854062e-05
+UniRef50_W5E0V3		4.24582565453e-06	3.19105500648e-05	2.76647244103e-05
+UniRef50_B1IBC6	Fibronectin fibrinogen binding protein	0.000540837646435	0.00225774426222	0.00171690661579
+UniRef50_Z0CP45		0.00134563954941	0.000245415544476	-0.00110022400493
+UniRef50_T2LAG0		0.000123626698192	0.000239194189197	0.000115567491005
+UniRef50_UPI0003C1315E		1.03633091753e-05	6.34460281159e-06	-4.01870636371e-06
+UniRef50_P10518	Delta aminolevulinic acid dehydratase	1.6225866125e-05	2.48531422668e-05	8.6272761418e-06
+UniRef50_UPI000367CE13	hypothetical protein	5.107248515e-06	6.01323641111e-05	5.50251155961e-05
+UniRef50_P39344	Gnt II system L idonate transporter	0.00273277837594	0.000821525301176	-0.00191125307476
+UniRef50_B8C850		1.6390173704e-05	3.81970678606e-06	-1.25704669179e-05
+UniRef50_W1G461	DNA replication and repair protein RecF	0.00196550738776	0.00026134221699	-0.00170416517077
+UniRef50_Q6F2Y7	Chaperone protein ClpB1	0.00462270879769	0.0461674086875	0.0415446998898
+UniRef50_Y5GWB2		0.00174480820116	7.44695276172e-05	-0.00167033867354
+UniRef50_M9RHC7	ABC transporter permease protein	0.00626284837319	0.00144074977298	-0.00482209860021
+UniRef50_UPI0003B304AC	phosphate ABC transporter ATP binding protein	9.51050573549e-06	2.15429035754e-05	1.20323978399e-05
+UniRef50_G9NBA4		3.20632121494e-05	1.52155689239e-05	-1.68476432255e-05
+UniRef50_UPI000237A937	two component hybrid sensor and regulator	1.18802098954e-05	7.62401606031e-06	-4.25619383509e-06
+UniRef50_Q9FE64	Elongation factor G, mitochondrial	1.1134442555e-05	9.25392944305e-06	-1.88051311195e-06
+UniRef50_Q94JQ3	Serine hydroxymethyltransferase 3, chloroplastic	8.5698984447e-05	4.77148889033e-05	-3.79840955437e-05
+UniRef50_A6LTX4		0.00014173441384	0.000499080931792	0.000357346517952
+UniRef50_Q08Q97		3.19454152306e-05	0.000127109055325	9.51636400944e-05
+UniRef50_O31703	Molybdopterin molybdenumtransferase	0.0207463389576	0.00695586478596	-0.0137904741716
+UniRef50_V9GHA4	Magnesium and cobalt efflux protein CorC	2.08470993418e-05	0.00050578786233	0.000484940762988
+UniRef50_Q5HMD2	HD domain protein	0.00385699326821	0.00536481491767	0.00150782164946
+UniRef50_UPI00036F8E58	hypothetical protein	0.000131532710347	4.68161794405e-05	-8.47165309065e-05
+UniRef50_UPI000365B7D1	30S ribosomal protein S4, partial	4.22154676248e-05	0.000173079630694	0.000130864163069
+UniRef50_G0XAE5	Type IV conjugative transfer system protein TraN	4.9063336434e-06	3.31955929418e-06	-1.58677434922e-06
+UniRef50_Q49XZ6	Superoxide dismutase [Mn Fe]	0.0100681801021	0.00232986667241	-0.00773831342969
+UniRef50_A1TT20	Cytochrome c oxidase	0.00136656929874	0.000215054293331	-0.00115151500541
+UniRef50_D3VAJ4	Complete genome segment 14 17	4.13987943052e-05	0.000218658825764	0.000177260031459
+UniRef50_D5V1H1	Type VI secretion protein, VC_A0114 family	3.59566170659e-06	6.75683525862e-06	3.16117355203e-06
+UniRef50_UPI00037B97B7	hypothetical protein	8.84068114742e-05	5.51423137493e-05	-3.32644977249e-05
+UniRef50_A0A014PLF9		5.92909930107e-05	0.00148416884679	0.00142487785378
+UniRef50_B2U7R1	NADH quinone oxidoreductase subunit A	1.51498658085e-05	0.000180158061911	0.000165008196102
+UniRef50_V5VFY5	Transport protein 	0.000699804344762	0.00634389698476	0.00564409264
+UniRef50_N6UGZ5		6.06175308988e-06	1.8951735345e-05	1.28899822551e-05
+UniRef50_Q6GI14	Amidophosphoribosyltransferase	0.0219170130705	0.00924369691412	-0.0126733161564
+UniRef50_R7PYG7		0.00284590018066	0.00196992145052	-0.00087597873014
+UniRef50_Q9ZJ81	NAD kinase	0.000253914342281	0.00544052054655	0.00518660620427
+UniRef50_UPI0003B77512	2,5 diketo D gluconic acid reductase	1.23242435726e-05	8.02953834419e-05	6.79711398693e-05
+UniRef50_A4VV94		0.000367681157978	0.00205437707963	0.00168669592165
+UniRef50_UPI000371E16C	hypothetical protein	7.86283867833e-06	1.15286877482e-05	3.66584906987e-06
+UniRef50_Q15QK1	S adenosylmethionine synthase	4.99801043612e-05	0.000451885849153	0.000401905744792
+UniRef50_Q8DWE6	Constitutive fructose permease	0.00797593717048	0.000392013325476	-0.007583923845
+UniRef50_B1YK83	DNA polymerase IV	4.03216657662e-06	8.9660656987e-06	4.93389912208e-06
+UniRef50_UPI00040FF8E8	hypothetical protein	4.5261071814e-05	0.000102528447987	5.7267376173e-05
+UniRef50_Q4L449	Putative antiporter subunit mnhG2	0.0072777920158	0.00577091843037	-0.00150687358543
+UniRef50_UPI00003799C3	hypothetical protein	0.00741147326252	0.00137434836273	-0.00603712489979
+UniRef50_A1BG26	Acetylglutamate kinase	9.35067243003e-06	5.65681464676e-06	-3.69385778327e-06
+UniRef50_UPI000049D95F	hypothetical protein SPOA0411	0.000241555302613	0.000216286213806	-2.5269088807e-05
+UniRef50_Q8DUE1	Ribonuclease HII	0.00574401320404	0.00225460120716	-0.00348941199688
+UniRef50_S6C0Y4	Citrate transporter protein	0.00494139679158	0.00205409685457	-0.00288729993701
+UniRef50_UPI00037DA3B2	hypothetical protein	2.35912782925e-05	2.35002673458e-05	-9.10109467e-08
+UniRef50_P73241	Probable copper transporting ATPase PacS	8.07813878977e-06	1.08982552142e-05	2.82011642443e-06
+UniRef50_Q6G960	Ribonuclease Z	0.0173046360132	0.00768407166095	-0.00962056435225
+UniRef50_G4B7N4		3.51644692866e-05	0.000158508526903	0.000123344057616
+UniRef50_B9KWM7		0.00238499322482	0.000387253328522	-0.0019977398963
+UniRef50_R7YC06	Cytosine deaminase	1.14863571635e-05	0.000124431196007	0.000112944838844
+UniRef50_A3PJF3	Binding protein dependent transport systems inner membrane component	0.00255526062517	0.000715640530313	-0.00183962009486
+UniRef50_UPI00047E1F76	hypothetical protein	1.92925408497e-05	4.16244687592e-05	2.23319279095e-05
+UniRef50_C1FNK7	3 oxoacyl [acyl carrier protein] synthase 3	0.000133992589439	1.57875633554e-05	-0.000118205026084
+UniRef50_UPI000376CB6F	hypothetical protein	9.24467205415e-06	2.18438008864e-05	1.25991288322e-05
+UniRef50_A6QAV3	Ni Fe hydrogenase, large subunit	8.42602653634e-05	0.00268443002869	0.00260016976333
+UniRef50_X1DLQ6	Marine sediment metagenome DNA, contig	0.000197553994276	4.72158618194e-05	-0.000150338132457
+UniRef50_P12054	Protein rlx	0.000646506702556	0.000136232399105	-0.000510274303451
+UniRef50_E7C7F3		3.93983570562e-05	2.34833252863e-05	-1.59150317699e-05
+UniRef50_B7HHF8	3 isopropylmalate dehydratase small subunit	0.0143862411204	0.0113115955951	-0.0030746455253
+UniRef50_P39277	Inner membrane protein YjeH	0.00285046034572	0.000977585425713	-0.00187287492001
+UniRef50_M0NFH7		0.000411964339439	0.000268982449658	-0.000142981889781
+UniRef50_A0A038J3C7		0.000163995289222	7.67322200082e-05	-8.72630692138e-05
+UniRef50_Q65JD4		5.8574639805e-05	0.000309772767695	0.00025119812789
+UniRef50_Q5RKZ7-2	Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1	4.10905180925e-06	1.48288518579e-05	1.07198000486e-05
+UniRef50_F5X0E4	Major facilitator superfamily protein	0.0040182457739	0.000519479799796	-0.0034987659741
+UniRef50_D3FUC6	[Ni Fe] hydrogenase, small subunit	0.00062334806342	0.00287833180933	0.00225498374591
+UniRef50_R6MP39		3.81623446305e-06	3.65002048045e-05	3.26839703414e-05
+UniRef50_UPI000056DCC0	L serine dehydratase 1, truncated, partial	2.33622974773e-05	5.95756239686e-05	3.62133264913e-05
+UniRef50_Q28VI8	Lytic murein transglycosylase	0.0014966798453	0.000338570115544	-0.00115810972976
+UniRef50_A5F5D8	Cytosol aminopeptidase	0.0044487187437	0.000939216501975	-0.00350950224173
+UniRef50_C5MZL4		0.0167077574453	0.00387404614283	-0.0128337113025
+UniRef50_UPI00034529EA	chromate transporter	2.60427375488e-05	0.000140738699848	0.000114695962299
+UniRef50_Q49X30	Ribosome biogenesis GTPase A	0.00599491138894	0.00222816050473	-0.00376675088421
+UniRef50_UPI000225AC87	reverse transcriptase	4.32196796076e-06	1.02104599086e-05	5.88849194784e-06
+UniRef50_Q28V25	Holo [acyl carrier protein] synthase	3.30069552253e-05	0.000108950846025	7.59438907997e-05
+UniRef50_P45423		0.00426110090082	0.00227332936877	-0.00198777153205
+UniRef50_P0DM86	Clamp binding protein CrfC	0.00381476418938	0.000573461853341	-0.00324130233604
+UniRef50_P45421		0.00264557867288	0.00644598433305	0.00380040566017
+UniRef50_P45420		0.00192550147241	0.00141202944665	-0.00051347202576
+UniRef50_UPI0003461C99	hypothetical protein	4.52495170848e-06	0.000351389023307	0.000346864071599
+UniRef50_Q6FA27		0.000760038903732	0.00309830184933	0.0023382629456
+UniRef50_UPI0004759495	membrane protein	7.31557759592e-06	1.90220907522e-05	1.17065131563e-05
+UniRef50_UPI0002FC887C	hypothetical protein	4.35669775135e-06	2.96483165427e-06	-1.39186609708e-06
+UniRef50_C3ATQ4	Glycosyltransferase involved in cell wall biogenesis	0.000906228074225	0.000519385625036	-0.000386842449189
+UniRef50_B5I3Q1	Predicted protein	1.15598881123e-05	0.000115917810826	0.000104357922714
+UniRef50_C9TPX2	Pirin family protein	4.87076279894e-06	1.32124614051e-05	8.34169860616e-06
+UniRef50_X1YG35		5.2866770804e-06	1.38339065776e-06	-3.90328642264e-06
+UniRef50_P21338	Ribonuclease I	0.0019279223908	0.00165032781271	-0.00027759457809
+UniRef50_Q00593	Alcohol dehydrogenase [acceptor]	5.96208900771e-05	6.4106662388e-05	4.4857723109e-06
+UniRef50_UPI0003627344	hypothetical protein	0.000260080386324	0.000109582948681	-0.000150497437643
+UniRef50_UPI0003B5CBDB	MULTISPECIES	5.15241744015e-05	0.000117133485173	6.56093107715e-05
+UniRef50_U0DBB7	Flagellar transcriptional activator flhC	0.000488128433862	0.00385195702429	0.00336382859043
+UniRef50_D5WDT4		0.00144232101584	0.00110605035407	-0.00033627066177
+UniRef50_UPI0003B41656	hypothetical protein, partial	3.21010482948e-05	3.67301323194e-05	4.6290840246e-06
+UniRef50_Q9KWJ8	Putative acetyltransferase	0.00840620994066	0.000423899576834	-0.00798231036383
+UniRef50_UPI0003B56B90	DNA mismatch repair protein MutS	2.4647654562e-06	9.8434269709e-06	7.3786615147e-06
+UniRef50_M4S5A3		0.000117888270028	4.63055807142e-05	-7.15826893138e-05
+UniRef50_G7SNL0	PfkB family carbohydrate kinase	0.000162011154012	0.00221282796356	0.00205081680955
+UniRef50_UPI00037CCDB1	hypothetical protein	1.29467247214e-05	3.34314783826e-05	2.04847536612e-05
+UniRef50_Q74RF8	Maltose transport system permease protein MalG	0.00136575488815	0.000437593333014	-0.000928161555136
+UniRef50_O31660	Putative membrane bound acyltransferase YkrP	8.27898860164e-06	9.58681120098e-06	1.30782259934e-06
+UniRef50_Q1J0Y6	DNA topoisomerase 	0.000399079970787	0.0466147665679	0.0462156865971
+UniRef50_UPI00036A1EC1	hypothetical protein	4.28174133245e-06	6.3277941868e-05	5.89962005356e-05
+UniRef50_UPI000465DC9F	hypothetical protein	2.10184779657e-05	3.39873337444e-05	1.29688557787e-05
+UniRef50_D2J7W9	Replication initiation protein	0.00173443353321	0.000507070570232	-0.00122736296298
+UniRef50_P21175	Leucine , isoleucine , valine , threonine , and alanine binding protein	0.00166608576175	0.000775995166179	-0.000890090595571
+UniRef50_P44591	Protein translocase subunit SecD	0.00324027811373	0.000715217541439	-0.00252506057229
+UniRef50_U3STI1	GntR family transcriptional regulator	0.00224441723539	0.00207754015034	-0.00016687708505
+UniRef50_B7VAJ2		0.000845117885494	0.0017897982133	0.000944680327806
+UniRef50_UPI0002F13DE3	hypothetical protein	0.000178044829461	0.000269720014025	9.1675184564e-05
+UniRef50_D4KNP6	Arginine decarboxylase	0.000456528343263	0.00321511711768	0.00275858877442
+UniRef50_I4XMD7		0.0014444746131	0.0014798106935	3.53360804e-05
+UniRef50_M8HEB4	Bacteriophage replication gene A protein  (Fragment)	0.00061921216203	0.00644626569679	0.00582705353476
+UniRef50_P24193	Hydrogenase isoenzymes formation protein HypE	0.00401322987455	0.000273864023365	-0.00373936585119
+UniRef50_UPI0004093BB4	AsnC family transcriptional regulator	6.20507623063e-05	5.79694823638e-05	-4.0812799425e-06
+UniRef50_UPI00036A6233	hypothetical protein	4.79809914312e-06	1.20738801511e-05	7.27578100798e-06
+UniRef50_G3XZQ5		3.35347678257e-06	0.00026558515391	0.000262231677127
+UniRef50_A0RG68		0.000555544956797	0.00155185937777	0.000996314420973
+UniRef50_Q5M378		0.00609339214724	0.0075248590083	0.00143146686106
+UniRef50_D8LYQ1	Singapore isolate B  whole genome shotgun sequence assembly, scaffold_1	5.63809521599e-05	0.00113898802205	0.00108260706989
+UniRef50_UPI000424B474	DEAD DEAH box helicase	2.29932718252e-05	8.64459789658e-05	6.34527071406e-05
+UniRef50_Q1I665		1.16808923219e-05	2.00381453533e-05	8.3572530314e-06
+UniRef50_C1DR24	Ribonuclease E	0.000312284198896	5.94198602059e-05	-0.00025286433869
+UniRef50_Q045P5	UPF0297 protein LGAS_0422	0.00193398865863	0.00219736482839	0.00026337616976
+UniRef50_U9DMQ5		7.34408538612e-05	0.000115508489646	4.20676357848e-05
+UniRef50_UPI00036D4795	hypothetical protein	1.38231174191e-05	2.80312899246e-05	1.42081725055e-05
+UniRef50_UPI0002FA6B33	hypothetical protein	6.81086224474e-05	7.97087729067e-05	1.16001504593e-05
+UniRef50_Q04U59	1 deoxy D xylulose 5 phosphate synthase	2.02223441495e-06	5.56967297079e-05	5.36744952929e-05
+UniRef50_Q8YHG4	Glutamate  tRNA ligase 1	0.0131609789122	0.00160531151154	-0.0115556674007
+UniRef50_U8XD19		0.000310707576748	0.000443420006233	0.000132712429485
+UniRef50_A6W6P9	3 dehydroquinate dehydratase	6.70523283263e-05	1.95096756486e-05	-4.75426526777e-05
+UniRef50_UPI000464ACF3	hypothetical protein	4.57056753325e-05	1.36335307615e-05	-3.2072144571e-05
+UniRef50_U7DNG8	Peptidase M19	0.000294047659564	0.00075159611247	0.000457548452906
+UniRef50_P30900	Acetylornithine aminotransferase	0.00269185039001	0.000894567252223	-0.00179728313779
+UniRef50_R6KIL0	YihY family protein	0.000709263862143	0.00263847754524	0.0019292136831
+UniRef50_A8AZM1	30S ribosomal protein S19	0.000918664690004	0.0053579068465	0.0044392421565
+UniRef50_Q2NI56	tRNA  N(2)) dimethyltransferase	0.00342774010115	0.000481172245221	-0.00294656785593
+UniRef50_UPI00037026C5	hypothetical protein	0.000162616058948	0.000132043549597	-3.0572509351e-05
+UniRef50_Q49UJ3		0.00143804186229	0.00103017455301	-0.00040786730928
+UniRef50_A7WZX4		0.00869873462927	0.00261914243687	-0.0060795921924
+UniRef50_A9M0A0	Phosphoenolpyruvate protein phosphotransferase	6.80972920355e-05	0.0026790628682	0.00261096557616
+UniRef50_B0RZ23	Trans 2 enoyl CoA reductase 	0.000356679674504	0.00490584506905	0.00454916539455
+UniRef50_E6MUK3	Drug resistance transporter, Bcr CflA subfamily protein	0.000124857548682	0.00369366187067	0.00356880432199
+UniRef50_UPI000365D2A7	hypothetical protein	3.72400375908e-05	4.91706057467e-05	1.19305681559e-05
+UniRef50_UPI00036DCC61	hypothetical protein	2.7307405136e-05	3.37238188507e-05	6.4164137147e-06
+UniRef50_M1MS56	Stage II sporulation protein D	0.0012070110078	0.0013717719382	0.0001647609304
+UniRef50_Q03287	Urease accessory protein UreG	0.00255752878591	0.0019372763282	-0.00062025245771
+UniRef50_UPI0003A320E0	MULTISPECIES	8.80359086486e-06	2.67295452577e-05	1.79259543928e-05
+UniRef50_UPI000363A104	potassium transporter Kef	2.91810996485e-05	2.93283920533e-05	1.472924048e-07
+UniRef50_P76559		0.00530910441452	0.000833073713629	-0.00447603070089
+UniRef50_D3E189		0.00354871639314	0.000711729403291	-0.00283698698985
+UniRef50_UPI000368D15E	MULTISPECIES	5.1578915936e-06	8.94352852756e-06	3.78563693396e-06
+UniRef50_M9SFA8		0.00351775501312	0.000459068850833	-0.00305868616229
+UniRef50_Q5HQ84		0.00364644958534	0.00377000049185	0.00012355090651
+UniRef50_Q8WY44	Quaking protein 3 	0.000132447903772	0.000251176225008	0.000118728321236
+UniRef50_W5IC94		0.000119836821857	0.000381057778383	0.000261220956526
+UniRef50_Q2G222	N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979	0.0110021405262	0.00286222743656	-0.00813991308964
+UniRef50_P43796	Glucose 1 phosphate adenylyltransferase	1.11128597521e-05	8.18582933035e-06	-2.92703042175e-06
+UniRef50_C4W8W1	Pyruvate carboxylase	0.0111411259019	0.00155920699933	-0.00958191890257
+UniRef50_P47295	Purine nucleoside phosphorylase DeoD type	2.66123177923e-05	7.20521711935e-05	4.54398534012e-05
+UniRef50_K1YAY7		3.29751952152e-05	0.00079831568052	0.000765340485305
+UniRef50_D3QIQ9		0.00844810669929	0.0017396661887	-0.00670844051059
+UniRef50_B2TKN9	Xanthine permease	0.000387950749033	0.00103611096425	0.000648160215217
+UniRef50_Q49YF9	PTS system N acetylglucosamine specific IIBC component	0.017311150531	0.00584158490564	-0.0114695656254
+UniRef50_UPI000289252A	selenocysteine specific translation elongation factor	1.23688538098e-06	2.5005833395e-06	1.26369795852e-06
+UniRef50_Q8YXQ7	Carbamoyl phosphate synthase small chain	1.10502530704e-05	7.45470259441e-06	-3.59555047599e-06
+UniRef50_P0ADC5	Lipoprotein releasing system transmembrane protein LolC	0.00587194401451	0.00112585139528	-0.00474609261923
+UniRef50_E6EBC0		5.19764480239e-05	0.00313007685017	0.00307810040215
+UniRef50_K4SCN9	tRNA lysidine synthase	0.0044831072853	0.00125666683062	-0.00322644045468
+UniRef50_Q9ZL53	Cadmium, zinc and cobalt transporting ATPase	0.000247158633229	0.00503704663323	0.004789888
+UniRef50_Q3DT06		0.00154305198432	0.000904577469527	-0.000638474514793
+UniRef50_Q2JTX6	Dihydroxy acid dehydratase	2.26103009272e-05	2.70190032162e-05	4.408702289e-06
+UniRef50_K1JKI8		6.94480230649e-05	0.000132614486612	6.31664635471e-05
+UniRef50_P26982	Periplasmic serine endoprotease DegP	0.00532637181899	0.000597672227318	-0.00472869959167
+UniRef50_U5MLQ0	Y_Y_Y domain containing protein	0.000466536382436	0.00129428799319	0.000827751610754
+UniRef50_P30793-4	Isoform GCH 4 of GTP cyclohydrolase 1	6.63232875033e-05	4.35250816127e-05	-2.27982058906e-05
+UniRef50_A0A059DR32		0.000219908288664	7.25352054249e-05	-0.000147373083239
+UniRef50_A0A009W0R2	Valine  tRNA ligase	0.000399293470222	0.00530311681055	0.00490382334033
+UniRef50_V6AHQ4	Putative serine threonine protein kinase	0.000137395378527	0.000389469764891	0.000252074386364
+UniRef50_F2I2C3		4.33638252333e-05	2.07878740472e-05	-2.25759511861e-05
+UniRef50_Q6A5H2	Alanine racemase	0.000169783803081	0.00482403603688	0.0046542522338
+UniRef50_UPI00047855C0	excinuclease ABC subunit A	1.59570089508e-05	4.22236653499e-05	2.62666563991e-05
+UniRef50_Q2IMD4	Chorismate synthase	1.42673675655e-05	0.000228467983723	0.000214200616157
+UniRef50_N6VDK8		0.000566944071958	3.9838624311e-05	-0.000527105447647
+UniRef50_N9IGS7		0.000211924383038	0.00155653651078	0.00134461212774
+UniRef50_P42909	N acetylgalactosamine specific phosphotransferase enzyme IIB component 1	0.0123730277007	0.00557831314121	-0.00679471455949
+UniRef50_Q1AWD7	Glyoxalase bleomycin resistance protein dioxygenase	0.000513125152715	0.000372247947718	-0.000140877204997
+UniRef50_X1B0B7	Marine sediment metagenome DNA, contig	1.07263418938e-05	4.1984474819e-05	3.12581329252e-05
+UniRef50_I4D272	Chemotaxis response regulator protein glutamate methylesterase	0.000501375338616	0.000419719905432	-8.1655433184e-05
+UniRef50_D3NTM9	Transcriptional regulator	0.000204046480461	0.000712341827277	0.000508295346816
+UniRef50_Q8Y270	Aspartate  tRNA ligase	0.00705410432456	0.00968559336873	0.00263148904417
+UniRef50_Q2YZ70	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.0252442334925	0.00498605850974	-0.0202581749828
+UniRef50_B1SBK3	Oligopeptide ABC transporter, permease protein	6.74433088391e-06	1.00990295505e-05	3.35469866659e-06
+UniRef50_C1MZS3	Predicted protein	4.53640802699e-06	8.59075146632e-06	4.05434343933e-06
+UniRef50_H3CH15		5.52819833876e-06	7.82557029634e-06	2.29737195758e-06
+UniRef50_D3QHC2	Membrane protein, putative	0.0207415150827	0.00454391019595	-0.0161976048868
+UniRef50_K4R856		2.94297197537e-05	0.000123477368026	9.40476482723e-05
+UniRef50_U5MZX2	Alpha beta fold family hydrolase	0.000371083740584	0.00135652406658	0.000985440325996
+UniRef50_C1ABB1		2.49613650782e-05	1.92738328928e-05	-5.6875321854e-06
+UniRef50_Q3JC02	Threonine  tRNA ligase	9.59226062798e-06	0.000248348562583	0.000238756301955
+UniRef50_UPI00045E74AA	hypothetical protein	8.1091788964e-06	2.71032949909e-05	1.89941160945e-05
+UniRef50_B4EC93		0.00952663504457	0.00113805149632	-0.00838858354825
+UniRef50_H1D9R7		2.98187300953e-05	6.83852419866e-05	3.85665118913e-05
+UniRef50_B7I2L4	Colicin V producing membrane protein	0.00103815856369	0.015817159874	0.0147790013103
+UniRef50_B9KS14	Chemotaxis histidine protein kinase	0.0060690048435	0.00115404037504	-0.00491496446846
+UniRef50_UPI00037A03B5	hypothetical protein	9.8871362505e-06	1.16849658402e-05	1.7978295897e-06
+UniRef50_A7ZKB3	Probable malonic semialdehyde reductase RutE	0.000790727699528	0.00133455152757	0.000543823828042
+UniRef50_UPI0003656A74	hypothetical protein	6.96183999616e-05	4.92516421154e-05	-2.03667578462e-05
+UniRef50_E0XZI6		7.17118028029e-05	7.55313255947e-05	3.8195227918e-06
+UniRef50_I1QQ98		7.88460009933e-05	0.00050338074749	0.000424534746497
+UniRef50_D1A708		2.72122660965e-06	7.02785452201e-06	4.30662791236e-06
+UniRef50_O69787	Choline sulfatase	0.00555770156902	0.000410673646541	-0.00514702792248
+UniRef50_U3T620	Long chain acyl CoA synthetase	0.000370681660183	0.00609167310279	0.00572099144261
+UniRef50_K1VAT6		1.18285596994e-05	7.55107892356e-06	-4.27748077584e-06
+UniRef50_UPI000465DCA9	hypothetical protein	8.83373348496e-05	1.20656737369e-05	-7.62716611127e-05
+UniRef50_UPI00036A9D7D	hypothetical protein	0.000263653153162	5.51676206309e-05	-0.000208485532531
+UniRef50_O07137	Probable enoyl CoA hydratase echA8	0.000471163298905	0.00461620669722	0.00414504339832
+UniRef50_Q2W5V5	Chemotaxis response regulator protein glutamate methylesterase 2	6.5460189545e-05	9.91765284611e-06	-5.55425366989e-05
+UniRef50_UPI00029AB2EF	hypothetical protein	0.000116398977183	1.84261250266e-05	-9.79728521564e-05
+UniRef50_F0G430		0.000353112488374	0.000127943017037	-0.000225169471337
+UniRef50_Q1DCX8	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.66804979553e-05	1.12775963202e-05	-5.4029016351e-06
+UniRef50_P0DA52	DegV domain containing protein SpyM3_0586	0.000134977111625	0.0046186328906	0.00448365577898
+UniRef50_E2PWJ8	Aldo keto reductase	5.14549620698e-06	3.70125180038e-05	3.18670217968e-05
+UniRef50_F5TKP9	Nitrate reductase, alpha subunit	9.56775220481e-05	0.00473308589655	0.0046374083745
+UniRef50_A4WR54	NnrS family protein	0.00237297096137	0.000465017135201	-0.00190795382617
+UniRef50_P30143		0.00612157431953	0.00552812701731	-0.00059344730222
+UniRef50_P69857	Probable N acetylneuraminic acid outer membrane channel protein NanC	0.00454660310222	0.000733960937588	-0.00381264216463
+UniRef50_M9VJS8	Cof family hydrolase	0.000532648225497	0.00746873457742	0.00693608635192
+UniRef50_B1B3K1	Truncated Pre protein	0.00545145342635	0.00148254952002	-0.00396890390633
+UniRef50_F2FAF1		2.02345101454e-06	2.3859709144e-06	3.6251989986e-07
+UniRef50_UPI0004664D96	XRE family transcriptional regulator	0.000246290359315	3.52250112475e-05	-0.000211065348067
+UniRef50_UPI0004711A28	hypothetical protein	1.14672290765e-05	0.000125737174151	0.000114269945074
+UniRef50_E1WQ62		0.0171012884395	0.00222396320524	-0.0148773252343
+UniRef50_F7WET4		4.77342769245e-05	3.66536805477e-05	-1.10805963768e-05
+UniRef50_X5K411	Iron compound ABC transporter,iron compound binding protein	0.00578736389175	0.00163866177154	-0.00414870212021
+UniRef50_Q0TPX5	Ribose import ATP binding protein RbsA	3.80199254595e-05	1.03111528348e-05	-2.77087726247e-05
+UniRef50_R7ESR9		0.00695894858202	0.0109566129863	0.00399766440428
+UniRef50_M1LNN1	Tex like protein	0.000581701658506	0.000164968101942	-0.000416733556564
+UniRef50_Q8E5K2	Phosphate binding protein PstS 1	0.0049805220487	0.000657098481318	-0.00432342356738
+UniRef50_D3QES6		0.0207165657957	0.00518687304853	-0.0155296927472
+UniRef50_UPI0002EE51BE	hypothetical protein	5.33798360271e-05	3.08815209014e-05	-2.24983151257e-05
+UniRef50_S5CWD7	AraC type DNA binding domain containing protein	0.000135949335724	0.00992055672599	0.00978460739027
+UniRef50_UPI0003B77367	2Fe 2S ferredoxin	1.60640513466e-05	2.71336140289e-05	1.10695626823e-05
+UniRef50_D3QES1		0.00835135547352	0.00644126433336	-0.00191009114016
+UniRef50_D3E1P1	HEAT repeat containing protein	0.00159135696724	0.000508650190886	-0.00108270677635
+UniRef50_P95695	Capsular polysaccharide type 5 biosynthesis protein cap5A	0.00905800005216	0.00197698996541	-0.00708101008675
+UniRef50_P45855	Acetyl CoA acetyltransferase	1.07338570887e-05	8.44051913685e-05	7.36713342798e-05
+UniRef50_D7A4H7	ABC transporter related protein	0.0172538992683	0.00734881175199	-0.00990508751631
+UniRef50_Q7NC65	Glycerol kinase	2.83427246406e-05	9.60250531467e-05	6.76823285061e-05
+UniRef50_UPI0003499E7A	hypothetical protein	8.51126571887e-06	7.39442646445e-06	-1.11683925442e-06
+UniRef50_A0A024YRW3		4.92310265064e-05	3.299353095e-05	-1.62374955564e-05
+UniRef50_UPI0002E76F72	hypothetical protein	5.19828160163e-06	6.07579989415e-06	8.7751829252e-07
+UniRef50_UPI00035075E1	PREDICTED	3.62874767781e-06	2.14123214387e-05	1.77835737609e-05
+UniRef50_A6UBX6	Binding protein dependent transport systems inner membrane component	0.000933859196944	0.000366853049924	-0.00056700614702
+UniRef50_A0A011UHJ8		0.000587586275919	0.000179161012056	-0.000408425263863
+UniRef50_Q45480		0.00995960533072	0.00952466622444	-0.00043493910628
+UniRef50_A4X0G8		0.00151257975366	0.000291372662474	-0.00122120709119
+UniRef50_Q5SKG5	Phosphomethylpyrimidine synthase	0.00295026320403	0.000673701378576	-0.00227656182545
+UniRef50_UPI0004701620	50S ribosomal protein L10	0.000404553261041	0.000157544053966	-0.000247009207075
+UniRef50_F5ZH68		0.00387807960127	0.00129367198408	-0.00258440761719
+UniRef50_M1V0X7		7.11342943796e-05	0.00748361636682	0.00741248207244
+UniRef50_Q0KDG3	Methionine import ATP binding protein MetN	0.000344187151019	1.3100052143e-05	-0.000331087098876
+UniRef50_P16686	Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH	0.00388580003638	0.00245950156536	-0.00142629847102
+UniRef50_Q9RXL0		0.000636212340763	0.0133917641875	0.0127555518467
+UniRef50_A5UNK7		0.000589512978523	0.000271347661734	-0.000318165316789
+UniRef50_Q15W23		1.27987922128e-05	3.66075397165e-05	2.38087475037e-05
+UniRef50_UPI000388FF1B	PREDICTED	2.31538454072e-05	2.62604676112e-05	3.106622204e-06
+UniRef50_C5N3N0		0.00572857423693	0.00312792273519	-0.00260065150174
+UniRef50_Q03GN4	Pyridine nucleotide disulfide oxidoreductase	0.00016529382669	0.00192048978724	0.00175519596055
+UniRef50_UPI00047DF1C1	cell division protein FtsX	4.11287164659e-06	4.72700949014e-05	4.31572232548e-05
+UniRef50_G2TDB8		4.13175564478e-05	1.49999208339e-05	-2.63176356139e-05
+UniRef50_UPI0002D2E18F	hypothetical protein	8.74082148297e-06	4.63029881582e-05	3.75621666752e-05
+UniRef50_O64363	Protein gp55	0.00321099709094	0.00111440266111	-0.00209659442983
+UniRef50_UPI00036196C8	hypothetical protein	0.000101666981603	4.97676009994e-06	-9.66902215031e-05
+UniRef50_Q8FW95	Bacterioferritin	0.0247829149277	0.00168100562141	-0.0231019093063
+UniRef50_A7FHG9	Vitamin B12 import system permease protein BtuC	0.00170978911264	0.00170186117483	-7.92793781e-06
+UniRef50_Q39586	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	2.05749683449e-06	3.42353427571e-06	1.36603744122e-06
+UniRef50_Q2RGX1	Xylose binding protein	0.00188020839024	0.0018228808535	-5.732753674e-05
+UniRef50_Q49115	Protein MeaA	0.0078315160999	0.00158702216567	-0.00624449393423
+UniRef50_UPI000475C41D	siderophore ABC transporter permease	1.4107067744e-05	3.08506752192e-05	1.67436074752e-05
+UniRef50_X1GH09	Marine sediment metagenome DNA, contig	3.45097630158e-05	0.00204766895538	0.00201315919236
+UniRef50_N6JKR1		8.41893544581e-05	0.000311524261714	0.000227334907256
+UniRef50_Q1J1Q7	Cobalamin  biosynthesis CbiX protein	0.000188825826221	0.00702591279155	0.00683708696533
+UniRef50_I1DXB2		9.99184141722e-05	2.92997914219e-05	-7.06186227503e-05
+UniRef50_Q7DDL5	Cysteine synthase	3.58904571049e-05	0.00264378980423	0.00260789934713
+UniRef50_M9VH79	Transcriptional regulator	0.000179755232787	0.00556785735975	0.00538810212696
+UniRef50_UPI00037331DA	hypothetical protein	1.15380829852e-06	2.5004181098e-06	1.34660981128e-06
+UniRef50_A5UMZ2	3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase	0.00402454548836	0.000908621513235	-0.00311592397512
+UniRef50_A5N458	DNA polymerase III subunit beta	0.000537150175013	0.000220935190916	-0.000316214984097
+UniRef50_Q5HL55	Copper chaperone CopZ	0.00446845542905	0.0050022406156	0.00053378518655
+UniRef50_P39408		0.00217222767686	0.00188028211541	-0.00029194556145
+UniRef50_UPI00029CCE10	50S ribosomal protein L21, partial	1.35942131808e-05	0.00056058032253	0.000546986109349
+UniRef50_C4AM88	Cytosolic 5 nucleotidase 1B	6.8116097021e-05	8.16826696933e-05	1.35665726723e-05
+UniRef50_UPI00047DBA67	hypothetical protein	6.17916438402e-05	3.1062978316e-05	-3.07286655242e-05
+UniRef50_G5NWB0	NADH quinone oxidoreductase subunit N	0.0027900712293	0.000580117808205	-0.00220995342109
+UniRef50_UPI000347E3AB	sodium	1.556958875e-05	0.00207716709969	0.00206159751094
+UniRef50_Q28LX4		4.92046420817e-05	9.38285369238e-05	4.46238948421e-05
+UniRef50_A4WTF8	Malto oligosyltrehalose synthase	0.00452726398165	0.00125455810495	-0.0032727058767
+UniRef50_P44311	Glucose 6 phosphate 1 dehydrogenase	6.07266510379e-06	6.63387367506e-06	5.6120857127e-07
+UniRef50_C6D021	Uronate isomerase	0.000337459924055	0.00156282554038	0.00122536561632
+UniRef50_P45539	Putative fructoselysine transporter FrlA	0.00378655820717	0.000944937936194	-0.00284162027098
+UniRef50_C2UPC1	DNA gyrase subunit B	2.15737687866e-05	0.000117491524122	9.59177553354e-05
+UniRef50_A3PPA1		0.00203039516774	0.00185020774163	-0.00018018742611
+UniRef50_A3PPA7		0.000309670287911	0.000210918210748	-9.8752077163e-05
+UniRef50_P0ACD2	Putative colanic acid biosynthesis acetyltransferase WcaF	0.0036054559712	0.000668147992546	-0.00293730797865
+UniRef50_D7GHA6	Iron ABC transporter, permease protein	0.000433682876624	0.00577877302966	0.00534509015304
+UniRef50_Q7VI92	Methionine import ATP binding protein MetN	9.18695071689e-06	0.00265565856241	0.00264647161169
+UniRef50_A1KVH9	DNA repair protein RecO	0.000171584540393	0.00734020425798	0.00716861971759
+UniRef50_Q3IX14		0.00777550238002	0.00329417064268	-0.00448133173734
+UniRef50_K7UZK8		3.4063205305e-05	0.000285198857237	0.000251135651932
+UniRef50_S5Z0P9	Transposase	5.65918750495e-05	2.94004476166e-05	-2.71914274329e-05
+UniRef50_D8TPB8		3.49749378825e-05	4.06098790234e-05	5.6349411409e-06
+UniRef50_UPI00031039A1	DNA invertase	0.00016233687908	4.17393587879e-05	-0.000120597520292
+UniRef50_S9S3Z7		0.000111404374658	6.4709221319e-05	-4.6695153339e-05
+UniRef50_Q8DV78		0.0050156333377	0.00387411300695	-0.00114152033075
+UniRef50_B9DK54	Predicted membrane protein with CBS domains	0.0239320010253	0.00422550716251	-0.0197064938628
+UniRef50_UPI00029AC90B	hypothetical protein	1.64690183833e-05	3.28491854897e-05	1.63801671064e-05
+UniRef50_D0K826	Ribose operon repressor, putative	0.0178943232175	0.00556425152529	-0.0123300716922
+UniRef50_UPI0003B6DD73	amno acid ABC transporter ATPase	3.51032536031e-05	2.86882690501e-05	-6.414984553e-06
+UniRef50_Q8DV75		0.00829851047201	0.00249235352567	-0.00580615694634
+UniRef50_E8Q7C4		0.00668398697518	0.00830972426397	0.00162573728879
+UniRef50_Q8CQ71	Arsenical pump membrane protein	0.00386007487421	0.0022506150417	-0.00160945983251
+UniRef50_UPI00047661F3	Putrescine importer PuuP	3.99629675192e-06	4.27432865037e-05	3.87469897518e-05
+UniRef50_P26162	Magnesium chelatase subunit H	0.00475679967391	0.00143539390114	-0.00332140577277
+UniRef50_Q930T2	4 deoxy L threo 5 hexosulose uronate ketol isomerase 1	1.04637076893e-05	1.40142091738e-05	3.5505014845e-06
+UniRef50_A3PNN7	Sugar transferase	0.00399939854399	0.00210060556968	-0.00189879297431
+UniRef50_Q6ZN04-3	Isoform 2 of RNA binding protein MEX3B	0.000286698219379	0.000573959037861	0.000287260818482
+UniRef50_UPI000225F341	ParB family protein	0.000117160470934	1.82058578763e-05	-9.89546130577e-05
+UniRef50_M9R8I3	Flagellar biosynthesis protein FlhA	0.00433600736216	0.00074863357376	-0.0035873737884
+UniRef50_UPI0003758B1C	hypothetical protein	1.25365863945e-05	7.18218987959e-05	5.92853124014e-05
+UniRef50_A3PQH3		0.00666653248337	0.000972106413351	-0.00569442607002
+UniRef50_P22787		0.00471206990072	0.00110548619815	-0.00360658370257
+UniRef50_UPI00047460D1	ABC transporter permease	6.31621497939e-06	1.72100590185e-05	1.08938440391e-05
+UniRef50_Q1IXG7	Thioesterase superfamily	1.41745435306e-05	0.00637774280707	0.00636356826354
+UniRef50_A0A024RXJ7		0.00017790976437	3.87450017475e-05	-0.000139164762622
+UniRef50_P0CI61	Catabolic 3 dehydroquinase	0.000102793459241	9.03450939924e-05	-1.24483652486e-05
+UniRef50_P26459	Cytochrome bd II ubiquinol oxidase subunit 1	0.00175421188624	0.000227931341553	-0.00152628054469
+UniRef50_D8U5B8		1.27163568037e-06	4.98955651535e-06	3.71792083498e-06
+UniRef50_Q1J0Q8	Glycolate oxidase subunit, GlcD	8.02024055691e-05	0.0138427048682	0.0137625024626
+UniRef50_UPI0003B67F78	large conductance mechanosensitive channel protein MscL	0.000254837408769	0.000352154098304	9.7316689535e-05
+UniRef50_O25963	UDP N acetylenolpyruvoylglucosamine reductase	0.000145373294809	0.00249288924385	0.00234751594904
+UniRef50_UPI00041D354E	MarR family transcriptional regulator	1.62709523456e-05	9.52822450168e-05	7.90112926712e-05
+UniRef50_UPI00034D3A31	hypothetical protein	3.342866195e-06	1.56092428777e-05	1.22663766827e-05
+UniRef50_D3QEW6	Two component sensor histidine kinase	0.00833955288363	0.00237004001112	-0.00596951287251
+UniRef50_UPI000476FAE3	hypothetical protein	0.000181214532063	1.53568147813e-05	-0.000165857717282
+UniRef50_P77377	Lipopolysaccharide biosynthesis protein WzxC	0.00211292650664	0.000250917024922	-0.00186200948172
+UniRef50_P72749	GTP binding protein TypA BipA homolog	8.8611734477e-05	0.0470425373849	0.0469539256504
+UniRef50_UPI0003801FCB	hypothetical protein	0.00013512475479	2.8814842351e-05	-0.000106309912439
+UniRef50_O27830		0.00300182406976	0.000488342951651	-0.00251348111811
+UniRef50_L7F3W2		0.000197912972987	0.000238800570243	4.0887597256e-05
+UniRef50_UPI0002559497	response regulator	3.73041524007e-05	2.6893798974e-05	-1.04103534267e-05
+UniRef50_Q9I1P8		0.00187834258225	0.000763343436634	-0.00111499914562
+UniRef50_UPI0004701F6D	hypothetical protein, partial	1.392865505e-05	1.82977294149e-05	4.3690743649e-06
+UniRef50_UPI0003B7BBF9	elongation factor G	1.16595074273e-05	0.00010639792536	9.47384179327e-05
+UniRef50_UPI00035D925C	hypothetical protein	3.66837052483e-06	1.06625494086e-05	6.99417888377e-06
+UniRef50_R6H780		5.82634666514e-05	0.000118283617374	6.00201507226e-05
+UniRef50_X1KMN7	Marine sediment metagenome DNA, contig	1.24864993981e-05	2.72766596585e-05	1.47901602604e-05
+UniRef50_C6SLG1		0.000699048127507	4.98030832662e-05	-0.000649245044241
+UniRef50_B2IWH8	Bifunctional protein PyrR	2.3701541931e-05	6.82954208732e-05	4.45938789422e-05
+UniRef50_P66667	Ribonuclease 3	2.30415383842e-05	7.16804448288e-05	4.86389064446e-05
+UniRef50_L0A6M1	ABC type dipeptide oligopeptide nickel transport system, permease component	0.000108472985299	0.0461678805436	0.0460594075583
+UniRef50_P37773	UDP N acetylmuramate	0.00287507621356	0.00037098649128	-0.00250408972228
+UniRef50_W7WWN9		0.000269407414187	7.41731847278e-05	-0.000195234229459
+UniRef50_A6M2X6	RNA methyltransferase, TrmA family	0.00061082237416	0.00423495354638	0.00362413117222
+UniRef50_G4L5V8	Polysaccharide deacetylase	0.00199071950385	0.000241403301256	-0.00174931620259
+UniRef50_UPI000478D1B9	hypothetical protein	2.9711163247e-06	4.66222030903e-06	1.69110398433e-06
+UniRef50_Q32GE1	Quinate shikimate dehydrogenase	0.00382570493768	0.000873536142769	-0.00295216879491
+UniRef50_Q4TIC7	Chromosome undetermined SCAF2249, whole genome shotgun sequence. 	0.00140363396481	0.000110777474637	-0.00129285649017
+UniRef50_O67869	Carbamoyl phosphate synthase large chain, N terminal section	3.00494072985e-05	2.01256795636e-05	-9.9237277349e-06
+UniRef50_C7D5Q5		4.57397310049e-05	2.17375592014e-05	-2.40021718035e-05
+UniRef50_Q48KZ0	ATP dependent Clp protease proteolytic subunit	9.93266991657e-06	0.000142525415876	0.000132592745959
+UniRef50_UPI0004778203	ABC transporter	0.000173678189589	3.16773230944e-05	-0.000142000866495
+UniRef50_UPI0004710F14	monovalent cation H+ antiporter subunit A	0.000203292484182	7.31516959214e-05	-0.000130140788261
+UniRef50_F2UDL8		3.17116082307e-05	9.13836280538e-05	5.96720198231e-05
+UniRef50_A6LR74	Methyl accepting chemotaxis sensory transducer	0.000275885226717	0.00229547421674	0.00201958899002
+UniRef50_UPI0002BA87F0	hypothetical protein	0.000226039514279	0.00917888200131	0.00895284248703
+UniRef50_A4VRC5		1.39065284748e-05	1.82507762559e-05	4.3442477811e-06
+UniRef50_A4VRC6		6.66355403197e-05	4.28516462473e-05	-2.37838940724e-05
+UniRef50_Q0G053		0.000105033994033	3.82929276099e-05	-6.67410664231e-05
+UniRef50_T1ZL16		2.04555577641e-05	3.39026351593e-05	1.34470773952e-05
+UniRef50_Q92RN6	Probable galactose dehydrogenase GalD	0.00479731987223	0.00089047829244	-0.00390684157979
+UniRef50_E8SR78	ApbE	7.45796802505e-06	0.0031845739638	0.00317711599577
+UniRef50_Q8GLK9	Isoprenyl transferase	8.15980912161e-06	1.23358673834e-05	4.17605826179e-06
+UniRef50_B8NR51		4.53778080385e-06	3.8960253286e-06	-6.4175547525e-07
+UniRef50_UPI000476E214	urea ABC transporter permease	7.53793219571e-06	0.000169195107975	0.000161657175779
+UniRef50_A5VXC5	Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000809451773838	0.00093138386683	0.000121932092992
+UniRef50_C0B0T0		4.93112317887e-05	6.37633347113e-05	1.44521029226e-05
+UniRef50_UPI000368C3B5	hypothetical protein	4.09123583442e-05	0.00010548776749	6.45754091458e-05
+UniRef50_Q9RTG8	Ribosome maturation factor RimP	0.000432235865095	0.0589539237319	0.0585216878668
+UniRef50_A0A023RXG6	Poly polymerase	8.98776163989e-05	0.0108303603448	0.0107404827284
+UniRef50_Q9HUV8	Phosphoribosylamine  glycine ligase	0.00141525314037	0.00960004251316	0.00818478937279
+UniRef50_A5UNL7	Adhesin like protein	0.0030986483221	3.97009262231e-05	-0.00305894739588
+UniRef50_A5ULS7	Molybdopterin biosynthesis protein, MoeA	0.00319419991837	0.000477180701234	-0.00271701921714
+UniRef50_UPI0002FD2950	hypothetical protein	1.79958007731e-05	6.29322231006e-05	4.49364223275e-05
+UniRef50_F4EE48	Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein	0.00011039617203	0.000329553400308	0.000219157228278
+UniRef50_UPI00036AA1CD	hypothetical protein	1.40061606771e-05	0.000115065419154	0.000101059258477
+UniRef50_UPI0003B4B49C	bifunctional ppGpp synthetase II  guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase	2.3457664673e-06	4.36097404011e-06	2.01520757281e-06
+UniRef50_UPI000225B750	4 phosphopantetheinyl transferase	1.61210039147e-05	3.476928129e-05	1.86482773753e-05
+UniRef50_UPI00047061CB	magnesium transporter MgtC	8.02710317858e-06	4.16533474372e-05	3.36262442586e-05
+UniRef50_U5L631	Membrane protein	2.2536260916e-05	0.000267391644469	0.000244855383553
+UniRef50_A6M235	Sugar isomerase 	0.000215706279348	0.00213896813491	0.00192326185556
+UniRef50_UPI00037B9AA6	hypothetical protein	8.35440271475e-06	1.52340812945e-05	6.87967857975e-06
+UniRef50_UPI0002375EA0	binding protein dependent transport systems inner membrane component, partial	2.62718574411e-05	7.98669315519e-05	5.35950741108e-05
+UniRef50_A8YWE6	Formamidopyrimidine DNA glycosylase	6.8184526473e-06	1.05425743983e-05	3.724121751e-06
+UniRef50_R9YT60	HlyD secretion family protein	0.0297637496412	0.00438120474754	-0.0253825448937
+UniRef50_G8PI82	Dipeptide transport ATP binding protein DppF	0.00255612123395	0.000242062873115	-0.00231405836084
+UniRef50_A4WPE9	Cytochrome B561	0.00262130970332	0.000349487225087	-0.00227182247823
+UniRef50_UPI0003602B13	hypothetical protein	3.08040676276e-05	7.16386499904e-06	-2.36402026286e-05
+UniRef50_Q9RT80		0.000234949785595	0.0088198223883	0.0085848726027
+UniRef50_UPI0002488638	2 dehydro 3 deoxygluconokinase	9.05884814754e-06	1.29360305103e-05	3.87718236276e-06
+UniRef50_R6KR64	Major facilitator superfamily MFS_1	0.000194270043698	0.000334729755613	0.000140459711915
+UniRef50_B7GVN4	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000500342408474	0.00908629270855	0.00858595030008
+UniRef50_P05695	Porin P	0.000587967776852	0.000362867073389	-0.000225100703463
+UniRef50_B2GC97	Dehydrogenase	0.0144739526937	0.0032063550218	-0.0112675976719
+UniRef50_UPI0004434514	PREDICTED	7.9886282589e-06	0.000118943472914	0.000110954844655
+UniRef50_P43329	ATP dependent RNA helicase HrpA	0.000130227679806	0.000249043434787	0.000118815754981
+UniRef50_D2NAI9	Antibiotic biosynthesis monooxygenase	0.0302796738544	0.00417524869169	-0.0261044251627
+UniRef50_A5WGU9	ABC transporter related protein	6.03655632479e-05	0.0064486789442	0.00638831338095
+UniRef50_UPI000372E826	hypothetical protein	9.60808095252e-06	8.3101226564e-06	-1.29795829612e-06
+UniRef50_UPI00036C8D4E	hypothetical protein	6.57059768744e-06	7.91279245731e-06	1.34219476987e-06
+UniRef50_L7WXE6		0.00743820309049	0.00416190118874	-0.00327630190175
+UniRef50_A0A017T7C4		2.36774933253e-05	6.30705400069e-05	3.93930466816e-05
+UniRef50_R5PQE2	ATPase	0.00550559176891	0.00135328866921	-0.0041523030997
+UniRef50_P73443	Lysine  tRNA ligase	4.48194437494e-06	8.84020518006e-06	4.35826080512e-06
+UniRef50_UPI00035D38ED	MULTISPECIES	1.76869473805e-05	0.00208955827038	0.002071871323
+UniRef50_J6JBM8		6.35072551366e-05	3.20036324846e-05	-3.1503622652e-05
+UniRef50_Q035Y9	60 kDa chaperonin	0.000252337893591	0.00747642347009	0.0072240855765
+UniRef50_Q59091	3 oxoadipate CoA transferase subunit B	3.07599775737e-05	2.51778452877e-05	-5.582132286e-06
+UniRef50_Q4A0W1	Transcriptional regulator	0.0101983964031	0.00162686723112	-0.00857152917198
+UniRef50_I6SW93	ABC transporter membrane protein subunit and ATP binding protein	0.00584019362576	0.00181075111156	-0.0040294425142
+UniRef50_A4E7V0		9.46072399763e-05	0.000173057181586	7.84499416097e-05
+UniRef50_UPI00046F4A68	xanthine dehydrogenase, partial	2.28308157584e-05	1.3152107152e-05	-9.6787086064e-06
+UniRef50_Q3J2Q4		0.013320335193	0.00195190592935	-0.0113684292637
+UniRef50_Q8UBL6	Uroporphyrinogen decarboxylase	6.82521793987e-06	1.44599744783e-05	7.63475653843e-06
+UniRef50_R6Z301	Threonine dehydratase medium form	6.35694974159e-06	1.25080679304e-05	6.15111818881e-06
+UniRef50_C5AVJ7		0.0001822239005	0.000703135012379	0.000520911111879
+UniRef50_M9VIM2	Phosphotransferase system, EIIC	8.17069239939e-05	0.00594888313599	0.005867176212
+UniRef50_UPI00035123E6		7.63113698339e-05	3.38277799404e-05	-4.24835898935e-05
+UniRef50_B8H0C0	RNA polymerase binding transcription factor DksA	0.00242770223395	0.00233144767259	-9.625456136e-05
+UniRef50_A5UM65		0.000477830365635	0.00037381861418	-0.000104011751455
+UniRef50_Q8CQJ9	Teichoic acid biosynthesis protein F	0.00891179502599	0.00581970201286	-0.00309209301313
+UniRef50_B2I1K5	Thiol	7.48980136639e-05	0.00427868376711	0.00420378575345
+UniRef50_B7H204	Potassium uptake protein, TrkH family protein	0.000725539371829	0.00664990647607	0.00592436710424
+UniRef50_O27292	Inosine 5 monophosphate dehydrogenase related protein III	0.00272415483359	0.000290475447734	-0.00243367938586
+UniRef50_A4BCM8	Acylphosphatase, putative	2.12641712445e-05	5.32557510014e-05	3.19915797569e-05
+UniRef50_J0Q686	TatA E family twin arginine targeting protein translocase	0.000120083825141	0.000111188773754	-8.895051387e-06
+UniRef50_UPI0003138E18	hypothetical protein	6.57383063637e-05	1.56567195623e-05	-5.00815868014e-05
+UniRef50_D3UHV1	Type I restriction modification system, restriction enzyme	9.09572103896e-05	0.00417173017239	0.004080772962
+UniRef50_Q5GWT1	ISxac3 transposase	0.000124566393376	0.000447817629267	0.000323251235891
+UniRef50_UPI00031C00D7	hypothetical protein	1.27488720048e-05	2.20010148782e-05	9.2521428734e-06
+UniRef50_UPI0000E0E146	ribonuclease III	5.92898113588e-06	2.97500389783e-05	2.38210578424e-05
+UniRef50_W6S7D3	HAD superfamily hydrolase	0.000512821989924	0.00186235616371	0.00134953417379
+UniRef50_D6H9U3	Acyl CoA dehydrogenase	0.000133478143897	0.000551648748642	0.000418170604745
+UniRef50_UPI0003790597	hypothetical protein	3.94653504723e-05	7.01673512158e-06	-3.24486153507e-05
+UniRef50_UPI00046499F1	hypothetical protein, partial	6.33582887958e-06	1.79739048667e-06	-4.53843839291e-06
+UniRef50_P40786	Nucleoside specific channel forming protein tsx	0.00179898178376	0.00148039587258	-0.00031858591118
+UniRef50_Q1IWY0	Thioredoxin	0.000515019643709	0.0109367858621	0.0104217662184
+UniRef50_P09832	Glutamate synthase [NADPH] small chain	0.0021467923266	0.00155297070746	-0.00059382161914
+UniRef50_Q6A9H6	Gamma glutamyl phosphate reductase	0.000560692713583	0.00635117729691	0.00579048458333
+UniRef50_A1ALT4	DNA directed RNA polymerase subunit beta	8.48594119554e-06	1.77194172907e-06	-6.71399946647e-06
+UniRef50_A5IS43		0.00230663610187	0.00356710181026	0.00126046570839
+UniRef50_D7ZP07	TRAP transporter, DctM subunit	6.1179359241e-05	2.95168752471e-05	-3.16624839939e-05
+UniRef50_UPI000368CDC8	hypothetical protein, partial	0.000267899074815	0.000100777988298	-0.000167121086517
+UniRef50_A3MV69	Elongation factor 1 alpha	0.00259522372202	0.000988991374907	-0.00160623234711
+UniRef50_P30138	Sulfur carrier protein ThiS adenylyltransferase	0.00126793060533	0.000550956498034	-0.000716974107296
+UniRef50_K7RUC4	3 carboxymuconate cyclase	1.01548506727e-05	7.69641585947e-05	6.6809307922e-05
+UniRef50_A0Q087	Elongation factor P	1.74443411028e-05	0.00027228479705	0.000254840455947
+UniRef50_Q9RVA5	SLH family protein	0.000123630782379	0.0298404904788	0.0297168596964
+UniRef50_P76198	Inner membrane transport protein YdiN	0.00244139719792	0.00130560032228	-0.00113579687564
+UniRef50_T1Y784	CDP glycerol glycerophosphotransferase	0.0106798127414	0.000720476448956	-0.00995933629244
+UniRef50_Q1RQN9	AfsA like protein	0.000127672825993	0.000692131074034	0.000564458248041
+UniRef50_Q9RVC9	UPF0176 protein DR_1100	0.000254484936301	0.0198194203591	0.0195649354228
+UniRef50_F0KG78	HTH type transcriptional regulator BetI	0.000182360381085	0.00864167857375	0.00845931819267
+UniRef50_P42308	Citrate transporter	0.000807704992712	0.00860488363336	0.00779717864065
+UniRef50_B2KBB9	Aspartate  tRNA ligase	2.82646779704e-06	3.45003788094e-06	6.235700839e-07
+UniRef50_C1N0Q8	Predicted protein	4.55627425807e-05	7.24528822668e-06	-3.8317454354e-05
+UniRef50_P76224	Inner membrane ABC transporter permease protein YnjC	0.00369922226016	0.00220532678946	-0.0014938954707
+UniRef50_Q6A7A7	Lysyl tRNA synthetase	0.000198089810149	0.00676256046573	0.00656447065558
+UniRef50_UPI0004169BE3	ribonuclease	1.32371307248e-05	1.42487506815e-05	1.0116199567e-06
+UniRef50_UPI0004725351	hypothetical protein	9.07582402088e-07	2.92326955491e-06	2.01568715282e-06
+UniRef50_A8AAF8	N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase	5.7356579454e-06	0.000113361838629	0.000107626180684
+UniRef50_UPI000288DACB	nitrogen regulatory protein P II	0.000774030641073	3.2502971795e-05	-0.000741527669278
+UniRef50_UPI000441EF2C		0.000309891178515	0.000114933850122	-0.000194957328393
+UniRef50_A3PLF5		0.000824172926495	0.000212259414197	-0.000611913512298
+UniRef50_Q8X7R2	Acyl coenzyme A dehydrogenase	0.00315835334277	0.000806305894014	-0.00235204744876
+UniRef50_C3L0X3	Proton sodium glutamate symporter	0.000157943928393	0.00059553833896	0.000437594410567
+UniRef50_UPI0003FA835C	alkaline phosphatase	3.1046021802e-06	2.20382623475e-05	1.89336601673e-05
+UniRef50_UPI00046A02CC	hypothetical protein	3.26167834574e-05	1.160895676e-05	-2.10078266974e-05
+UniRef50_A6LY49	Transcriptional regulator, TetR family	0.00110041267802	0.000938702553188	-0.000161710124832
+UniRef50_I7EDS2		0.00075487688964	0.000188316566041	-0.000566560323599
+UniRef50_P12994	UPF0098 protein YbhB	0.000957694051974	0.0535375985694	0.0525799045174
+UniRef50_UPI000473D6A4	16S rRNA methyltransferase, partial	1.21820110647e-05	1.72827553008e-05	5.1007442361e-06
+UniRef50_Q3DN63		3.81056031298e-05	1.20009835908e-05	-2.6104619539e-05
+UniRef50_UPI00037391D6	hypothetical protein	7.26135290382e-06	5.11307731061e-06	-2.14827559321e-06
+UniRef50_V9VP30		5.32821619013e-05	7.37818096906e-05	2.04996477893e-05
+UniRef50_R0QJ92	Dicarboxylate symporter family protein	4.80465832268e-05	0.000320804945664	0.000272758362437
+UniRef50_T1ZL59	DeoR family transcriptional regulator	0.00585458619516	0.00318563041543	-0.00266895577973
+UniRef50_Q5P260	Glycerol 3 phosphate acyltransferase	7.64626467626e-06	4.92469151816e-05	4.16006505053e-05
+UniRef50_A5UND9	Lipopolysaccharide cholinephosphotransferase, LicD family	0.00334940845849	0.000536541385429	-0.00281286707306
+UniRef50_B2UNA9	Polyribonucleotide nucleotidyltransferase	2.31250043527e-06	4.15063357101e-06	1.83813313574e-06
+UniRef50_V5U2H7		0.000541209164004	0.000482896306911	-5.8312857093e-05
+UniRef50_Q1IYQ4	Prephenate dehydratase	0.000161548925324	0.0320652079642	0.0319036590389
+UniRef50_UPI00036C7E56	hypothetical protein	2.47067120637e-05	0.000146952064247	0.000122245352183
+UniRef50_A7HEZ4	Phospho 2 dehydro 3 deoxyheptonate aldolase	0.000136276530269	0.00709858768996	0.00696231115969
+UniRef50_UPI0004783FA2	hypothetical protein	7.70194275358e-06	1.20762276177e-05	4.37428486412e-06
+UniRef50_A6M2I5	Glycosyl transferase, family 2	0.00056053334548	0.00118242496157	0.00062189161609
+UniRef50_UPI000255A9DA	hypothetical protein	0.000198719384631	3.02757422328e-05	-0.000168443642398
+UniRef50_B7V115	Heme acquisition protein HasAp	0.000184139506761	0.000360875810829	0.000176736304068
+UniRef50_UPI0003612C6D	hypothetical protein, partial	2.82789012801e-05	2.73525923168e-05	-9.263089633e-07
+UniRef50_M9VDC9	Trk system potassium uptake protein TrkA	0.000186566386584	0.00524373562063	0.00505716923405
+UniRef50_B9J7V3	Oligopeptide ABC transporter	0.0045667731217	0.00139239061505	-0.00317438250665
+UniRef50_C5C0W1	Ribosome binding ATPase YchF	0.000170808139747	0.00441969777172	0.00424888963197
+UniRef50_Q9AL94	Rubredoxin	0.000890657907197	0.00200173042234	0.00111107251514
+UniRef50_Q8PIM5	Chemotaxis response regulator protein glutamate methylesterase of group 2 operon	0.00681078064022	0.00185848204966	-0.00495229859056
+UniRef50_G7M3H0	Coagulation factor 5 8 type domain protein	6.21887955241e-05	0.000785203124025	0.000723014328501
+UniRef50_A9GZR7	Aspartate carbamoyltransferase	0.00466807292419	0.00172727238266	-0.00294080054153
+UniRef50_D2VQJ9	Pyruvate dehydrogenase E1 component subunit alpha	0.00885169233073	0.00197991456965	-0.00687177776108
+UniRef50_D8M8V8	Singapore isolate B  whole genome shotgun sequence assembly, scaffold_6	0.00021174800887	0.000267859963495	5.6111954625e-05
+UniRef50_W1DQS7	DNA gyrase subunit B	0.00355445998968	0.000534914489664	-0.00301954550002
+UniRef50_P0AAP6		0.00269962780571	0.00108705535655	-0.00161257244916
+UniRef50_P31433		0.00364084499893	0.000783172907726	-0.0028576720912
+UniRef50_UPI00035CCC77	hypothetical protein	1.17483802484e-05	2.34402002823e-05	1.16918200339e-05
+UniRef50_U6EXA7	Primosome assembly protein PriA	0.000407137860956	0.000683299614086	0.00027616175313
+UniRef50_UPI00041FF968	hypothetical protein	1.16511919583e-05	5.70234020342e-06	-5.94885175488e-06
+UniRef50_S9UZE8		0.000114044105391	0.000225632224138	0.000111588118747
+UniRef50_Q8DR59	Penicillin binding protein 1A	0.00548223567394	0.00140320818075	-0.00407902749319
+UniRef50_G4PHY8	ATP	0.00180489472436	0.00037381861418	-0.00143107611018
+UniRef50_I4F260		5.20133866624e-05	8.49101492329e-06	-4.35223717391e-05
+UniRef50_T1YAD1	Transposase	0.00395970413512	0.000544292229661	-0.00341541190546
+UniRef50_K7S0W1	Short chain dehydrogenase	0.000329202897256	0.00406417890308	0.00373497600582
+UniRef50_UPI0003B56E19	ribosome binding factor A	0.000108313409684	0.000200548031983	9.2234622299e-05
+UniRef50_A0A023RTE9	AsnC family transcriptional regulator	0.00031457165738	0.000448582337002	0.000134010679622
+UniRef50_B8GMP7	DoxX family protein	6.03586090954e-05	3.04659680197e-05	-2.98926410757e-05
+UniRef50_UPI00036B9DAF	hypothetical protein	2.77272094558e-06	1.29050510142e-05	1.01323300686e-05
+UniRef50_A6BA71	Immunogenic protein 	0.000110736886652	7.08877619245e-05	-3.98491247275e-05
+UniRef50_D4FB84	Outer membrane specific lipoprotein transporter subunit LolC family protein 	5.79636133779e-05	9.66693437478e-05	3.87057303699e-05
+UniRef50_L1IEH2		8.5464689335e-06	1.65413283494e-05	7.9948594159e-06
+UniRef50_T1FJ63		3.32257872014e-06	8.39799538825e-07	-2.48277918132e-06
+UniRef50_UPI000360C3D4	cytochrome C transmembrane protein	0.000149144799129	7.50968811202e-05	-7.40479180088e-05
+UniRef50_C8XIL9	Rhamnan synthesis F	3.86963104524e-06	6.07962916546e-06	2.20999812022e-06
+UniRef50_R6JHL0		9.85327172575e-06	1.14783238585e-05	1.62505213275e-06
+UniRef50_UPI0003643D3B	hypothetical protein	3.82743928528e-06	6.11504073334e-06	2.28760144806e-06
+UniRef50_F0VXG5	Adenylate cyclase	0.00591771389633	0.00890380181523	0.0029860879189
+UniRef50_F0RLL2		7.67247944857e-05	0.021617996308	0.0215412715135
+UniRef50_UPI00047873F0	hypothetical protein	1.90386658113e-05	0.000255844518416	0.000236805852605
+UniRef50_UPI0003B6C708	argininosuccinate lyase	2.32482826171e-05	1.25399881283e-05	-1.07082944888e-05
+UniRef50_Q5ZB52	Zinc knuckle containing protein like	7.18326204965e-05	0.000158556972552	8.67243520555e-05
+UniRef50_Q9ZM46	Translation initiation factor IF 2	0.000184085311796	0.00398350639843	0.00379942108663
+UniRef50_UPI0003F739B0	hypothetical protein	0.000136732900876	2.98047350933e-05	-0.000106928165783
+UniRef50_UPI00035E495A	hypothetical protein	4.10435608361e-06	6.38603527873e-06	2.28167919512e-06
+UniRef50_F8F0F6	Appr 1 p processing domain protein	1.28852953544e-05	0.00029571565412	0.000282830358766
+UniRef50_V6JJY2		3.89364837914e-05	0.000920122753983	0.000881186270192
+UniRef50_O31676	6 carboxy 5,6,7,8 tetrahydropterin synthase	0.0144690549395	0.00129060344695	-0.0131784514926
+UniRef50_UPI00032A023A	PREDICTED	0.00470279332887	0.00224455790699	-0.00245823542188
+UniRef50_A6LX21	Molybdate metabolism regulator	0.000421598238542	0.00109169523898	0.000670097000438
+UniRef50_UPI000374B6B2	hypothetical protein	0.00157333441271	0.000150086208694	-0.00142324820402
+UniRef50_UPI0003B781A0	DNA repair protein RecO	2.23566207055e-05	8.1212934778e-05	5.88563140725e-05
+UniRef50_UPI000467B9AD	peptide ABC transporter ATP binding protein	3.13881593914e-05	8.47194966661e-06	-2.29162097248e-05
+UniRef50_Q9SAK4	Succinate semialdehyde dehydrogenase, mitochondrial	0.00358094249344	0.00345758586675	-0.00012335662669
+UniRef50_Q8CS01		0.00515401166009	0.0110586709997	0.00590465933961
+UniRef50_P50097	Inosine 5 monophosphate dehydrogenase	0.000273286255569	0.00481608241931	0.00454279616374
+UniRef50_A3M8U4	Heavy metal RND efflux membrane fusion protein CzcB family protein	0.000192547271485	0.00873637030013	0.00854382302864
+UniRef50_D5RU62	Putative epstein Barr nuclear antigen 1 	0.000100622848688	0.000200068275057	9.9445426369e-05
+UniRef50_F7V1W3		0.000336298541832	6.92934376009e-05	-0.000267005104231
+UniRef50_Q04KQ9		0.00276371054329	0.0025210101165	-0.00024270042679
+UniRef50_Q9RWR5	DNA primase	0.000171300783763	0.0259830054927	0.0258117047089
+UniRef50_UPI00040DB2E3	heme ABC transporter ATP binding protein	1.35608819191e-05	4.19767915406e-05	2.84159096215e-05
+UniRef50_UPI000262D0CC	phosphoenolpyruvate protein phosphotransferase PtsP	1.19957909337e-05	5.37543335686e-05	4.17585426349e-05
+UniRef50_UPI00042B76EF	Heavy metal atpase 5 isoform 1	1.65400293299e-06	1.5632186505e-06	-9.078428249e-08
+UniRef50_F5M5U6		0.00136587909971	0.000865347614835	-0.000500531484875
+UniRef50_Q6ARN9	Bifunctional enzyme IspD IspF	1.17078556704e-05	1.60261529287e-05	4.3182972583e-06
+UniRef50_G4LIC7		0.00110937615678	0.000202271715884	-0.000907104440896
+UniRef50_UPI000252B7A9		3.63926216387e-05	4.2321276286e-05	5.9286546473e-06
+UniRef50_A8TU87	Putative transposase	4.01834004625e-05	2.33844370759e-05	-1.67989633866e-05
+UniRef50_A3PRK6	Transcriptional regulator, LysR family	0.00174659386845	0.00216186384862	0.00041526998017
+UniRef50_M9VAV5		0.000266744043507	0.00411777613678	0.00385103209327
+UniRef50_UPI0003B7B5C8	nitrogen regulatory protein P II 1	2.40911319439e-05	5.36099085147e-05	2.95187765708e-05
+UniRef50_UPI00037696BA	hypothetical protein	5.43508096325e-06	1.02151139109e-05	4.78003294765e-06
+UniRef50_B0VPR2		0.000141204235229	0.0108455255059	0.0107043212707
+UniRef50_H0DJE4	Putative lipoprotein	1.60051396714e-05	1.12568848442e-05	-4.7482548272e-06
+UniRef50_M4HVK3	Degenerate transposase 	0.000284617629462	0.00171833629301	0.00143371866355
+UniRef50_R6UMN9	L serine dehydratase alpha chain	1.58051273234e-05	3.53624363035e-05	1.95573089801e-05
+UniRef50_E3PRA3	Rubrerythrin 	0.00195638533259	0.000326316801329	-0.00163006853126
+UniRef50_UPI000474129C	hypothetical protein	8.00690582471e-06	1.19439341444e-05	3.93702831969e-06
+UniRef50_Q3J096		0.00284809959354	0.00100781739652	-0.00184028219702
+UniRef50_Q3J090		0.00838475891435	0.000697598516207	-0.00768716039814
+UniRef50_UPI000469755B	secretion system protein E	1.17124125567e-05	9.99146085413e-06	-1.72095170257e-06
+UniRef50_Q6F957		0.000476195945936	0.00651832958571	0.00604213363977
+UniRef50_F8L7S5	UDP glucose 6 dehydrogenase	0.00219825905091	0.000144056929367	-0.00205420212154
+UniRef50_K4KNP7		0.000390502747092	0.00105605740712	0.000665554660028
+UniRef50_A3PJZ1	PpiC type peptidyl prolyl cis trans isomerase	0.000839615858485	0.000144526935666	-0.000695088922819
+UniRef50_Q20EX8	Light independent protochlorophyllide reductase subunit N	4.91313101059e-05	2.06354153215e-05	-2.84958947844e-05
+UniRef50_Q48C77	Imidazoleglycerol phosphate dehydratase	0.000518290023376	0.00764781901812	0.00712952899474
+UniRef50_Q9K3V7	Pyridoxine pyridoxamine 5 phosphate oxidase	0.000392793480937	7.09807860841e-05	-0.000321812694853
+UniRef50_Q90512	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 	4.57827311813e-06	1.64659396292e-05	1.18876665111e-05
+UniRef50_UPI00016A4BBE	hypothetical protein	0.00200037194773	0.000729177049855	-0.00127119489787
+UniRef50_Q3J3B2	Glycosyltransferase, Succinoglycan biosynthesis protein exoL	0.000968993381439	0.000230116913138	-0.000738876468301
+UniRef50_UPI0004676BF2	hypothetical protein	5.28246864124e-05	1.03617652512e-05	-4.24629211612e-05
+UniRef50_UPI0003643AE6	hypothetical protein	0.000930708721563	5.74750370064e-05	-0.000873233684557
+UniRef50_T1A3B5	Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 	0.000219957241923	3.41035644992e-05	-0.000185853677424
+UniRef50_R5VTD5	ABC transporter permease protein	0.000288892338411	0.00136938202842	0.00108048969001
+UniRef50_C7NWU6	Cupin 2 conserved barrel domain protein	0.000131750549372	9.06074721059e-05	-4.11430772661e-05
+UniRef50_D6DES4	Amino acid transporters	0.000402249499104	0.0024249686578	0.0020227191587
+UniRef50_UPI000428A00C	spermidine putrescine ABC transporter ATP binding protein	6.53195629079e-05	3.24751363587e-05	-3.28444265492e-05
+UniRef50_Q9RVX3		0.000193584821048	0.0299487419084	0.0297551570874
+UniRef50_X1YHV7	Catalase	1.25068503359e-05	4.43177126713e-05	3.18108623354e-05
+UniRef50_Q1GX76	Transcriptional regulator, TetR family	0.000391483464943	0.000329962799096	-6.1520665847e-05
+UniRef50_UPI0004716697	peptidase S11	3.88876080834e-06	1.90453672133e-05	1.5156606405e-05
+UniRef50_U5P5Q4	Competence protein CglA	0.00744671133743	0.00681102489411	-0.00063568644332
+UniRef50_V2Y8C8		0.000147206788535	4.50656312982e-05	-0.000102141157237
+UniRef50_A4WXA6		0.00563195017634	0.00492194508659	-0.00071000508975
+UniRef50_B9KL58	5 oxoprolinase	0.00720518620451	0.00137031571011	-0.0058348704944
+UniRef50_P95649	Protein CbbY	0.000163649995166	0.000818878681345	0.000655228686179
+UniRef50_UPI0003C44AB2	PREDICTED	2.94492295696e-06	4.68311311067e-05	4.38862081497e-05
+UniRef50_F9H9Z5	Putative phage terminase, large subunit	9.6108933779e-06	9.3195617953e-05	8.35847245751e-05
+UniRef50_A1Z1V6	RepA 	0.000161305417124	3.61472717274e-05	-0.000125158145397
+UniRef50_UPI0004006A19	hypothetical protein	9.59057940353e-06	0.000269922513322	0.000260331933918
+UniRef50_S5JZI7	Purine catabolism regulatory protein	2.40359633594e-05	0.00158197034285	0.00155793437949
+UniRef50_Q4MM88		0.000442366393186	0.000200709695323	-0.000241656697863
+UniRef50_H0DZL7	Relaxase mobilization nuclease domain protein	0.000137623688836	5.30631467751e-05	-8.45605420609e-05
+UniRef50_UPI00037ECD4A	hypothetical protein	1.19076507789e-05	1.46062121686e-05	2.6985613897e-06
+UniRef50_U5YR77	Transcriptional regulator	0.000117565922368	9.00635532562e-06	-0.000108559567042
+UniRef50_UPI000372834D	hypothetical protein	3.69669045612e-06	1.64271178267e-05	1.27304273706e-05
+UniRef50_Q45068	Amino acid carrier protein AlsT	0.0224102101688	0.00403886714413	-0.0183713430247
+UniRef50_Q28VF6		0.00130981999969	0.000752195661279	-0.000557624338411
+UniRef50_UPI00046AC1C8	hypothetical protein	6.40654032508e-06	1.8322472088e-05	1.19159317629e-05
+UniRef50_Q46939	Probable acetyl CoA acetyltransferase	0.0027754171781	0.00110090319651	-0.00167451398159
+UniRef50_R5UAF2		5.79943167142e-05	7.17894684678e-06	-5.08153698674e-05
+UniRef50_A0A017LCS6	Radical SAM superfamily protein	0.00102984065804	8.51056787246e-05	-0.000944734979315
+UniRef50_Q55786	Methionine synthase	7.3133534145e-07	1.82581563621e-05	1.75268210206e-05
+UniRef50_Q038L3	Elongation factor Ts	0.0254438962548	0.00515435395807	-0.0202895422967
+UniRef50_UPI00036D89F3	hypothetical protein	1.14329435152e-05	9.21290961603e-06	-2.22003389917e-06
+UniRef50_Q3IWX5	Putative tape measure protein	0.00121613739864	0.000466554629156	-0.000749582769484
+UniRef50_B5ZBT1	Urease subunit gamma	3.72387245512e-05	0.000223864586392	0.000186625861841
+UniRef50_P26172	Geranylgeranyl diphosphate reductase	0.0056093984257	0.00231795694693	-0.00329144147877
+UniRef50_B0V8T9		0.000259143699447	0.0066128463682	0.00635370266875
+UniRef50_W0F7K7	Permease of the major facilitator superfamily	0.00840139879572	0.00517339360517	-0.00322800519055
+UniRef50_P75818		0.00345785643418	0.000598614942967	-0.00285924149121
+UniRef50_UPI00039A620E	potassium transporter KefB	2.14526179917e-05	6.9948455534e-05	4.84958375423e-05
+UniRef50_D2NU75	3 deoxy D arabino heptulosonate 7 phosphate  synthase	0.000119963767644	0.0032352127704	0.00311524900276
+UniRef50_A5V3C2		0.000216341742202	5.97952398923e-05	-0.00015654650231
+UniRef50_G8V756	Glycosyltransferase	8.33302403623e-05	0.00676860783205	0.00668527759169
+UniRef50_A4WQD3	Glutathione dependent formaldehyde activating, GFA	0.0112000207044	0.00573889148155	-0.00546112922285
+UniRef50_C5AV20		9.24594108654e-06	1.8384063588e-05	9.13812250146e-06
+UniRef50_UPI0003594D3C	PREDICTED	1.31787062104e-06	1.08815351915e-05	9.56366457046e-06
+UniRef50_G0DTF9	Ferrochelatase, HemH	6.48230089558e-05	0.00629588139122	0.00623105838226
+UniRef50_Q03023	Serralysin	0.000474183727002	0.000148774158797	-0.000325409568205
+UniRef50_UPI0003679B46	hypothetical protein	1.80164948797e-05	4.2054940651e-05	2.40384457713e-05
+UniRef50_F7CYV8		9.1431219323e-06	7.44086098823e-05	6.526548795e-05
+UniRef50_A3M893	Putative hemagglutinin hemolysin related protein	0.000309020806155	0.00395451715083	0.00364549634467
+UniRef50_Q6A889		0.000205155428724	0.00419749930826	0.00399234387954
+UniRef50_UPI00041B92EF	hypothetical protein	4.02040357605e-05	0.000111837871662	7.16338359015e-05
+UniRef50_UPI000477E9DF	thioredoxin	0.000112971515246	0.000156139943043	4.3168427797e-05
+UniRef50_UPI000366DA44	hypothetical protein	2.86162365455e-05	2.63131140096e-05	-2.3031225359e-06
+UniRef50_P15006	Protein McrC	0.00328152386479	0.000642244193887	-0.0026392796709
+UniRef50_UPI000366C9FA	hypothetical protein, partial	4.83888056598e-05	4.8319027058e-05	-6.97786018e-08
+UniRef50_UPI000471640D	adenosylcobinamide kinase	9.85599993477e-05	9.83565394934e-05	-2.034598543e-07
+UniRef50_UPI000409FACA	5 carboxymethyl 2 hydroxymuconate isomerase	1.02741765003e-05	3.63838879886e-05	2.61097114883e-05
+UniRef50_F5M3U6	Two component sensor histidine kinase	0.00335956299888	0.000127474836769	-0.00323208816211
+UniRef50_S4PI94	Putative SLIT ROBO Rho GTPase activating protein 1 like protein 	0.00812293550708	0.00418817147005	-0.00393476403703
+UniRef50_E2NSL6		0.000152088253345	0.0011193677449	0.000967279491555
+UniRef50_UPI000471AB25	hypothetical protein	0.000109625039329	3.60959431443e-05	-7.35290961847e-05
+UniRef50_UPI0003B46C11	chemotaxis protein CheY	8.83516156203e-06	3.71517359216e-05	2.83165743596e-05
+UniRef50_Q8DSA7		0.00364336665499	0.00117324737943	-0.00247011927556
+UniRef50_Q8S0V8	Splicing coactivator subunit like protein	1.46354355206e-05	0.000116562622047	0.000101927186526
+UniRef50_UPI000225BECB	nucleoside triphosphate diphosphatase	7.77649251474e-05	1.53166397255e-05	-6.24482854219e-05
+UniRef50_R9SJ55	F420 0	0.00294001871576	0.00143159071807	-0.00150842799769
+UniRef50_G8VD48	ABC transporter, ATP binding protein	0.000392330776222	0.00460702253865	0.00421469176243
+UniRef50_A6LR80	NAD dependent aldehyde dehydrogenase like protein	0.000159806786223	0.00132322591848	0.00116341913226
+UniRef50_F5XNW0		3.37690951902e-05	0.000580415421761	0.000546646326571
+UniRef50_UPI00046EC7BE	hypothetical protein	6.20393200983e-06	1.92320979269e-05	1.30281659171e-05
+UniRef50_P0AEG0	Dipeptide transport system permease protein DppB	0.0144269076051	0.00253636140052	-0.0118905462046
+UniRef50_T1Y8L2	Oligopeptide binding protein oppA	0.0098203090517	0.00205807417859	-0.00776223487311
+UniRef50_UPI000300BC1D	hypothetical protein	8.92963909883e-06	1.88463947954e-05	9.91675569657e-06
+UniRef50_UPI00047DB8CE	hypothetical protein	1.45857962641e-05	6.46343241239e-06	-8.12236385171e-06
+UniRef50_UPI0004785B37	hypothetical protein	0.000106907343712	2.25215931418e-05	-8.43857505702e-05
+UniRef50_A6WXJ2	Porphobilinogen deaminase	0.00425857538568	0.00124914355129	-0.00300943183439
+UniRef50_D3SLJ8	UDP glucose 4 epimerase	0.00402307133855	0.00295879027717	-0.00106428106138
+UniRef50_A7WYP0	Ribosomal RNA small subunit methyltransferase A	0.0106037055159	0.00284542528515	-0.00775828023075
+UniRef50_P65560		0.00448733169675	0.0012576488927	-0.00322968280405
+UniRef50_Q6A6Z5	Malate dehydrogenase	0.000439192650404	0.00498219896361	0.00454300631321
+UniRef50_Q62KH7		2.00941716961e-05	6.56673239208e-05	4.55731522247e-05
+UniRef50_E6E0D9		8.68750840708e-05	0.000344016854746	0.000257141770675
+UniRef50_F2NQ48	TRAP transporter solute receptor, TAXI family	7.62451284265e-06	0.000334385250189	0.000326760737346
+UniRef50_P0A5M3	Transcription termination antitermination protein NusA	0.000415429846087	0.00671679253972	0.00630136269363
+UniRef50_E6E9X3		0.000181774954504	0.000280808277526	9.9033323022e-05
+UniRef50_G7S7S5	Phosphate specific transport system accessory protein PhoU	0.0116380010238	0.00173828250878	-0.00989971851502
+UniRef50_A7INS2	Acyl CoA dehydrogenase domain protein	0.00830897017994	0.00288094584643	-0.00542802433351
+UniRef50_UPI00037BAB2A	hypothetical protein	6.3367877442e-05	2.41840668922e-05	-3.91838105498e-05
+UniRef50_R4XNN0		0.00306976374302	0.000318431799674	-0.00275133194335
+UniRef50_N2N059	CRISPR associated endonuclease Cas3 HD	4.40302475292e-05	0.000143677024017	9.96467764878e-05
+UniRef50_M5EKG8		0.000154164193696	5.94996680631e-05	-9.46645256329e-05
+UniRef50_UPI00036A1325	hypothetical protein	3.67890191056e-05	7.65551078956e-06	-2.9133508316e-05
+UniRef50_UPI00036A73F1	hypothetical protein	5.18691948551e-05	2.68443993523e-05	-2.50247955028e-05
+UniRef50_B7H2D5		0.000311971891609	0.0325587011889	0.0322467292973
+UniRef50_D6EKY2	Integral membrane protein 	1.9866549672e-05	0.000272373921133	0.000252507371461
+UniRef50_Q8CLS1		8.14013651366e-05	0.000659187614593	0.000577786249456
+UniRef50_Q122S9	Transcriptional regulator, LysR family	0.000370982421302	0.000204135971329	-0.000166846449973
+UniRef50_R7DG92		9.3132824787e-05	7.79365599528e-05	-1.51962648342e-05
+UniRef50_S4XSR0		4.17120954832e-05	0.000136273331666	9.45612361828e-05
+UniRef50_D7FGF4	Type I restriction enzyme, R subunit	0.000327735785322	0.00591900239792	0.0055912666126
+UniRef50_UPI00040DE7DB	hypothetical protein	1.40725952706e-05	9.536548345e-06	-4.5360469256e-06
+UniRef50_S4X6I5	Bifunctional autolysin	0.00105103130166	0.00010251538522	-0.00094851591644
+UniRef50_Q9Z3Q8	Rhizobactin siderophore biosynthesis protein RhbE	0.00013291760171	0.00874061251798	0.00860769491627
+UniRef50_T1Y630	Long chain fatty acid  CoA ligase	0.0152780119102	0.00330256676266	-0.0119754451475
+UniRef50_UPI00037871A9	hypothetical protein	2.55065791409e-05	4.45206386239e-05	1.9014059483e-05
+UniRef50_UPI000474835A	threonine dehydratase	4.39339542546e-06	7.31221979111e-06	2.91882436565e-06
+UniRef50_UPI0003655EFD	multidrug transporter	0.00999447241244	0.0027333873132	-0.00726108509924
+UniRef50_UPI0003AF1932	PREDICTED	6.36947069515e-06	5.58618597705e-06	-7.832847181e-07
+UniRef50_A6M0E2	Peptidase S8 and S53, subtilisin, kexin, sedolisin	0.000181765318237	0.00117904417775	0.000997278859513
+UniRef50_UPI0003B4AB4D	ABC transporter	5.25996982589e-06	8.73515143023e-06	3.47518160434e-06
+UniRef50_Q5P6J7	Magnesium transporter	0.000275773741971	0.00388001979982	0.00360424605785
+UniRef50_C9A5A3		6.66418848701e-06	0.00191162717657	0.00190496298808
+UniRef50_A6M351	PAS PAC sensor signal transduction histidine kinase	0.000682900028641	0.0012600405467	0.000577140518059
+UniRef50_P38422	D alanyl D alanine carboxypeptidase DacF	2.22085768197e-05	0.000355089526976	0.000332880950156
+UniRef50_UPI00046F18D5	monovalent cation proton antiporter subunit MnhG PhaG	4.15553944545e-05	0.000534481779401	0.000492926384946
+UniRef50_Q8CP12	ComEC late competence protein 3	0.00842605010053	0.00382703544565	-0.00459901465488
+UniRef50_Q4EJM8		0.000379583348555	0.000336214819927	-4.3368528628e-05
+UniRef50_Q5HL27	Conserved domain protein	0.00240538713088	0.0011032140074	-0.00130217312348
+UniRef50_UPI000364A00D	acetoin dehydrogenase, partial	3.02560924852e-05	1.77109419376e-05	-1.25451505476e-05
+UniRef50_A0A008LUF2		5.87266875639e-05	7.82580304074e-05	1.95313428435e-05
+UniRef50_W1IWA4		2.56020455174e-06	1.07412057254e-05	8.18100117366e-06
+UniRef50_L0GPC1	Site specific recombinase XerD	0.00774344748581	0.00741139537019	-0.00033205211562
+UniRef50_F8JBM1	Glycine betaine proline transporter, membrane component of ABC transporter	0.00122637402212	0.000668264575394	-0.000558109446726
+UniRef50_K4PPW1	Formate nitrite transporter	0.00386937207439	0.00218286845697	-0.00168650361742
+UniRef50_D4HFJ4		0.000179124860886	0.00357852517889	0.003399400318
+UniRef50_A6LYU1	Phage related protein	0.00101289970793	0.000795396687411	-0.000217503020519
+UniRef50_R6ZG02	Precorrin 4 C methyltransferase	0.0050758868007	0.00342277065883	-0.00165311614187
+UniRef50_UPI00000D3C44	single stranded DNA binding protein	0.000279619251005	0.0440318241278	0.0437522048768
+UniRef50_E6JQR4	ISSep1 like transposase	0.000700273732157	0.000119899402032	-0.000580374330125
+UniRef50_A1WG09	Binding protein dependent transport systems inner membrane component	0.0110899632319	0.000561882324087	-0.0105280809078
+UniRef50_UPI000273DF52		2.59820222871e-05	5.18216108177e-05	2.58395885306e-05
+UniRef50_A0A059IL14		0.000237077565681	3.63789595544e-05	-0.000200698606127
+UniRef50_UPI0003657F9C	hypothetical protein	0.000166164352826	2.44748389805e-05	-0.000141689513845
+UniRef50_P23841	HTH type transcriptional regulator XapR	0.0059419791992	0.000568020608962	-0.00537395859024
+UniRef50_A6M2W8	Oxidoreductase domain protein	0.00150973247523	0.00185485564406	0.00034512316883
+UniRef50_F3U531		0.00219127896012	0.00121757585887	-0.00097370310125
+UniRef50_UPI0003292D12	PREDICTED	8.64185440716e-06	2.89382840309e-05	2.02964296237e-05
+UniRef50_Q8XIQ9	Cobalt dependent inorganic pyrophosphatase	0.000738719651419	0.000443446494706	-0.000295273156713
+UniRef50_F3U537		0.00137058430532	0.000440771201791	-0.000929813103529
+UniRef50_B6IP81		0.00683353319476	0.00272498324234	-0.00410854995242
+UniRef50_UPI000361D30F	hypothetical protein	5.65751805467e-05	2.41531869769e-05	-3.24219935698e-05
+UniRef50_UPI0002554CCB	nitrogen regulatory protein P II	1.10803248009e-05	5.56392399798e-05	4.45589151789e-05
+UniRef50_UPI0003B4715F	hypothetical protein	1.30010729307e-06	6.84459402009e-05	6.71458329078e-05
+UniRef50_P52048		0.00578030533758	0.00079139746066	-0.00498890787692
+UniRef50_UPI000471D6BF	ferredoxin, partial	0.000108254393019	0.000436645221838	0.000328390828819
+UniRef50_B6ICF9	TraW protein	0.000112549808408	6.93210732377e-06	-0.000105617701084
+UniRef50_H4VIE3		0.00307534204649	0.000947540230575	-0.00212780181591
+UniRef50_Q9RS28	GGDEF family protein	0.000156871028509	0.0129446348495	0.012787763821
+UniRef50_X0X8Y7	Marine sediment metagenome DNA, contig	0.000174256964983	0.000134467568136	-3.9789396847e-05
+UniRef50_UPI0003B5F7BE	hypothetical protein	0.000807279931217	0.000217109530759	-0.000590170400458
+UniRef50_Q03J15	5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase	0.00802784947647	0.00149137242268	-0.00653647705379
+UniRef50_Q1GUX8	Phosphate binding protein, putative	4.8754686261e-06	6.32830838162e-06	1.45283975552e-06
+UniRef50_G7M2L7	Electron transport complex subunit D	0.000112013646546	0.000286252056733	0.000174238410187
+UniRef50_P37551	Pur operon repressor	0.0031528726533	0.00411082223931	0.00095794958601
+UniRef50_M4FTZ0		4.03466683996e-06	6.23776761275e-05	5.83430092875e-05
+UniRef50_I9KL58		1.2381343247e-05	6.26592041236e-06	-6.11542283464e-06
+UniRef50_UPI00036E9BD8	hypothetical protein	0.000260515976712	0.000154508194645	-0.000106007782067
+UniRef50_S6AYL1		0.000438712708456	0.000216613720186	-0.00022209898827
+UniRef50_UPI000395630A	PREDICTED	6.56454481286e-06	1.08512691688e-05	4.28672435594e-06
+UniRef50_J7QI73	Peptidase U35 phage prohead HK97	9.53643875115e-06	1.33822311884e-05	3.84579243725e-06
+UniRef50_Q2BPZ8	AsmA family superfamily protein	1.76571601574e-06	2.06033922293e-06	2.9462320719e-07
+UniRef50_P75804	Soluble aldose sugar dehydrogenase YliI	0.00593828352981	0.000867792901457	-0.00507049062835
+UniRef50_U5R0R0		0.000289731476073	0.000353597532904	6.3866056831e-05
+UniRef50_Q7MB61	Glucosamine 6 phosphate deaminase	0.00279321763567	0.00390527424619	0.00111205661052
+UniRef50_UPI000346E108	diguanylate cyclase	1.45356387494e-06	4.12356410942e-05	3.97820772193e-05
+UniRef50_W7DA81	L xylulose 5 phosphate 3 epimerase	3.76029153665e-05	3.40642701664e-05	-3.5386452001e-06
+UniRef50_UPI00041EE847	cytochrome C	3.78022244693e-06	4.33580143847e-05	3.95777919378e-05
+UniRef50_UPI000478FA68	hypothetical protein	1.62170036448e-05	4.89065866586e-06	-1.13263449789e-05
+UniRef50_Q8YJ91	Chaperone protein ClpB	0.0071494818727	0.00358759565243	-0.00356188622027
+UniRef50_A6LTD8	Extracellular solute binding protein, family 1	0.000213302302979	0.0010490130859	0.000835710782921
+UniRef50_UPI00036F72CE	hypothetical protein, partial	8.10089493013e-05	1.36300701695e-05	-6.73788791318e-05
+UniRef50_F0YFM2	Expressed protein 	0.000267567842603	5.00321378899e-05	-0.000217535704713
+UniRef50_E6U512	Binding protein dependent transport systems inner membrane component	0.000169276228183	0.00113392012605	0.000964643897867
+UniRef50_M9VB01		0.000838857753003	0.00209795379225	0.00125909603925
+UniRef50_Q633V5	Non canonical purine NTP pyrophosphatase	0.00891491789126	0.00340156580732	-0.00551335208394
+UniRef50_C3MD65	Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00586093077419	0.000638775558795	-0.00522215521539
+UniRef50_W7SSM3	Peptidase C14, caspase catalytic subunit p20 	4.4161380692e-06	0.000329541872715	0.000325125734646
+UniRef50_G2JG48	ABC transporter	0.00111248029523	0.00619060580876	0.00507812551353
+UniRef50_UPI0004693EA9	chemotaxis protein	9.53786137428e-05	1.65183376958e-05	-7.8860276047e-05
+UniRef50_A6LS61	5 nucleotidase SurE	0.00096147500703	0.00132295013277	0.00036147512574
+UniRef50_UPI000255BE74	amino acid ABC transporter substrate binding protein permease, partial	1.4158573212e-05	2.42877355122e-05	1.01291623002e-05
+UniRef50_UPI000465DFA0	hypothetical protein	0.000498826149699	7.32492861085e-05	-0.00042557686359
+UniRef50_UPI0003EBF881	PREDICTED	1.71500024466e-05	2.89288621641e-05	1.17788597175e-05
+UniRef50_Q5HLG3	Sensor protein LytS	0.0229525615304	0.00687505325477	-0.0160775082756
+UniRef50_Q8W390	Putative chitinase	0.000269690674823	0.000443101193807	0.000173410518984
+UniRef50_M9RU26		0.000433461546298	0.000176133223777	-0.000257328322521
+UniRef50_Q2P1L2	tRNA pseudouridine synthase D	5.82296026251e-06	1.27470840355e-05	6.92412377299e-06
+UniRef50_Q5HRU1	Glycosyl transferase, group 1 family protein	0.0166555622872	0.00696453908107	-0.00969102320613
+UniRef50_Q834B4	Phosphate import ATP binding protein PstB 1	3.39112428316e-05	0.00173217668588	0.00169826544305
+UniRef50_F0ML51		7.21310806769e-05	0.00221421653742	0.00214208545674
+UniRef50_P45352	Thymidylate synthase	2.1540499595e-05	7.80290461637e-05	5.64885465687e-05
+UniRef50_UPI00039C4089	thioredoxin	0.000219013299297	0.000461266047324	0.000242252748027
+UniRef50_A6X351	Iron containing alcohol dehydrogenase	0.000226040639422	0.0066094265128	0.00638338587338
+UniRef50_E8U4V1	GAF domain protein	4.4473406745e-05	0.00168261487091	0.00163814146416
+UniRef50_UPI0002627C34	malonyl CoA ACP transacylase	4.82660125291e-06	4.76970551174e-05	4.28704538645e-05
+UniRef50_UPI00037877B4	hypothetical protein	3.63131481281e-06	1.05063725629e-05	6.87505775009e-06
+UniRef50_UPI00036AE186	hypothetical protein	4.72416505519e-05	8.66689483349e-05	3.9427297783e-05
+UniRef50_P45766	Putative amino acid ABC transporter binding protein YhdW	0.00217225688588	0.000778537747539	-0.00139371913834
+UniRef50_M5AC54		0.00499470301883	0.00417031015692	-0.00082439286191
+UniRef50_M9S0P6	LysR family transcriptional regulator	0.000128981545165	0.000727867790809	0.000598886245644
+UniRef50_R7CZZ3		1.17767043811e-05	2.05383606557e-05	8.7616562746e-06
+UniRef50_D3QFY5	Integral membrane protein	0.00625466893921	0.00268249396989	-0.00357217496932
+UniRef50_M5EV42		0.000481281158324	7.29686003674e-05	-0.000408312557957
+UniRef50_T0TDZ2	Elongation factor G	0.00839062952036	0.00627455524733	-0.00211607427303
+UniRef50_U0D6A1	Outer membrane protein	0.000822688658808	0.0009425301419	0.000119841483092
+UniRef50_C6SP66		0.00224451936999	0.00110055914979	-0.0011439602202
+UniRef50_U3TTP8	TonB dependent siderophore receptor	0.000636212340763	0.000330578401339	-0.000305633939424
+UniRef50_UPI000466FDE3	hypothetical protein	2.28001391934e-06	2.929155648e-06	6.4914172866e-07
+UniRef50_Q6FEZ0		0.000120474251758	0.00754838947653	0.00742791522477
+UniRef50_W0H6X8		4.2067815377e-05	4.71869707203e-05	5.1191553433e-06
+UniRef50_R6YEM1		7.66712993118e-06	0.000692568328814	0.000684901198883
+UniRef50_C6SPR1	Dihydrolipoyl dehydrogenase	0.0050840724431	0.00145766599447	-0.00362640644863
+UniRef50_A4WEY1	tRNA pseudouridine synthase B	0.00369400837329	0.00218209101746	-0.00151191735583
+UniRef50_W8U3V5	Group II intron encoded protein LtrA	0.00068930049	0.00429232313831	0.00360302264831
+UniRef50_F3U2K9	Peptidase C14, caspase catalytic subunit p20	0.000313254840488	0.000259387475277	-5.3867365211e-05
+UniRef50_V6HXV9	Winged helix turn helix domain protein	6.47909697948e-05	0.00063571295824	0.000570921988445
+UniRef50_U6JQ37		1.36424595253e-06	5.77167388869e-05	5.63524929344e-05
+UniRef50_Q6GFX2	Catabolite control protein A	0.0230107542346	0.00380101288873	-0.0192097413459
+UniRef50_H6SJD1	Cysteine desulfuration protein SufE	0.000169849825901	2.2906559659e-05	-0.000146943266242
+UniRef50_G1D325	Gp79	7.85300437938e-06	1.20091954979e-05	4.15619111852e-06
+UniRef50_Q8KTE1	Fumarate hydratase class II	0.00301882448378	0.00120720554137	-0.00181161894241
+UniRef50_I1AZW8	Chromosomal replication initiator, DnaA	4.01655559826e-05	1.30139056318e-05	-2.71516503508e-05
+UniRef50_F2JI77	DEAD DEAH box helicase domain protein	0.000122163750441	0.000983344132791	0.00086118038235
+UniRef50_UPI0004663859	MULTISPECIES	5.78527014752e-06	1.62857094683e-05	1.05004393208e-05
+UniRef50_F9YYA3	Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC	8.27820150938e-05	0.0040808011574	0.00399801914231
+UniRef50_G8VHB7		0.000252398093381	0.00271860731682	0.00246620922344
+UniRef50_UPI00035D3834	hypothetical protein, partial	1.3954278882e-05	3.2522093522e-05	1.856781464e-05
+UniRef50_A6KYV3		3.69946429073e-05	0.00496712498247	0.00493013033956
+UniRef50_Q8CQY5		0.0116216326283	0.00266791882637	-0.00895371380193
+UniRef50_G0DXI1		0.000541662418539	0.015393574171	0.0148519117525
+UniRef50_UPI0002C3D833	ATP dependent RNA helicase DDX50, putative	1.10614438841e-06	6.15903223194e-06	5.05288784353e-06
+UniRef50_UPI00036344A4	hypothetical protein	1.15265032854e-05	1.86595725631e-05	7.1330692777e-06
+UniRef50_C6SS95		0.0138552848724	0.000630776599467	-0.0132245082729
+UniRef50_Q8CQY8		0.00858126613482	0.00236399361298	-0.00621727252184
+UniRef50_UPI0004695099	pseudouridine synthase	2.44701952277e-06	6.99215512668e-06	4.54513560391e-06
+UniRef50_C5WGK5		0.000937746168967	0.0021616799477	0.00122393377873
+UniRef50_P0A0V8	Capsule polysaccharide export outer membrane protein CtrA	9.97760322932e-05	0.00334584923105	0.00324607319876
+UniRef50_UPI00037565DC	hypothetical protein	5.82333933469e-05	4.52806632275e-05	-1.29527301194e-05
+UniRef50_F0YFY7	Expressed protein 	2.93941552849e-05	4.94116071243e-05	2.00174518394e-05
+UniRef50_W0YT50	Filamentous hemagglutinin, intein containing	0.000121102884939	8.89954912749e-05	-3.21073936641e-05
+UniRef50_A0A013K1T0	Putative cell surface adhesin domain protein 	0.0017478515412	0.000627780321918	-0.00112007121928
+UniRef50_K5HQD7		0.000458485006708	0.000628333415313	0.000169848408605
+UniRef50_UPI0001D2F1B0	Rrf2 family transcriptional regulator	2.62569170025e-05	2.42468817832e-05	-2.0100352193e-06
+UniRef50_E3YLY4	Pts system fructose specific eiibc component 	3.17013262371e-05	0.000539268317471	0.000507566991234
+UniRef50_UPI00042CC86F		2.92179612234e-05	0.00013084965807	0.000101631696847
+UniRef50_M6FTS0	AAA domain protein	1.50127725082e-05	2.32457579222e-05	8.232985414e-06
+UniRef50_P54542		0.0211770667311	0.00697162482514	-0.014205441906
+UniRef50_UPI0004756AEC	Surfeit locus 1 family protein	3.9831698654e-06	1.63998717244e-05	1.2416701859e-05
+UniRef50_UPI000360228D	hypothetical protein	3.99472170673e-06	3.35481480193e-05	2.95534263126e-05
+UniRef50_U2T0K4		7.93384590487e-05	0.000285244103738	0.000205905644689
+UniRef50_A0A017BYI2	DEAD DEAH box helicase family protein	0.000185800626706	0.0078730021703	0.00768720154359
+UniRef50_P31801	Sodium proton antiporter ChaA	0.00242000503345	0.000164827928474	-0.00225517710498
+UniRef50_B9KWM6	LysR family transcriptional regulatory protein	0.00651276476138	0.00136563969496	-0.00514712506642
+UniRef50_Q73VG0	LigA	1.18349096969e-05	2.80373745768e-05	1.62024648799e-05
+UniRef50_UPI0003AA941F	hypothetical protein	9.91099012995e-06	4.76666131271e-05	3.77556229972e-05
+UniRef50_Q47684	Antitoxin YafW	1.49945012841e-05	0.000594597393014	0.00057960289173
+UniRef50_D5APK9	DMSO TMAO sensor hybrid histidine kinase	0.00726599131777	0.00145761404173	-0.00580837727604
+UniRef50_UPI00041F08CB	MULTISPECIES	1.84859743551e-05	0.000137226462387	0.000118740488032
+UniRef50_UPI00047676D6	glyoxal reductase	3.11950340186e-05	3.89013018287e-05	7.7062678101e-06
+UniRef50_I1ZNC1		0.00012724246815	0.000953241738216	0.000825999270066
+UniRef50_UPI00016C0F2C	oligopeptide ABC transporter ATP binding protein	7.93869603548e-06	6.71646554179e-06	-1.22223049369e-06
+UniRef50_UPI00024911A4	gluconate transporter	5.90401049433e-06	1.14650595551e-05	5.56104906077e-06
+UniRef50_A6UZP9		0.000200435038326	9.17990744267e-06	-0.000191255130883
+UniRef50_UPI000365871E	Clp protease	9.14613458758e-06	2.86656770032e-05	1.95195424156e-05
+UniRef50_W0HC37	Substrate binding region of ABC type glycine betaine transport system	0.000480219356483	0.000403817200349	-7.6402156134e-05
+UniRef50_A1D4H8		0.000122379187286	0.000552552664478	0.000430173477192
+UniRef50_R5XFF7	ABC transporter substrate binding protein QAT family	0.000430067063677	0.0012385229453	0.000808455881623
+UniRef50_UPI00036D9D83	hypothetical protein	0.000158777235822	2.80269474931e-05	-0.000130750288329
+UniRef50_Q9JX66	Dihydroorotate dehydrogenase 	0.00012494084554	0.00325516366687	0.00313022282133
+UniRef50_UPI000371D657	hypothetical protein	1.26036726496e-05	4.80590427109e-05	3.54553700613e-05
+UniRef50_O29581	Adenylate kinase	3.40910940303e-05	6.63361043626e-05	3.22450103323e-05
+UniRef50_Q45582	N acetylmuramic acid 6 phosphate etherase	0.00758781612204	0.00317374799699	-0.00441406812505
+UniRef50_P47719	DNA gyrase subunit A	8.05408709256e-06	8.87320878868e-06	8.1912169612e-07
+UniRef50_Q6FAU5		0.000216945970609	0.00483094348523	0.00461399751462
+UniRef50_UPI0003AA7974	signal recognition particle	7.75182707403e-06	9.64017308387e-05	8.86499037647e-05
+UniRef50_Q52675	Dimethyl sulfoxide trimethylamine N oxide reductase	0.00812643621994	0.00212293964967	-0.00600349657027
+UniRef50_Q2LUC8	Chorismate synthase	6.55328459078e-06	1.84290991789e-05	1.18758145881e-05
+UniRef50_B1X8Q2	Ribosomal RNA large subunit methyltransferase K L	0.00399910582681	0.000557058959427	-0.00344204686738
+UniRef50_F9YZR8	Iron transport system substrate binding protein	0.000231113870722	0.00547211647534	0.00524100260462
+UniRef50_UPI0003B48391	LytTR family transcriptional regulator	2.00136546821e-06	4.27448158308e-06	2.27311611487e-06
+UniRef50_UPI0004411AE2	hypothetical protein AURDEDRAFT_166722	6.82667144968e-07	1.63220407764e-06	9.49536932672e-07
+UniRef50_UPI0003941221	PREDICTED	0.000237421369263	3.44831840947e-05	-0.000202938185168
+UniRef50_Q87DN0	Tyrosine recombinase XerD	0.00192384921908	0.000549766637191	-0.00137408258189
+UniRef50_Q67WC5		0.0001527252576	0.000138740300889	-1.3984956711e-05
+UniRef50_Q4FQA2		1.72858157524e-05	7.90999981851e-05	6.18141824327e-05
+UniRef50_H2G6W3	Protein NrdI	1.3901852386e-05	5.92540963524e-05	4.53522439664e-05
+UniRef50_M4K0R6	LacI family transcriptional regulator	0.000606915299343	0.000722649038466	0.000115733739123
+UniRef50_UPI0003FCCCFB	hypothetical protein	5.23336474174e-06	9.27646657875e-06	4.04310183701e-06
+UniRef50_T0T3K2	Metallo beta lactamase domain protein	4.36125390153e-06	0.000138244366515	0.000133883112613
+UniRef50_Q9L0Q6	Cysteine  tRNA ligase	3.63105669167e-06	1.43219687708e-05	1.06909120791e-05
+UniRef50_U0AT69	Metabolite transporter YdjK	0.00142401941223	0.000594155404957	-0.000829864007273
+UniRef50_A7KA93		5.30746186852e-05	0.000142750590251	8.96759715658e-05
+UniRef50_Q5LXH7	Universal stress family protein	0.0168377153901	0.000388574612093	-0.016449140778
+UniRef50_UPI0004700444	hypothetical protein	2.95072308392e-05	2.99255490629e-05	4.183182237e-07
+UniRef50_Q9HVP8	Dephospho CoA kinase	0.00046989957119	0.000348799258104	-0.000121100313086
+UniRef50_Q8TQW9	Putative ABC transporter ATP binding protein MA_1418	4.7568740153e-05	1.08818093754e-05	-3.66869307776e-05
+UniRef50_Q5LWX2	Flagellar basal body rod protein FlgC	0.00850166906782	0.000611000079721	-0.0078906689881
+UniRef50_UPI00047CD293	DNA recombination protein RecO	2.20545042034e-05	7.71868359545e-05	5.51323317511e-05
+UniRef50_P97030	Epoxyqueuosine reductase	0.0179117983362	0.0043860975459	-0.0135257007903
+UniRef50_A4XW57	Hpt protein	0.00365309021469	0.00101833346619	-0.0026347567485
+UniRef50_Q3IVV6	Polysaccharide export transporter, PST Family	0.00203333992779	0.000632574389624	-0.00140076553817
+UniRef50_Q3JX83		0.000430031245957	4.24356917644e-05	-0.000387595554193
+UniRef50_D8JJQ0	Iron ABC transporter membrane protein	0.000344545834963	0.0103796050427	0.0100350592077
+UniRef50_W7W788		0.000368075807395	2.28756011952e-05	-0.0003452002062
+UniRef50_I7EPE2	S adenosylmethionine uptake transporter like protein	0.00421890456793	0.000535444547611	-0.00368346002032
+UniRef50_Q8NKC2	Enolase 1 2	8.04695343407e-06	1.82023579126e-05	1.01554044785e-05
+UniRef50_A5N5L0		0.00024745135657	0.00313126237801	0.00288381102144
+UniRef50_UPI0003B31866	amino acid transporter	1.62498168409e-05	2.66803650859e-05	1.0430548245e-05
+UniRef50_B2V575	O antigen polymerase family	0.000777208020325	0.00247762386036	0.00170041584003
+UniRef50_UPI00037E8A3A	hypothetical protein, partial	0.000257003085984	0.000106632957577	-0.000150370128407
+UniRef50_K4PVR2	CBS domain protein	0.0054940797655	0.00122279660278	-0.00427128316272
+UniRef50_A5CWX9	Glutamate  tRNA ligase	3.86575344122e-06	1.25651572801e-05	8.69940383888e-06
+UniRef50_UPI00035ED9D3	hypothetical protein	4.8993748251e-06	7.54785941628e-06	2.64848459118e-06
+UniRef50_G7MC17	Universal protein YeaZ	0.000340077467434	0.00275138063398	0.00241130316655
+UniRef50_UPI0003613988	hypothetical protein	3.0493919609e-05	1.16814632187e-05	-1.88124563903e-05
+UniRef50_R1FS00		1.23635185851e-05	0.00010474000316	9.23764845749e-05
+UniRef50_UPI000464095F	hypothetical protein	0.000101952176092	0.00103291487048	0.000930962694388
+UniRef50_P39576	Branched chain amino acid aminotransferase 2	0.0268107376028	0.00648218218842	-0.0203285554144
+UniRef50_UPI000464121D	hypothetical protein	2.4612526735e-06	4.72561856263e-06	2.26436588913e-06
+UniRef50_K1RE18		6.2816312872e-06	6.10208507727e-06	-1.7954620993e-07
+UniRef50_P15327	Bisphosphoglycerate mutase	6.23795600731e-06	1.08268953876e-05	4.58893938029e-06
+UniRef50_F0XXU5		8.74650125795e-06	0.000113113787233	0.000104367285975
+UniRef50_F0YHA3		0.000236426599738	1.24088389482e-05	-0.00022401776079
+UniRef50_UPI000462977B	histidine kinase	0.000112583443757	6.48716970574e-05	-4.77117466996e-05
+UniRef50_A0A059MSQ1	Nitrate reductase	0.0150568675188	0.0123481090345	-0.0027087584843
+UniRef50_F9Z138		0.000219894750786	0.00433502596118	0.00411513121039
+UniRef50_UPI00046D9133	phosphoenolpyruvate carboxykinase	8.02112816047e-06	0.000428474870624	0.000420453742464
+UniRef50_Q8KGA4	tRNA N6 adenosine threonylcarbamoyltransferase	5.38758578937e-06	8.83245350637e-06	3.444867717e-06
+UniRef50_E2NSW7		4.54287105067e-05	6.73012857944e-05	2.18725752877e-05
+UniRef50_Q3IUZ2	Heme oxygenase	0.0435390875864	0.00373236877723	-0.0398067188092
+UniRef50_B2TJJ8	tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA	0.000666924419929	0.00154178983577	0.000874865415841
+UniRef50_Q16BP5		7.66175360171e-05	6.06961755882e-05	-1.59213604289e-05
+UniRef50_D7BLM1	Binding protein dependent transport systems inner membrane component	0.000232061058724	0.00440577014963	0.00417370909091
+UniRef50_R5GV02	Secreted protein containing YkuD domain	1.07616879793e-05	0.000172612542519	0.00016185085454
+UniRef50_B7GH97	ABC type phosphate transport system, permease component	0.00748560292923	0.00240597102306	-0.00507963190617
+UniRef50_D2NRP6	Coenzyme F420 reducing hydrogenase, beta subunit	0.000234504103953	0.00076882732741	0.000534323223457
+UniRef50_UPI000366D18B	hypothetical protein	1.96797320789e-05	9.24132575723e-05	7.27335254934e-05
+UniRef50_B5ZBT9	Proline  tRNA ligase	4.65135926004e-06	1.99945943491e-05	1.53432350891e-05
+UniRef50_Q8UIG9	Non canonical purine NTP pyrophosphatase	0.00688642360407	0.00101184815712	-0.00587457544695
+UniRef50_UPI0004643C42	hypothetical protein, partial	0.000139933459821	0.000161856424623	2.1922964802e-05
+UniRef50_UPI00046FAF78	hypothetical protein	0.000103507330461	0.000590485042604	0.000486977712143
+UniRef50_B2UXE1		0.000343169080774	0.000661788553117	0.000318619472343
+UniRef50_K0DDY9	Microcin C7 resistance MccF related protein	0.00405030845321	0.000821269919409	-0.0032290385338
+UniRef50_Q6GH34	N anthranilate isomerase	0.0065051868209	0.00350095556353	-0.00300423125737
+UniRef50_A8L6K4	LexA repressor	3.16645847368e-05	1.1081991629e-05	-2.05825931078e-05
+UniRef50_Q9Z3Z9	Toluene tolerance protein ttg2D	0.000491783184043	0.00127247701284	0.000780693828797
+UniRef50_I0I649	Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK	0.000612139680036	0.000780441547387	0.000168301867351
+UniRef50_F6D1L5	Xylose isomerase domain containing protein TIM barrel	0.00224925413178	0.00102320336228	-0.0012260507695
+UniRef50_Q9RZ79	Transposase, putative	0.000123478133149	0.0429027097673	0.0427792316342
+UniRef50_P0AB12	Inner membrane protein YccF	0.00172346402246	0.000516588988672	-0.00120687503379
+UniRef50_A6LXM0	Alkyl hydroperoxide reductase  Thiol specific antioxidant  Mal allergen	0.00018874299443	0.00142051889635	0.00123177590192
+UniRef50_L5KNJ4	WD repeat containing protein 87	8.09052772138e-07	3.23534098249e-07	-4.85518673889e-07
+UniRef50_UPI000377831E	hypothetical protein	1.01831861527e-05	2.85735257348e-05	1.83903395821e-05
+UniRef50_UPI0003B6F3ED	nucleoside triphosphate diphosphatase	0.000117363265233	5.04742258989e-05	-6.68890393341e-05
+UniRef50_A1B0E7	Acetylglutamate kinase	0.000154155108597	8.48405521458e-05	-6.93145564512e-05
+UniRef50_Q5P1C8		8.32591470293e-05	0.000163380493103	8.01213460737e-05
+UniRef50_X1KF22	Marine sediment metagenome DNA, contig	0.000685793501564	0.000112301788684	-0.00057349171288
+UniRef50_Q07GR3		0.016581224447	0.00248152299019	-0.0140997014568
+UniRef50_E6MWK1	SbmA BacA like family protein	0.000161548925324	0.00176243468271	0.00160088575739
+UniRef50_W6KN67	Putative NADH ubiquinone oxidoreductase 40 kDa subunit	7.36214076142e-05	8.61396934836e-06	-6.50074382658e-05
+UniRef50_UPI0003B48A00	GMP synthase	6.15960390187e-06	8.85403732431e-06	2.69443342244e-06
+UniRef50_UPI00032AF5D9	PREDICTED	0.00011285820038	9.47630406671e-05	-1.80951597129e-05
+UniRef50_Q9ZKP0	Glycerol 3 phosphate dehydrogenase [NAD+]	0.000385798571872	0.00390734971314	0.00352155114127
+UniRef50_Q8CPV9	Poly D alanine transfer protein	0.0219088762896	0.00361427352327	-0.0182946027663
+UniRef50_G8VMV3	Sialidase	9.83036429352e-05	0.00487860616049	0.00478030251755
+UniRef50_Q1MPX7	4 hydroxy tetrahydrodipicolinate synthase	5.08967976595e-06	2.05997135341e-05	1.55100337682e-05
+UniRef50_UPI00037FAB1B	hypothetical protein, partial	0.000129396873694	0.0114959373946	0.0113665405209
+UniRef50_B0TQM3	3 isopropylmalate dehydratase small subunit	3.07330698401e-05	5.52039687365e-05	2.44708988964e-05
+UniRef50_Q1JGW5	NAD kinase	0.00645814430224	0.00141989020267	-0.00503825409957
+UniRef50_A7I616	Imidazole glycerol phosphate synthase subunit HisF	0.000756609975408	0.00468632765413	0.00392971767872
+UniRef50_F6CVN5	GAF domain protein	0.0135596815316	0.00564192330961	-0.00791775822199
+UniRef50_Q8ZRF8		0.00297211154937	0.00152008493276	-0.00145202661661
+UniRef50_D3DYP4	Glycosyl transferase GT2 family	0.00821424456438	0.00107840977881	-0.00713583478557
+UniRef50_I6T9G0	Transmembrane protein	0.00687963158644	0.0019368285029	-0.00494280308354
+UniRef50_UPI000288BCD3	nitrate ABC transporter ATPase	4.53552548777e-05	1.27279426934e-05	-3.26273121843e-05
+UniRef50_C1N5D9	Predicted protein	4.96470169118e-05	0.000112684440923	6.30374240112e-05
+UniRef50_UPI0004636F1F	hypothetical protein	0.000230679144739	6.71846796626e-05	-0.000163494465076
+UniRef50_C0QHY2	UvrB2	3.78237584406e-05	8.91367576156e-05	5.1312999175e-05
+UniRef50_R4ZU58	Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen	0.00027825399592	0.000229198903288	-4.9055092632e-05
+UniRef50_E3D229	Chromosome partition protein Smc	3.56904496265e-05	0.00304679435341	0.00301110390378
+UniRef50_Q250M1	50S ribosomal protein L24	0.00168048246176	0.0214926424239	0.0198121599621
+UniRef50_UPI000473E9CF	hypothetical protein, partial	3.69502597392e-05	2.87360092872e-05	-8.214250452e-06
+UniRef50_Q818M5	Probable glycine dehydrogenase  subunit 2	0.0238938454721	0.00597346017526	-0.0179203852968
+UniRef50_M7TFP2	Putative tho complex subunit 2 protein	6.81067763257e-06	0.000703367453174	0.000696556775541
+UniRef50_U5MPT8	Bacteriohemerythrin	0.000976256867724	0.00433232381113	0.00335606694341
+UniRef50_R5HX70	Ethanolamine utilization protein EutP	0.00751721073371	0.00139439891413	-0.00612281181958
+UniRef50_Q6ZG43		5.48403386872e-05	9.80887042638e-05	4.32483655766e-05
+UniRef50_I6T6D9	Glycerophosphoryl diester phosphodiesterase	0.00422852342985	0.00326617517008	-0.00096234825977
+UniRef50_P07604	Transcriptional regulatory protein TyrR	0.00620117634629	0.00135549898565	-0.00484567736064
+UniRef50_Q8CN32	Thiamine phosphate synthase	0.00629361685471	0.0158059280677	0.00951231121299
+UniRef50_Q04939	Sucrose operon repressor	0.000240199252677	0.00193219036903	0.00169199111635
+UniRef50_Q47RU5	Polyribonucleotide nucleotidyltransferase	0.000182767993463	0.00714262766938	0.00695985967592
+UniRef50_A0A024HFG1		0.0010752233141	0.000247467201068	-0.000827756113032
+UniRef50_H3WBP5		0.00206681316991	0.000486688668404	-0.00158012450151
+UniRef50_J0MXI6	Adenosylmethionine 8 amino 7 oxononanoate transaminase	0.00348502938672	0.00183774195303	-0.00164728743369
+UniRef50_R5BEJ3		6.93908067699e-05	0.00162769708649	0.00155830627972
+UniRef50_A6LVT5		0.000168124925177	0.000946665331784	0.000778540406607
+UniRef50_I2DH65		0.00011257037441	0.00117121703789	0.00105864666348
+UniRef50_UPI000345C5CB	hypothetical protein	6.81971497556e-06	5.01983139938e-05	4.33785990182e-05
+UniRef50_UPI00037DE01D	hypothetical protein	7.56789544466e-05	1.73486913054e-05	-5.83302631412e-05
+UniRef50_G0J3G6	Zinc iron permease	0.00912466851349	0.00431154335565	-0.00481312515784
+UniRef50_U4Q8Z1	Endonuclease III	0.00102386165005	0.00210090339737	0.00107704174732
+UniRef50_UPI00036716D2	hypothetical protein	6.80195942643e-05	3.88384507556e-05	-2.91811435087e-05
+UniRef50_B7IR21	Membrane protein PfoR	0.0209336169686	0.00649784041562	-0.014435776553
+UniRef50_Q7M922	Na H(+) antiporter NhaA	0.000216114010239	0.00282869470504	0.0026125806948
+UniRef50_UPI0003761FCC	hypothetical protein	2.1447436385e-06	7.07869533641e-06	4.93395169791e-06
+UniRef50_Q4K5N7	TonB dependent outermembrane heme receptor HasR	0.000286597476869	7.42312623017e-05	-0.000212366214567
+UniRef50_T7JW17		0.000785939587724	0.000251333366122	-0.000534606221602
+UniRef50_A0A024HEK4	Porin	0.00261011295582	0.00175132742346	-0.00085878553236
+UniRef50_P44700		0.000738311246761	0.000130286781696	-0.000608024465065
+UniRef50_UPI000374F1B4	hypothetical protein	1.45067788055e-05	7.85186536664e-06	-6.65491343886e-06
+UniRef50_UPI00041B0045	hypothetical protein	2.20748775524e-06	5.03677510498e-06	2.82928734974e-06
+UniRef50_A1ATB7	Chitinase like protein	6.30622375573e-06	1.52552859258e-05	8.94906217007e-06
+UniRef50_H1SFP6		0.000141722455005	8.53028432373e-05	-5.64196117677e-05
+UniRef50_B4EUV9	Glutamate  cysteine ligase	0.00206377764425	0.000134438560782	-0.00192933908347
+UniRef50_F7XAZ8		0.000198229730383	4.21579601885e-05	-0.000156071770195
+UniRef50_W5X8Y0	Peptidase M48	1.38654061062e-05	1.41144001206e-05	2.489940144e-07
+UniRef50_O67137	DNA gyrase subunit B	4.39997863012e-06	1.22551844734e-05	7.85520584328e-06
+UniRef50_K9ZYZ2	Arabinose efflux permease family protein	0.000119206101737	0.0205589752463	0.0204397691446
+UniRef50_A5ULL7		0.00297225907426	0.000708760092468	-0.00226349898179
+UniRef50_UPI00046F1E3C	hypothetical protein	1.26873860828e-05	5.0168209657e-05	3.74808235742e-05
+UniRef50_T0TL61	Lactose transport regulator 	1.53536775642e-05	6.48244188079e-05	4.94707412437e-05
+UniRef50_Q48UU5	Dephospho CoA kinase	0.00953093777523	0.00472545999697	-0.00480547777826
+UniRef50_UPI000463EC33	hypothetical protein	0.000198911799001	0.000111640289318	-8.7271509683e-05
+UniRef50_UPI00022347EB	PREDICTED	2.46429742265e-06	8.42214638841e-06	5.95784896576e-06
+UniRef50_I0EKZ4		0.000219894750786	0.00557459306959	0.0053546983188
+UniRef50_G7M9E2	Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000450620950411	0.00118738813975	0.000736767189339
+UniRef50_P65761	Ribulose phosphate 3 epimerase	0.000437242458129	0.00854835968379	0.00811111722566
+UniRef50_UPI00046FBBBF	NADH dehydrogenase	6.86121984767e-05	0.000127211279563	5.85990810863e-05
+UniRef50_F0N3E0	Cytoplasmic membrane protein fxsA	0.000234463347108	0.00406139111418	0.00382692776707
+UniRef50_C4J1H3		0.000409578550276	0.000999172290877	0.000589593740601
+UniRef50_Q89L00	Serine  tRNA ligase	0.0107566958561	0.00029234109763	-0.0104643547585
+UniRef50_R0F7X0	Integral membrane protein MviN 	0.000306630550148	0.000198897245898	-0.00010773330425
+UniRef50_R0UHS1	Putative phage associated protein	4.65897663776e-05	0.0045540670446	0.00450747727822
+UniRef50_Q8CUF7		0.110224020908	0.0454665444219	-0.0647574764861
+UniRef50_G2TGT9	Cobalt transport protein	0.000190009725932	0.00601016880922	0.00582015908329
+UniRef50_A5N7Z4	Predicted kinase	0.000238662361821	0.000651585918362	0.000412923556541
+UniRef50_UPI0003819C59	hypothetical protein	8.72516090294e-06	9.38912677734e-06	6.639658744e-07
+UniRef50_L0LQZ5		0.000743009680486	0.000439680468259	-0.000303329212227
+UniRef50_B5SF72		2.49092813432e-05	3.16786564492e-05	6.769375106e-06
+UniRef50_A0A013VHK1	Transposase	4.14775602109e-05	2.69701180834e-05	-1.45074421275e-05
+UniRef50_UPI00037C70BA	hypothetical protein	5.50994953737e-06	2.62054163011e-05	2.06954667637e-05
+UniRef50_V9R2C2	Membrane protein	0.000407177420556	0.000330578401339	-7.6599019217e-05
+UniRef50_H8FXB7		0.000149233923074	7.504670227e-05	-7.4187220804e-05
+UniRef50_H8FXB4		0.000234347300812	0.000141234199185	-9.3113101627e-05
+UniRef50_P54462	Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.0203580712091	0.00426646247612	-0.016091608733
+UniRef50_UPI00037DBCEA	hypothetical protein, partial	1.37025148585e-05	1.18574092261e-05	-1.8451056324e-06
+UniRef50_S5SFD1		2.58007632619e-05	2.80988874222e-06	-2.29908745197e-05
+UniRef50_UPI000375BFC5	hypothetical protein	7.77121079081e-06	2.02524797919e-06	-5.74596281162e-06
+UniRef50_H3WII0		0.000771185244842	7.59452860521e-05	-0.00069523995879
+UniRef50_Q2RG70	Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region	0.000310262456591	0.000319261302914	8.998846323e-06
+UniRef50_B7V7H6		0.00055786106727	0.000984389017326	0.000426527950056
+UniRef50_O68045	DNA polymerase III subunit epsilon like protein	0.000743431578925	0.000539981291656	-0.000203450287269
+UniRef50_B7V5S0		0.000786274064212	0.000308062720852	-0.00047821134336
+UniRef50_A9B1M6		3.51137641153e-05	4.22774751959e-05	7.1637110806e-06
+UniRef50_K8ETB2		0.000109355192806	0.00132726560005	0.00121791040724
+UniRef50_P78937	Sulfate adenylyltransferase	9.02138832696e-05	5.10465803275e-05	-3.91673029421e-05
+UniRef50_Q47EP3	Error prone DNA polymerase	0.00042124783504	0.000126018676189	-0.000295229158851
+UniRef50_A0A026RF42	Diguanylate cyclase	0.00032116849012	0.000134791477824	-0.000186377012296
+UniRef50_P74861	Aromatic amino acid aminotransferase	0.000589011596326	0.000792362563739	0.000203350967413
+UniRef50_A4J657	NADH quinone oxidoreductase subunit D	1.13021451636e-05	2.37238741028e-05	1.24217289392e-05
+UniRef50_UPI0003A2B6FD	uroporphyrinogen decarboxylase	6.32850264661e-06	0.000188432202058	0.000182103699411
+UniRef50_UPI0003660926	Cro Cl family transcriptional regulator	0.00024266775905	2.79405363841e-05	-0.000214727222666
+UniRef50_W9B2U5	Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.000139427502255	4.176857519e-05	-9.7658927065e-05
+UniRef50_A1ASQ4		1.07874508205e-05	3.62863149535e-05	2.5498864133e-05
+UniRef50_UPI0003B4C286	oxidoreductase	4.11012281665e-05	6.01522952245e-06	-3.50859986441e-05
+UniRef50_UPI0003B45BD8	peptide ABC transporter ATP binding protein	9.54442566009e-06	9.56323493439e-06	1.88092743e-08
+UniRef50_Q05626		0.000775656141478	0.00100676149498	0.000231105353502
+UniRef50_UPI00036ED21D	hypothetical protein	0.000813119955571	0.00103684797422	0.000223728018649
+UniRef50_Q9G021	Phi ETA orf 24 like protein	0.00137250020466	0.000816543885337	-0.000555956319323
+UniRef50_O26935		0.0016819739176	0.000380236101113	-0.00130173781649
+UniRef50_Q4QLU9	23S rRNA  C(5)) methyltransferase RlmC	0.00287306788598	0.000783199043592	-0.00208986884239
+UniRef50_P19262	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial	3.77209184039e-06	5.8055057455e-06	2.03341390511e-06
+UniRef50_UPI000466CF44	hypothetical protein, partial	1.32662964437e-05	1.69715116519e-05	3.7052152082e-06
+UniRef50_UPI00042AB16A	PREDICTED	7.54777288966e-05	0.000318698680276	0.000243220951379
+UniRef50_G2KYU1		0.000625344752869	0.000228247940239	-0.00039709681263
+UniRef50_UPI0004645274	hypothetical protein, partial	0.000130782794563	3.17876366238e-05	-9.89951579392e-05
+UniRef50_UPI00016C59CC	ABC type multidrug transport system, ATPase component, partial	3.52119131375e-05	1.31574952526e-05	-2.20544178849e-05
+UniRef50_UPI0002FCA31A	hypothetical protein	0.000230274725677	0.000129274123384	-0.000101000602293
+UniRef50_UPI000465045A	glutathione synthetase	5.18552849191e-05	8.02523520297e-05	2.83970671106e-05
+UniRef50_Q3J1E9	Plasmid and phage replicative helicase	0.00913075280516	0.00234776033579	-0.00678299246937
+UniRef50_Q9HML8	Phosphate import ATP binding protein PstB 2	1.16942725619e-05	0.000147833286614	0.000136139014052
+UniRef50_Q1IZ14	Major facilitator superfamily MFS_1	7.91375238722e-05	0.00303156226216	0.00295242473829
+UniRef50_UPI0004219822	hypothetical protein	2.32860421517e-05	3.6916690131e-05	1.36306479793e-05
+UniRef50_O83327	CTP synthase	7.01329252741e-06	8.5070302577e-05	7.80570100496e-05
+UniRef50_Q51559	Rhamnosyltransferase 1 subunit A	0.00113236721943	0.000708567437779	-0.000423799781651
+UniRef50_P05719	Type 1 restriction enzyme EcoKI specificity protein	0.00290364002369	0.00126686926462	-0.00163677075907
+UniRef50_A1U0X4	N anthranilate isomerase	1.10592815915e-05	6.50626549224e-05	5.40033733309e-05
+UniRef50_UPI00047A0DA3	cation	0.000199049384127	0.000709943691843	0.000510894307716
+UniRef50_UPI000379D46E	hypothetical protein	2.63592460515e-05	5.54479059578e-05	2.90886599063e-05
+UniRef50_D6GSS9	CRISPR associated endonuclease Cas1	0.00422455519902	0.000431611893752	-0.00379294330527
+UniRef50_G7MA72	Cys Met metabolism pyridoxal phosphate dependent protein	0.000931396860111	0.00221944649005	0.00128804962994
+UniRef50_UPI00036713D4	hypothetical protein	0.000115168961292	6.38332080909e-05	-5.13357532011e-05
+UniRef50_UPI00005C7F68	hypothetical protein	0.00756672371091	0.00138698075168	-0.00617974295923
+UniRef50_W4V5S1	Electron transfer flavoprotein	1.00416539455e-05	1.37795435268e-05	3.7378895813e-06
+UniRef50_C6SH91	Copper transporting ATPase copA	5.34682703719e-05	0.00251794614812	0.00246447787775
+UniRef50_B5F2H2	Porin thermoregulatory protein EnvY	7.0917025558e-05	0.000120391508817	4.9474483259e-05
+UniRef50_Q1GFF4	Transcriptional regulator, XRE family	0.000680907387788	0.000326739513398	-0.00035416787439
+UniRef50_UPI0003828BA0	hypothetical protein	1.01514421555e-05	1.72177951526e-05	7.0663529971e-06
+UniRef50_UPI00037D9868	hypothetical protein	3.61577737852e-05	0.000216349234575	0.00018019146079
+UniRef50_J3M965		0.000442768252838	0.00222755444406	0.00178478619122
+UniRef50_W4UAJ0	Integral membrane protein	4.3693027582e-05	0.000755738376825	0.000712045349243
+UniRef50_Q8CUF1		0.00429994075062	0.00216276634162	-0.002137174409
+UniRef50_B7V1W7	Vanillate O demethylase oxygenase subunit	0.000114853749147	0.00575832139712	0.00564346764797
+UniRef50_P32721	D allose import ATP binding protein AlsA	0.00627220960356	0.00487989412088	-0.00139231548268
+UniRef50_A4XIS1	Bifunctional protein GlmU	4.18654747068e-06	5.07337271199e-06	8.8682524131e-07
+UniRef50_Q2SM53	SufE protein probably involved in Fe S center assembly	1.90824251422e-05	1.68165196228e-05	-2.2659055194e-06
+UniRef50_Q9KRL4	Carboxynorspermidine carboxyspermidine decarboxylase	0.000102980743078	8.30739051027e-06	-9.46733525677e-05
+UniRef50_UPI00035E542D	hypothetical protein	3.69557565204e-05	2.44055033728e-05	-1.25502531476e-05
+UniRef50_F0Y457		0.000193432161966	0.000822219723141	0.000628787561175
+UniRef50_Q3J3X6		0.00528152513841	0.000530633076176	-0.00475089206223
+UniRef50_B9KS17	Chemotaxis protein methyltransferase	0.0160956173897	0.0045274182983	-0.0115681990914
+UniRef50_A6LX14	GCN5 related N acetyltransferase	0.000235438246685	0.00217646779182	0.00194102954513
+UniRef50_I4DAA0	UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase	0.00242318351035	0.000575006335563	-0.00184817717479
+UniRef50_F9Z004	Menaquinone specific isochorismate synthase	0.000165564030199	0.00644130951652	0.00627574548632
+UniRef50_UPI0003C1484E		3.42418972292e-06	1.53411790021e-06	-1.89007182271e-06
+UniRef50_A8LC93	NADH quinone oxidoreductase subunit I	2.21565439207e-05	8.11312366933e-05	5.89746927726e-05
+UniRef50_UPI0003141905	hypothetical protein	8.57101305966e-05	6.2356200803e-05	-2.33539297936e-05
+UniRef50_U2Z6J9		1.88403600774e-05	5.13764815013e-05	3.25361214239e-05
+UniRef50_B9E8Y3	Xanthine phosphoribosyltransferase	0.0153540988411	0.00367421704271	-0.0116798817984
+UniRef50_UPI00036CDCFE	hypothetical protein	9.64780395073e-05	0.000204216397562	0.000107738358055
+UniRef50_Q8CP83	2 oxoglutarate dehydrogenase E1 component	0.018636790867	0.00398732613491	-0.0146494647321
+UniRef50_UPI00030EEC63	hypothetical protein	0.00019084247147	3.61474083056e-05	-0.000154695063164
+UniRef50_Q04JH4	Triosephosphate isomerase	1.92248946055e-05	0.00488347589596	0.00486425100135
+UniRef50_Q4L9P9	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0237682542607	0.00753192880043	-0.0162363254603
+UniRef50_P0AEH3	Protein ElaA	0.0346817930719	0.00113782586522	-0.0335439672067
+UniRef50_V5WXJ4	Lytic transglycosylase	0.00130789180878	0.0015769621105	0.00026907030172
+UniRef50_Q8CTV2	ATP phosphoribosyltransferase regulatory subunit	0.00674622572899	0.00395368219863	-0.00279254353036
+UniRef50_V9U722		0.00553940761972	0.00145237723867	-0.00408703038105
+UniRef50_K7RTT6	O antigen polymerase	0.000262968339136	0.00959417425795	0.00933120591881
+UniRef50_A3PH69	Alpha beta hydrolase	0.00198264573618	0.000865237791873	-0.00111740794431
+UniRef50_UPI0003B51C59	ABC transporter permease	2.58103776828e-05	3.34060704141e-05	7.5956927313e-06
+UniRef50_Q57S48	HTH type transcriptional repressor AllR	0.00264163304755	0.00362041843285	0.0009787853853
+UniRef50_UPI00029A79A0	HAD family hydrolase	5.2702814321e-05	0.000173432249524	0.000120729435203
+UniRef50_G8VAK1	ABC transporter	0.000410310857448	0.00302698360664	0.00261667274919
+UniRef50_G9WFA5	Maltose maltodextrin ABC permease	0.00398024301197	0.00169107322023	-0.00228916979174
+UniRef50_UPI0003A1DBBC	sodium	6.3695631343e-05	0.00037646767367	0.000312772042327
+UniRef50_D8LB80		1.64524832966e-05	2.86522974023e-06	-1.35872535564e-05
+UniRef50_UPI00037A8200	hypothetical protein	5.96278313763e-06	4.58069254279e-05	3.98441422903e-05
+UniRef50_X3EKF3		4.96137885679e-05	5.92589235048e-05	9.6451349369e-06
+UniRef50_W4HLY6		0.000206295347483	3.05856013721e-05	-0.000175709746111
+UniRef50_Q3J3X8		0.0178708096648	0.00388452009428	-0.0139862895705
+UniRef50_K4PQW7		0.000968282567052	0.000700355822605	-0.000267926744447
+UniRef50_UPI0002F01115	hypothetical protein	1.42975669354e-05	1.67173770384e-05	2.419810103e-06
+UniRef50_G7U413	Pyridine nucleotide disulfide oxidoreductase	0.000356347795263	0.00566886637644	0.00531251858118
+UniRef50_D3QHT0		0.00925235716019	0.00192619424699	-0.0073261629132
+UniRef50_F9EIZ7		0.000398249745694	0.00133652031744	0.000938270571746
+UniRef50_R7CST7	ABC type proline glycine betaine transport system periplasmic component	0.000131496402917	8.96535594104e-05	-4.18428435066e-05
+UniRef50_M4RA06		0.000147072463189	0.00768430891371	0.00753723645052
+UniRef50_Q2FHR7	Carbamate kinase 1	0.0109880921477	0.00191592924308	-0.00907216290462
+UniRef50_UPI000255E3EB	1 deoxy D xylulose 5 phosphate reductoisomerase	8.99507681555e-05	1.53021916864e-05	-7.46485764691e-05
+UniRef50_P54475	DEAD box ATP dependent RNA helicase CshB	0.00591822693621	0.00811585907005	0.00219763213384
+UniRef50_Q989G9	Mlr6427 protein	0.0130231991246	0.00361434483257	-0.00940885429203
+UniRef50_Q9RZE0		0.000122163750441	0.0145374961013	0.0144153323509
+UniRef50_F0VYG1	Cysteine desulfurase	0.000114621251678	0.00244405402366	0.00232943277198
+UniRef50_B7ICE8	TonB dependent receptor protein	0.00018951621741	0.0038260054362	0.00363648921879
+UniRef50_UPI00046ED547	major facilitator transporter, partial	6.55243909766e-06	2.07922153975e-05	1.42397762998e-05
+UniRef50_Q0SWZ1	1,4 alpha glucan branching enzyme GlgB 1	2.04988237964e-06	2.70011869011e-06	6.5023631047e-07
+UniRef50_D1CAE1	Pyridoxal 5 phosphate dependent protein beta subunit	9.43012751554e-06	1.0575995378e-05	1.14586786246e-06
+UniRef50_Q31MP6	Diguanylate cyclase with GAF sensor	2.78084750586e-05	4.12417913775e-05	1.34333163189e-05
+UniRef50_I6X0E0	Lipoprotein	1.58504723108e-05	2.61098488444e-05	1.02593765336e-05
+UniRef50_M2CCG1		0.0035686646938	0.00126376029742	-0.00230490439638
+UniRef50_W0Z4J7	Histidine kinase	5.84177167014e-05	0.000148282782229	8.98650655276e-05
+UniRef50_B1J7Z5	3 demethylubiquinone 9 3 methyltransferase	0.00219017386806	0.000379421891038	-0.00181075197702
+UniRef50_I1Y621	Lytic murein transglycosylase	0.000122608437683	0.00910707841257	0.00898446997489
+UniRef50_X5EFR9	Two component sensor	5.57037858615e-05	0.00294364044167	0.00288793665581
+UniRef50_X1THZ3	Marine sediment metagenome DNA, contig	1.11381533479e-05	3.5288493879e-05	2.41503405311e-05
+UniRef50_UPI0002195D59	Zn dependent hydrolase	3.52896184622e-06	1.93075033029e-05	1.57785414567e-05
+UniRef50_UPI0003902576	ATP synthase gamma chain	0.000133860279732	2.90029227032e-05	-0.000104857357029
+UniRef50_R9SM98	Radical SAM domain containing protein	0.00212963227343	0.000504985578368	-0.00162464669506
+UniRef50_UPI00030D5D10	hypothetical protein	0.000219104628124	4.98771594867e-05	-0.000169227468637
+UniRef50_G7M580		0.00049713719824	0.000680297921892	0.000183160723652
+UniRef50_E6MYM9		0.000808898547544	0.00469487536722	0.00388597681968
+UniRef50_UPI000376AE97	hypothetical protein	0.00026243952233	0.000274939442967	1.2499920637e-05
+UniRef50_Q28PV9	N acetyl gamma glutamyl phosphate reductase	0.0103608088111	0.0056236187507	-0.0047371900604
+UniRef50_UPI0001BC2E61	thioredoxin reductase	7.01997203629e-06	2.8759509681e-05	2.17395376447e-05
+UniRef50_R5RVQ5		2.22972884241e-05	8.13456768788e-05	5.90483884547e-05
+UniRef50_L0HHM1		0.000165052744804	3.62491890366e-05	-0.000128803555767
+UniRef50_A4X335	ABC transporter related	0.00546215554625	0.0132996681079	0.00783751256165
+UniRef50_A0A023S0B1	Glutathione S transferase	0.000150193364259	0.00430752266902	0.00415732930476
+UniRef50_UPI00035E14F7	hypothetical protein	0.000327889384243	6.12176642895e-05	-0.000266671719953
+UniRef50_I2BCP0		6.55773221752e-05	0.000294603113935	0.00022902579176
+UniRef50_D2NNT4		2.76090624944e-06	9.32403267345e-06	6.56312642401e-06
+UniRef50_UPI00034A702A	hypothetical protein	1.18076873778e-05	1.15194952007e-05	-2.881921771e-07
+UniRef50_Q0TQK1	Trigger factor	0.000891182046329	0.00103261877795	0.000141436731621
+UniRef50_Q4ZQB6	Transcriptional regulator, LysR family	0.000569092874814	0.000420671954498	-0.000148420920316
+UniRef50_P53580	Methionine aminopeptidase B	2.45733545271e-05	0.027988090924	0.0279635175695
+UniRef50_E3EL28	Nicotinate phosphoribosyltransferase and like protein	7.86429143391e-05	0.000558043776739	0.0004794008624
+UniRef50_Q9HUY1	Dihydrolipoyl dehydrogenase 3	3.32814596165e-05	6.38502847262e-05	3.05688251097e-05
+UniRef50_UPI00047E1DD8	hypothetical protein	4.17006319736e-06	1.03959403871e-05	6.22587718974e-06
+UniRef50_Q2Y7L8	Chorismate synthase	0.00344847541689	0.0126181357442	0.00916966032731
+UniRef50_A5V6F9	Anhydro N acetylmuramic acid kinase	5.40083299955e-06	2.48688167267e-05	1.94679837271e-05
+UniRef50_UPI0003B6910D	hypothetical protein	1.18967260701e-05	1.27702661251e-05	8.73540055e-07
+UniRef50_A3PRF9		0.0119904191803	0.00211010264719	-0.00988031653311
+UniRef50_G7WBX4	Arabinose efflux permease family protein	0.000202304594079	0.00149866450885	0.00129635991477
+UniRef50_A2SDV6	3 methyl 2 oxobutanoate hydroxymethyltransferase 1	5.98818429438e-06	8.86705299464e-06	2.87886870026e-06
+UniRef50_I0C160	Glycerophosphodiester phosphodiesterase	0.0113213837572	0.00285707655749	-0.00846430719971
+UniRef50_UPI0003640286	hypothetical protein	3.95865378117e-06	4.92687969092e-05	4.5310143128e-05
+UniRef50_P40871	2,3 dihydroxybenzoate AMP ligase	8.78111553783e-06	0.000269006019936	0.000260224904398
+UniRef50_F8F763		0.0181289481533	0.00803977944792	-0.0100891687054
+UniRef50_G7ZLK0		0.0183150675424	0.00248238435055	-0.0158326831919
+UniRef50_UPI0003629F80	membrane protein, partial	2.48612408341e-05	5.24623882368e-05	2.76011474027e-05
+UniRef50_Q98FA5	Thiamine import ATP binding protein ThiQ	7.72788544042e-06	1.45778381632e-05	6.84995272278e-06
+UniRef50_UPI0003600109	hypothetical protein	1.8900326105e-05	1.11444571544e-05	-7.7558689506e-06
+UniRef50_Q5X9H7	Holliday junction ATP dependent DNA helicase RuvA	0.00729177193588	0.00439581487419	-0.00289595706169
+UniRef50_Q4L5A2	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0198277412269	0.00158205377784	-0.0182456874491
+UniRef50_Q4L7Q5	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00645740686697	0.00294155131318	-0.00351585555379
+UniRef50_P65328	Riboflavin synthase	5.09637756629e-05	5.56829607498e-05	4.7191850869e-06
+UniRef50_Q8CZ55		1.42772776373e-05	0.00276229829954	0.0027480210219
+UniRef50_Q831A8	UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.0331872188932	0.020459449129	-0.0127277697642
+UniRef50_UPI00036518A8	hypothetical protein	0.00011674824398	9.13350634579e-05	-2.54131805221e-05
+UniRef50_P0A264	Outer membrane protein C	0.00772079053831	0.00110480594676	-0.00661598459155
+UniRef50_P44068		0.00266760447144	0.00940787617346	0.00674027170202
+UniRef50_J9YRQ9	Large conductance mechanosensitive channel protein	0.00158417757226	0.000471250061484	-0.00111292751078
+UniRef50_A1B1F2	UDP 3 O acylglucosamine N acyltransferase	0.00442888757957	0.00125230199507	-0.0031765855845
+UniRef50_Q1CUR3	Glutamyl tRNA reductase	8.65132136393e-05	0.00319103585154	0.0031045226379
+UniRef50_UPI00035E28E1	hypothetical protein	6.53430107331e-06	6.28467855974e-05	5.63124845241e-05
+UniRef50_Q0TRY8	Lysine N methylase, homolog	0.000109205204105	0.00206512423193	0.00195591902783
+UniRef50_C4LGM2	Catalase	8.44487670801e-05	0.00489269975426	0.00480825098718
+UniRef50_UPI0002F0DA53	hypothetical protein	3.19484217821e-05	3.19531240963e-05	4.7023142e-09
+UniRef50_F0MZQ2		2.23479749099e-05	8.35576250771e-05	6.12096501672e-05
+UniRef50_UPI000382677B	hypothetical protein	0.000226925829482	7.17079860765e-05	-0.000155217843405
+UniRef50_Q10MG8	Retrotransposon protein, putative, Ty3 gypsy subclass, expressed	7.78486052185e-06	0.000127814362604	0.000120029502082
+UniRef50_H3UXX3		0.0027655723769	0.000514789824035	-0.00225078255287
+UniRef50_A8LNJ9	Flagellar biosynthesis regulatory protein FlaF	9.027201014e-05	9.42644421527e-05	3.9924320127e-06
+UniRef50_UPI0003F80943	hypothetical protein	2.12727593867e-06	4.9545565599e-06	2.82728062123e-06
+UniRef50_K0HHI0		0.000169783803081	0.0049246611229	0.00475487731982
+UniRef50_UPI00005DE9C0	MULTISPECIES	8.34576471041e-06	1.8169669153e-05	9.82390444259e-06
+UniRef50_UPI00040056AC	hypothetical protein	8.93248404841e-06	1.44298065302e-05	5.49732248179e-06
+UniRef50_UPI000368B929	cold shock protein	5.30313289166e-05	6.97309310371e-05	1.66996021205e-05
+UniRef50_A6LVD8		0.000380019451866	0.00134680188875	0.000966782436884
+UniRef50_UPI00037150E3	hypothetical protein	0.000124096716083	0.000170323099998	4.6226383915e-05
+UniRef50_P64558		0.00416361673609	0.000381053813154	-0.00378256292294
+UniRef50_P52559	N5 carboxyaminoimidazole ribonucleotide synthase	4.76450579676e-06	8.95915780389e-06	4.19465200713e-06
+UniRef50_R6KNU0	Glycosyl transferase	0.000347107417614	0.00126998362134	0.000922876203726
+UniRef50_T9UBD7		0.000268010530422	3.72849510488e-05	-0.000230725579373
+UniRef50_A6LXN0	Polyprenyl synthetase	0.000503953857256	0.00310835773641	0.00260440387915
+UniRef50_Q65ID2	Peptide methionine sulfoxide reductase MsrB	1.4935587378e-05	0.000824139642406	0.000809204055028
+UniRef50_UPI0003B62BEC	hypothetical protein, partial	1.0810008296e-05	0.00157009548949	0.00155928548119
+UniRef50_S4WAF1	Synthase [glutamine hydrolyzing]	0.000120647088602	0.00010952938109	-1.1117707512e-05
+UniRef50_U3AMR8		9.34795194891e-06	7.2063233964e-06	-2.14162855251e-06
+UniRef50_G7M622	Transcriptional regulator, LuxR family	0.000196949211577	0.00141124840683	0.00121429919525
+UniRef50_I6SFZ0	TPR domain containing protein	6.29126657933e-06	0.000499407976911	0.000493116710332
+UniRef50_UPI00047C4D4C	hypothetical protein	1.46885477652e-05	3.07224686161e-05	1.60339208509e-05
+UniRef50_Q9Z9U1	Sorbitol dehydrogenase	0.0193516641736	0.0050590100551	-0.0142926541185
+UniRef50_Q5HPF3	Phosphate ABC transporter, permease protein	0.00878099935867	0.00154303750142	-0.00723796185725
+UniRef50_UPI0004652E03	hypothetical protein	0.00206124920403	0.000112428188694	-0.00194882101534
+UniRef50_C1L2X6	UDP N acetylenolpyruvoylglucosamine reductase	1.81031602232e-05	0.000843292360779	0.000825189200556
+UniRef50_D0DAU8	Phage integrase	0.000167275918245	4.34360707186e-05	-0.000123839847526
+UniRef50_Q2J514	Endoribonuclease L PSP	0.000851472155308	0.00323663754501	0.0023851653897
+UniRef50_A6E7D3		0.000198776573373	0.000236873282938	3.8096709565e-05
+UniRef50_UPI000225B5DA	magnesium chelatase; methanol dehydrogenase regulator, partial	5.40364387347e-05	0.000188279228719	0.000134242789984
+UniRef50_A5IPN7		0.000229131606966	0.000122169320374	-0.000106962286592
+UniRef50_B8KSJ4	Phosphate starvation inducible E	5.63365188014e-05	3.29591929588e-05	-2.33773258426e-05
+UniRef50_K0JY23		2.3091407609e-05	7.1054417983e-06	-1.59859658107e-05
+UniRef50_D3T5X9	Mannitol dehydrogenase domain protein	0.000565179451584	0.00128525462466	0.000720075173076
+UniRef50_P24554	DNA repair protein RadA	0.00309342043247	0.00976899845666	0.00667557802419
+UniRef50_UPI0004711C23	6 phospho beta glucosidase	5.50938034135e-06	1.9806022383e-05	1.42966420417e-05
+UniRef50_A3PQ11		0.00642286083439	0.000458636157457	-0.00596422467693
+UniRef50_P25550	Anaerobic sulfatase maturating enzyme homolog AslB	0.00191564907731	0.00149367648179	-0.00042197259552
+UniRef50_Q320T0	Diguanylate cyclase DosC	0.00265782254141	0.000357261126401	-0.00230056141501
+UniRef50_P24752	Acetyl CoA acetyltransferase, mitochondrial	4.80404621216e-06	8.69455576069e-06	3.89050954853e-06
+UniRef50_UPI0003828B5A	hypothetical protein, partial	4.16364986934e-05	2.3046962464e-05	-1.85895362294e-05
+UniRef50_Q070J3	Virion core protein	5.90192665843e-07	9.36802695393e-07	3.4661002955e-07
+UniRef50_A9B2U4	3 methyl 2 oxobutanoate hydroxymethyltransferase	6.34069412285e-06	9.96248383562e-06	3.62178971277e-06
+UniRef50_Q2YZ25	Putative hemin transport system permease protein HrtB	0.022698712603	0.00840512171193	-0.0142935908911
+UniRef50_UPI000479F72A	hypothetical protein	1.27911073191e-05	1.24607745134e-05	-3.303328057e-07
+UniRef50_B9FT55		0.000104229824533	4.05369708573e-05	-6.36928536757e-05
+UniRef50_C6STC0		0.0047151520229	0.000292392777421	-0.00442275924548
+UniRef50_K0ELZ4	Transcriptional regulator	1.18062210939e-05	1.27090826937e-05	9.028615998e-07
+UniRef50_F0RLU8	Alpha beta hydrolase fold protein	0.000662156832023	0.00117715421482	0.000514997382797
+UniRef50_X5QUZ2		0.000107210071844	0.000534885241154	0.00042767516931
+UniRef50_A4WPB0		0.000595658441196	0.000387724339418	-0.000207934101778
+UniRef50_Q2JXG9	tRNA N6 adenosine threonylcarbamoyltransferase	5.80922141835e-06	1.17109049712e-05	5.90168355285e-06
+UniRef50_I0EL02		0.000185648846977	0.00570709903582	0.00552145018884
+UniRef50_A3JC42		3.28843471043e-05	0.000191933406003	0.000159049058899
+UniRef50_P53434	Putative GTP cyclohydrolase 1 type 2	9.18738992938e-06	0.00152904522701	0.00151985783708
+UniRef50_Q1D054		8.88446300182e-05	2.76614349167e-05	-6.11831951015e-05
+UniRef50_A0QJB3	Polyphosphate kinase	1.25884466729e-05	0.000555380391152	0.000542791944479
+UniRef50_UPI00035D6A77	hypothetical protein	3.89183596963e-05	5.63148003496e-06	-3.32868796613e-05
+UniRef50_M1N0K2	FeS cluster assembly protein SufD	0.000346299045347	0.000417167838273	7.0868792926e-05
+UniRef50_V6UQJ7	Membrane protein 	0.000445673408356	0.000149244910393	-0.000296428497963
+UniRef50_UPI0003B63A1B	acetyltransferase	0.000118176132609	0.000116851094155	-1.325038454e-06
+UniRef50_G8NAB2	Replicative DNA helicase DnaB	0.000426209298448	0.0512180383658	0.0507918290674
+UniRef50_A0LV48	Probable dual specificity RNA methyltransferase RlmN	1.53597847628e-05	2.23656383507e-05	7.0058535879e-06
+UniRef50_D4HEJ4	Phospholipase, patatin family	0.000146312398781	0.00633069496057	0.00618438256179
+UniRef50_UPI00037DE98D	hypothetical protein	2.1357038177e-05	1.8065180657e-05	-3.29185752e-06
+UniRef50_F5XRV0	Polyprenyl diphosphate synthase	0.000105541282996	0.00361036326254	0.00350482197954
+UniRef50_O27679	Protein pelota homolog	0.00329525344478	0.000805033787533	-0.00249021965725
+UniRef50_A9ADZ8	BolA family protein	5.5783774969e-05	0.00172846545988	0.00167268168491
+UniRef50_E7PV88	Transposase IS861 orfB	6.73289766303e-05	2.94934636254e-05	-3.78355130049e-05
+UniRef50_UPI0004770260	glucose 1 phosphate adenylyltransferase	4.08635719305e-06	5.8956132068e-05	5.48697748749e-05
+UniRef50_P0A933	Putative polysaccharide export protein GfcE	0.00666031743796	0.000926881587662	-0.0057334358503
+UniRef50_G2I4D0		7.99256087773e-06	2.16785627555e-05	1.36860018778e-05
+UniRef50_UPI0004789CC8	hypothetical protein	0.000115173522346	2.99082739924e-05	-8.52652483536e-05
+UniRef50_Q9RRU8	S ribosylhomocysteine lyase	6.72266251472e-05	0.0583279369581	0.058260710333
+UniRef50_X2LN33		5.16602569039e-05	1.38509723157e-05	-3.78092845882e-05
+UniRef50_B2HU41	NADH quinone oxidoreductase subunit A	6.74261606283e-05	0.00558496713183	0.0055175409712
+UniRef50_U3TT52	Cytoplasmic protein	0.0138377582737	0.00295232341088	-0.0108854348628
+UniRef50_P75916	Inner membrane protein YcdZ	0.000912218933045	0.000397287047353	-0.000514931885692
+UniRef50_P9WQB2	2 isopropylmalate synthase	4.08179916298e-06	3.50369511836e-05	3.09551520206e-05
+UniRef50_O27636	ORC1 type DNA replication protein 2	0.00203981818382	0.00120634950341	-0.00083346868041
+UniRef50_A4J6I7	Xanthine phosphoribosyltransferase	3.60802186924e-05	3.77066008089e-05	1.6263821165e-06
+UniRef50_UPI000374951A	hypothetical protein	3.77008142513e-05	1.70371498e-05	-2.06636644513e-05
+UniRef50_UPI0002DBEA5E	ImpA family type VI secretion associated protein	5.01298295168e-06	9.02939316489e-06	4.01641021321e-06
+UniRef50_UPI0003B4D6D9	NADH dehydrogenase	4.50201320614e-06	7.52577831454e-06	3.0237651084e-06
+UniRef50_F7W6Q2	WGS project CABT00000000 data, contig 2.35	1.96741033551e-06	9.95662297439e-07	-9.71748038071e-07
+UniRef50_UPI0003618C13	2,3 dihydroxybenzoate 2,3 dehydrogenase, partial	4.15946601356e-05	3.71216688124e-05	-4.4729913232e-06
+UniRef50_B9KTW7		0.00424241318697	0.000498115346756	-0.00374429784021
+UniRef50_UPI0001D2F064	adenosylcobinamide phosphate synthase	2.23569813254e-05	9.53480383303e-05	7.29910570049e-05
+UniRef50_UPI000344E65D	phosphomethylpyrimidine synthase	4.43345227567e-06	1.41967490244e-05	9.76329674873e-06
+UniRef50_C0H3V8		7.86133872416e-05	6.80123934597e-05	-1.06009937819e-05
+UniRef50_F8IRV1	Anthranilate synthase component II	0.00681316265366	0.00161732017706	-0.0051958424766
+UniRef50_D4HEY5		0.000654599980668	0.00110055914979	0.000445959169122
+UniRef50_Q5FLZ3	tRNA N6 adenosine threonylcarbamoyltransferase	0.0262870365471	0.0153160634563	-0.0109709730908
+UniRef50_Q5CQR3		1.53387161071e-05	6.56104887678e-05	5.02717726607e-05
+UniRef50_B0VM39	Potassium transporting ATPase C chain	0.000374987109523	0.010565064503	0.0101900773935
+UniRef50_Q8CTZ4	Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0114338220404	0.00216121282061	-0.00927260921979
+UniRef50_C5N0F9	X Pro dipeptidyl peptidase C terminal non catalytic domain protein	0.0156896822387	0.00348452064901	-0.0122051615897
+UniRef50_G7R7B9		0.00115847312024	0.000509873033243	-0.000648600086997
+UniRef50_UPI0003FE850D	hypothetical protein	5.33932403205e-05	6.4062192689e-05	1.06689523685e-05
+UniRef50_P02925	D ribose binding periplasmic protein	0.00507319146911	0.000837530144169	-0.00423566132494
+UniRef50_UPI00030221F2	metallophosphoesterase	3.60871255989e-06	0.000629701916285	0.000626093203725
+UniRef50_A5UN81	Predicted ATPase, AAA+ family	0.00294928313237	0.0007070872076	-0.00224219592477
+UniRef50_UPI0003724574	CRISPR associated protein Csn1, partial	0.0018392035029	0.000411106723978	-0.00142809677892
+UniRef50_A1WZJ2	60 kDa chaperonin	0.0268005975217	0.0139229155658	-0.0128776819559
+UniRef50_P08957	Type I restriction enzyme EcoKI M protein	0.00175921514787	0.00110938204227	-0.0006498331056
+UniRef50_Q98QK7		0.000278911964858	0.000507457703944	0.000228545739086
+UniRef50_A7X4T7	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00528677204065	0.00548070710579	0.00019393506514
+UniRef50_Q57GJ7	Ascorbate specific phosphotransferase enzyme IIA component	0.0029104856148	0.00112715346447	-0.00178333215033
+UniRef50_P58967	Putative homocitrate synthase AksA	3.80550937265e-06	8.35254455261e-06	4.54703517996e-06
+UniRef50_P78067	Thiosulfate sulfurtransferase YnjE	0.001918552526	0.0010243275422	-0.0008942249838
+UniRef50_B7H3X0	Bacterial regulatory helix turn helix protein, AraC family protein	0.000236915892584	0.00978933405055	0.00955241815797
+UniRef50_Q8YAM6	ATP synthase subunit beta 1	1.32029202228e-05	0.00290636368227	0.00289316076205
+UniRef50_Q6GEN7	Tagatose 1,6 diphosphate aldolase	0.0117392290246	0.00185607913453	-0.00988314989007
+UniRef50_A0A024JA58	Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit	9.4694636242e-06	0.00017690166138	0.000167432197756
+UniRef50_UPI000478EDC7	hypothetical protein	0.000212687957533	2.77582337378e-05	-0.000184929723795
+UniRef50_S4C0T0		2.87972154232e-06	0.000931292669092	0.00092841294755
+UniRef50_UPI00047AEF8E	phosphohydrolase	4.27781934739e-06	1.30159444156e-05	8.73812506821e-06
+UniRef50_V5C9A8	Anthranilate 1,2 dioxygenase electron transfer component AntC	2.15240194098e-05	1.28948007131e-05	-8.6292186967e-06
+UniRef50_X1LWS5	Marine sediment metagenome DNA, contig	0.000113230912885	1.56979303293e-05	-9.75329825557e-05
+UniRef50_UPI00016B263F	molecular chaperone GroEL	1.32397823298e-05	8.70740838077e-06	-4.53237394903e-06
+UniRef50_UPI0003787BF0	hypothetical protein	3.26514748465e-05	2.41834077632e-05	-8.4680670833e-06
+UniRef50_Q2SEB7		3.57370694784e-06	5.34485844583e-06	1.77115149799e-06
+UniRef50_Q5HMD7	Cell division protein, FtsW RodA SpoVE family	0.0204393239274	0.00617972085519	-0.0142596030722
+UniRef50_C9Y1J4	Penicillin binding protein activator LpoB	0.00627264501339	0.000277727308957	-0.00599491770443
+UniRef50_K3XR47		6.65677806712e-06	9.95312311704e-06	3.29634504992e-06
+UniRef50_A0AI76	Ribonuclease HII	0.00130802379018	0.00473590015569	0.00342787636551
+UniRef50_Q6AG81	Arginine  tRNA ligase	2.73630674835e-06	0.00133500869557	0.00133227238882
+UniRef50_L3UJQ1		0.000409040933354	0.000548163191922	0.000139122258568
+UniRef50_Q9ZL83	Ribonuclease Y	9.39019872821e-05	0.00470335940686	0.00460945741958
+UniRef50_Q890T6	Conserved protein	0.000628802491806	0.00196375536325	0.00133495287144
+UniRef50_B8I2Q1	LexA repressor	0.00945772278924	0.00486126432313	-0.00459645846611
+UniRef50_W0N7A1	Urea ABC transporter ATP binding protein	0.00430729455398	0.00223610168042	-0.00207119287356
+UniRef50_P95231	Serine acetyltransferase	9.14936860443e-06	3.1969071978e-05	2.28197033736e-05
+UniRef50_UPI00036454DD	hypothetical protein	0.000100964683628	3.74786925159e-05	-6.34859911121e-05
+UniRef50_V4NEJ0	Cupin	0.00012956521331	4.0945897789e-05	-8.8619315521e-05
+UniRef50_G7ZTM6	Capsular polysaccharide synthesis enzyme	0.0112707305353	0.00218048295862	-0.00909024757668
+UniRef50_A3MA53		0.000253914342281	0.00622617523217	0.00597226088989
+UniRef50_M9RK06	Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein	0.00331579272076	0.00092470031499	-0.00239109240577
+UniRef50_A4WX60		0.00460064182079	0.0002590497414	-0.00434159207939
+UniRef50_A6M1Q8	Periplasmic binding protein LacI transcriptional regulator	0.00023519376252	0.000615506306557	0.000380312544037
+UniRef50_UPI000464A0A1	hypothetical protein	0.000299494683304	4.59488546187e-05	-0.000253545828685
+UniRef50_Q5HHQ6	Putative acetyltransferase SACOL0827	0.0196026484559	0.00195959237771	-0.0176430560782
+UniRef50_Q0AP83	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	9.29347169502e-06	8.54862967682e-06	-7.448420182e-07
+UniRef50_D3E0S2		0.00539200134072	0.000250268394227	-0.00514173294649
+UniRef50_W4TUN4	Sugar binding protein	0.000339699433373	0.000208871098032	-0.000130828335341
+UniRef50_B9EAX4	Capsular polysaccharide synthesis protein CapM homolog	0.0165831730562	0.00160779051382	-0.0149753825424
+UniRef50_Q8TKX9	Cysteine desulphurase	0.00195544607495	0.00151595541576	-0.00043949065919
+UniRef50_UPI00037AD2A9	hypothetical protein	2.42925184615e-06	0.000163680525141	0.000161251273295
+UniRef50_G7M1Z6	Methyl accepting chemotaxis sensory transducer with Cache sensor	5.4840579493e-05	0.000819594717126	0.000764754137633
+UniRef50_Q8CTH3		0.000350048521322	6.03386230433e-05	-0.000289709898279
+UniRef50_B5HEJ3		0.000159671545941	0.000124915033282	-3.4756512659e-05
+UniRef50_UPI00036A911D	hypothetical protein	0.000215819166836	3.95997246021e-05	-0.000176219442234
+UniRef50_T1ZGA3	Phosphomethylpyrimidine kinase	0.0079226880745	0.0023469221874	-0.0055757658871
+UniRef50_P14503		3.14416699214e-05	1.64480680309e-05	-1.49936018905e-05
+UniRef50_UPI00037E35E9	hypothetical protein	5.53392102257e-06	0.000472152392411	0.000466618471388
+UniRef50_A3MZB9	Bifunctional protein PyrR	1.93222579283e-05	4.55037444567e-05	2.61814865284e-05
+UniRef50_UPI0003B6F64B	ABC transporter	2.65609478455e-06	5.61329681251e-06	2.95720202796e-06
+UniRef50_R2NFJ2	Pyruvate flavodoxin oxidoreductase	0.000481651038881	0.00311806484705	0.00263641380817
+UniRef50_A0A028CJT1	LysR family transcriptional regulator	0.00193681284374	0.00117892041956	-0.00075789242418
+UniRef50_B8I741	ABC transporter transmembrane region	0.000220760911454	0.00306058031153	0.00283981940008
+UniRef50_A0RBD6	Dehydratase	9.80439086498e-05	0.000359411811592	0.000261367902942
+UniRef50_UPI000409C1DE	hypothetical protein	0.00098957499695	6.69842992572e-05	-0.000922590697693
+UniRef50_G4RBE3	Mannonate dehydratase	0.00326374039885	0.000663936577622	-0.00259980382123
+UniRef50_D3QHV2	Sec independent protein translocase protein TatC	0.0158708493303	0.00280481299394	-0.0130660363364
+UniRef50_E0XRZ7		5.08708555389e-05	2.99119982787e-05	-2.09588572602e-05
+UniRef50_UPI0003EDA90F	porin	2.9839456409e-05	0.000122544724618	9.2705268209e-05
+UniRef50_V5VAB4	Bacterial SH3 domain containing protein	0.000166537936259	0.0127863040218	0.0126197660855
+UniRef50_Q9RZJ6		0.00140372518616	0.000448582337002	-0.000955142849158
+UniRef50_Q0BST5	DNA gyrase subunit A	9.00702142388e-06	1.95441422267e-05	1.05371208028e-05
+UniRef50_P44499	Peptidyl prolyl cis trans isomerase B	4.70174852084e-05	3.73870841931e-05	-9.6304010153e-06
+UniRef50_C3M8S2	Holo [acyl carrier protein] synthase	2.34706567405e-05	6.53740128412e-05	4.19033561007e-05
+UniRef50_B6IVS2	Inner membrane protein, putative	3.40071432112e-05	4.25495740781e-05	8.5424308669e-06
+UniRef50_UPI00047BD367	hypothetical protein	8.20210789772e-05	7.2976127754e-05	-9.0449512232e-06
+UniRef50_A6WKC8	UPF0246 protein Shew185_1115	1.78739628481e-05	2.92211102985e-05	1.13471474504e-05
+UniRef50_D0JN49	Phosphoribosylformylglycinamidine synthase	0.00322013581259	0.00263366553752	-0.00058647027507
+UniRef50_UPI0004716A86	ArsR family transcriptional regulator	7.26729627766e-05	4.54385767127e-05	-2.72343860639e-05
+UniRef50_H9KKZ5		1.63865616273e-05	4.69552308527e-06	-1.1691038542e-05
+UniRef50_G7T9S3	Hemolysin	1.03813785047e-05	0.0185651933379	0.0185548119594
+UniRef50_A3PJ91	RDD domain containing protein	0.00134457504704	0.00114316143946	-0.00020141360758
+UniRef50_K4NAS3	ATP binding protein	9.62829334316e-05	0.00450725498205	0.00441097204862
+UniRef50_UPI000465E2F8	hypothetical protein	2.04680601567e-05	8.06963275557e-06	-1.23984274011e-05
+UniRef50_UPI0004720CE8	hypothetical protein	1.65157244039e-06	2.21435530712e-06	5.6278286673e-07
+UniRef50_P0AAZ6	Replication associated recombination protein A	0.00333903177393	0.000186319687815	-0.00315271208611
+UniRef50_UPI00016A522C	branched chain amino acid ABC transporter, ATP binding protein, putative, partial	0.00012046407464	4.18048887437e-05	-7.86591858963e-05
+UniRef50_M5AH54	Nod factor export ATP binding protein I	0.008451752392	0.001959947716	-0.006491804676
+UniRef50_UPI0003EF2FDA	hypothetical protein	2.28545633113e-05	0.000952634532885	0.000929779969574
+UniRef50_A9B932	Transposase Tn3 family protein	8.877058781e-06	0.000269295828127	0.000260418769346
+UniRef50_A3VKI4		8.68386358093e-06	1.81167427234e-05	9.43287914247e-06
+UniRef50_P24228	D alanyl D alanine carboxypeptidase DacB	0.0021479328406	0.00061178896677	-0.00153614387383
+UniRef50_B9KM28		0.000903462595371	0.000196974497368	-0.000706488098003
+UniRef50_S6D8D3	Low affinity zinc transport protein	4.04143507692e-06	5.10572362342e-06	1.0642885465e-06
+UniRef50_P76395		0.00408367658429	0.00120632635497	-0.00287735022932
+UniRef50_P76393		0.00161884864734	0.000603845694919	-0.00101500295242
+UniRef50_Q4FV40	Protein translocase subunit SecA	9.14554623038e-05	0.0026393849541	0.0025479294918
+UniRef50_D8JKX1		0.000191805412359	0.00661926593243	0.00642746052007
+UniRef50_UPI000380F87B	hypothetical protein	9.4605649507e-06	3.50506512857e-05	2.5590086335e-05
+UniRef50_UPI000369EA6C	hypothetical protein	7.54927689689e-05	1.29042710414e-05	-6.25884979275e-05
+UniRef50_UPI0003FAEB30	hypothetical protein	0.000122397552346	1.92188156742e-05	-0.000103178736672
+UniRef50_L8GXF4		3.89880431757e-06	1.57115098714e-06	-2.32765333043e-06
+UniRef50_N2E2F5	4Fe 4S binding domain protein 	0.000767599519366	0.000361612292071	-0.000405987227295
+UniRef50_UPI0003B6D996	histidine kinase	7.82075901019e-05	1.49547228307e-05	-6.32528672712e-05
+UniRef50_UPI00047EF35E	UDP glucose 6 dehydrogenase	4.94273422851e-06	6.77405876674e-06	1.83132453823e-06
+UniRef50_M3A5Y8		5.09450165986e-05	2.85063862555e-05	-2.24386303431e-05
+UniRef50_Q3JZG9	DNA polymerase IV	0.000317450039145	0.00386881677843	0.00355136673928
+UniRef50_UPI000225C205	uroporphyrinogen decarboxylase	4.41287561633e-06	1.94944434551e-05	1.50815678388e-05
+UniRef50_UPI0003D25C42		2.05832915712e-06	3.72932413979e-06	1.67099498267e-06
+UniRef50_P54570	ADP ribose pyrophosphatase	2.9378034508e-05	0.00159275626219	0.00156337822768
+UniRef50_A5UKV4	Tetrahydromethanopterin S methyltransferase, subunit H, MtrH	0.0046837178207	0.00120810300869	-0.00347561481201
+UniRef50_U9QRW9		0.000312418786305	0.000420739908483	0.000108321122178
+UniRef50_G7MD43	Major facilitator superfamily MFS_1	0.000298887627138	0.000306467582996	7.579955858e-06
+UniRef50_B7N8L4	NAD NADP dependent betaine aldehyde dehydrogenase	0.00741335995176	0.00734301281587	-7.034713589e-05
+UniRef50_P0AA45	Ribosomal small subunit pseudouridine synthase A	0.00656397842415	0.00109868773183	-0.00546529069232
+UniRef50_UPI000255C349	acetolactate synthase large subunit, biosynthetic type	4.30534744141e-06	1.50541746648e-05	1.07488272234e-05
+UniRef50_V9VYZ6		0.00340849217295	0.00168722795394	-0.00172126421901
+UniRef50_UPI0003626A85	hypothetical protein	2.68570898279e-05	1.94718317402e-05	-7.3852580877e-06
+UniRef50_UPI0003B4A90A	ABC transporter permease	7.90656112397e-05	6.90202662406e-05	-1.00453449991e-05
+UniRef50_W6RWI6	Accessory gene regulator A	0.000310688641281	0.00139499873323	0.00108431009195
+UniRef50_Q6GCF0		0.0143803548941	0.00135450576654	-0.0130258491276
+UniRef50_Q3IWP7	Transcriptionalregulator, CopG family	0.000795254564388	0.00167160399168	0.000876349427292
+UniRef50_UPI00046423A0	cytochrome C peroxidase	6.14593576839e-06	5.79683765031e-05	5.18224407347e-05
+UniRef50_UPI00035E30BB	hypothetical protein, partial	1.62725133144e-06	0.000151848534125	0.000150221282794
+UniRef50_D8JHX6	HAD superfamily hydrolase	0.000849202608176	0.00492110311384	0.00407190050566
+UniRef50_R9YPY8	5 formyltetrahydrofolate cyclo ligase	0.00888531742269	0.00272502592665	-0.00616029149604
+UniRef50_UPI00047AFA4E	phosphoadenosine phosphosulfate reductase	9.51370248088e-05	4.50406777512e-05	-5.00963470576e-05
+UniRef50_UPI0003783983	hypothetical protein, partial	0.00149800726181	0.000596716908635	-0.000901290353175
+UniRef50_Q8D7Y9	Putative phosphoenolpyruvate synthase regulatory protein	2.40515221541e-05	3.36287931878e-05	9.5772710337e-06
+UniRef50_Q3J212	Putative site specific recombinase	0.0124805215646	0.00227530356911	-0.0102052179955
+UniRef50_E0XYI3		8.28471921266e-05	8.76973032016e-05	4.850111075e-06
+UniRef50_W8RQU9	NAD dependent epimerase dehydratase	0.00240651310919	0.000414480153221	-0.00199203295597
+UniRef50_E9AHU1	Putative proteophosphoglycan ppg3	5.38380646231e-05	0.000253598347206	0.000199760282583
+UniRef50_UPI0003B65B0E	hypothetical protein	0.000273272186874	9.16829402051e-05	-0.000181589246669
+UniRef50_UPI000379B86A	DNA glycosylase	0.000135124853812	5.5579394333e-05	-7.9545459479e-05
+UniRef50_UPI00047102D6	hypothetical protein, partial	1.09581281357e-05	7.55361424701e-06	-3.40451388869e-06
+UniRef50_UPI0003FB549E	hypothetical protein	2.07900101879e-05	6.81847792411e-05	4.73947690532e-05
+UniRef50_D2NAU9		0.00330362446384	0.0010361989656	-0.00226742549824
+UniRef50_Q8CSJ5		0.00898705882384	0.000844944481866	-0.00814211434197
+UniRef50_B2A1L0		2.19092300153e-05	2.60860289061e-05	4.1767988908e-06
+UniRef50_M2E1P6		0.00578117043215	0.00190368564859	-0.00387748478356
+UniRef50_C1DHE5	Glutamine  tRNA ligase	4.65932100577e-06	2.1836635499e-05	1.71773144932e-05
+UniRef50_UPI000349FB4B	hypothetical protein	5.12862679603e-06	7.76288285823e-06	2.6342560622e-06
+UniRef50_W8YH03		0.000148503291249	0.000170549703163	2.2046411914e-05
+UniRef50_Q4WFT3	GMP synthase [glutamine hydrolyzing]	2.74020234713e-05	3.44541475935e-05	7.0521241222e-06
+UniRef50_U6GVJ1		2.53489742296e-07	2.11887520512e-06	1.86538546282e-06
+UniRef50_Q9RRB6	S layer protein, putative	0.000309035540679	0.0430984142786	0.0427893787379
+UniRef50_F8DJB0		0.00473770014378	0.00425966617895	-0.00047803396483
+UniRef50_O67929	Cyclic pyranopterin monophosphate synthase	4.87570064408e-06	0.000164232784999	0.000159357084355
+UniRef50_B8E1C0	Aspartate  tRNA ligase	3.92084850654e-06	3.79200537625e-06	-1.2884313029e-07
+UniRef50_UPI0001BF5F9C	hypothetical protein SMAC_10519, partial	7.69795205211e-05	2.80075915917e-05	-4.89719289294e-05
+UniRef50_UPI0004689482	ATPase	5.38689782115e-06	5.25482724182e-05	4.71613745971e-05
+UniRef50_P0AEF6	Transcriptional regulatory protein DpiA	0.00795460004886	0.00104938647764	-0.00690521357122
+UniRef50_UPI00047CE7FB	hypothetical protein	5.55983754963e-06	2.85299547789e-06	-2.70684207174e-06
+UniRef50_UPI0003B7292B	NADPH	7.5125552962e-06	3.61498331687e-05	2.86372778725e-05
+UniRef50_UPI00036B1DE9	hypothetical protein	1.62014959467e-05	2.07508154981e-05	4.5493195514e-06
+UniRef50_Q8EEW2	Beta hexosaminidase	4.93984915594e-06	2.68147756788e-05	2.18749265229e-05
+UniRef50_A0A023RVE4	Pseudouridine synthase	0.000181774954504	0.00582748975575	0.00564571480125
+UniRef50_R5AKD9		3.73609548616e-06	6.18462798639e-06	2.44853250023e-06
+UniRef50_UPI000301EB97	hypothetical protein	3.73669893678e-05	4.92656746437e-05	1.18986852759e-05
+UniRef50_O27389	Diaminopimelate epimerase	0.00327128112704	1.09949399603e-05	-0.00326028618708
+UniRef50_Q3J219		0.00917279890428	0.0117821220607	0.00260932315642
+UniRef50_Q2NTI7	Zinc import ATP binding protein ZnuC	3.94086584827e-05	9.96151373797e-06	-2.94471447447e-05
+UniRef50_UPI00036763CC	hypothetical protein	0.000389532424231	0.000141565132136	-0.000247967292095
+UniRef50_UPI0003825772	30S ribosomal protein S3, partial	0.000661850742575	0.00231739106474	0.00165554032217
+UniRef50_Q5HQ24	Glutamate racemase	0.0120358582851	0.0026952915443	-0.0093405667408
+UniRef50_I6TZB4	Bifunctional biotin  [acetyl CoA carboxylase] synthetase biotin operon repressor	0.00695937004861	0.00372892728292	-0.00323044276569
+UniRef50_Q6FDU5		0.000147840465605	0.00875799678865	0.00861015632304
+UniRef50_UPI00035CC932	hypothetical protein	0.000556201652412	9.03625637947e-05	-0.000465839088617
+UniRef50_D5ALJ9		0.00389286109336	0.000451924523232	-0.00344093657013
+UniRef50_D5ALJ7		0.000897977843215	0.000117522195184	-0.000780455648031
+UniRef50_Q04945	NADH dependent butanol dehydrogenase B	0.000300657964137	0.000560228426439	0.000259570462302
+UniRef50_P15259	Phosphoglycerate mutase 2	6.79648735669e-06	1.0549584957e-05	3.75309760031e-06
+UniRef50_UPI00047BB10D	branched chain amino acid ABC transporter ATP binding protein	7.29621829493e-06	6.30157142243e-05	5.57194959294e-05
+UniRef50_Q9RSI5		0.000540049443584	0.0726578826685	0.0721178332249
+UniRef50_P17410	HTH type transcriptional regulator ChbR	0.00131271512007	0.000456465532064	-0.000856249588006
+UniRef50_C5NTZ6	Reaction center 	0.00145637926656	0.00051794170825	-0.00093843755831
+UniRef50_Q8CPT4	3 oxoacyl [acyl carrier protein] synthase 3 protein 1	0.0109053691337	0.00265226926027	-0.00825309987343
+UniRef50_UPI000370920E	hypothetical protein	5.13427303554e-05	4.83911296476e-05	-2.9516007078e-06
+UniRef50_Q8EM59	Thymidine kinase	0.0181811676006	4.22128983982e-05	-0.0181389547022
+UniRef50_C5FB81	APC family amino acid polyamine organocation transporter	0.0206801559155	0.00409173673634	-0.0165884191792
+UniRef50_Q9RUP8	Isoleucine  tRNA ligase	3.50064286395e-05	0.0244647270947	0.0244297206661
+UniRef50_UPI0003F80A61	thioredoxin	6.65319215028e-05	0.000223040135141	0.000156508213638
+UniRef50_Q5HPR5	DNA translocase FtsK	0.0165738678715	0.0045214202804	-0.0120524475911
+UniRef50_N6VGJ5	Thiamin phosphate synthase	4.01053256054e-05	3.85528087616e-05	-1.5525168438e-06
+UniRef50_G7U546	TENA THI 4 family protein	0.000160632335681	0.00807202310559	0.00791139076991
+UniRef50_A1SGH4	Cell envelope related transcriptional attenuator	5.16184758638e-06	4.11324039319e-05	3.59705563455e-05
+UniRef50_Q3A5S0	Malate dehydrogenase	5.60644806432e-05	1.64495190045e-05	-3.96149616387e-05
+UniRef50_M9KL10	Outer membrane autotransporter barrel domain protein	0.000816261896091	0.000323762748526	-0.000492499147565
+UniRef50_E2CRM4		0.000104665849264	5.60318320821e-05	-4.86340171819e-05
+UniRef50_Q8CN54	Antiholin like protein LrgA	0.0206835770519	0.0049334672803	-0.0157501097716
+UniRef50_T0TSZ1		0.00576308851901	0.00286756274229	-0.00289552577672
+UniRef50_Q95YF6	Molluscan shell protein 1	9.99022283468e-06	7.85149612036e-06	-2.13872671432e-06
+UniRef50_B9XKZ0	Putative GAF sensor protein	8.80463329241e-06	0.000790367397433	0.000781562764141
+UniRef50_UPI00036B80A8	hypothetical protein	7.98156911501e-05	5.4424926186e-05	-2.53907649641e-05
+UniRef50_M9RTF7	Methionine biosynthesis protein	0.000414819767969	0.00224543806803	0.00183061830006
+UniRef50_K2BFX5		1.0844384873e-05	1.83190639973e-05	7.4746791243e-06
+UniRef50_Q98K42	Mll1647 protein	3.22950934952e-06	2.79133489141e-06	-4.3817445811e-07
+UniRef50_Q2SMN3	Protein RnfH	1.97981141273e-05	3.10034306319e-05	1.12053165046e-05
+UniRef50_UPI0004652B27	NAD synthetase	3.80855132462e-06	0.000129381877545	0.00012557332622
+UniRef50_Q9ZJI6	Ribonuclease J	1.85416023437e-05	0.00302422167414	0.0030056800718
+UniRef50_UPI00046A5D50	hypothetical protein	6.75618749799e-05	2.45372467597e-06	-6.51081503039e-05
+UniRef50_Q1QWQ5	6 phosphogluconate dehydrogenase, NAD binding protein	0.000243539347646	0.00772318046895	0.0074796411213
+UniRef50_UPI0003C48D73	PREDICTED	0.000212362489	0.000112722052039	-9.9640436961e-05
+UniRef50_F0KC60		0.000521870030673	0.00378854069662	0.00326667066595
+UniRef50_D5WZP9	Cytochrome c oxidase, cbb3 type, subunit II	0.00234857297039	0.00158632839779	-0.0007622445726
+UniRef50_UPI00026C64ED	S ribosylhomocysteinase	2.49425519051e-05	0.00065140565094	0.000626463099035
+UniRef50_D8JKE4	PHA synthase PhaC	0.00010673496386	0.00605334677859	0.00594661181473
+UniRef50_C6KU66	Plasmid partitioning protein ParA	0.000163664872663	4.52589525592e-05	-0.000118405920104
+UniRef50_U3SUV7		0.00223750198164	0.00242186727053	0.00018436528889
+UniRef50_UPI000287B527	sugar ABC transporter permease	4.8991578337e-05	3.56728838022e-05	-1.33186945348e-05
+UniRef50_UPI00036C10C9	hypothetical protein	1.05726964858e-05	2.9541374656e-05	1.89686781702e-05
+UniRef50_U5UN27		0.0175479213927	0.0026163435327	-0.01493157786
+UniRef50_UPI00035FF879	hypothetical protein	2.73148004037e-05	5.61424637207e-05	2.8827663317e-05
+UniRef50_UPI000467CF8F	hypothetical protein, partial	0.000352790643786	0.00025108100091	-0.000101709642876
+UniRef50_P18789	Citrate synthase	0.00222091341502	0.000399707980111	-0.00182120543491
+UniRef50_UPI00047BD49C	riboflavin biosynthesis protein RibF	1.01807692948e-05	4.99445097867e-05	3.97637404919e-05
+UniRef50_UPI0003A806BB	molybdopterin biosynthesis protein MoeA	5.15139652815e-06	8.35858037128e-06	3.20718384313e-06
+UniRef50_B9L170	NADH quinone oxidoreductase subunit B	1.26591718892e-05	7.59961378345e-05	6.33369659453e-05
+UniRef50_Q2NFJ8	Diphthine synthase	0.00240542829535	0.000218753114953	-0.0021866751804
+UniRef50_N8Y2G0		2.98737999521e-05	4.12469972382e-05	1.13731972861e-05
+UniRef50_UPI00016A848B	hypothetical protein	0.000100398111918	0.000155395618397	5.4997506479e-05
+UniRef50_B7V093	Type 4 fimbrial biogenesis protein FimU	0.00272759203791	0.0034072967789	0.00067970474099
+UniRef50_G7M1Q4	Tetratricopeptide TPR_1 repeat containing protein	0.000377589602626	0.00218278521433	0.0018051956117
+UniRef50_G2JI43		0.000347280920311	0.00980972608657	0.00946244516626
+UniRef50_UPI000371FB82	hypothetical protein	6.95343756007e-06	3.0959939695e-05	2.40065021349e-05
+UniRef50_P19932	Hydrogenase 1 operon protein HyaF	0.004623551002	0.000634169705113	-0.00398938129689
+UniRef50_UPI0001B465BD	30S ribosomal protein S4	6.59605504469e-05	0.000102565381989	3.66048315421e-05
+UniRef50_Q9EYV5	HTH type transcriptional regulator GadX	0.00265356823976	0.00185253480907	-0.00080103343069
+UniRef50_UPI0003B44F9E	riboflavin synthase subunit alpha	2.01601960566e-05	5.03666374636e-05	3.0206441407e-05
+UniRef50_UPI000372D2DC	glycerophosphoryl diester phosphodiesterase, partial	6.39187074317e-05	0.00306837343516	0.00300445472773
+UniRef50_Q03UB1	Ribosomal RNA large subunit methyltransferase H	0.0246210129221	0.000387724339418	-0.0242332885827
+UniRef50_H2K9T8	Putative endoribonuclease	9.90411277046e-05	4.94005511401e-05	-4.96405765645e-05
+UniRef50_W9CAE9		7.07329367242e-06	9.09822041451e-07	-6.16347163097e-06
+UniRef50_UPI0003B586D4	30S ribosomal protein S4	5.04087569036e-05	2.00285376673e-05	-3.03802192363e-05
+UniRef50_Q92YJ8	Transposase	0.000128919947333	6.17821340988e-05	-6.71378132342e-05
+UniRef50_A5UKC6	2 methylcitrate dehydratase, MmgE PrpD family	0.00326214061127	0.000953964306426	-0.00230817630484
+UniRef50_D8LYP9	Singapore isolate B  whole genome shotgun sequence assembly, scaffold_1	8.59055515975e-06	1.6055249267e-05	7.46469410725e-06
+UniRef50_Q8VQK4	Putative peptide transport system permease protein BruAb2_1031	0.0130890705342	0.00603962689067	-0.00704944364353
+UniRef50_A3PYA8	Thymidylate synthase	4.58130590285e-05	0.000404868843515	0.000359055784487
+UniRef50_UPI000465565E	hypothetical protein	3.07993047359e-06	5.3482677945e-06	2.26833732091e-06
+UniRef50_P77601	Putative HTH type transcriptional regulator YkgA	0.00175264465717	0.000209197193767	-0.0015434474634
+UniRef50_F0XZT5		0.000156719891042	0.00023980947923	8.3089588188e-05
+UniRef50_B9KPM1		0.00443609552488	0.000863668923696	-0.00357242660118
+UniRef50_B7KZF3	Chromosomal replication initiator DnaA	4.20780829996e-05	8.65395068237e-06	-3.34241323172e-05
+UniRef50_UPI0003654BED	hypothetical protein	0.000861184765437	0.00233144767259	0.00147026290715
+UniRef50_UPI0003C168CC		0.00755942575005	0.002599301453	-0.00496012429705
+UniRef50_B7MHP0	Nicotinate phosphoribosyltransferase	0.00421906395373	0.00113241162811	-0.00308665232562
+UniRef50_Q8CTY4	Thiamine biosynthesis lipoprotein	0.0123798995103	0.00405799403767	-0.00832190547263
+UniRef50_P31052	Dihydrolipoyl dehydrogenase	5.87879406525e-05	0.00293743798267	0.00287865004202
+UniRef50_G2L441		0.00125442431332	0.00108431802925	-0.00017010628407
+UniRef50_UPI000364F2DB	hypothetical protein	3.60606889338e-06	5.69391706815e-06	2.08784817477e-06
+UniRef50_UPI000440C4B4	PREDICTED	5.3815168067e-05	4.89023447294e-05	-4.9128233376e-06
+UniRef50_Q9T1A3	Gp20	2.20380898819e-06	0.00104433173336	0.00104212792437
+UniRef50_P0ADH8	Type 1 fimbriae regulatory protein FimE	0.00314116185779	0.00117065561492	-0.00197050624287
+UniRef50_UPI00036912E2	MULTISPECIES	9.09609556206e-06	1.49206393552e-05	5.82454379314e-06
+UniRef50_Q3JPQ2		7.06093077602e-05	2.84298778006e-05	-4.21794299596e-05
+UniRef50_B8J4Q3	Chorismate synthase	6.52897233765e-06	2.61943578364e-05	1.96653854987e-05
+UniRef50_E2ZXQ0		0.00570549823148	0.00151776906689	-0.00418772916459
+UniRef50_D6AIG0		0.000185363632772	0.000313869359638	0.000128505726866
+UniRef50_B9KLD6		0.010065908473	0.0104467498091	0.0003808413361
+UniRef50_UPI0002490D5A	PTS system mannitol specific transporter subunit IIBC	2.91818711922e-06	3.73812777292e-06	8.199406537e-07
+UniRef50_M4QYT8	Nitrite reductase small subunit	0.000261747691018	0.00817715734618	0.00791540965516
+UniRef50_UPI000375EB87	hypothetical protein	8.6938602064e-06	0.000102542905134	9.38490449276e-05
+UniRef50_K0R863		1.86483217285e-05	0.000169369794267	0.000150721472538
+UniRef50_UPI00030AEBF5	hypothetical protein	6.8084257852e-06	8.29258906573e-06	1.48416328053e-06
+UniRef50_Q9K0X8	Cell division protein FtsA	0.000453431406057	0.00362450602716	0.0031710746211
+UniRef50_A5UJ54	Archaeal glutamate synthase [NADPH]	0.00481670550646	0.00113719614584	-0.00367950936062
+UniRef50_UPI00034AC849	chemotaxis protein CheY	0.00020624046293	7.34912653978e-05	-0.000132749197532
+UniRef50_G8VL08	ATP dependent helicase HrpA	3.16771459154e-05	0.00463567319272	0.0046039960468
+UniRef50_I3VWE8	Aspartokinase	9.72066924068e-05	0.000994575508137	0.00089736881573
+UniRef50_P39788	Endonuclease III	0.0158282436485	0.00346553232377	-0.0123627113247
+UniRef50_A0A024BWT3	RloF	5.5731199147e-05	0.00239367583499	0.00233794463584
+UniRef50_C6E8N4	NADH quinone oxidoreductase subunit B	2.63337847047e-05	0.000209246575244	0.000182912790539
+UniRef50_P10539	Aspartate semialdehyde dehydrogenase	0.00402089602317	0.00693533391708	0.00291443789391
+UniRef50_UPI0003B603D1	hypothetical protein	0.000285450383061	0.00180932027065	0.00152386988759
+UniRef50_G8S8P0		9.31972409779e-06	0.000136466663647	0.000127146939549
+UniRef50_Q0FH14		0.000161384635152	0.000374756265278	0.000213371630126
+UniRef50_P00807	Beta lactamase	0.102501676762	0.028327574333	-0.074174102429
+UniRef50_Q8DV98	Folate transporter FolT	0.00493461448616	0.000315846743525	-0.00461876774263
+UniRef50_UPI0003B62A81	shikimate kinase	2.57752604557e-05	1.1320779726e-05	-1.44544807297e-05
+UniRef50_Q8R5Z9	Ribosome recycling factor	0.0145292077251	0.0034608971308	-0.0110683105943
+UniRef50_F4A5J4	Conserved protein	0.000387828070733	0.00144360590284	0.00105577783211
+UniRef50_UPI000237B476	gluconate transporter	1.12444160691e-05	0.000508674197191	0.000497429781122
+UniRef50_Q8NE62	Choline dehydrogenase, mitochondrial	3.28646532299e-05	3.28228848557e-05	-4.17683742e-08
+UniRef50_I9RNM3	Putative sialic acid transporter	0.000808898547544	0.000732190178178	-7.6708369366e-05
+UniRef50_Q3J5X4	Integrase recombinase	0.000991021496235	0.000345338695843	-0.000645682800392
+UniRef50_Q9I0N3	Sulfurtransferase TusD homolog	0.0005844809031	0.000241752096681	-0.000342728806419
+UniRef50_A0A023S183	Alkaline phosphatase	0.000347891660406	0.0093843325715	0.00903644091109
+UniRef50_U3THX2		1.24177506608e-05	1.83643120213e-05	5.9465613605e-06
+UniRef50_Q9RXZ8	6,7 dimethyl 8 ribityllumazine synthase	0.000496692090597	0.0607495078745	0.0602528157839
+UniRef50_Q8ZLS1	Arabinose 5 phosphate isomerase KdsD	0.00395503130548	0.00412438915069	0.00016935784521
+UniRef50_Q2FDM1	Immunodominant staphylococcal antigen B	0.00889561788196	0.00215882478258	-0.00673679309938
+UniRef50_F2MNQ3	Serine protease HtrA	9.67086222522e-05	0.000150161036537	5.34524142848e-05
+UniRef50_P43899	Oxygen independent coproporphyrinogen III oxidase like protein HI_0463	0.00163104731946	0.00029276616629	-0.00133828115317
+UniRef50_X7YGE5	Putative groESL operon	3.43701058306e-05	3.97104870601e-05	5.3403812295e-06
+UniRef50_A6M1G9	Nucleotidyl transferase	0.000681890905573	0.00130931458991	0.000627423684337
+UniRef50_D6Z602	Glutamine synthetase catalytic region	0.000281409298616	0.00184535219805	0.00156394289943
+UniRef50_P94951	F420 dependent methylenetetrahydromethanopterin dehydrogenase	0.00193001132254	0.00210194792202	0.00017193659948
+UniRef50_P60239	F420 non reducing hydrogenase subunit G	0.00487452667429	0.00118733484636	-0.00368719182793
+UniRef50_L0I338		3.46912113766e-05	4.02368333017e-05	5.5456219251e-06
+UniRef50_F7XZJ7	Protein tyrosine phosphatase, low molecular weight	0.000139073871712	7.38801940789e-05	-6.51936776331e-05
+UniRef50_T1YAK1	Phage protein	0.0175431042568	0.00571816327957	-0.0118249409772
+UniRef50_UPI0003C147A2	PREDICTED	1.96086183616e-05	3.63004797542e-05	1.66918613926e-05
+UniRef50_G0J3B6		7.34052346268e-05	2.11951856436e-05	-5.22100489832e-05
+UniRef50_UPI0003709308	hypothetical protein	1.50430636184e-05	0.000313749691026	0.000298706627408
+UniRef50_Q130Q6	ABC 1	0.0026150508056	0.000399000555285	-0.00221605025032
+UniRef50_UPI000469E31A	hypothetical protein	1.70418110476e-05	7.01293884305e-06	-1.00288722045e-05
+UniRef50_UPI000465AB9E	hypothetical protein	3.27439279221e-06	0.000117938344292	0.0001146639515
+UniRef50_K7SNW6	Glycosyl hydrolase family 38 N terminal domain containing protein	0.000118295104499	0.00655748346042	0.00643918835592
+UniRef50_J7TWG6		2.22677810314e-05	3.074530538e-05	8.4775243486e-06
+UniRef50_P42616	Protein YqjC	0.000618829489919	0.000482806602495	-0.000136022887424
+UniRef50_Q2GAZ8	RepB plasmid partition	1.65891802706e-06	1.156457578e-05	9.90565775294e-06
+UniRef50_UPI0004732E2B	hypothetical protein, partial	2.73338773828e-05	5.15180398155e-05	2.41841624327e-05
+UniRef50_P0C7L3	Beta ketoadipyl CoA thiolase	0.00369358535636	0.0093166848571	0.00562309950074
+UniRef50_UPI00047DA36E	ABC transporter	5.74714230356e-06	2.71835069651e-05	2.14363646615e-05
+UniRef50_M4TFL9	Protein lysine acetyltransferase	0.00100885838738	0.000216853567385	-0.000792004819995
+UniRef50_P0AAJ2	Probable anaerobic dimethyl sulfoxide reductase chain YnfG	0.00197301405907	0.00516579151241	0.00319277745334
+UniRef50_Q8DVZ6		0.00640108500624	0.000957994940746	-0.00544309006549
+UniRef50_Q8DVZ9		0.00495608210887	0.00153672003803	-0.00341936207084
+UniRef50_UPI00037681FA	hypothetical protein	6.22630863182e-06	3.16249790353e-05	2.53986704035e-05
+UniRef50_A0RAK2	Response regulator	1.0828949267e-05	0.000913236117288	0.000902407168021
+UniRef50_G7ZT64		0.00541079493579	0.00126564302227	-0.00414515191352
+UniRef50_S5YZN5	ABC type dipeptide oligopeptide nickel transport system, permease component	0.0148806638082	0.00540066661484	-0.00947999719336
+UniRef50_P37908	UPF0053 inner membrane protein YfjD	0.00384590173769	0.00108780982391	-0.00275809191378
+UniRef50_I6GY98	Glutamate  cysteine ligase	0.00241896565632	0.000489475201976	-0.00192949045434
+UniRef50_UPI00016C54E0	DNA gyrase subunit B	3.49114885955e-06	2.56152267399e-06	-9.2962618556e-07
+UniRef50_A4EM47		5.6867281047e-05	1.6202046984e-05	-4.0665234063e-05
+UniRef50_UPI0002B93C15	Phosphopentomutase	1.32757501235e-05	0.00535068583835	0.00533741008823
+UniRef50_P42850	Phosphoenolpyruvate synthase	0.00429598708066	0.000924817078377	-0.00337117000228
+UniRef50_UPI0004708FDA	hypothetical protein	1.28283872465e-05	7.8547950318e-05	6.57195630715e-05
+UniRef50_A5F2P1	3 ketoacyl CoA thiolase	0.0033442960674	0.00135424063583	-0.00199005543157
+UniRef50_O32799	Formate acetyltransferase	0.00794172162724	0.00845293759278	0.00051121596554
+UniRef50_Q3B6F6	30S ribosomal protein S3	0.0140764052354	0.00280998095854	-0.0112664242769
+UniRef50_UPI00037BC05D	hypothetical protein	0.000181110605545	0.000223659999387	4.2549393842e-05
+UniRef50_O62585	Serine hydroxymethyltransferase, cytosolic	0.000153419467809	1.84164934022e-05	-0.000135002974407
+UniRef50_UPI000470E9D6	hypothetical protein	6.61476892278e-05	8.90790035906e-05	2.29313143628e-05
+UniRef50_UPI00036E5905	citrate lyase	5.37119379778e-05	3.1643787579e-05	-2.20681503988e-05
+UniRef50_I3BSR5	PEGA domain protein	0.00022098982414	0.000104477905751	-0.000116511918389
+UniRef50_UPI0003052E4A	NADH dehydrogenase	8.09477023054e-05	2.23365309027e-06	-7.87140492151e-05
+UniRef50_UPI00026C85FF	hydrolase	1.01290901078e-05	1.54208861798e-05	5.291796072e-06
+UniRef50_C6E3K3	Type VI secretion protein, VC_A0107 family	2.65286644472e-05	0.00282384368926	0.00279731502481
+UniRef50_R7PUK9		0.00209595990194	0.00130832742417	-0.00078763247777
+UniRef50_W5GWD8		2.01710908006e-06	8.72038892496e-05	8.51867801695e-05
+UniRef50_P0A0Q0	Lactose phosphotransferase system repressor	0.0296725879276	0.00637571913196	-0.0232968687956
+UniRef50_E0XR78		0.000152758251627	0.00039153826786	0.000238780016233
+UniRef50_C5BEL3	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.000364649394362	0.00801595650912	0.00765130711476
+UniRef50_UPI000472566B	thioredoxin	0.000225318294392	0.000162144044217	-6.3174250175e-05
+UniRef50_G6EQ26	SSU ribosomal protein S1P	0.000255751466193	0.000336223952777	8.0472486584e-05
+UniRef50_UPI00037152ED	hypothetical protein	0.00014842175184	1.85824670311e-05	-0.000129839284809
+UniRef50_O94582	Probable anthranilate synthase component 1	4.69296551659e-06	9.84202665585e-06	5.14906113926e-06
+UniRef50_B5F446	Aspartate carbamoyltransferase	0.00311883481071	0.000579767092999	-0.00253906771771
+UniRef50_UPI00029B4277	thioredoxin	0.000217578914368	0.00040980129227	0.000192222377902
+UniRef50_K5ZH15	UPF0301 protein MXAZACID_13641	2.04465105461e-05	2.10445618093e-05	5.980512632e-07
+UniRef50_M1XK11	SCCmec staphylococcal cassette region, isolate CMFT201	0.0127964315765	0.00313176015763	-0.00966467141887
+UniRef50_I6TNE5	Bacteriophage replication gene A protein 	0.00281969764367	0.000688893931136	-0.00213080371253
+UniRef50_D6SDW7	Acetate CoA transferase YdiF	0.00958690106789	0.00230253497896	-0.00728436608893
+UniRef50_Q099I3		0.000483867473179	0.000219339014355	-0.000264528458824
+UniRef50_UPI00047246F8	iron ABC transporter permease, partial	7.08734726629e-05	0.000144668964775	7.37954921121e-05
+UniRef50_I6AH85		7.15558111459e-05	7.38000693882e-05	2.2442582423e-06
+UniRef50_F4SFU3	Biofilm PGA synthesis lipoprotein PgaB	0.00271030397137	0.000938098251204	-0.00177220572017
+UniRef50_UPI000472C820	hypothetical protein	0.000199129335207	7.94403775618e-06	-0.000191185297451
+UniRef50_A9KK69	S adenosylmethionine	0.0278706521612	0.013923514546	-0.0139471376152
+UniRef50_UPI00037911F9	hypothetical protein	2.11982500283e-05	3.99978643647e-05	1.87996143364e-05
+UniRef50_UPI00046CDCC8	hypothetical protein	1.86702578131e-05	0.000121293174926	0.000102622917113
+UniRef50_A5UP74		0.00320821828892	0.000984389017326	-0.00222382927159
+UniRef50_A5UP75		0.00160033319966	0.00074138084986	-0.0008589523498
+UniRef50_Q65GF0	UvrABC system protein C	0.0120859076437	0.00314018593494	-0.00894572170876
+UniRef50_P22302	Superoxide dismutase [Fe], chloroplastic 	1.4607146211e-05	2.98060467247e-05	1.51989005137e-05
+UniRef50_Q3IVJ7	Acyltransferase 3 family	0.0216808898201	0.00506373739392	-0.0166171524262
+UniRef50_U2YI39		6.23998451132e-06	1.99847488032e-05	1.37447642919e-05
+UniRef50_UPI000463E2C6	3 hydroxyacyl CoA dehydrogenase	2.43437591949e-05	0.000109754059209	8.54103000141e-05
+UniRef50_B4SQ46	Drug resistance transporter, EmrB QacA subfamily	0.000290444278819	0.000403920040058	0.000113475761239
+UniRef50_A4SM42	ATP dependent Clp protease proteolytic subunit	9.65497294531e-06	0.0348118349094	0.0348021799365
+UniRef50_P0AEB4	D alanyl D alanine carboxypeptidase DacA	0.00410086368159	0.000790536240849	-0.00331032744074
+UniRef50_UPI0002654FEE	PREDICTED	2.6122395231e-06	1.19247297935e-06	-1.41976654375e-06
+UniRef50_UPI0002492D9C	regulator	1.15166188072e-05	1.83684002026e-05	6.8517813954e-06
+UniRef50_S6STB0		0.00018398263857	0.000192788632095	8.805993525e-06
+UniRef50_Q9RS20	Multidrug efflux transporter, putative	0.000105344927117	0.0297599625943	0.0296546176672
+UniRef50_Q03SL6	Triosephosphate isomerase	6.76417904436e-06	8.74143593508e-06	1.97725689072e-06
+UniRef50_UPI0001AF23F3	oxidoreductase	4.51576684926e-05	6.06935958434e-05	1.55359273508e-05
+UniRef50_E3J6Y9	FAD dependent oxidoreductase	2.31160718526e-05	0.00201848396478	0.00199536789293
+UniRef50_UPI00036FA050	hypothetical protein	3.08527973052e-05	3.09447094861e-05	9.19121809e-08
+UniRef50_Q819W8	Ribosome biogenesis GTPase A	0.0105531393838	0.00264960406034	-0.00790353532346
+UniRef50_UPI0004627B5D	PREDICTED	1.23761333514e-05	1.59944031344e-06	-1.0776693038e-05
+UniRef50_UPI00027F40A7		2.01153616948e-05	2.82520917813e-05	8.1367300865e-06
+UniRef50_W6IDM0		1.33796161898e-05	2.50783935776e-05	1.16987773878e-05
+UniRef50_UPI00037E7F9C	hypothetical protein	1.21981320794e-05	0.00016230741457	0.000150109282491
+UniRef50_R7QKG6	Stackhouse genomic scaffold, scaffold_401	9.3118644522e-05	1.34900196536e-05	-7.96286248684e-05
+UniRef50_E2X9Y8	PTS system, glucitol sorbitol specific, IIBC component	0.00184714325271	0.00043858916614	-0.00140855408657
+UniRef50_UPI0001B43C25	hypothetical protein, partial	4.18541271383e-06	5.07846639359e-05	4.65992512221e-05
+UniRef50_Q11MY4	Aminotransferase	0.0142507184221	0.00290683038137	-0.0113438880407
+UniRef50_U3AS30	ABC transporter, binding protein	0.000249261929303	0.000112642222547	-0.000136619706756
+UniRef50_UPI0003728AAF	MULTISPECIES	2.96369305819e-05	0.000235975692393	0.000206338761811
+UniRef50_UPI00026C7EA0	2 isopropylmalate synthase	7.46223861463e-06	8.6531817131e-06	1.19094309847e-06
+UniRef50_Q42684	Superoxide dismutase [Mn], mitochondrial	2.1580622728e-05	4.13000335078e-05	1.97194107798e-05
+UniRef50_A8IJ48		3.54266653204e-05	4.98588474293e-05	1.44321821089e-05
+UniRef50_Q46L27	Phosphate import ATP binding protein PstB	6.5104145904e-06	0.000175818415791	0.000169308001201
+UniRef50_UPI00046E069E		4.3413374199e-06	1.41878445524e-05	9.8465071325e-06
+UniRef50_UPI000407DFAC	peptide ABC transporter substrate binding protein	5.51072527108e-06	6.26674117959e-05	5.71566865248e-05
+UniRef50_R4ZTZ8	Erythrocyte binding protein 2	0.000273472269865	0.000319718833157	4.6246563292e-05
+UniRef50_T1Y7X3	Transporter, Na+ H+ antiporter family	0.0185084340919	0.00453325395178	-0.0139751801401
+UniRef50_UPI0003A7157D	ABC transporter permease	1.02311079687e-05	3.07230528648e-05	2.04919448961e-05
+UniRef50_E3A6F2	Transcriptional activator GpuR	0.000820798087286	0.000193227942332	-0.000627570144954
+UniRef50_A0LFA0		6.73540704719e-06	2.24708484529e-05	1.57354414057e-05
+UniRef50_C7LI26	Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.0162586243932	0.00238096050565	-0.0138776638876
+UniRef50_UPI0003723D7C	hypothetical protein, partial	4.19745693656e-06	7.3848658401e-06	3.18740890354e-06
+UniRef50_F6W1A6		9.93113908368e-05	1.55954769671e-05	-8.37159138697e-05
+UniRef50_A8LAA1	4 hydroxy 2 oxovalerate aldolase 1	0.00241490059438	0.000935364612715	-0.00147953598166
+UniRef50_Q8XAZ3	UPF0187 protein YneE	0.00473273665689	0.000370690424931	-0.00436204623196
+UniRef50_H3Y3Z6	PHP domain protein	0.00531545422838	0.00255532970109	-0.00276012452729
+UniRef50_C1DF31	Transcriptional regulator, AraC family	0.000225140748821	0.00135715149946	0.00113201075064
+UniRef50_Q8RA66	Tyrosine recombinase XerC	0.000312780025754	0.00121800405472	0.000905224028966
+UniRef50_A3ML41	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000135603912432	1.01775067106e-05	-0.000125426405721
+UniRef50_Q1R1I5	Putative Holliday junction resolvase	3.24376286752e-05	2.12626985509e-05	-1.11749301243e-05
+UniRef50_Q8CMP4	Serine aspartate repeat containing protein F	0.00529191827539	0.00169399836678	-0.00359791990861
+UniRef50_R4NU59	Histone acetyltransferase HPA2 related acetyltransferase	0.00648936429777	0.00873935777529	0.00224999347752
+UniRef50_R5NQY2	Beta eliminating lyase	0.0102350310094	0.000448251524079	-0.00978677948532
+UniRef50_Q1C5I4	Nucleoside diphosphate kinase	9.6558670322e-05	5.31675453118e-05	-4.33911250102e-05
+UniRef50_O67222	S adenosylmethionine synthase	7.82146020438e-06	0.000159770529035	0.000151949068831
+UniRef50_M2E237	Putative reductase	0.00225849975745	0.00540031689511	0.00314181713766
+UniRef50_UPI0004696E1B	molecular chaperone Hsp33	1.7519763698e-05	7.27686688908e-05	5.52489051928e-05
+UniRef50_UPI00046741A1	hypothetical protein	3.23789107296e-05	1.43795020523e-05	-1.79994086773e-05
+UniRef50_D4HBM2	Transcriptional regulator, LacI family	0.000505051928669	0.00670151418206	0.00619646225339
+UniRef50_F5I475	Acyl CoA dehydrogenase, middle domain protein	0.00045597503883	0.000960110846725	0.000504135807895
+UniRef50_D0D906	Tripartite ATP independent periplasmic transporter, DctQ component	0.000264565644237	0.00011170115891	-0.000152864485327
+UniRef50_E2ZSF7	SadB	0.00113206573251	0.000165135156678	-0.000966930575832
+UniRef50_UPI000473FA93	30S ribosomal protein S3, partial	6.37633558287e-05	5.21107161324e-05	-1.16526396963e-05
+UniRef50_C2PG39	GCN5 related N acetyltransferase	0.00232472707909	0.00226593109452	-5.879598457e-05
+UniRef50_G8VGQ5		5.49901264563e-05	0.000453603013437	0.000398612886981
+UniRef50_F8I070	Peptidyl prolyl cis trans isomerase	0.0046313676088	0.00288491606854	-0.00174645154026
+UniRef50_W7QF52		0.000291038128384	2.96954258239e-05	-0.00026134270256
+UniRef50_E4BJ69	FeoA domain protein	0.000534899174486	0.000413030356916	-0.00012186881757
+UniRef50_P52878	Phosphoserine aminotransferase	0.0107994251334	0.00260714616743	-0.00819227896597
+UniRef50_A6M011	ABC transporter permease protein	0.000419155801941	0.000732525124145	0.000313369322204
+UniRef50_A5I3R8	ABC transporter, permease protein	0.000677300004087	0.00221132219082	0.00153402218673
+UniRef50_P76245	Probable diguanylate cyclase YeaP	0.00258552020401	0.000728495356993	-0.00185702484702
+UniRef50_UPI0003A75D7C	lipase	2.50838010997e-05	0.000414274290521	0.000389190489421
+UniRef50_A5CLH3	DivIVA protein 	6.40097658514e-05	5.86854533105e-05	-5.3243125409e-06
+UniRef50_UPI00016C35F3	probable MoxR related protein, partial	1.63667990468e-05	3.5861640914e-05	1.94948418672e-05
+UniRef50_H2ZBA2		3.64402397862e-05	1.7097062531e-05	-1.93431772552e-05
+UniRef50_Q67LZ8	Oligopeptide ABC transporter permease protein	0.0200220730776	0.00322574377258	-0.016796329305
+UniRef50_C6M3G0		5.45130177362e-05	0.000228184152327	0.000173671134591
+UniRef50_UPI000379FDE6	hypothetical protein	1.31838917467e-05	0.000217168844091	0.000203984952344
+UniRef50_R6GQC1	Peptidase U32	0.000303315416172	0.00103077529447	0.000727459878298
+UniRef50_Q9RSR0		0.000725635415725	0.0478264610751	0.0471008256594
+UniRef50_UPI0003690F47	hypothetical protein	3.50281872565e-06	5.94642660102e-06	2.44360787537e-06
+UniRef50_A0A024HX85		2.27171683016e-06	9.56540845528e-05	9.33823677226e-05
+UniRef50_A1USI9	3 oxoacyl [acyl carrier protein] synthase 3	9.60672789174e-06	1.21458345034e-05	2.53910661166e-06
+UniRef50_A5UMS9		0.00390043108272	0.000630775996969	-0.00326965508575
+UniRef50_UPI0004743442	acetolactate synthase catalytic subunit, partial	6.17095995254e-06	1.76978334197e-05	1.15268734672e-05
+UniRef50_O83296	Protein Soj homolog	0.00101270063422	0.00200255947631	0.00098985884209
+UniRef50_UPI000364FA10	hypothetical protein	2.09354459098e-05	2.9676504215e-05	8.7410583052e-06
+UniRef50_E1QW23	Uracil DNA glycosylase superfamily	0.000592873536577	0.00501556782803	0.00442269429145
+UniRef50_A0A037L527	SPP1 family phage portal protein	0.0153233286468	0.00218915881979	-0.013134169827
+UniRef50_UPI0003717BEB	diguanylate cyclase	1.51701410981e-05	0.000751846763722	0.000736676622624
+UniRef50_B2KEN0	DNA directed RNA polymerase subunit beta	2.19074428495e-06	1.60325037735e-06	-5.874939076e-07
+UniRef50_O87406	UPF0070 protein NGO0425	0.000380631864954	0.00207708746081	0.00169645559586
+UniRef50_UPI0003AB479F	methionyl tRNA synthetase	5.95680277432e-06	1.65431351384e-05	1.05863323641e-05
+UniRef50_UPI000477EBC3	hypothetical protein	1.28069517424e-06	7.10978894466e-05	6.98171942724e-05
+UniRef50_A5UKA0	Glycosyltransferase	0.00336869882431	9.84389017397e-05	-0.00327025992257
+UniRef50_A5UML7	Predicted AAA ATPase	0.00592941334698	0.00176401169475	-0.00416540165223
+UniRef50_A6LY87		0.000796585139432	0.000802318214595	5.733075163e-06
+UniRef50_Q8ZCX2	Polyphosphate kinase	0.00185695074461	0.000909153532339	-0.000947797212271
+UniRef50_UPI0003A3B951	hypothetical protein	1.34677341485e-05	1.31991404009e-05	-2.685937476e-07
+UniRef50_UPI00037C182A	hypothetical protein	0.000443986543746	0.000148681050755	-0.000295305492991
+UniRef50_K7U2F6		0.00012312617878	0.000110673975553	-1.2452203227e-05
+UniRef50_T0SXL1	ABC transporter multidrug efflux pump	0.000301252562416	0.006676560066	0.00637530750358
+UniRef50_Q1CTZ0	Cag pathogenicity island protein I	0.000201776209644	0.00385567261755	0.00365389640791
+UniRef50_Q2RBC8	Expressed protein	2.03410151446e-05	2.72081702395e-05	6.8671550949e-06
+UniRef50_M4UIL6		0.000356366811101	3.87089306784e-06	-0.000352495918033
+UniRef50_E4TFB2	TRAP transporter solute receptor, TAXI family	4.18975193491e-05	6.68267792048e-06	-3.52148414286e-05
+UniRef50_F2IFK9		8.97718626384e-06	0.00111670843146	0.0011077312452
+UniRef50_UPI0003B66E26	UTP  glucose 1 phosphate uridylyltransferase	0.000321675054061	0.000182428739423	-0.000139246314638
+UniRef50_UPI0003B6588F	branched chain amino acid transporter AzlC	7.90817867144e-05	8.43243422897e-05	5.2425555753e-06
+UniRef50_Q4L4U2	Protein NagD homolog	0.0245072680738	0.00813408333933	-0.0163731847345
+UniRef50_P0A5S1	PhoH like protein	0.000225282171962	0.00589994595937	0.00567466378741
+UniRef50_W0DM86	Diguanylate cyclase	5.87262608651e-06	4.69587752202e-05	4.10861491337e-05
+UniRef50_UPI0004119C01	hypothetical protein	4.49190976723e-06	8.89548889252e-06	4.40357912529e-06
+UniRef50_UPI000373DCE8	hypothetical protein	4.57531092745e-05	1.21266999831e-05	-3.36264092914e-05
+UniRef50_Q9RRP2		0.000549824696826	0.0490250288986	0.0484752042018
+UniRef50_Q9RRP3		6.88035679961e-05	0.0188976746339	0.0188288710659
+UniRef50_Q6G7L8	Hydroxyethylthiazole kinase	0.0216696053158	0.00479405850925	-0.0168755468065
+UniRef50_UPI0000164CDA	molybdenum cofactor biosynthesis protein A	6.64183622418e-06	0.00728499790573	0.00727835606951
+UniRef50_Q53158	Phosphoribosyl AMP cyclohydrolase	0.00602157660669	7.38695059412e-05	-0.00594770710075
+UniRef50_B0JMB5		4.64025679615e-05	1.15190478844e-05	-3.48835200771e-05
+UniRef50_UPI00035E553A	hypothetical protein	0.000355225785863	9.02705211259e-05	-0.000264955264737
+UniRef50_G7M109	Stage III sporulation protein AA	0.000616786062403	0.0023136470665	0.0016968610041
+UniRef50_R4M6A1		4.78940306974e-05	3.79727597145e-05	-9.9212709829e-06
+UniRef50_UPI0003062627	hypothetical protein	1.56013015479e-05	0.000125503327335	0.000109902025787
+UniRef50_Q54443	Dextranase	0.00636502958676	0.00147410609132	-0.00489092349544
+UniRef50_UPI000370DB0C	hypothetical protein	0.000127131964001	0.000151381410495	2.4249446494e-05
+UniRef50_W1VLC3		4.13812205054e-06	6.39569089466e-06	2.25756884412e-06
+UniRef50_S2WM30		5.25471219726e-06	7.36022955013e-05	6.8347583304e-05
+UniRef50_UPI0003752BA6	hypothetical protein	1.65836881666e-05	8.96644626744e-06	-7.61724189916e-06
+UniRef50_Q82GB8	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	1.6619669629e-05	2.5001580799e-05	8.38191117e-06
+UniRef50_V5ST11	Cytochrome P450	0.000355209670205	0.000410186170209	5.4976500004e-05
+UniRef50_E6VVV5	AzlC family protein	3.92355001446e-05	1.48151023551e-05	-2.44203977895e-05
+UniRef50_R7FQK3	Arabinose binding protein	0.000110916549126	0.00109959456792	0.000988678018794
+UniRef50_P0AG77	Nuclease SbcCD subunit D	0.00475697561798	0.000895991166097	-0.00386098445188
+UniRef50_UPI0003773D73	50S ribosomal protein L18	6.41597750388e-05	0.000419050838263	0.000354891063224
+UniRef50_M9VFV0	HAD hydrolase, family IIB	0.00138487519104	0.00459825239627	0.00321337720523
+UniRef50_E2ZT41		0.00102353394618	0.000359411811592	-0.000664122134588
+UniRef50_UPI0004447F97	PREDICTED	4.19717299651e-05	0.000126514195336	8.45424653709e-05
+UniRef50_I2ZU82		0.000805327681322	0.000187869768109	-0.000617457913213
+UniRef50_P81177	Zinc metalloproteinase aureolysin	0.0118991657824	0.00291320102572	-0.00898596475668
+UniRef50_P0AF00	Molybdenum cofactor biosynthesis protein B	0.000570383430073	0.00049073586868	-7.9647561393e-05
+UniRef50_Q4YEI4		0.0011023412729	0.00070055402375	-0.00040178724915
+UniRef50_C3KNV3	MFS permease	0.000193342617778	0.0059989497177	0.00580560709992
+UniRef50_M1LUI1	D galactose binding periplasmic protein MglB	0.000757341745591	0.00263511656833	0.00187777482274
+UniRef50_P52558	N5 carboxyaminoimidazole ribonucleotide mutase	8.70285250475e-05	0.00144379927242	0.00135677074737
+UniRef50_T2E9A2	Glycosyl transferases group 1 family protein	0.00070545005054	0.0016786414996	0.00097319144906
+UniRef50_UPI0003B71379	N acetyltransferase	3.38587003831e-05	4.38406772258e-05	9.9819768427e-06
+UniRef50_UPI00036E1F30	hypothetical protein	1.00525607274e-05	1.06381602119e-05	5.855994845e-07
+UniRef50_U5N662		1.3456992275e-05	4.51965079954e-05	3.17395157204e-05
+UniRef50_D9TM82	Pyruvate flavodoxin ferredoxin oxidoreductase domain protein	8.11216308394e-05	0.000381521275695	0.000300399644856
+UniRef50_Q4L4Y4		0.011352481691	0.00296562740989	-0.00838685428111
+UniRef50_UPI00026CC3BE	recombinase	5.70301565196e-05	1.20143851102e-05	-4.50157714094e-05
+UniRef50_UPI00047918D8	isoleucine  tRNA ligase	2.3540344863e-06	3.00742491096e-06	6.5339042466e-07
+UniRef50_W1E8W6	Serine transporter	1.03917892474e-05	1.17524803775e-05	1.3606911301e-06
+UniRef50_M9VGG3		0.00448744156641	0.00407282855699	-0.00041461300942
+UniRef50_A3V2A1	Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	4.63894536679e-05	1.1305402343e-05	-3.50840513249e-05
+UniRef50_Q9AA76		2.31957895439e-05	2.39776625577e-05	7.818730138e-07
+UniRef50_I1EHK4		0.000126108904961	0.00162291037933	0.00149680147437
+UniRef50_P9WIZ4	Divalent metal cation transporter MntH	9.67912791928e-05	0.00401236210336	0.00391557082417
+UniRef50_E3E667		6.80131500236e-06	0.000708191134862	0.00070138981986
+UniRef50_Q1GMS0	Dihydroorotase	0.00135544040885	0.000654552096998	-0.000700888311852
+UniRef50_D9ULU8	CvhA	7.15775792529e-06	0.000127788787527	0.000120631029602
+UniRef50_UPI000367667A	hypothetical protein	5.04478154356e-05	4.36477028852e-05	-6.8001125504e-06
+UniRef50_I0C1A6	Nitrogen regulation protein NIFR3	0.00135474491105	6.77546109288e-05	-0.00128699030012
+UniRef50_Q49XM4	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00887418014522	0.00369201768409	-0.00518216246113
+UniRef50_W5XWP7	Aldehyde dehydrogenase	0.0016689275233	0.000723869905191	-0.000945057618109
+UniRef50_C8X7N2		0.000254175793101	0.000121073399709	-0.000133102393392
+UniRef50_UPI00037FE0F3	hypothetical protein	5.9434084805e-06	8.15061550832e-05	7.55627466027e-05
+UniRef50_A1IQ80	Riboflavin biosynthesis protein RibD	0.000149400787142	0.00377809685714	0.00362869607
+UniRef50_UPI00036C9CB5	hypothetical protein	1.37887874428e-05	1.64553660804e-05	2.6665786376e-06
+UniRef50_A7X6I5	Fibronectin binding protein A	0.0123766972848	0.00341688949036	-0.00895980779444
+UniRef50_A0A059MMV6	MFS transporter	0.000117841619826	0.00609312448881	0.00597528286898
+UniRef50_S2R9A4	Excinuclease ATPase subunit 	3.96133479613e-05	0.000261762691732	0.000222149343771
+UniRef50_Q29RN5	LOC767890 protein 	3.33182814306e-05	6.61993367704e-05	3.28810553398e-05
+UniRef50_A0A022H1X1	Mannosyltransferase	0.000194256153273	1.89566303611e-05	-0.000175299522912
+UniRef50_Q2JXL1	Serine  tRNA ligase	4.60370840718e-06	1.27830709039e-05	8.17936249672e-06
+UniRef50_I0Z518		2.80925903372e-06	3.59689456681e-06	7.8763553309e-07
+UniRef50_B1YLE0	Triosephosphate isomerase	3.30870157682e-05	7.52388808504e-05	4.21518650822e-05
+UniRef50_Q1LHJ9	Ribosomal RNA small subunit methyltransferase G	1.99719041731e-05	2.68720683187e-05	6.9001641456e-06
+UniRef50_A6V312		6.35676657784e-06	5.56920176405e-06	-7.8756481379e-07
+UniRef50_Q51366	GDP mannose 4,6 dehydratase	0.0012459712858	0.00018248200115	-0.00106348928465
+UniRef50_UPI0003AA2BE4	adenylate kinase	1.12465697889e-05	4.03470997163e-05	2.91005299274e-05
+UniRef50_UPI00037042BD	hypothetical protein	1.17212045414e-05	0.000297632493556	0.000285911289015
+UniRef50_C4Z2L9		0.000348579404123	0.000328129672448	-2.0449731675e-05
+UniRef50_E4B7L0		0.000608848369114	0.00162727435658	0.00101842598747
+UniRef50_F5ZKQ5	PTS multi domain regulator	7.09115821271e-05	0.0041428804266	0.00407196884447
+UniRef50_D2Q557	Cobyrinic acid ac diamide synthase	3.79428097264e-06	1.14191130481e-05	7.62483207546e-06
+UniRef50_UPI0001CBAB2C	PREDICTED	2.88288744181e-06	1.29634980647e-05	1.00806106229e-05
+UniRef50_A7ZR24	Chromosome initiation inhibitor	0.00206915725329	0.000357959642661	-0.00171119761063
+UniRef50_F0RL27	Cell envelope related transcriptional attenuator	0.000102670713198	0.0156712896391	0.0155686189259
+UniRef50_C0F8H0	Transketolase 	7.11459043501e-05	1.25321646041e-05	-5.8613739746e-05
+UniRef50_M7CS69	Arsenate reductase	0.000139098077978	0.00019864275912	5.9544681142e-05
+UniRef50_G7M7C1	Cell wall binding repeat containing protein	0.000496674730899	0.000561758002748	6.5083271849e-05
+UniRef50_K2RRG6		1.09522542348e-05	2.1054716729e-05	1.01024624942e-05
+UniRef50_Q3IWQ1	Caspase family protein	0.00537548951736	0.00135302095866	-0.0040224685587
+UniRef50_Q8CRY0	UPF0342 protein SE_1526	0.00662216195631	0.000518099482802	-0.00610406247351
+UniRef50_P41187	DNA directed RNA polymerase subunit beta 	5.01282096262e-05	4.29338198038e-05	-7.1943898224e-06
+UniRef50_A7N872		1.84844496023e-05	5.50975417287e-05	3.66130921264e-05
+UniRef50_X0SWR3	Marine sediment metagenome DNA, contig	3.17664255041e-05	4.50511103632e-06	-2.72613144678e-05
+UniRef50_Q5HN54	UPF0435 protein SERP1418	0.00230449033989	0.000868578544689	-0.0014359117952
+UniRef50_B9JY98	ABC transporter	0.0120387224355	0.000836926381729	-0.0112017960538
+UniRef50_UPI0003FAD0C0	hypothetical protein	4.861449408e-06	2.06669923201e-05	1.58055429121e-05
+UniRef50_G0IAR6	Transposase	4.41345998391e-05	0.000176139526107	0.000132004926268
+UniRef50_W0NHP5	Transposase	0.00033941550879	5.74378662781e-05	-0.000281977642512
+UniRef50_UPI0003474DAF	hypothetical protein	1.19230995553e-06	6.10192007791e-06	4.90961012238e-06
+UniRef50_UPI00037B2E7D	hypothetical protein	4.17161045203e-06	1.19098359621e-05	7.73822551007e-06
+UniRef50_A3M7C9		0.000124720040369	0.00837483213716	0.00825011209679
+UniRef50_UPI0002DCEE9A	hypothetical protein	1.30585057402e-05	1.93497722487e-05	6.2912665085e-06
+UniRef50_Q9I1X8		0.000810756432548	0.000457855356899	-0.000352901075649
+UniRef50_D2YK48	Phosphoribosylformylglycinamidine synthase	0.000165123977905	0.000100986665661	-6.4137312244e-05
+UniRef50_UPI000471F9AA	hypothetical protein	1.06631908282e-05	4.41940029206e-05	3.35308120924e-05
+UniRef50_P76205	Putative ankyrin repeat protein B	0.000540580488197	0.000635081111252	9.4500623055e-05
+UniRef50_G7M911	Major facilitator superfamily MFS_1	0.000243643116173	0.00154501637948	0.00130137326331
+UniRef50_UPI00046F5D51	leucyl phenylalanyl tRNA  protein transferase	8.1068854312e-06	3.48364879064e-05	2.67296024752e-05
+UniRef50_G7ZQT1		0.0163953556353	0.00326389349117	-0.0131314621441
+UniRef50_UPI0002489B72	polysaccharide biosynthesis protein	1.08641812914e-05	3.28861503763e-05	2.20219690849e-05
+UniRef50_A6W4G4		0.000132982065622	6.85921441896e-05	-6.43899214324e-05
+UniRef50_Q8D385	Zinc import ATP binding protein ZnuC	0.000197806637993	2.46396771049e-05	-0.000173166960888
+UniRef50_A0A011P1A0		0.000176357800995	5.35830808112e-05	-0.000122774720184
+UniRef50_K1UQX5	Thiazole biosynthesis protein ThiH 	0.000147372349326	0.000109781519587	-3.7590829739e-05
+UniRef50_B1J356	Bifunctional protein PyrR	0.000442802621941	0.0026001793949	0.00215737677296
+UniRef50_P19685	Superoxide dismutase [Fe]	1.37718390203e-05	2.16560767746e-05	7.8842377543e-06
+UniRef50_UPI0003B7AF8F	septation ring formation regulator EzrA	1.86047225611e-05	2.02875323195e-05	1.6828097584e-06
+UniRef50_A3KVE3		0.000873664340319	0.000395072515317	-0.000478591825002
+UniRef50_Q9RTB7	1,4 alpha glucan branching enzyme GlgB	0.000422510326123	0.0333975816673	0.0329750713412
+UniRef50_Q891D3	Tyrosine  tRNA ligase	0.000266020158991	0.00132351958365	0.00105749942466
+UniRef50_P67664	HTH type transcriptional activator AaeR	0.00382365407201	0.00127291561465	-0.00255073845736
+UniRef50_W8T7R1		0.00259164652166	0.000322750497486	-0.00226889602417
+UniRef50_Q1XG21		0.000280390014931	8.48635927669e-05	-0.000195526422164
+UniRef50_UPI0003B52ABE	flagellar biosynthesis protein FlhA	1.43652691683e-06	3.66104151916e-06	2.22451460233e-06
+UniRef50_F7ZDL0		7.69309138284e-06	2.40505047915e-05	1.63574134087e-05
+UniRef50_Q0PAR0	Macrolide export ATP binding permease protein MacB	2.88604915121e-06	1.30737793455e-05	1.01877301943e-05
+UniRef50_P23034	Aspartate aminotransferase	0.000825822026474	0.00847846432217	0.0076526422957
+UniRef50_A6LPV8	Isoaspartyl dipeptidase	0.000500199798562	0.000574787447927	7.4587649365e-05
+UniRef50_I4Z5S2	Type II secretory pathway, component PulF	6.14950942071e-06	0.00225866485091	0.00225251534149
+UniRef50_F5M175		0.000269120054789	6.66467404092e-05	-0.00020247331438
+UniRef50_X4ZX80		0.0112052573005	0.00243139445282	-0.00877386284768
+UniRef50_D3QFI9	Phosphomevalonate kinase	0.0215430717441	0.00742901684416	-0.0141140548999
+UniRef50_R8A3B5		0.000332512993594	6.71544086962e-06	-0.000325797552724
+UniRef50_F3ZKD4	Putative amino acid decarboxylase	6.1968961051e-06	2.95432770566e-05	2.33463809515e-05
+UniRef50_A0JUZ2	LexA repressor	8.52919040285e-05	1.19675162051e-05	-7.33243878234e-05
+UniRef50_UPI0002376C0A	cysteinyl tRNA synthetase	9.2316193776e-06	3.49026172962e-05	2.56709979186e-05
+UniRef50_UPI00040458A8	glyoxalase	1.19910692407e-05	3.00487280408e-05	1.80576588001e-05
+UniRef50_O35435	Dihydroorotate dehydrogenase , mitochondrial	3.88577241031e-06	1.12455891751e-05	7.35981676479e-06
+UniRef50_N9J1H3		0.000122032108466	0.00242491163778	0.00230287952931
+UniRef50_Q59928	Acetylornithine aminotransferase	0.0159852500756	0.00484810348502	-0.0111371465906
+UniRef50_Q5HEG2	Accessory gene regulator A	0.0215644058991	0.00218423362769	-0.0193801722714
+UniRef50_Q0K6L6	Ribosomal RNA small subunit methyltransferase H	2.31142292189e-05	1.27483708071e-05	-1.03658584118e-05
+UniRef50_H2JCD9		0.000327616296138	0.00121786228017	0.000890245984032
+UniRef50_UPI00040C37BB	peptide chain release factor 3	1.78520051562e-05	5.78437488549e-05	3.99917436987e-05
+UniRef50_Q39F94	Polysaccharide deacetylase	0.000236915892584	0.0046493327219	0.00441241682932
+UniRef50_Q0VQP5	Lipid A export ATP binding permease protein MsbA	3.05016714536e-06	4.50427092526e-06	1.4541037799e-06
+UniRef50_Q8XGY4	tRNA specific adenosine deaminase	1.09335700826e-05	4.19686453001e-05	3.10350752175e-05
+UniRef50_W1CRU3		6.86010788154e-05	9.47227310176e-05	2.61216522022e-05
+UniRef50_P43703	DNA topoisomerase 4 subunit B	0.000437014894835	4.74048889865e-06	-0.000432274405936
+UniRef50_Q8FB22	Replicative DNA helicase	0.00195900048037	0.00458343631954	0.00262443583917
+UniRef50_A7ZM93		0.00247821551277	0.000536743353068	-0.0019414721597
+UniRef50_A8GP69	Phospho N acetylmuramoyl pentapeptide transferase	0.00777148216546	0.00228095455262	-0.00549052761284
+UniRef50_UPI00035E3AF9	hypothetical protein	6.42731468893e-06	0.000155966387808	0.000149539073119
+UniRef50_UPI0003B5603D	3 oxoacyl ACP synthase	9.13923511008e-06	4.36447086396e-05	3.45054735295e-05
+UniRef50_UPI00046818D4	aldehyde dehydrogenase	3.22417670688e-06	1.99939095982e-05	1.67697328913e-05
+UniRef50_X3K6P1		6.54042744555e-05	0.000101407900318	3.60036258625e-05
+UniRef50_Q3J3U2		0.00184127214374	0.000239122838212	-0.00160214930553
+UniRef50_Q0K963	Histidine  tRNA ligase	0.00259319674761	0.00478093583506	0.00218773908745
+UniRef50_UPI000466CCF2	hypothetical protein	2.44359639678e-06	5.55262682456e-06	3.10903042778e-06
+UniRef50_Q5LYN3	UDP N acetylenolpyruvoylglucosamine reductase	0.0294558856997	0.0109561700847	-0.018499715615
+UniRef50_A0A023RTB7	TonB dependent receptor	0.000117385290996	0.00750964758678	0.00739226229578
+UniRef50_P07017	Methyl accepting chemotaxis protein II	0.00587380266786	0.00157358171672	-0.00430022095114
+UniRef50_K0HVG4	Magnesium chelatase subunit ChlI	0.000200790419604	0.00567669919155	0.00547590877195
+UniRef50_UPI00035F8B10	hypothetical protein	5.65392826143e-06	1.3840821117e-05	8.18689285557e-06
+UniRef50_UPI000440FDB6	PREDICTED	5.90183925532e-06	1.75820762938e-05	1.16802370385e-05
+UniRef50_N4N922	Aminotransferase class I and II family protein 	0.00157285828688	0.000831878042813	-0.000740980244067
+UniRef50_E2YZE2		0.0107108807675	0.00782463065047	-0.00288625011703
+UniRef50_F0KG57		0.000125133476969	0.00611722693169	0.00599209345472
+UniRef50_UPI0003640B98	hypothetical protein, partial	1.64705366131e-06	3.19602446545e-07	-1.32745121477e-06
+UniRef50_B7H1Y2	LysR substrate binding domain protein	0.000156850133866	0.00655258955399	0.00639573942012
+UniRef50_Q7MME5		4.37985877149e-05	6.65439152668e-05	2.27453275519e-05
+UniRef50_C6SHL5		2.67362015027e-05	0.000274119362039	0.000247383160536
+UniRef50_A0A010WN13	Phospholipase C, phosphocholine specific	0.000169580374119	0.00756598715365	0.00739640677953
+UniRef50_Q2YY30	Truncated cell surface fibronectin binding protein	0.000496698599059	0.000529600001783	3.2901402724e-05
+UniRef50_UPI00034C42C5	hypothetical protein	2.60437086541e-06	6.82373120784e-06	4.21936034243e-06
+UniRef50_Q5WLV8	4 diphosphocytidyl 2 C methyl D erythritol kinase	2.07595030953e-05	0.00268027845368	0.00265951895058
+UniRef50_UPI00036A7304	hypothetical protein	7.87460375357e-05	3.24248144453e-05	-4.63212230904e-05
+UniRef50_Q67SK0	ATP dependent Clp protease proteolytic subunit 1	0.0203238830158	0.0144977263678	-0.005826156648
+UniRef50_P32152	Putative frv operon regulatory protein	0.00287222758709	0.000328752539038	-0.00254347504805
+UniRef50_UPI000372D8ED	hypothetical protein	3.9038546996e-05	4.39972727362e-05	4.9587257402e-06
+UniRef50_X4QTW2	Excinuclease ABC subunit A	0.000365347884855	0.00597163464502	0.00560628676016
+UniRef50_D6SBZ3	Amidohydrolase family protein	0.0103836879905	0.00311295932253	-0.00727072866797
+UniRef50_Q6ABR7	Cobalamin biosynthesis protein CobN	3.20265262076e-05	0.00478301816329	0.00475099163708
+UniRef50_P77493		0.00248569796678	0.00151725400242	-0.00096844396436
+UniRef50_UPI0003025696	hypothetical protein	2.35118911205e-05	8.12176438155e-06	-1.5390126739e-05
+UniRef50_UPI0004767909	 binding protein	5.62094915235e-05	9.87110164272e-06	-4.63383898808e-05
+UniRef50_UPI00047B08A4	hypothetical protein	0.000103335168301	0.000100387499282	-2.947669019e-06
+UniRef50_UPI00047D5805	hypothetical protein	3.61275948224e-05	4.22472045129e-05	6.1196096905e-06
+UniRef50_Q5FKU9	Cell division protein FtsZ	0.00737566751452	0.00600587060389	-0.00136979691063
+UniRef50_UPI0003B55D8E	pyruvate kinase	1.79551179342e-05	1.25349157627e-05	-5.4202021715e-06
+UniRef50_Q89L46	UvrABC system protein A	0.00895787970116	0.0011499359591	-0.00780794374206
+UniRef50_UPI00045603F6	hypothetical protein PFL1_03459	2.6603607741e-05	9.69587105776e-06	-1.69077366832e-05
+UniRef50_Q5HL03		0.00127358890476	0.0265373190214	0.0252637301166
+UniRef50_A5UK97	Predicted permease	0.00160875134474	0.00120133723912	-0.00040741410562
+UniRef50_M9VI15		0.000433477130563	0.0036255695855	0.00319209245494
+UniRef50_B9DW22		0.000612139441381	0.00100107357693	0.000388934135549
+UniRef50_I6T6W0	Dehydrogenase	0.00553181113933	0.00216783971121	-0.00336397142812
+UniRef50_Q2IIH7	PE PGRS family protein	0.000949025022007	0.00152768574689	0.000578660724883
+UniRef50_A6LWM4	Amine oxidase	0.000357775265256	0.00248638781778	0.00212861255252
+UniRef50_G8XHV9		0.000126268929618	2.44098165855e-05	-0.000101859113033
+UniRef50_C7TGJ0	PTS system, IIC component	0.004101438313	0.00509327363259	0.00099183531959
+UniRef50_X0TXG2	Marine sediment metagenome DNA, contig	2.38679573879e-05	0.000451923479511	0.000428055522123
+UniRef50_P77721		0.00138206705698	0.00120139272301	-0.00018067433397
+UniRef50_UPI0003639180	hypothetical protein	3.19037379464e-05	1.85327275236e-05	-1.33710104228e-05
+UniRef50_UPI0003FDB00F	hypothetical protein	1.76988655493e-05	1.76263836868e-05	-7.24818625e-08
+UniRef50_G8V8I0	Regulator of sorbitol operon	0.000219365157044	0.00450619998833	0.00428683483129
+UniRef50_UPI00047AE27E	DNA topoisomerase I	0.0005718035332	0.00129001965664	0.00071821612344
+UniRef50_R9ZG20	Chemotaxis protein	0.000591355969722	0.000295354775877	-0.000296001193845
+UniRef50_H8Z498		0.000110589311456	1.02886153978e-05	-0.000100300696058
+UniRef50_A3TUV5		0.000618558930468	0.00017236247027	-0.000446196460198
+UniRef50_Q8ELA5	Methionine import ATP binding protein MetN 4	1.64527642481e-05	0.00228023526799	0.00226378250374
+UniRef50_S3ZS47	Putative Oleandomycin polyketide synthase, modules 5 and 6	7.22339582887e-05	2.68926612013e-05	-4.53412970874e-05
+UniRef50_B1I1Y5	Phosphoglucosamine mutase	0.000515086698447	0.00133219499756	0.000817108299113
+UniRef50_Q57772	Putative permease MJ0326	0.0013187319194	0.00244200997823	0.00112327805883
+UniRef50_UPI00037341DE	hypothetical protein	2.13272799561e-05	8.7408229462e-06	-1.25864570099e-05
+UniRef50_I2F9Q0	Cobalt zinc cadmium resistance protein CzcA	4.12853797497e-05	0.00287363248875	0.002832347109
+UniRef50_Q00749	Multiple sugar binding protein	0.00524352553798	0.00222345984712	-0.00302006569086
+UniRef50_G7M9H8		0.000141380520171	0.00177143068101	0.00163005016084
+UniRef50_C5MZ71	PIN domain protein	0.0118885604994	0.00101842626507	-0.0108701342343
+UniRef50_UPI0002896123	flagellar motor switch protein FliN	0.000120120383648	3.95226116104e-05	-8.05977720376e-05
+UniRef50_P41031	Thiosulfate binding protein	0.00196184454033	0.00120691578759	-0.00075492875274
+UniRef50_W9G6K5		5.09385762422e-05	4.74795688226e-05	-3.4590074196e-06
+UniRef50_A8AVK0	Protein LemA	0.0102171360425	0.000551993841485	-0.00966514220101
+UniRef50_B8FYL8	Two component transcriptional regulator, winged helix family	0.000418063741423	0.00558553311669	0.00516746937527
+UniRef50_C6SRE4		0.00500359901084	0.00222779357882	-0.00277580543202
+UniRef50_M9VG81	Glycosyl hydrolase family 20, catalytic domain protein	0.000530464020794	0.00592270199318	0.00539223797239
+UniRef50_UPI00031DE77D	hypothetical protein	0.000201468337333	8.85684855743e-05	-0.000112899851759
+UniRef50_UPI000478621D	hypothetical protein	1.56287571307e-05	6.79824419492e-06	-8.83051293578e-06
+UniRef50_A6V3K7	Membrane protein, putative	0.000148616531043	0.000246782762008	9.8166230965e-05
+UniRef50_I0C7T4	X Pro dipeptidyl peptidase  family protein	0.000482910178341	0.000468959995716	-1.3950182625e-05
+UniRef50_UPI0003753634	hypothetical protein	1.04943836201e-05	6.36068817682e-05	5.31124981481e-05
+UniRef50_A7X6X6	Pantothenate synthetase	0.0241384567907	0.00443872286926	-0.0196997339214
+UniRef50_A6LQ26	Two component transcriptional regulator, LytTR family	0.000166783205682	0.00207625725214	0.00190947404646
+UniRef50_D5ARQ0	Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI	0.000801972115586	0.000361895395144	-0.000440076720442
+UniRef50_UPI000375A365	hypothetical protein	5.38674729484e-06	9.58068222996e-05	9.04200750048e-05
+UniRef50_UPI0004785697	polyphosphate kinase	8.37073056165e-06	0.000203620707278	0.000195249976716
+UniRef50_UPI000365B78F	transposase IS200	7.95257942545e-05	0.000107135392876	2.76095986215e-05
+UniRef50_B7V041	Glycine glutamate dipeptide porin OpdP	0.00106728457456	0.000129619621887	-0.000937664952673
+UniRef50_Q3K8E9	23S rRNA  C(5)) methyltransferase RlmD	0.000316659027346	9.81282770331e-05	-0.000218530750313
+UniRef50_Q3IV20		0.0348268888184	0.00128920135807	-0.0335376874603
+UniRef50_Q3IV23		0.00164620488659	0.00150450224945	-0.00014170263714
+UniRef50_Q3IV22		0.000842884503193	0.000867958776462	2.5074273269e-05
+UniRef50_UPI0003B70939	FAD containing monooxygenase EthA, partial	2.2028632816e-05	4.91223075027e-05	2.70936746867e-05
+UniRef50_Q3IV27		0.00603265008739	0.000454814595262	-0.00557783549213
+UniRef50_A1B4G8	Orn DAP Arg decarboxylase 2	0.00271807956807	0.000724455459513	-0.00199362410856
+UniRef50_UPI000378AE4A	O acetylhomoserine aminocarboxypropyltransferase	1.63325269391e-05	9.47672619358e-06	-6.85580074552e-06
+UniRef50_Q9RUU0	D 3 phosphoglycerate dehydrogenase	0.00013942341107	0.0301426073813	0.0300031839702
+UniRef50_C6ST04		0.00465763918008	0.00573099953673	0.00107336035665
+UniRef50_M7YV85	Formin like protein 6	3.51688528049e-06	4.10876142454e-06	5.9187614405e-07
+UniRef50_P33222	Putative acid  amine ligase YjfC	0.00339190132305	0.000251690373754	-0.0031402109493
+UniRef50_W5X567		7.20986472507e-05	1.67984490755e-05	-5.53001981752e-05
+UniRef50_I4EYS5	NAD dependent epimerase dehydratase	0.000115658512532	0.000198565968206	8.2907455674e-05
+UniRef50_UPI00036FB7EB	hypothetical protein	3.74467463666e-06	1.37797798451e-05	1.00351052084e-05
+UniRef50_H9UZT1	Ribonucleoside diphosphate reductase 1, beta subunit, B2	0.00235381795536	0.00135217125076	-0.0010016467046
+UniRef50_A6M1W3	Multi sensor signal transduction histidine kinase	0.000292824635796	0.00177655531356	0.00148373067776
+UniRef50_Q9RTX3	C di GMP phosphodiesterase A	0.000117328758456	0.0179809115678	0.0178635828093
+UniRef50_D0JET7	Sodium serine  transporter	0.00100950363723	0.000944668955554	-6.4834681676e-05
+UniRef50_UPI00040C441F	PTS glucose transporter subunit IIB	1.74393789552e-05	9.18430841581e-05	7.44037052029e-05
+UniRef50_A5UL56	Molybdopterin biosynthesis protein, MoeB	0.00280400473023	0.000635548456494	-0.00216845627374
+UniRef50_R4ZW64	NAD dependent oxidoreductase	0.000153034860351	0.000533965196472	0.000380930336121
+UniRef50_UPI00047AEC83	chemotaxis protein CheY	1.40568039596e-05	8.61835729628e-05	7.21267690032e-05
+UniRef50_H2A8F3	Methionine ABC transporter substrate binding protein	0.00657181913759	0.00304293616662	-0.00352888297097
+UniRef50_F0RLS2	Metal dependent phosphohydrolase with GAF sensor	0.000110591598297	0.0264537530311	0.0263431614328
+UniRef50_F2MVP5	L sorbosone dehydrogenase	0.0130086667608	0.00254635926438	-0.0104623074964
+UniRef50_K9ZX43		0.000147072463189	0.0231502038411	0.0230031313779
+UniRef50_L1K6L8	Methyl accepting chemotaxis protein	0.00120266545315	0.000754000098364	-0.000448665354786
+UniRef50_UPI00047DE5DB	ribonuclease 3	9.77648101939e-06	9.48742710663e-06	-2.8905391276e-07
+UniRef50_P45955		0.00192732948129	0.000681168522267	-0.00124616095902
+UniRef50_X5E195		0.00540048602413	0.000509166733097	-0.00489131929103
+UniRef50_D0LY72	Putative transcriptional regulator, Crp Fnr family	4.64417408264e-05	3.63325322954e-05	-1.0109208531e-05
+UniRef50_UPI00029AEFE9	DNA topoisomerase I subunit omega	1.76424025654e-05	0.000196612937139	0.000178970534574
+UniRef50_Q5HJZ0	DNA gyrase subunit A	0.016534477752	0.00538676135046	-0.0111477164015
+UniRef50_D5RPK9		1.77182186898e-05	5.58010763987e-05	3.80828577089e-05
+UniRef50_B5F1C1	HTH type transcriptional regulator IscR	0.0180981679997	0.000364588524928	-0.0177335794748
+UniRef50_Q0G4L4		0.000112987754093	1.94632716902e-05	-9.35244824028e-05
+UniRef50_E3ZBY8	DHH subfamily 1 protein 	2.68638733529e-05	0.00183409578723	0.00180723191388
+UniRef50_F9NYB1	RHS repeat associated core domain protein	2.42029913741e-05	0.000863411435195	0.000839208443821
+UniRef50_UPI0003B34E67	ABC transporter	7.50713988334e-05	3.38584735936e-05	-4.12129252398e-05
+UniRef50_F8LI03	Sal9 lantibiotic transport ATP binding protein	0.00930512358008	0.000200214715383	-0.0091049088647
+UniRef50_K4KVK1	Drug resistance ABC transporter,ATP binding protein	0.000154989443301	0.00102507238017	0.000870082936869
+UniRef50_UPI000476294D	formyltetrahydrofolate deformylase	3.73878403764e-05	2.06091931295e-05	-1.67786472469e-05
+UniRef50_P61502	Superoxide dismutase [Mn]	1.02081202158e-05	3.02577543801e-05	2.00496341643e-05
+UniRef50_A5UNM6	SAM dependent methyltransferase	0.00849111482105	0.00108705535655	-0.0074040594645
+UniRef50_UPI0002627AF2	RpoD subfamily RNA polymerase sigma 70 subunit	3.28284654563e-06	4.79367475213e-06	1.5108282065e-06
+UniRef50_Q97IG3	Alanine  tRNA ligase	0.000422637123772	0.000766859134778	0.000344222011006
+UniRef50_P75692		0.000466032084997	0.00128840288488	0.000822370799883
+UniRef50_UPI0002BAB8F5	hypothetical protein, partial	0.000241813692432	0.00010883762805	-0.000132976064382
+UniRef50_Q37374	Cytochrome c oxidase subunit 3	6.60691389082e-05	2.86498337168e-05	-3.74193051914e-05
+UniRef50_UPI00035D52F0	hypothetical protein	2.15107237645e-05	8.7572277124e-06	-1.27534960521e-05
+UniRef50_Q2S432	ATP synthase subunit alpha	3.64876127905e-06	0.00605087288603	0.00604722412475
+UniRef50_I6T7J2		0.00260954016454	0.000605503010314	-0.00200403715423
+UniRef50_K0D4L6		5.75166767241e-05	2.42156703453e-05	-3.33010063788e-05
+UniRef50_Q12YB2	CRISPR associated helicase Cas3	5.82642274481e-05	6.48549705319e-06	-5.17787303949e-05
+UniRef50_F5XP90		7.32982502581e-05	0.00796859591419	0.00789529766393
+UniRef50_P38055	Inner membrane metabolite transport protein YdjE	0.000156850133866	0.00020627476498	4.9424631114e-05
+UniRef50_UPI000328C9B2	PREDICTED	1.65453310905e-05	0.000208742792204	0.000192197461113
+UniRef50_B2II05	ABC transporter related	0.00408188699475	0.000850254209396	-0.00323163278535
+UniRef50_I2AAI6	Cellobiose phosphorylase	3.26849497377e-06	1.88748129388e-05	1.5606317965e-05
+UniRef50_A3CQL5	Amino acid ABC transporter, periplasmic amino acid binding protein, putative	0.00395986634679	0.000266051085761	-0.00369381526103
+UniRef50_UPI0003B46C76	hypothetical protein	2.84228403115e-05	9.01217532685e-06	-1.94106649846e-05
+UniRef50_D3JTG3	3 hydroxylisobutyryl CoA hydrolase	0.000818500172003	0.0136690881686	0.0128505879966
+UniRef50_A4HM87	Proteophosphoglycan ppg4	1.98154837901e-05	0.000135633711865	0.000115818228075
+UniRef50_J0W6L9		0.000218871326518	0.000247046029491	2.8174702973e-05
+UniRef50_A6LXJ5	Na H(+) antiporter NhaA 2	0.000487349830313	0.00252042057701	0.0020330707467
+UniRef50_V5REB2	WafV	9.77942976327e-05	0.00937020184807	0.00927240755044
+UniRef50_UPI0004073FCC	dihydroxyacetone kinase	2.5629469346e-05	0.0012488440291	0.00122321455975
+UniRef50_K9ZYD2	Exodeoxyribonuclease III	0.00024406421693	0.021503338744	0.0212592745271
+UniRef50_Q9RRR7	Sensory box sensor histidine kinase	0.0001072257636	0.0166757102461	0.0165684844825
+UniRef50_B9KT23	Glycine reductase complex protein C large subunit	0.00219540631815	0.000352369130465	-0.00184303718768
+UniRef50_UPI000471CC40	hypothetical protein	3.77716535626e-05	1.22087308662e-05	-2.55629226964e-05
+UniRef50_Q59A32	Trifunctional purine biosynthetic protein adenosine 3	3.13872872176e-06	2.62852624844e-06	-5.1020247332e-07
+UniRef50_P0A1B6	Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive	0.00371340181284	0.00217287445752	-0.00154052735532
+UniRef50_A7NR36	DNA directed RNA polymerase subunit alpha	1.99824640152e-05	4.14939622295e-05	2.15114982143e-05
+UniRef50_UPI00037D0C80	hypothetical protein	6.65735235466e-05	7.99153873709e-05	1.33418638243e-05
+UniRef50_V8G2Y5	Crp Fnr family transcription regulator	0.000175574878536	0.00174250639593	0.00156693151739
+UniRef50_A0A059LCN6		0.000105240994677	0.000206877765398	0.000101636770721
+UniRef50_A0A011RXV5	Type IV secretion system ATPase VirB11	0.00011884863753	6.81565995955e-05	-5.06920379345e-05
+UniRef50_UPI00046D7021	hypothetical protein	7.98329083728e-06	5.21047134837e-06	-2.77281948891e-06
+UniRef50_B2THL1	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000199066473348	0.00176021924043	0.00156115276708
+UniRef50_UPI00025593F3	chemotaxis protein	4.8668336341e-05	2.55522743141e-05	-2.31160620269e-05
+UniRef50_Q6FBV7	3 hydroxyisobutyrate dehydrogenase	0.00026472340519	0.00971622186908	0.00945149846389
+UniRef50_UPI00040CFD31	hypothetical protein	3.76541027836e-05	2.2064326043e-05	-1.55897767406e-05
+UniRef50_Q9RSJ6	DNA directed RNA polymerase subunit alpha	1.58231809344e-05	0.0361980261084	0.0361822029275
+UniRef50_UPI0003728B08	hypothetical protein	6.88932848041e-05	1.79279344568e-05	-5.09653503473e-05
+UniRef50_UPI00024868FB	hypothetical protein	0.000317328486701	1.86864623895e-05	-0.000298642024311
+UniRef50_E3F1F2	RelA SpoT family protein	0.00803446906144	0.00210126652969	-0.00593320253175
+UniRef50_UPI00036CA645	hypothetical protein	2.56169861598e-05	0.000290602745547	0.000264985759387
+UniRef50_F8G483	Integral membrane protein TerC	0.000921389890703	0.000170048006835	-0.000751341883868
+UniRef50_E2QLT7		0.000933869547394	0.00109848325529	0.000164613707896
+UniRef50_Q05599	Bifunctional adenosylcobalamin biosynthesis protein CobU	0.00138580882327	7.15898030953e-05	-0.00131421902017
+UniRef50_Q8FW08	sn glycerol 3 phosphate transport system permease protein UgpE	0.00932572348268	0.00108501178009	-0.00824071170259
+UniRef50_A3PAU4	Chorismate synthase	4.51423476046e-06	1.5324111368e-05	1.08098766075e-05
+UniRef50_S5KJ87		1.06926318816e-06	0.00142848106742	0.00142741180423
+UniRef50_R9ZM17	Chemotaxis protein	0.00114794441715	0.000361717629572	-0.000786226787578
+UniRef50_UPI00037D86B2	hypothetical protein	1.13032497291e-05	1.23660747563e-05	1.0628250272e-06
+UniRef50_Q500N2	Bifunctional spore maturation protein, fused SpmA SpmB	9.22197041218e-05	0.000467325133115	0.000375105428993
+UniRef50_V5WU09	Transcriptional regulator	0.000245665484807	0.00211630071658	0.00187063523177
+UniRef50_UPI0002D3498A	hypothetical protein	4.59971761171e-05	4.97810335979e-06	-4.10190727573e-05
+UniRef50_UPI00047D2769	phosphoenolpyruvate protein phosphotransferase	3.07650312353e-06	8.45211884096e-05	8.14446852861e-05
+UniRef50_G8VAH8	Kinase domain protein	7.42108759259e-05	0.00691952282844	0.00684531195251
+UniRef50_T1CR22	Site specific recombinase	1.3776913791e-05	0.000265343330868	0.000251566417077
+UniRef50_D0K172		0.000215706279348	0.0018292834454	0.00161357716605
+UniRef50_UPI0003EF77A3	hypothetical protein	0.000117359778757	0.000130687297718	1.3327518961e-05
+UniRef50_F8W467		6.67949269383e-06	1.55753892354e-05	8.89589654157e-06
+UniRef50_F9UHG1	Putative solute symporter protein	2.10123206672e-05	7.42582506103e-05	5.32459299431e-05
+UniRef50_A6M205	Transcriptional regulator, GntR family	0.0001909709893	0.00285628282473	0.00266531183543
+UniRef50_Q1J2B0	Peptidase M29, aminopeptidase II	0.000113586556327	0.0213342040473	0.021220617491
+UniRef50_A5UNV4	Putative major capsid protein gp5 	0.00633086257814	0.000611724963857	-0.00571913761428
+UniRef50_R7PVH8		0.000952410113641	0.000526289099055	-0.000426121014586
+UniRef50_UPI00047926DE	transposase	3.12413356951e-06	6.21300267044e-05	5.90058931349e-05
+UniRef50_Q1QX79		4.9678037189e-05	3.59786495507e-05	-1.36993876383e-05
+UniRef50_D8JMF6		0.000134816424593	0.00611437300908	0.00597955658449
+UniRef50_A0A009QE54	TonB dependent siderophore receptor family protein	0.000250460260786	0.00766343700894	0.00741297674815
+UniRef50_UPI00037EFDE6	hypothetical protein	3.40866075036e-05	3.13459793105e-05	-2.7406281931e-06
+UniRef50_UPI00038177C4	hypothetical protein	2.22251673062e-05	1.74682644133e-05	-4.7569028929e-06
+UniRef50_Q5HP19	Proline dipeptidase	0.0216011327094	0.00526702172571	-0.0163341109837
+UniRef50_A1B4V0		0.00325664961853	0.00123321256016	-0.00202343705837
+UniRef50_F9GT79	UPF0125 protein GGA_0527	1.00315708908e-05	2.01100610781e-05	1.00784901873e-05
+UniRef50_UPI00047EFD30	hypothetical protein	1.76699215318e-05	9.02591901783e-05	7.25892686465e-05
+UniRef50_UPI00036F0908	hypothetical protein	4.51049605241e-06	1.69795972756e-05	1.24691012232e-05
+UniRef50_X2LYU6		1.56181175861e-05	1.80696904975e-05	2.4515729114e-06
+UniRef50_G8V4E9	ATP dependent DNA helicase RecQ	0.00946865105445	0.00221715766914	-0.00725149338531
+UniRef50_B2U6Z0	N anthranilate isomerase	0.00219529407841	0.000305715303102	-0.00188957877531
+UniRef50_Q92SH6	Peptide deformylase	3.6846322747e-05	8.86607233645e-05	5.18144006175e-05
+UniRef50_Q8RGC8	Fe ions import ATP binding protein FbpC	4.22742506301e-05	0.000200668202859	0.000158393952229
+UniRef50_J0YJQ5	Serine aspartate repeat containing protein G	0.0066755644067	0.00269678632111	-0.00397877808559
+UniRef50_X1K5L6	Marine sediment metagenome DNA, contig	6.42746352788e-06	1.30369969647e-05	6.60953343682e-06
+UniRef50_T0VCE6	ABC transporter ATP binding protein	0.0103148694981	0.00221494492861	-0.00809992456949
+UniRef50_UPI00040CE7D5	hypothetical protein	5.92851567073e-05	3.50983835316e-05	-2.41867731757e-05
+UniRef50_F8H6P0		0.000661344072478	0.000889333462438	0.00022798938996
+UniRef50_Q9RTE3	Protein export membrane protein, putative	4.96692090564e-05	0.0258598062743	0.0258101370652
+UniRef50_D2NXJ8		6.34364420643e-05	0.000927324757521	0.000863888315457
+UniRef50_A8AJI8	Citrate lyase acyl carrier protein	0.000529185965684	0.000626113155893	9.6927190209e-05
+UniRef50_H8H0D3		0.000454958593323	0.0427128696261	0.0422579110328
+UniRef50_Q5ZEI2		1.22364750339e-05	0.00104247700434	0.00103024052931
+UniRef50_I6T664		0.00451343786544	0.00148395786982	-0.00302947999562
+UniRef50_K2D6T3		0.000125310601514	0.000148250485467	2.2939883953e-05
+UniRef50_Q11K61	Binding protein dependent transport systems inner membrane component	0.000575751563428	0.000278163301593	-0.000297588261835
+UniRef50_P39062	Acetyl coenzyme A synthetase	0.0103015327761	0.00276047570116	-0.00754105707494
+UniRef50_UPI0004643E21	hypothetical protein	1.34440395945e-05	2.45065246852e-05	1.10624850907e-05
+UniRef50_C1CX98	3 methyl 2 oxobutanoate hydroxymethyltransferase	8.10250341907e-06	1.28475882897e-05	4.74508487063e-06
+UniRef50_Q59641	Peptidyl prolyl cis trans isomerase A	0.00273230577485	0.00100766018828	-0.00172464558657
+UniRef50_UPI000463A8B3	preprotein translocase subunit SecD SecF, partial	2.86177976162e-06	1.00838329191e-05	7.22205315748e-06
+UniRef50_B5F808	UPF0231 protein YacL	0.000483729960722	0.000519618836113	3.5888875391e-05
+UniRef50_A0A058ZAW9		2.11358430669e-06	3.76645629365e-05	3.55509786298e-05
+UniRef50_T9NAV5	Inner membrane protein	3.91367596396e-05	0.000386034908756	0.000346898149116
+UniRef50_G7LZJ4		0.000467826976731	0.000684256318889	0.000216429342158
+UniRef50_UPI0002B9550C	regulator for metE and MetH	0.000150659321835	0.000200974028319	5.0314706484e-05
+UniRef50_UPI00046A72DD	hypothetical protein	6.87464995661e-06	1.04717194038e-05	3.59706944719e-06
+UniRef50_A3PS85		0.00370743857263	0.000366095089089	-0.00334134348354
+UniRef50_B7NUS6		0.0011487182418	0.000272181295113	-0.000876536946687
+UniRef50_UPI0003B61198	cobalt ABC transporter ATP binding protein	1.60211162977e-05	9.71172660575e-06	-6.30938969195e-06
+UniRef50_G7M0X3	Transcriptional regulator, AraC family	0.000803347984395	0.00136978109218	0.000566433107785
+UniRef50_T0P454		4.19969481506e-05	2.40075299561e-05	-1.79894181945e-05
+UniRef50_UPI000478626E	3 oxoacyl ACP reductase	9.70888553198e-06	1.29433264158e-05	3.23444088382e-06
+UniRef50_UPI00026CD1C9	MFS transporter	1.42819052456e-05	1.14892715795e-05	-2.7926336661e-06
+UniRef50_A0A026WQ11		0.000454540923018	9.64386994461e-05	-0.000358102223572
+UniRef50_W5X9Y2	ABC transporter related protein	2.67837117836e-05	1.00254780074e-05	-1.67582337762e-05
+UniRef50_Q6F803		0.000298015254361	0.00218150852335	0.00188349326899
+UniRef50_P08956	Type I restriction enzyme EcoKI R protein	0.00164205592549	0.00126971046851	-0.00037234545698
+UniRef50_I4DYP2	RNA binding protein	0.00757269134152	0.00675743066569	-0.00081526067583
+UniRef50_I0C528		0.00978524105939	0.00274225256523	-0.00704298849416
+UniRef50_I0Z1H0		1.09303054781e-06	3.40051121409e-06	2.30748066628e-06
+UniRef50_D8JHE9	Nitrate transport ATP binding protein nrtC	0.000245891592022	0.00756808357449	0.00732219198247
+UniRef50_A9M366		0.000301988791085	0.00101106650997	0.000709077718885
+UniRef50_UPI00046F9B67	PTS system, glucose subfamily, IIA component	2.87403172244e-06	4.13053256777e-06	1.25650084533e-06
+UniRef50_E3EYF0	C4 dicarboxylate transport transcriptional regulatory protein DctD	0.0103017977633	0.00280889485706	-0.00749290290624
+UniRef50_UPI00047AADF7	serine threonine protein phosphatase	6.68769567577e-06	9.14179872369e-06	2.45410304792e-06
+UniRef50_Q5HLA3	Putative aldehyde dehydrogenase AldA	0.0266845429308	0.00772333054173	-0.0189612123891
+UniRef50_A7ZIM8	Adenine phosphoribosyltransferase	0.00177385007496	0.000342610826539	-0.00143123924842
+UniRef50_V5NHS3		6.39806760752e-05	0.00514459373032	0.00508061305424
+UniRef50_K0HKR9		9.2445548289e-05	0.00716176150989	0.0070693159616
+UniRef50_N4DH58	Pyridine nucleotide disulfide oxidoreductase family protein	0.000570613484775	0.000331816522686	-0.000238796962089
+UniRef50_G7U4C3	Hypoxanthine phosphoribosyltransferase	0.000832689681294	0.0100591540507	0.00922646436941
+UniRef50_Q8E310	Phosphate binding protein PstS 2	0.000721322924183	0.000568922136243	-0.00015240078794
+UniRef50_C5BFM6	Beta hexosaminidase	0.000344532895441	0.00663167559093	0.00628714269549
+UniRef50_Q3HKK4		0.00355778376238	0.00153264887415	-0.00202513488823
+UniRef50_UPI00037B5AE4	30S ribosomal protein S1	2.9951910108e-06	0.00010634087058	0.000103345679569
+UniRef50_Q9ZKE4	Primosomal protein N	0.000212349102803	0.00374766343554	0.00353531433274
+UniRef50_M9RBV2		0.00299804163973	0.00060830661409	-0.00238973502564
+UniRef50_UPI000467A396	hypothetical protein	5.41422258121e-05	2.26459769234e-05	-3.14962488887e-05
+UniRef50_R7PWJ2		0.00182059947183	0.000571553111221	-0.00124904636061
+UniRef50_L0KHH1	Cation multidrug efflux pump	0.00896337742238	0.00206341386895	-0.00689996355343
+UniRef50_Q0BTL1	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	6.99683230975e-05	3.78708776306e-05	-3.20974454669e-05
+UniRef50_B0T0X6	Protoheme IX farnesyltransferase	9.11097112223e-06	7.22310644913e-05	6.31200933691e-05
+UniRef50_Q6Q272	p hydroxyphenylacetate 3 hydroxylase, oxygenase component	0.0124054917765	0.00238516434941	-0.0100203274271
+UniRef50_C5BQ62	50S ribosomal protein L4	0.00331467103294	0.002619018341	-0.00069565269194
+UniRef50_Q9JTG4	Alanine  tRNA ligase	8.92026081351e-05	0.00468771506549	0.00459851245735
+UniRef50_A1KTV6	2 isopropylmalate synthase	0.000217079094157	0.00251395156737	0.00229687247321
+UniRef50_D4HCV5	Periplasmic binding protein	3.90538025751e-05	0.000179283163332	0.000140229360757
+UniRef50_A4IMH7	tRNA 2 methylthio N dimethylallyladenosine synthase	0.0190985753996	0.003778971474	-0.0153196039256
+UniRef50_UPI00036C607F	hypothetical protein	2.97631445172e-05	6.36199300237e-06	-2.34011515148e-05
+UniRef50_A1UG51	Spermidine putrescine import ATP binding protein PotA	0.000327032302683	1.42904879509e-05	-0.000312741814732
+UniRef50_UPI0004657C1A	serine threonine protein kinase	4.56160646924e-05	1.42699460812e-05	-3.13461186112e-05
+UniRef50_Q5HPV5	UPF0122 protein SERP0802	0.0182996643452	0.00053693946399	-0.0177627248812
+UniRef50_D2NAH1	Dihydroorotate oxidase	0.0268827123502	0.00388792697206	-0.0229947853781
+UniRef50_UPI0004671BDB	hypothetical protein	9.15606069038e-05	5.73898363178e-06	-8.5821623272e-05
+UniRef50_M2IT76	Glucosyltransferase S	0.000937047786034	0.000873203180054	-6.384460598e-05
+UniRef50_UPI000370D86A	hypothetical protein	6.83280858819e-05	8.68499813085e-06	-5.9643087751e-05
+UniRef50_P24180	Multidrug export protein AcrE	0.00260771528958	0.000387083916662	-0.00222063137292
+UniRef50_A0A037YKV0	N acetylglucosamine 6 phosphate deacetylase	0.000474219386336	0.000405667722205	-6.8551664131e-05
+UniRef50_UPI000418069B	ABC transporter	1.95992890936e-05	4.98147629591e-06	-1.46178127977e-05
+UniRef50_E2XTQ0	Ribose ABC transporter, permease protein	0.000213671314441	0.0036527615265	0.00343909021206
+UniRef50_A5WHZ8	OmpW family protein	0.000857468611517	0.00843520293452	0.007577734323
+UniRef50_P0AF22	N acetylglucosamine repressor	0.00235418366327	0.000523856736939	-0.00183032692633
+UniRef50_Q15PI0	MazG family protein	1.22602290078e-05	8.49435456541e-06	-3.76587444239e-06
+UniRef50_UPI00041E2B4A	hypothetical protein	2.2810594589e-05	3.80948933246e-05	1.52842987356e-05
+UniRef50_UPI0001E89F57	glycerophosphoryl diester phosphodiesterase	9.96263991838e-06	2.10718045982e-05	1.11091646798e-05
+UniRef50_P45546		0.00261253758321	0.0009098316791	-0.00170270590411
+UniRef50_Q832G5	4 deoxy L threo 5 hexosulose uronate ketol isomerase 2	9.28536342056e-06	0.00197435103989	0.00196506567647
+UniRef50_B0V7L4		0.0002066529136	0.0051836566183	0.0049770037047
+UniRef50_Q1IWJ1		0.000668070111131	0.035999796459	0.0353317263479
+UniRef50_P45549		0.00227321017942	0.000909267388022	-0.0013639427914
+UniRef50_Q28JW2	HemY like protein	0.00310493005675	0.0004528962072	-0.00265203384955
+UniRef50_B7UXY2	UPF0761 membrane protein PLES_43641	0.000797907889305	0.0011945737331	0.000396665843795
+UniRef50_P46890		0.00231685786862	0.00145456598405	-0.00086229188457
+UniRef50_A1R6L8	Glucose 1 phosphate adenylyltransferase	0.000773155384039	0.00746334363358	0.00669018824954
+UniRef50_UPI00041EAEC4	outer membrane specific lipoprotein transporter subunit LolE	8.60698492788e-06	4.1236605699e-05	3.26296207711e-05
+UniRef50_T0TW25		0.00577666889919	0.00163942201409	-0.0041372468851
+UniRef50_Q6G9K4	DNA topoisomerase 4 subunit A	0.0206658509464	0.00378469583768	-0.0168811551087
+UniRef50_UPI000375B645	hypothetical protein	8.47703205811e-06	7.30354908239e-05	6.45584587658e-05
+UniRef50_F0HAX6		3.32907753402e-06	0.00014051341434	0.000137184336806
+UniRef50_V4R9U3	Type II restriction endonuclease	4.59102750525e-06	0.00115731367038	0.00115272264287
+UniRef50_Q2SQB9	tRNA 2 selenouridine synthase	0.00010211523594	0.000485556117741	0.000383440881801
+UniRef50_I1CKJ8		0.00010297150717	2.7000369187e-05	-7.5971137983e-05
+UniRef50_P44016	Putative oligopeptide transporter HI_0561	0.000582754361592	0.000109107157092	-0.0004736472045
+UniRef50_P37538		0.000346317420961	0.000173267647843	-0.000173049773118
+UniRef50_UPI00047574D4	tyrosyl tRNA synthetase	3.11942392257e-05	8.24673671748e-06	-2.29475025082e-05
+UniRef50_UPI00037DCE93	hypothetical protein	1.44269899394e-06	1.29359660663e-05	1.14932670724e-05
+UniRef50_UPI0003B3686E	XRE family transcriptional regulator	0.000214478426361	2.2761331119e-05	-0.000191717095242
+UniRef50_Q3AC80	NADH quinone oxidoreductase subunit D	6.2187110506e-06	3.79523740024e-05	3.17336629518e-05
+UniRef50_P32138	Alpha glucosidase YihQ	0.000682100305499	0.000165443532329	-0.00051665677317
+UniRef50_X2I9U8	Histidine kinase	0.000176899087287	0.00197147714997	0.00179457806268
+UniRef50_UPI0004741BEC	CTP synthetase, partial	9.96389899647e-06	4.73790941946e-05	3.74151951981e-05
+UniRef50_A6V2J2		0.000754313319023	0.000698082389237	-5.6230929786e-05
+UniRef50_V9B4W3	von Willebrand factor type A domain protein	5.23651653421e-05	2.19459711697e-05	-3.04191941724e-05
+UniRef50_A0A024L686	Ankyrin repeat protein A	0.00308702081468	0.000223018376258	-0.00286400243842
+UniRef50_UPI000470C007	hypothetical protein	5.55506119298e-06	1.51696414471e-05	9.61458025412e-06
+UniRef50_F0RKW9	Biopolymer transport protein ExbD TolR	0.000268354968373	0.0112462403929	0.0109778854245
+UniRef50_T1YAE9	O succinylbenzoate synthase	0.012923522758	0.00147747931157	-0.0114460434464
+UniRef50_UPI00045EAF3A	hypothetical protein	3.7971683441e-06	3.75460790335e-05	3.37489106894e-05
+UniRef50_B9JG24	Shikimate dehydrogenase	0.000176506764391	3.90808415511e-05	-0.00013742592284
+UniRef50_UPI0004182A5D	MarR family transcriptional regulator	1.21098665729e-05	7.77129668926e-05	6.56031003197e-05
+UniRef50_C7J486	Os06g0602200 protein 	2.58092401854e-05	0.000654503711914	0.000628694471729
+UniRef50_Q58239	Peptide chain release factor subunit 1	0.00379371054317	0.000307154969647	-0.00348655557352
+UniRef50_Q8CPA3	Oligoendopeptidase	0.0102887424518	0.00529154058556	-0.00499720186624
+UniRef50_UPI0003B5016A	hypothetical protein	2.94469583119e-06	0.000663310325567	0.000660365629736
+UniRef50_B2U887	Cytidylate kinase	9.08687944926e-06	1.22158904418e-05	3.12901099254e-06
+UniRef50_Q9L3H0		9.08593394311e-05	3.65502307929e-05	-5.43091086382e-05
+UniRef50_UPI00036EFE7D	hypothetical protein	1.646921491e-05	1.15523763001e-05	-4.9168386099e-06
+UniRef50_A2RH97	Mannitol 1 phosphate 5 dehydrogenase	0.0064844736951	0.00580445494923	-0.00068001874587
+UniRef50_F0KMR7	3 oxoacyl  synthase I	0.000238477371924	0.00527109111335	0.00503261374143
+UniRef50_K7S761	Nuclease, RecB family	0.000124377628566	0.00495262999798	0.00482825236941
+UniRef50_Q9RTC1		0.00059290993013	0.023861253653	0.0232683437229
+UniRef50_Q4FTT8	2 octaprenylphenol hydroxylase	0.000280304150315	0.0065601565586	0.00627985240828
+UniRef50_UPI00040A0384	DNA polymerase I	6.39265702459e-06	3.01663145474e-05	2.37736575228e-05
+UniRef50_UPI000474D03A	hypothetical protein, partial	3.96761866383e-05	4.54873986415e-05	5.8112120032e-06
+UniRef50_UPI00034A62B9	hypothetical protein	4.26007767202e-06	2.78376568091e-05	2.35775791371e-05
+UniRef50_K0TKK5		4.74669558729e-05	1.3312015779e-05	-3.41549400939e-05
+UniRef50_P50975	NADH quinone oxidoreductase subunit J	0.00852786908027	0.000418245768677	-0.00810962331159
+UniRef50_Q9RVP1	Extracellular solute binding protein, family 5	0.000406114783491	0.0988772382931	0.0984711235096
+UniRef50_I6H2Z2	Ferritin like protein	0.000242468655024	0.000428168395247	0.000185699740223
+UniRef50_L7UG94		0.000421908573212	4.5290418566e-05	-0.000376618154646
+UniRef50_D8UER7		3.50893539839e-05	4.60384817445e-05	1.09491277606e-05
+UniRef50_P39816	Putative PTS system glucosamine specific EIICBA component	2.19506014454e-05	4.11558585045e-05	1.92052570591e-05
+UniRef50_UPI00047DBAA4	hypothetical protein	8.64277384978e-06	1.38058405993e-05	5.16306674952e-06
+UniRef50_UPI000471AD13	hypothetical protein	8.37478541801e-06	0.00118554968516	0.00117717489974
+UniRef50_Q899I0	Stage V sporulation protein B	0.000250202582467	0.00114814678419	0.000897944201723
+UniRef50_S9RXN5	Putative inner membrane protein	8.31015396945e-06	8.74973840396e-06	4.3958443451e-07
+UniRef50_Q5GTV1	Sugar diacide regulator	0.000138104630066	0.000129059744896	-9.04488517e-06
+UniRef50_L1KDU4		0.000872830045569	0.00194714311118	0.00107431306561
+UniRef50_P36661		0.00275020225313	0.000289002768065	-0.00246119948506
+UniRef50_F9YAC9		0.00028617133074	4.28017330581e-05	-0.000243369597682
+UniRef50_UPI0004255E20	hypothetical protein	5.19611251428e-06	5.49368222447e-06	2.9756971019e-07
+UniRef50_F2UB74		9.95321893261e-06	1.39094513667e-06	-8.56227379594e-06
+UniRef50_M9RFD9		0.000464413498701	4.42826666465e-05	-0.000420130832054
+UniRef50_R7PX69		0.0062393700412	0.00214054320726	-0.00409882683394
+UniRef50_J2KWN5	Arabinose efflux permease family protein	3.78065366427e-06	5.43861592415e-06	1.65796225988e-06
+UniRef50_R9ZK82		0.000168652148514	8.06142052424e-05	-8.80379432716e-05
+UniRef50_C5ZWF4	Peptidylarginine deiminase related protein	0.000114389693592	0.00323037412972	0.00311598443613
+UniRef50_L1KH26	ORFV protein	9.70581892187e-05	4.78781319808e-05	-4.91800572379e-05
+UniRef50_Q0BUB7	Succinyl diaminopimelate desuccinylase	0.00299576711641	1.85694830246e-05	-0.00297719763339
+UniRef50_A4X058		0.001223430435	0.00152435901257	0.00030092857757
+UniRef50_A5ULA6	UPF0173 metal dependent hydrolase Msm_0779	0.00123846809465	0.000251333366122	-0.000987134728528
+UniRef50_B2HYZ7	tRNA tmRNA ) methyltransferase	0.000303723241341	0.00854744059979	0.00824371735845
+UniRef50_A8LWQ1	Oxidoreductase domain protein	0.000219044094112	0.00439297213552	0.00417392804141
+UniRef50_P0AGH1	Inner membrane transport permease YhhJ	0.00336667201484	0.000217678161078	-0.00314899385376
+UniRef50_A9UNP0	SH3, pleckstrin like and PDZ DHR GLGF domain containing protein	1.79923019198e-06	1.55751951591e-05	1.37759649671e-05
+UniRef50_A4X051		0.0142285764795	0.00484057044639	-0.00938800603311
+UniRef50_M5JU21		1.85239918976e-05	2.03080580472e-05	1.7840661496e-06
+UniRef50_E8SHR5	Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0126937910239	0.00312260636281	-0.00957118466109
+UniRef50_Q04DA2	3 isopropylmalate dehydratase small subunit	3.2430716548e-05	2.41717883857e-05	-8.2589281623e-06
+UniRef50_Q1IS40	NADH quinone oxidoreductase subunit H 2	5.32410893835e-06	1.33911958519e-05	8.06708691355e-06
+UniRef50_Q5HS11		0.012737869146	0.00353769179621	-0.00920017734979
+UniRef50_UPI0003605BA6	hypothetical protein, partial	2.16197433865e-05	0.00309496221717	0.00307334247378
+UniRef50_UPI000404D8EB	regulator	1.01205889497e-05	1.51833233873e-05	5.0627344376e-06
+UniRef50_UPI0003C14420	PREDICTED	2.92037291031e-06	4.37375289598e-06	1.45337998567e-06
+UniRef50_S5CTU5		0.000192356592516	0.00911951085046	0.00892715425794
+UniRef50_D9UKD4	Predicted protein	1.28042074683e-05	4.97794121851e-05	3.69752047168e-05
+UniRef50_R1FAU5		0.000701471162544	0.000194927031816	-0.000506544130728
+UniRef50_A5UKK1	DNA binding protein MutS2	0.00280697334256	0.000387659879655	-0.0024193134629
+UniRef50_UPI00036F10D0	hypothetical protein	8.59067594772e-05	3.47982761692e-05	-5.1108483308e-05
+UniRef50_F0RLA6		0.000244562913323	0.0123542003664	0.0121096374531
+UniRef50_E3F346	Methionine binding lipoprotein	1.89426437603e-05	7.30998946131e-05	5.41572508528e-05
+UniRef50_UPI00037C3791	hypothetical protein	3.2259218699e-06	2.86077814211e-06	-3.6514372779e-07
+UniRef50_K1EXL1	Phospholipase C, phosphocholine specific	0.000173389595439	0.00551097153418	0.00533758193874
+UniRef50_UPI0001E8977F	nucleoside hydrolase	1.47125064197e-05	8.82908127901e-06	-5.88342514069e-06
+UniRef50_D4H5B5		0.000132649138925	0.000130774623128	-1.874515797e-06
+UniRef50_P35885	DNA gyrase subunit A	0.000142710893207	0.00948804956513	0.00934533867192
+UniRef50_A7NLC3	D tyrosyl tRNA deacylase	0.00177762395761	0.00107597491683	-0.00070164904078
+UniRef50_R6DP97		1.98027470581e-05	1.78909917545e-05	-1.9117553036e-06
+UniRef50_UPI0003B773D1	DNA topoisomerase I	2.93007381704e-06	1.12154653651e-05	8.28539154806e-06
+UniRef50_U3TY01		5.90379475656e-05	0.000158303536793	9.92655892274e-05
+UniRef50_Q5HPE4		0.0194993979947	0.00623344417616	-0.0132659538185
+UniRef50_R9ZKM0	Magnesium transporter	0.00146320442795	0.000221764734821	-0.00124143969313
+UniRef50_L0GLS2	TIGR01244 family protein	0.000141136036096	0.00802698201999	0.00788584598389
+UniRef50_P54420	Asparagine synthetase [glutamine hydrolyzing] 1	1.80698378966e-05	0.000601339924236	0.000583270086339
+UniRef50_G2AIF5	Ulp1 protease family, C terminal catalytic domain protein	0.000335474671301	0.000690847353598	0.000355372682297
+UniRef50_UPI00034AAAAB	hypothetical protein	2.23359339826e-05	9.48525628078e-06	-1.28506777018e-05
+UniRef50_UPI00036B1199	hypothetical protein	2.19272213071e-05	0.000139654345244	0.000117727123937
+UniRef50_C8P5G2	Raf like protein	1.63570707685e-05	1.88200710026e-05	2.4630002341e-06
+UniRef50_UPI000372D48D	hypothetical protein	1.83711958332e-05	2.0195102402e-05	1.8239065688e-06
+UniRef50_V5VG85	HAD superfamily hydrolase	0.000370141768865	0.009571665532	0.00920152376313
+UniRef50_P06959	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.00220739410017	0.000689036797609	-0.00151835730256
+UniRef50_F9YYE2	Cobalt transport protein CbiQ	0.000243539347646	0.00556825986583	0.00532472051818
+UniRef50_H0K4B0	Cation transport ATPase	2.19063016375e-05	2.93240807719e-06	-1.89738935603e-05
+UniRef50_A4VGJ3	Two component sensor PhoQ	0.000231502638684	0.000135259559627	-9.6243079057e-05
+UniRef50_UPI00037895ED	hypothetical protein	0.012405145672	0.00845211038136	-0.00395303529064
+UniRef50_A7ZAV2		7.24590291795e-05	6.80123934597e-05	-4.4466357198e-06
+UniRef50_P77129		0.00324151028965	0.000733907831629	-0.00250760245802
+UniRef50_Q6A6T4	30S ribosomal protein S9	0.00174224302547	0.00425983721408	0.00251759418861
+UniRef50_UPI000255C8A1	Bcr CflA subfamily drug resistance transporter protein, partial	1.16441210606e-05	1.75631995319e-05	5.9190784713e-06
+UniRef50_UPI0003721AC4	hypothetical protein	7.24131879379e-06	3.65824035752e-06	-3.58307843627e-06
+UniRef50_C0PWP3	NADH dehydrogenase subunit N	0.00201828446479	0.000430765470762	-0.00158751899403
+UniRef50_A7X5E2	30S ribosomal protein S8	0.00727419465536	0.00498091515693	-0.00229327949843
+UniRef50_C3ZKC0		5.78966240613e-05	5.80985453262e-05	2.019212649e-07
+UniRef50_U3TJ62	Elongation factor 4	0.0145681572819	0.00297783928924	-0.0115903179927
+UniRef50_D4HA42		0.000750814174727	0.00610603369223	0.0053552195175
+UniRef50_UPI000248A7D5	putative RTX family exoprotein	3.01187350956e-06	1.60938113443e-06	-1.40249237513e-06
+UniRef50_Q5HH83	UPF0413 protein SACOL1006	0.0187421687644	0.00366466688092	-0.0150775018835
+UniRef50_A5UKS1	Multidrug ABC transporter, permease component	0.00252121005343	0.00230420874715	-0.00021700130628
+UniRef50_Q04L81	Phosphopentomutase	0.0376275609514	0.00866651938064	-0.0289610415708
+UniRef50_UPI00042B1BC9	Translation initiation factor 3 protein isoform 3	0.000157490246695	5.57506658017e-05	-0.000101739580893
+UniRef50_E4N7F4		0.000140872216061	0.000255552462497	0.000114680246436
+UniRef50_B1HX23	UPF0173 metal dependent hydrolase Bsph_4138	0.0313180251794	0.00515266490804	-0.0261653602714
+UniRef50_UPI0003C10FDE	PREDICTED	1.12886686987e-05	6.63001724052e-06	-4.65865145818e-06
+UniRef50_J9NUZ7		0.00010808790641	8.18768832125e-05	-2.62110231975e-05
+UniRef50_W0A1B9	Amino acid ABC transporter permease	0.00199507460035	0.000378051382928	-0.00161702321742
+UniRef50_A0RKC3		4.4939285287e-05	0.000222600531548	0.000177661246261
+UniRef50_UPI000442200E	PREDICTED	5.02336279301e-05	0.000119141543204	6.89079152739e-05
+UniRef50_Q5E0X7	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	3.01717531878e-05	3.06882800138e-05	5.16526826e-07
+UniRef50_I2BTA7	Response regulator GGDEF domain protein	0.000354379305876	0.000128398567483	-0.000225980738393
+UniRef50_Q1IXD5	Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.000122295676732	0.0015328222473	0.00141052657057
+UniRef50_D3QJ45	Lysophospholipase Monoglyceride lipase	0.0248243368365	0.00635851235367	-0.0184658244828
+UniRef50_UPI0003B66D29	MULTISPECIES	1.92869535965e-05	0.000144259914324	0.000124972960727
+UniRef50_R1EJL9		4.21615028546e-05	2.214567742e-05	-2.00158254346e-05
+UniRef50_Q8CQQ7		0.00869078289227	0.00344679541051	-0.00524398748176
+UniRef50_Q8CQQ2		0.000304473224981	4.0283158393e-05	-0.000264190066588
+UniRef50_Q8CQQ1		0.00869487111184	0.00288534810204	-0.0058095230098
+UniRef50_X5K129		0.000693797736497	0.000304705348728	-0.000389092387769
+UniRef50_N6V788		5.01336522872e-05	7.5648933293e-05	2.55152810058e-05
+UniRef50_S6JXH3		4.71238341549e-05	7.32602199024e-06	-3.97978121647e-05
+UniRef50_UPI00046638AB	DNA primase	4.29461313281e-06	2.59923898793e-06	-1.69537414488e-06
+UniRef50_Q898U9	Conserved protein	0.000671677662287	0.000709427056483	3.7749394196e-05
+UniRef50_A8LPA6	Double strand break repair helicase AddA	0.00036548752554	0.000117072718617	-0.000248414806923
+UniRef50_K6WPK4	MazG family protein	4.33564162064e-06	1.16872658022e-05	7.35162418156e-06
+UniRef50_M9VGE0	Anchored repeat ABC transporter, substrate binding protein	0.000162999971089	0.00562957330798	0.00546657333689
+UniRef50_Q72TV3	Transketolase alpha subunit protein	0.000138611746215	0.00175313461575	0.00161452286953
+UniRef50_UPI00047D8BBE	50S ribosomal protein L4	9.36409651882e-06	0.000161475828197	0.000152111731678
+UniRef50_Q5WFY6	tRNA dimethylallyltransferase	2.61863652902e-05	0.00192371124242	0.00189752487713
+UniRef50_U5NRL0		0.0106422038483	0.00211640084984	-0.00852580299846
+UniRef50_UPI0002F8AC80	hypothetical protein	1.43819228574e-05	4.07226407873e-05	2.63407179299e-05
+UniRef50_B3RBC2		0.000152388957537	7.04788642645e-05	-8.19100932725e-05
+UniRef50_Q2W726	Predicted membrane protein	7.73769814453e-05	1.9927411228e-05	-5.74495702173e-05
+UniRef50_G7U7H1	Glutamate synthase small subunit	0.000199027952915	0.00411047620526	0.00391144825235
+UniRef50_R1CZY9		7.2780074977e-05	0.000106437366211	3.3657291234e-05
+UniRef50_V4QWZ4		0.000185567168355	8.80681248164e-05	-9.74990435386e-05
+UniRef50_E5U2C0	Short chain dehydrogenase reductase SDR 	4.60013635729e-05	3.20843455169e-05	-1.3917018056e-05
+UniRef50_Q4EDT9	Mucin	0.000122426260359	0.000409214833994	0.000286788573635
+UniRef50_F4EI16	Acetolactate synthase  (Large subunit)	0.0113472918837	0.00919934387249	-0.00214794801121
+UniRef50_D3E0M6	6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase	0.00362337218605	0.00136341120637	-0.00225996097968
+UniRef50_F0KI03	X Pro dipeptidyl peptidase	7.8588339106e-05	0.00639777164504	0.00631918330593
+UniRef50_P15288	Cytosol non specific dipeptidase	0.00397456084403	0.000147535406424	-0.00382702543761
+UniRef50_UPI0004121413	hypothetical protein	6.75787726683e-06	1.35943166426e-05	6.83643937577e-06
+UniRef50_A3X4G6	Antirepressor protein ant	1.58113417432e-05	3.05678803322e-05	1.4756538589e-05
+UniRef50_P76296		0.00222020271388	0.00406414632199	0.00184394360811
+UniRef50_G2SXT9	NUDIX hydrolase	0.00020367949039	0.00135782190507	0.00115414241468
+UniRef50_A1T9L9	Malate dehydrogenase	0.00013122340285	0.0291133181272	0.0289820947244
+UniRef50_F9YXK7	Two component sensor histidine kinase	0.000195930649279	0.00731743747293	0.00712150682365
+UniRef50_U5MLC6	AAA domain protein	0.000127572077391	0.000984391294057	0.000856819216666
+UniRef50_Q46I72	Argininosuccinate synthase	4.74430004006e-06	5.71883859328e-05	5.24440858927e-05
+UniRef50_UPI000369A472	hypothetical protein	5.51724409549e-05	0.00500589006765	0.0049507176267
+UniRef50_R9CVV5		0.00064079234952	5.15008164137e-05	-0.000589291533106
+UniRef50_I3UHD1	Aminotransferase	0.00363256511217	0.000459559538132	-0.00317300557404
+UniRef50_UPI0004081419	beta lactamase	4.14319233665e-06	3.50773428719e-05	3.09341505352e-05
+UniRef50_UPI00047E2D14	secretion system apparatus protein SsaV	8.51625024393e-06	3.10466729178e-06	-5.41158295215e-06
+UniRef50_M0LPL4	Phenol hydroxylase	9.89320014843e-05	1.75071708949e-05	-8.14248305894e-05
+UniRef50_UPI000381F5B7	hypothetical protein	0.000391677547821	9.23271341845e-05	-0.000299350413636
+UniRef50_P43700	DNA gyrase subunit A	6.14583145769e-06	1.82840969638e-05	1.21382655061e-05
+UniRef50_H8GZI4	Secretion protein HlyD	0.000107138880474	0.00443212176053	0.00432498288006
+UniRef50_Q8CNU1	Riboflavin synthase alpha chain	0.0177784123856	0.0023786146734	-0.0153997977122
+UniRef50_B2N6Z5		0.00110003265327	0.000816543885337	-0.000283488767933
+UniRef50_E2QK28	DNA helicase	0.00117286718577	0.00725569438844	0.00608282720267
+UniRef50_UPI000255651A	ammonium transporter, partial	1.40723811568e-05	2.61755125257e-05	1.21031313689e-05
+UniRef50_M4WTW3		0.000429697748649	0.000111721326058	-0.000317976422591
+UniRef50_E7I2X0		0.00630894472372	0.00172029148658	-0.00458865323714
+UniRef50_B9DS55	Sortase A	0.00280552835756	0.00190495507232	-0.00090057328524
+UniRef50_I3V233	Peptidase	0.00114062144001	0.000149024409689	-0.000991597030321
+UniRef50_B0RIE3	L arabinose isomerase	0.000107308042934	0.00115761148699	0.00105030344406
+UniRef50_UPI00035DB610	hypothetical protein	0.000113825207902	1.13728501328e-05	-0.000102452357769
+UniRef50_UPI00042B847E	Methylmalonate semialdehyde dehydrogenase	2.79209613497e-06	6.78095826275e-06	3.98886212778e-06
+UniRef50_UPI00036E7EE5	molybdopterin biosynthesis protein B, partial	0.000348392700376	7.67472205259e-05	-0.00027164547985
+UniRef50_Q9HWR3	Bacteriophytochrome	0.000657680918168	0.000510799279081	-0.000146881639087
+UniRef50_Q59200	Aspartate ammonia lyase	5.19200833939e-06	4.59514289948e-05	4.07594206554e-05
+UniRef50_UPI0002DA19B1	hypothetical protein	1.788688519e-05	1.22001079492e-05	-5.6867772408e-06
+UniRef50_P75794	Putative pyruvate formate lyase 3 activating enzyme	0.00449203344657	0.00185761234296	-0.00263442110361
+UniRef50_UPI0002000CF0	iron enterobactin transporter ATP binding protein	4.55995981646e-05	0.000819784090842	0.000774184492677
+UniRef50_UPI00046F3EBA	hypothetical protein, partial	0.000143590942136	2.58149759058e-05	-0.00011777596623
+UniRef50_P19498	Coenzyme F420 hydrogenase subunit gamma	0.00582867284372	0.00119157761483	-0.00463709522889
+UniRef50_UPI0004777CC6	hypothetical protein	1.89260584717e-06	0.000215776883638	0.000213884277791
+UniRef50_U2W9U5	UPF0301 protein RS24_01332	3.47052601631e-05	6.74064225045e-05	3.27011623414e-05
+UniRef50_Q06553	HTH type transcriptional regulator PrtR	0.00157889858106	0.00023688505764	-0.00134201352342
+UniRef50_UPI00037487E6	ABC transporter	6.59853791689e-06	0.000295781752307	0.00028918321439
+UniRef50_C6ADP9	NADH quinone oxidoreductase subunit K	3.6858137681e-05	3.50093034092e-05	-1.8488342718e-06
+UniRef50_UPI00016C4BF8	Cadherin	4.34541638288e-05	2.58639304792e-06	-4.08677707809e-05
+UniRef50_M9RBW7	GTP cyclohydrolase II	0.00118132822539	0.000228337658653	-0.000952990566737
+UniRef50_Q9K8V3	Arginine biosynthesis bifunctional protein ArgJ	0.0224962992942	0.00849409202045	-0.0140022072737
+UniRef50_B3E414	Bifunctional protein GlmU	8.37510004881e-06	6.22939159052e-06	-2.14570845829e-06
+UniRef50_Q5LZ25	Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase	0.00509873013446	0.00193451854745	-0.00316421158701
+UniRef50_Q16AB8	DNA directed RNA polymerase subunit alpha	4.7418360618e-05	3.853388935e-05	-8.884471268e-06
+UniRef50_UPI00046F0F35	aspartate ammonia lyase, partial	4.11831403573e-06	1.06253039417e-05	6.50698990597e-06
+UniRef50_UPI00046B80D6	PREDICTED	4.69301450672e-06	0.000280417576926	0.000275724562419
+UniRef50_G2NTW9	Short chain dehydrogenase reductase SDR	0.000761218720649	0.000865325479903	0.000104106759254
+UniRef50_O83079	Probable metal transport system membrane protein TP_0036	0.000283468827669	0.00051884334422	0.000235374516551
+UniRef50_L9PLX0		3.15761616374e-05	5.17809338002e-05	2.02047721628e-05
+UniRef50_A0KMZ9	Glutamyl tRNA reductase	0.000376272841621	0.000445451703238	6.9178861617e-05
+UniRef50_E4G8P9	1,3 beta galactosyl N acetylhexosamine phosphorylase	5.40037180038e-05	0.00188072235428	0.00182671863628
+UniRef50_A1S781	Response regulator receiver modulated CheW protein	0.000949712360507	0.000821045777733	-0.000128666582774
+UniRef50_W8TSS8		0.000239566675246	3.29666218454e-05	-0.000206600053401
+UniRef50_A8AB61	Probable 2 isopropylmalate synthase	8.23363681964e-06	2.69082339009e-05	1.86745970813e-05
+UniRef50_Q9RYG6		0.000311114825983	0.00200192613915	0.00169081131317
+UniRef50_UPI00022CA85B	PREDICTED	1.67206365576e-05	0.000142221842394	0.000125501205836
+UniRef50_A9GZY1	Imidazoleglycerol phosphate dehydratase	0.000200025918566	6.12483774869e-05	-0.000138777541079
+UniRef50_L9U970	Diguanylate cyclase, predicted	4.44901541901e-06	0.00030821241504	0.000303763399621
+UniRef50_B2KC44	Phosphoglycerate kinase	1.64771333166e-05	2.14821956866e-05	5.00506237e-06
+UniRef50_A0A022H326	Ferredoxin	7.80753761892e-06	1.03377285387e-05	2.53019091978e-06
+UniRef50_P55140	UPF0603 protein YgcG	0.00232405375509	0.000833533499289	-0.0014905202558
+UniRef50_Q43973	3 oxoadipate CoA transferase subunit A	6.99681031629e-05	8.29749485856e-05	1.30068454227e-05
+UniRef50_A8AWN6	Conserved domain protein	0.00251017809446	0.00293268566382	0.00042250756936
+UniRef50_UPI000366463F	hypothetical protein	6.45484660499e-05	6.99603741324e-06	-5.75524286367e-05
+UniRef50_L8MIC1		0.000300815987978	1.22191245849e-05	-0.000288596863393
+UniRef50_UPI00037EFF82	50S ribosomal protein L15	6.44391478779e-05	9.38662676786e-06	-5.505252111e-05
+UniRef50_Q8CRB0	Putative hemin import ATP binding protein HrtA	0.0138741025062	0.00366103831171	-0.0102130641945
+UniRef50_UPI0001BF5A9F	hypothetical protein SMAC_11746, partial	0.000291611870626	0.000191151426333	-0.000100460444293
+UniRef50_G2HDN4	BRO family, N terminal domain protein 	8.23436996613e-05	3.62175311863e-05	-4.6126168475e-05
+UniRef50_Q9RWY0		0.000253341511792	0.0389684411848	0.038715099673
+UniRef50_UPI0003D3911F	ribosomal RNA small subunit methyltransferase h	7.62470044563e-06	0.000105312420279	9.76877198334e-05
+UniRef50_Q5HQR8	Organic hydroperoxide resistance protein like 1	0.0214197108173	0.00393010417811	-0.0174896066392
+UniRef50_X0ZSL3	Marine sediment metagenome DNA, contig	4.45398502847e-05	9.59410621346e-05	5.14012118499e-05
+UniRef50_UPI0003724FBD	hypothetical protein	1.70391743684e-05	0.000293576252779	0.000276537078411
+UniRef50_A8LHS2	Response regulator receiver protein	0.00523985896798	0.000872296127457	-0.00436756284052
+UniRef50_W8H2B8	Regucalcin	0.000144630647073	0.00580405488735	0.00565942424028
+UniRef50_P52027	DNA polymerase I	0.00045441235698	0.0899671733998	0.0895127610428
+UniRef50_UPI00037D8096	hypothetical protein, partial	9.30577707388e-06	1.34185595907e-05	4.11278251682e-06
+UniRef50_E3GWV9	PP loop domain protein	0.00157722042691	0.000392013325476	-0.00118520710143
+UniRef50_Q1IZL3	LmbE like protein protein	0.000335634745854	0.0212185274381	0.0208828926922
+UniRef50_Q97SH4	PTS system mannitol specific EIICB component	0.00398424730508	0.00579947850599	0.00181523120091
+UniRef50_F3RIQ8	Membrane protein	3.16825604574e-06	0.00342474658001	0.00342157832396
+UniRef50_P11018	Major intracellular serine protease	1.31478655976e-05	0.000507387862034	0.000494239996436
+UniRef50_R8ZJ12		9.10978934231e-05	4.47562574115e-05	-4.63416360116e-05
+UniRef50_I0C7W6	Two component sensor histidine kinase	0.0153353632801	0.00643957312949	-0.00889579015061
+UniRef50_C4S8U7		0.000214075229968	0.00028214971834	6.8074488372e-05
+UniRef50_R6GJ60	Capsular polysaccharide biosynthesis protein	0.000839950042856	0.00202271033702	0.00118276029416
+UniRef50_D9RDA2		0.00911467842562	0.000773505472778	-0.00834117295284
+UniRef50_UPI0003B53675	sugar ABC transporter permease	7.98745148785e-06	1.9144667355e-05	1.11572158671e-05
+UniRef50_A5EP16	Glutathione dependent formaldehyde activating enzyme	0.000164093545092	4.69119845976e-05	-0.000117181560494
+UniRef50_UPI0003769E9C	hypothetical protein	6.39090561039e-06	1.70280386359e-05	1.06371330255e-05
+UniRef50_Q1C0Q8	Hemin import ATP binding protein HmuV	9.12580062532e-06	0.00105865463681	0.00104952883618
+UniRef50_M9R9I4	Magnesium chelatase	0.00223250714965	0.000534477413705	-0.00169802973595
+UniRef50_I0C723	Sodium glutamate symport carrier protein	0.0205458579098	0.00797658452614	-0.0125692733837
+UniRef50_Q46942		0.00170256987206	0.000832525848402	-0.000870044023658
+UniRef50_J2X9Z3		2.67261143485e-06	6.23106273873e-05	5.96380159524e-05
+UniRef50_Q46941		0.000194580406623	0.000332439067766	0.000137858661143
+UniRef50_P13792	Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.0384031448111	0.0123347160175	-0.0260684287936
+UniRef50_E8P9H9		0.000525056461606	0.00649211513738	0.00596705867577
+UniRef50_P0C7J3	Xanthan biosynthesis protein XanB	0.00291046553415	0.00137305064405	-0.0015374148901
+UniRef50_M0UK13		0.000122272515804	0.000125824168676	3.551652872e-06
+UniRef50_X2IBS7	Membrane protein	0.000275200193901	0.00330652620623	0.00303132601233
+UniRef50_UPI00037A8F71	hypothetical protein	5.06163482945e-06	0.000453595106846	0.000448533472017
+UniRef50_K2DQ77	GTP binding protein lepA	6.0538315917e-06	1.88146827957e-05	1.2760851204e-05
+UniRef50_UPI000400635E	DNA mismatch repair protein MutT	0.000162247560728	5.75802905911e-05	-0.000104667270137
+UniRef50_UPI00038209BB	transcriptional regulator	0.000183300122598	2.81049944004e-05	-0.000155195128198
+UniRef50_Q2FH55	Putative oligopeptide transport system permease protein oppB2	0.0134602893365	0.0108790275804	-0.0025812617561
+UniRef50_UPI00029DCC9C		0.000184294510213	0.000513601339319	0.000329306829106
+UniRef50_D4N0A6	Molybdenum ABC transporter, periplasmic molybdate binding protein	0.00222214593284	0.00203254794171	-0.00018959799113
+UniRef50_UPI0003B45259	alkaline phosphatase	3.50209799089e-05	0.000581034261443	0.000546013281534
+UniRef50_D5CAF9		0.000336169916204	0.000418955646732	8.2785730528e-05
+UniRef50_B2SEB4	Potassium transporting ATPase A chain	4.85881193605e-06	0.00119868000706	0.00119382119512
+UniRef50_W8T550		0.000580747675156	0.000621719379354	4.0971704198e-05
+UniRef50_UPI000478594F	hypothetical protein	1.4766966765e-05	0.000209997442632	0.000195230475867
+UniRef50_I0L9E3		4.38360129026e-05	0.000424567466967	0.000380731454064
+UniRef50_A4WXR5	KDPG and KHG aldolase	0.00803880982384	0.00107310369415	-0.00696570612969
+UniRef50_A5UNE2	Lipopolysaccharide cholinephosphotransferase, LicD family	0.00107332626788	0.000634695737091	-0.000438630530789
+UniRef50_A6M165	Cellulose synthase subunit domain	0.000352031405009	0.000689366935207	0.000337335530198
+UniRef50_UPI0004790220	3 oxoacyl ACP synthase	2.98933680558e-05	9.55774408665e-05	6.56840728107e-05
+UniRef50_Q167X1		8.65145600978e-05	5.02572088566e-05	-3.62573512412e-05
+UniRef50_Q89T28	D amino acid dehydrogenase small subunit	3.13097404822e-05	2.44842131656e-05	-6.8255273166e-06
+UniRef50_U5MUN0	Methyl accepting chemotaxis protein	0.000827264212578	0.00150603995566	0.000678775743082
+UniRef50_UPI00040BC712	hypothetical protein	8.31013628726e-05	9.98554563629e-05	1.67540934903e-05
+UniRef50_F5ZGJ9	DNA binding protein	0.000544253637728	0.00205897774935	0.00151472411162
+UniRef50_W7WFV4	Methylmalonyl CoA mutase	0.00870044121497	0.0354080337189	0.0267075925039
+UniRef50_UPI0003B3E18A	branched chain amino acid transporter permease subunit LivH, partial	3.19446333364e-05	0.000221280798993	0.000189336165657
+UniRef50_J0HWL6	Ornithine cyclodeaminase family protein	0.000909159244793	0.0014412000921	0.000532040847307
+UniRef50_X1DRG2	Marine sediment metagenome DNA, contig	6.11351577872e-05	8.82998539463e-05	2.71646961591e-05
+UniRef50_W8U5L3	Membrane protein	0.0155492116707	0.0064466919726	-0.0091025196981
+UniRef50_O87455	Regulatory protein LuxO	2.41881672162e-06	1.31800301911e-05	1.07612134695e-05
+UniRef50_F9YBY3		1.55893585443e-05	5.76044015639e-06	-9.82891838791e-06
+UniRef50_G2P974		0.000172563666846	0.000500513721912	0.000327950055066
+UniRef50_UPI000380AAE2	hypothetical protein	6.85204392128e-06	1.25181607095e-05	5.66611678822e-06
+UniRef50_K4QA11		0.00499251001873	0.0034618561543	-0.00153065386443
+UniRef50_S3CIA8		0.000245652487326	7.53183355323e-06	-0.000238120653773
+UniRef50_A7B8C4		0.000173126949524	2.65325371329e-05	-0.000146594412391
+UniRef50_F3ZB63		2.77464365198e-05	0.000177194666293	0.000149448229773
+UniRef50_Q8FE91		0.00201712142729	0.00338913356757	0.00137201214028
+UniRef50_F0QJX2		0.000172368031437	0.007562430502	0.00739006247056
+UniRef50_W1J5V3		4.35785298304e-06	4.85912924281e-06	5.0127625977e-07
+UniRef50_J0EVE3		0.00124235623274	0.000209537103627	-0.00103281912911
+UniRef50_Q3IVF5		0.000336010076035	0.00058292584037	0.000246915764335
+UniRef50_Q6F7V8	UPF0761 membrane protein ACIAD3168	0.000816287476459	0.00528826578293	0.00447197830647
+UniRef50_Q3IUV2	TraG	0.0486802890938	0.00904476092797	-0.0396355281658
+UniRef50_U3PCK7	Transposase, undefined	0.000169276228183	0.00359227547095	0.00342299924277
+UniRef50_A6LZB4	ApbE family lipoprotein	0.00125507977032	0.00265329601631	0.00139821624599
+UniRef50_UPI000464EBB9	peptide ABC transporter permease	1.72134221425e-05	1.92683129629e-05	2.0548908204e-06
+UniRef50_K0R9N5		0.00025073416049	0.000425014931009	0.000174280770519
+UniRef50_A6LQI1	Peptidase M23B	0.000208940584237	0.000857841600189	0.000648901015952
+UniRef50_F2U4B6		0.000106743070311	5.73293565432e-05	-4.94137137678e-05
+UniRef50_Q21CV9		0.000183412135498	3.70334792115e-05	-0.000146378656287
+UniRef50_U3TUS4		0.000360293819091	0.000565338671989	0.000205044852898
+UniRef50_G8V566	Type I restriction modification system, M subunit	0.0218564909431	0.00437172847513	-0.017484762468
+UniRef50_D4HCJ3		0.000392857701553	0.00878786675052	0.00839500904897
+UniRef50_P45604	PTS system N acetylglucosamine specific EIICBA component	0.00109046467628	0.000320648989845	-0.000769815686435
+UniRef50_J2P2T7		2.22323077368e-05	3.03513455479e-05	8.1190378111e-06
+UniRef50_P39314	Inner membrane protein YtfF	0.0026858644445	0.00169363053799	-0.00099223390651
+UniRef50_UPI00047D7CE0	hypothetical protein	5.80003017432e-06	9.61174970447e-06	3.81171953015e-06
+UniRef50_B8FMK3		1.74162867556e-05	0.000134307026745	0.000116890739989
+UniRef50_UPI00046354D6	short chain dehydrogenase	1.59145833043e-05	5.8692915881e-05	4.27783325767e-05
+UniRef50_S9R2Y6	Putative permease	3.93452167832e-05	8.83730768021e-06	-3.0507909103e-05
+UniRef50_D1YZX5		0.00308892278564	0.000503243107096	-0.00258567967854
+UniRef50_J0QYX6		0.000435236190987	0.00107387892798	0.000638642736993
+UniRef50_M9REI0		2.66447825424e-05	0.000777149224201	0.000750504441659
+UniRef50_C7ZY45	Exported protein	0.00801838242036	0.000457785718507	-0.00756059670185
+UniRef50_Q5LXB5	Cell division ATP binding protein FtsE	0.00145458271057	0.000539145993045	-0.000915436717525
+UniRef50_U1YI17		0.000145561227567	0.001221998351	0.00107643712343
+UniRef50_UPI0003C1261B		9.79014043294e-06	3.76022466229e-06	-6.02991577065e-06
+UniRef50_F9Y3X8		0.000155155384122	0.000809086863555	0.000653931479433
+UniRef50_V1L1Y8		3.64841465405e-05	1.36587356879e-05	-2.28254108526e-05
+UniRef50_Q8CNK0	Single stranded DNA binding protein	0.0094199465049	0.000521147126817	-0.00889879937808
+UniRef50_UPI000469F81E	hypothetical protein	0.000745498326877	5.66940494409e-05	-0.000688804277436
+UniRef50_L2EAP1	Exodeoxyribonuclease III	3.8199370321e-05	5.11107790903e-05	1.29114087693e-05
+UniRef50_Q8TRP1	Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein	0.00726095449386	0.00632821511134	-0.00093273938252
+UniRef50_UPI0003C80514	PREDICTED	6.57768244641e-06	3.66381838626e-05	3.00605014162e-05
+UniRef50_Q9PLA5	Phosphoglucosamine mutase	3.82441062837e-06	1.02789372434e-05	6.45452661503e-06
+UniRef50_Q8DUC9	Probable 2  3 dephosphocoenzyme A synthase	0.00502967481164	0.000222042635489	-0.00480763217615
+UniRef50_UPI0004666A9C	AraC family transcriptional regulator	1.3124441939e-05	3.41178328498e-05	2.09933909108e-05
+UniRef50_A6THJ4	Inosose dehydratase	0.000384721935408	0.00358732190147	0.00320259996606
+UniRef50_W6IPV9	Oligopeptide transport system permease protein oppC	0.00113678785725	0.0054378583526	0.00430107049535
+UniRef50_F2AKS8	Ferripyochelin binding protein	2.92223381621e-05	1.90221380088e-05	-1.02002001533e-05
+UniRef50_C0R046	DNA gyrase subunit A	8.49582573032e-06	1.30920927672e-05	4.59626703688e-06
+UniRef50_E8SFS5	Membrane protein	0.0102612909261	0.00158151688859	-0.00867977403751
+UniRef50_E8SMB7		2.21245509073e-05	0.000301594699307	0.0002794701484
+UniRef50_A4IQK7	NADPH dehydrogenase	0.00028473584077	0.00737483462682	0.00709009878605
+UniRef50_X5DZP9	Binding  dependent transport system inner membrane component family protein	0.0137735061245	0.00670808739261	-0.00706541873189
+UniRef50_UPI0002557D62	preprotein translocase subunit SecD, partial	1.43516641128e-05	1.93930226855e-05	5.0413585727e-06
+UniRef50_Q88AR2	Amino acid acetyltransferase	0.000540439021321	0.00475576199572	0.0042153229744
+UniRef50_Q9RW26		0.000133387275209	0.0406672013277	0.0405338140525
+UniRef50_UPI00035DB8C9	hypothetical protein	5.33717784867e-05	7.98147080173e-05	2.64429295306e-05
+UniRef50_R5TC44	Nicotinate nucleotide diphosphorylase 	0.000168020469813	0.00194253901995	0.00177451855014
+UniRef50_A5IQ60	Septum formation initiator	0.00616874873303	0.000475040276462	-0.00569370845657
+UniRef50_X4Z0U6	Ferredoxin  NADP reductase	0.000928504219647	0.000694649297846	-0.000233854921801
+UniRef50_UPI0001FE5E48	heat shock protein 60	3.1780377307e-06	3.71904127117e-06	5.4100354047e-07
+UniRef50_UPI0003B74A81	hypothetical protein	2.74583980216e-05	4.26608729433e-06	-2.31923107273e-05
+UniRef50_Q9P2R7	Succinyl CoA ligase [ADP forming] subunit beta, mitochondrial	1.78612133872e-05	1.56592769282e-05	-2.201936459e-06
+UniRef50_Q97Q34	Phosphate import ATP binding protein PstB 2	0.0033893941053	0.00898583867128	0.00559644456598
+UniRef50_D9SQU6	Two component transcriptional regulator, AraC family	0.000706276031499	0.00026525452562	-0.000441021505879
+UniRef50_Q4K8A6		0.000400438693685	0.000178799216058	-0.000221639477627
+UniRef50_UPI00036AA061	hypothetical protein	7.45189355561e-05	1.2865573396e-05	-6.16533621601e-05
+UniRef50_UPI0003EC0186	PREDICTED	1.37311112e-05	1.51186518993e-05	1.3875406993e-06
+UniRef50_UPI00037642BA	hypothetical protein	3.66397505118e-05	1.49557016639e-05	-2.16840488479e-05
+UniRef50_UPI00045EADA1	hypothetical protein	8.28959199131e-05	0.000140559587951	5.76636680379e-05
+UniRef50_UPI00034763C5	MerR family transcriptional regulator	0.000474654928799	5.78590492844e-05	-0.000416795879515
+UniRef50_G4LFL9	LysR family transcriptional regulator	0.000108472985299	0.00028214971834	0.000173676733041
+UniRef50_G7DFY8	Ribonuclease E	0.00011799255524	7.47982964581e-06	-0.000110512725594
+UniRef50_X1BCT6	Marine sediment metagenome DNA, contig	0.000115196539565	3.51263109119e-05	-8.00702286531e-05
+UniRef50_B2TK60	Probable septum site determining protein MinC	0.000502843418349	0.00399077268268	0.00348792926433
+UniRef50_L5SXQ3	Pre toxin domain with VENN motif family protein	0.000102231219307	0.00142109155358	0.00131886033427
+UniRef50_E0RLL7		0.00018933721167	0.000948500981991	0.000759163770321
+UniRef50_D5AUC1	Entericidin B	0.000143375129927	0.000334982807773	0.000191607677846
+UniRef50_A8LMQ8	Flagellar biosynthetic protein FliQ	0.000440645123179	0.00253711225891	0.00209646713573
+UniRef50_Q1RAX2		0.000149203948168	0.00211537908182	0.00196617513365
+UniRef50_I6SUA4		0.000458485006708	0.00242726059064	0.00196877558393
+UniRef50_Q8L4A1	Os01g0594900 protein	6.94743151263e-06	3.12876736575e-05	2.43402421449e-05
+UniRef50_K1YIM5		4.63979558566e-05	2.88807242417e-05	-1.75172316149e-05
+UniRef50_A0A037XEA8		0.000216621982584	3.99111620792e-05	-0.000176710820505
+UniRef50_A0A024BU97	Restriction endonuclease	0.000140329363887	0.00417876325955	0.00403843389566
+UniRef50_UPI000393D62B	PREDICTED	2.83298204633e-05	0.000102693012991	7.43631925277e-05
+UniRef50_A3VHI7		1.74798908723e-05	2.32430156762e-05	5.7631248039e-06
+UniRef50_Q8TL41	Histidinol dehydrogenase	0.00365126689167	0.000335743979983	-0.00331552291169
+UniRef50_R9SKI2		0.00293288380079	0.000593673877247	-0.00233920992354
+UniRef50_A6M1Y0	Helix turn helix domain containing protein, AraC type	0.000268354968373	0.00107998063921	0.000811625670837
+UniRef50_B2UPP6	Serine  tRNA ligase	4.31440833953e-06	6.56981880839e-06	2.25541046886e-06
+UniRef50_A0A017HRP7		0.00149301516771	0.000382699833941	-0.00111031533377
+UniRef50_Q3AC06	Orotidine 5 phosphate decarboxylase	8.31233803921e-06	1.23476307987e-05	4.03529275949e-06
+UniRef50_UPI000379A499	hypothetical protein	2.26629214133e-05	9.42306533443e-05	7.1567731931e-05
+UniRef50_V9VQ76		0.000164209898081	0.000102302314553	-6.1907583528e-05
+UniRef50_UPI000369122A	MULTISPECIES	2.16098754762e-06	0.000238331544246	0.000236170556698
+UniRef50_UPI00037FB80C	hypothetical protein	0.000105717783489	0.000494455970948	0.000388738187459
+UniRef50_G7VQW0	Transcriptional regulator	0.000680605380771	0.000321578989328	-0.000359026391443
+UniRef50_M9J5S9	Molybdopterin binding domain of aldehyde dehydrogenase family protein	0.0012460194578	0.0012513975607	5.3781029e-06
+UniRef50_S5CX29	Tfp pilus assembly protein PilN	0.000187623644098	0.00912633259005	0.00893870894595
+UniRef50_Q4FUV6	Ribonuclease 3	6.49555865574e-06	9.10848474903e-06	2.61292609329e-06
+UniRef50_D4HD89	ABC transporter, ATP binding protein	0.000269028562208	0.00295446087741	0.0026854323152
+UniRef50_P0ABW6		0.00307234031678	0.00600681288588	0.0029344725691
+UniRef50_Q4FQY1	Kef type potassium proton antiporter, CPA2 family	0.000360080554404	0.00653011483829	0.00617003428389
+UniRef50_S5YCT9	Phage terminase, large subunit	0.00630700988258	0.00201019547971	-0.00429681440287
+UniRef50_I0ESR9	Outer membrane protein	0.000178339837253	0.00157467049693	0.00139633065968
+UniRef50_UPI000409D90E	anthranilate synthase	6.57649524542e-06	4.46571148272e-05	3.80806195818e-05
+UniRef50_D8TK47		9.0201762821e-07	3.43064572641e-06	2.5286280982e-06
+UniRef50_A5UP23	Predicted type II restriction enzyme, methylase subunit	0.00250715628528	0.000589895765484	-0.0019172605198
+UniRef50_Q1GRL4		0.000316021986139	0.00036288234313	4.6860356991e-05
+UniRef50_L1KBI7		0.00336425283838	0.00186515813808	-0.0014990947003
+UniRef50_Q5HXV5		7.44019142805e-05	0.000149458102594	7.50561883135e-05
+UniRef50_C5N3V2		0.00378038822699	0.000513594269898	-0.00326679395709
+UniRef50_A4WRE5		0.0005906929177	0.000199126531826	-0.000391566385874
+UniRef50_UPI00020002D3	putative PucR family transcriptional regulator	0.000147510901346	0.000369083844231	0.000221572942885
+UniRef50_Q2SSX9	Thymidine kinase	1.66097988762e-05	2.1055012477e-05	4.4452136008e-06
+UniRef50_I7ZF55		0.00013644086975	0.000123103691313	-1.3337178437e-05
+UniRef50_P44988	Probable 3 keto L gulonate 6 phosphate decarboxylase	3.29877872758e-05	0.000101936148713	6.89483614372e-05
+UniRef50_Q2FKF1	HTH type transcriptional regulator NorG	0.0140365423594	0.00185704148664	-0.0121795008728
+UniRef50_A5MZU0	Carbamoyl phosphate synthase large chain	0.0206365472876	0.0072008959981	-0.0134356512895
+UniRef50_X1FQR4	Marine sediment metagenome DNA, contig	0.00242676766694	0.000622600699033	-0.00180416696791
+UniRef50_UPI0003C7D137	GntR family transcriptional regulator, partial	1.74753803149e-05	4.29016648114e-05	2.54262844965e-05
+UniRef50_UPI00038107A2	hypothetical protein	2.94353631654e-05	3.21249766244e-05	2.689613459e-06
+UniRef50_UPI00036F8AFA	hypothetical protein	4.08608974045e-06	5.77075298785e-06	1.6846632474e-06
+UniRef50_P48992	Glucose 6 phosphate 1 dehydrogenase	4.34300583625e-06	6.9809375984e-06	2.63793176215e-06
+UniRef50_UPI00037C824E	hypothetical protein	3.17098043384e-06	5.55708393328e-06	2.38610349944e-06
+UniRef50_UPI00035C9A62	hypothetical protein	1.09973915859e-05	5.99502023838e-06	-5.00237134752e-06
+UniRef50_A0A023KTG8		0.000914858537385	0.000624354449424	-0.000290504087961
+UniRef50_P56467	Bifunctional protein FolD	0.00214238819437	0.00293889780919	0.00079650961482
+UniRef50_A6LWE6	MATE efflux family protein	0.000272638384566	0.00175375667244	0.00148111828787
+UniRef50_Q5E4Y6	Multidrug resistance protein NorM	0.0038373497558	0.00101723733223	-0.00282011242357
+UniRef50_U7Q105		0.000248195205855	0.000124914957604	-0.000123280248251
+UniRef50_X6C2W9		0.000310115802854	0.000114983011246	-0.000195132791608
+UniRef50_G2BBB9	Putative nucleoside transporter yegT	0.00171577862372	0.000439834156204	-0.00127594446752
+UniRef50_X6GIM5		0.000130112802013	6.44902103573e-05	-6.56225916557e-05
+UniRef50_O88167		0.00221287060048	0.000554384822661	-0.00165848577782
+UniRef50_U5MKZ1		0.000229061253196	0.000348014976398	0.000118953723202
+UniRef50_J7RAK2		0.000317215116685	0.000446322476372	0.000129107359687
+UniRef50_Q8CMQ9	Integrase like protein	0.0113498716223	0.00280029459856	-0.00854957702374
+UniRef50_F8FIU0	Fibronectin type III domain protein	8.53996801325e-07	6.67878014752e-06	5.82478334619e-06
+UniRef50_P60620	Cytochrome c oxidase subunit 1	8.93576510755e-06	1.54255874919e-05	6.48982238435e-06
+UniRef50_Q51281	SiaD protein	0.000279766792204	0.00306552384774	0.00278575705554
+UniRef50_UPI000361F695	hypothetical protein	7.44892389863e-06	9.42670065707e-05	8.68180826721e-05
+UniRef50_UPI0003650B5E	membrane protein	4.31011317786e-05	2.96292610492e-05	-1.34718707294e-05
+UniRef50_V6PWB3	Putative hydroxylase	0.000272691389861	0.000117875560339	-0.000154815829522
+UniRef50_Q5HQD3		0.00182654510736	0.00563515862993	0.00380861352257
+UniRef50_Q7VF14	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	8.76515453935e-05	0.00323515807234	0.00314750652695
+UniRef50_B0VKD0		7.58511699003e-05	0.00777058920826	0.00769473803836
+UniRef50_Q6G7H4	Pyrimidine nucleoside phosphorylase	0.0122171458195	0.00586089131741	-0.00635625450209
+UniRef50_Q8FJZ8	Anaerobic C4 dicarboxylate transporter DcuC	0.00352193410469	0.00116831931997	-0.00235361478472
+UniRef50_UPI0003B4CAB0	aldolase	9.76479805642e-05	1.28743834611e-05	-8.47735971031e-05
+UniRef50_UPI000373CDB9	hypothetical protein	4.85989041993e-05	0.000143305684582	9.47067803827e-05
+UniRef50_H5TWV5		6.02360653771e-06	0.000697741563537	0.000691717956999
+UniRef50_C3AIA3	Tetracycline resistance protein	0.0103959215818	0.00155327560326	-0.00884264597854
+UniRef50_P07959	Methyl coenzyme M reductase operon protein C	0.00416449740632	0.000727032411488	-0.00343746499483
+UniRef50_UPI0003C12BE2		1.29003850737e-06	2.13090961836e-05	2.00190576762e-05
+UniRef50_F2LJU7	Glycogen debranching enzyme GlgX	0.0182449848315	0.00392154396091	-0.0143234408706
+UniRef50_Q65LN0	Allantoinase	3.46025831777e-05	1.54656460807e-05	-1.9136937097e-05
+UniRef50_Q5LX31	SN glycerol 3 phosphate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein	3.17856151176e-05	1.10146083009e-05	-2.07710068167e-05
+UniRef50_F2A477		2.2322410781e-05	1.2745494446e-05	-9.576916335e-06
+UniRef50_L3HWN4	Inner membrane protein ybhI	0.00122010641195	0.000455474260252	-0.000764632151698
+UniRef50_G0DSV1		0.00068741921812	0.00454627958737	0.00385886036925
+UniRef50_B8EJI8		0.00304944529445	0.00181366132848	-0.00123578396597
+UniRef50_Q9CNG8	Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase	0.00317611417474	0.000903741174027	-0.00227237300071
+UniRef50_E3I7F3	Cobyrinic acid ac diamide synthase	6.51188190487e-06	2.9604269619e-05	2.30923877141e-05
+UniRef50_S3AZM5		5.73249026795e-06	0.000143411487562	0.000137678997294
+UniRef50_Q7VK29	Cysteine synthase	0.000124037017145	0.000809235523947	0.000685198506802
+UniRef50_X1PWX6	Marine sediment metagenome DNA, contig	0.000203948557329	2.91759596936e-05	-0.000174772597635
+UniRef50_A5UP33	Smf protein	0.00237045253521	0.000628329949776	-0.00174212258543
+UniRef50_A5UMV5	Glycosyltransferase, GT2 family	0.00311328702917	0.000393755606923	-0.00271953142225
+UniRef50_Q9M2W3	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase 2	8.90651653809e-06	4.08553745248e-05	3.19488579867e-05
+UniRef50_M9VF88	NADH	0.000248346045292	0.00517352204749	0.0049251760022
+UniRef50_I0C542	Glucosyltransferase 	0.00702717732491	0.00186684014285	-0.00516033718206
+UniRef50_C6XR84	NAD NADP transhydrogenase alpha subunit like protein	3.375892779e-05	2.75114240181e-05	-6.2475037719e-06
+UniRef50_A6T5N6	Chaperone protein HtpG	0.00295740182287	0.00203979767318	-0.00091760414969
+UniRef50_UPI0003502022	PREDICTED	6.59694442395e-06	5.10526363105e-05	4.44556918865e-05
+UniRef50_UPI00036716A7	hypothetical protein	0.00034260898122	0.000206929462571	-0.000135679518649
+UniRef50_UPI000273E85C		1.66710369258e-05	1.32735879763e-05	-3.3974489495e-06
+UniRef50_D4HEW0		2.2641612484e-05	7.59766278309e-05	5.33350153469e-05
+UniRef50_A3PP38	D12 class N6 adenine specific DNA methyltransferase	0.0295629643443	0.00819118328052	-0.0213717810638
+UniRef50_Q9C667	Chaperonin 60 subunit beta 4, chloroplastic	0.000654434900095	0.000242194181819	-0.000412240718276
+UniRef50_A3PIP1	Response regulator receiver protein	0.0105161430133	0.000528925442146	-0.00998721757115
+UniRef50_G8TK26	RNA splicing ligase RtcB	8.2002749205e-05	0.0149749020992	0.01489289935
+UniRef50_O67606	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	6.98981697952e-06	3.67666856289e-06	-3.31314841663e-06
+UniRef50_UPI0003478999	hypothetical protein	0.000108983575444	5.82778421565e-05	-5.07057332875e-05
+UniRef50_D6SIH2		0.00773108576611	0.000431119277652	-0.00729996648846
+UniRef50_F2ILR6		3.67618153701e-05	0.000181335033527	0.000144573218157
+UniRef50_Q98M95	Glutamyl tRNA amidotransferase subunit A	0.000237147733297	0.00321669961322	0.00297955187992
+UniRef50_UPI000006751A	nitrogen regulatory protein PII like protein	2.90375352569e-05	0.000316559149621	0.000287521614364
+UniRef50_U7GB94		0.000209100794515	7.97531594149e-05	-0.0001293476351
+UniRef50_Q9RZM6		0.000335389401508	0.0308125016165	0.030477112215
+UniRef50_Q9RZM4		2.93440201024e-05	0.0182123707272	0.0181830267071
+UniRef50_D9UC90	Primosome assembly protein 	5.36994430255e-05	0.000192120849322	0.000138421406296
+UniRef50_F9VK25	Stage IV sporulation protein B	0.000237593333424	0.00015680533019	-8.0788003234e-05
+UniRef50_A6M0K3	Cell wall hydrolase autolysin	0.000159951690188	0.00144597104386	0.00128601935367
+UniRef50_P10802	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	6.3301171976e-05	5.15507726424e-06	-5.81460947118e-05
+UniRef50_Q9LFG2	Diaminopimelate epimerase, chloroplastic	3.85265588537e-06	5.321586737e-05	4.93632114846e-05
+UniRef50_UPI00037D35D7	hypothetical protein	5.04826590268e-06	5.81211378162e-06	7.6384787894e-07
+UniRef50_P37252	Acetolactate synthase small subunit	0.00933676689548	0.00595234761442	-0.00338441928106
+UniRef50_M4K5M0	ParB family protein	0.000130417110365	2.66638975414e-05	-0.000103753212824
+UniRef50_L7WU10	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.0229378562368	0.00185423249822	-0.0210836237386
+UniRef50_Q58210		0.00333113857765	0.000994409133935	-0.00233672944371
+UniRef50_Q57240		0.00285942248103	0.000705470199178	-0.00215395228185
+UniRef50_UPI000380CA19	hypothetical protein	0.000670725298533	6.6742054874e-05	-0.000603983243659
+UniRef50_D1BKQ4	H+ gluconate symporter family protein	0.0010519512834	0.00100359164114	-4.835964226e-05
+UniRef50_A0A011PNK5		0.000344156712882	3.99706182979e-05	-0.000304186094584
+UniRef50_Q1QEV4	FAD linked oxidase like protein	0.000151593959689	0.0011586618294	0.00100706786971
+UniRef50_W7W9I9		0.000112080480659	3.27773555248e-05	-7.93031251342e-05
+UniRef50_K2EIE6		0.000115988662284	1.71528319744e-05	-9.88358303096e-05
+UniRef50_UPI000369EE8C	hypothetical protein, partial	3.85010404535e-05	8.63873367583e-05	4.78862963048e-05
+UniRef50_Q2JXY9	Argininosuccinate lyase	9.15670852882e-06	0.000960227028292	0.000951070319763
+UniRef50_UPI00047276FD	hypothetical protein	2.240771927e-05	3.04648974198e-05	8.0571781498e-06
+UniRef50_B6J8V2	Ribosomal RNA small subunit methyltransferase G	3.73457988256e-05	3.75329934262e-05	1.871946006e-07
+UniRef50_G6EGC5	Transposase orfA IS5 family element	0.000131747955477	3.54893419419e-05	-9.62586135351e-05
+UniRef50_A6M244	ROK family protein	0.000395140146384	0.00126035496861	0.000865214822226
+UniRef50_UPI0003B46258	MerR family transcriptional regulator	1.02186792765e-05	3.10362588046e-05	2.08175795281e-05
+UniRef50_T1Y643	Homoserine O acetyltransferase	0.0220777961045	0.00567906340118	-0.0163987327033
+UniRef50_Q67TJ2	Glutamate  tRNA ligase	9.0908765729e-06	5.39233110824e-06	-3.69854546466e-06
+UniRef50_Q28NX6	Peptidase C26	0.00376031513301	0.000221764734821	-0.00353855039819
+UniRef50_B5I692	FemAB family protein	0.000104277897476	0.00524993033346	0.00514565243598
+UniRef50_UPI0003FF96A6	acetoin dehydrogenase	5.91213572171e-06	6.65310139728e-06	7.4096567557e-07
+UniRef50_G7U900	Iron chelate uptake ABC transporter, FeCT family, permease protein	0.000324076642087	0.00501435530289	0.0046902786608
+UniRef50_UPI0002BB164C	hypothetical protein, partial	0.000752760874512	3.10622231675e-05	-0.000721698651345
+UniRef50_R9ZKB9		0.000632778810663	0.000157923371754	-0.000474855438909
+UniRef50_UPI00036951EF	hypothetical protein	0.000114224825458	1.87470825162e-05	-9.54777429418e-05
+UniRef50_UPI00029AC63E	lipoprotein 	0.00022402741466	0.00029801493067	7.398751601e-05
+UniRef50_O28869		0.00345681576594	0.000270106742557	-0.00318670902338
+UniRef50_Q5KVS7	Glucose 6 phosphate isomerase	0.0196472311772	0.00431797941711	-0.0153292517601
+UniRef50_A5N4G1	Predicted exonuclease, sbcD related	0.000184589725595	0.00202557158473	0.00184098185913
+UniRef50_A6LQF1	Cyanophycin synthetase	0.000383209800242	0.00149553764633	0.00111232784609
+UniRef50_UPI000237D1A0	glycosyl transferase family 2	2.34578425823e-06	1.45546533979e-05	1.22088691397e-05
+UniRef50_B9EA45		0.0222995927599	0.00598240256256	-0.0163171901973
+UniRef50_UPI000367BC1F	hypothetical protein	1.3456992275e-05	4.51487370868e-05	3.16917448118e-05
+UniRef50_A6QFG9		0.00120786987179	7.80723290971e-05	-0.00112979754269
+UniRef50_UPI0001B411A5	hypothetical protein	9.64347673031e-06	8.33195899491e-05	7.36761132188e-05
+UniRef50_F0P7Q5		0.0160609135859	0.00491912013685	-0.0111417934491
+UniRef50_UPI000441F369	PREDICTED	6.33286972501e-05	1.31135639454e-05	-5.02151333047e-05
+UniRef50_A0A008L098		0.00222858040339	9.73231091071e-05	-0.00213125729428
+UniRef50_A0A023RT67	Recombinase RecJ	0.000428290547263	0.0074692410761	0.00704095052884
+UniRef50_UPI0003AD2C67	hypothetical protein	1.7277101794e-05	1.61649365713e-05	-1.1121652227e-06
+UniRef50_V6AFL3	Adenylate cyclase ExoY	0.000138593579664	0.00019716638215	5.8572802486e-05
+UniRef50_D4C552		0.000190566528155	3.92674169929e-05	-0.000151299111162
+UniRef50_UPI00045E7BD4	hypothetical protein	1.81398285667e-05	0.000196590260626	0.000178450432059
+UniRef50_N8QX29	Xanthine dehydrogenase, molybdopterin binding subunit	0.000104910389847	0.00467287113743	0.00456796074758
+UniRef50_Q8DJI6	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.58099323551e-05	5.2057926529e-05	2.62479941739e-05
+UniRef50_UPI00039EE060	ABC transporter	3.88789797729e-05	9.2715503884e-06	-2.96074293845e-05
+UniRef50_UPI000367431C	hypothetical protein	4.24488767584e-05	7.02169458706e-05	2.77680691122e-05
+UniRef50_UPI00046A42D3	chorismate synthase	3.36033416549e-05	0.000236886933603	0.000203283591948
+UniRef50_A8ZRA0		5.31940108974e-05	0.000435891815777	0.00038269780488
+UniRef50_UPI00035FEBAF	hypothetical protein	8.07162110912e-06	1.62704253049e-05	8.19880419578e-06
+UniRef50_G2KPL2	Peptidase family protein	0.00667241015808	0.00039771085885	-0.00627469929923
+UniRef50_T2NPH9	Replication initiator protein A	1.06512431815e-05	3.93353567687e-06	-6.71770750463e-06
+UniRef50_UPI00037D884A	hypothetical protein	7.32418851186e-06	8.82000246976e-06	1.4958139579e-06
+UniRef50_I0JNK1		1.6322291331e-05	0.000337185199121	0.00032086290779
+UniRef50_D9XJC0	Membrane protein 	2.31089126233e-05	0.000178491167535	0.000155382254912
+UniRef50_I8T5U4		6.88107187659e-06	9.41439292289e-06	2.5333210463e-06
+UniRef50_V9U5D1	Glucose dehydrogenase, PQQ dependent	0.000107996423873	0.000175601094017	6.7604670144e-05
+UniRef50_Q4EGL3		0.000823817679494	0.000668157208554	-0.00015566047094
+UniRef50_B2SN64	Transposase	4.3793530486e-05	4.66550276483e-05	2.8614971623e-06
+UniRef50_E7C3H5		3.16452068409e-05	7.80869650284e-05	4.64417581875e-05
+UniRef50_O26742	Amidophosphoribosyltransferase	0.0050534274218	0.000462455283042	-0.00459097213876
+UniRef50_Q8G4N5	Glucosamine 6 phosphate deaminase	0.000147072463189	0.0092741485904	0.00912707612721
+UniRef50_Q7NIN3	Glr2150 protein	0.000102304241555	2.40424478018e-05	-7.82617937532e-05
+UniRef50_W1WKJ1		0.000397970577398	0.000216837997998	-0.0001811325794
+UniRef50_A0A031MHL6	Cell envelope biogenesis protein AsmA	2.99540603059e-06	3.65767464293e-06	6.6226861234e-07
+UniRef50_D5BS30	Sigma 54 factor, interaction domain containing protein	0.000700330193782	0.000379545576868	-0.000320784616914
+UniRef50_Q3J0T0		0.000646997659652	0.000142895179933	-0.000504102479719
+UniRef50_A6LQ65	Methyl accepting chemotaxis sensory transducer	0.000365981802222	0.00140646844007	0.00104048663785
+UniRef50_A4X0R7		0.00644322093392	0.00160181958655	-0.00484140134737
+UniRef50_O24840	Vanillate O demethylase oxidoreductase	0.000314880505132	0.00527513316205	0.00496025265692
+UniRef50_UPI00046C42D9	hypothetical protein	7.14613610598e-05	2.88729842449e-05	-4.25883768149e-05
+UniRef50_B0VB22		9.88183216845e-05	0.0041347927619	0.00403597444022
+UniRef50_B0VB20		0.000318538859112	0.00626094244143	0.00594240358232
+UniRef50_A9BPH5	Short chain dehydrogenase reductase SDR	0.000705800219024	0.00170343325922	0.000997633040196
+UniRef50_P0A9W9	Protein YrdA	0.00655498018095	0.000714475899663	-0.00584050428129
+UniRef50_A5W6Z8	Secretion protein HlyD family protein	0.00028106402456	0.000690722597151	0.000409658572591
+UniRef50_A0A010CI18	NADH Ubiquinone plastoquinone , various chains family protein	4.12402755456e-05	0.00821939322886	0.00817815295331
+UniRef50_UPI0003751049	hypothetical protein	0.00010104579499	7.51811001052e-05	-2.58646948848e-05
+UniRef50_Q9HT80	DNA polymerase I	0.00103406233443	0.00043250494265	-0.00060155739178
+UniRef50_T1Y610		0.000146545134284	0.00613152149577	0.00598497636149
+UniRef50_C5N439		0.000235292073609	0.000171647324285	-6.3644749324e-05
+UniRef50_Q5HL38		0.0110486985956	0.00428705518929	-0.00676164340631
+UniRef50_A8A3U8		0.000719696361998	8.60666818562e-05	-0.000633629680142
+UniRef50_UPI000472CA5C	hypothetical protein	6.43896811173e-06	8.62242754956e-06	2.18345943783e-06
+UniRef50_UPI00029B279A	Multidrug resistance protein B	6.0510122889e-05	6.15763859342e-05	1.0662630452e-06
+UniRef50_A1ITE9		0.000126319946328	0.00275991484761	0.00263359490128
+UniRef50_D3QEC0		0.0163901254999	0.00960004716909	-0.00679007833081
+UniRef50_D9PI46	Anaerobic ribonucleoside triphosphate reductase 	7.5949307983e-06	4.60032424054e-05	3.84083116071e-05
+UniRef50_A5N7H7	Elongation factor P	1.55968502521e-05	0.0426891304434	0.0426735335931
+UniRef50_UPI00047B3307	2 oxoglutarate dehydrogenase	7.76820426213e-06	1.85318109727e-05	1.07636067106e-05
+UniRef50_UPI0002E03285	DNA invertase	2.54251917311e-05	3.57471469051e-05	1.0321955174e-05
+UniRef50_A0JUR7		0.00129515090857	0.000138863654487	-0.00115628725408
+UniRef50_Q5PD59	1 deoxy D xylulose 5 phosphate reductoisomerase	0.0037103666585	0.000341117440018	-0.00336924921848
+UniRef50_A5UN26	Adhesin like protein	0.0029855196713	0.000614581668948	-0.00237093800235
+UniRef50_A9M0Z2	Transcriptional regulator, GntR family	0.000368279987221	0.00487170587606	0.00450342588884
+UniRef50_Q97FJ7	Histidine  tRNA ligase	0.00029003408909	0.00239699428721	0.00210696019812
+UniRef50_UPI00035948EC	PREDICTED	0.000195795314811	3.77195549588e-05	-0.000158075759852
+UniRef50_A9VXT4	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.31172798897e-05	1.05140873988e-05	-2.6031924909e-06
+UniRef50_P75683		0.00468534609453	0.000317066161402	-0.00436827993313
+UniRef50_I6XWT7	Putative membrane protein	4.08456250764e-06	4.00216596027e-05	3.59370970951e-05
+UniRef50_Q9K9Y6	Methionyl tRNA formyltransferase	7.07292589424e-05	0.00290777729888	0.00283704803994
+UniRef50_UPI00034BF683	hypothetical protein	1.49939838868e-05	0.000449191572737	0.00043419758885
+UniRef50_Q72IZ2	3 dehydroquinate dehydratase	9.07561168501e-06	0.000261791661786	0.000252716050101
+UniRef50_A3U3D3	Plasma membrane H+ transporting two sector ATPase, C subunit	0.000114228248787	7.14485615967e-06	-0.000107083392627
+UniRef50_Q9RYR1	Drug transport protein, putative	0.000167974581064	0.0463035166276	0.0461355420465
+UniRef50_A7WZL5	NADPH dependent 7 cyano 7 deazaguanine reductase	0.00775421760795	0.00387249937466	-0.00388171823329
+UniRef50_UPI0003705A0C	hypothetical protein	0.000175433454206	2.96093308216e-05	-0.000145824123384
+UniRef50_UPI0003B754B6	ribonucleotide reductase	0.000144850145886	4.33279484981e-05	-0.000101522197388
+UniRef50_Q6MRB4	Peptidyl prolyl cis trans isomerase	0.000386504425449	0.00115397339753	0.000767468972081
+UniRef50_P76115	Probable TonB dependent receptor YncD	0.00295143498858	0.000505566997642	-0.00244586799094
+UniRef50_S7SQK8		7.49983968557e-05	0.000408041683551	0.000333043286695
+UniRef50_UPI000368D785	50S ribosomal protein L18	0.000291848880704	0.000374913687894	8.306480719e-05
+UniRef50_F0L6J1	Phage head tail adaptor, putative	0.000147494199766	3.63863583542e-05	-0.000111107841412
+UniRef50_C3MPM7	Putative homocitrate synthase	5.63669371205e-06	6.23696139638e-06	6.0026768433e-07
+UniRef50_W7IM88	Basic proline rich protein	0.000409832247236	0.00121088808614	0.000801055838904
+UniRef50_M7E5A1	Transcriptional regulator	0.00220494730898	0.00237547100366	0.00017052369468
+UniRef50_Q8EU05	Chaperone protein ClpB	0.0247646079631	0.00952868829424	-0.0152359196689
+UniRef50_W8YJN0		1.38016112723e-05	3.88517871222e-06	-9.91643256008e-06
+UniRef50_B8HD15	DNA directed RNA polymerase subunit beta	1.12081497368e-06	2.1767736576e-06	1.05595868392e-06
+UniRef50_Q2SLW2		0.0128722193078	0.00348560611979	-0.00938661318801
+UniRef50_N6V4C3		1.5897912198e-05	3.14331906628e-05	1.55352784648e-05
+UniRef50_F9Z195	General stress protein 18	0.00153185020708	0.00212919752469	0.00059734731761
+UniRef50_D7C5U0	Putative transposase	0.00014173441384	2.56217850212e-05	-0.000116112628819
+UniRef50_Q112U2	2 isopropylmalate synthase	8.42501691609e-06	7.14928699111e-06	-1.27572992498e-06
+UniRef50_W8ELK9		0.000283824051773	0.0327675493836	0.0324837253318
+UniRef50_Q8REI2	Phosphoenolpyruvate carboxykinase [ATP]	6.7519069994e-05	0.000232572673693	0.000165053603699
+UniRef50_P66796	Transcriptional regulatory protein QseB	0.00539811051595	0.00100044731139	-0.00439766320456
+UniRef50_A4WSD0	Peptidase M10, serralysin like protein	0.00521191045347	0.000993631563196	-0.00421827889027
+UniRef50_UPI000289FD65	4 aminobutyrate aminotransferase	1.81435147512e-05	4.14596367657e-05	2.33161220145e-05
+UniRef50_G7TM97	Transposase	8.06649017537e-05	8.07928527599e-05	1.279510062e-07
+UniRef50_UPI000477CB4F	competence protein	1.67072136466e-05	5.16583603867e-05	3.49511467401e-05
+UniRef50_UPI00047E2083	DNA methyltransferase	0.000260768841586	3.669612539e-05	-0.000224072716196
+UniRef50_B9TL13		0.000263490443481	2.07580048946e-05	-0.000242732438586
+UniRef50_B2TY69	L ribulose 5 phosphate 3 epimerase UlaE	0.00716465716996	0.00190688735354	-0.00525776981642
+UniRef50_G6WW76		6.44473277577e-06	2.45662451119e-05	1.81215123361e-05
+UniRef50_UPI0004748BDD	gamma aminobutyrate transporter	4.3059068077e-05	3.62352811614e-05	-6.8237869156e-06
+UniRef50_Q984R8	Mll7872 protein	0.00505073996962	0.00293988175331	-0.00211085821631
+UniRef50_UPI00046AA572	hypothetical protein	8.24278590113e-05	1.42468867842e-05	-6.81809722271e-05
+UniRef50_T2ERS5	ThiS family protein	0.00073597620894	0.000629609229193	-0.000106366979747
+UniRef50_A0A023B8B3	Mannitol 1 phosphate 5 dehydrogenase	0.000298279819145	0.00165305769918	0.00135477788003
+UniRef50_Q28WH8	DNA replication and repair protein RecF	0.000252315474186	0.000216085394041	-3.6230080145e-05
+UniRef50_Q5WIY8	UPF0061 protein ABC1129	0.00162702334017	0.000255280239051	-0.00137174310112
+UniRef50_T1UB30	2Fe 2S iron sulfur cluster binding domain protein	4.51718375123e-05	0.00488516038783	0.00483998855032
+UniRef50_P37348	UPF0759 protein YecE	0.00462548368307	0.00014278003475	-0.00448270364832
+UniRef50_A6LQ22		0.000114191745239	0.000593659434454	0.000479467689215
+UniRef50_Q1QJ51	Plasmid pRiA4b ORF 3 like protein	0.000737483724494	0.000181415859819	-0.000556067864675
+UniRef50_Q2G9L9	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.88487480464e-05	4.38577380205e-05	2.50089899741e-05
+UniRef50_UPI0003B59A94	multifunctional thiamine phosphate pyrophosphorylase synthase phosphomethylpyrimidine kinase	1.77653957336e-06	5.40618774014e-06	3.62964816678e-06
+UniRef50_R9ZI95	Permease	0.000345083417731	0.00025270440596	-9.2379011771e-05
+UniRef50_K7E1C1		4.11234176044e-05	0.000131489990034	9.03665724296e-05
+UniRef50_UPI00037069EF	hypothetical protein	0.000997448646457	0.000186076506911	-0.000811372139546
+UniRef50_UPI0003A0F8A6	multidrug ABC transporter	6.52231020067e-06	9.83621338787e-06	3.3139031872e-06
+UniRef50_UPI000366C76B	hypothetical protein	1.72109776187e-05	2.42444752061e-05	7.0334975874e-06
+UniRef50_UPI00047A127F	hypothetical protein, partial	1.03045952952e-05	5.41826658911e-06	-4.88632870609e-06
+UniRef50_N0C7C0		0.00010351544844	1.84628383033e-05	-8.50526101367e-05
+UniRef50_R5TZB6	Serine type site specific recombinase	4.66910961006e-06	6.37368521561e-05	5.9067742546e-05
+UniRef50_A6M1X4	Integral membrane sensor signal transduction histidine kinase	0.000497535274587	0.00168789813419	0.0011903628596
+UniRef50_Q3IWH8	Monosaccharide ABC transporter membrane protein, CUT2 family	0.000480805459153	0.000537102098988	5.6296639835e-05
+UniRef50_Q2JEW7	Peptide chain release factor 2	0.000324542305157	0.00715934401933	0.00683480171417
+UniRef50_UPI000378DC18	hypothetical protein	2.42674456496e-05	0.000669922351288	0.000645654905638
+UniRef50_A6LV85	Acyl CoA reductase	0.000718953346337	0.000277641058241	-0.000441312288096
+UniRef50_B9KQH0	Surface presentation of antigens  protein	0.000738609622789	0.00025641974288	-0.000482189879909
+UniRef50_O34524		0.000617140576002	0.00996073330303	0.00934359272703
+UniRef50_O34528		0.0223612953812	0.0128162254107	-0.0095450699705
+UniRef50_A3K289		0.000253970181563	0.000199518510071	-5.4451671492e-05
+UniRef50_A0A024HL97	Tfp pilus assembly protein FimV like protein	0.000367197889944	0.000347124463957	-2.0073425987e-05
+UniRef50_O34399	Glutamate synthase [NADPH] small chain	0.000262874899951	0.000188549734911	-7.432516504e-05
+UniRef50_UPI000466D49C	MerR family transcriptional regulator, partial	0.000148723013654	5.64077664973e-05	-9.23152471567e-05
+UniRef50_X2LHR6	Membrane protein	8.87340474343e-05	4.00246771841e-05	-4.87093702502e-05
+UniRef50_D8HHG7	Oligopeptide transport system permease protein	0.0208734744225	0.00799086548262	-0.0128826089399
+UniRef50_UPI0003678A6C	hypothetical protein	0.000116784882914	0.00100274328979	0.000885958406876
+UniRef50_K4RMU3		0.000149591651585	0.00177318598734	0.00162359433575
+UniRef50_UPI0003B36F4D	deoxyguanosinetriphosphate triphosphohydrolase	8.93330321074e-05	4.87592448265e-06	-8.44571076247e-05
+UniRef50_A5UKV8	Transcription factor E	0.00198145076882	0.00241596460533	0.00043451383651
+UniRef50_Q58776	Carbamoyl phosphate synthase large chain, C terminal section	3.69623660093e-06	4.61748399215e-06	9.2124739122e-07
+UniRef50_D3FXA1	Maltose 6 phosphate glucosidase	0.00035836395335	0.00096934289196	0.00061097893861
+UniRef50_Q3B5D7	UDP N acetylglucosamine 1 carboxyvinyltransferase	0.002400849882	0.00435074489391	0.00194989501191
+UniRef50_UPI00035E5E43	phosphoadenosine phosphosulfate reductase	1.23817433671e-05	1.48557340296e-05	2.4739906625e-06
+UniRef50_T6G328	Cellulose synthase operon protein C	0.00129396281663	0.000957783908741	-0.000336178907889
+UniRef50_A3VEJ1		0.000444393589432	9.03400220697e-05	-0.000354053567362
+UniRef50_D8JH08	Glycosyltransferase	0.000103138248322	0.00541688800923	0.00531374976091
+UniRef50_U5C5S7	Diguanylate cyclase	1.09275803765e-05	2.67453879418e-05	1.58178075653e-05
+UniRef50_U6LUD4		8.92256604042e-05	2.86174308354e-06	-8.63639173207e-05
+UniRef50_UPI0003B5E99A	ABC transporter ATP binding protein	4.59557131052e-05	3.73826270668e-05	-8.5730860384e-06
+UniRef50_UPI00046CEEA5	molecular chaperone DnaJ	5.95410379858e-06	1.2688863168e-05	6.73475936942e-06
+UniRef50_F0YA66		8.83478903997e-05	0.000170321170381	8.19732799813e-05
+UniRef50_UPI000334479B		0.000139007215315	1.88669000931e-05	-0.000120140315222
+UniRef50_E2X9M1	Aminotransferase ybdL	0.00184529252433	0.00286621198888	0.00102091946455
+UniRef50_K1UU32		2.50061002935e-05	0.000293455818119	0.000268449717825
+UniRef50_UPI00016A9AD4	hypothetical protein	4.0847542826e-05	0.000589767964132	0.000548920421306
+UniRef50_UPI00040938D6	hypothetical protein	0.000220482418773	0.000125058312731	-9.5424106042e-05
+UniRef50_N2SSM7		0.0019280697607	0.00082244256931	-0.00110562719139
+UniRef50_I7EXB5	Transcriptional regulator, crp family	0.0104585766102	0.00130243789297	-0.00915613871723
+UniRef50_A0A024J5P9	PT4 plasmid pSEN complete sequence	0.000138337080483	3.097870364e-05	-0.000107358376843
+UniRef50_UPI0003628CAF	hypothetical protein	2.2975470911e-05	7.02839971091e-05	4.73085261981e-05
+UniRef50_UPI00046F7609	hypothetical protein	1.46937681586e-05	7.05245367116e-06	-7.64131448744e-06
+UniRef50_UPI0003B489CA	osmotically inducible protein C	2.68857376963e-05	0.00041902617396	0.000392140436264
+UniRef50_A4SX51	4 hydroxy tetrahydrodipicolinate synthase	1.93366192167e-06	0.00332901239602	0.0033270787341
+UniRef50_Q7VQH3	Enolase	6.72655475916e-06	8.37025034364e-05	7.69759486772e-05
+UniRef50_UPI0003B4EABD	glutathione ABC transporter ATP binding protein	3.42985529122e-05	8.74882351872e-06	-2.55497293935e-05
+UniRef50_Q6HIL6	Aminoacyl histidine dipeptidase	0.000441692564831	0.00147816165059	0.00103646908576
+UniRef50_A0A010RX66	FeS assembly SUF system protein SufT	3.47460799616e-05	1.82654595147e-05	-1.64806204469e-05
+UniRef50_Q0BZZ7	Leucyl phenylalanyl tRNA  protein transferase	1.56375383004e-05	8.70577484469e-05	7.14202101465e-05
+UniRef50_E5QX84	FemAB family protein	0.00177613647485	0.000818874771081	-0.000957261703769
+UniRef50_D3RSC1	Channel protein, hemolysin III family	0.00103914905486	0.00460063178917	0.00356148273431
+UniRef50_B8DU54	N acetyl gamma glutamyl phosphate reductase	4.90738185783e-06	4.17962484976e-05	3.68888666398e-05
+UniRef50_Q32DZ9	Macrolide export ATP binding permease protein MacB	0.00245916948009	0.00751820202898	0.00505903254889
+UniRef50_Q39DM7	Lipoprotein signal peptidase	1.00534669996e-05	1.41608542239e-05	4.1073872243e-06
+UniRef50_UPI0004649C8D	hypothetical protein	2.63068782168e-05	0.000448050045238	0.000421743167021
+UniRef50_UPI00047D766C	hypothetical protein, partial	3.27853940596e-05	0.000121718239298	8.89328452384e-05
+UniRef50_M4R6E9		0.000120090982672	0.00887181905202	0.00875172806935
+UniRef50_Q4FLF9		0.00015664136019	0.00011206727551	-4.457408468e-05
+UniRef50_UPI000479CDCE	2 dehydro 3 deoxyglucarate aldolase	5.40681904213e-05	0.000266721665744	0.000212653475323
+UniRef50_UPI0002487D7B	acetyl coenzyme A carboxylase carboxyl transferase subunit alpha, partial	4.88790991124e-05	6.98960571484e-05	2.1016958036e-05
+UniRef50_UPI000373F182	hypothetical protein	5.6295157099e-05	3.30448465982e-05	-2.32503105008e-05
+UniRef50_Q0APY8	NADH quinone oxidoreductase subunit C	2.75652124762e-05	8.26231325499e-05	5.50579200737e-05
+UniRef50_UPI0004684D4E	hypothetical protein	7.90466004188e-05	6.14511739312e-06	-7.29014830257e-05
+UniRef50_UPI0003483C97	enterobactin synthase subunit E	9.13260739982e-06	9.06480870182e-06	-6.7798698e-08
+UniRef50_P98056	Cytochrome c oxidase subunit 1 homolog	0.0159992512386	0.00407442433173	-0.0119248269069
+UniRef50_C4J5K8		7.33644543172e-05	0.000110093291758	3.67288374408e-05
+UniRef50_A0A038FVW1		0.00194378103861	0.000869060161542	-0.00107472087707
+UniRef50_A5D673	Ribosomal RNA small subunit methyltransferase A	2.57680851907e-05	3.95226139847e-05	1.3754528794e-05
+UniRef50_R0VZS5		0.000272881437722	0.000840817278291	0.000567935840569
+UniRef50_A4XVG5	tRNA  hydroxylase	1.74303463571e-05	2.2774140044e-05	5.3437936869e-06
+UniRef50_C1C6G4	Phosphopentomutase	9.31182504493e-06	0.00172357261924	0.0017142607942
+UniRef50_P46142		0.00326827337522	0.00326637525416	-1.89812106e-06
+UniRef50_L2FJJ5		0.000221790923321	0.000347025143457	0.000125234220136
+UniRef50_UPI0002481AA7	HNH endonuclease	6.25581804485e-05	0.000291068496274	0.000228510315825
+UniRef50_Q3ERE1	Glyoxalase family protein	2.75957091276e-05	6.53811834026e-05	3.7785474275e-05
+UniRef50_A4VFG0	DNA replication and repair protein RecF	0.00108757033358	0.000168752402972	-0.000918817930608
+UniRef50_Q7MPS9	Coenzyme A biosynthesis bifunctional protein CoaBC	4.90296427519e-06	0.00983473126448	0.0098298283002
+UniRef50_F0YFY9	Expressed protein 	0.000321829127345	8.14483474937e-05	-0.000240380779851
+UniRef50_UPI000477A5E2	esterase	2.31573265716e-05	2.50088657895e-05	1.8515392179e-06
+UniRef50_R4K9X6	Histone acetyltransferase	0.00048863819959	0.00057457299213	8.593479254e-05
+UniRef50_UPI000373FF71	hypothetical protein, partial	0.000189351075232	0.00121353888747	0.00102418781224
+UniRef50_P56344	Probable sulfate thiosulfate import ATP binding protein CysA	0.000326014037735	0.00063019506874	0.000304181031005
+UniRef50_U2YS21		8.29061710019e-05	2.69220006621e-05	-5.59841703398e-05
+UniRef50_UPI0003B47B9D	phosphoserine phosphatase	7.27479541771e-06	6.2176451837e-05	5.49016564193e-05
+UniRef50_D9PXN6	Predicted FMN binding protein	0.00333368724754	0.00315977803809	-0.00017390920945
+UniRef50_X7YJ52		0.000102272572425	0.000268205598858	0.000165933026433
+UniRef50_A6LZ14	Histidine kinase	0.000363552531713	0.00106260980889	0.000699057277177
+UniRef50_UPI00029B24CC	ABC transporter ATP binding protein	5.23770564565e-06	1.04307660585e-05	5.19306041285e-06
+UniRef50_UPI0003B4577C	glycerophosphoryl diester phosphodiesterase	1.78689747671e-05	3.6949382523e-05	1.90804077559e-05
+UniRef50_A5FIF9	Potassium transporting ATPase A chain	1.6601689039e-05	0.000636217310842	0.000619615621803
+UniRef50_R1ECI7		0.000105171558425	3.12205684646e-05	-7.39509899604e-05
+UniRef50_A5UMH5	Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein	0.00472363961608	0.000369882571866	-0.00435375704421
+UniRef50_B2V2P3	Potassium transporting ATPase B chain	1.63452256546e-05	0.002423084106	0.00240673888035
+UniRef50_C5AFT1		3.19673248271e-06	4.93265961176e-06	1.73592712905e-06
+UniRef50_I6SKB7		8.54685257742e-05	0.00025998863244	0.000174520106666
+UniRef50_UPI00047C2684	heme ABC transporter ATP binding protein, partial	2.22389484138e-05	5.89882157414e-05	3.67492673276e-05
+UniRef50_Q02D08		1.12706255176e-06	4.04873467183e-06	2.92167212007e-06
+UniRef50_T4AYR7		1.12007093861e-05	0.00058452326449	0.000573322555104
+UniRef50_P78061	Gamma glutamylputrescine synthetase PuuA	0.00277756912532	0.0010832730307	-0.00169429609462
+UniRef50_UPI000255867E	2 oxoglutarate dehydrogenase E1 component, partial	0.00104919019045	0.000250916264812	-0.000798273925638
+UniRef50_A6V9I8	Transcriptional regulator, IclR family	0.000141912025886	0.000224007614567	8.2095588681e-05
+UniRef50_UPI00047CE41F	cobyrinic acid ac diamide synthase	1.03982454129e-05	0.000351779307616	0.000341381062203
+UniRef50_UPI0003B63533	hypothetical protein	2.42599647117e-06	1.81878987992e-05	1.5761902328e-05
+UniRef50_R5K0I5	Succinylglutamate desuccinylase aspartoacylase family protein	0.00071303448488	0.0011968151233	0.00048378063842
+UniRef50_F6A168	Ribose phosphate diphosphokinase	0.000121769673823	0.00506318515864	0.00494141548482
+UniRef50_E8XM67	Sugar isomerase 	0.000117110441217	0.000847689409131	0.000730578967914
+UniRef50_F8I099		0.000611610658559	0.000512109893401	-9.9500765158e-05
+UniRef50_G8VD13		0.000236722445266	0.00626147268981	0.00602475024454
+UniRef50_UPI0004799DC8	hypothetical protein	0.000380379168068	0.000300859920205	-7.9519247863e-05
+UniRef50_U7XP25		0.000269414159434	8.82064208499e-05	-0.000181207738584
+UniRef50_UPI0002192501	orotidine 5 phosphate decarboxylase	2.37904616812e-05	1.87089760298e-05	-5.0814856514e-06
+UniRef50_E6MY39	Integral membrane protein, TerC family	0.000425114300719	0.00331958120825	0.00289446690753
+UniRef50_A0A011MY44		0.000419811279834	0.000213369683161	-0.000206441596673
+UniRef50_UPI00045EC444	MULTISPECIES	4.56243753824e-05	0.000178845533318	0.000133221157936
+UniRef50_P18655	Superoxide dismutase [Fe]	0.000209182091079	0.00989638475921	0.00968720266813
+UniRef50_H1XFI5		8.09693929749e-05	0.000148522370356	6.75529773811e-05
+UniRef50_G8YAV0	Piso0_003726 protein	7.5801331218e-05	6.26869973003e-05	-1.31143339177e-05
+UniRef50_N1PMQ8		0.00030640197148	4.07225282362e-05	-0.000265679443244
+UniRef50_UPI000475D591	dihydroxyacetone kinase	2.19143319423e-05	0.00140134008676	0.00137942575482
+UniRef50_C1DHH8	ATPase	0.000649131792001	0.000230416154893	-0.000418715637108
+UniRef50_A0A023LEW3	Alpha glucosidase	6.12801929925e-05	0.0052148332585	0.00515355306551
+UniRef50_Q8VKN7		6.29670387241e-06	1.07078299469e-05	4.41112607449e-06
+UniRef50_Q1RH88	Superoxide dismutase [Mn Fe]	0.0142665702873	0.00206412280495	-0.0122024474824
+UniRef50_F7XC58		9.66468652764e-05	0.000153974498951	5.73276336746e-05
+UniRef50_O29305	Putative  citramalate synthase CimA	9.85587393296e-06	8.43191625646e-06	-1.4239576765e-06
+UniRef50_A0A021VTG9		0.000522850429058	5.88000292878e-05	-0.00046405039977
+UniRef50_UPI00047321C0	hypothetical protein	1.10077850133e-05	3.59148908571e-05	2.49071058438e-05
+UniRef50_UPI00016B24E2	ParBc, ParB like nuclease domain	6.13311405551e-05	0.000147060557432	8.57294168769e-05
+UniRef50_V9WPS8	Amino acid amide ABC transporter membrane protein 1, HAAT family	0.00222733025922	0.000198379278247	-0.00202895098097
+UniRef50_R0FMF6	GroEL	6.53273618061e-05	9.35560152661e-05	2.822865346e-05
+UniRef50_X7ZV72	Phosphate transport system regulatory protein PhoU	8.32713880959e-05	8.31884353647e-05	-8.29527312e-08
+UniRef50_Q0T014	Ribosomal RNA small subunit methyltransferase B	0.00120467493848	0.00106664618137	-0.00013802875711
+UniRef50_UPI0004706840	peptide ABC transporter permease	3.23218171704e-05	4.80640587833e-05	1.57422416129e-05
+UniRef50_UPI0003B45E5B	DNA binding protein	7.44333343155e-05	5.2317880045e-05	-2.21154542705e-05
+UniRef50_A5UJQ1		0.00105887354879	0.00521147126815	0.00415259771936
+UniRef50_A3MIQ3	Ribosomal RNA large subunit methyltransferase E	2.21831080099e-05	1.86277336423e-05	-3.5553743676e-06
+UniRef50_UPI0000589E14	lipase precursor	3.55362576152e-05	7.2788740764e-05	3.72524831488e-05
+UniRef50_K7RQY3		0.000150274598074	0.00514991660644	0.00499964200837
+UniRef50_F5ZJA3	Sugar phosphotransferase system , fructose specific family, IIA component	0.015177861392	0.000944818631634	-0.0142330427604
+UniRef50_Q6F6T5		0.000501388787585	0.00868347257601	0.00818208378842
+UniRef50_A6LW88	Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000126138646943	0.000651658453119	0.000525519806176
+UniRef50_W0YNW4		7.01612079588e-06	2.95233096548e-05	2.25071888589e-05
+UniRef50_W4L1M8	Transposase	0.000174014206572	3.41946304079e-05	-0.000139819576164
+UniRef50_Q51553	 3 hydroxydecanoyl ACP	0.00140668223391	0.000752361305051	-0.000654320928859
+UniRef50_A0A011ADX1		6.99444431263e-05	0.000212170503735	0.000142226060609
+UniRef50_UPI00037AB267	hypothetical protein, partial	5.66621318132e-05	2.49311605579e-05	-3.17309712553e-05
+UniRef50_P25737	Lysine specific permease	0.00249548155058	0.00488824239397	0.00239276084339
+UniRef50_C0RHG6	Acyl carrier protein	0.000338002579601	0.000191085208011	-0.00014691737159
+UniRef50_A4SPY8	Protoheme IX farnesyltransferase	0.00039825013826	0.000445581439861	4.7331301601e-05
+UniRef50_Q7NCB3	Histidine ammonia lyase	4.04661499628e-06	0.000134032436819	0.000129985821823
+UniRef50_D3QF58		0.0203457905748	0.00643766207458	-0.0139081285002
+UniRef50_A7GH10	Hydroxylamine reductase	0.00158530852508	0.00594621253458	0.0043609040095
+UniRef50_V4LC05		0.000798113668843	0.00710971190178	0.00631159823294
+UniRef50_I1ETG1		3.52754462037e-05	0.000169458697536	0.000134183251332
+UniRef50_Q8DT71		0.0054133210093	0.00195081796078	-0.00346250304852
+UniRef50_C8WK91	Ribonucleoside diphosphate reductase	0.000477928081877	0.00498457766182	0.00450664957994
+UniRef50_R6MV50	YhgE Pip domain containing protein	1.93807897204e-06	2.66910386231e-06	7.3102489027e-07
+UniRef50_Q1QD84	Oxidoreductase FAD NAD binding protein	0.000199376402564	0.00440452132928	0.00420514492672
+UniRef50_M1N4C4		0.000458260744925	0.00101186102153	0.000553600276605
+UniRef50_G9W9B6	Lytic murein transglycosylase A	0.000203952295823	0.000105386109817	-9.8566186006e-05
+UniRef50_UPI0003829C73	hypothetical protein	3.2324916855e-05	1.55566559619e-05	-1.67682608931e-05
+UniRef50_N1TQ93		0.00122376959817	6.87404981134e-05	-0.00115502910006
+UniRef50_P43776	Dihydropteroate synthase	1.37244210234e-05	3.83064970167e-05	2.45820759933e-05
+UniRef50_U5MM75	Penicillin binding protein 2	0.000333906849212	0.000867423522824	0.000533516673612
+UniRef50_A3JXA6		7.51889537345e-06	6.16230519746e-06	-1.35659017599e-06
+UniRef50_E7PVL4	ATP dependent RNA helicase	0.00706131630633	0.00217890348774	-0.00488241281859
+UniRef50_W5YDQ8	WGR domain protein	4.02986314239e-05	2.83023336403e-05	-1.19962977836e-05
+UniRef50_UPI00047B87BE	hypothetical protein	1.03875925507e-05	1.22380565238e-05	1.8504639731e-06
+UniRef50_F5Y7Q0		0.000466097504455	0.000276147879794	-0.000189949624661
+UniRef50_P77239	Cation efflux system protein CusB	0.00140393574094	0.00125949925404	-0.0001444364869
+UniRef50_UPI0004770378	osmolarity response regulator	6.2225459383e-05	1.35064869502e-05	-4.87189724328e-05
+UniRef50_UPI0004423ADB		9.06321061685e-05	7.32655782173e-05	-1.73665279512e-05
+UniRef50_UPI0003610585	hypothetical protein	5.60287531799e-05	9.92854331527e-05	4.32566799728e-05
+UniRef50_P0AG95	Protein translocase subunit SecF	0.00305960301017	0.00116199895728	-0.00189760405289
+UniRef50_A5I292		0.00055336550322	0.000667194260053	0.000113828756833
+UniRef50_Q2YPH2	Ornithine carbamoyltransferase	0.00761994435818	0.00243608949716	-0.00518385486102
+UniRef50_UPI00037DDC0E	DNA methyltransferase, partial	0.00369546221871	0.00116877074279	-0.00252669147592
+UniRef50_Q8CU98		0.00909106441186	0.00209884474821	-0.00699221966365
+UniRef50_Q8CU99		0.194123181874	0.0585038462355	-0.135619335638
+UniRef50_UPI00042902E2	stomatin 2	3.94750126377e-05	1.0054857513e-05	-2.94201551247e-05
+UniRef50_Q7VNN7	Phosphopantetheine adenylyltransferase	2.78514845551e-05	1.77881648403e-05	-1.00633197148e-05
+UniRef50_Q8CU97		0.00713801646976	0.00325368309714	-0.00388433337262
+UniRef50_U5UIZ0	2 oxoisovalerate dehydrogenase E1 component alpha subunit	0.0108042335398	0.00406414572568	-0.00674008781412
+UniRef50_E8SFA3	V5 Tpx 1 related allergen	0.00616447444	0.00176700793247	-0.00439746650753
+UniRef50_I7A5B6		0.000325418955908	0.000497724784029	0.000172305828121
+UniRef50_E7BDJ1	ISNme1 transposase 	0.000191617253221	0.0235013190941	0.0233097018409
+UniRef50_Q65RB3	Histidine biosynthesis bifunctional protein HisB	5.36120946286e-05	9.21649672174e-06	-4.43955979069e-05
+UniRef50_UPI00016B21F0	TDP GLUCOSE PYROPHOSPHORYLASE, partial	0.000542746293708	6.14018303726e-05	-0.000481344463335
+UniRef50_R1FAR2		2.65458058746e-05	2.0294678588e-05	-6.2511272866e-06
+UniRef50_D9QZA2	ABC transporter related protein	0.000228715294286	0.00109114910595	0.000862433811664
+UniRef50_Q8CNH5	General stress protein 20U	0.0245898635031	0.00543483638156	-0.0191550271215
+UniRef50_UPI0004782D2D	sulfite oxidase	1.40008618837e-05	0.000100779650783	8.67787888993e-05
+UniRef50_G8V268	Short chain dehydrogenase family protein	0.0107889634925	0.0045515294141	-0.0062374340784
+UniRef50_UPI00003978BA	COG0488	5.08873975676e-05	4.16544520751e-05	-9.2329454925e-06
+UniRef50_Q887Q0	Alginate biosynthesis protein Alg44	0.000154496311943	0.000226585707308	7.2089395365e-05
+UniRef50_G8VAR6	Sugar transport protein	0.000234463347108	0.00163040628298	0.00139594293587
+UniRef50_Q81IT9	DEAD box ATP dependent RNA helicase CshA	0.00519852835211	0.0077568202533	0.00255829190119
+UniRef50_UPI000288104D	ATP dependent DNA helicase	2.28556739016e-05	7.12821434866e-06	-1.57274595529e-05
+UniRef50_G7M9J1	Amidohydrolase	0.000305134109218	0.00189731884886	0.00159218473964
+UniRef50_V4R6B4	Inosine 5 monophosphate dehydrogenase	0.00013019737822	6.2261012161e-05	-6.7936366059e-05
+UniRef50_UPI00036700E1	hypothetical protein	5.39321625713e-06	7.64937247179e-05	7.11005084608e-05
+UniRef50_R5X6Z2		0.000210103518845	0.000870983813901	0.000660880295056
+UniRef50_A3CK29	Acetylxylan esterase, putative	0.000487193403363	0.00421733220622	0.00373013880286
+UniRef50_W4UBQ1	Vitamin B12 ABC transporter	1.93858238698e-05	0.000127925179778	0.000108539355908
+UniRef50_C1KYK6		1.50713337894e-05	0.00216175840173	0.00214668706794
+UniRef50_A6TFY7	Putative transport protein KPN78578_40470	0.00306216067479	0.00121780037178	-0.00184436030301
+UniRef50_P29914	NADH quinone oxidoreductase chain 2	0.00113355967505	0.000698912890394	-0.000434646784656
+UniRef50_D6T008		1.41876130355e-05	3.3013080963e-05	1.88254679275e-05
+UniRef50_UPI0002F8DE8C	hypothetical protein	3.62073074741e-06	5.18592863425e-06	1.56519788684e-06
+UniRef50_T1XSF4	Glycine betaine transporter	0.0163029505604	0.00439381121466	-0.0119091393457
+UniRef50_V4YQV8	ABC transporter, substrate binding protein, PQQ dependent alcohol dehydrogenase system	9.35219359287e-07	6.59690003539e-06	5.6616806761e-06
+UniRef50_UPI00035E0900	hypothetical protein	1.36255076262e-05	1.26011150893e-05	-1.0243925369e-06
+UniRef50_Q2P6N2	Ribonuclease PH	5.28346737517e-05	0.00334582197184	0.00329298729809
+UniRef50_Q7CRQ0	Uronate dehydrogenase	1.03453218924e-05	2.91473906905e-05	1.88020687981e-05
+UniRef50_Q5DQH5		0.000298999396391	0.000169155317598	-0.000129844078793
+UniRef50_K0S2B3		1.24288299161e-05	7.97898855557e-05	6.73610556396e-05
+UniRef50_B9GCH9	Urease	2.56081055264e-06	3.09287380736e-05	2.8367927521e-05
+UniRef50_UPI00036688D0	hypothetical protein, partial	1.23665511716e-05	2.19155943323e-05	9.5490431607e-06
+UniRef50_UPI0002893A41	S adenosylmethionine synthetase	3.7327361855e-06	7.19002489107e-06	3.45728870557e-06
+UniRef50_W9DWH3		2.97212795959e-05	1.859095438e-05	-1.11303252159e-05
+UniRef50_M9RBV9	Putative lipoprotein	4.41649584664e-06	3.79441769438e-06	-6.2207815226e-07
+UniRef50_B2IKB4	Xylose isomerase domain protein TIM barrel	0.00686591442299	0.00204013888444	-0.00482577553855
+UniRef50_Q9HXI2	Protein translocase subunit SecF	0.00120589144382	0.000651117021025	-0.000554774422795
+UniRef50_A6LX99	Carbohydrate binding family V XII	0.00026029438181	0.0011352068553	0.00087491247349
+UniRef50_UPI00036AC2B6	MULTISPECIES	6.49018045431e-06	0.000645214290459	0.000638724110005
+UniRef50_C6SPQ0		0.00410792715755	0.00200570946546	-0.00210221769209
+UniRef50_P20901	Citrate synthase	4.37635748097e-05	7.57779212334e-05	3.20143464237e-05
+UniRef50_B6IS79	Tetratricopeptide TPR_2 	1.78033394172e-06	5.23031418574e-06	3.44998024402e-06
+UniRef50_B2A466	Chromosome segregation ATPase	6.42766003199e-06	2.0853837516e-05	1.4426177484e-05
+UniRef50_Q9RX51	Malto oligosyltrehalose trehalohydrolase	7.37277322014e-05	0.02066421845	0.0205904907178
+UniRef50_B7HXK9	ThiJ pfpI family protein	2.00102803538e-05	6.21795408439e-05	4.21692604901e-05
+UniRef50_UPI000465E8C1	hypothetical protein	6.82262721579e-06	5.98594092946e-05	5.30367820788e-05
+UniRef50_UPI00041A9154	hypothetical protein	1.53355447492e-05	6.00401530763e-06	-9.33152944157e-06
+UniRef50_H5WKM1	TRAP type mannitol chloroaromatic compound transport system, large permease component	4.58660207468e-06	1.02370750727e-05	5.65047299802e-06
+UniRef50_T1ZCJ6	Transcriptional regulator	0.00683872281672	0.000891076048015	-0.0059476467687
+UniRef50_UPI0002658616	PREDICTED	5.44914868452e-06	8.53886407905e-06	3.08971539453e-06
+UniRef50_UPI000381514D	hypothetical protein	1.79318855137e-06	1.75808876855e-05	1.57876991341e-05
+UniRef50_G4R209	Bacterial regulatory s, gntR family protein	0.000800116488285	0.00024712694996	-0.000552989538325
+UniRef50_Q2YVV9	Initiation control protein YabA	0.00456937495309	0.00053693946399	-0.0040324354891
+UniRef50_A3P3G4	Monooxygenase, luciferase family	0.00157239309707	0.00607328208982	0.00450088899275
+UniRef50_I3THN6	Binding protein dependent transport systems inner membrane component	0.00310029789961	0.00113621486657	-0.00196408303304
+UniRef50_F0VFF5	NLI interacting factor like phosphatase domain containing protein	1.99255694968e-06	2.69818826151e-05	2.49893256654e-05
+UniRef50_Q5XDZ5		0.00353699521576	0.00267174495306	-0.0008652502627
+UniRef50_UPI0000379B07	hypothetical protein	0.00128116530333	0.0020450329774	0.00076386767407
+UniRef50_UPI00038112F6	hypothetical protein	9.58621667602e-05	0.000217047230001	0.000121185063241
+UniRef50_Q38XG4	3 oxoacyl [acyl carrier protein] synthase 3	0.00560405357246	0.0030832132846	-0.00252084028786
+UniRef50_UPI00035F1073	hypothetical protein	1.54420326935e-05	3.77507874115e-05	2.2308754718e-05
+UniRef50_R6HUH5		9.15580637882e-06	1.67993042654e-05	7.64349788658e-06
+UniRef50_P20162	Lipopolysaccharide export system ATP binding protein LptB 	3.42231861132e-05	9.16384496506e-05	5.74152635374e-05
+UniRef50_D5V8H6	Phosphomethylpyrimidine kinase	0.000552289739372	0.00164836223329	0.00109607249392
+UniRef50_U4TCC4	Putative ABC transport system, membrane domain protein	0.000100970296962	4.24728640517e-05	-5.84974329103e-05
+UniRef50_UPI00028A344D	group 1 glycosyl transferase	3.03323436206e-06	7.40285640383e-06	4.36962204177e-06
+UniRef50_F4DQ72	TRAP T family transporter periplasmic binding protein	0.0163914430527	0.00284093990794	-0.0135505031448
+UniRef50_B2FK26	UvrABC system protein C	0.000928620324289	0.000753066132552	-0.000175554191737
+UniRef50_UPI0004672B58	glycolate oxidase iron sulfur subunit	1.33759029507e-05	5.52194623384e-05	4.18435593877e-05
+UniRef50_Q2NFX3	50S ribosomal protein L6	0.000946676341057	0.000344727671428	-0.000601948669629
+UniRef50_Q890U0	Butyrate kinase	0.000535450359444	0.00412890776021	0.00359345740077
+UniRef50_K0MYD7	PTS system maltose and glucose specific EIICB component	0.000494660353784	0.000625593814965	0.000130933461181
+UniRef50_P0AEL2	Formate dehydrogenase, cytochrome b556 subunit	0.00101552134653	0.002748898554	0.00173337720747
+UniRef50_P26418	Flagellar motor switch protein FliM	0.0026643008724	0.00101290041313	-0.00165140045927
+UniRef50_E4Q4K1	Transketolase domain containing protein	1.15309062367e-05	0.00306461837327	0.00305308746703
+UniRef50_UPI00047AC8D4	hypothetical protein, partial	0.000235167555767	0.000636440660992	0.000401273105225
+UniRef50_P55980	Cytotoxicity associated immunodominant antigen	0.000172201382048	0.00376872836146	0.00359652697941
+UniRef50_D8JGS8	Acyl coenzyme A synthetases AMP  acid ligase	0.00017541388266	0.00447578750747	0.00430037362481
+UniRef50_B9JUC8	50S ribosomal protein L19	0.000621798491844	0.021987453924	0.0213656554322
+UniRef50_F9LQU4	GA module	0.00147859366739	0.000199877396822	-0.00127871627057
+UniRef50_H2JJ51	ABC type sugar transport system, periplasmic component	0.000624422001147	0.00155695303344	0.000932531032293
+UniRef50_UPI0004699EDF	membrane protein	9.19093577645e-05	4.10418656952e-05	-5.08674920693e-05
+UniRef50_P11864		0.000682708992948	0.00134488127499	0.000662172282042
+UniRef50_P11865		0.000865714569853	0.000995158002212	0.000129443432359
+UniRef50_UPI0004769652	hypothetical protein	1.4336755179e-05	2.73751604251e-05	1.30384052461e-05
+UniRef50_V7D525	Plasmid stablization protein ParB	0.000136514167662	2.34463233671e-05	-0.000113067844295
+UniRef50_UPI00047B1BFE	hypothetical protein	4.46264057572e-06	0.000260129110054	0.000255666469478
+UniRef50_E4D4Y2		0.000262751268337	0.000842051686444	0.000579300418107
+UniRef50_Q3JNS9		0.000133884330964	0.000111844075917	-2.2040255047e-05
+UniRef50_G7SP01	RNA methyltransferase, TrmH family, group 3	0.00516954919903	0.00450714301426	-0.00066240618477
+UniRef50_UPI00037014EA	hypothetical protein	2.59028155949e-05	1.51935038755e-05	-1.07093117194e-05
+UniRef50_F3BU02		0.000116295926645	0.000176519422491	6.0223495846e-05
+UniRef50_UPI0003782B50	hypothetical protein	6.57519698428e-06	0.000156175431512	0.000149600234528
+UniRef50_T0UR47	Immunoreactive protein Se23.5	0.00483396161627	0.000900430925696	-0.00393353069057
+UniRef50_UPI00036E1232	hypothetical protein	3.44345458938e-05	0.000260600948924	0.00022616640303
+UniRef50_P37956	Spore photoproduct lyase	5.97618986696e-05	0.00140119876558	0.00134143686691
+UniRef50_UPI0003D02549	hypothetical protein P148_SR1C00001G0193	9.14355949142e-05	3.49863700411e-05	-5.64492248731e-05
+UniRef50_D6SE37		0.0127936422994	0.0020973798205	-0.0106962624789
+UniRef50_W4TLK1	Molybdopterin guanine dinucleotide biosynthesis protein	5.38180685637e-06	2.17521439071e-05	1.63703370507e-05
+UniRef50_UPI0003B75BA6	ribonuclease E	5.35540482193e-06	5.7626349029e-06	4.0723008097e-07
+UniRef50_Q8DWM8	Hypoxanthine guanine phosphoribosyltransferase	0.00739156066817	0.00277030711492	-0.00462125355325
+UniRef50_D3E0E5	Carbohydrate kinase	0.00457362725567	0.000550797070461	-0.00402283018521
+UniRef50_UPI000382ECE5	hypothetical protein	4.12056595105e-06	8.00567064787e-06	3.88510469682e-06
+UniRef50_Q5NLB9	Type III pantothenate kinase	0.00598425572461	0.00392081467099	-0.00206344105362
+UniRef50_H9UPU8	Ornithine decarboxylase	0.00138797794509	0.000637324316283	-0.000750653628807
+UniRef50_UPI000262887B	hypothetical protein	0.000152698143544	0.000143156185816	-9.541957728e-06
+UniRef50_UPI0003B5049A	glutamyl Q tRNA ligase	5.0859989265e-06	6.14164604566e-06	1.05564711916e-06
+UniRef50_UPI00035F2B7D	MULTISPECIES	1.69239504734e-05	2.60180949601e-05	9.0941444867e-06
+UniRef50_O67611	Acyl carrier protein	3.39744658308e-05	0.000573118266027	0.000539143800196
+UniRef50_P65399	Molybdopterin synthase catalytic subunit	0.000869418835581	0.000413030356916	-0.000456388478665
+UniRef50_UPI000349EE05	hypothetical protein	2.84232460033e-05	4.42233820718e-05	1.58001360685e-05
+UniRef50_Q5NGP7	Arabinose 5 phosphate isomerase KdsD	0.000687776103743	0.0106283097957	0.00994053369196
+UniRef50_W7VXE4		8.66601162e-05	2.21303622308e-05	-6.45297539692e-05
+UniRef50_W1DPU9	Sulfate permease	0.000186595647056	4.31591628636e-05	-0.000143436484192
+UniRef50_R7GVB9		4.17707168415e-05	0.0017761729254	0.00173440220856
+UniRef50_A6M390	Extracellular solute binding protein, family 1	0.00114373435193	0.00148794699609	0.00034421264416
+UniRef50_UPI0003674FBC	hypothetical protein	3.80295464487e-05	1.43563472677e-05	-2.3673199181e-05
+UniRef50_UPI00034FC6C5	PREDICTED	0.00157073495755	0.000651213335285	-0.000919521622265
+UniRef50_UPI00047034AE	hypothetical protein	8.30920752904e-06	3.05575409045e-05	2.22483333755e-05
+UniRef50_A0A023DK19		8.2039768735e-06	3.99670790511e-05	3.17631021776e-05
+UniRef50_A4VYZ8		0.000704485664454	0.00110055914979	0.000396073485336
+UniRef50_UPI00041B2B5D	hypothetical protein	1.33800869186e-05	1.85796767312e-05	5.1995898126e-06
+UniRef50_Q9RZ78		0.000291870609934	0.0325838212241	0.0322919506142
+UniRef50_D3E3Y1	Carbohydrate kinase PfkB family	0.00269331415551	0.00154760963909	-0.00114570451642
+UniRef50_J0J1A9		0.000282476263787	3.6707156532e-05	-0.000245769107255
+UniRef50_C3MH15	FAD dependent oxidoreductase	0.00105671716497	0.00065979223862	-0.00039692492635
+UniRef50_UPI00031B7DA5	hypothetical protein	4.74580212098e-05	2.58133475648e-05	-2.1644673645e-05
+UniRef50_Q3IUW1	Signal peptidase I	0.031370637953	0.00804321164022	-0.0233274263128
+UniRef50_UPI00046FFC4F	hypothetical protein	1.66977899995e-05	1.28837971418e-05	-3.8139928577e-06
+UniRef50_A7X169	Endonuclease MutS2	0.0196066244824	0.00575893687812	-0.0138476876043
+UniRef50_UPI000418D073	hypothetical protein	9.73170839904e-06	1.75758794626e-05	7.84417106356e-06
+UniRef50_B9K203		0.000134336650837	0.0078502862146	0.00771594956376
+UniRef50_UPI00046E6835	ATPase AAA, partial	8.39966328859e-06	5.13050095133e-05	4.29053462247e-05
+UniRef50_UPI000360D065	hypothetical protein	5.24731810741e-06	8.48491396957e-06	3.23759586216e-06
+UniRef50_P08065	Succinate dehydrogenase flavoprotein subunit	0.0212475081267	0.00658360059387	-0.0146639075328
+UniRef50_UPI00045EC07A	C4 dicarboxylate ABC transporter permease	4.26455167823e-05	1.65847410214e-05	-2.60607757609e-05
+UniRef50_UPI0002D91D3B	hypothetical protein	8.49493495021e-06	8.07074546283e-05	7.22125196781e-05
+UniRef50_Q47329	UDP glucose 6 dehydrogenase	0.000858294800496	0.000274200354057	-0.000584094446439
+UniRef50_G7M577	Polysaccharide biosynthesis protein	0.00057063454556	0.00113909318059	0.00056845863503
+UniRef50_UPI0003695A84	hypothetical protein	3.40745919661e-06	4.12610186037e-06	7.1864266376e-07
+UniRef50_D7G171		2.34829077274e-05	6.52633602589e-05	4.17804525315e-05
+UniRef50_UPI0003796517	hypothetical protein	2.18775193464e-06	2.33164308894e-06	1.438911543e-07
+UniRef50_UPI000462BF9A	acetyltransferase	3.01382116174e-05	6.70758170359e-05	3.69376054185e-05
+UniRef50_B7UZJ9	Transcriptional regulator MraZ	0.000540364558677	0.000538571498834	-1.793059843e-06
+UniRef50_A3DIH0	Intracellular exo alpha  L arabinofuranosidase	7.91375238722e-05	0.000739866164338	0.000660728640466
+UniRef50_Q28T47	Type III pantothenate kinase	9.61497765098e-05	4.60693623508e-05	-5.0080414159e-05
+UniRef50_UPI0004005113	antibiotic ABC transporter ATP binding protein	2.88645664355e-06	8.75823510855e-06	5.871778465e-06
+UniRef50_Q2L2H8	30S ribosomal protein S12	0.00420872488711	0.00526432343014	0.00105559854303
+UniRef50_A0A3H4	Glycine betaine transport system permease protein glycine betaine binding protein	0.00473168716278	0.00438722236346	-0.00034446479932
+UniRef50_D4GNJ8	Cell division protein ZapC	0.00268252843931	0.00162642602345	-0.00105610241586
+UniRef50_I0JEM4	Tn554 related transposase A	0.0081867226448	0.00198071624306	-0.00620600640174
+UniRef50_UPI000471CC86	C4 dicarboxylate ABC transporter substrate binding protein	3.08721668324e-05	6.72910838661e-06	-2.41430584458e-05
+UniRef50_F2JJH8	MATE efflux family protein	0.000251260932248	0.00102184150622	0.000770580573972
+UniRef50_P33696	UTP  glucose 1 phosphate uridylyltransferase	0.000312181500994	0.000252427381303	-5.9754119691e-05
+UniRef50_W0IWY4	Diguanylate cyclase	1.41496339625e-05	3.49943750612e-05	2.08447410987e-05
+UniRef50_Q7MHK1	Glutathione synthetase	0.00184097102953	0.00683058871325	0.00498961768372
+UniRef50_A7ZVR4		0.00108991257475	0.000273470160615	-0.000816442414135
+UniRef50_Q04GC3	Peptide chain release factor 2	0.00631072729797	0.00245048716305	-0.00386024013492
+UniRef50_A5UMV9	SsDNA binding protein	0.00440632802296	0.000798612381636	-0.00360771564132
+UniRef50_UPI00016A34A8	hypothetical protein	8.41916360891e-05	9.98477244106e-05	1.56560883215e-05
+UniRef50_Q0FMM6	Peptide ABC transporter, permease protein 	0.000107220316976	6.84786750653e-05	-3.87416419107e-05
+UniRef50_UPI0002DD3A3E	hypothetical protein	2.564827868e-06	1.05077288817e-05	7.9429010137e-06
+UniRef50_Q05755	Glutamate synthase [NADPH] large chain	1.17362357239e-06	1.68481138797e-06	5.1118781558e-07
+UniRef50_V7ZFF9	S methylmethionine permease	8.57273252495e-05	0.000441810187015	0.000356082861766
+UniRef50_UPI0003A4ECE6	2,5 diketo D gluconic acid reductase	5.1704642099e-06	8.24992128289e-06	3.07945707299e-06
+UniRef50_UPI0003632431	hypothetical protein, partial	4.30396635004e-05	2.34486597947e-05	-1.95910037057e-05
+UniRef50_X1G8H6	Marine sediment metagenome DNA, contig	1.09328797589e-05	0.000464078377622	0.000453145497863
+UniRef50_P45861		0.00516545488309	0.00414958312059	-0.0010158717625
+UniRef50_W5X2S2	GCN5 related N acetyltransferase	8.77308036352e-06	0.000196587916951	0.000187814836587
+UniRef50_UPI0004730E83	hypothetical protein, partial	2.01807574618e-05	4.76956682864e-05	2.75149108246e-05
+UniRef50_I7DFR8		0.00186359610009	0.000367614155849	-0.00149598194424
+UniRef50_M5PEW3	Peptide deformylase	1.44939763796e-05	2.38265177494e-05	9.3325413698e-06
+UniRef50_A6LXH7	D galactose binding periplasmic protein	0.000666796086508	0.00374530080559	0.00307850471908
+UniRef50_I6U0D0	Recombination factor protein RarA	0.00706462439946	0.000643156292659	-0.0064214681068
+UniRef50_F2ZJ87	Xanthine dehydrogenase, molybdopterin binding subunit	0.000488593589669	0.000243865345587	-0.000244728244082
+UniRef50_O68827	Chloramphenicol sensitive protein RarD	0.000424727588089	0.00031983758685	-0.000104890001239
+UniRef50_R4MXP6	PPE family protein	1.42201664571e-05	9.80437757135e-05	8.38236092564e-05
+UniRef50_E3GXP2	Phosphate ABC transporter substrate binding protein, PhoT family	0.00542133094708	0.001384335336	-0.00403699561108
+UniRef50_A3PPD1	Tripartite ATP independent periplasmic transporter, DctQ component	0.0030059536438	0.00169285565124	-0.00131309799256
+UniRef50_UPI000370C8AB	30S ribosomal protein S17	1.88580225148e-05	0.000243593165412	0.000224735142897
+UniRef50_Q180E4	Lon protease	1.49248026071e-06	5.90750029185e-06	4.41502003114e-06
+UniRef50_Q1QSI1	Guanylate kinase	0.00159402798536	1.45254142268e-05	-0.00157950257113
+UniRef50_D3HPI8		8.78659653246e-05	3.9665958339e-05	-4.82000069856e-05
+UniRef50_A5UM84	Predicted transcriptional regulator	0.00633105629086	0.000432170788082	-0.00589888550278
+UniRef50_W0RMS6	Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.000266877234584	0.00683373766498	0.0065668604304
+UniRef50_D3E4F1	Metallo beta lactamase superfamily protein	0.00296417880273	0.000210940503716	-0.00275323829901
+UniRef50_P0AFE9	NADH quinone oxidoreductase subunit M	0.00371848569902	0.00162902581483	-0.00208945988419
+UniRef50_UPI0003790B90	hypothetical protein	5.27752699103e-05	3.05896969956e-05	-2.21855729147e-05
+UniRef50_Q8CYM9		1.47005293631e-05	0.0028538616029	0.00283916107354
+UniRef50_L1J8E6		4.30281224173e-06	7.08470174153e-06	2.7818894998e-06
+UniRef50_UPI0004650E5C	hypothetical protein	4.63774736443e-06	3.38377515925e-05	2.92000042281e-05
+UniRef50_E6QIH1		0.000137906278467	0.00276026173784	0.00262235545937
+UniRef50_UPI00036AFD53	hypothetical protein	8.0520891536e-06	1.26569445116e-05	4.604855358e-06
+UniRef50_O25294	Cytosol aminopeptidase	8.95931935559e-05	0.00238819114931	0.00229859795575
+UniRef50_UPI0003797CF3	hypothetical protein	9.87742893972e-05	1.85687052136e-05	-8.02055841836e-05
+UniRef50_D6ZZR1		0.0011286554024	0.00136963694671	0.00024098154431
+UniRef50_P52999	Aspartate 1 decarboxylase	0.0277220728572	0.00112517414884	-0.0265968987084
+UniRef50_A3PGF4		0.00436213647065	0.000274287961482	-0.00408784850917
+UniRef50_Q2G4L5	20S proteasome, A and B subunits	0.0108578848856	0.00153620295261	-0.00932168193299
+UniRef50_UPI000347491F	hypothetical protein	2.84239783412e-06	4.10718026938e-06	1.26478243526e-06
+UniRef50_UPI000234F3A3	PREDICTED	1.16056675444e-05	5.9267410198e-06	-5.6789265246e-06
+UniRef50_V5E5C8	Cold shock like protein CspD	0.000116485488852	5.57045652811e-05	-6.07809235709e-05
+UniRef50_UPI000399E7E2	succinyl CoA	7.60498476012e-06	1.13858140991e-05	3.78082933898e-06
+UniRef50_A6LSY3	Glutamyl tRNA reductase	0.000191296986929	0.00158710086841	0.00139580388148
+UniRef50_B9KS20	Sulfate transporter	0.00299997776736	0.000603376378384	-0.00239660138898
+UniRef50_UPI00047C589B	hypothetical protein	3.76985388941e-05	5.9896055629e-05	2.21975167349e-05
+UniRef50_Q1IVX0	4 hydroxybenzoate polyprenyltransferase, putative	0.000162011154012	0.00297154361787	0.00280953246386
+UniRef50_Q8N9Z2	Coiled coil domain containing protein 71L	5.49526369223e-05	0.000138718082801	8.37654458787e-05
+UniRef50_P0AF49	UPF0047 protein YjbQ	0.000298817471956	0.00746628364228	0.00716746617032
+UniRef50_UPI00041F306E	hypothetical protein	6.76128964581e-06	6.04410446177e-06	-7.1718518404e-07
+UniRef50_Q1MPW7	Glutamate 1 semialdehyde 2,1 aminomutase	8.09790346541e-06	1.19060145757e-05	3.80811111029e-06
+UniRef50_F4DR22		0.00051562212206	0.000351652701464	-0.000163969420596
+UniRef50_UPI0003002FCB	hypothetical protein	1.85367447446e-05	1.52648487296e-06	-1.70102598716e-05
+UniRef50_V9VS67	Peptidase	1.38258308563e-06	2.66594762073e-05	2.52768931217e-05
+UniRef50_A0RC17	Xanthine phosphoribosyltransferase	0.0021214938077	0.0240460077578	0.0219245139501
+UniRef50_A6USH1	UPF0285 protein Mevan_1551	0.00322341183292	0.000199538314317	-0.0030238735186
+UniRef50_S1PBL6	Inner membrane protein yiaV	0.00144751323792	0.000947729049242	-0.000499784188678
+UniRef50_F9NYN9		6.28810414515e-06	1.67465848469e-05	1.04584807017e-05
+UniRef50_A6M320	Putative competence damage inducible protein	0.00207733092326	0.00174666633017	-0.00033066459309
+UniRef50_UPI000474352D	glyoxalase I, partial	0.000525028812531	0.000132045260154	-0.000392983552377
+UniRef50_A4WQQ4	Aminotransferase, class V	0.0015254632215	0.000857079650752	-0.000668383570748
+UniRef50_Q24X66	tRNA dimethylallyltransferase	1.80794811273e-05	1.17680862471e-05	-6.3113948802e-06
+UniRef50_R6FXN6	Pseudouridine synthase	0.000253839093847	0.00059588979608	0.000342050702233
+UniRef50_V5LNW1	Putative membrane protein 	7.54395132305e-06	9.19685235493e-06	1.65290103188e-06
+UniRef50_Q604U3	Ribonuclease HII	9.25800184316e-06	0.0061581455198	0.00614888751796
+UniRef50_UPI00030E8D28	multidrug ABC transporter ATP binding protein	4.50154188846e-06	2.15012811429e-05	1.69997392544e-05
+UniRef50_V9VWJ0		0.0258758330111	0.00124246051479	-0.0246333724963
+UniRef50_W2UZV9		1.37144025415e-05	5.87456300015e-05	4.503122746e-05
+UniRef50_UPI000476BCFC	hypothetical protein	0.00018897735194	0.00028142720318	9.244985124e-05
+UniRef50_Q9ZD73		2.8243917751e-05	3.59975966571e-05	7.7536789061e-06
+UniRef50_Q2NE10	Dihydroxy acid dehydratase	0.00343408382468	0.0019513606166	-0.00148272320808
+UniRef50_Q9HH09	Glutamine synthetase	8.38472134374e-06	1.40493582169e-05	5.66463687316e-06
+UniRef50_UPI00037460EB	hypothetical protein	2.48969642999e-05	9.25388514554e-06	-1.56430791544e-05
+UniRef50_L0A7I7		8.83744785083e-05	0.000953727354744	0.000865352876236
+UniRef50_K7EH66		2.94620714165e-06	3.69817170268e-05	3.40355098852e-05
+UniRef50_X2MI40	Thiamine ABC transporter permease	0.00361283303375	0.000788476424302	-0.00282435660945
+UniRef50_G0DVY7	Cell division protein FtsQ	0.000159276788545	0.00598791908997	0.00582864230142
+UniRef50_UPI0003A33C9F	peptidase S8	2.42465458775e-06	0.000325103487845	0.000322678833257
+UniRef50_UPI0003804693	hypothetical protein	4.72408571858e-05	4.14346738629e-06	-4.30973897995e-05
+UniRef50_UPI0002EF496B	hypothetical protein	3.53441768897e-06	1.20647517818e-05	8.53033409283e-06
+UniRef50_A3M585		6.91366279948e-05	0.00650563977741	0.00643650314942
+UniRef50_Q9HZ67	P protein	0.000317508176853	2.04429055021e-05	-0.000297065271351
+UniRef50_A6LWB2	Integral membrane sensor signal transduction histidine kinase	0.000522470425098	0.000625280971892	0.000102810546794
+UniRef50_UPI0004658FE1	hypothetical protein	2.90466168338e-05	0.00036101535063	0.000331968733796
+UniRef50_V9VUH1	Cation	0.0151170152447	0.00667974363675	-0.00843727160795
+UniRef50_E4C1B3		9.50766624436e-06	0.00146144954442	0.00145194187818
+UniRef50_UPI000377B5C3	hypothetical protein	2.80629261898e-05	0.000167271418867	0.000139208492677
+UniRef50_Q65RK2	Na H(+) antiporter NhaA	0.00245592189452	0.000967265544711	-0.00148865634981
+UniRef50_X6EE61		1.89335144391e-05	5.34824720326e-05	3.45489575935e-05
+UniRef50_F6R4Y2		3.11145864016e-05	1.7040219121e-05	-1.40743672806e-05
+UniRef50_O05118	Pyruvate kinase	0.00248564861444	0.000505603387725	-0.00198004522672
+UniRef50_K0B2D2		0.000461828611062	0.000941383200643	0.000479554589581
+UniRef50_UPI000468F174	hypothetical protein	0.00102636260309	0.000659476512507	-0.000366886090583
+UniRef50_A6GDL9		4.49094894686e-05	6.94979517607e-06	-3.79596942925e-05
+UniRef50_Q1M589	sn glycerol 3 phosphate import ATP binding protein UgpC 3	5.93328196096e-05	3.1250896433e-05	-2.80819231766e-05
+UniRef50_S5YIS8	ABC Fe+3 siderophore transporter, periplasmic substrate binding protein	3.29868838122e-05	2.08339869887e-05	-1.21528968235e-05
+UniRef50_UPI00026263A5	phytoene dehydrogenase	8.40154663413e-06	3.90736109577e-06	-4.49418553836e-06
+UniRef50_Q13RB8	Xylose isomerase	0.0112737833822	0.00164399149752	-0.00962979188468
+UniRef50_A9AB27	Diaminopimelate epimerase	5.25479722221e-06	1.51553622878e-05	9.90056506559e-06
+UniRef50_UPI0003709E94	hypothetical protein, partial	0.000240582935563	4.9523378201e-05	-0.000191059557362
+UniRef50_A5F642	Uracil phosphoribosyltransferase	3.44092368625e-05	8.48563658414e-05	5.04471289789e-05
+UniRef50_D8JGS2	Exporter	5.834404774e-05	0.00859732168187	0.00853897763413
+UniRef50_E0TPJ9	Histidine kinase	0.000220752040266	0.00634832297032	0.00612757093005
+UniRef50_A0A038GFN9	FKBP type peptidylprolyl isomerase	0.00194878767955	0.00256455650404	0.00061576882449
+UniRef50_M1GD04		1.21939042968e-05	1.70990295174e-05	4.9051252206e-06
+UniRef50_G8AIH3		6.68478508552e-05	0.00021335419498	0.000146506344125
+UniRef50_C9LS22		4.32684121844e-05	4.96266947444e-05	6.35828256e-06
+UniRef50_UPI0002626B19	4 alpha glucanotransferase	1.13133810379e-05	0.000481609638899	0.000470296257861
+UniRef50_Q216Y2	MaoC like dehydratase	1.23779016053e-05	1.5124731484e-05	2.7468298787e-06
+UniRef50_A3PHP1	Abortive infection protein	0.0146437054279	0.00344210097937	-0.0112016044485
+UniRef50_UPI0003D0BA23	PREDICTED	3.0425490927e-05	4.14691333181e-05	1.10436423911e-05
+UniRef50_F4FLP5	O antigen polymerase	0.00618519540379	0.00254278516302	-0.00364241024077
+UniRef50_A6LZN7		0.000108994991968	0.000975009066972	0.000866014075004
+UniRef50_C0ZPK5	ATP dependent zinc metalloprotease FtsH	2.48890006064e-06	9.65424258301e-06	7.16534252237e-06
+UniRef50_B1W3Y6	Adenylate kinase	7.70891120911e-06	3.73230302478e-05	2.96141190387e-05
+UniRef50_Q8RE31	Adenylate kinase	9.19787210755e-06	2.74381572548e-05	1.82402851472e-05
+UniRef50_V8LZ20	Ammonia permease	0.00817555658577	0.000287763355251	-0.00788779323052
+UniRef50_F7ZMV0	ABC transporter ATP binding protein	0.00071539349499	0.00173951458493	0.00102412108994
+UniRef50_Q9LHH7	Bifunctional protein FolD 2	0.00073347406578	4.76349751929e-06	-0.000728710568261
+UniRef50_N8YXS0		0.00065686189211	0.00627042719338	0.00561356530127
+UniRef50_M1MEC2	Extracellular solute binding protein, family 1	0.00109612953218	0.00179712117905	0.00070099164687
+UniRef50_U2PH02		3.53950228934e-06	1.32182989304e-05	9.67879664106e-06
+UniRef50_X2HH54	A G specific adenine glycosylase	0.000119710144452	0.00187682238555	0.0017571122411
+UniRef50_Q8DXK8	Prophage LambdaSa2, PblB, putative	0.000203889996048	0.000258296137206	5.4406141158e-05
+UniRef50_Q3AWX1	Probable malate	3.16181632351e-06	5.01978972251e-06	1.857973399e-06
+UniRef50_D5VFT5	Acetolactate synthase, large subunit, biosynthetic type	0.0158139351144	0.00317230493237	-0.012641630182
+UniRef50_P37003		0.00122306837145	0.000998176201586	-0.000224892169864
+UniRef50_UPI00036B4081	hypothetical protein	1.15762863075e-05	2.47088444175e-05	1.313255811e-05
+UniRef50_C1DHH3		4.04751759926e-05	0.000238308761295	0.000197833585302
+UniRef50_Q2Y752	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.20777703019e-05	0.000327353424095	0.000315275653793
+UniRef50_P37007		0.00296582860074	0.00135331032166	-0.00161251827908
+UniRef50_L7WW34	Multidrug resistance protein	0.0104306902786	0.00475922135138	-0.00567146892722
+UniRef50_Q02UC6	Anaerobically induced outer membrane porin OprE	0.00117563791498	0.00014096262778	-0.0010346752872
+UniRef50_A1ADX2	GDP mannose pyrophosphatase NudK	0.00118490769114	0.000664302270065	-0.000520605421075
+UniRef50_N5A969		2.45289240675e-05	3.03233209257e-05	5.7943968582e-06
+UniRef50_D6ENY0	AMP binding domain containing protein	0.000120290144827	0.000101960624042	-1.8329520785e-05
+UniRef50_UPI0004673990	histidinol dehydrogenase	0.000243557186622	0.000235832728678	-7.724457944e-06
+UniRef50_K1ZZL6		5.30752693842e-05	5.94183811299e-05	6.3431117457e-06
+UniRef50_C6SPL1		0.0121840179327	0.00254851034797	-0.00963550758473
+UniRef50_C6SPL2		0.00342692034797	0.00062766371825	-0.00279925662972
+UniRef50_UPI00038FE8C9	Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp	2.17503033443e-05	4.59487378327e-06	-1.7155429561e-05
+UniRef50_X5Y9C9	ABC transporter substrate binding protein	6.27135269102e-06	2.83491299152e-05	2.20777772242e-05
+UniRef50_B5SHZ2	Segregation and condensation protein a	0.000573453511231	0.00435962938463	0.0037861758734
+UniRef50_UPI0004029835	hypothetical protein	1.16996238335e-05	1.80216353406e-05	6.3220115071e-06
+UniRef50_C5BKL9	Chromosomal replication initiator protein DnaA	0.00402144621575	0.00144073785693	-0.00258070835882
+UniRef50_U5MW71	Cardiolipin synthase Cls	0.000518041488782	0.000722942080891	0.000204900592109
+UniRef50_J8G6B9	TQXA domain containing protein	8.05006397902e-07	1.00960803821e-06	2.04601640308e-07
+UniRef50_UPI00036DF70A	hypothetical protein	2.04044188162e-06	4.0375014268e-06	1.99705954518e-06
+UniRef50_D3QCJ5	ATP dependent RNA helicase YqfR	0.0124607274181	0.00455180998333	-0.00790891743477
+UniRef50_B2SXV7	Lysine  tRNA ligase	3.47557862702e-06	5.83142458113e-05	5.48386671843e-05
+UniRef50_G8PVZ6	D,D dipeptide transport system permease protein DdpC	0.0097865678183	0.000960357166001	-0.0088262106523
+UniRef50_X1UWS6	Marine sediment metagenome DNA, contig	3.02649245815e-05	3.90694456633e-05	8.8045210818e-06
+UniRef50_A6LVP9	Phage replisome organizer, putative	0.000993154060413	0.00398848061577	0.00299532655536
+UniRef50_UPI00041E91C7	threonine dehydratase	8.7564914624e-06	1.39110560528e-05	5.1545645904e-06
+UniRef50_Q0BUK0	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.0114687238813	0.0130503529593	0.001581629078
+UniRef50_P95786	ATP synthase subunit delta	0.00562822789907	0.00136700229036	-0.00426122560871
+UniRef50_H5NJS4	FabA like domain protein	1.41104766916e-05	4.90674763159e-05	3.49569996243e-05
+UniRef50_UPI0003ADCC45	PREDICTED	1.09514416056e-05	3.35712269313e-06	-7.59431891247e-06
+UniRef50_Q2FD99	Multidrug efflux transport protein	0.000187028565907	0.00639225490265	0.00620522633674
+UniRef50_M9VIC2	L xylulose 5 phosphate 3 epimerase	0.000303714999663	0.00532543757074	0.00502172257108
+UniRef50_P39374		0.00288683012507	0.000213739472998	-0.00267309065207
+UniRef50_A8LAX8		1.28648754386e-05	3.34107640361e-05	2.05458885975e-05
+UniRef50_V6DLJ7	Putative phage protein	0.000267729666102	0.000101160958787	-0.000166568707315
+UniRef50_UPI000440D7F2	PREDICTED	3.41646690317e-06	2.4436089507e-06	-9.7285795247e-07
+UniRef50_B7VHY7	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.1354159197e-05	6.11812722406e-06	-1.52360319729e-05
+UniRef50_D1GN04	Phage protein	0.00291450455315	0.000418888943548	-0.0024956156096
+UniRef50_A4WV88	2 keto 3 deoxygluconate kinase	0.000826995344701	0.000420142421617	-0.000406852923084
+UniRef50_F0JTZ1	DNA binding transcriptional activator, co regulator with RcsB	0.000256212209626	0.000398179827223	0.000141967617597
+UniRef50_UPI000395D3CA	PREDICTED	1.79652920158e-05	0.000463828208591	0.000445862916575
+UniRef50_A3NI78		0.00418015609419	0.000435120559719	-0.00374503553447
+UniRef50_K7SGE5	Glycosyltransferase, group 1 family protein	0.000815820802931	0.00471336550744	0.00389754470451
+UniRef50_C5BM46	TRAP transporter, DctQ family protein	0.0133367132723	0.000729328352558	-0.0126073849197
+UniRef50_Q9RYQ8	Acyl CoA dehydrogenase, putative	0.000539568342021	0.0419661549045	0.0414265865625
+UniRef50_P0AF25	Ribonucleotide monophosphatase NagD	0.00168537888368	0.000708131759052	-0.000977247124628
+UniRef50_Q5LTY4	ArsC family protein	7.18560968825e-05	5.5754036328e-05	-1.61020605545e-05
+UniRef50_UPI0004649E38	hypothetical protein	2.57878831719e-05	4.40966683833e-05	1.83087852114e-05
+UniRef50_M9R9I6	RNA polymerase sigma 32 factor 2	0.00739113598218	0.00471598434767	-0.00267515163451
+UniRef50_UPI00029AA773	3 deoxy D manno octulosonic acid  8 phosphate synthase	0.000114712130716	7.6348011262e-05	-3.8364119454e-05
+UniRef50_C2ZFP3	Acetyl CoA acetyltransferase	0.000153657797359	0.0244902886139	0.0243366308165
+UniRef50_D6SDB9	Toxin, beta grasp domain protein	0.00890084944403	0.0010791208446	-0.00782172859943
+UniRef50_W8EU13	Dihydrolipoyl dehydrogenase	0.0136725955808	0.0047489099421	-0.0089236856387
+UniRef50_A3N6S5	Transcriptional regulator, LysR family	0.000125689008493	0.000201352299003	7.566329051e-05
+UniRef50_UPI0003B6C781	amidohydrolase	1.79316354216e-05	8.16734733007e-06	-9.76428809153e-06
+UniRef50_UPI0003AF0828	PREDICTED	1.78158442219e-05	0.00042094859072	0.000403132746498
+UniRef50_UPI0004756B1C	6 phospho beta glucosidase	3.83930066134e-06	8.45001184073e-06	4.61071117939e-06
+UniRef50_A0A018Y1M8	Glycogen branching enzyme	0.00402553145186	0.000467228864198	-0.00355830258766
+UniRef50_W7VQX9	Spermidine putrescine binding periplasmic protein	2.70715842294e-05	1.07248643401e-05	-1.63467198893e-05
+UniRef50_I6TQG8	Signal peptidase I	0.00496612071465	0.000768355905256	-0.00419776480939
+UniRef50_G7TCM8	ParB family protein	0.000288510949591	6.45906084216e-05	-0.000223920341169
+UniRef50_Q48768	Chemotaxis protein CheA	6.29143314804e-05	0.00289186411327	0.00282894978179
+UniRef50_UPI0003B44FBC	N acetyl anhydromuranmyl L alanine amidase, partial	5.395022779e-05	0.000131868292806	7.7918065016e-05
+UniRef50_UPI000262A813	sulfate ABC transporter permease	6.04724718665e-05	0.000110189467331	4.97169954645e-05
+UniRef50_A6VCD4		0.000665643639175	0.000664732343474	-9.11295701e-07
+UniRef50_G8V3H8	FecCD transport family protein	0.0102188448613	0.00525309581752	-0.00496574904378
+UniRef50_UPI0003A147C5	glutamate dehydrogenase	8.03227697133e-06	2.30453977698e-05	1.50131207985e-05
+UniRef50_H8H2N8	DNA polymerase III, beta subunit	0.000963707177918	0.0711126262926	0.0701489191147
+UniRef50_K5YNY1		7.242848099e-05	1.23590478075e-05	-6.00694331825e-05
+UniRef50_UPI000255C1EB	DNA 3 methyladenine glycosylase I	1.99033744418e-05	5.63166823913e-05	3.64133079495e-05
+UniRef50_A7EM78	ATP dependent RNA helicase dbp9	5.55363343528e-06	6.55863359958e-06	1.0050001643e-06
+UniRef50_F3CRF8		0.00116748243974	0.00248592628306	0.00131844384332
+UniRef50_A6LUT7	Zn dependent hydrolase of the beta lactamase fold like protein	0.000147840465605	0.00134658211377	0.00119874164816
+UniRef50_D3QFY2		0.000513854190345	0.00019921189645	-0.000314642293895
+UniRef50_B2RIE4	Ribosomal RNA small subunit methyltransferase H	5.81187305735e-06	0.00486725458718	0.00486144271412
+UniRef50_Q5HN64		0.00642874867544	0.00171850864942	-0.00471024002602
+UniRef50_F7Y3N0	Secretion protein HlyD family protein	0.00109296805086	0.000160352962103	-0.000932615088757
+UniRef50_Q2FDM8	HTH type transcriptional regulator ArcR	0.0246026376756	0.0142134125283	-0.0103892251473
+UniRef50_D8JH13		0.000298500709782	0.00684154782696	0.00654304711718
+UniRef50_F8UHZ1	Sulfide	0.0011742369025	0.000208771585387	-0.000965465317113
+UniRef50_UPI0002D3C80C	hypothetical protein	3.58820460678e-06	2.4892462434e-05	2.13042578272e-05
+UniRef50_UPI0003B545B7	UDP N acetylglucosamine 2 epimerase	6.08270801282e-06	2.89770844998e-05	2.2894376487e-05
+UniRef50_A4VWB1	Predicted membrane protein	4.53443194446e-05	3.05938418067e-05	-1.47504776379e-05
+UniRef50_UPI0002B4270F	PREDICTED	0.000168179136268	4.89175130106e-05	-0.000119261623257
+UniRef50_Q97G69	Glycerol 3 phosphate acyltransferase	0.000599570586174	0.0021881812892	0.00158861070303
+UniRef50_UPI00037918AC	hypothetical protein	1.56336080484e-05	2.38983700578e-05	8.2647620094e-06
+UniRef50_A0A024KDL9		0.000287355372835	0.000153415901025	-0.00013393947181
+UniRef50_UPI000470E44E	hypothetical protein	2.60899634921e-05	8.63793585826e-06	-1.74520276338e-05
+UniRef50_M1P9T3		0.000207352964281	6.91424110136e-05	-0.000138210553267
+UniRef50_UPI000418EAD6	hypothetical protein	3.93302952453e-05	2.49799746551e-05	-1.43503205902e-05
+UniRef50_I6SU88	Penicillin binding protein 2B	0.00490502608904	0.00215356450517	-0.00275146158387
+UniRef50_I6T801	Endoglucanase	0.00483942552682	0.000711791939924	-0.0041276335869
+UniRef50_F9YWL2	Transport system permease protein	0.000102857217666	0.00632221446914	0.00621935725147
+UniRef50_U6LU16		2.99125628559e-06	3.02849965665e-05	2.72937402809e-05
+UniRef50_UPI00047E902E	Fe3+ siderophore ABC transporter permease	5.50677080713e-06	2.75816222756e-05	2.20748514685e-05
+UniRef50_F6ZM80		6.0773025101e-05	7.31089157469e-06	-5.34621335263e-05
+UniRef50_W2CJ91		2.00039967522e-05	0.000121616401369	0.000101612404617
+UniRef50_I3TNK1	GNAT family acetyltransferase TIGR03103	0.000146411681904	0.000488042327123	0.000341630645219
+UniRef50_F2AE33		0.00140877551229	0.000646605775422	-0.000762169736868
+UniRef50_Q9CIV8	PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK	0.000503884180492	0.00202974458268	0.00152586040219
+UniRef50_UPI0004138F31	Fur family transcriptional regulator	4.43514531505e-05	0.000105423149655	6.10716965045e-05
+UniRef50_O31714	1 phosphofructokinase	1.05632353205e-05	0.00148515284581	0.00147458961049
+UniRef50_C1F5G2	GAF domain GGDEF domain protein	4.99639616826e-06	4.2471606233e-05	3.74752100647e-05
+UniRef50_UPI000440DE53	PREDICTED	3.13519165916e-06	2.21298897714e-06	-9.2220268202e-07
+UniRef50_M4UDQ5	Quinone oxidoreductase	0.000896166719044	0.000484549952788	-0.000411616766256
+UniRef50_R1F8B2		1.17100883226e-05	7.90601864219e-06	-3.80406968041e-06
+UniRef50_U4JVB3		8.1297663707e-06	9.83469674759e-06	1.70493037689e-06
+UniRef50_P77463	Probable D,D dipeptide transport system permease protein DdpC	0.00386060121401	0.000671362135453	-0.00318923907856
+UniRef50_UPI00023773E6	hemolysin type calcium binding domain containing protein, partial	3.44521611529e-06	9.45483523447e-06	6.00961911918e-06
+UniRef50_UPI000309FDCA	hypothetical protein	3.89830686277e-06	4.05441485061e-05	3.66458416433e-05
+UniRef50_U5NMM5		0.000747313619048	0.00163586108529	0.000888547466242
+UniRef50_P45600	HTH type transcriptional regulator CysB	0.0022880246696	0.000802932501237	-0.00148509216836
+UniRef50_P36566	Protein SmtA	0.00106639888164	0.00389042134346	0.00282402246182
+UniRef50_UPI0001FFE514	pyruvate phosphate dikinase PEP pyruvate  binding protein, partial	5.47035358623e-06	0.000188407278137	0.000182936924551
+UniRef50_UPI0004634978	hypothetical protein, partial	3.56527897935e-05	0.000151498993015	0.000115846203222
+UniRef50_UPI00036938AE	hypothetical protein	3.71562409899e-05	1.06390900165e-05	-2.65171509734e-05
+UniRef50_E2NTP5		0.00391956612381	0.000927322011325	-0.00299224411248
+UniRef50_UPI000380D55B	hypothetical protein	9.19907442685e-06	3.89488133843e-05	2.97497389574e-05
+UniRef50_U5FQ27		8.64665415698e-05	5.66477011024e-05	-2.98188404674e-05
+UniRef50_K0K215	Luciferase like monooxygenase	0.000202586398316	0.0300954925315	0.0298929061332
+UniRef50_UPI000421309B	siroheme synthase	7.33527455851e-05	6.880971045e-06	-6.64717745401e-05
+UniRef50_E9AEM7	Putative proteophosphoglycan ppg3	4.85421032899e-06	4.18494245524e-05	3.69952142234e-05
+UniRef50_M2PFD7		3.41317859517e-05	0.000191614609346	0.000157482823394
+UniRef50_Q9RTU0	Potassium uptake protein KtrA	0.00040735898078	0.0450148331134	0.0446074741326
+UniRef50_Q9RUF3	Methionine  tRNA ligase	2.91040293157e-06	0.0316402133283	0.0316373029254
+UniRef50_V4MMB9		6.47914434567e-06	5.78734858769e-06	-6.9179575798e-07
+UniRef50_Q73RR6	Formate  tetrahydrofolate ligase	3.2407179485e-05	0.00388401578268	0.00385160860319
+UniRef50_P12995	Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.00346897489807	0.00531547340258	0.00184649850451
+UniRef50_UPI00026CCAA9	ferripyochelin binding protein	3.06402875023e-05	3.05485899378e-05	-9.16975645e-08
+UniRef50_A6LST0	Regulatory protein, LacI	0.000292820640156	0.000545469749026	0.00025264910887
+UniRef50_A1U1T6	Peptidase S49	0.00062886197331	0.000759556131951	0.000130694158641
+UniRef50_UPI0003B4CA49	ribonuclease J	5.83655004914e-05	6.51235526882e-05	6.7580521968e-06
+UniRef50_D9WJL5		0.00020772204788	0.000147865544518	-5.9856503362e-05
+UniRef50_P37675	2,3 diketo L gulonate TRAP transporter large permease protein YiaN	0.00649286444955	0.000966828982054	-0.0055260354675
+UniRef50_UPI000262CC40	23S rRNA pseudouridine synthase D	1.83443521967e-05	1.02230618048e-05	-8.1212903919e-06
+UniRef50_C1PH90	Pyridoxal dependent decarboxylase	0.0101461776785	0.00421452362488	-0.00593165405362
+UniRef50_UPI000399117C	PREDICTED	5.00019400421e-05	0.000144692362186	9.46904221439e-05
+UniRef50_G8VJM5		0.000797505610247	0.00815197883274	0.00735447322249
+UniRef50_UPI0003B5627F	RNA polymerase subunit sigma 24	0.00029384821392	0.000109469548254	-0.000184378665666
+UniRef50_D6ZGK4		5.50085365764e-06	2.44433744621e-05	1.89425208045e-05
+UniRef50_E2Q4D8	IolC protein	0.000114737382625	0.0059806052673	0.00586586788468
+UniRef50_Q5HRK7	30S ribosomal protein S12	0.0166149349375	0.00594017351161	-0.0106747614259
+UniRef50_B2JLW6	ABC transporter related	0.00015428582651	0.000270519119271	0.000116233292761
+UniRef50_D2J9T7		0.00417406764977	0.00295044381471	-0.00122362383506
+UniRef50_V9C4R9	PF12266 family protein	0.000174099792422	5.63037539161e-05	-0.000117796038506
+UniRef50_Q8Y1I2	3 octaprenyl 4 hydroxybenzoate carboxy lyase	0.000846843372435	0.00022095077733	-0.000625892595105
+UniRef50_M6A924	Winged helix turn helix	4.29335394827e-05	0.00371030422315	0.00366737068367
+UniRef50_A4WZ94		0.00175850026736	0.00103651950466	-0.0007219807627
+UniRef50_X0ZU83	Marine sediment metagenome DNA, contig	3.22509832835e-05	3.80702539354e-05	5.8192706519e-06
+UniRef50_M2QQT8		0.000153159082791	0.000146933824448	-6.225258343e-06
+UniRef50_UPI00037EEFBB	hypothetical protein	5.82229385628e-06	2.48150709882e-05	1.89927771319e-05
+UniRef50_Q49Z00	Redox sensing transcriptional repressor Rex	0.00936861016053	0.00107122336261	-0.00829738679792
+UniRef50_T1YC99	8 amino 7 oxononanoate synthase	0.00983946986161	0.00368036399972	-0.00615910586189
+UniRef50_UPI0004633377	hypothetical protein	3.87266539502e-05	5.24846485307e-05	1.37579945805e-05
+UniRef50_L7WXU0		0.0199212156817	0.004661562451	-0.0152596532307
+UniRef50_UPI000348E813	beta lactamase	1.57045989844e-05	2.96570404935e-05	1.39524415091e-05
+UniRef50_Q1IY10	DNA internalization related competence protein ComEC Rec2	5.01531428967e-05	0.00962508756203	0.00957493441913
+UniRef50_UPI0003683EEF	acetolactate synthase	9.06639723919e-05	0.000528301432148	0.000437637459756
+UniRef50_X5FIX0	Two component response regulator and GGDEF family protein YeaJ	4.8764613614e-06	7.77283057189e-06	2.89636921049e-06
+UniRef50_P21829	Pyridoxal phosphate phosphatase YbhA	0.0038882362494	0.00306401598738	-0.00082422026202
+UniRef50_Q8NZK5	Immunogenic secreted protein homologue	0.000410322606756	0.000238800570243	-0.000171522036513
+UniRef50_H3WHC1	Cadmium resistance transporter family protein	0.000555232927744	0.00104724042999	0.000492007502246
+UniRef50_H8GRT7		2.4405940899e-05	0.000292885012368	0.000268479071469
+UniRef50_UPI00047B354D	hypothetical protein	1.85929180571e-05	2.42899561817e-05	5.6970381246e-06
+UniRef50_B0F658	Major ampullate spidroin 1 locus 3 	1.02169521309e-05	0.000176896047362	0.000166679095231
+UniRef50_P95781	8 oxo dGTP diphosphatase	0.00703153309441	0.00471983124184	-0.00231170185257
+UniRef50_T1Z4R2		0.00565461334667	0.000967458493678	-0.00468715485299
+UniRef50_UPI00046A4AB7	catalase	6.2029491269e-06	1.03181473401e-05	4.1151982132e-06
+UniRef50_W7WTG1	CHAT domain protein	6.86807246068e-05	6.93917169686e-05	7.109923618e-07
+UniRef50_X5F552		0.000458485006708	0.00122434825964	0.000765863252932
+UniRef50_UPI0002BC4B55	transposase	6.13196038774e-06	2.00393594593e-05	1.39073990716e-05
+UniRef50_D4HCU3	Pyruvate kinase	0.000834681720869	0.00809724062397	0.0072625589031
+UniRef50_UPI000363409C	hypothetical protein	0.000904970848426	9.27312365861e-05	-0.00081223961184
+UniRef50_Q7CWA6		2.65304992896e-05	1.17676869848e-05	-1.47628123048e-05
+UniRef50_Q0VQR4	Na translocating NADH quinone reductase subunit E	0.000635375966967	0.000125912413773	-0.000509463553194
+UniRef50_UPI00037A1823	CobW	2.17677336617e-05	1.07192669073e-05	-1.10484667544e-05
+UniRef50_UPI0003900E45	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.68734817934e-05	1.23456312802e-05	-4.5278505132e-06
+UniRef50_P0DC16	Tagatose 1,6 diphosphate aldolase 2	3.47165292298e-05	4.43263544769e-05	9.6098252471e-06
+UniRef50_C1CUZ2		8.8611734477e-05	0.0458238312724	0.0457352195379
+UniRef50_E3EIE7	Phospholipase carboxylesterase family protein	0.000487887521605	0.00101043123665	0.000522543715045
+UniRef50_E4FBI4		0.000359159417012	0.00016981787626	-0.000189341540752
+UniRef50_A8LTL4	Resolvase domain protein	0.00535240764636	0.00048373108708	-0.00486867655928
+UniRef50_Q9KT93	Probable lactoylglutathione lyase	9.13608899915e-05	2.64915315698e-05	-6.48693584217e-05
+UniRef50_UPI000169A652	dihydroxy acid dehydratase, partial	0.000442929144991	0.00172922948935	0.00128630034436
+UniRef50_N9ZY49		1.50444566663e-05	9.96889077879e-06	-5.07556588751e-06
+UniRef50_U5UT50		0.00105837193136	0.000843762014843	-0.000214609916517
+UniRef50_B9EAQ4	Oligopeptide ABC transporter ATP binding protein OppF	0.00720379293876	0.00197765268857	-0.00522614025019
+UniRef50_UPI000467AEF3	diaminopimelate decarboxylase	1.37614237477e-05	0.000174953986733	0.000161192562985
+UniRef50_UPI00046E57F5	uroporphyrinogen decarboxylase	6.51719598652e-06	1.18963058382e-05	5.37910985168e-06
+UniRef50_UPI00046D5352	hypothetical protein	4.95257820997e-06	1.17575167913e-05	6.80493858133e-06
+UniRef50_UPI000300EAB7	hypothetical protein	0.000327361888448	6.37275625972e-05	-0.000263634325851
+UniRef50_UPI0004677218	acyl CoA transferase	2.05285833195e-06	8.77671994386e-06	6.72386161191e-06
+UniRef50_B9KLX6	Chromosomal replication initiator, DnaA	0.000247828301455	4.12843581621e-05	-0.000206543943293
+UniRef50_UPI00036F41B6	hypothetical protein	2.87976229609e-05	4.12333827896e-05	1.24357598287e-05
+UniRef50_Q5RBK6	2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	4.61740753603e-06	7.0573538081e-06	2.43994627207e-06
+UniRef50_UPI00047DDDC5	hypothetical protein	7.90378024887e-05	0.000107602555134	2.85647526453e-05
+UniRef50_UPI00036A8D72	hypothetical protein	1.81861939098e-05	5.06241728674e-05	3.24379789576e-05
+UniRef50_UPI0001BF7AAC	hypothetical protein SMAC_09920	1.12938857627e-05	6.01560786213e-05	4.88621928586e-05
+UniRef50_UPI0002739F39		8.52509287435e-05	6.58024349989e-06	-7.86706852436e-05
+UniRef50_UPI0003618544	MULTISPECIES	0.000179644883624	0.00020487737172	2.5232488096e-05
+UniRef50_E2Q1H6		1.4040785353e-05	4.28534677962e-05	2.88126824432e-05
+UniRef50_UPI000369F333	hypothetical protein	3.21199765596e-05	1.84280627767e-05	-1.36919137829e-05
+UniRef50_I6RSR0		0.000560341603212	0.000449199982175	-0.000111141621037
+UniRef50_W0H1T2		0.000331128060398	0.000192883848574	-0.000138244211824
+UniRef50_Q869Y7	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial	8.21849630961e-06	1.88234985841e-05	1.06050022745e-05
+UniRef50_Q0G2X9		6.04997526656e-06	7.275522497e-06	1.22554723044e-06
+UniRef50_R5R9L6		7.10590473154e-05	1.65942663495e-05	-5.44647809659e-05
+UniRef50_T1AQZ2	Phosphoribosylformylglycinamidine synthase 	3.12347934853e-05	4.84337678751e-05	1.71989743898e-05
+UniRef50_Q12F86	Peptide chain release factor 1	0.00330161302826	0.000542196684499	-0.00275941634376
+UniRef50_Q2LTR7	Proline  tRNA ligase	0.0239417802839	0.0108215771111	-0.0131202031728
+UniRef50_UPI00036F3D8D	hypothetical protein	2.82739461197e-06	7.53501857934e-06	4.70762396737e-06
+UniRef50_A4WRU9	PRC barrel domain protein	0.00270583958044	0.000497428955027	-0.00220841062541
+UniRef50_X6J7G6		0.00102472676941	2.71758204443e-05	-0.000997550948966
+UniRef50_V4QYY0	Transcriptional regulator	0.000408398101821	9.00573395035e-05	-0.000318340762317
+UniRef50_UPI00046B4F5A	PREDICTED	1.54130498666e-05	0.000190438647961	0.000175025598094
+UniRef50_B6JKF2	Cysteine desulfurase IscS	5.04705740017e-06	0.00441604646465	0.00441099940725
+UniRef50_K9SJV6	Amino acid amide ABC transporter substrate binding protein, HAAT family	0.000280828752635	0.028897393199	0.0286165644464
+UniRef50_UPI0002E4DF67	hypothetical protein	2.79711988837e-06	9.49489167224e-05	9.2151796834e-05
+UniRef50_P07264	3 isopropylmalate dehydratase	6.7043774056e-05	5.9323521317e-06	-6.11114219243e-05
+UniRef50_K8BVY4		0.00016806398057	0.000215225567847	4.7161587277e-05
+UniRef50_UPI0003749F74	hypothetical protein	4.93518354236e-06	2.09818865441e-05	1.60467030017e-05
+UniRef50_Q9CIW0	DhaKLM operon coactivator DhaQ	0.0017638786419	0.000542027200435	-0.00122185144146
+UniRef50_X1DTV9	Marine sediment metagenome DNA, contig	1.10107758914e-05	2.0302659581e-05	9.2918836896e-06
+UniRef50_E3GXL3	Prephenate dehydratase	0.00220915152141	0.000373031627616	-0.00183611989379
+UniRef50_Q21VJ3	Short chain dehydrogenase reductase SDR	0.000964238397711	0.0484046609603	0.0474404225626
+UniRef50_UPI0003638CE1	hypothetical protein	9.99664838986e-06	2.48489649411e-05	1.48523165512e-05
+UniRef50_Q5HF24	D alanine aminotransferase	0.00844236124403	0.00286103050974	-0.00558133073429
+UniRef50_Q60EN0		0.000115674971054	0.000104493108336	-1.1181862718e-05
+UniRef50_B7IV23		6.21217520534e-06	0.00100489334155	0.000998681166345
+UniRef50_A8LT36	Na+ Ca+ antiporter	0.0136008812393	0.00249235155476	-0.0111085296845
+UniRef50_G8VDH4		0.000576398861147	0.00154140029708	0.000965001435933
+UniRef50_H0TRF6	PilL 	0.000347974430411	0.000275843568457	-7.2130861954e-05
+UniRef50_UPI0004688D7A	6,7 dimethyl 8 ribityllumazine synthase	8.38279489684e-06	2.24014478874e-05	1.40186529906e-05
+UniRef50_K0HEK8	Mur ligase middle domain protein	0.000104760218922	0.00743516900166	0.00733040878274
+UniRef50_UPI0003B5D77D	LytR family transcriptional regulator	2.78434186685e-06	9.48822210509e-06	6.70388023824e-06
+UniRef50_M1PJW1		2.04128260595e-05	5.45682062205e-05	3.4155380161e-05
+UniRef50_A3CRC4		0.00268457837421	0.00144712211327	-0.00123745626094
+UniRef50_P46907	Nitrite extrusion protein	0.0204197570958	0.00658528582653	-0.0138344712693
+UniRef50_A3PPT8		0.00256033345927	0.000475040276462	-0.00208529318281
+UniRef50_D6BB72	Predicted protein	3.31944188292e-05	1.26190553488e-05	-2.05753634804e-05
+UniRef50_D3QG17	Transporter, LysE family	0.0107169494469	0.00401468224698	-0.00670226719992
+UniRef50_A1SET2	Cyclic pyranopterin monophosphate synthase accessory protein	1.30015025285e-05	0.00129226791343	0.0012792664109
+UniRef50_UPI0003726D73	hypothetical protein, partial	2.98010759476e-05	0.000254999048371	0.000225197972423
+UniRef50_W1YK15		0.000286447542028	0.000222214344351	-6.4233197677e-05
+UniRef50_Q89LQ8	Bifunctional enzyme IspD IspF	5.79381626422e-06	1.63471349413e-05	1.05533186771e-05
+UniRef50_H1LUK9		1.89960006839e-05	8.30010932925e-05	6.40050926086e-05
+UniRef50_U8YLF7		9.93384181239e-05	0.000253853901306	0.000154515483182
+UniRef50_A0A052HNM0	Cyclic diguanylate phosphodiesterase  domain protein	4.49485977494e-06	1.53831381489e-05	1.0888278374e-05
+UniRef50_A3CQQ7	Tributyrin esterase, putative	0.00695700850786	0.00287730565469	-0.00407970285317
+UniRef50_A7H9V5	NADH quinone oxidoreductase subunit D 2	6.49769982799e-06	3.18208571483e-05	2.53231573203e-05
+UniRef50_A8YY53		0.00123093257234	0.00199089913615	0.00075996656381
+UniRef50_Q5LY94	Phospho N acetylmuramoyl pentapeptide transferase	0.00658539112122	0.00628192333242	-0.0003034677888
+UniRef50_C6M7I4		3.76632582194e-05	0.000279509181195	0.000241845922976
+UniRef50_B1ZVE5	Cobyrinic acid ac diamide synthase	4.92042119402e-06	2.4839201009e-05	1.9918779815e-05
+UniRef50_S5RYV7	Lysine decarboxylase family protein	0.00517667681318	0.000672122762856	-0.00450455405032
+UniRef50_A0A019IPH8		0.000157556058517	3.16243514281e-05	-0.000125931707089
+UniRef50_P0AGJ0	Trk system potassium uptake protein TrkA	0.00436470407595	0.00220964393439	-0.00215506014156
+UniRef50_Q59447	Cysteine synthase	1.63102432579e-05	2.24181906967e-05	6.1079474388e-06
+UniRef50_Q9RZE8	Chromosome partitioning ATPase, putative, ParA family	0.000183550725104	0.0631718198955	0.0629882691704
+UniRef50_UPI00046E5735	phenylacetic acid degradation protein	1.01040722428e-05	4.69050012552e-05	3.68009290124e-05
+UniRef50_B9KR74	Binding protein dependent transport systems inner membrane component	0.0101589268194	0.00108500670753	-0.00907392011187
+UniRef50_E8U679	S layer like protein array related protein	0.000256399618386	0.0271237282419	0.0268673286235
+UniRef50_N9JGK4		0.000175032143208	0.00459592341857	0.00442089127536
+UniRef50_Q79VD7	Cytochrome c oxidase subunit 1	0.000201335970844	0.00604431520099	0.00584297923015
+UniRef50_A4W453	30S ribosomal protein S2	0.0208711833263	0.0457315773859	0.0248603940596
+UniRef50_T7IR01	Diguanylate cyclase	0.000540761787582	0.000163459430921	-0.000377302356661
+UniRef50_K9H0D1		5.72618184856e-05	3.44942989945e-05	-2.27675194911e-05
+UniRef50_Q3IVU8	FMN dependent NADH azoreductase	0.00462622823168	0.00372681389023	-0.00089941434145
+UniRef50_R9YLC4	Cell cycle family protein	0.0146185308701	0.00567240163273	-0.00894612923737
+UniRef50_Q67R59	Formamidopyrimidine DNA glycosylase	5.52342057787e-06	3.22323778763e-05	2.67089572984e-05
+UniRef50_UPI000469D26A	hypothetical protein	3.84367548011e-05	3.13832357276e-05	-7.0535190735e-06
+UniRef50_E2BEN1	Methionine R sulfoxide reductase B1	0.000647941052889	0.00180785534303	0.00115991429014
+UniRef50_F8IF10	ABC transporter related protein	0.000356839351666	0.00138427246682	0.00102743311515
+UniRef50_A3M7V6		0.000471857486069	0.00259803020231	0.00212617271624
+UniRef50_UPI00036F34F3	hypothetical protein	7.836665491e-06	2.50648425099e-05	1.72281770189e-05
+UniRef50_Q5HM36	Galactose 6 phosphate isomerase subunit LacB	0.0247932609432	0.0157614703978	-0.0090317905454
+UniRef50_UPI00046CF7C8	MerR family transcriptional regulator	0.000169279179165	0.000129503758411	-3.9775420754e-05
+UniRef50_UPI000364CB09	hypothetical protein	7.03467172573e-06	8.93141637218e-05	8.22794919961e-05
+UniRef50_A5UMW1	Predicted permease	0.00187226760336	0.000617283716122	-0.00125498388724
+UniRef50_R0FCU4		5.89458445553e-05	2.2192447719e-05	-3.67533968363e-05
+UniRef50_UPI0003B46CBA	O acetylhomoserine aminocarboxypropyltransferase	7.07090521665e-06	8.61485267607e-06	1.54394745942e-06
+UniRef50_Q9XAD5	Probable cysteine desulfurase	0.000280774702454	0.00494948241885	0.0046687077164
+UniRef50_X1HX76	Marine sediment metagenome DNA, contig	3.16251402973e-05	0.00012039937306	8.87742327627e-05
+UniRef50_R4K347	Nitroreductase	0.000227401198102	0.0019797767946	0.0017523755965
+UniRef50_F7ZKI4	HTH type transcriptional regulator, AsnC family	0.00313650680224	0.00258924448495	-0.00054726231729
+UniRef50_A3PJ29	Cytochrome c, class I	0.00417257228081	0.00100107357693	-0.00317149870388
+UniRef50_G8VLH6	Alanine racemase	0.00034955373473	0.00411358049931	0.00376402676458
+UniRef50_D1BS48		0.00541576337914	0.00146565006584	-0.0039501133133
+UniRef50_Q6A850	Exodeoxyribonuclease V beta chain	7.69017002632e-05	0.00581037195267	0.00573347025241
+UniRef50_U3SQQ0		0.00535827419971	0.00443542775419	-0.00092284644552
+UniRef50_U3T1Y1	Potassium uptake protein, TrkA	0.000455343521063	0.00493759136368	0.00448224784262
+UniRef50_D9VIN2	Predicted protein	8.95251850385e-05	0.000471525839398	0.000382000654359
+UniRef50_UPI000471886D	hypothetical protein, partial	0.00010711464251	6.73241349084e-05	-3.97905076016e-05
+UniRef50_UPI0003A01DE6	hypothetical protein	1.6687224631e-06	1.0910690162e-05	9.2419676989e-06
+UniRef50_Q2KXD7	Amino acid ABC transporter, permease protein	0.00256161189526	0.000617925572098	-0.00194368632316
+UniRef50_P52111	Glycerol 3 phosphate dehydrogenase	0.00299525590178	0.00089559080152	-0.00209966510026
+UniRef50_E4PYB8	Replication initiator protein	0.00568566005222	0.0010630391973	-0.00462262085492
+UniRef50_A6QDH4		0.0119989573726	0.00229230545785	-0.00970665191475
+UniRef50_Q2FI15	Bifunctional protein FolD	0.00740703527429	0.00260274596056	-0.00480428931373
+UniRef50_UPI00036940F2	hypothetical protein	4.71602820202e-05	8.62688985525e-05	3.91086165323e-05
+UniRef50_UPI00036C7AFF	hypothetical protein	4.2577385597e-05	4.99869264025e-05	7.4095408055e-06
+UniRef50_Q46845	Disulfide bond oxidoreductase YghU	0.0191800255289	0.0125848220903	-0.0065952034386
+UniRef50_N6S0H8		0.00132643215834	3.36268019972e-05	-0.00129280535634
+UniRef50_Q6VY64		3.15353240142e-05	0.000555562043299	0.000524026719285
+UniRef50_A9VQ13		1.85296589664e-05	0.00103278535997	0.001014255701
+UniRef50_S0ACB3		1.30048623275e-05	2.60433467356e-05	1.30384844081e-05
+UniRef50_Q9HLK8	Inosine 5 monophosphate dehydrogenase	2.59118798677e-05	8.85537522237e-05	6.2641872356e-05
+UniRef50_B1IL95	7 cyano 7 deazaguanine synthase	4.58189510827e-05	5.79743238331e-05	1.21553727504e-05
+UniRef50_Q92G97	NADH quinone oxidoreductase subunit L	0.000145706621807	4.51624093879e-05	-0.000100544212419
+UniRef50_R7PVP7		0.00287350232707	0.000827767666796	-0.00204573466027
+UniRef50_Q9RU90		0.000909232413571	0.026684507891	0.0257752754774
+UniRef50_A8AL09	CDP diacylglycerol pyrophosphatase	6.85496438769e-05	0.0018840172144	0.00181546757052
+UniRef50_A2S4H0	ATPase, AAA family protein	0.0136571642592	0.00566294823183	-0.00799421602737
+UniRef50_W7A2A5		1.56660464008e-07	3.52580982773e-07	1.95920518765e-07
+UniRef50_Q1GXG2	PKHD type hydroxylase Mfla_0096	3.50842910247e-05	9.06576302249e-05	5.55733392002e-05
+UniRef50_A3PJJ8		0.0072995460202	0.00196553083877	-0.00533401518143
+UniRef50_A3PJJ6		0.00862191380061	0.00382951615904	-0.00479239764157
+UniRef50_C0QB47		0.000121309885662	0.00221058476842	0.00208927488276
+UniRef50_X1R832	Marine sediment metagenome DNA, contig	3.72365067342e-05	0.000392337003736	0.000355100497002
+UniRef50_D4HA15		2.33437270013e-05	0.00044816627305	0.000424822546049
+UniRef50_UPI0003B367DD	50S ribosomal protein L22	2.04786861344e-05	0.000124412287918	0.000103933601784
+UniRef50_Q8D350	Protoheme IX farnesyltransferase	7.8445348395e-06	1.42415023161e-05	6.3969674766e-06
+UniRef50_O31705	Molybdopterin synthase catalytic subunit	0.0567752400801	0.00769401641463	-0.0490812236655
+UniRef50_P43791	Dihydrofolate reductase	3.78046585291e-05	0.000417893251127	0.000380088592598
+UniRef50_UPI00035F8340	hypothetical protein	2.30528203608e-05	1.67424923067e-05	-6.3103280541e-06
+UniRef50_K2IW44		1.65288268519e-05	1.74176167892e-05	8.887899373e-07
+UniRef50_UPI0002A47C2E	PREDICTED	4.41508683112e-06	3.30064649179e-06	-1.11444033933e-06
+UniRef50_X2MSF3		2.68782643797e-06	3.04658379977e-06	3.587573618e-07
+UniRef50_Q2T517	Phenylacetaldehyde dehydrogenase	0.000318951762935	0.000276342063474	-4.2609699461e-05
+UniRef50_Q7NS59	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	7.59644430458e-05	6.17301935544e-05	-1.42342494914e-05
+UniRef50_UPI0003B67F64	RNA polymerase sigma factor RpoD	2.55814517692e-06	2.26710190122e-05	2.01128738353e-05
+UniRef50_G8V7H8	CobN magnesium chelatase domain protein	0.000125773797886	0.00539675659168	0.00527098279379
+UniRef50_F5M3T2	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000960271375145	0.000463848228053	-0.000496423147092
+UniRef50_UPI000473818F	hypothetical protein, partial	1.66340535664e-05	2.20474925125e-05	5.4134389461e-06
+UniRef50_N6UY44		1.9466920759e-05	0.000229233416149	0.00020976649539
+UniRef50_Q1GMP5	Inner membrane translocator	0.00206528930816	0.000451896256958	-0.0016133930512
+UniRef50_UPI00030D61DF	hypothetical protein	0.000112801970909	4.78741501312e-05	-6.49278207778e-05
+UniRef50_W8F058		1.92934716169e-05	0.000107141626013	8.78481543961e-05
+UniRef50_M4TQ85	Short chain dehydrogenase reductase SDR	1.85387037836e-05	6.84509222705e-06	-1.16936115565e-05
+UniRef50_UPI00047EB00A	hypothetical protein	1.21025878465e-05	2.18789553338e-05	9.7763674873e-06
+UniRef50_B1J8H6	Asparagine synthetase	0.00117555102026	0.000256059759217	-0.000919491261043
+UniRef50_UPI0004670623	hypothetical protein	0.000357010644258	0.000314375080253	-4.2635564005e-05
+UniRef50_UPI0002000789	two component system sensor kinase	7.88387312701e-05	0.000304710185272	0.000225871454002
+UniRef50_UPI00039C791B	chemotaxis protein CheY	0.000487770420764	2.93092830129e-05	-0.000458461137751
+UniRef50_X7A487		5.86677508954e-05	2.30160823006e-05	-3.56516685948e-05
+UniRef50_Q8CUD3	Resolvase	0.0174385965128	0.00812812184754	-0.00931047466526
+UniRef50_UPI0003B32E66	hypothetical protein	0.000176135786529	7.51941222431e-05	-0.000100941664286
+UniRef50_C6XLP5	Acyl CoA dehydrogenase domain protein	0.00606076329005	0.00146257231811	-0.00459819097194
+UniRef50_T0TWG5	ABC type multidrug transport system, ATPase component	0.0044184479745	0.000711266788563	-0.00370718118594
+UniRef50_B7IKZ0	Cyclic pyranopterin monophosphate synthase accessory protein	0.00294452114306	0.00821902560694	0.00527450446388
+UniRef50_G7M6W8	NADH dehydrogenase 	0.000339552003766	0.000181361333789	-0.000158190669977
+UniRef50_Q3J123	Diguanylate cyclase phosphodiesterase	0.00219243249559	0.000397516895486	-0.0017949156001
+UniRef50_P59676	Penicillin binding protein 2X	0.00557115077748	0.00687194309935	0.00130079232187
+UniRef50_UPI0003612BE4	hypothetical protein	1.14043592796e-05	7.6767014122e-05	6.53626548424e-05
+UniRef50_A2RLU2	Geranyltranstransferase	0.00572979672843	0.00302023425449	-0.00270956247394
+UniRef50_H3UJR5		0.00327598783512	0.000442975057792	-0.00283301277733
+UniRef50_UPI00046D07E2	hypothetical protein, partial	3.79664459361e-06	1.25320155518e-05	8.73537095819e-06
+UniRef50_S4XRJ9		0.00125744957268	5.04640439755e-05	-0.0012069855287
+UniRef50_W5X633	GTPase EngC	3.8393901595e-06	0.00053844228356	0.0005346028934
+UniRef50_UPI0003C15F36		2.13551905378e-05	3.58392957106e-05	1.44841051728e-05
+UniRef50_Q9RUE8	Probable ABC transporter binding protein DR_1438	0.000519074501278	0.0211253326432	0.0206062581419
+UniRef50_Q9RV70	Uricase	0.000710959162569	0.0292427667278	0.0285318075652
+UniRef50_UPI00036D8F07	hypothetical protein	2.49714569773e-05	1.66429795547e-05	-8.3284774226e-06
+UniRef50_K2R7H4		0.000535615880497	0.000160024816883	-0.000375591063614
+UniRef50_G7U7S7	ABC transporter associated permease	0.000106310739375	0.00611372516394	0.00600741442457
+UniRef50_UPI00037B01D8	hypothetical protein	6.8888656086e-05	6.71356100928e-05	-1.7530459932e-06
+UniRef50_A9D7U2	BRO, N terminal	5.07657136341e-05	1.3921585499e-05	-3.68441281351e-05
+UniRef50_N0AWG4	Replicative DNA helicase	0.0131838411428	0.0147155176962	0.0015316765534
+UniRef50_T0TKM9	Transcriptional regulator, MerR family	0.000479855070575	0.000518099482802	3.8244412227e-05
+UniRef50_Q2RI90	3 dehydroquinate dehydratase	5.58051319485e-05	6.1355413231e-05	5.5502812825e-06
+UniRef50_P22036	Magnesium transporting ATPase, P type 1	0.000256386956667	0.000813539986862	0.000557153030195
+UniRef50_B9KQJ5		0.000443912111338	5.45315331482e-05	-0.00038938057819
+UniRef50_A0A037YUC7	Peptidase, M56 family	1.77070173894e-05	1.43503453809e-05	-3.3566720085e-06
+UniRef50_T0CJ91		3.50247298737e-05	2.21881846155e-05	-1.28365452582e-05
+UniRef50_Q9PET0	Transcriptional repressor NrdR	0.0048064282064	0.0113339592108	0.0065275310044
+UniRef50_C6W7J8	Arsenate reductase and related	6.11652263354e-05	6.08704799125e-05	-2.947464229e-07
+UniRef50_UPI00046A7F54	NADPH dehydrogenase	5.23444363445e-06	8.22019845388e-06	2.98575481943e-06
+UniRef50_UPI0003B5EE1D	peroxiredoxin	1.13608256701e-05	0.0003606950233	0.00034933419763
+UniRef50_F7EFJ4		6.75821266239e-05	4.99167468386e-05	-1.76653797853e-05
+UniRef50_X1MX97	Marine sediment metagenome DNA, contig	5.2763259163e-06	0.000127835176637	0.000122558850721
+UniRef50_A2RLY6	Leucine  tRNA ligase	0.0154113087639	0.00722407534885	-0.00818723341505
+UniRef50_UPI0002659767	PREDICTED	4.74899233435e-06	4.76101250009e-06	1.202016574e-08
+UniRef50_A7I8N1	Adenine deaminase	1.9816092577e-05	7.54042188278e-06	-1.22756706942e-05
+UniRef50_A3PL70	Diacylglycerol kinase, catalytic region	0.00182687428467	0.000334952784714	-0.00149192149996
+UniRef50_U1GSZ3	MFS transporter, FSR family, fosmidomycin resistance protein	0.0002856225069	3.24355765774e-05	-0.000253186930323
+UniRef50_UPI00047C8DD6	PTS lactose transporter subunit IIA	4.284371226e-05	3.4128513262e-05	-8.715198998e-06
+UniRef50_Q5LWX7	Flagellar L ring protein	0.0026247425881	0.0014294483974	-0.0011952941907
+UniRef50_A6LZC0	Membrane protein CF 9 family	0.00022248683036	0.00139794890034	0.00117546206998
+UniRef50_P39180	Antigen 43	0.00365359213055	0.00111057765597	-0.00254301447458
+UniRef50_UPI000381BCDA	hypothetical protein, partial	1.23564108599e-05	6.77524033006e-05	5.53959924407e-05
+UniRef50_Q02PS5	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000782765838147	0.000203666693245	-0.000579099144902
+UniRef50_M7XG55		7.23804420098e-06	0.000335000552769	0.000327762508568
+UniRef50_F2DFJ9	Predicted protein 	5.64309976291e-05	0.000249769641664	0.000193338644035
+UniRef50_UPI0003752867	hypothetical protein	4.61472560378e-06	3.39765627527e-05	2.93618371489e-05
+UniRef50_Q820S3	Holliday junction ATP dependent DNA helicase RuvA	1.37459334894e-05	6.2161335455e-05	4.84154019656e-05
+UniRef50_Q98F08	D amino acid dehydrogenase 1 small subunit	3.44058321955e-05	2.56677390764e-05	-8.7380931191e-06
+UniRef50_P96335	Glycerol 3 phosphate transporter	0.00197600746418	0.000705230043653	-0.00127077742053
+UniRef50_Q7VQI2	Protein translocase subunit SecA	0.00220624996852	0.00178746393825	-0.00041878603027
+UniRef50_Q1QN09	Adenylate kinase	9.87731854205e-06	4.6094082131e-05	3.62167635889e-05
+UniRef50_UPI000395C8AE	PREDICTED	6.44276855008e-06	6.88986456666e-06	4.4709601658e-07
+UniRef50_D5QFV4		9.6651545578e-06	2.61067076906e-05	1.64415531328e-05
+UniRef50_B7UNN8	CDP diacylglycerol pyrophosphatase	0.00237418770353	0.000836016358381	-0.00153817134515
+UniRef50_UPI000329B634		4.72653238836e-05	3.63113313674e-05	-1.09539925162e-05
+UniRef50_P08201	Nitrite reductase  large subunit	0.00376779281453	0.00146586437392	-0.00230192844061
+UniRef50_L6RYU4	Outer membrane phosphoporin protein E	0.000370948508026	0.00024781821415	-0.000123130293876
+UniRef50_UPI000050FC02	helicase superfamily protein	1.79573789545e-06	3.43201924323e-05	3.25244545368e-05
+UniRef50_UPI00047D3DBB	hypothetical protein	2.00042667416e-05	2.03264399351e-05	3.221731935e-07
+UniRef50_Q10X06	D alanine  D alanine ligase	6.44542734621e-06	1.88089016877e-05	1.23634743415e-05
+UniRef50_UPI00047094A0	hypothetical protein	3.91101966603e-06	2.55763643963e-05	2.16653447303e-05
+UniRef50_UPI00046A8EC3	hypothetical protein	5.01178870681e-06	1.44987632349e-06	-3.56191238332e-06
+UniRef50_UPI00047C9A63	hypothetical protein	1.92270572265e-05	1.16161393702e-05	-7.6109178563e-06
+UniRef50_UPI00046B1B81	PREDICTED	2.13101921846e-05	2.14184895652e-05	1.082973806e-07
+UniRef50_V7Z9W4	Secreted protein	0.000625196849724	0.00037941891655	-0.000245777933174
+UniRef50_A0A058T0F9	FKBP type peptidyl prolyl cis trans isomerase	0.00301523366419	0.000477601140485	-0.0025376325237
+UniRef50_R6PR03	Glycosyl transferase family 2	0.000260783941645	0.00154124181574	0.00128045787409
+UniRef50_Q8FK51	Carbamate kinase	0.00222459303967	0.000913350808562	-0.00131124223111
+UniRef50_O04983	Biotin carboxylase, chloroplastic	0.00015864761654	0.0529660603013	0.0528074126848
+UniRef50_Q88JX6	Porin like protein GalP	0.00019490464012	0.00029531691028	0.00010041227016
+UniRef50_UPI0003815BE1	hypothetical protein	0.000466889945054	2.68633823042e-05	-0.00044002656275
+UniRef50_UPI0002D2EA81	hypothetical protein	2.93005912793e-05	5.21409717718e-05	2.28403804925e-05
+UniRef50_A6M2X4	Transcriptional regulator, RpiR family	0.000269632849186	0.00167987068868	0.00141023783949
+UniRef50_Q67L49		5.53188095617e-07	9.68026997234e-07	4.14838901617e-07
+UniRef50_D1WL88	Oligopeptide ABC transporter, permease protein	0.000238572622068	0.00110209120915	0.000863518587082
+UniRef50_T2E4B1	Glycosyl transferases group 1 family protein	0.000147840465605	0.000723998550887	0.000576158085282
+UniRef50_E0XT86		0.00190863702229	0.000995449568075	-0.000913187454215
+UniRef50_D7G5T9	ABC transporter ATP binding protein	0.0109174821928	0.0128379344312	0.0019204522384
+UniRef50_B0A2M2	Oxidoreductase domain protein	0.000134451085533	0.000109525992224	-2.4925093309e-05
+UniRef50_P37877	Acetate kinase	0.0133378835645	0.00120129945131	-0.0121365841132
+UniRef50_UPI0002BC838E	PREDICTED	1.2941670754e-06	8.54587791577e-06	7.25171084037e-06
+UniRef50_UPI0003763223	hypothetical protein	4.63439499441e-06	2.96854956165e-06	-1.66584543276e-06
+UniRef50_Q9RYX7	Xanthine permease, putative	8.3085690866e-05	0.039338919292	0.0392558336011
+UniRef50_D3QHC5	Alkaline phosphatase like protein	0.0239592675888	0.00132680500451	-0.0226324625843
+UniRef50_B6IRJ0	ATP dependent RNA helicase, DEAD	0.00127485420303	0.000392353180564	-0.000882501022466
+UniRef50_Q5HP60		0.00248474015665	0.00331687761268	0.00083213745603
+UniRef50_A8AZI4	Penicillin binding protein 1B	0.00746008293883	0.0068815914166	-0.00057849152223
+UniRef50_C4NUT7		0.000519476131447	0.000798153257284	0.000278677125837
+UniRef50_UPI000262D06B	coproporphyrinogen III oxidase	2.63725154465e-05	4.77772060321e-05	2.14046905856e-05
+UniRef50_E7AAE2	Peptidase M16 domain protein	0.000407358389015	0.00297159564592	0.0025642372569
+UniRef50_A9N1I0	Peptidase E	0.00354582089788	0.00273625735023	-0.00080956354765
+UniRef50_Q8Z2X7	Autoinducer 2 import system permease protein LsrD	0.00761012669518	0.00189322791132	-0.00571689878386
+UniRef50_H2I4X5		0.000118581986021	0.00631788757631	0.00619930559029
+UniRef50_P33915	Inner membrane ABC transporter permease protein YejE	0.00411321046148	0.000527272014461	-0.00358593844702
+UniRef50_A4B9S6		7.70291417942e-05	1.49568411552e-05	-6.2072300639e-05
+UniRef50_D1K952	SusD family protein	3.67287478014e-05	0.00478157696352	0.00474484821572
+UniRef50_A5UJ63		0.00256187323572	0.000522684433979	-0.00203918880174
+UniRef50_Q88NC9	Poly C5 epimerase	0.000500397829064	0.000458437682607	-4.1960146457e-05
+UniRef50_W7VQI0	Integral membrane protein	0.000424154947547	1.82920243923e-05	-0.000405862923155
+UniRef50_A0A022KYK2		0.000289575504688	0.000152223125476	-0.000137352379212
+UniRef50_I3UWF3	Rieske domain containing protein	0.00105382378151	0.000197536257659	-0.000856287523851
+UniRef50_UPI00016A8727	1 phosphofructokinase, partial	2.86859380197e-05	0.000253534649997	0.000224848711977
+UniRef50_A6LYB5	Nitroreductase	0.000490241543964	0.00106923010145	0.000578988557486
+UniRef50_R7PU75		0.0039047475406	0.000440771201791	-0.00346397633881
+UniRef50_P0ADY2	Peptidyl prolyl cis trans isomerase D	0.00277178881197	0.000330897506821	-0.00244089130515
+UniRef50_A4WJG1	Acetyl coenzyme A synthetase	3.38961512438e-06	3.72699726623e-05	3.38803575379e-05
+UniRef50_W1V655		9.91621466588e-05	0.000158773468762	5.96113221032e-05
+UniRef50_UPI000381A848	hypothetical protein	4.04238889418e-05	4.88743068359e-05	8.4504178941e-06
+UniRef50_P26423	Galactose 6 phosphate isomerase subunit LacA	0.0498237447466	0.0228357010629	-0.0269880436837
+UniRef50_T0TEW3	Cysteine and methionine metabolism regulator CmbR, LysR family	0.00451181539371	0.00382332976104	-0.00068848563267
+UniRef50_W1N460		3.26362068442e-05	8.35382072833e-06	-2.42823861159e-05
+UniRef50_P59191	UPF0225 protein CE1570	3.28277052032e-05	1.74992688223e-05	-1.53284363809e-05
+UniRef50_V5T139		0.000503314651798	0.00165985970133	0.00115654504953
+UniRef50_M5AMX6	Probable transposase	0.000411020114208	0.000176306235783	-0.000234713878425
+UniRef50_UPI0004195476	hypothetical protein	2.25318977592e-05	5.1010000599e-05	2.84781028398e-05
+UniRef50_Q02R79	Spermidine putrescine import ATP binding protein PotA	0.000152391906106	0.00020840375901	5.6011852904e-05
+UniRef50_Q2NE41		0.0053071582999	0.000411113742723	-0.00489604455718
+UniRef50_S1HD40	Inner membrane protein ybhI	0.000748583941995	0.000229520755339	-0.000519063186656
+UniRef50_P80644	FMN reductase 	0.00129115027145	0.00131013204252	1.898177107e-05
+UniRef50_A3CL81	Glutamate 1 semialdehyde 2,1 aminomutase	8.60783199511e-06	2.73547069379e-05	1.87468749428e-05
+UniRef50_E8W9I4		2.73447387532e-05	0.000444022316567	0.000416677577814
+UniRef50_I7EMH2		0.000517561799258	0.000123643765954	-0.000393918033304
+UniRef50_UPI00047106B1	hypothetical protein	8.44426343559e-06	1.31525726656e-05	4.70830923001e-06
+UniRef50_Q3IGA3	UPF0176 protein PSHAa1433	0.0011924358975	0.000201933161601	-0.000990502735899
+UniRef50_Q8K911	PTS system mannitol specific EIICBA component	0.000757869104054	0.000258264493123	-0.000499604610931
+UniRef50_I4MXJ0	Plasmid pRiA4b ORF 3 family protein	0.00010439103014	3.92908144393e-05	-6.51002157007e-05
+UniRef50_Q8CRY9		0.0108501689485	0.00226937683915	-0.00858079210935
+UniRef50_Q8CRY8		0.0075190307128	0.00210472769869	-0.00541430301411
+UniRef50_UPI0003F066F6	PREDICTED	5.538690743e-06	1.26244818464e-05	7.0857911034e-06
+UniRef50_Q9RWT8	Sensor histidine kinase	0.000158205002264	0.00471957132774	0.00456136632548
+UniRef50_G4L3R1	Phosphoglycerate mutase family protein	6.54493821589e-05	0.00193597715673	0.00187052777457
+UniRef50_Q2FHD9	Glycerol kinase	0.0108561037072	0.0123184076074	0.0014623039002
+UniRef50_UPI00035FD70A	DNA invertase	4.66917667082e-05	0.000140611694328	9.39199276198e-05
+UniRef50_Q2W731	Phosphoribosylformylglycinamidine synthase	4.2977210833e-05	2.92159759517e-05	-1.37612348813e-05
+UniRef50_D4E309	Mannitol dehydrogenase domain protein	0.000367072745853	0.000517351277587	0.000150278531734
+UniRef50_UPI0003680DBD	hypothetical protein	3.53560793626e-06	5.1687833555e-06	1.63317541924e-06
+UniRef50_P9WPZ0	Probable GTPase MT1543	0.000216945970609	0.00663731516817	0.00642036919756
+UniRef50_Q5GWB1		1.94600982206e-05	1.59421917552e-05	-3.5179064654e-06
+UniRef50_N2I8V8	Autotransporter  family porin	0.000702688304845	0.000449023210072	-0.000253665094773
+UniRef50_UPI00047753FE	hypothetical protein	0.000168701958522	1.5140111578e-05	-0.000153561846944
+UniRef50_UPI00031A53C3	hypothetical protein	1.77897105913e-05	3.15820832976e-05	1.37923727063e-05
+UniRef50_X1K4A9	Marine sediment metagenome DNA, contig	2.18594173228e-05	1.81161233202e-05	-3.7432940026e-06
+UniRef50_C6SHK2	Nitric oxide reductase	0.000206483443246	0.00327339350539	0.00306691006214
+UniRef50_UPI0002034B4E	PREDICTED	9.73845241725e-05	2.02697841871e-05	-7.71147399854e-05
+UniRef50_A3PQI0	RepB plasmid partition	0.0118137689406	0.00424355933225	-0.00757020960835
+UniRef50_UPI000237E2DC	hypothetical protein	0.000877349447644	0.000473770115279	-0.000403579332365
+UniRef50_UPI00047CCD58	hypothetical protein	1.07302080373e-05	3.40078520655e-05	2.32776440282e-05
+UniRef50_W1QBV5	Monomeric glyoxalase I	1.50751672956e-05	6.54343101453e-06	-8.53173628107e-06
+UniRef50_E4FFC4		0.000353893114548	0.00384694147968	0.00349304836513
+UniRef50_G5Q502	Cytochrome c heme lyase subunit CcmF	0.00102020655181	0.000151703786922	-0.000868502764888
+UniRef50_T1YBR1		0.00360065064295	0.00135259559632	-0.00224805504663
+UniRef50_A0A011QP89	Elongation factor Tu	7.71693450054e-05	0.000296251882444	0.000219082537439
+UniRef50_P0AAA2	Inner membrane protein YagU	0.00302707033321	0.000309772767695	-0.00271729756552
+UniRef50_UPI00047958EB	ABC transporter permease	0.000147852790497	0.000252075712334	0.000104222921837
+UniRef50_A0A024HBA2	Lost Adherence Sensor, LadS	9.09213297725e-05	0.000352393147119	0.000261471817346
+UniRef50_A8LQH3		0.00110107054658	0.00020319956779	-0.00089787097879
+UniRef50_A1BI09	UvrABC system protein B	0.0214788887947	0.00858170857198	-0.0128971802227
+UniRef50_P54123	Ribonuclease J	1.65807903765e-05	5.75024653662e-05	4.09216749897e-05
+UniRef50_UPI000367649B	hypothetical protein	2.18097723134e-06	1.10611808734e-05	8.88020364206e-06
+UniRef50_U5PBM4	Branched chain amino acid ABC transporter substrate binding protein	8.46381140973e-05	0.00219620012472	0.00211156201062
+UniRef50_UPI000225B945	hypothetical protein	2.91149302768e-05	2.69976869552e-05	-2.1172433216e-06
+UniRef50_UPI0004669786	hypothetical protein, partial	8.52282534018e-06	2.7739430049e-05	1.92166047088e-05
+UniRef50_Q6Z2L5-2	Isoform 2 of Ribose phosphate pyrophosphokinase 1, chloroplastic	7.07816871145e-05	6.13657494693e-05	-9.4159376452e-06
+UniRef50_A6EE81		1.31295155998e-05	0.000423055625112	0.000409926109512
+UniRef50_M5EZ09	Heme molybdoenzyme heme containing subunit YedZ cytochrome b subunit	4.60070236658e-05	2.45040695048e-05	-2.1502954161e-05
+UniRef50_D7GDA9		0.00105837193136	0.00272909929485	0.00167072736349
+UniRef50_A8HTC4	Predicted protein	7.45268036362e-06	0.000124034643956	0.000116581963592
+UniRef50_X1VC56	Marine sediment metagenome DNA, contig	7.04797168241e-05	0.000332694315043	0.000262214598219
+UniRef50_G9MKE1		3.54958581964e-06	0.000444017584637	0.000440467998817
+UniRef50_R8AJR3	Oligopeptide ABC transporter permease	9.00274045531e-05	0.000612095819545	0.000522068414992
+UniRef50_O67108	DNA gyrase subunit A	7.42983207289e-06	1.84395454698e-05	1.10097133969e-05
+UniRef50_B3QUX5	NADH quinone oxidoreductase subunit A 1	1.65893040596e-05	0.000252650143748	0.000236060839688
+UniRef50_U5RYU5	Major facilitator superfamily MFS_1	0.000313499563827	0.000720041777059	0.000406542213232
+UniRef50_UPI0003596786	PREDICTED	4.30710519737e-06	4.53916626771e-06	2.3206107034e-07
+UniRef50_UPI0003B73CB0	biotin biosynthesis protein BioY	4.21523358904e-05	5.66118906267e-05	1.44595547363e-05
+UniRef50_UPI000382DFA2	hypothetical protein	1.18304158092e-05	2.41709431361e-05	1.23405273269e-05
+UniRef50_W8WVR8	Dihydrolipoyl dehydrogenase	0.000215001922882	0.00634329070424	0.00612828878136
+UniRef50_Q7WKH5	3 isopropylmalate dehydratase small subunit 1	4.76861763725e-05	4.16015382615e-05	-6.084638111e-06
+UniRef50_UPI0003ADD90A	PREDICTED	2.4549713244e-05	9.28279938916e-05	6.82782806476e-05
+UniRef50_M1FC64		2.23283112608e-05	3.47780168645e-05	1.24497056037e-05
+UniRef50_T1ZZG8		0.00273297604286	0.00525724409421	0.00252426805135
+UniRef50_P76210		0.00082664870976	0.00242822239569	0.00160157368593
+UniRef50_Q46890	Putative aldolase class 2 protein YgbL	0.00101858748945	0.000877113212431	-0.000141474277019
+UniRef50_UPI00047D4CB0	uridine kinase	9.59407335344e-06	0.000642402629178	0.000632808555825
+UniRef50_S0UQQ2	Inner membrane protein ypdA	0.00248800652706	0.00166220595387	-0.00082580057319
+UniRef50_B9KWL8	Periplasmic glucan biosynthesis protein, MdoG	0.00724710065108	0.00185813985776	-0.00538896079332
+UniRef50_B5GJB9	PE PGRS family protein	4.03409736082e-06	8.29891558234e-06	4.26481822152e-06
+UniRef50_Q5NMC2	Phenylalanine  tRNA ligase alpha subunit	0.00373828277342	0.00715826718034	0.00341998440692
+UniRef50_C6SH38	Transposase, IS30 family	0.0008644717302	0.00742423928974	0.00655976755954
+UniRef50_R5QF49	Fumarate reductase succinate dehydrogenase flavoprotein domain protein	1.5332640187e-05	3.32572784588e-05	1.79246382718e-05
+UniRef50_D8JHI1	Response regulator	7.59020084865e-05	0.00732808975718	0.00725218774869
+UniRef50_UPI0003C13108	PREDICTED	5.42068679964e-06	2.16308607561e-05	1.62101739565e-05
+UniRef50_B0S039	Aspartate ammonia lyase	0.000546140291671	0.00141064412856	0.000864503836889
+UniRef50_Q47WP5	Ribonuclease 3	0.00565929702487	0.00372783554033	-0.00193146148454
+UniRef50_Q98PQ3	CTP synthase	3.67275115537e-06	0.000151763180557	0.000148090429402
+UniRef50_O34125	ATP dependent Clp protease proteolytic subunit 2	0.00121957405125	0.00171327410537	0.00049370005412
+UniRef50_I5E3H6	Ion channel family protein	0.00209424104014	0.000289526181564	-0.00180471485858
+UniRef50_A0A059LD30		3.19515220329e-05	7.49509596433e-05	4.29994376104e-05
+UniRef50_UPI0002DD61A2	hypothetical protein	3.64389602446e-06	1.23074057044e-05	8.66350967994e-06
+UniRef50_X0V5G6	Marine sediment metagenome DNA, contig	0.000169158444638	3.49986343903e-05	-0.000134159810248
+UniRef50_UPI00037AEC76	ABC transporter	9.14180785073e-06	2.64284520455e-05	1.72866441948e-05
+UniRef50_UPI0002F9B62A	hypothetical protein	2.30253715161e-05	3.95537654613e-05	1.65283939452e-05
+UniRef50_Q031X8	D alanine  D alanine ligase	0.00562189505563	0.00398994543593	-0.0016319496197
+UniRef50_UPI00046FAEC1	UDP N acetylglucosamine 2 epimerase	4.18131322732e-06	5.88664770703e-05	5.4685163843e-05
+UniRef50_F9YY53		3.2815356893e-05	0.000798542430045	0.000765727073152
+UniRef50_X5KE03		0.00438726211118	0.00110743764448	-0.0032798244667
+UniRef50_Q9RVW3		9.26725013589e-05	0.00841978950043	0.00832711699907
+UniRef50_Q67PJ3	Tryptophan synthase alpha chain	6.09357515874e-06	1.41829253144e-05	8.08935015566e-06
+UniRef50_A7IHD1	Rubredoxin type Fe4 protein	0.00514421114687	0.00024372767966	-0.00490048346721
+UniRef50_UPI0003FC0088	hypothetical protein	1.0208838013e-05	1.67160070583e-05	6.5071690453e-06
+UniRef50_UPI00037EF707	3 methyladenine DNA glycosylase	2.94746298092e-05	3.1962121097e-05	2.4874912878e-06
+UniRef50_Q17VZ5	Threonine  tRNA ligase	0.0001306069476	0.0034646921404	0.0033340851928
+UniRef50_P56910	NADH quinone oxidoreductase subunit E 2	0.000235211553333	0.00227710018025	0.00204188862692
+UniRef50_D8LMU1		7.87696203726e-06	2.47584371055e-05	1.68814750682e-05
+UniRef50_Q8XZ83	Carbamoyl phosphate synthase large chain	0.00159793871997	0.00318048288349	0.00158254416352
+UniRef50_B5ZA76	Peptidoglycan deacetylase	0.0113633783778	0.00573151712243	-0.00563186125537
+UniRef50_Q038N5	Chaperone protein DnaJ	0.0245773486118	0.0115942549595	-0.0129830936523
+UniRef50_Q82WI7	3 isopropylmalate dehydratase small subunit	5.61743266199e-05	4.54537840995e-05	-1.07205425204e-05
+UniRef50_Q45539	Putative glycosyltransferase CsbB	0.00732768119136	0.00262679416836	-0.004700887023
+UniRef50_UPI0003774C37	hypothetical protein	8.45561058175e-05	4.06472860344e-05	-4.39088197831e-05
+UniRef50_Q6AB05	Porphobilinogen deaminase	0.000288164807201	0.00755117265086	0.00726300784366
+UniRef50_J9P043		9.73707841732e-05	5.19367325046e-05	-4.54340516686e-05
+UniRef50_P13086	Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	4.37933182634e-05	0.000118988420335	7.51951020716e-05
+UniRef50_Q4KIU4	Type II and III secretion system protein	0.00085659922656	0.000439660239094	-0.000416938987466
+UniRef50_D6M4Q5	Urease accessory protein UreF 	0.000383109642488	0.000454482719677	7.1373077189e-05
+UniRef50_F2DBH7	Predicted protein	4.50656684228e-06	3.23734966531e-05	2.78669298108e-05
+UniRef50_U7IPA8		0.000331100519292	0.00272974097321	0.00239864045392
+UniRef50_A6TVQ2	N acetylmuramic acid 6 phosphate etherase	8.58069209637e-06	9.03017730163e-06	4.4948520526e-07
+UniRef50_W5XIQ1	Transcriptional repressor NrdR	0.000112577548633	8.81145993673e-05	-2.44629492657e-05
+UniRef50_Q2IMJ3	LigA	0.00142520202653	0.0012919273032	-0.00013327472333
+UniRef50_Q7G2Z3	Expressed protein	0.000116986554754	0.00137708632747	0.00126009977272
+UniRef50_F0YT02		1.4602283493e-05	0.000544035046458	0.000529432762965
+UniRef50_A0A024L372	Protein involved in detoxification of methylglyoxal	0.000557212523168	0.000335060843375	-0.000222151679793
+UniRef50_Q9RXL7	Hydrolase, haloacid dehalogenase like family	0.000193252212719	0.0431161435292	0.0429228913165
+UniRef50_P13082	Streptomycin 3 kinase	3.69329891776e-05	0.000495884957347	0.000458951968169
+UniRef50_UPI0004541F98	PREDICTED	0.000103400886275	0.000233759924953	0.000130359038678
+UniRef50_UPI000255849F	TetR family transcriptional regulator	4.35553676563e-05	4.72476592779e-05	3.6922916216e-06
+UniRef50_D6WC74		1.9718324423e-05	8.51056787246e-05	6.53873543016e-05
+UniRef50_D2N9Z4	Aminoacyltransferase FemA 	0.024352029829	0.00505743938785	-0.0192945904412
+UniRef50_B2I0T9	Dehydrogenase with different specificities	0.000432235865095	0.00557328458329	0.0051410487182
+UniRef50_V9VP62	Esterase	0.00061453657647	0.000400882405239	-0.000213654171231
+UniRef50_S0FRJ9	TRAP transporter solute receptor, TAXI family	7.61008745718e-06	6.01991981323e-06	-1.59016764395e-06
+UniRef50_B7V7J4	Recombination associated protein RdgC	0.00129539899702	0.00031983758685	-0.00097556141017
+UniRef50_B1JVW3	tRNA specific 2 thiouridylase MnmA	0.0228382639823	0.0104299159791	-0.0124083480032
+UniRef50_UPI00035D67F3	hypothetical protein	0.000164596378387	6.53536001253e-05	-9.92427782617e-05
+UniRef50_UPI000410FFCF	protoheme IX farnesyltransferase	6.5653742364e-06	9.56411856331e-06	2.99874432691e-06
+UniRef50_A0A023RW25	Membrane protein	0.00011889278885	0.00606973760323	0.00595084481438
+UniRef50_W8ZWW3		7.85320140554e-05	4.63016920132e-05	-3.22303220422e-05
+UniRef50_D3E135	Voltage gated chloride channel protein	0.00155872629327	0.000228941436121	-0.00132978485715
+UniRef50_UPI0003F95CA7	50S ribosomal protein L25	0.000174159937944	6.01811735834e-05	-0.000113978764361
+UniRef50_Q8DRV2	Glucan binding protein A, GbpA	0.00846564374656	0.00597460937094	-0.00249103437562
+UniRef50_F6AFI4	Patatin	0.000207030706866	0.000188299705755	-1.8731001111e-05
+UniRef50_UPI00036B8421	hypothetical protein	4.59398113682e-06	3.4982279326e-06	-1.09575320422e-06
+UniRef50_Q46SI8		0.000126532614721	2.35624066642e-05	-0.000102970208057
+UniRef50_J9YT94	Amidase	0.00471899050695	0.000134540640185	-0.00458444986677
+UniRef50_UPI00037F4511	hypothetical protein, partial	0.000229027588482	5.21583898878e-05	-0.000176869198594
+UniRef50_Q93615	Probable electron transfer flavoprotein subunit alpha, mitochondrial	0.000420966516321	0.00821986891212	0.0077989023958
+UniRef50_UPI00039BDE65	DNA helicase	6.46846464419e-06	3.01804149928e-06	-3.45042314491e-06
+UniRef50_UPI00046638E1	ADP ribose pyrophosphatase	1.98102753443e-05	0.000246869147318	0.000227058871974
+UniRef50_UPI000476B251	hypothetical protein	0.00016163827764	0.000348786790942	0.000187148513302
+UniRef50_UPI000464F730	ABC transporter ATP binding protein	6.9530872795e-06	4.88460911673e-05	4.18930038878e-05
+UniRef50_F0K963		0.000800154173473	0.000579987196886	-0.000220166976587
+UniRef50_UPI00038256A0	hypothetical protein, partial	1.61565977933e-05	4.54421517871e-05	2.92855539938e-05
+UniRef50_UPI000470FDE7	hypothetical protein	1.33313071298e-05	3.26730103224e-05	1.93417031926e-05
+UniRef50_Q0C0N0	Bifunctional enzyme IspD IspF	6.35343287073e-06	1.78230974104e-05	1.14696645397e-05
+UniRef50_A6LXC3		0.000186874251907	0.00218713458916	0.00200026033725
+UniRef50_A5UKY3	Probable phosphoglucosamine mutase	0.00357757887225	0.00237082211603	-0.00120675675622
+UniRef50_UPI00036277E7	hypothetical protein	8.80879839581e-05	6.60395486147e-05	-2.20484353434e-05
+UniRef50_UPI000375D958	hypothetical protein	5.73875336071e-06	6.57438811382e-06	8.3563475311e-07
+UniRef50_Q5HNY1	DNA repair protein RecO	0.0135816168534	0.00304570456225	-0.0105359122911
+UniRef50_A0A028XXS7		0.000145864215417	1.29806808191e-05	-0.000132883534598
+UniRef50_R8ZK04		0.000355485577134	0.000152750019926	-0.000202735557208
+UniRef50_P36967	Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	0.0234656572759	0.0546094025174	0.0311437452415
+UniRef50_Q9RV98	Ferrochelatase	0.000167275918245	0.0342853313838	0.0341180554656
+UniRef50_I6GMY7	Inner membrane transport protein YhaO	3.09596039346e-06	2.93297519159e-06	-1.6298520187e-07
+UniRef50_A6M384	CheC domain protein	0.00097206692408	0.00156135662744	0.00058928970336
+UniRef50_R6JVY2	4 hydroxy tetrahydrodipicolinate synthase	0.000448881117165	0.00168102333956	0.00123214222239
+UniRef50_X5ESC8		4.75162744966e-05	4.52751881976e-05	-2.241086299e-06
+UniRef50_B0T2A6	Lysine  tRNA ligase	0.00886522533251	0.00188542360539	-0.00697980172712
+UniRef50_P0A1X7	Methionine aminopeptidase	0.0138160220957	0.00265068643494	-0.0111653356608
+UniRef50_K4VCY9	Outer membrane specific lipoprotein transporter subunit LolE	0.00337459736092	0.000350871332905	-0.00302372602802
+UniRef50_O86013	4 hydroxy 2 oxovalerate aldolase	4.79076400224e-05	0.000293591128078	0.000245683488056
+UniRef50_UPI0002E2CBA6	hypothetical protein	1.11885602524e-05	2.96909396736e-05	1.85023794212e-05
+UniRef50_Q16AA8		0.000208325624319	1.85221840439e-05	-0.000189803440275
+UniRef50_A6LZI3	Transcriptional regulator, TetR family	0.000224249102288	0.00068009700049	0.000455847898202
+UniRef50_UPI000474BBE2	ATP synthase F0F1 subunit gamma	4.85243068262e-06	1.10075940921e-05	6.15516340948e-06
+UniRef50_E3ZDN2	PadR family transcriptional regulator	0.000165009354495	3.12974167876e-05	-0.000133711937707
+UniRef50_B7KCX9	Adenylosuccinate synthetase	1.66174883677e-05	2.04449566892e-05	3.8274683215e-06
+UniRef50_Q98EA0	Mlr4340 protein	0.000120556519087	2.54538883843e-05	-9.51026307027e-05
+UniRef50_UPI0002D46E5D	hypothetical protein	2.87552387397e-05	0.000122716134845	9.39608961053e-05
+UniRef50_UPI0004226290	MarR family transcriptional regulator	1.63696073613e-05	0.000114293509246	9.79239018847e-05
+UniRef50_J8V1E5		5.4587857025e-05	0.000209144974858	0.000154557117833
+UniRef50_B6IRE2	Deoxyribodipyrimidine photolyase like protein	0.00292146556202	0.000320632300245	-0.00260083326177
+UniRef50_A0Q0M8	tRNA dimethylallyltransferase	0.000342212690917	0.000955902744388	0.000613690053471
+UniRef50_V8RAG2	Sodium	0.000630587676438	0.000346083992111	-0.000284503684327
+UniRef50_Q8CNS0	Uroporphyrinogen decarboxylase	0.0211119444678	0.00517056477889	-0.0159413796889
+UniRef50_UPI00037EED1B	hypothetical protein	4.94402178791e-05	0.00455418767028	0.0045047474524
+UniRef50_UPI0002493305	amino acid ABC transporter ATP binding protein	0.000231282611081	6.02698502088e-05	-0.000171012760872
+UniRef50_UPI00046F93AF	hypothetical protein, partial	2.62973069312e-05	4.88266535813e-05	2.25293466501e-05
+UniRef50_I0ZLL7	Amino acid permease associated region	0.00182941755998	0.000764670357488	-0.00106474720249
+UniRef50_I2HA76	Mobilization protein A	0.00131173147082	0.000241415767301	-0.00107031570352
+UniRef50_Q9RWB6		0.000499653438543	0.0673089917792	0.0668093383407
+UniRef50_Q9HZU3	Precorrin 2 C methyltransferase	0.000359538898309	0.000833625433925	0.000474086535616
+UniRef50_U8ZF23	UPF0125 protein Q012_00884	9.26408729856e-05	3.06990131754e-05	-6.19418598102e-05
+UniRef50_U5UJ70	MutS domain V family protein	0.00638572238472	0.000717658894036	-0.00566806349068
+UniRef50_U5T6S5		2.29394100746e-05	3.22679378939e-05	9.3285278193e-06
+UniRef50_J9WRR1	Transketolase, thiamine diphosphate binding domain protein	2.61967143253e-05	2.58173030131e-05	-3.794113122e-07
+UniRef50_R9YLA1	Ktr system potassium uptake protein A	0.020059252678	0.0025883422863	-0.0174709103917
+UniRef50_Q5HLV4	Staphylococcal accessory regulator Y	0.00800239635322	0.00144596601299	-0.00655643034023
+UniRef50_T1JU40		9.49003496099e-06	2.11190409245e-05	1.16290059635e-05
+UniRef50_Q7R725		9.79690522724e-06	0.000158552021898	0.000148755116671
+UniRef50_UPI000237E869	phage integrase	0.00012829356318	8.32447001783e-05	-4.50488630017e-05
+UniRef50_Q57466	Flagellar basal body rod protein FlgC	0.000995037286734	0.000489475201976	-0.000505562084758
+UniRef50_I4DXS5	Acyltransferase homolog	0.00653980756869	0.00675317836006	0.00021337079137
+UniRef50_Q28LT2	6,7 dimethyl 8 ribityllumazine synthase	0.00175618132571	0.00098068449862	-0.00077549682709
+UniRef50_A4WWA2		0.0050996133752	0.00192431147166	-0.00317530190354
+UniRef50_B4T381	Protein NrdI	0.0078525437345	0.000968589068264	-0.00688395466624
+UniRef50_Q9JYY8	Ribosomal RNA large subunit methyltransferase K	0.000258872596211	0.0033994934442	0.00314062084799
+UniRef50_P71297		0.000288892338411	0.00226727046924	0.00197837813083
+UniRef50_P71296		0.00101720977147	0.000419640181617	-0.000597569589853
+UniRef50_Q71WL8	Arginine  tRNA ligase	0.0251829445771	0.00925905418513	-0.015923890392
+UniRef50_A4EQX8	Immunogenic protein	0.000258988767374	5.45402834293e-05	-0.000204448483945
+UniRef50_Q54QE4	Bifunctional purine synthesis protein purC E	1.33063686161e-05	1.57158277088e-05	2.4094590927e-06
+UniRef50_UPI00014AD6BB	MULTISPECIES	1.97121344645e-05	8.86587792357e-06	-1.08462565409e-05
+UniRef50_I0C4X0	KipI	0.0185708698225	0.00523464516114	-0.0133362246614
+UniRef50_UPI000373927B	hypothetical protein	3.19362540761e-05	3.5488129094e-05	3.5518750179e-06
+UniRef50_C5N1M3	Glyoxalase family protein	0.0114876831609	0.00105476950836	-0.0104329136525
+UniRef50_C6SQK1		0.00552387450498	0.000396398262003	-0.00512747624298
+UniRef50_Q9CHM9	Glycogen synthase	0.00446958888226	0.00085985381811	-0.00360973506415
+UniRef50_C9TNI8	NAD specific glutamate dehydrogenase	2.34136827915e-05	1.36793422497e-05	-9.7343405418e-06
+UniRef50_R6XC37	Oxidoreductase NAD binding domain protein	0.000163599808729	9.04420912307e-05	-7.31577174983e-05
+UniRef50_S4RTP3		1.06124392602e-05	2.27598503597e-05	1.21474110995e-05
+UniRef50_F3F217	Isoleucyl tRNA synthetase	0.000819044825047	0.00079202288793	-2.7021937117e-05
+UniRef50_UPI0003772113	hypothetical protein	9.50463037596e-05	5.27679253746e-05	-4.2278378385e-05
+UniRef50_Q8FCG2		0.000815428841801	8.60604221933e-05	-0.000729368419608
+UniRef50_R7QYT4	Methyltransferase type 12	0.000809707329048	0.000803336262903	-6.371066145e-06
+UniRef50_B9DIQ2	Sodium	0.00899095079396	0.00133596293888	-0.00765498785508
+UniRef50_E3DTJ4		3.553818755e-06	1.57700240415e-05	1.22162052865e-05
+UniRef50_B9KTV0	Tripartite ATP independent periplasmic transporter, DctQ component	0.000175323689711	0.00013251573117	-4.2807958541e-05
+UniRef50_UPI0003B7AA4B	iron transporter	1.69570516196e-05	1.52469175422e-05	-1.7101340774e-06
+UniRef50_Q3IVN6		0.00723412102313	0.00221840105825	-0.00501571996488
+UniRef50_Q3IVN1		0.00420609001181	0.00574137484501	0.0015352848332
+UniRef50_Q3IVN0		0.00495123908695	0.00195415701071	-0.00299708207624
+UniRef50_I4Y1U6		0.000302249945156	0.000123048627157	-0.000179201317999
+UniRef50_Q3IVN2		0.0094943445681	0.0104229425363	0.0009285979682
+UniRef50_F0RJ04	Potassium uptake protein, TrkH family	8.36379591226e-05	0.0296378247298	0.0295541867707
+UniRef50_Q4L562	Probable quinol oxidase subunit 4	0.0061664681791	0.00212603088962	-0.00404043728948
+UniRef50_C2QRL4		3.32462117829e-05	0.000246924109412	0.000213677897629
+UniRef50_P0AFQ0	Inner membrane transport permease YbhR	0.0033644371676	0.0015608896218	-0.0018035475458
+UniRef50_Z5XBU2	Potassium transporting ATPase subunit B	9.24049228769e-06	0.00187557720017	0.00186633670788
+UniRef50_Q6FCU8	O methyl transferase	0.00055786106727	0.00435939715957	0.0038015360923
+UniRef50_Q9HGZ0	ATP dependent 6 phosphofructokinase 2	4.00557177518e-06	3.03595716479e-06	-9.6961461039e-07
+UniRef50_UPI000379175B	hypothetical protein	0.000112429998035	2.79151643321e-05	-8.45148337029e-05
+UniRef50_F0YF70		3.19439300233e-05	9.43294211361e-06	-2.25109879097e-05
+UniRef50_Q18AR0	Acetyl CoA acetyltransferase	1.23052135111e-05	7.82849852625e-05	6.59797717514e-05
+UniRef50_V4QJE1		0.0178260887726	0.00390596078639	-0.0139201279862
+UniRef50_F0KFI6	Succinate semialdehyde dehydrogenase (+))	0.000189098804829	0.00644100307705	0.00625190427222
+UniRef50_M4SAI5		6.91104147978e-05	0.000159020789125	8.99103743272e-05
+UniRef50_K0HLP5	Cell envelope related transcriptional attenuator	1.58205162156e-05	0.00217070389521	0.00215488337899
+UniRef50_UPI00029A71CE	ATP  cobalamin adenosyltransferase	9.08235093104e-06	1.4802311149e-05	5.71996021796e-06
+UniRef50_D6C476		2.16870479001e-05	0.000492157108136	0.000470470060236
+UniRef50_UPI0003B69FA4	ABC transporter ATP binding protein	8.70479517523e-06	8.78194692552e-06	7.715175029e-08
+UniRef50_UPI00037DC4C2	hypothetical protein	2.2320347284e-05	3.24254882458e-06	-1.90777984594e-05
+UniRef50_A5UNW1	Phage related minor tail protein	0.00348094779087	0.000740138400825	-0.00274080939005
+UniRef50_Q9KPI5	UPF0126 membrane protein VC_2382	0.00482413725085	0.000325119308468	-0.00449901794238
+UniRef50_D9RDD3	Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1	0.0149207677758	0.000577269139603	-0.0143434986362
+UniRef50_UPI0003EB35B9	L lactate permease, partial	1.85360730159e-06	9.87332190105e-05	9.68796117089e-05
+UniRef50_Q9CGM7	Dihydroorotase	0.00578669861729	0.00482657131642	-0.00096012730087
+UniRef50_UPI0003C11B56		3.74020350008e-06	3.85911315616e-06	1.1890965608e-07
+UniRef50_Q04HZ7	D alanine  poly ligase subunit 1	0.00676455883082	0.00375753679259	-0.00300702203823
+UniRef50_P22099	Anthranilate synthase component 1	0.00301534554797	0.000490651084777	-0.00252469446319
+UniRef50_UPI00046F34F7	glycosyl transferase family 39	1.50170416029e-05	1.59452686954e-05	9.282270925e-07
+UniRef50_G1ZTT8	Sodium dependent inorganic phosphate  transporter family protein	0.00690666170161	0.00106492388621	-0.0058417378154
+UniRef50_UPI000350B2EA	PREDICTED	7.41862016486e-05	1.21449330137e-05	-6.20412686349e-05
+UniRef50_K5YQU9		4.18145547763e-05	2.89431342535e-05	-1.28714205228e-05
+UniRef50_UPI00046BF16E	PREDICTED	1.35463219976e-06	9.13132658069e-06	7.77669438093e-06
+UniRef50_UPI0003FCF933	DNA polymerase III subunit alpha	3.60651770913e-06	2.21446169201e-06	-1.39205601712e-06
+UniRef50_C3LNG5	Amino acid ABC transporter, permease protein	0.000870281264154	0.000773755559468	-9.6525704686e-05
+UniRef50_Q9RWV7	Tryptophan  tRNA ligase	0.00012796135215	0.0420833646116	0.0419554032594
+UniRef50_UPI0004560947	hypothetical protein PFL1_00311	1.44431709291e-05	1.86887923497e-05	4.2456214206e-06
+UniRef50_F0LUE5	Predicted hydrolase of the HAD superfamily	0.000582543050858	0.00138105132473	0.000798508273872
+UniRef50_K0LKT0		0.00139277597654	0.0043551082019	0.00296233222536
+UniRef50_UPI0003823C05	hypothetical protein	0.000172416776267	9.60730834794e-06	-0.000162809467919
+UniRef50_UPI0003A4E18C	hemolysin expression modulating protein	4.30787682591e-05	2.60816950684e-06	-4.04705987523e-05
+UniRef50_UPI000472C7D5	diaminopimelate decarboxylase	8.90399066986e-06	8.46130280363e-05	7.57090373664e-05
+UniRef50_UPI0003715A93	phosphoribosylglycinamide synthetase	1.39468336504e-05	2.44537946885e-06	-1.15014541816e-05
+UniRef50_B0CKZ1		0.000821683249897	0.000287343111972	-0.000534340137925
+UniRef50_F7ZE55		0.00462164394839	0.000550682640576	-0.00407096130781
+UniRef50_R5FLI5	Glutathione peroxidase	0.000549736876965	0.00368616016509	0.00313642328812
+UniRef50_M9VH17		0.000262076560141	0.000305527728858	4.3451168717e-05
+UniRef50_UPI00036E90C5	hypothetical protein	8.21219037483e-05	0.000128492027548	4.63701237997e-05
+UniRef50_Q8DSG3	Aspartate  tRNA ligase	0.00716310742295	0.00208883927694	-0.00507426814601
+UniRef50_U5V5C3	Putative nRPS PKS	1.72818411647e-05	9.86019527077e-05	8.1320111543e-05
+UniRef50_UPI0004705979	hypothetical protein	8.39461366984e-06	8.9122932045e-06	5.1767953466e-07
+UniRef50_UPI00035D3D1B	hypothetical protein	0.000202515499788	3.19764633004e-05	-0.000170539036488
+UniRef50_UPI0003B3A97F	UTP  glucose 1 phosphate uridylyltransferase	0.00025123847649	0.000135111774288	-0.000116126702202
+UniRef50_P77607		0.000370881898274	0.000551289092249	0.000180407193975
+UniRef50_X1DZD1	Marine sediment metagenome DNA, contig	2.47205412101e-05	5.81197372885e-05	3.33991960784e-05
+UniRef50_Q5NWG5	Isopentenyl diphosphate Delta isomerase 2	7.43213996447e-05	1.90806838428e-05	-5.52407158019e-05
+UniRef50_UPI000225ADDB	large conductance mechanosensitive channel protein MscL	5.40995468574e-05	6.10462269887e-05	6.9466801313e-06
+UniRef50_C7TN90	ABC transporter, amino acid binding protein	0.00702969874428	0.00623223467489	-0.00079746406939
+UniRef50_A5UKX8	O linked GlcNAc transferase	0.00245823093574	0.000882767705338	-0.0015754632304
+UniRef50_UPI000375E38D	hypothetical protein	6.97414799666e-06	6.26460530979e-05	5.56719051012e-05
+UniRef50_Q7U8I1	Fumarate hydratase class II	6.78675023395e-06	1.25911332666e-05	5.80438303265e-06
+UniRef50_I6U4E4		0.00729093234313	0.00133814022035	-0.00595279212278
+UniRef50_P0ADI8		0.000329202897256	0.000626671157593	0.000297468260337
+UniRef50_E8SDZ5		0.025412918601	0.00243198529974	-0.0229809333013
+UniRef50_P18642	Protein ImpB	0.00159003262334	0.00020250288357	-0.00138752973977
+UniRef50_A4VP76	Lipoprotein, putative	0.000700301055808	0.000177367390508	-0.0005229336653
+UniRef50_UPI00035D47CC	hypothetical protein, partial	0.000234417190976	3.95394460445e-05	-0.000194877744931
+UniRef50_UPI00029A6A13	binding protein dependent transport system inner membrane protein	1.1004921197e-05	3.18472320783e-05	2.08423108813e-05
+UniRef50_I0ZSX5	Transporter, major facilitator family protein	0.00111558990951	0.000736370815849	-0.000379219093661
+UniRef50_F3Y8Y9	Altronate oxidoreductase	0.000155985945804	0.000223161238178	6.7175292374e-05
+UniRef50_P0A963	L asparaginase 1	0.00166646714253	0.000566806690887	-0.00109966045164
+UniRef50_Q46MN5	Hydrophobe amphiphile efflux 1 HAE1	0.000808129526279	6.15243135783e-05	-0.000746605212701
+UniRef50_Q6FFX5	Ribonuclease PH	4.25592345041e-05	1.50644653298e-05	-2.74947691743e-05
+UniRef50_A6LWL3	Collagen triple helix repeat	4.34391241527e-05	0.000267648352131	0.000224209227978
+UniRef50_O69754	Trans 2,3 dihydro 3 hydroxyanthranilate isomerase	0.000289451916503	4.70367337981e-05	-0.000242415182705
+UniRef50_UPI00037CA56D	hypothetical protein	8.90002479414e-05	1.50535445417e-05	-7.39467033997e-05
+UniRef50_UPI0003A01C14	iron ABC transporter permease	1.0691662724e-05	6.91033536546e-06	-3.78132735854e-06
+UniRef50_R5D7P7	ABC transporter permease protein	0.000166933348714	7.35342772658e-05	-9.33990714482e-05
+UniRef50_UPI00047ED6FC	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.30597506173e-05	6.01389356282e-06	-7.04585705448e-06
+UniRef50_R7R1P9	Cobalamin biosynthesis protein CbiM	0.000276719895371	0.0056523464125	0.00537562651713
+UniRef50_B1YU48	Uracil phosphoribosyltransferase	6.43682564735e-05	0.000118842361961	5.44741054875e-05
+UniRef50_Q1J275	Transcriptional regulator, Crp Fnr family	0.000343169080774	0.0323418371894	0.0319986681086
+UniRef50_T9JR44		8.17766565087e-06	1.39143415988e-05	5.73667594793e-06
+UniRef50_P27431	50S ribosomal protein L16 arginine hydroxylase	0.00486200865535	0.00124857238685	-0.0036134362685
+UniRef50_Q6ZDB2		5.84146777618e-05	0.000106788539384	4.83738616222e-05
+UniRef50_Q5HLY0	Probable molybdenum cofactor guanylyltransferase	0.0179032963372	0.00449540983695	-0.0134078865002
+UniRef50_A1BAJ3	Peptidase M23B	0.000107386961053	3.4427617587e-05	-7.2959343466e-05
+UniRef50_Q3IW06		0.00110454695865	0.000591561929607	-0.000512985029043
+UniRef50_UPI00046F60DA	hypothetical protein	2.79593827946e-05	1.25907867892e-05	-1.53685960054e-05
+UniRef50_UPI00035CF7ED	hypothetical protein	7.03139388276e-06	2.6943276063e-05	1.99118821802e-05
+UniRef50_UPI00047B007B	2 oxoglutarate dehydrogenase	1.41968731216e-06	1.86870176321e-06	4.4901445105e-07
+UniRef50_E6Q0D3		4.67514356353e-05	9.02721019445e-05	4.35206663092e-05
+UniRef50_D7GEE3	rRNA methylase	0.000278245200628	0.00505317374271	0.00477492854208
+UniRef50_UPI0002DEB9E1	hypothetical protein	5.43702773776e-06	0.000100701695306	9.52646675682e-05
+UniRef50_Q48JY0	Dihydroorotate dehydrogenase 	1.73529348147e-05	3.14176785445e-05	1.40647437298e-05
+UniRef50_C6SS67		0.00609909338577	0.00111314570002	-0.00498594768575
+UniRef50_B8H5V4	Uronate isomerase	0.00617867240817	0.00188964220599	-0.00428903020218
+UniRef50_Q7UWS1	Na translocating NADH quinone reductase subunit E	8.88263240391e-05	0.000114629503914	2.58031798749e-05
+UniRef50_UPI000412F4F5	hypothetical protein	9.35268203105e-05	1.35502772672e-05	-7.99765430433e-05
+UniRef50_A3PQF5	Peptidase M24	0.00473323388577	0.000873830695649	-0.00385940319012
+UniRef50_A5W310	Major facilitator superfamily MFS_1	0.00116368382066	0.000896813951921	-0.000266869868739
+UniRef50_P76550		0.00357456103561	0.000213997612461	-0.00336056342315
+UniRef50_UPI00035E8F3F	hypothetical protein	0.000178684763972	5.92784985726e-05	-0.000119406265399
+UniRef50_A5UAG1	Ribonuclease T	0.0031953885718	0.00297450547729	-0.00022088309451
+UniRef50_UPI0003739549	hypothetical protein	1.99902795493e-05	0.000575638776795	0.000555648497246
+UniRef50_A7X3B0	Transcriptional repressor NrdR	0.030715149197	0.00313065537791	-0.0275844938191
+UniRef50_F9VBF9	OPT family oligopeptide transporter	7.88619753888e-05	0.00095919906521	0.000880337089821
+UniRef50_D4HBS7	Oxidoreductase, NAD binding domain protein	0.000143895548483	0.00654586537552	0.00640196982704
+UniRef50_R9SJM3	Amidohydrolase	0.00270630887141	0.00276610145639	5.979258498e-05
+UniRef50_A5UKM3		0.00371352824693	0.000772767802043	-0.00294076044489
+UniRef50_A5UKM2		0.00233569523991	0.000143010510987	-0.00219268472892
+UniRef50_A3PIB0	OmpA MotB domain protein	0.000503715856153	0.000115810472618	-0.000387905383535
+UniRef50_A6FVX3	Transcriptional regulator, MarR family protein	0.00233838690787	0.000495508120008	-0.00184287878786
+UniRef50_UPI00016C448A	hypothetical protein	3.66129074076e-05	0.00735517335542	0.00731856044801
+UniRef50_Q49890	Tyrosine recombinase XerD	0.000246186514471	0.00433203616319	0.00408584964872
+UniRef50_Q5LND3	Orotidine 5 phosphate decarboxylase	0.00120024755922	0.000254218110649	-0.000946029448571
+UniRef50_Q14JF9	Protoheme IX farnesyltransferase	4.36984379905e-06	1.73241208433e-05	1.29542770443e-05
+UniRef50_Q5HRV4		0.00362410935657	0.000720284646817	-0.00290382470975
+UniRef50_A3CTR9	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	3.2162174718e-05	8.77409774415e-06	-2.33880769738e-05
+UniRef50_Q5HKN5		0.00291100899235	0.000935288741878	-0.00197572025047
+UniRef50_UPI0002EC4132	hypothetical protein	5.59550563826e-06	4.58596831372e-05	4.02641774989e-05
+UniRef50_Q9RUU2	DNA helicase RecQ	9.47131982586e-05	0.0127566692968	0.0126619560985
+UniRef50_A1SRV2	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.84537674543e-05	4.9457664995e-06	-1.35080009548e-05
+UniRef50_UPI0004574B02	PREDICTED	3.60290733687e-05	1.55955269346e-05	-2.04335464341e-05
+UniRef50_UPI00047B0F79	ATP dependent DNA helicase PcrA	1.7192994877e-05	8.00220796498e-06	-9.19078691202e-06
+UniRef50_J4Y9F0		5.80457606104e-05	0.000152001875169	9.39561145586e-05
+UniRef50_Q2SSQ6	ATP dependent 6 phosphofructokinase	1.43257646858e-05	1.01783254702e-05	-4.1474392156e-06
+UniRef50_UPI0003B58BDB	glutathione synthetase	3.40271525092e-06	5.55957823724e-06	2.15686298632e-06
+UniRef50_D0D8F2	Tripartite ATP independent periplasmic transporter, DctQ component	0.000155450032925	6.28655053514e-05	-9.25845275736e-05
+UniRef50_P76168	Putative lambdoid prophage Qin defective integrase 	0.00283808496387	0.000556406631506	-0.00228167833236
+UniRef50_B9KWD2	Quinol oxidase subunit II	0.00103228869028	0.000574410320154	-0.000457878370126
+UniRef50_UPI00035F8901	hypothetical protein	0.00015134020674	3.38427871912e-05	-0.000117497419549
+UniRef50_Q9RYN5	Cytochrome C6, putative	0.000146881707723	0.0616682951815	0.0615214134738
+UniRef50_B7H202	Peptidase M16C associated family protein	0.00020860888321	0.00768012469634	0.00747151581313
+UniRef50_Q5HPK4		0.00781214809412	0.00287671465947	-0.00493543343465
+UniRef50_Q2YSU1	Teichoic acid biosynthesis protein	0.0124137274904	0.00164799048651	-0.0107657370039
+UniRef50_UPI000479479D	family 2 glycosyl transferase	0.000149072790182	3.4977564636e-05	-0.000114095225546
+UniRef50_A4WRV1	Transport associated	0.000984044406011	0.000713594233594	-0.000270450172417
+UniRef50_T2GRR2		0.000150440879345	0.000238304604967	8.7863725622e-05
+UniRef50_Q7NPI6	Glutamate 5 kinase	5.33224891031e-06	1.2479552297e-05	7.14730338669e-06
+UniRef50_A4WRB0	Spheroidene monooxygenase	0.00470119357408	0.00131760096559	-0.00338359260849
+UniRef50_Q6GJ94	Putative long chain fatty acid CoA ligase VraA	0.0117071822348	0.00174581500354	-0.00996136723126
+UniRef50_Q6CS32	KLLA0D04378p	9.27563484787e-06	2.40769396293e-05	1.48013047814e-05
+UniRef50_A5IV89		0.0132558476748	0.000386877779725	-0.0128689698951
+UniRef50_UPI00047ED515	cobyrinic acid a c diamide adenosyltransferase	2.44569457527e-05	0.000380546518311	0.000356089572558
+UniRef50_UPI000407EA99	hypothetical protein	3.53569480711e-06	3.13398385952e-06	-4.0171094759e-07
+UniRef50_Q67MF5	Lipoyl synthase	6.2856807304e-06	4.0796091846e-05	3.45104111156e-05
+UniRef50_A7X0W1	Phosphoribosylformylglycinamidine synthase 2	0.023261372983	0.00504826030323	-0.0182131126798
+UniRef50_N2V265	Glycosyltransferase like 2 family protein	0.00159680589346	0.00129792721244	-0.00029887868102
+UniRef50_Q5SHZ8	8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase	0.000262397933841	0.0309982963532	0.0307358984194
+UniRef50_D3HNL5	Cytochrome c oxidase subunit 2	0.00140665428789	0.000405503761083	-0.00100115052681
+UniRef50_B4D9A7	Cobyrinic acid ac diamide synthase	6.12068901095e-06	8.88202067888e-06	2.76133166793e-06
+UniRef50_G7M7X4	Replisome organizer region containing protein	0.000374393301598	0.000533016997375	0.000158623695777
+UniRef50_Q67PR4	Methionyl tRNA formyltransferase	5.01340415809e-06	2.07405040309e-05	1.57270998728e-05
+UniRef50_G0D6I9		0.00271317277564	7.58316968283e-05	-0.00263734107881
+UniRef50_Q9ZMH8	Putative zinc metalloprotease jhp_0242	0.00022948630826	0.00629732825043	0.00606784194217
+UniRef50_P33345	Putative molybdate metabolism regulator	0.000699724652584	0.000137360842467	-0.000562363810117
+UniRef50_V5SX49	Chemotaxis protein CheY	0.000505619055759	0.00154777703004	0.00104215797428
+UniRef50_F3CHT8	Histidine lysine arginine ornithine ABC transporter permease HisM 	4.54090265867e-05	0.000194165312638	0.000148756286051
+UniRef50_UPI0004010090	NUDIX hydrolase	0.000174397233424	1.77809743983e-05	-0.000156616259026
+UniRef50_UPI0003A6958B	DNA polymerase IV	4.33869155643e-06	8.6224874575e-06	4.28379590107e-06
+UniRef50_UPI0003695FA0	hypothetical protein	2.38273197906e-06	3.23231165328e-06	8.4957967422e-07
+UniRef50_B5XPC8	Uridine kinase	1.06704553196e-05	0.000311567292098	0.000300896836778
+UniRef50_S2IZA5		2.64852275158e-05	7.92441963827e-05	5.27589688669e-05
+UniRef50_V5T4Y9	AraC family transcriptional regulator	0.00132250410445	0.000273441393692	-0.00104906271076
+UniRef50_Q1LLQ3	Cbb3 type cytochrome oxidase, subunit I	0.000118955668759	0.00191743787	0.00179848220124
+UniRef50_X1XSD9		0.0217858521546	0.00434002203139	-0.0174458301232
+UniRef50_Z2CD30		0.0121435573411	0.00136286899342	-0.0107806883477
+UniRef50_Q9RUE5		0.000289631193489	0.0224746360002	0.0221850048067
+UniRef50_Q9RUE6		0.000166917856689	0.0330413213749	0.0328744035182
+UniRef50_UPI0003728022	hypothetical protein	8.13009554226e-06	2.12148291955e-05	1.30847336532e-05
+UniRef50_C1CRM5		9.10513168199e-06	0.00120642519994	0.00119732006826
+UniRef50_L0KKT8		7.1396699805e-05	7.66431637179e-05	5.2464639129e-06
+UniRef50_R4QK25	GTPase	9.29005714967e-05	0.0026534848763	0.0025605843048
+UniRef50_Q98QH1	Lysine  tRNA ligase 1	3.68821755283e-06	7.25193306518e-06	3.56371551235e-06
+UniRef50_UPI00040189EA	C4 dicarboxylate ABC transporter permease	9.99921429727e-05	1.50867724728e-05	-8.49053704999e-05
+UniRef50_P77187		0.00264488239814	0.00187348850034	-0.0007713938978
+UniRef50_W8T289		0.00167972234275	0.00122200015942	-0.00045772218333
+UniRef50_X5QID8	Transposase	0.00587713518861	0.00111244149756	-0.00476469369105
+UniRef50_UPI0002EB2D0F	hypothetical protein	0.000216783665046	0.000114815751979	-0.000101967913067
+UniRef50_Q1QBW0	Lipid A export ATP binding permease protein MsbA	0.000141840916575	0.0075247841623	0.00738294324573
+UniRef50_E5VNE0	DNA replication and repair protein RecF	3.38858059911e-05	8.72094224864e-05	5.33236164953e-05
+UniRef50_UPI00047C7FF5	hypothetical protein	5.89023881796e-05	7.34542743403e-06	-5.15569607456e-05
+UniRef50_UPI000474B713	phosphoglucomutase	1.47721541472e-05	1.0699542929e-05	-4.0726112182e-06
+UniRef50_UPI0003653228	hypothetical protein	1.15631276669e-05	2.17336897434e-05	1.01705620765e-05
+UniRef50_E3A662	Signal recognition particle receptor FtsY	0.000130359593674	0.000212834350657	8.2474756983e-05
+UniRef50_B0V727		0.000205901448467	0.00927153267233	0.00906563122386
+UniRef50_UPI0003772B6E	hypothetical protein	7.69724654099e-06	7.92368275104e-06	2.2643621005e-07
+UniRef50_E8YFF3	Ribonucleoside diphosphate reductase	0.000711528810748	0.000538104462594	-0.000173424348154
+UniRef50_J7QHS4		0.000222050581675	0.000343391517665	0.00012134093599
+UniRef50_D3DZ50	Nicotinate phosphoribosyltransferase	0.00280915717911	0.0004372719365	-0.00237188524261
+UniRef50_W1T644	Fructoselysine transporter	0.000334058397217	0.000522684433979	0.000188626036762
+UniRef50_X7F912	Malto oligosyltrehalose trehalohydrolase	0.00446198354867	0.00100868154914	-0.00345330199953
+UniRef50_Q28R66	Anthranilate phosphoribosyltransferase	5.50630815389e-05	3.08177469518e-05	-2.42453345871e-05
+UniRef50_UPI00037E8315	hypothetical protein	3.27026475869e-05	2.49838842643e-05	-7.7187633226e-06
+UniRef50_U6IKF5	Adenylyltransferase and sulfurtransferase	1.35303218501e-05	3.07413896933e-05	1.72110678432e-05
+UniRef50_P05846	Transposon Tn7 transposition protein TnsC	9.58086266163e-05	0.00495861217892	0.0048628035523
+UniRef50_S5Y8G8	Penicillin binding protein, 1A family	0.00364778274832	0.000652086324375	-0.00299569642395
+UniRef50_P0AFM0	Paraquat inducible protein A	0.003890751589	0.000494203946313	-0.00339654764269
+UniRef50_Q6GHW0	UPF0348 protein SAR1099	0.0155989583656	0.00452547063447	-0.0110734877311
+UniRef50_UPI00042C781F	PREDICTED	8.84366946958e-06	2.28038111158e-05	1.39601416462e-05
+UniRef50_G7U8E3	Adenosylmethionine 8 amino 7 oxononanoate transaminase	9.50048629665e-05	0.0053461277422	0.00525112287923
+UniRef50_P52044		0.00240821408399	0.00119792480302	-0.00121028928097
+UniRef50_O50274	Bifunctional enzyme CysN CysC	0.000757699037971	0.000376910497654	-0.000380788540317
+UniRef50_F4N7B8	Pirin like protein PA2418	1.06497585971e-05	1.50994387245e-05	4.4496801274e-06
+UniRef50_W5X7C0	NADH dependent flavin oxidoreductase	8.80457839425e-05	0.000198944786583	0.000110899002641
+UniRef50_V9TYA5	Beta ketoadipate enol lactone hydrolase	0.000831552333171	0.000238800570243	-0.000592751762928
+UniRef50_X8AP60	Recombination O family protein	1.37815117514e-05	5.48316910805e-05	4.10501793291e-05
+UniRef50_Q9RTA5		0.000494934185971	0.0144362969055	0.0139413627195
+UniRef50_UPI000225F589	hypothetical protein	4.1642392299e-05	6.98506028045e-05	2.82082105055e-05
+UniRef50_Q9A545	5 hydroxyisourate hydrolase	2.4640340016e-05	0.000195005762676	0.00017036542266
+UniRef50_Q9RTA6		1.70189237437e-05	0.00601737320786	0.00600035428412
+UniRef50_C1CUQ9	Translation initiation factor IF 2	0.000133565049162	0.022789168761	0.0226556037118
+UniRef50_UPI000478DE35	cytochrome Cbb3	3.94054754604e-05	2.74418645663e-05	-1.19636108941e-05
+UniRef50_UPI000361F45B	hypothetical protein	7.38374652608e-06	0.000111796968922	0.000104413222396
+UniRef50_C7BXE2		9.64614963009e-05	0.00507528460708	0.00497882311078
+UniRef50_F3S6G5		6.10692268204e-06	1.14615721896e-05	5.35464950756e-06
+UniRef50_P34843	Cytochrome c oxidase subunit 3	8.56104260302e-06	1.71982546014e-05	8.63721199838e-06
+UniRef50_UPI00047810F9	hypothetical protein	4.98532368506e-06	1.11034267668e-05	6.11810308174e-06
+UniRef50_H6LDW2	UDP galactopyranose mutase Glf	0.00165416474913	0.000909745951537	-0.000744418797593
+UniRef50_W6V4Z4		3.08103365752e-05	0.000969042861533	0.000938232524958
+UniRef50_D5AQK7	Membrane protein, putative	0.00043544807847	3.67940302843e-05	-0.000398654048186
+UniRef50_B7LM74	Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase	0.00222466865299	0.000994650212072	-0.00123001844092
+UniRef50_P74061	Ribulose phosphate 3 epimerase	1.48774802123e-05	0.000334852181197	0.000319974700985
+UniRef50_UPI000478D8DB	hypothetical protein	3.62003055997e-06	8.52261334415e-06	4.90258278418e-06
+UniRef50_A2VSU2	NAD NADP transhydrogenase beta subunit	4.43173169831e-06	6.73332841153e-05	6.2901552417e-05
+UniRef50_Q01A90	WGS project CAID00000000 data, contig chromosome 04	3.1368738326e-05	1.29116903421e-05	-1.84570479839e-05
+UniRef50_UPI0004631E88	hypothetical protein	0.000143666297746	2.08832716849e-05	-0.000122783026061
+UniRef50_P59522	Ribosomal RNA small subunit methyltransferase H	1.29433433717e-05	7.58522854409e-06	-5.35811482761e-06
+UniRef50_I0HWW2		6.16540863228e-06	5.59402885045e-06	-5.7137978183e-07
+UniRef50_UPI000370D7A6	hypothetical protein	0.000548524101817	1.92467755156e-05	-0.000529277326301
+UniRef50_Q54DD3	Aminomethyltransferase, mitochondrial	1.74088406746e-05	7.72413407574e-06	-9.68470659886e-06
+UniRef50_Q8DPZ3	Release factor glutamine methyltransferase	0.00443595805177	0.00247728959328	-0.00195866845849
+UniRef50_UPI000362B874	hypothetical protein	1.27571184279e-05	5.92038400701e-05	4.64467216422e-05
+UniRef50_W8TSF6		0.000905348833236	2.67461482819e-05	-0.000878602684954
+UniRef50_Q57NU9	GTP cyclohydrolase 2	0.0070607440529	0.000297298696507	-0.00676344535639
+UniRef50_B7V9G1		0.000452816463171	0.000134031787524	-0.000318784675647
+UniRef50_UPI00016C4BB1	hypothetical protein	5.45450439872e-05	0.00933914464854	0.00928459960455
+UniRef50_D5ALH8	Lipoprotein, putative	0.000426778464075	3.83368587575e-05	-0.000388441605318
+UniRef50_J3D958		2.18258229799e-06	7.51101544426e-07	-1.43148075356e-06
+UniRef50_H9KM75		2.05104008462e-05	8.52604236091e-06	-1.19843584853e-05
+UniRef50_F8GU79		0.000365378352266	0.000974994530444	0.000609616178178
+UniRef50_Q9KZV6	Polyphosphate kinase	1.12991347959e-05	0.000435525486461	0.000424226351665
+UniRef50_C1CQE1	UPF0340 protein SPT_0687	0.00683596222978	0.00687122181446	3.525958468e-05
+UniRef50_UPI0004660C96	amino acid lyase	2.35739754899e-05	4.37561243085e-05	2.01821488186e-05
+UniRef50_F0P462		0.0199940566202	0.00724468779945	-0.0127493688207
+UniRef50_UPI00036A8875	hypothetical protein	1.89414550079e-05	7.42446019108e-06	-1.15169948168e-05
+UniRef50_G8RED1	Virulence associated cell wall anchored protein SasG	0.000790249088534	0.000733886681627	-5.6362406907e-05
+UniRef50_UPI0004786393	sugar ABC transporter permease	0.000450298971242	0.000242576391471	-0.000207722579771
+UniRef50_U6KDN7		6.79627126107e-06	1.3320931857e-05	6.52466059593e-06
+UniRef50_H9KJ92		8.07850647621e-06	0.00402533782494	0.00401725931846
+UniRef50_UPI000470B6F6	DEAD DEAH box helicase	3.40017981456e-05	3.38543303062e-05	-1.474678394e-07
+UniRef50_B2UUU1	Purine nucleoside phosphorylase DeoD type	3.11788512056e-05	0.00748561484895	0.00745443599774
+UniRef50_P42693	Peptidyl prolyl cis trans isomerase	3.30346762676e-05	0.000372922758717	0.000339888082449
+UniRef50_UPI000472ECAA	UDP N acetylmuramate  alanine ligase	1.43197527948e-05	4.48430531292e-06	-9.83544748188e-06
+UniRef50_I7DYY9	Cell division protein ftsW	0.011309069864	0.0058243377205	-0.0054847321435
+UniRef50_A6LVT1		5.88595616769e-05	0.00154461696835	0.00148575740667
+UniRef50_P44951	Diaminobutyrate  2 oxoglutarate aminotransferase	0.000646073060019	0.00601066894547	0.00536459588545
+UniRef50_A6LVT2		0.000223309298637	0.000173206278698	-5.0103019939e-05
+UniRef50_Q3IVS3	RES domain containing protein	0.0168927602896	0.00427198393611	-0.0126207763535
+UniRef50_Q31I68	Ribosomal RNA small subunit methyltransferase H	3.24585674492e-05	9.17547092342e-06	-2.32830965258e-05
+UniRef50_M1MGS7	Polysaccharide deacetylase	0.000735039622704	0.00067283486121	-6.2204761494e-05
+UniRef50_G0GLQ7	ATP dependent RNA helicase HrpB	0.0036807713272	0.00054237715904	-0.00313839416816
+UniRef50_UPI00021982B8	hypothetical protein, partial	1.0419552553e-06	7.88390049002e-06	6.84194523472e-06
+UniRef50_M4R0W4	Metalloendopeptidase	0.000719024946491	0.00870234727323	0.00798332232674
+UniRef50_UPI00034A5B30	CoA transferase	5.39502526814e-06	0.000130757449534	0.000125362424266
+UniRef50_F9P4K2	Putative IS1167, transposase	7.60131633467e-05	0.000287330510962	0.000211317347615
+UniRef50_Q89SJ2	Blr2408 protein	3.28570837337e-05	2.81066409565e-05	-4.7504427772e-06
+UniRef50_Q7TTY7	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	1.19434505497e-05	1.7436368827e-05	5.4929182773e-06
+UniRef50_A3LIZ0		0.00112723936828	0.00118957248332	6.233311504e-05
+UniRef50_Q9I700	Beta alanine  pyruvate aminotransferase	0.00138355348105	0.00549564207452	0.00411208859347
+UniRef50_U9I2I4		0.000115738844174	4.8826129276e-05	-6.6912714898e-05
+UniRef50_B6V383	Tra8	0.00689361364181	0.00244381461703	-0.00444979902478
+UniRef50_P34030	DNA gyrase subunit A 	2.4072185288e-05	5.17667399579e-05	2.76945546699e-05
+UniRef50_Q9HXI4	Inositol 1 monophosphatase	0.00222246776555	0.00153974873813	-0.00068271902742
+UniRef50_UPI00046A5EF5	hypothetical protein	9.09709626986e-06	5.59322704789e-06	-3.50386922197e-06
+UniRef50_Q9RS69		0.001398096255	0.0953508854204	0.0939527891654
+UniRef50_Q7A7F8		0.0132944994987	0.00113479507977	-0.0121597044189
+UniRef50_Q16DP8	Chemotactic signal response protein, putative	0.000155483077426	7.58800115333e-05	-7.96030658927e-05
+UniRef50_P12782	Phosphoglycerate kinase, chloroplastic	5.52648229123e-06	5.55378641455e-05	5.00113818543e-05
+UniRef50_UPI0001BF6917	hypothetical protein SMAC_10596, partial	5.57706239498e-05	9.24753853381e-05	3.67047613883e-05
+UniRef50_Q3IVS7		0.00584008849251	0.00173947343312	-0.00410061505939
+UniRef50_Q3IVS4		0.0108890128815	0.00347740901605	-0.00741160386545
+UniRef50_Q3IVS5		0.00685401774908	0.00351592618433	-0.00333809156475
+UniRef50_Q0AVV3	3 oxoacyl [acyl carrier protein] synthase 3	8.5723474247e-05	1.69441993868e-05	-6.87792748602e-05
+UniRef50_Q3IVS1		0.0116515056726	0.00308732552268	-0.00856418014992
+UniRef50_P72161	D alanyl D alanine endopeptidase	0.00117281342928	0.000265068561785	-0.000907744867495
+UniRef50_K2AFL1	Type I secretion system ATPase 	0.000143487679681	7.49721877522e-05	-6.85154919288e-05
+UniRef50_G2T6A4		2.96037608201e-05	3.95346542416e-05	9.9308934215e-06
+UniRef50_Q390S8	Drug resistance transporter EmrB QacA subfamily	0.000553677575648	0.000245894354798	-0.00030778322085
+UniRef50_UPI00036D110C	hypothetical protein	1.35020815986e-05	1.07712195005e-05	-2.7308620981e-06
+UniRef50_A5UM36	Predicted RecB family exonuclease	0.00217010783799	0.000708941581512	-0.00146116625648
+UniRef50_UPI0004202255	hypothetical protein	1.73896353086e-06	2.50848362246e-06	7.695200916e-07
+UniRef50_E8SNW4		4.99012729997e-06	0.000259122942089	0.000254132814789
+UniRef50_UPI000417C86E	heme biosynthesis protein HemY	0.000408524562383	0.000298985546146	-0.000109539016237
+UniRef50_UPI0003B5B9BE	leucyl phenylalanyl tRNA  protein transferase	7.62334786049e-06	4.55687237237e-05	3.79453758632e-05
+UniRef50_UPI00047B9601	hypothetical protein	4.94408191124e-05	5.56414887692e-05	6.2006696568e-06
+UniRef50_UPI0004642A7D	hypothetical protein	3.52989399503e-06	9.10232190284e-06	5.57242790781e-06
+UniRef50_U3T4I1	Phosphate ABC transporter periplasmic substrate binding protein	7.96928575227e-06	0.00316811152918	0.00316014224343
+UniRef50_UPI00035E6AC5	hypothetical protein	9.67530528816e-06	0.000107748550853	9.80732455648e-05
+UniRef50_Q67P77	Polyribonucleotide nucleotidyltransferase	5.06178554828e-06	0.000938403352861	0.000933341567313
+UniRef50_UPI0003B791AF	hypothetical protein, partial	0.000259370525103	0.00023537418319	-2.3996341913e-05
+UniRef50_Q55141	Acetolactate synthase small subunit	5.38322496553e-05	0.000869621497587	0.000815789247932
+UniRef50_B9NXE5	Calcium binding hemolysin protein, putative	2.69894470644e-06	2.08375318347e-06	-6.1519152297e-07
+UniRef50_I6SUE0	ABC transporter permease	0.00386082320774	0.000411440696925	-0.00344938251082
+UniRef50_A6DDD4		7.01441746586e-06	6.78530106972e-05	6.08385932313e-05
+UniRef50_D6B6F5	AsnC family transcriptional regulator	4.30285250628e-05	9.07059798007e-05	4.76774547379e-05
+UniRef50_F4DU59	Protein disulfide isomerase like protein	0.000754391977334	0.00026057356341	-0.000493818413924
+UniRef50_Q4FS24	Putative phosphoenolpyruvate synthase regulatory protein	0.0012567595625	0.00535348288774	0.00409672332524
+UniRef50_A1B8P9		0.0054071639162	0.000472451118009	-0.00493471279819
+UniRef50_R5TVL0		0.000421775899907	5.79293995353e-05	-0.000363846500372
+UniRef50_C5YKS4		0.000221024832029	2.95695012863e-05	-0.000191455330743
+UniRef50_UPI000365F03D	hypothetical protein	2.18749084645e-06	4.2795898297e-06	2.09209898325e-06
+UniRef50_UPI0004724D34	hypothetical protein	7.11604608968e-05	0.000223713600204	0.000152553139307
+UniRef50_B7MTN6	Thiamine kinase	0.00464953880898	0.000613477546689	-0.00403606126229
+UniRef50_G7VSI0		0.000536709936758	0.000600644146164	6.3934209406e-05
+UniRef50_K6UQ90		2.29508420679e-05	3.37360097368e-05	1.07851676689e-05
+UniRef50_S4Y5B1		7.35964064076e-06	2.30738673337e-05	1.57142266929e-05
+UniRef50_A7ZR32		0.000247640459339	0.00830505590917	0.00805741544983
+UniRef50_C0BG39		1.91857779672e-05	3.6326643828e-05	1.71408658608e-05
+UniRef50_G1D4J4	Gp80	3.58055127465e-05	1.27466439132e-05	-2.30588688333e-05
+UniRef50_M2QS37		6.85153147839e-05	0.000218931917582	0.000150416602798
+UniRef50_A6M2E5	Sulfatase	6.28793984816e-05	0.00117363187898	0.0011107524805
+UniRef50_Q3IXU6		0.00898678526108	0.00166649951856	-0.00732028574252
+UniRef50_UPI000382350E	hypothetical protein	1.11296172875e-06	2.2717173487e-05	2.16042117582e-05
+UniRef50_M9VQS2		0.00254840494703	0.0022355551626	-0.00031284978443
+UniRef50_A7ADI2		6.82949170034e-06	0.000122076190981	0.000115246699281
+UniRef50_E5AMF6	Ammonium transporter   Methylammonium transporter	0.000554739073956	0.0138293256123	0.0132745865383
+UniRef50_A7ADI0		0.00057137422749	0.000247354713082	-0.000324019514408
+UniRef50_A6LZB2	FMN binding domain protein	0.000117841619826	0.000865210794316	0.00074736917449
+UniRef50_C6STS8		0.00231710819034	0.000708760092468	-0.00160834809787
+UniRef50_UPI00016AF87E	drug resistance transporter, EmrB QacA family protein	0.000132986964092	8.18336656089e-05	-5.11532984831e-05
+UniRef50_P75839	UPF0702 transmembrane protein YcaP	0.0012974823184	0.000512482593992	-0.000784999724408
+UniRef50_R1DSU7		5.62845953204e-05	8.57289507439e-05	2.94443554235e-05
+UniRef50_A2BIZ8	S adenosylmethionine synthase	0.00420662378716	0.000743635546835	-0.00346298824033
+UniRef50_B0V5M9		0.000145747486043	0.00450473292444	0.0043589854384
+UniRef50_P00909	Tryptophan biosynthesis protein TrpCF	0.00354166348736	0.000987725147341	-0.00255393834002
+UniRef50_O52733	D xylose proton symporter	0.000217730478771	0.00279486271425	0.00257713223548
+UniRef50_UPI00036FFA67	hypothetical protein, partial	1.84270076877e-06	4.87359662922e-05	4.68932655234e-05
+UniRef50_B0VLP6		0.000150324204205	0.00511818691729	0.00496786271309
+UniRef50_Q89IB6	Phosphoribosylformylglycinamidine synthase 1	1.57736152424e-05	1.17957107564e-05	-3.977904486e-06
+UniRef50_Q9RX17	Virulence factor related protein	0.000188664678812	0.0290940028905	0.0289053382117
+UniRef50_E0XV99		0.00161186082828	0.00115878914456	-0.00045307168372
+UniRef50_F8KHS4	RNA pseudouridylate synthase	0.0152563007978	0.00489953990726	-0.0103567608905
+UniRef50_B0RBL3	Glutamate 1 semialdehyde 2,1 aminomutase	7.20381821829e-06	3.68603920056e-05	2.96565737873e-05
+UniRef50_N9IVN2		0.00018718313497	0.00241221308046	0.00222502994549
+UniRef50_E3HHT4	TRAP transporter solute receptor, TAXI family protein 3	0.000138087347704	7.31628330408e-05	-6.49245146632e-05
+UniRef50_B3W6W6	Tryptophan synthase beta chain	6.12467410789e-06	7.18505671316e-06	1.06038260527e-06
+UniRef50_UPI00046EC1CC	hypothetical protein, partial	2.99796386583e-05	0.000393532742432	0.000363553103774
+UniRef50_D8JFA0		6.86338161594e-05	0.00770419082372	0.00763555700756
+UniRef50_Q2YTA2	Dephospho CoA kinase	0.0252264116564	0.0015810517227	-0.0236453599337
+UniRef50_H3UL21		7.66122588082e-05	0.000112351369412	3.57391106038e-05
+UniRef50_A6H1Q5	NADH quinone oxidoreductase subunit I	5.28618717908e-06	1.3946703939e-05	8.66051675992e-06
+UniRef50_Q9JZ44	30S ribosomal protein S1	0.00473930770146	0.00415312174538	-0.00058618595608
+UniRef50_H0PUC5	Two component heavy metal response transcriptional regulator, winged helix family	0.00107727720931	0.0104515065548	0.00937422934549
+UniRef50_A9KHN3	Acetylglutamate kinase	6.15181952171e-06	0.000110685052818	0.000104533233296
+UniRef50_A5WF94	3 ketoacyl CoA thiolase	0.00037247850688	0.0004832452634	0.00011076675652
+UniRef50_Q87G35	Putative ABC transporter ATP binding protein VPA1482	1.0731138227e-05	1.36252248552e-05	2.8940866282e-06
+UniRef50_UPI0003B5B988	transcription elongation factor NusA	8.66603011983e-06	9.72499789042e-06	1.05896777059e-06
+UniRef50_R5Q2U1		9.87033248813e-06	0.000402764410236	0.000392894077748
+UniRef50_D9VU00	Dihydrodipicolinate reductase	0.000189515550924	0.000295434752189	0.000105919201265
+UniRef50_G4NFF6		4.69505221762e-06	5.23073522468e-06	5.3568300706e-07
+UniRef50_UPI00037B10ED	hypothetical protein	1.03664558683e-05	1.23664829489e-05	2.0000270806e-06
+UniRef50_P45135	Protein mrp homolog	0.00261472174151	0.00140380855743	-0.00121091318408
+UniRef50_H8WB63		7.79566205882e-05	6.78238836697e-05	-1.01327369185e-05
+UniRef50_A6SU21	SugE like protein	0.00036296729697	0.00106740977781	0.00070444248084
+UniRef50_UPI000472171C	hypothetical protein	5.75802643635e-06	0.000175095303679	0.000169337277243
+UniRef50_UPI00035A1B1C	PREDICTED	4.17995665365e-05	6.65212298939e-05	2.47216633574e-05
+UniRef50_W8FIF9		0.000595244240245	0.000107753587976	-0.000487490652269
+UniRef50_W8WQR1		0.00177883345285	0.000618927228839	-0.00115990622401
+UniRef50_F7ZBE6	Protein MazG	0.00282656792687	0.000213739472998	-0.00261282845387
+UniRef50_P58213		0.00263703632446	0.00103544313746	-0.001601593187
+UniRef50_F2HMQ5	N acetylglucosamine 6 phosphate deacetylase	0.00643968479551	0.00750686997599	0.00106718518048
+UniRef50_D4MT97	Predicted Zn dependent protease	0.000778607141951	0.00377588455171	0.00299727740976
+UniRef50_UPI000475EEE1	glycine cleavage system protein H	0.000105456470977	3.40922136885e-05	-7.13642572885e-05
+UniRef50_E6SHW8	AMP dependent synthetase and ligase	6.18491516412e-05	0.0218503912219	0.0217885420703
+UniRef50_A3SWD6		8.63312469525e-05	4.86486535341e-05	-3.76825934184e-05
+UniRef50_B1MZ61	Glycine  tRNA ligase alpha subunit	0.00750344888311	0.00368714847912	-0.00381630040399
+UniRef50_UPI00037B0949	hypothetical protein	2.9874387981e-05	0.00011700641512	8.7132027139e-05
+UniRef50_A7ZV33	Oligoribonuclease	0.00463591576101	0.00412095890084	-0.00051495686017
+UniRef50_UPI0002889CD1	DNA mismatch repair protein MutS	2.09016360374e-06	1.92770969634e-05	1.71869333597e-05
+UniRef50_P0ABD2		0.00346254033123	0.00871030184367	0.00524776151244
+UniRef50_A6LZ65	Citrate transporter	0.000676984875882	0.00197202372133	0.00129503884545
+UniRef50_UPI000369A32E	MULTISPECIES	2.59107594025e-05	3.05659659181e-05	4.6552065156e-06
+UniRef50_I0IBX7		7.11389828123e-06	8.75323551486e-06	1.63933723363e-06
+UniRef50_F8F839	Acetolactate synthase large subunit	0.000159757637457	0.000727844668732	0.000568087031275
+UniRef50_C2QP87		4.33090153662e-06	0.000197756722234	0.000193425820697
+UniRef50_I3UCI5	Amino acid ABC transporter ATPase	0.00459576637191	0.000671174329992	-0.00392459204192
+UniRef50_W7CBE0		2.12403068332e-05	1.88669683467e-05	-2.3733384865e-06
+UniRef50_C1AA13	Twitching mobility protein	0.000378032691844	0.00459899377796	0.00422096108612
+UniRef50_G7M9D3	Cell envelope related transcriptional attenuator	0.000614103279842	0.00129906446137	0.000684961181528
+UniRef50_UPI0003B60D83	MFS transporter, partial	5.30939037082e-06	1.08479449422e-05	5.53855457138e-06
+UniRef50_UPI000465FF4A	chemotaxis protein CheW	4.72687631698e-05	6.80226776573e-05	2.07539144875e-05
+UniRef50_D3QH68	TetR family regulatory protein	0.0124031594772	0.00100485096299	-0.0113983085142
+UniRef50_Q9RR78	Protoheme IX farnesyltransferase	0.000127385598041	0.0715217508472	0.0713943652492
+UniRef50_A8AYI7	N acetyl gamma glutamyl phosphate reductase	0.00597085659553	0.00117359702781	-0.00479725956772
+UniRef50_UPI00037EBF1E	hypothetical protein	4.74514829637e-06	8.00084283989e-06	3.25569454352e-06
+UniRef50_A1TJ50	LemA family protein	0.000756090328883	0.00599918797664	0.00524309764776
+UniRef50_UPI000469FCDE	hypothetical protein	2.84008111162e-05	1.94116823011e-06	-2.64596428861e-05
+UniRef50_UPI00046F4540	hypothetical protein	1.19589525856e-05	3.81219079458e-05	2.61629553602e-05
+UniRef50_UPI0003C13F1D	PREDICTED	3.95178452896e-06	5.98970003707e-06	2.03791550811e-06
+UniRef50_I4D4X7		1.71431691839e-05	2.68668665335e-05	9.7236973496e-06
+UniRef50_UPI00037D4FA3	hypothetical protein	3.49578117886e-06	4.84222903558e-06	1.34644785672e-06
+UniRef50_Q7VQS0	UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00144037377352	0.000929769516578	-0.000510604256942
+UniRef50_H8GZE1		0.000325088451527	0.000148013018605	-0.000177075432922
+UniRef50_UPI00037860D6	hypothetical protein	3.78368230985e-06	7.34732696424e-06	3.56364465439e-06
+UniRef50_M5AS85		0.000122922046606	4.16781310766e-05	-8.12439155294e-05
+UniRef50_A5IQJ5	Serine type D Ala D Ala carboxypeptidase	0.00939782053142	0.00105495328523	-0.00834286724619
+UniRef50_K5C8L6	Protein containing YCII related domain protein	2.42150035936e-05	1.52145090263e-05	-9.0004945673e-06
+UniRef50_C5YUZ9		5.9843284562e-06	0.000309655671296	0.00030367134284
+UniRef50_F2AB45		0.000132479613354	0.000175479112631	4.2999499277e-05
+UniRef50_UPI00035D3DCC	hypothetical protein	0.00809009192981	0.000833790777094	-0.00725630115272
+UniRef50_Q8R7K0	L threonine 3 dehydrogenase	3.15836942269e-05	5.37379312655e-05	2.21542370386e-05
+UniRef50_P77258	N ethylmaleimide reductase	0.00322545585348	0.00226963593882	-0.00095581991466
+UniRef50_UPI000373C080	hypothetical protein	6.17915318855e-05	6.22455953001e-06	-5.55669723555e-05
+UniRef50_Q899P3	3 oxoacyl [acyl carrier protein] synthase 3	0.000167086727971	1.13043782201e-05	-0.000155782349751
+UniRef50_UPI00026577FF	PREDICTED	4.94030608008e-05	3.53276542031e-05	-1.40754065977e-05
+UniRef50_A7ZR14	Aminomethyltransferase	0.00341692137989	0.000817011054895	-0.002599910325
+UniRef50_UPI00037DABB6	hypothetical protein	7.94970773966e-06	1.26845829304e-05	4.73487519074e-06
+UniRef50_UPI00047B26D6	30S ribosomal protein S2	2.47912191462e-05	2.04337265274e-05	-4.3574926188e-06
+UniRef50_UPI00045613AA	hypothetical protein PFL1_01689	1.96701031738e-06	3.24760820219e-06	1.28059788481e-06
+UniRef50_Q48UW8	Endoribonuclease YbeY	0.00684940186393	0.00086061869733	-0.0059887831666
+UniRef50_UPI000429C143	hypothetical protein	2.31497690001e-05	3.39248674395e-05	1.07750984394e-05
+UniRef50_P25129	Attachment protein G3P	0.00171007626551	0.000282599717884	-0.00142747654763
+UniRef50_UPI0003B5C03B	phospholipase	2.88810149346e-06	3.16169349094e-06	2.7359199748e-07
+UniRef50_UPI000333464B		6.30860381999e-06	5.22704324019e-06	-1.0815605798e-06
+UniRef50_Q2NI01	MrtD	0.00404771513943	0.000801764810481	-0.00324595032895
+UniRef50_UPI00023B2A49		9.43784307624e-06	0.000105998975502	9.65611324258e-05
+UniRef50_M1MHF7		0.000120474251758	0.000772049052066	0.000651574800308
+UniRef50_D3E0C7	Energy converting hydrogenase B subunit N EhbN	0.00312451198043	0.00139386204036	-0.00173064994007
+UniRef50_UPI000364325F	hypothetical protein	2.25171448329e-05	6.85591439476e-05	4.60419991147e-05
+UniRef50_A3MLM0	Deoxycytidine triphosphate deaminase	0.00345872609701	0.00524939372253	0.00179066762552
+UniRef50_D2BB98	Fibrocystin L like protein	8.96630585457e-05	0.00018267476311	9.30117045643e-05
+UniRef50_F9Z2N2	4 hydroxybutyrate coenzyme A transferase	9.5084631958e-05	0.00647231565511	0.00637723102315
+UniRef50_UPI00047E641A	DNA mismatch repair protein MutL	2.89349967145e-06	7.04112293621e-06	4.14762326476e-06
+UniRef50_A3PH43	Cell wall hydrolase, SleB	0.0115765365149	0.00763292166524	-0.00394361484966
+UniRef50_C1N9N9	Predicted protein	0.00025538558276	0.000234832769311	-2.0552813449e-05
+UniRef50_A9AQ95	Major facilitator superfamily MFS_1	0.000487653976724	0.000471276931076	-1.6377045648e-05
+UniRef50_D3DZP5	Peptidase U62 family	0.00412830386917	0.00168235604338	-0.00244594782579
+UniRef50_A4KVC4		0.000126663061785	4.54971182763e-05	-8.11659435087e-05
+UniRef50_Q8CTX4		0.0147413890681	0.00468714336682	-0.0100542457013
+UniRef50_A4WT83	Cytochrome c, monohaem	0.00681282393176	0.00228123632505	-0.00453158760671
+UniRef50_UPI00031E94BD	hypothetical protein	2.93510762668e-06	3.32784438071e-06	3.9273675403e-07
+UniRef50_P37923	Chaperone protein FimC	0.00143599847274	0.00333289279099	0.00189689431825
+UniRef50_UPI00046D0AE5	30S ribosomal protein S2	2.05857262086e-05	1.88000622267e-05	-1.7856639819e-06
+UniRef50_UPI0003EF5726	hypothetical protein	0.00053118200715	0.00013981721516	-0.00039136479199
+UniRef50_UPI0004651F70	hypothetical protein, partial	2.67548122037e-05	1.95065787923e-05	-7.2482334114e-06
+UniRef50_Q8CTX9		0.022858387238	0.00840449975597	-0.014453887482
+UniRef50_U5MPW8	Lysophospholipase L2	0.000239672711771	0.00076881644043	0.000529143728659
+UniRef50_D8JMF9		0.000924580091871	0.00755114520272	0.00662656511085
+UniRef50_B3ZX35	Protein rlx	0.000167708729831	2.39912432695e-05	-0.000143717486561
+UniRef50_UPI0003F4A454	hypothetical protein TREMEDRAFT_73314	1.35854000757e-05	8.55599413717e-06	-5.02940593853e-06
+UniRef50_A6M075	Aminotransferase class III	0.000271311619178	0.0011845673694	0.000913255750222
+UniRef50_I3TH40	Aromatic compounds catabolic protein	1.19083831394e-05	0.000274005739699	0.00026209735656
+UniRef50_UPI0003B5A455	DNA directed RNA polymerase subunit alpha	3.79965656263e-05	4.4485943329e-05	6.4893777027e-06
+UniRef50_A4IQZ4	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000766244979111	0.00141810195599	0.000651856976879
+UniRef50_G8AR80		9.67391462525e-05	4.56503863882e-05	-5.10887598643e-05
+UniRef50_M4FRG3		2.71146734737e-06	3.01211863924e-06	3.0065129187e-07
+UniRef50_P55468	dTDP 4 dehydrorhamnose 3,5 epimerase	1.52914090798e-05	1.74027863386e-05	2.1113772588e-06
+UniRef50_P44740	Probable tRNA  N6) methyltransferase	0.00433784612183	0.000302888928405	-0.00403495719343
+UniRef50_Q2GCD8	DNA directed RNA polymerase subunit beta	7.83272066428e-06	1.32289192928e-05	5.39619862852e-06
+UniRef50_A0A017HAS6		4.09079559706e-05	4.9576697071e-05	8.6687411004e-06
+UniRef50_X8LV27		0.000457245603387	2.6248392111e-05	-0.000430997211276
+UniRef50_R5PFJ6	Polar amino acid transport system substrate binding protein	0.00115418676073	0.00145222052887	0.00029803376814
+UniRef50_P77376		0.00299894675964	1.96255174004e-05	-0.00297932124224
+UniRef50_P44916	Octaprenyl diphosphate synthase	0.00469452374331	0.0038524040279	-0.00084211971541
+UniRef50_P77375		0.00269817211897	0.000592608772976	-0.00210556334599
+UniRef50_B0V636	tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC	0.000211605975358	0.00807581517631	0.00786420920095
+UniRef50_Q9RAA9	DNA polymerase I	4.0017259366e-06	4.39816386934e-05	3.99799127568e-05
+UniRef50_V9VRV3		0.000470684686053	4.40166393752e-05	-0.000426668046678
+UniRef50_U3TV34	PoxB protein	0.000547081143264	0.000621719379354	7.463823609e-05
+UniRef50_Q83IY4	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00291151502156	0.0114241908351	0.00851267581354
+UniRef50_Q9HXY3	Putative zinc metalloprotease PA3649	0.000234120398045	0.000133728319328	-0.000100392078717
+UniRef50_UPI000463EF04	hypothetical protein	6.39683220799e-05	1.32062776682e-05	-5.07620444117e-05
+UniRef50_Y2C2K5	DNA gyrase subunit A	0.0131386696845	0.00409070558631	-0.00904796409819
+UniRef50_Q93JQ8	Argininosuccinate synthase	3.41590490957e-06	1.66304231786e-05	1.3214518269e-05
+UniRef50_G2JD71		0.0116667876823	0.011367094493	-0.0002996931893
+UniRef50_D3QGS2		0.0173237787265	0.0053662040065	-0.01195757472
+UniRef50_UPI0003FE9842	hypothetical protein	1.13086164475e-05	3.71690550768e-05	2.58604386293e-05
+UniRef50_UPI0003B556E0	long chain fatty acid  CoA ligase	6.95770188717e-06	5.96310452335e-06	-9.9459736382e-07
+UniRef50_A7TDI2	Lipoyl synthase, mitochondrial	5.41320472912e-06	3.53734973197e-05	2.99602925906e-05
+UniRef50_U0D4D4	Membrane associated protein uidC	0.000769312227561	0.000416917701458	-0.000352394526103
+UniRef50_C5D363	Ribosomal RNA small subunit methyltransferase A	5.38298523211e-05	2.21706798892e-05	-3.16591724319e-05
+UniRef50_Q5P9L5	GMP synthase [glutamine hydrolyzing]	3.01703763114e-06	1.5244162893e-05	1.22271252619e-05
+UniRef50_J3N4D6		0.000135203539437	1.04306696671e-05	-0.00012477286977
+UniRef50_Q9RZ46	Minor tail protein gp26 related protein	0.000131382037935	0.0570964054858	0.0569650234479
+UniRef50_A5EJD2	Leucyl phenylalanyl tRNA  protein transferase	2.10614009764e-05	7.51038630628e-05	5.40424620864e-05
+UniRef50_C6SU64		0.00451230808402	0.0035189023513	-0.00099340573272
+UniRef50_Q1GWT5	Adenosylhomocysteinase	0.00644578786367	0.00367440048073	-0.00277138738294
+UniRef50_P27254	Probable GTPase ArgK	0.00433737672237	0.000970529983431	-0.00336684673894
+UniRef50_C3KLK5	Peroxiredoxin 6	0.00018294959072	0.00312542071707	0.00294247112635
+UniRef50_Q0C1A6	Glutamate  tRNA ligase 1	3.0839922753e-05	1.49948512856e-05	-1.58450714674e-05
+UniRef50_G2JIJ8		0.00026583520342	0.00959431371148	0.00932847850806
+UniRef50_A6LX78		0.000249637318825	0.000958522200455	0.00070888488163
+UniRef50_F0MTD0		0.000101541655481	0.000522198196824	0.000420656541343
+UniRef50_U5MQI3	Thiamine biosynthesis lipoprotein ApbE	0.000241720225489	0.000402706678093	0.000160986452604
+UniRef50_A6LX73		0.000542087437476	0.00142943561335	0.000887348175874
+UniRef50_UPI00036C9D5C	hypothetical protein	3.42807379328e-06	1.23868235131e-05	8.95874971982e-06
+UniRef50_A6LX76		9.6957017689e-05	0.000155021892496	5.8064874807e-05
+UniRef50_A0A023S2E8	Peptidase M23	0.000163413847988	0.0107208243058	0.0105574104578
+UniRef50_F5M423	Methyltransferase type 12	0.00244802248696	0.00143316655903	-0.00101485592793
+UniRef50_K7RRT6	Kinase domain containing protein	0.000332144534658	0.00681451108194	0.00648236654728
+UniRef50_G8N5W7	Inner membrane translocator	0.000331566971752	0.0517546036916	0.0514230367198
+UniRef50_R0YL20	Filamentous hemagglutinin family N terminal domain protein	2.0441479545e-05	0.000416598926028	0.000396157446483
+UniRef50_A5G215		4.27756332583e-05	5.27364866198e-05	9.9608533615e-06
+UniRef50_P42811	Putative 26S protease regulatory subunit homolog MTBMA_c13930	0.00390983299523	0.000523414707951	-0.00338641828728
+UniRef50_I7ITF3	NADH ubiquinone oxidoreductase subunit	2.89300910424e-05	0.000100193976644	7.12638856016e-05
+UniRef50_M1MT68	Peptidase U61 LD carboxypeptidase A	0.000132296491424	0.00237108130814	0.00223878481672
+UniRef50_Q21M93	DNA directed RNA polymerase subunit beta	0.000242872230869	0.00785635682442	0.00761348459355
+UniRef50_Q6MMA3	Methionine  tRNA ligase	5.18714007246e-06	5.07760260994e-06	-1.0953746252e-07
+UniRef50_A7WZS8	Triosephosphate isomerase	0.00874139307289	0.0023482651768	-0.00639312789609
+UniRef50_R4ZRY7		0.00351529514249	0.00220619896211	-0.00130909618038
+UniRef50_UPI000475A496	hypothetical protein	2.17027666319e-05	7.08140739626e-05	4.91113073307e-05
+UniRef50_UPI00046686EA	amidohydrolase	5.20595082215e-06	2.72132776178e-05	2.20073267957e-05
+UniRef50_D8TSH0		1.49871458903e-06	6.29367143537e-07	-8.69347445493e-07
+UniRef50_B9DIX2	Probable cytosol aminopeptidase	0.0232752442312	0.00537076375886	-0.0179044804723
+UniRef50_E7PW89	Sensor histidine kinase	0.00538686648081	0.00187053297238	-0.00351633350843
+UniRef50_B9DZ45		7.47753003601e-06	1.97358986519e-05	1.22583686159e-05
+UniRef50_UPI0003B2E548	cation	0.00118403186161	0.000384445443551	-0.000799586418059
+UniRef50_A3PHP3		0.0141199920803	0.00279353398373	-0.0113264580966
+UniRef50_UPI000414700A	hypothetical protein	3.47647275921e-06	5.19125243252e-06	1.71477967331e-06
+UniRef50_UPI0003B3DD40	PhoP family transcriptional regulator	1.72375840845e-05	3.92648476137e-05	2.20272635292e-05
+UniRef50_UPI000371B1FC	hypothetical protein, partial	7.59373699621e-05	8.99978568127e-05	1.40604868506e-05
+UniRef50_D8IJC7	Glycerol dehydrogenase	0.0054114262241	0.00248742591079	-0.00292400031331
+UniRef50_D3F4J3	Transcriptional regulator, PadR like family	5.2823845517e-05	0.000141065002718	8.8241157201e-05
+UniRef50_Q03JI6	CRISPR associated endonuclease Cas9 2	0.00115235765919	0.000234159099664	-0.000918198559526
+UniRef50_UPI000426A521	dihydrolipoamide succinyltransferase	1.47003462106e-05	0.00015313215911	0.000138431812899
+UniRef50_UPI0004698685	hypothetical protein	0.000369071644759	0.000246267942491	-0.000122803702268
+UniRef50_A0A038FK84	Hydrogenase maturation protein	0.000525935371225	0.000106127815949	-0.000419807555276
+UniRef50_UPI00035FEE6E	hypothetical protein	3.06339169279e-05	0.000206624090628	0.0001759901737
+UniRef50_UPI0002F0DDC3	hypothetical protein	3.15398246399e-05	4.84395546885e-06	-2.66958691711e-05
+UniRef50_UPI00029B3C33	transcriptional regulator	4.88913368382e-05	9.12806244635e-05	4.23892876253e-05
+UniRef50_UPI000475F4D6	macrolide ABC transporter ATP binding protein	7.44858932525e-06	3.11569392971e-05	2.37083499718e-05
+UniRef50_Q98HW8	Prolipoprotein diacylglyceryl transferase	4.5585750548e-05	1.92599020538e-05	-2.63258484942e-05
+UniRef50_P32694		0.00219717304	0.000481698357678	-0.00171547468232
+UniRef50_J3LNJ2		4.03299839417e-05	6.20542239619e-05	2.17242400202e-05
+UniRef50_P32690		0.00355862427706	0.00406183868498	0.00050321440792
+UniRef50_UPI0001D2E55C	hypothetical protein	0.000297440178548	4.4053389224e-05	-0.000253386789324
+UniRef50_P20368	Alcohol dehydrogenase 1	0.0210891411543	0.0118515724647	-0.0092375686896
+UniRef50_A6LVI5		0.000145560149942	0.00127140806476	0.00112584791482
+UniRef50_UPI0002FA2E2D	hypothetical protein	1.48571235329e-05	0.000642035545351	0.000627178421818
+UniRef50_K6YA48		4.50189948246e-05	1.7822213622e-05	-2.71967812026e-05
+UniRef50_R4X5W4		1.92803158301e-05	3.28635601367e-05	1.35832443066e-05
+UniRef50_P15202	Peroxisomal catalase A	2.92721090668e-06	4.58969008916e-06	1.66247918248e-06
+UniRef50_UPI0003F5184A	hypothetical protein	1.84841271349e-05	8.66608380463e-06	-9.81804333027e-06
+UniRef50_A4WW59		0.0134029806027	0.00235960557507	-0.0110433750276
+UniRef50_UPI000475B0A4	hypothetical protein	0.000160792793231	1.64922777744e-05	-0.000144300515457
+UniRef50_A9U8B3	Predicted protein 	0.000633052988578	0.000277740817252	-0.000355312171326
+UniRef50_P35170	Phospho 2 dehydro 3 deoxyheptonate aldolase	1.37418085905e-05	0.00408223627824	0.00406849446965
+UniRef50_D5ALC4	Translation initiation factor IF 2	0.00791537229456	0.00212634230814	-0.00578902998642
+UniRef50_Q9KF52	Phosphoribosylamine  glycine ligase	0.00873395999244	0.00983266683442	0.00109870684198
+UniRef50_F0N1G5	Transcription repair coupling factor	2.90448311514e-05	0.00124593796769	0.00121689313654
+UniRef50_A4XNW6		0.00011636759666	0.000120882384097	4.514787437e-06
+UniRef50_S1SDR1	Chromosome  partitioning protein ParA   Sporulation initiation inhibitor protein Soj	9.93585703834e-06	1.65346783192e-05	6.59882128086e-06
+UniRef50_F6BHL2	PTS system transcriptional activator	0.000273815806719	0.000867767748339	0.00059395194162
+UniRef50_D8GIQ6		0.000334552566439	0.00124092368059	0.000906371114151
+UniRef50_I3XD08	Lipid A export ATP binding permease protein MsbA	0.00501219948662	0.00147898121014	-0.00353321827648
+UniRef50_UPI00016C3F49	ABC transporter, ATP binding protein	7.02707742863e-06	5.41720103033e-05	4.71449328747e-05
+UniRef50_L7WY79	Alpha beta hydrolase	0.0252169666268	0.0072301603583	-0.0179868062685
+UniRef50_Q9A759		0.0132160888016	0.00228452121088	-0.0109315675907
+UniRef50_Q1GFV5	Dihydrofolate reductase	0.0021714295625	0.00204370586388	-0.00012772369862
+UniRef50_C5WCX1	4 hydroxythreonine 4 phosphate dehydrogenase	0.0023813093082	0.000181547154827	-0.00219976215337
+UniRef50_N5EDX1	PTS system EIIBC component	3.90995404233e-05	8.90537071456e-05	4.99541667223e-05
+UniRef50_A6UZL3	DNA directed RNA polymerase subunit alpha	0.00164332231972	0.000847793763689	-0.000795528556031
+UniRef50_K0C9F8		0.0015743008541	0.000937513349825	-0.000636787504275
+UniRef50_O49213	GDP L fucose synthase 1	0.0127073595553	0.00371311231703	-0.00899424723827
+UniRef50_M4RRJ2		4.96604964797e-05	0.00104831326714	0.00099865277066
+UniRef50_V9WGF1	ABC type multidrug transport system, ATPase and permease component	0.00630132908893	0.00198410102441	-0.00431722806452
+UniRef50_H9UWR6	Modulator of drug activity 	0.00200672198272	0.000477601140485	-0.00152912084223
+UniRef50_P45548	Phosphotriesterase homology protein	0.00560536953716	0.000958512884603	-0.00464685665256
+UniRef50_G4NPZ1	Fructokinase	0.00622498596144	0.00138432027251	-0.00484066568893
+UniRef50_Q8XNN2	Cell division protein FtsX	0.000128542334456	0.00117514966866	0.0010466073342
+UniRef50_G7R423		0.00180953601005	0.000663633045389	-0.00114590296466
+UniRef50_F3U4W9	Transcriptional regulator, DeoR family protein	0.001871222442	0.000911275791129	-0.000959946650871
+UniRef50_S9Q9Z7	Mobile element protein	0.000165922696409	3.01487556894e-05	-0.00013577394072
+UniRef50_F0JDG6	TRAP transporter solute receptor, TAXI family	6.96490374455e-05	2.08220301174e-05	-4.88270073281e-05
+UniRef50_Q9GV41	Prostaglandin F synthase	0.018250567278	0.000242125855184	-0.0180084414228
+UniRef50_C6SP93		0.0011709474591	0.000694182930834	-0.000476764528266
+UniRef50_B9L064	Glutamine synthetase	0.000673646242146	0.000560393555103	-0.000113252687043
+UniRef50_C5N176		0.0147627752317	0.00122016400141	-0.0135426112303
+UniRef50_UPI0003694E1D	hypothetical protein	1.00899805813e-05	1.27616863184e-05	2.6717057371e-06
+UniRef50_Q9RWP2		0.000195588595265	0.0145760928126	0.0143805042173
+UniRef50_B9E1D0		0.000226239975069	0.00163665822815	0.00141041825308
+UniRef50_UPI0004785B9E	hypothetical protein	3.97371741995e-06	4.19851795213e-06	2.2480053218e-07
+UniRef50_UPI00036CFE81	hypothetical protein	8.7324294485e-05	3.28856828603e-05	-5.44386116247e-05
+UniRef50_B2HZJ1	AraC type DNA binding domain containing protein	0.000120602552348	0.0068632598413	0.00674265728895
+UniRef50_UPI00035F4FB6	hypothetical protein	2.64816217697e-05	4.01965301552e-05	1.37149083855e-05
+UniRef50_D5T0L1	Amino acid permease	0.00647173537807	0.000900170684477	-0.00557156469359
+UniRef50_A4WYK2		0.00264011848506	0.000366138483067	-0.00227398000199
+UniRef50_UPI0003618C0D	peptide ABC transporter substrate binding protein	7.31673146867e-06	2.79543939198e-05	2.06376624511e-05
+UniRef50_H0Q5L4	Cation transport protein	3.29791787381e-06	3.09737631216e-06	-2.0054156165e-07
+UniRef50_A3M2E6		0.000406144557364	0.0109397020628	0.0105335575054
+UniRef50_UPI0003622857	hypothetical protein, partial	1.95311573081e-05	1.19644442439e-05	-7.5667130642e-06
+UniRef50_A3M2E8		0.000688388659374	0.00842670190322	0.00773831324385
+UniRef50_A3M2E9		0.000401532881888	0.0139397382747	0.0135382053928
+UniRef50_U3T6D9	AsnC family transcriptional regulator	0.00214185130832	0.00286076911619	0.00071891780787
+UniRef50_B7V4F8		0.000797894149226	0.000274608754132	-0.000523285395094
+UniRef50_E6UQ90	Radical SAM domain protein	0.000503367236464	0.000282397569352	-0.000220969667112
+UniRef50_Q8X9H6		0.0027499416301	0.000983393405668	-0.00176654822443
+UniRef50_Q0TD44	L tartrate dehydratase subunit beta	0.00298680793723	0.000555454617915	-0.00243135331932
+UniRef50_L8A618	PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component	0.00559302893522	0.00480510153814	-0.00078792739708
+UniRef50_V5VGA0	Signal peptide protein	0.000482375317798	0.00744053354232	0.00695815822452
+UniRef50_UPI0002FD25A8	hypothetical protein	1.03213676319e-05	5.80055886582e-06	-4.52080876608e-06
+UniRef50_UPI000345C556	hypothetical protein	1.90228729827e-06	3.95467401604e-05	3.76444528621e-05
+UniRef50_A5UKY8	30S ribosomal protein S3Ae	0.00214846309697	0.000311954266055	-0.00183650883091
+UniRef50_UPI00036B4C40	hypothetical protein	2.36314494077e-06	3.52251802691e-06	1.15937308614e-06
+UniRef50_UPI0003C13594		7.83916616203e-06	2.02570109128e-05	1.24178447508e-05
+UniRef50_R4LIM7	CaiB BaiF family protein	0.000779716256765	0.000302978971342	-0.000476737285423
+UniRef50_A0A047EGF5	PE PGRS family protein PE_PGRS16	2.75805450284e-05	1.02153843029e-05	-1.73651607255e-05
+UniRef50_UPI0003B5C426	histidinol dehydrogenase	3.70578946143e-06	1.24753297879e-05	8.76954032647e-06
+UniRef50_Q5HR00	Protein NrdI	0.0400234532401	0.00761684633096	-0.0324066069091
+UniRef50_F2U7G5		1.24538683352e-05	2.4525802818e-05	1.20719344828e-05
+UniRef50_UPI0003677280	hypothetical protein	5.88755624474e-05	1.53735176875e-05	-4.35020447599e-05
+UniRef50_A7GU01	Cyclic pyranopterin monophosphate synthase	4.63457530436e-06	0.000233547243964	0.00022891266866
+UniRef50_UPI00046E8F79	hypothetical protein	3.61649492995e-05	6.82403336467e-05	3.20753843472e-05
+UniRef50_X2JGW4	TraU	9.30859965289e-05	7.13691384723e-06	-8.59490826817e-05
+UniRef50_G2TBP0	Nitrogenase	0.000789924351728	0.00158846123968	0.000798536887952
+UniRef50_Q9AHT6	Pneumococcal vaccine antigen A	0.00706728428228	0.00302953898844	-0.00403774529384
+UniRef50_UPI0003696E91	hypothetical protein	0.000274125845592	3.72634466828e-05	-0.000236862398909
+UniRef50_Q88W26	ATP dependent protease ATPase subunit HslU	0.0210215097947	0.00690060970102	-0.0141209000937
+UniRef50_Q04796	4 hydroxy tetrahydrodipicolinate synthase	6.38135487892e-06	0.00265543206509	0.00264905071021
+UniRef50_B0TPS5	Tryptophan halogenase	0.000106035390125	0.0101073707526	0.0100013353625
+UniRef50_UPI000467BC4F	hypothetical protein	2.29075201941e-05	2.27960693294e-05	-1.114508647e-07
+UniRef50_X0UMF5	Marine sediment metagenome DNA, contig	3.53271395578e-05	6.24333595275e-05	2.71062199697e-05
+UniRef50_B7UWL8	Dihydroorotate dehydrogenase 	0.000271635660848	0.000889916893864	0.000618281233016
+UniRef50_E8NJT6		0.000323994161222	0.00125673687512	0.000932742713898
+UniRef50_UPI0003775EDE	hypothetical protein	1.7347508144e-05	5.59435333146e-05	3.85960251706e-05
+UniRef50_P57872	Ribosome binding factor A	0.00213671314445	0.000473770115279	-0.00166294302917
+UniRef50_P0AC31	Cell division protein FtsX	0.00411021748974	0.000584656618942	-0.0035255608708
+UniRef50_G7LXG1		0.000485693888023	0.00246629693841	0.00198060305039
+UniRef50_J0XSC7		0.0015099439554	0.00124890603647	-0.00026103791893
+UniRef50_R4K915		0.00113541765153	0.000321578989328	-0.000813838662202
+UniRef50_Q5P303		2.37272025452e-05	3.34429445262e-05	9.715741981e-06
+UniRef50_UPI000367F4BF	hypothetical protein	2.92375073799e-06	0.000262438311301	0.000259514560563
+UniRef50_UPI000363BEF2	hypothetical protein	2.19077214907e-05	2.33127021734e-05	1.4049806827e-06
+UniRef50_A4V9J4		0.00156904273663	0.000225100814816	-0.00134394192181
+UniRef50_UPI00025579C9	chemotaxis specific methylesterase	5.22905125578e-05	8.45946131378e-06	-4.3831051244e-05
+UniRef50_UPI00036CE600	hypothetical protein	4.00324902463e-06	7.38106950841e-06	3.37782048378e-06
+UniRef50_E1V509	APC family transporter	8.11216308394e-05	0.000308011314695	0.000226889683856
+UniRef50_UPI000476EDB0	hemolysin	0.000200848242997	0.000241291351039	4.0443108042e-05
+UniRef50_Q9I351	GTP cyclohydrolase 1 2	0.00017292847707	9.58650885809e-05	-7.70633884891e-05
+UniRef50_UPI0003836B4E	PREDICTED	1.8892736349e-06	1.2705037091e-06	-6.187699258e-07
+UniRef50_G7U615		0.00177708788598	0.00393897233991	0.00216188445393
+UniRef50_Q8XD75		0.00291742715009	0.000559638810673	-0.00235778833942
+UniRef50_G2JM22	Phosphoserine phosphatase	0.000176670509603	0.0067144240808	0.0065377535712
+UniRef50_Q8CU16		0.00889676507234	0.00242772330841	-0.00646904176393
+UniRef50_D3QDN7	Ribosomal RNA small subunit methyltransferase D	0.0227171741392	0.0092560174895	-0.0134611566497
+UniRef50_Q8CU14		0.0086117363047	0.00267260679592	-0.00593912950878
+UniRef50_A1JPN5	Bifunctional polymyxin resistance protein ArnA	0.00304913333159	0.00101477494726	-0.00203435838433
+UniRef50_W4K6C3		0.000218705924928	0.000133457800591	-8.5248124337e-05
+UniRef50_A6LT03		0.000454880619572	0.00363205344347	0.0031771728239
+UniRef50_W1MFW3	30S ribosomal protein S3	0.000220752040266	0.000379016092237	0.000158264051971
+UniRef50_UPI0004765EE6	hypothetical protein	3.74475322924e-06	7.25023700227e-06	3.50548377303e-06
+UniRef50_A6LT04		0.000160632335681	0.00241357626916	0.00225294393348
+UniRef50_UPI000377D609	hypothetical protein	3.72871906153e-05	7.44468186073e-06	-2.98425087546e-05
+UniRef50_J7I7M7	ATPase P 	5.46403774584e-05	0.00024764419815	0.000193003820692
+UniRef50_UPI0004737F94	penicillin binding protein	2.35078221763e-05	8.5829013104e-06	-1.49249208659e-05
+UniRef50_B2UY66	Hydroxyethylthiazole kinase	0.000437292736761	0.000773354708095	0.000336061971334
+UniRef50_UPI0003B5F72E	hypothetical protein	2.31943133735e-05	2.16866228638e-05	-1.5076905097e-06
+UniRef50_X5ETF8		6.21593215276e-05	0.000465592646253	0.000403433324725
+UniRef50_D4HB94	Precorrin 4 C methyltransferase	0.000494178443363	0.00335819149171	0.00286401304835
+UniRef50_A0EVL6	Conjugal transfer entry exclusion protein	0.000172630787585	0.0140873932711	0.0139147624835
+UniRef50_T8R2K9		5.81989159472e-05	0.000165630675506	0.000107431759559
+UniRef50_UPI00035C3E51	hypothetical protein	4.6876413051e-05	1.18670201193e-05	-3.50093929317e-05
+UniRef50_K4IEB3		1.84841797943e-05	2.66556421873e-05	8.171462393e-06
+UniRef50_A3U1Q1		0.00030934269791	2.67209744524e-05	-0.000282621723458
+UniRef50_Q6A9J7	UPF0042 nucleotide binding protein PPA0813	0.000129571849717	0.00639956210508	0.00626999025536
+UniRef50_E2ZUC7		0.000548096082648	0.00136356430583	0.000815468223182
+UniRef50_B2UUB5		0.000339497954356	0.00345125684779	0.00311175889343
+UniRef50_UPI00047DB1F7	hypothetical protein	0.000190874833008	0.000579052363126	0.000388177530118
+UniRef50_W7QIQ7		0.000824313707996	8.02313945608e-05	-0.000744082313435
+UniRef50_UPI00034F4369	PREDICTED	3.61234068909e-05	6.66468107359e-05	3.0523403845e-05
+UniRef50_R9E884		7.80367687379e-05	3.82989422721e-05	-3.97378264658e-05
+UniRef50_C3G5A7	N acyl L amino acid amidohydrolase	0.023767918192	0.00748991295746	-0.0162780052345
+UniRef50_Q3IW43		0.00852816128941	0.00285121577913	-0.00567694551028
+UniRef50_O32047	Protein translocase subunit SecDF	0.00491284626127	0.00200275155189	-0.00291009470938
+UniRef50_A9M2X4		0.000149796027328	0.00337903974459	0.00322924371726
+UniRef50_M1XDM0	Transcriptional regulator, PadR family	0.000137665750975	3.88810176642e-05	-9.87847333108e-05
+UniRef50_UPI0003709A53	hypothetical protein	2.72097038311e-05	2.06987466682e-05	-6.5109571629e-06
+UniRef50_M9VF07		0.000269203179129	0.00537062162821	0.00510141844908
+UniRef50_E8SEY3	Salicylate hydroxylase	0.0195753234114	0.00505767729586	-0.0145176461155
+UniRef50_Q7NF32	Cobyrinic acid A,C diamide synthase	1.15150508965e-05	0.000231998288631	0.000220483237734
+UniRef50_D9VBV2		3.0226667626e-05	7.29568360309e-06	-2.29309840229e-05
+UniRef50_C4Z354	3 hydroxybutyryl CoA dehydrogenase	0.00525289662392	0.0021461628737	-0.00310673375022
+UniRef50_UPI0004720BAF	hypothetical protein	9.86559358188e-06	2.20013592118e-05	1.21357656299e-05
+UniRef50_Q6FF05	Primosomal protein N  directs replication fork assembly at D loops, ATP dependent	6.66151745013e-05	0.00547911417802	0.00541249900352
+UniRef50_U4PWH4		2.61913615361e-05	9.67662576361e-05	7.05748961e-05
+UniRef50_UPI000476026B	molybdate ABC transporter permease	1.08740502436e-05	2.03846595269e-05	9.5106092833e-06
+UniRef50_Q5Z022		9.19778025388e-06	3.08586985076e-05	2.16609182537e-05
+UniRef50_UPI00035E2839	hypothetical protein	6.20286605998e-05	1.42023384128e-05	-4.7826322187e-05
+UniRef50_Q8NV29		0.00167854202316	0.000378611160516	-0.00129993086264
+UniRef50_UPI0003B76DAF	hypothetical protein, partial	5.86624226013e-05	0.000185537711529	0.000126875288928
+UniRef50_I0K765		2.99919173565e-06	9.97400191537e-05	9.67408274181e-05
+UniRef50_UPI00037AA1C6	hypothetical protein	1.03627822539e-05	0.000143725003496	0.000133362221242
+UniRef50_UPI000378C483	hypothetical protein	3.63403721345e-05	1.55630744224e-05	-2.07772977121e-05
+UniRef50_UPI0002036836	PREDICTED	2.10659427784e-06	2.09633401176e-06	-1.026026608e-08
+UniRef50_UPI0003757D0F	MULTISPECIES	9.02825398134e-05	1.25944082343e-05	-7.76881315791e-05
+UniRef50_UPI00047C43EF	aldolase	9.38607570695e-05	3.54022881647e-05	-5.84584689048e-05
+UniRef50_Q9ZFA2	Citrate synthase 	0.00189165414357	0.000244781162499	-0.00164687298107
+UniRef50_UPI00036F9430	hypothetical protein	1.72330868108e-06	8.89045572132e-07	-8.34263108948e-07
+UniRef50_A0PXX7	Energy coupling factor transporter ATP binding protein EcfA1	1.90840454177e-05	1.07806509533e-05	-8.3033944644e-06
+UniRef50_UPI000463F674	LysR family transcriptional regulator	4.07849323506e-05	1.82997335935e-05	-2.24851987571e-05
+UniRef50_A9GHR6	ATP synthase subunit alpha	3.46090557299e-06	1.67729048833e-05	1.33119993103e-05
+UniRef50_G8V6N7	Biotin requiring enzyme family protein	0.0177941312052	0.00182205806779	-0.0159720731374
+UniRef50_Q3IV12	Generic methyltransferase	0.0168872947449	0.0076908158703	-0.0091964788746
+UniRef50_Q2NUA4	Tetraacyldisaccharide 4 kinase	0.00044230752588	0.000205318682645	-0.000236988843235
+UniRef50_A0A020BXU1		0.00183375044762	0.000514750464887	-0.00131899998273
+UniRef50_A8FUS8	Ribonuclease H	3.0670614704e-05	2.14413082736e-05	-9.2293064304e-06
+UniRef50_P0AFQ4	Inner membrane transport permease YbhS	0.00201641393612	0.000171032840855	-0.00184538109526
+UniRef50_A0A011Q1R0	Penicillin binding protein 2	6.61016970975e-06	1.08703352759e-05	4.26016556615e-06
+UniRef50_M4YYZ9	N acetylmannosamine kinase	0.00031332632128	0.0028438433873	0.00253051706602
+UniRef50_P76242	Inner membrane transport protein YeaN	0.00193503657893	0.000361800467574	-0.00157323611136
+UniRef50_O34697	Bacitracin export ATP binding protein BceA	0.0238720119757	0.00701968867353	-0.0168523233022
+UniRef50_UPI00046CAEE5	hypothetical protein	9.49954501457e-06	4.4821030518e-05	3.53214855034e-05
+UniRef50_I0C6Y6	Transcriptional regulator, DeoR family	0.00669752210289	0.00292593595104	-0.00377158615185
+UniRef50_P07821	Iron hydroxamate import ATP binding protein FhuC	0.00252707112737	0.00411384065468	0.00158676952731
+UniRef50_H2A564	Rhodanese like domain protein	2.23314349762e-05	6.90758787823e-05	4.67444438061e-05
+UniRef50_UPI0002379BF3	putative ABC transporter ATP binding protein	1.06766380645e-06	1.19829617885e-05	1.0915297982e-05
+UniRef50_A6UAR8		0.00106491864536	0.000521100819942	-0.000543817825418
+UniRef50_UPI0004630536	hypothetical protein	3.69160562131e-05	4.3336120697e-05	6.4200644839e-06
+UniRef50_UPI000472F551	glutathione ABC transporter permease	8.33015615551e-06	4.32652529801e-05	3.49350968246e-05
+UniRef50_UPI000474A020	hypothetical protein	0.000229424931439	1.64636102715e-05	-0.000212961321167
+UniRef50_A6LU95	N anthranilate isomerase	0.000861953350356	0.00157845820507	0.000716504854714
+UniRef50_A5UL11		0.000626932597754	0.000326316801329	-0.000300615796425
+UniRef50_B0VDS9		0.000356695022163	0.00460131300926	0.0042446179871
+UniRef50_I0C2H0	Fructose repressor	0.0190266677709	0.00342176491526	-0.0156049028556
+UniRef50_UPI00037044F7	hypothetical protein	2.04945012722e-05	3.95562186573e-05	1.90617173851e-05
+UniRef50_Q9RX08	DNA polymerase III subunit alpha	9.50575706519e-05	0.0466162262768	0.0465211687061
+UniRef50_I5CJV7	Transposase domain containing protein 	0.0001546207381	1.45714138554e-05	-0.000140049324245
+UniRef50_Q890Z7	Anaerobic sulfite reductase subunit B	0.00170184379314	0.000584149937975	-0.00111769385516
+UniRef50_G7M6C4	Cof like hydrolase	0.000417881168475	0.00133074844544	0.000912867276965
+UniRef50_P52230	Thioredoxin 1	0.00733842840842	0.00116572383629	-0.00617270457213
+UniRef50_D2JGC9		3.20748250189e-05	6.09621683251e-05	2.88873433062e-05
+UniRef50_Q6AAD6	4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000440647678038	0.0066796443758	0.00623899669776
+UniRef50_Q2FK09	Sensory transduction protein LytR	0.0101882651183	0.00307315277977	-0.00711511233853
+UniRef50_V4RNU3		0.000138278525101	3.58271834081e-05	-0.000102451341693
+UniRef50_Q3J3X3	Phage head tail adaptor, putative, SPP1 family	0.000829279947929	0.00114145741562	0.000312177467691
+UniRef50_UPI00047EEAC2	hypothetical protein	2.89191585537e-05	4.23854558058e-05	1.34662972521e-05
+UniRef50_E0S3Q3	Transposase ISNCY family	0.00244767348249	0.00844206815596	0.00599439467347
+UniRef50_P76339	Probable sensor like histidine kinase YedV	0.00273382373586	0.000926959934109	-0.00180686380175
+UniRef50_E8KBP6	HD domain protein	1.93752345385e-05	6.8460525385e-05	4.90852908465e-05
+UniRef50_W8RAH0	Chromosome partitioning protein ParA	0.000804825322096	0.000144439925708	-0.000660385396388
+UniRef50_A9BWW9		0.000138120329047	3.4948807227e-05	-0.00010317152182
+UniRef50_V5SYK3		0.000978136046142	9.83296465662e-05	-0.000879806399576
+UniRef50_UPI00037371BE	hypothetical protein	3.55152543249e-05	3.13352797972e-05	-4.1799745277e-06
+UniRef50_UPI00035DE041	hypothetical protein, partial	7.8577041694e-05	4.3827569275e-05	-3.4749472419e-05
+UniRef50_UPI000363ADAC	hypothetical protein	1.20842181212e-05	1.39860044735e-05	1.9017863523e-06
+UniRef50_A3T2U3	ATPase, ParA type	0.000716992915669	0.000204190183557	-0.000512802732112
+UniRef50_K7VU62	Cystathionine beta lyase	0.00354406439227	0.000577151541614	-0.00296691285066
+UniRef50_A0R8M3		2.48671920367e-05	0.000814727585167	0.00078986039313
+UniRef50_Q15U36	Glucose 1 phosphate adenylyltransferase 1	8.43638884382e-06	1.16837701088e-05	3.24738126498e-06
+UniRef50_UPI0003711421	hypothetical protein, partial	2.89252710521e-05	0.000568038685446	0.000539113414394
+UniRef50_E0SHR7	FMN oxidoreductase	0.000149796027328	0.00791985845902	0.00777006243169
+UniRef50_Q14IN1	Ribonuclease H	5.20510364846e-05	2.1239030553e-05	-3.08120059316e-05
+UniRef50_O27880	Indolepyruvate oxidoreductase subunit IorA	0.00351684692208	0.00117737541649	-0.00233947150559
+UniRef50_Q3J4T8		0.0117290348146	0.00306153973976	-0.00866749507484
+UniRef50_UPI0003B38ED8	hypothetical protein	1.48594296024e-05	1.9669223942e-05	4.8097943396e-06
+UniRef50_A9BIU9	Adenine deaminase	1.56474287692e-05	5.210868697e-06	-1.04365600722e-05
+UniRef50_P75958	Lipoprotein releasing system transmembrane protein LolE	0.00204653761508	0.000155293622362	-0.00189124399272
+UniRef50_Q3J4T7		0.0120217623574	0.00460647465408	-0.00741528770332
+UniRef50_D3E2W0		0.00310428531721	0.0010222135713	-0.00208207174591
+UniRef50_UPI0002557D47	DctM 	0.000907048296985	0.000276001105979	-0.000631047191006
+UniRef50_O27112	2 oxoglutarate synthase subunit KorA	0.00316795934309	0.000823005031183	-0.00234495431191
+UniRef50_G7TFM6	Amine oxidase	0.000106835657221	0.0599940262991	0.0598871906419
+UniRef50_D2ZP63		0.00200768700183	0.000287757963199	-0.00171992903863
+UniRef50_UPI000401523E	diguanylate cyclase	3.40525466333e-06	1.29603755335e-06	-2.10921710998e-06
+UniRef50_H6LBB1	Electron transfer flavoprotein alpha subunit EtfA	0.000278032970735	0.000180254347023	-9.7778623712e-05
+UniRef50_E3ZMP6	Cell surface protein	1.18200917222e-05	0.0010359870371	0.00102416694538
+UniRef50_J4X1R2	Putative membrane protein	1.20413591511e-05	1.64745249288e-05	4.4331657777e-06
+UniRef50_UPI000440E981	PREDICTED	1.93799723915e-05	1.69142195791e-05	-2.4657528124e-06
+UniRef50_UPI000318D5FE	hypothetical protein	0.00213687398943	0.000378377486972	-0.00175849650246
+UniRef50_B7M3G3		1.33139026437e-05	0.000660180362594	0.00064686645995
+UniRef50_P0AE35	Arginine ABC transporter permease protein ArtQ	0.00235971576538	0.00108327315113	-0.00127644261425
+UniRef50_UPI0001FFE7BF	acyl CoA dehydrogenase	4.38257993095e-06	0.000124749010128	0.000120366430197
+UniRef50_A6TUJ7		0.000105149300518	0.000959316160476	0.000854166859958
+UniRef50_B9KSZ0		0.00292341767493	0.00385195702429	0.00092853934936
+UniRef50_C5N523	ACT domain protein	0.0146640856738	0.00575587703724	-0.00890820863656
+UniRef50_UPI000225C163	chromosome partitioning protein ParB	3.12097597433e-05	0.000173086506712	0.000141876746969
+UniRef50_W1GGS3		0.000463278450397	0.000242062873115	-0.000221215577282
+UniRef50_Q3MGL3	Aspartate  tRNA ligase	3.34598481438e-06	4.2961483543e-05	3.96154987286e-05
+UniRef50_A3V850		0.000112996146319	2.13294147053e-05	-9.16667316137e-05
+UniRef50_Q9JTA4	UPF0210 protein NMA1908	0.00614767040159	0.0126126001678	0.00646492976621
+UniRef50_UPI0003B6C834	threonine transporter RhtB	4.93465431983e-05	4.28579450692e-05	-6.4885981291e-06
+UniRef50_C5Y7E8		1.87384259278e-05	0.000267157465989	0.000248419040061
+UniRef50_UPI000362A601	hypothetical protein, partial	0.000122170979702	0.000501954739708	0.000379783760006
+UniRef50_UPI0002F03396	diguanylate cyclase	2.54246341767e-05	0.000128626861802	0.000103202227625
+UniRef50_UPI00037317AF	hypothetical protein	0.000166355634444	6.05166811913e-06	-0.000160303966325
+UniRef50_UPI00047845D5	hypothetical protein	1.40033665522e-05	7.6470230508e-06	-6.3563435014e-06
+UniRef50_UPI00016C3F6F	3,4 dihydroxy 2 butanone 4 phosphate synthase	9.96639223858e-06	7.17689807651e-05	6.18025885265e-05
+UniRef50_UPI000467903E	hypothetical protein	0.000210560120857	6.45534527369e-05	-0.00014600666812
+UniRef50_UPI0004097C5D	dihydroxyacetone kinase	1.44571803628e-05	0.000328584640648	0.000314127460285
+UniRef50_P43089	5 aminolevulinate synthase	0.029981804835	0.0080266322494	-0.0219551725856
+UniRef50_X1NAG8	Marine sediment metagenome DNA, contig	6.18516036731e-05	6.43431417699e-05	2.4915380968e-06
+UniRef50_Q8Q0R3	Ribose 5 phosphate isomerase A	0.00449712607076	0.000860145743281	-0.00363698032748
+UniRef50_UPI00047E1233	hypothetical protein	9.89136849959e-05	0.000176431345211	7.75176602151e-05
+UniRef50_R5HZ00	FeS assembly ATPase SufC	4.32996613314e-05	0.000156804322936	0.000113504661605
+UniRef50_UPI0003A3F0F8	amino acid transporter	7.66288213797e-06	0.00105497944913	0.00104731656699
+UniRef50_P39288	Epoxyqueuosine reductase	0.00388006912436	0.0013528605921	-0.00252720853226
+UniRef50_O27481	Putative branched chain amino acid aminotransferase	0.00401571415734	0.000689645913971	-0.00332606824337
+UniRef50_F3Z639		1.14578448277e-06	1.68231043761e-05	1.56773198933e-05
+UniRef50_A5VSQ0	2 oxoglutarate dehydrogenase E1 component	1.97192859365e-06	8.50994875812e-06	6.53802016447e-06
+UniRef50_P00414	Cytochrome c oxidase subunit 3	8.06272780121e-05	3.05286715821e-05	-5.009860643e-05
+UniRef50_Q4Q523		2.97172479437e-06	3.92121974942e-05	3.62404726998e-05
+UniRef50_X0PDD7	Peptide deformylase	9.71339564776e-06	1.7940665365e-05	8.22726971724e-06
+UniRef50_UPI000378FEFA	hypothetical protein	1.13220560962e-06	1.88859797553e-05	1.77537741457e-05
+UniRef50_A4WTH0	Probable chemoreceptor glutamine deamidase CheD	0.00197953362132	0.000750273933735	-0.00122925968759
+UniRef50_Q3BXK0	Glutamate cysteine ligase	0.00682856069596	0.000713423282344	-0.00611513741362
+UniRef50_F6G433		3.257925277e-05	7.69225404854e-05	4.43432877154e-05
+UniRef50_F4A483	Diacylglycerol kinase	0.000849385732915	0.00116153329845	0.000312147565535
+UniRef50_Q985W1	Ribonuclease H	6.31285508871e-05	1.97568981501e-05	-4.3371652737e-05
+UniRef50_O27611	Conserved protein	0.00314821317319	0.000111650928232	-0.00303656224496
+UniRef50_UPI00036239CD	hypothetical protein	1.36653782323e-05	6.88930198833e-06	-6.77607624397e-06
+UniRef50_B2TQA9	Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.000906275243296	0.00132656550976	0.000420290266464
+UniRef50_UPI00036BC4EC	hypothetical protein	1.15347164934e-05	3.96672393342e-05	2.81325228408e-05
+UniRef50_H3WPI1	PF05656 family protein	0.00563577704316	0.000413030356916	-0.00522274668624
+UniRef50_UPI00046CCA8E	2 oxoglutarate dehydrogenase	2.06569841217e-06	5.49445307193e-06	3.42875465976e-06
+UniRef50_E8RVY2	TraU family protein	0.000128982009405	2.70537941938e-05	-0.000101928215211
+UniRef50_UPI00047CFDC7	hypothetical protein	0.000669169116119	0.000307108941899	-0.00036206017422
+UniRef50_Q0AHR1	Transcriptional regulator, BolA protein family	3.42875322389e-05	0.000100170681224	6.58831489851e-05
+UniRef50_U1XA26	Transcriptional regulator, GntR family	0.000340497262286	0.000623279077877	0.000282781815591
+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.000389623864651	0.00111345693467	0.000723833070019
+UniRef50_A5W0Y9	Peptidase M19, renal dipeptidase	0.000910900227576	0.000441720928674	-0.000469179298902
+UniRef50_UPI000262D0AF	flagellin domain containing protein	8.89558631426e-07	1.44968304461e-06	5.60124413184e-07
+UniRef50_UPI00045612E6	hypothetical protein PFL1_02986	8.32100956431e-06	4.75055804066e-06	-3.57045152365e-06
+UniRef50_B7GN27	Non canonical purine NTP pyrophosphatase	7.11228475285e-05	4.72602452093e-05	-2.38626023192e-05
+UniRef50_A0A020D642		0.000480645200655	0.000135418379173	-0.000345226821482
+UniRef50_A0Q1U2	Fe S oxidoreductase, putative	0.000217179360525	0.00113204028315	0.000914860922625
+UniRef50_R6K577	Tagatose 6 phosphate kinase	0.000756387696718	0.000465857776198	-0.00029052992052
+UniRef50_UPI0003C1230B	PREDICTED	4.29456931009e-05	3.29882314976e-05	-9.9574616033e-06
+UniRef50_Q8H389		0.000111611159966	7.10802059353e-05	-4.05309540307e-05
+UniRef50_D8IDT0	GCN5 related N acetyltransferase	0.000286218033601	0.0012913760692	0.0010051580356
+UniRef50_Q5FKM6	Enolase	8.08360214071e-06	7.9821167834e-05	7.17375656933e-05
+UniRef50_I9J361		6.43013775942e-06	7.72572455111e-06	1.29558679169e-06
+UniRef50_M1MMR7		0.000113586556327	0.00231629506579	0.00220270850946
+UniRef50_Q9FFR3	6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic	0.00957532512218	0.00249574819102	-0.00707957693116
+UniRef50_A0QVT2	Ribonuclease J	8.34858475724e-05	6.71450867644e-05	-1.6340760808e-05
+UniRef50_UPI0002631A0F	hypothetical protein	3.15136279201e-05	6.62057655609e-06	-2.4893051364e-05
+UniRef50_UPI000329A978		1.76345374863e-05	1.85718624917e-05	9.373250054e-07
+UniRef50_D5ECW5	DNA gyrase subunit A	7.50767945313e-06	1.52780582458e-05	7.77037879267e-06
+UniRef50_V7EPQ5		0.000635423978179	7.25448766512e-05	-0.000562879101528
+UniRef50_V5VD87	CsuC	0.00049091202226	0.00637057955153	0.00587966752927
+UniRef50_Q83RN5	Respiratory nitrate reductase 1 beta chain	0.0130631665218	0.00769058512479	-0.00537258139701
+UniRef50_A0Q3H7	Riboflavin biosynthesis protein RibBA	0.000703444196473	0.00594479967104	0.00524135547457
+UniRef50_A5CW02	Aspartate 1 decarboxylase	0.00195251373544	0.00258331700717	0.00063080327173
+UniRef50_J0HLU4		3.96350842689e-05	5.30765240372e-06	-3.43274318652e-05
+UniRef50_UPI00037A3165	hypothetical protein	8.51964567906e-05	0.000206530757731	0.00012133430094
+UniRef50_P98005	Cytochrome c oxidase polypeptide I+III	1.20147082364e-05	0.000233315847471	0.000221301139235
+UniRef50_A3PJY9	Permease YjgP YjgQ family protein	0.00290655966406	0.000544816646995	-0.00236174301706
+UniRef50_UPI0003724245	hypothetical protein	2.61761189804e-05	5.68407584567e-06	-2.04920431347e-05
+UniRef50_F0NRM0	L serine ammonia lyase alpha subunit	0.027628888944	0.00575126855223	-0.0218776203918
+UniRef50_UPI00035C1D9A	hypothetical protein	1.15619133208e-05	1.31923547672e-05	1.6304414464e-06
+UniRef50_Q5HLA7	Aldehyde dehydrogenase family protein	0.0120725487064	0.00261686892626	-0.00945567978014
+UniRef50_B7UXY9	Phosphoribosylformylglycinamidine cyclo ligase	0.00402223697511	0.00353197093744	-0.00049026603767
+UniRef50_UPI0002559CF6	3 hydroxyacyl CoA dehydrogenase, NAD binding, partial	3.32290101768e-06	6.01455813173e-06	2.69165711405e-06
+UniRef50_K8WXC5		0.00472208075826	0.000697598516207	-0.00402448224205
+UniRef50_Q329T6	Low affinity potassium transport system protein kup	0.00269636664894	0.000978881537668	-0.00171748511127
+UniRef50_UPI000316D8EB	hypothetical protein	1.21712265769e-05	1.3040543299e-05	8.693167221e-07
+UniRef50_UPI00047B6E0E	hypothetical protein	6.90033211016e-05	1.8592424065e-05	-5.04108970366e-05
+UniRef50_UPI000467AAAB	hypothetical protein, partial	2.61350446619e-05	2.5936688778e-05	-1.983558839e-07
+UniRef50_C5B3S3		0.000346932172054	1.55494757438e-05	-0.00033138269631
+UniRef50_A6QIH4		0.0108062073194	0.000723224584158	-0.0100829827352
+UniRef50_UPI00036099F9	hypothetical protein	5.18719236938e-06	7.33354441549e-06	2.14635204611e-06
+UniRef50_Q82A73		5.18579275325e-06	0.000171812841632	0.000166627048879
+UniRef50_W6RBC1	Phage head tail adaptor	8.56390434695e-05	2.83898724044e-05	-5.72491710651e-05
+UniRef50_UPI000374F5C0	hypothetical protein	0.00104929150267	0.000157499247499	-0.000891792255171
+UniRef50_A5UKP1	Phosphate specific transport system accessory protein PhoU	0.00256938102455	0.000330578401339	-0.00223880262321
+UniRef50_Q6FA90	C4 dicarboxylate transport protein	0.000130768818311	0.00769777025911	0.0075670014408
+UniRef50_UPI0000557712	hypothetical protein	0.000806042233127	0.000496545819752	-0.000309496413375
+UniRef50_H8LWD1		0.000546557388125	0.00899508968218	0.00844853229405
+UniRef50_R4Z0C6		3.19874306103e-05	2.92172094424e-05	-2.7702211679e-06
+UniRef50_UPI00035EB969	hypothetical protein	0.000130926497138	1.63102001417e-05	-0.000114616296996
+UniRef50_F2I582	ABC transporter, ATP binding protein	0.00400947208509	0.00449927617088	0.00048980408579
+UniRef50_Q9RWC7	Arginine repressor	2.05030760174e-05	0.0490244909542	0.0490039878782
+UniRef50_R7GNX0	HD domain protein	4.18116326724e-06	1.27309878811e-05	8.54982461386e-06
+UniRef50_A4WTR4	Phosphate starvation inducible E	0.000440719366681	0.00020691321173	-0.000233806154951
+UniRef50_UPI0002377C07	hypothetical protein	5.5961263498e-06	6.46246036565e-06	8.6633401585e-07
+UniRef50_I6Z4Y8	Respiratory nitrate reductase gamma chain	0.00232991819099	0.000264858031563	-0.00206506015943
+UniRef50_W0YWT0	ClpB protein	0.00085439184778	0.000370933662252	-0.000483458185528
+UniRef50_UPI0002FBC9AA	hypothetical protein	1.39439386122e-05	0.00128504374505	0.00127109980644
+UniRef50_B7GVA1	Isochorismatase family protein	0.000222924796565	0.00449429127886	0.0042713664823
+UniRef50_B0BVB8	ATP synthase subunit alpha	3.76144854743e-06	1.09413747784e-05	7.17992623097e-06
+UniRef50_B9KPP5		0.000664983016083	0.000642278913615	-2.2704102468e-05
+UniRef50_A9M0F2	Phopholipase D family protein	0.000200820709593	0.00375602960254	0.00355520889295
+UniRef50_Q9I3N7	Cytochrome c biogenesis ATP binding export protein CcmA	1.18708463366e-05	0.0003565191612	0.000344648314863
+UniRef50_Q1C0H2	LPS assembly protein LptD	0.00311222543277	0.000668272851976	-0.00244395258079
+UniRef50_A8Z171	Iron  ABC superfamily ATP binding cassette transporter, membrane protein	0.0122701626388	0.00319249001276	-0.00907767262604
+UniRef50_J7L817		8.58291885866e-05	3.10747414477e-05	-5.47544471389e-05
+UniRef50_B5F050	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.00244704840753	0.00112973423778	-0.00131731416975
+UniRef50_P00562	Bifunctional aspartokinase homoserine dehydrogenase 2	0.00356742452155	0.000928145252598	-0.00263927926895
+UniRef50_D1BPV2	NADH dehydrogenase (Quinone)	0.00557201668545	0.000808824841434	-0.00476319184402
+UniRef50_T1Y7R5	Exotoxin	0.0107203719702	0.000259429023591	-0.0104609429466
+UniRef50_D4HF81		0.000513450790143	0.00417035759763	0.00365690680749
+UniRef50_A0A019G9E1		0.000137493789792	3.59338853264e-05	-0.000101559904466
+UniRef50_Q88M14	Sensory box protein GGDEF family protein	0.00130555479402	0.000397775225145	-0.000907779568875
+UniRef50_UPI0003C11D1D	PREDICTED	4.33494446818e-06	8.10228691002e-06	3.76734244184e-06
+UniRef50_A6LSU0		0.00147186649583	0.000301856938874	-0.00117000955696
+UniRef50_Q9RXT7		0.000134816424593	0.0487960403192	0.0486612238946
+UniRef50_O05405		0.000169276228183	0.000540378587781	0.000371102359598
+UniRef50_A1R3Q2	Oxidoreductase, short chain dehydrogenase reductase family	0.000746990077563	0.000248862392015	-0.000498127685548
+UniRef50_Q2FEK1	Urease accessory protein UreF	0.010174376124	0.0022122604365	-0.0079621156875
+UniRef50_UPI000369649D	hypothetical protein	3.86524171518e-05	5.99467452293e-06	-3.26577426289e-05
+UniRef50_F9ZKH5		0.00138560393776	0.00573147846512	0.00434587452736
+UniRef50_UPI0004560A6D	hypothetical protein PFL1_03815	8.58460959689e-06	4.73221201602e-05	3.87375105633e-05
+UniRef50_UPI0003717F60	hypothetical protein	1.39342773528e-05	1.56849409362e-05	1.7506635834e-06
+UniRef50_UPI000262CA60	putative metallo beta lactamase superfamily hydrolase	9.05756029937e-05	1.78696737748e-05	-7.27059292189e-05
+UniRef50_UPI00031698A8	hypothetical protein	3.84641626733e-05	5.35980756056e-05	1.51339129323e-05
+UniRef50_G3XD23	UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase	0.00140492932784	0.00805729262555	0.00665236329771
+UniRef50_UPI0003EBD820	PREDICTED	1.01356469488e-05	3.50046208615e-06	-6.63518486265e-06
+UniRef50_UPI0003B543B8	DNA repair protein RecO	1.88932769844e-05	7.07775829709e-05	5.18843059865e-05
+UniRef50_A5F9G1	D erythrose 4 phosphate dehydrogenase	9.80357273885e-05	7.88609471736e-05	-1.91747802149e-05
+UniRef50_R7PYB9		0.00236616801194	0.00096355155339	-0.00140261645855
+UniRef50_P42603	Inner membrane protein YgjV	0.000909282410253	0.000341406595601	-0.000567875814652
+UniRef50_K7S0H1	ABC transporter, ATP binding protein	0.000335783379478	0.0022399126024	0.00190412922292
+UniRef50_F7WZ70	Pyruvate dehydrogenase E1 component	0.00306425572455	0.000831695608479	-0.00223256011607
+UniRef50_W4YDX4		1.7601158752e-06	1.00429786053e-05	8.2828627301e-06
+UniRef50_Q8DPY7		0.00010673496386	0.00409440213052	0.00398766716666
+UniRef50_UPI0003B64F06	ferredoxin	1.37440511857e-05	7.85623693334e-05	6.48183181477e-05
+UniRef50_UPI00046F9C26	hypothetical protein	3.0566364927e-06	4.27552439953e-06	1.21888790683e-06
+UniRef50_B9KX10	ABC branched chain amino acid transporter, periplasmic ligand binding protein	0.00737266898855	0.00129502666476	-0.00607764232379
+UniRef50_F4FEB2		5.04279518057e-05	2.1626015424e-05	-2.88019363817e-05
+UniRef50_A4VM39	Ribosomal RNA large subunit methyltransferase K L	0.000667081276874	6.01621686068e-06	-0.000661065060013
+UniRef50_A5UMN6	5 methylthioadenosine S adenosylhomocysteine deaminase	0.00539999653416	0.00113830807499	-0.00426168845917
+UniRef50_D2N3E8		0.00727990303111	0.00131547843319	-0.00596442459792
+UniRef50_X5IEK4	Putative endolysin	2.02668763943e-05	1.31232973832e-05	-7.1435790111e-06
+UniRef50_Q0SU50	Amino acid permease family protein	0.000397119635086	0.000548397254166	0.00015127761908
+UniRef50_P76190	Murein DD endopeptidase MepH	0.0044566552171	0.00169463581939	-0.00276201939771
+UniRef50_D3E0L0	Signal recognition particle receptor FtsY	0.00263159152802	0.00175435637597	-0.00087723515205
+UniRef50_Q92I89	Holliday junction ATP dependent DNA helicase RuvA	1.31395885076e-05	1.0231567865e-05	-2.9080206426e-06
+UniRef50_O58097	Glutamine synthetase	1.1422456592e-05	3.80688895014e-05	2.66464329094e-05
+UniRef50_UPI000376B86D	hypothetical protein, partial	2.02506642053e-06	8.03169847841e-05	7.82919183636e-05
+UniRef50_UPI00046E5399	hypothetical protein	3.41774287753e-06	3.07907293182e-05	2.73729864407e-05
+UniRef50_B2I0Y3	Pirin related protein	1.66951234573e-05	0.010076730023	0.0100600348995
+UniRef50_Q9ZMR3		6.91415627371e-06	0.00316286868	0.00315595452373
+UniRef50_P41655		0.00335253391129	0.000637288368734	-0.00271524554256
+UniRef50_C6SPD8		0.00280884788994	0.00227967742469	-0.00052917046525
+UniRef50_O83814	Methionine aminopeptidase	6.41370610009e-05	4.44907856664e-05	-1.96462753345e-05
+UniRef50_Q11D29	Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.000558621510939	0.000673337516189	0.00011471600525
+UniRef50_UPI00036E30BF	hypothetical protein	6.51880157751e-05	0.000100871184456	3.56831686809e-05
+UniRef50_Q5FGN1	Nucleoside diphosphate kinase	6.66409132438e-05	4.10090700368e-05	-2.5631843207e-05
+UniRef50_A3JG79		1.85666981672e-05	8.76374894491e-05	6.90707912819e-05
+UniRef50_UPI00028934E4	ATP	2.45014181697e-05	0.000597978106378	0.000573476688208
+UniRef50_Q31H63	Argininosuccinate synthase	0.000149523082772	0.0417382965823	0.0415887734995
+UniRef50_UPI00001AD637	argininosuccinate lyase	2.21550511147e-05	1.036985068e-05	-1.17852004347e-05
+UniRef50_Q5HLL0		0.0103387982479	0.00216742869009	-0.00817136955781
+UniRef50_X0XAV8	Marine sediment metagenome DNA, contig	7.13304183765e-06	1.32045135111e-05	6.07147167345e-06
+UniRef50_J7M7S6	Myo inositol 1 monophosphatase	0.00804700835095	0.000598040847185	-0.00744896750376
+UniRef50_D3E3I9	PIN domain containing protein	0.00502850448435	0.00113589816871	-0.00389260631564
+UniRef50_Q2P0Z5	Threonine  tRNA ligase	0.000676327370072	0.00732687038877	0.0066505430187
+UniRef50_E7DN70	QueT	0.00012504245977	6.67539899331e-05	-5.82884698369e-05
+UniRef50_D3NWU2		3.63143974444e-05	0.000184380877328	0.000148066479884
+UniRef50_Q11CE6	Carbohydrate ABC transporter substrate binding protein, CUT1 family	0.0132830818129	0.00317025403489	-0.010112827778
+UniRef50_UPI00035EA204	hypothetical protein	4.16443398662e-06	1.25382889291e-05	8.37385494248e-06
+UniRef50_UPI0001913039	uracil permease	2.9188008718e-05	5.61869564545e-05	2.69989477365e-05
+UniRef50_UPI0004642331	hypothetical protein	3.39186437955e-05	9.5308680581e-06	-2.43877757374e-05
+UniRef50_P31153	S adenosylmethionine synthase isoform type 2	0.000193177148966	0.0408117810812	0.0406186039322
+UniRef50_A0A059DU66		0.000126640320636	2.27813549029e-05	-0.000103858965733
+UniRef50_O27593	Probable cyclic pyranopterin monophosphate synthase	0.0022033810447	0.00181163821134	-0.00039174283336
+UniRef50_D8ULY9		1.64409741602e-05	1.40213674558e-05	-2.4196067044e-06
+UniRef50_P21801	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	0.0111938238184	0.00140531154552	-0.00978851227288
+UniRef50_UPI00021A5A53	PREDICTED	2.17659913751e-06	1.60076595174e-05	1.38310603799e-05
+UniRef50_J9FKP1	Carboxynorspermidine decarboxylase 	0.000182430208749	4.76569967588e-05	-0.00013477321199
+UniRef50_W8EP13	Lysyl tRNA synthetase	0.000193252212719	0.00762652728641	0.00743327507369
+UniRef50_P64305	Non canonical purine NTP pyrophosphatase	0.000135402968864	2.24834329492e-05	-0.000112919535915
+UniRef50_A0A025ZG79		0.00214409904947	0.000427574874335	-0.00171652417514
+UniRef50_I4YMG6	Putative integral membrane protein	1.09453542477e-05	3.88808569883e-05	2.79355027406e-05
+UniRef50_Q3K2Q5	Biotin synthase	0.000196949211577	0.000220804133112	2.3854921535e-05
+UniRef50_R4ZQK4	D alanyl transfer protein DltB	0.00522016037898	0.0033477670034	-0.00187239337558
+UniRef50_A0A023KPW6	Glycosyl transferase	0.00171665141021	0.000289053871314	-0.0014275975389
+UniRef50_B9KWR4		0.000322637597309	0.000403794786929	8.115718962e-05
+UniRef50_F0VBH0		1.74170711526e-05	3.07747069636e-07	-1.7109324083e-05
+UniRef50_K0N7F3	PTS system beta glucoside specific EIIBCA component	0.00049822895389	0.00188657675705	0.00138834780316
+UniRef50_Q86AV6	Citrate synthase	1.42607312939e-05	4.14398055873e-05	2.71790742934e-05
+UniRef50_D7CVN0	3 isopropylmalate dehydrogenase	0.00149813201041	0.0371061978325	0.0356080658221
+UniRef50_UPI000472AC29	hypothetical protein	0.00013666428954	5.86009946937e-05	-7.80632948463e-05
+UniRef50_P0ABP7	Protein DedA	0.00576454358894	0.00660322188901	0.00083867830007
+UniRef50_F5LXH0		9.04874786253e-05	0.000182627804264	9.21403256387e-05
+UniRef50_L6Z8K5	Protease3	0.00213118616159	0.00128890362074	-0.00084228254085
+UniRef50_B8GW56	Chromosome replication regulator protein HdaA	3.15549431916e-05	1.03228587873e-05	-2.12320844043e-05
+UniRef50_UPI00037B2D8F	hypothetical protein	4.62367343728e-06	2.46205245112e-05	1.99968510739e-05
+UniRef50_U3U2D6		2.03499320393e-05	1.6214525928e-05	-4.1354061113e-06
+UniRef50_Q1JDL9	Transcriptional regulator, RpiR family	0.000358954940073	0.000340750044459	-1.8204895614e-05
+UniRef50_W6RVE8		0.000324486523369	0.000349487225087	2.5000701718e-05
+UniRef50_E6SIX1		1.53094863252e-05	5.54346221637e-05	4.01251358385e-05
+UniRef50_C6SS20		0.00479605736104	0.00186250625388	-0.00293355110716
+UniRef50_P75967		0.00338005953882	0.00193017807743	-0.00144988146139
+UniRef50_Q8Y6R2	ADP dependent  NAD(P)H hydrate dehydratase	6.42351111368e-06	0.00299564812779	0.00298922461668
+UniRef50_P32106		5.88001167273e-05	0.00341640894245	0.00335760882572
+UniRef50_P75968		0.00101934772063	0.000256425503788	-0.000762922216842
+UniRef50_UPI00035E4836	peptidase	1.05197627732e-05	1.24900849326e-05	1.9703221594e-06
+UniRef50_B4L348	GI15483	5.51782985938e-06	1.76005615544e-05	1.2082731695e-05
+UniRef50_W5X806	50S ribosomal protein L17	6.22852846008e-05	3.92058001902e-05	-2.30794844106e-05
+UniRef50_H8GWD9		0.0002066529136	0.0440874896079	0.0438808366943
+UniRef50_Q9JRW7	Biotin synthase	2.36308858513e-05	0.0046013747539	0.00457774386805
+UniRef50_Q3IVK2	Zinc containing alcohol dehydrogenase	0.0024183178032	0.000179888348343	-0.00223842945486
+UniRef50_A0A034SZW0	Periplasmic nitrate reductase	0.00219633009431	0.000941956684181	-0.00125437341013
+UniRef50_UPI00016A43A2	UvrD REP helicase, partial	1.90573123998e-05	6.07811427936e-06	-1.29791981204e-05
+UniRef50_A3PNU0	Transcriptional regulator, LacI family	0.000741885186622	0.000185733776861	-0.000556151409761
+UniRef50_P37629		0.00289293591284	0.00205699626279	-0.00083593965005
+UniRef50_Q7VMF9	Macrolide export ATP binding permease protein MacB	4.7595927298e-06	4.01318801426e-06	-7.4640471554e-07
+UniRef50_UPI000471FEB2	XRE family transcriptional regulator	0.000200158434538	2.1075159957e-05	-0.000179083274581
+UniRef50_P37626		0.00338511652885	0.000489949704206	-0.00289516682464
+UniRef50_Q2K7T8	NADP dependent isocitrate dehydrogenase protein	0.000291456144111	0.000142945309896	-0.000148510834215
+UniRef50_UPI00029B17E0	2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase	0.000506608118671	0.000586715218531	8.010709986e-05
+UniRef50_V9WQ71	NTP pyrophosphohydrolase	0.00313738584051	0.000787511213846	-0.00234987462666
+UniRef50_UPI000367676A	hypothetical protein	0.00045831906472	0.000248952463497	-0.000209366601223
+UniRef50_J7QB63	Phosphatidylserine decarboxylase	0.00434771783878	0.00167207892025	-0.00267563891853
+UniRef50_U5NRM8		0.00144632495964	3.50248339198e-05	-0.00141130012572
+UniRef50_C3XBE9		2.65564693367e-05	9.38416933714e-06	-1.71722999996e-05
+UniRef50_U5NRM4		0.000611372706377	0.00136942694941	0.000758054243033
+UniRef50_I0C7C2		0.0242463613767	0.00556411395311	-0.0186822474236
+UniRef50_Q6F916		0.000172688573019	0.00664396455174	0.00647127597872
+UniRef50_K5YPQ7	Antirepressor	0.000111030153255	5.13591881625e-05	-5.96709650925e-05
+UniRef50_UPI0003675C2C	hypothetical protein	6.88365544355e-06	4.01607167027e-05	3.32770612591e-05
+UniRef50_P31666		0.00194635886307	0.000850143664969	-0.0010962151981
+UniRef50_P31667		0.00468031726846	0.00215327818878	-0.00252703907968
+UniRef50_P31665		0.00599109353116	0.000552277806127	-0.00543881572503
+UniRef50_A0A029L0Z7		1.4769321213e-05	2.44195210172e-05	9.6501998042e-06
+UniRef50_P31122	Sugar efflux transporter	0.00355331312164	0.00183082134546	-0.00172249177618
+UniRef50_W6RZK7		0.00191499707281	0.00328636636805	0.00137136929524
+UniRef50_U6IHI4	Iron sulfur cluster assembly 2	0.00022540843364	3.24957928703e-05	-0.00019291264077
+UniRef50_UPI00016A2A91	molybdate ABC transporter, inner membrane subunit, partial	5.14838327607e-05	3.00919595891e-05	-2.13918731716e-05
+UniRef50_UPI000237A7F7	ribose transport ATP binding protein rbsA	1.12291695496e-05	4.81652021619e-06	-6.41264933341e-06
+UniRef50_A6LS74		0.000455155043195	0.00195423961778	0.00149908457458
+UniRef50_A1WV96	50S ribosomal protein L17	0.0010270630181	0.000471250061484	-0.000555812956616
+UniRef50_UPI0002F511F9	cytochrome C oxidase subunit I	2.34837024184e-05	5.81608022103e-05	3.46770997919e-05
+UniRef50_UPI0002EF1560	hypothetical protein	0.000146579550984	5.34077317215e-05	-9.31718192625e-05
+UniRef50_Q9HAC7-2	Isoform 2 of Succinate  hydroxymethylglutarate CoA transferase	4.34065004056e-06	6.64553308336e-05	6.2114680793e-05
+UniRef50_B9DMC7	Probable DNA directed RNA polymerase subunit delta	0.0234248692929	0.00678419508854	-0.0166406742044
+UniRef50_A7NIN1	ABC type Fe3+ transport system periplasmic component like protein	0.00887795138041	0.00213392869809	-0.00674402268232
+UniRef50_Q67QM6	DNA polymerase IV	4.58332637207e-06	7.75986979504e-06	3.17654342297e-06
+UniRef50_H9K7I8		6.29486853175e-06	1.00511977771e-05	3.75632924535e-06
+UniRef50_M1Q601	LrgA associated membrane protein LrgB	0.00051887991244	0.00178289803844	0.001264018126
+UniRef50_A6M2R8	Methyl accepting chemotaxis sensory transducer	0.000123901309249	0.00112842700767	0.00100452569842
+UniRef50_A6LRR4	Transglutaminase domain protein	0.000147647714023	0.00121598044327	0.00106833272925
+UniRef50_UPI000469DD13	sodium	7.67961067116e-06	6.44994865916e-06	-1.229662012e-06
+UniRef50_P33359	Putative osmoprotectant uptake system permease protein YehW	0.0064251743672	0.000490544273213	-0.00593463009399
+UniRef50_Q7VSN2	Glutamyl tRNA amidotransferase subunit A	0.00390828144006	0.011695989121	0.00778770768094
+UniRef50_P94365	Cytochrome bd ubiquinol oxidase subunit 2	4.74583978653e-06	0.00170592006081	0.00170117422102
+UniRef50_A1SSP3	Enoyl CoA hydratase isomerase	0.000440645123179	0.0173390147563	0.0168983696331
+UniRef50_Q31ZL5		0.00244402267224	0.001338706696	-0.00110531597624
+UniRef50_S5UWP0		3.57043957672e-05	7.73783798756e-06	-2.79665577796e-05
+UniRef50_UPI0003F0706F	PREDICTED	4.08481407525e-05	3.88109934604e-05	-2.0371472921e-06
+UniRef50_UPI000378D1C1	hypothetical protein	4.46801038563e-06	1.02676531094e-05	5.79964272377e-06
+UniRef50_E8XQD0	Membrane dipeptidase	0.00180707326623	0.00105808716017	-0.00074898610606
+UniRef50_Q6AHF5	Uroporphyrinogen decarboxylase	3.80016201938e-06	0.000552938929852	0.000549138767833
+UniRef50_Q8TLM8	Phosphoglycerate mutase family protein	0.00019259489227	0.00484339743989	0.00465080254762
+UniRef50_UPI000348926B	hypothetical protein	0.000211288581341	4.05701150131e-05	-0.000170718466328
+UniRef50_P0AAN2	Hydrogenase 2 operon protein HybE	0.00324828063679	6.06287930931e-05	-0.0031876518437
+UniRef50_UPI00037952D8	hypothetical protein	2.23817272306e-06	9.568088302e-05	9.34427102969e-05
+UniRef50_Q2FH23	Response regulator ArlR	0.0306033020347	0.0127436778101	-0.0178596242246
+UniRef50_UPI00040D89D5	sulfate adenylyltransferase	1.07728854519e-05	2.570842933e-05	1.49355438781e-05
+UniRef50_A5ULA7		0.00402175811097	0.00100593505449	-0.00301582305648
+UniRef50_Q8ZRS2	Blue copper oxidase CueO	0.00507004495628	0.000895272110715	-0.00417477284557
+UniRef50_UPI0004719AE4	hypothetical protein, partial	1.83916153186e-05	0.000547543355475	0.000529151740156
+UniRef50_A3PMC5	Phospholipid glycerol acyltransferase	0.00503451109147	0.00215997440201	-0.00287453668946
+UniRef50_UPI00046CAC84	hypothetical protein	4.66243464573e-05	0.000339602379294	0.000292978032837
+UniRef50_D2NRM3	Protein containing TPR repeat	0.000384792232431	0.000351346751597	-3.3445480834e-05
+UniRef50_Q46798		0.00308711497791	0.00116320769473	-0.00192390728318
+UniRef50_A3PMP3	Transcriptional regulator, TetR family	0.00882731890626	0.00341831295303	-0.00540900595323
+UniRef50_U6KR03		3.53885893544e-05	0.000203666693245	0.000168278103891
+UniRef50_UPI0003B4D513	PAS sensor protein	2.3163689332e-05	3.5139786727e-06	-1.96497106593e-05
+UniRef50_Q9ZMF0	Putative methylthiotransferase jhp_0270	0.000185193577052	0.00556239335953	0.00537719978248
+UniRef50_B2A326	PSP1 domain protein	0.000799849696465	0.0017809911636	0.000981141467135
+UniRef50_D2J6L2	Universal stress protein family	0.0154269218415	0.00186751771791	-0.0135594041236
+UniRef50_UPI00035E6D97	citrate lyase subunit beta	3.0812789128e-05	1.67595734249e-05	-1.40532157031e-05
+UniRef50_F0YB09		1.98816036622e-05	1.66793935042e-05	-3.202210158e-06
+UniRef50_P08192	Bifunctional protein FolC	0.00222773795582	0.00452931611072	0.0023015781549
+UniRef50_Q8CQG0	Response regulator	0.0127152339112	0.000850089457421	-0.0118651444538
+UniRef50_E6KSM2		0.000246244025364	0.00374029463719	0.00349405061183
+UniRef50_O27322	Argininosuccinate synthase	0.00167024512015	0.000314018761464	-0.00135622635869
+UniRef50_A3U241		0.000218825829679	4.40922905493e-05	-0.00017473353913
+UniRef50_Q9RVU4	Endonuclease III, putative	0.000111682245224	0.0204626640725	0.0203509818273
+UniRef50_P74533	Recombination protein RecR	0.0300919291481	0.00550100083536	-0.0245909283127
+UniRef50_UPI000476740D	hypothetical protein	3.22889750513e-06	3.58221359554e-05	3.25932384503e-05
+UniRef50_Q9XAR0	NADH quinone oxidoreductase subunit G	0.00015054940576	0.00679151985845	0.00664097045269
+UniRef50_Q9RXE1	Lysine  tRNA ligase	8.10624873615e-05	0.0607525837334	0.060671521246
+UniRef50_UPI000185D783	hypothetical protein, conserved	0.00022987361885	0.000238617088733	8.743469883e-06
+UniRef50_R5XBW3	Carbonic anhydrase family 3	2.34338639738e-05	4.40267099703e-05	2.05928459965e-05
+UniRef50_H5XUP2	Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain	0.00110093494118	0.00200038082425	0.00089944588307
+UniRef50_U5RWM1	Succinate dehydrogenase	0.000293441008987	0.000891177471602	0.000597736462615
+UniRef50_P27603	P protein	2.66437534439e-05	1.90063309577e-05	-7.6374224862e-06
+UniRef50_UPI00036D44BD	hypothetical protein, partial	0.00275496573928	0.00135290806956	-0.00140205766972
+UniRef50_Q2IW23	Bifunctional enzyme IspD IspF	5.35897464653e-06	1.75239421609e-05	1.21649675144e-05
+UniRef50_A6W8Y0	Putative cell wall binding repeat 2 containing protein	1.01614352137e-05	9.0513107982e-05	8.03516727683e-05
+UniRef50_I1ASL8		0.000480557919503	4.70759590445e-05	-0.000433481960458
+UniRef50_Q6FFB1	Alginate biosynthesis protein	0.000120731126496	0.00634952083929	0.00622878971279
+UniRef50_C3T0C2	Transcriptional regulation of gcv operon	0.00235505151327	0.000976435716642	-0.00137861579663
+UniRef50_T2L9X7		0.000755508530924	0.000339210145434	-0.00041629838549
+UniRef50_F7QKU3	TRAP transporter solute receptor, TAXI family	4.70891157795e-05	1.89919618391e-05	-2.80971539404e-05
+UniRef50_J9P7N6		4.33139702095e-06	1.455554679e-05	1.02241497691e-05
+UniRef50_A3PNZ4	Transcriptional regulator, SARP family	0.00285512404878	0.000419931019088	-0.00243519302969
+UniRef50_A5EUU4	Na translocating NADH quinone reductase subunit E	0.000737103896835	0.0049323273874	0.00419522349057
+UniRef50_J8TQ37		1.06549507583e-05	0.00334390215461	0.00333324720385
+UniRef50_Q2YSD7	Putative ATP	0.0257911620294	0.00464197685942	-0.02114918517
+UniRef50_A0A023RSQ1	GNAT family acetyltraansferase	0.00303575749602	0.00139397958299	-0.00164177791303
+UniRef50_W1WJ38		0.000422558942747	0.00264992444171	0.00222736549896
+UniRef50_UPI000366DF34	hypothetical protein	5.59272914577e-06	4.95247729876e-05	4.39320438418e-05
+UniRef50_W6RLX0	Spermidine putrescine binding periplasmic protein SPBP	0.00863245416127	0.00118203435997	-0.0074504198013
+UniRef50_A6U9I7	Anhydro N acetylmuramic acid kinase	5.91417326273e-06	3.38868737877e-05	2.7972700525e-05
+UniRef50_UPI00047D420D	hypothetical protein	1.8344309571e-05	5.05619009931e-06	-1.32881194717e-05
+UniRef50_A3VVU2	Putative outer membrane protein	4.05745631084e-06	5.97635280876e-06	1.91889649792e-06
+UniRef50_A0KVP8	Na H(+) antiporter NhaB	0.00308175158006	0.00101099734226	-0.0020707542378
+UniRef50_Q8EW01	Serine  tRNA ligase	5.34735967067e-06	8.33869871158e-06	2.99133904091e-06
+UniRef50_P77234		0.00584455778739	0.00105051804166	-0.00479403974573
+UniRef50_Q46HN8	3 oxoacyl [acyl carrier protein] synthase 3	0.000259556588265	0.00011851990415	-0.000141036684115
+UniRef50_UPI0003C7E828	MFS transporter	4.20968276025e-06	5.93545845e-06	1.72577568975e-06
+UniRef50_S5CXB4	Choline dehydrogenase related flavoprotein	0.000374353925435	0.0079506871604	0.00757633323496
+UniRef50_G2JDK1		4.15625903643e-05	0.00945472958526	0.0094131669949
+UniRef50_UPI0003A64EF7	hypothetical protein	0.00206217966753	0.00174119261246	-0.00032098705507
+UniRef50_J2DGW2		0.00016349593144	1.04311699986e-05	-0.000153064761441
+UniRef50_W7Z6N4	Ribonuclease PH	1.1490278673e-05	2.59084253748e-05	1.44181467018e-05
+UniRef50_A1WW41	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.90664346884e-05	4.28631468721e-06	-1.47801200012e-05
+UniRef50_R4RS00		0.00144253334124	0.00141560013632	-2.693320492e-05
+UniRef50_UPI00036A57A1	hypothetical protein	3.83182189535e-05	9.9025651511e-06	-2.84156538024e-05
+UniRef50_B2HW18		0.000167029198609	0.00485705316522	0.00469002396661
+UniRef50_Q2IFN9		0.000488918753401	0.000418986111916	-6.9932641485e-05
+UniRef50_A0A017HFR7	Chemotactic signal response protein, putative	8.67180750928e-05	4.19437807736e-05	-4.47742943192e-05
+UniRef50_O25916	Replicative DNA helicase	0.00024514668425	0.00366035364683	0.00341520696258
+UniRef50_Q3IWU3	TRAP T family transporter, fused small and large inner membrane subunits	0.00252878358915	0.00110447059083	-0.00142431299832
+UniRef50_UPI0004724A10	hypothetical protein, partial	7.01290360737e-05	1.08682848153e-05	-5.92607512584e-05
+UniRef50_X0X6Z1	Marine sediment metagenome DNA, contig	5.52158405379e-05	0.000111186007871	5.59701673331e-05
+UniRef50_UPI000415535D	alpha beta hydrolase	7.39087410213e-05	1.14266655425e-05	-6.24820754788e-05
+UniRef50_UPI00034739EE	hypothetical protein	1.56391198345e-06	0.000106594502576	0.000105030590593
+UniRef50_Q89IC6	Blr5713 protein	1.71120695213e-05	1.72547628564e-05	1.426933351e-07
+UniRef50_K3WBA6	Amidophosphoribosyltransferase	0.000360501156392	0.00248801010112	0.00212750894473
+UniRef50_P21562		0.000124400186824	0.000155007645497	3.0607458673e-05
+UniRef50_P17058	Acyclic carotenoid 1,2 hydratase	0.000564995824986	0.000517255230352	-4.7740594634e-05
+UniRef50_UPI00038293BE	hypothetical protein	4.48020431817e-05	5.12901175246e-05	6.4880743429e-06
+UniRef50_Q5WCN5	Sorbitol dehydrogenase	0.0174112373836	0.00294180495147	-0.0144694324321
+UniRef50_Q03U06	Mannonate dehydratase	0.000407337738757	0.00310012775404	0.00269279001528
+UniRef50_N6UA20		0.000135012209407	0.000174032108009	3.9019898602e-05
+UniRef50_Q5HPW3	Transcription factor FapR	0.023261723995	0.00451104739168	-0.0187506766033
+UniRef50_Q8KCW2	Dihydrolipoyl dehydrogenase	3.29453625239e-06	1.15677650764e-05	8.27322882401e-06
+UniRef50_Q9F1M9	UDP N acetylmuramate  L alanine ligase	0.00421797449118	0.00272582266688	-0.0014921518243
+UniRef50_Q0KDL1	ABC type transporter, ATPase component	0.000399478289819	0.000412843372555	1.3365082736e-05
+UniRef50_A8L8S5		3.30145965308e-05	2.85202125879e-05	-4.4943839429e-06
+UniRef50_UPI0003B6FD69	NADPH	1.5032190697e-05	7.71991880128e-05	6.21669973158e-05
+UniRef50_C4ZI69	Anthranilate phosphoribosyltransferase	0.00447407984815	0.000600665846803	-0.00387341400135
+UniRef50_A6M0U5		0.000445160521619	0.00186774890226	0.00142258838064
+UniRef50_UPI0003B423C3	tRNA delta isopentenylpyrophosphate transferase	1.20571281187e-05	1.00395811815e-05	-2.0175469372e-06
+UniRef50_R4PMP8	Fumarate reductase succinate dehydrogenase flavoprotein domain protein	0.0045294961027	0.000915952128364	-0.00361354397434
+UniRef50_Q5SIN6		0.000353518668364	0.00022245934854	-0.000131059319824
+UniRef50_V9W081		4.17690080529e-05	1.17465703992e-05	-3.00224376537e-05
+UniRef50_UPI0001746B66	chromosomal replication initiation protein	3.51499617073e-06	6.30727918617e-06	2.79228301544e-06
+UniRef50_UPI00045758DE	PREDICTED	4.61787159465e-06	2.46506742442e-06	-2.15280417023e-06
+UniRef50_G7MCB5	PTS system, lactose cellobiose family IIC subunit	0.000340061609998	0.00195545817109	0.00161539656109
+UniRef50_Q60178	Delta aminolevulinic acid dehydratase	0.00439978423137	0.00903249403543	0.00463270980406
+UniRef50_A6LZJ5	Iron sulfur flavoprotein	0.00221701785948	0.000579014715385	-0.0016380031441
+UniRef50_P38946	Succinyl CoA	0.000921180655686	0.00931101721393	0.00838983655824
+UniRef50_P77624	Carbamate kinase like protein YahI	0.00276581725012	0.00117098560802	-0.0015948316421
+UniRef50_T1KRH7		5.21008684175e-06	0.000251308496245	0.000246098409403
+UniRef50_B1I6S1	tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.000125515656323	0.00418532510166	0.00405980944534
+UniRef50_X8F0P6		9.63837997413e-05	4.47798773731e-05	-5.16039223682e-05
+UniRef50_P26289	NADH quinone oxidoreductase subunit 4L, chloroplastic	0.00772842992127	0.00175243302783	-0.00597599689344
+UniRef50_I0C6V7	Acyl CoA dehydrogenase, short chain specific	0.0259490128937	0.00690236932118	-0.0190466435725
+UniRef50_UPI000372829F	MULTISPECIES	2.26773438317e-06	1.02569632353e-05	7.98922885213e-06
+UniRef50_D8JEY6		9.80483087926e-05	0.00746871126349	0.0073706629547
+UniRef50_P80886	Succinyl CoA ligase [ADP forming] subunit beta	0.0144301764995	0.00363260735125	-0.0107975691482
+UniRef50_P42619	Inner membrane protein YqjF	0.000485493583502	0.00111440266111	0.000628909077608
+UniRef50_UPI00035DD30D	hypothetical protein, partial	5.41210017492e-06	0.000137762284503	0.000132350184328
+UniRef50_A8AM44		0.004335950381	5.46640826788e-05	-0.00428128629832
+UniRef50_P40118	Protein CbxX, chromosomal	0.0079011170764	0.00224812035541	-0.00565299672099
+UniRef50_UPI0004420F41	PREDICTED	5.20826775073e-05	4.5864820248e-05	-6.2178572593e-06
+UniRef50_UPI000380047C	hypothetical protein, partial	1.20788579712e-05	2.92758877436e-05	1.71970297724e-05
+UniRef50_P0A9D3	Glutathione S transferase GstA	0.00266711333675	0.000355090226682	-0.00231202311007
+UniRef50_V4LD81		4.98546089933e-05	1.01531272948e-05	-3.97014816985e-05
+UniRef50_G3BCN3		1.56369867027e-05	2.32972947213e-05	7.6603080186e-06
+UniRef50_Q89N53	GMP synthase [glutamine hydrolyzing]	0.00501594423186	0.00817957712061	0.00316363288875
+UniRef50_A9M3R6	PilS cassette	3.38274986861e-05	6.35213552979e-05	2.96938566118e-05
+UniRef50_G8VFT5	ABC transporter associated permease	5.32170097031e-05	0.00483714033127	0.00478392332157
+UniRef50_UPI00046F1979	hypothetical protein	0.000163128576005	1.97765683159e-05	-0.000143352007689
+UniRef50_Q28W02	Protein export protein SecB	0.00254303266779	0.000379421891038	-0.00216361077675
+UniRef50_UPI000381A76A	hypothetical protein	5.63796539441e-06	9.31269779224e-06	3.67473239783e-06
+UniRef50_K7RNM6	Protein translocase subunit SecD	7.04264904616e-05	0.00563539044096	0.0055649639505
+UniRef50_V9H6U9		1.83756158505e-05	3.58206509258e-05	1.74450350753e-05
+UniRef50_A7IGH8	Heat shock protein DnaJ domain protein	1.2186950416e-05	1.83411918241e-05	6.1542414081e-06
+UniRef50_A5UK66		0.000658405794513	0.000694862835762	3.6457041249e-05
+UniRef50_Q88YL5	Peptide chain release factor 2	0.0271726134563	0.0143230519296	-0.0128495615267
+UniRef50_B9KPA3	Lipid A biosynthesis acyltransferase	0.000158830009337	0.000498498952915	0.000339668943578
+UniRef50_U3HEJ8		0.000296016027856	6.94862835673e-05	-0.000226529744289
+UniRef50_P37627		0.00257016601091	0.00113793195481	-0.0014322340561
+UniRef50_UPI0004691CF3	hypothetical protein	0.000715240572476	0.000224412918547	-0.000490827653929
+UniRef50_G7H917		0.000101168832131	1.30038297211e-05	-8.81650024099e-05
+UniRef50_Q99TA4	HTH type transcriptional regulator rot	0.00884455228534	0.00175317070562	-0.00709138157972
+UniRef50_UPI00047C5CBE	hypothetical protein	0.000107086306	9.67330387062e-06	-9.74130021294e-05
+UniRef50_UPI0004786076	acetolactate synthase catalytic subunit	1.59988615622e-05	1.71167014226e-05	1.1178398604e-06
+UniRef50_UPI0003707FEC	hypothetical protein	1.68306830586e-05	0.00188360173137	0.00186677104831
+UniRef50_UPI0003AADB2D	formyl CoA transferase	2.13787688449e-05	0.00233836614287	0.00231698737403
+UniRef50_S1HMP3	Pyrimidine utilization protein D	0.000760038903732	0.00104812759294	0.000288088689208
+UniRef50_B9DPH3	Ribonuclease HII	0.00654988876022	0.00138367075555	-0.00516621800467
+UniRef50_P64484		0.0116062915004	0.00384974143192	-0.00775655006848
+UniRef50_Q6F8V9		0.000428859893699	0.00348737729682	0.00305851740312
+UniRef50_UPI0003607777	hypothetical protein, partial	1.76971169323e-05	7.0076352285e-05	5.23792353527e-05
+UniRef50_UPI000376E7E9	hypothetical protein	8.51547517838e-05	2.82164388805e-05	-5.69383129033e-05
+UniRef50_Q58626	Pyruvate carboxylase subunit A	1.23518973694e-05	0.0109109542538	0.0108986023564
+UniRef50_UPI0004731C2E	hypothetical protein	4.03100671317e-06	1.32536311703e-05	9.22262445713e-06
+UniRef50_UPI0004719EAD	ATPase	1.69958730374e-05	2.41118039812e-05	7.1159309438e-06
+UniRef50_V7YXX8		5.00111023971e-05	7.22932938045e-05	2.22821914074e-05
+UniRef50_K7SCS8		2.99156616006e-06	8.88053699593e-06	5.88897083587e-06
+UniRef50_A5UKI4	Predicted phosphoesterase, YfcE	0.00120269743945	0.000329349485352	-0.000873347954098
+UniRef50_UPI0003D2681B	PREDICTED	3.98163650599e-06	9.3455830574e-05	8.9474194068e-05
+UniRef50_P80239	Alkyl hydroperoxide reductase subunit C	0.00216083281016	0.00930079134215	0.00713995853199
+UniRef50_P0ABK0	Cytochrome bd I ubiquinol oxidase subunit 1	0.00171593316015	0.00762391078699	0.00590797762684
+UniRef50_UPI0003B383CF	SAM dependent methyltransferase	7.02753027592e-06	1.07738333014e-05	3.74630302548e-06
+UniRef50_UPI0002F5F55F	hypothetical protein	5.8307266128e-05	1.52060018675e-05	-4.31012642605e-05
+UniRef50_UPI00047BBB2A	protein phosphatase	1.29269973036e-05	2.25242637497e-05	9.5972664461e-06
+UniRef50_UPI0004707FDC	MFS transporter	8.14243633308e-06	1.22735081721e-05	4.13107183902e-06
+UniRef50_Q3J3F1	NADH quinone oxidoreductase subunit H 1	0.0126455398949	0.00454787227807	-0.00809766761683
+UniRef50_A4IAV0	Proteophosphoglycan 5	3.06591844207e-05	2.19429074657e-05	-8.716276955e-06
+UniRef50_F7QM88	Diguanylate phosphodiesterase	3.52506925977e-06	2.62381642246e-05	2.27130949648e-05
+UniRef50_A5ULA2	Transcriptional regulator, AraC family	0.00130797090593	0.000530214064208	-0.000777756841722
+UniRef50_D5ZZ67	SecA	4.21756527356e-05	4.94584210296e-05	7.282768294e-06
+UniRef50_B7LY72		0.00250168686688	0.00190767272071	-0.00059401414617
+UniRef50_Q02254	Nucleoside diphosphate kinase 1	1.29747779022e-05	3.70651919199e-05	2.40904140177e-05
+UniRef50_UPI0003B52538	MerR family transcriptional regulator, partial	2.8803968304e-05	0.00263535536039	0.00260655139209
+UniRef50_S3Y4R2		4.73113938364e-06	7.56509520899e-05	7.09198127063e-05
+UniRef50_D6SET8	Sucrose 6 phosphate hydrolase	0.00887921409223	0.00167694961598	-0.00720226447625
+UniRef50_D9SU34	RNA polymerase, sigma 24 subunit, ECF subfamily	0.000944435907608	0.00388296660861	0.002938530701
+UniRef50_UPI00047E196E	hypothetical protein	3.20148519362e-06	1.33687848046e-05	1.0167299611e-05
+UniRef50_Q5HQN2	D isomer specific 2 hydroxyacid dehydrogenase family protein	0.0103775557082	0.00217148869663	-0.00820606701157
+UniRef50_Q6LLZ7		0.0226656621937	3.15410501811e-05	-0.0226341211435
+UniRef50_Q3JQS6	DNA mismatch repair protein MutS	0.000383385341192	0.00330489096961	0.00292150562842
+UniRef50_UPI000466A22C	hypothetical protein, partial	3.29699035676e-05	1.21948594744e-05	-2.07750440932e-05
+UniRef50_Q8CQC3	Membrane spanning protein	0.0268225603237	0.004929767386	-0.0218927929377
+UniRef50_UPI00047D3526	hypothetical protein	2.46377144235e-05	3.56805285062e-05	1.10428140827e-05
+UniRef50_P24202	Mrr restriction system protein	0.00285467559706	0.00162874838098	-0.00122592721608
+UniRef50_UPI0003B4AFAB	flagellin	2.09820472346e-06	1.60882989627e-05	1.39900942392e-05
+UniRef50_UPI0003B6A2EF	aspartyl glutamyl tRNA amidotransferase subunit B	9.06478100423e-06	5.33142676875e-06	-3.73335423548e-06
+UniRef50_Q41348	Probable pyridoxal biosynthesis protein PDX1 	3.35079441546e-05	2.41428329843e-05	-9.3651111703e-06
+UniRef50_Q1CBK6	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	5.0601747378e-05	5.17590795194e-05	1.1573321414e-06
+UniRef50_P66774	L serine dehydratase	1.21384304696e-05	2.96866323437e-05	1.75482018741e-05
+UniRef50_P0ADR0	Inner membrane protein YqaA	0.00195715013162	0.000723224584158	-0.00123392554746
+UniRef50_Q8REV6	Bifunctional purine biosynthesis protein PurH	2.76401389529e-06	2.95489694989e-05	2.67849556036e-05
+UniRef50_B4TCQ6	Argininosuccinate lyase	0.00193356789531	0.00100977528475	-0.00092379261056
+UniRef50_V6YPB4		3.52601579306e-05	0.000196900006824	0.000161639848893
+UniRef50_Q7CB38	UPF0324 inner membrane protein YeiH	0.00404169562885	0.000929997449659	-0.00311169817919
+UniRef50_F0YKI4	Expressed protein 	5.23290378266e-05	0.000467122598609	0.000414793560782
+UniRef50_J7J208	Peptidylarginine deiminase like enzyme	0.000145747486043	0.000617608298778	0.000471860812735
+UniRef50_B6C3C1	Ribulose bisphosphate carboxylase, small subunit	0.000764719805604	8.40196966657e-05	-0.000680700108938
+UniRef50_G7M7S7	Ketopantoate reductase ApbA PanE domain protein	0.000259848787425	0.00262494227244	0.00236509348501
+UniRef50_UPI00046742AA	hypothetical protein	6.14385329484e-05	1.89582262053e-05	-4.24803067431e-05
+UniRef50_P17812	CTP synthase 1	2.11704915244e-06	0.000124659916929	0.000122542867777
+UniRef50_Q8CPK1	Secretory antigen SsaA	0.00906663702078	0.000446322476372	-0.00862031454441
+UniRef50_S5NA52	Hydrolase	0.00568068368014	0.000471998068175	-0.00520868561196
+UniRef50_X7ECS1	Transposase	0.00139756935307	0.000355910291841	-0.00104165906123
+UniRef50_I6U2S4	Phosphopantetheinyl transferase	0.00580588037575	0.000814562618456	-0.00499131775729
+UniRef50_UPI0003728962	spermidine putrescine ABC transporter ATP binding protein	4.95195598095e-06	1.08141056345e-05	5.86214965355e-06
+UniRef50_UPI00029AE339	oxygen independent coproporphyrinogen III oxidase	3.09683203843e-05	9.54729002591e-05	6.45045798748e-05
+UniRef50_S5XV86	Membrane protein	0.00324376280468	0.00112069387735	-0.00212306892733
+UniRef50_W0E657	Transposase IS116	0.00040226920411	0.000565505027426	0.000163235823316
+UniRef50_UPI0002192B8A	rod shape determining protein MreB	3.49468303323e-05	6.42902487938e-05	2.93434184615e-05
+UniRef50_UPI0004773247	hypothetical protein	2.41338084638e-05	7.4918443768e-05	5.07846353042e-05
+UniRef50_H8H0T4		0.000460382764265	0.037215520238	0.0367551374737
+UniRef50_W5VD93		0.00051955150512	3.58236954047e-05	-0.000483727809715
+UniRef50_UPI0003EDCF69	PREDICTED	0.000143228257444	2.35737535589e-05	-0.000119654503885
+UniRef50_P73534	Pyruvate kinase 2	1.59553381223e-05	1.18924616653e-05	-4.062876457e-06
+UniRef50_D5P6E3		0.000445707922605	0.000764246202278	0.000318538279673
+UniRef50_I0E315		0.000394584657338	0.000508503210999	0.000113918553661
+UniRef50_A6M2J9	Cell wall surface repeat protein	0.000155131228296	0.00231505356352	0.00215992233522
+UniRef50_P52045	Methylmalonyl CoA decarboxylase	0.00173676873471	0.000620096977765	-0.00111667175694
+UniRef50_L0WJ64	3 phosphoshikimate 1 carboxyvinyltransferase	5.0737364089e-05	0.00735475081072	0.00730401344663
+UniRef50_UPI0004743DFB	long chain fatty acid  CoA ligase, partial	3.72616248557e-05	1.03963773377e-05	-2.6865247518e-05
+UniRef50_UPI00035FBEC8	hypothetical protein	8.90195699052e-06	2.85391264713e-05	1.96371694808e-05
+UniRef50_M1MXV9	Methyl accepting chemotaxis protein	0.000580191832772	0.00149376050661	0.000913568673838
+UniRef50_D8JNY1	Membrane fusion protein	0.00116470044199	0.00624457513129	0.0050798746893
+UniRef50_Q8FJ67		0.00280349415458	0.000269695621179	-0.0025337985334
+UniRef50_C1DHR0	Fimbrial assembly protein	0.000439322535926	0.000346751512944	-9.2571022982e-05
+UniRef50_UPI000382A44D	hypothetical protein	5.94614511614e-05	0.00192422564861	0.00186476419745
+UniRef50_UPI0004156576	MULTISPECIES	1.56899363264e-05	1.70244973161e-05	1.3345609897e-06
+UniRef50_A3S860		0.00132361066913	0.000592265672953	-0.000731344996177
+UniRef50_D8HER7		0.00383559950036	0.00219394601122	-0.00164165348914
+UniRef50_Q31YD8	Erythronate 4 phosphate dehydrogenase	0.00443432924241	0.000918771760323	-0.00351555748209
+UniRef50_UPI00029CB712	ketol acid reductoisomerase IlvC, partial	8.392187527e-05	0.000155948861836	7.2026986566e-05
+UniRef50_UPI00041F053E	hypothetical protein	5.11406261877e-05	1.70937481739e-05	-3.40468780138e-05
+UniRef50_Q7U0N5	Fructose 1,6 bisphosphatase class 2	1.564802716e-05	0.000253194107251	0.000237546080091
+UniRef50_Q5QV04	50S ribosomal protein L25	0.000389088631857	0.00211883605813	0.00172974742627
+UniRef50_A5N555		0.000394639346825	0.00100913776517	0.000614498418345
+UniRef50_UPI0001DCFB76	hypothetical protein	2.77903795467e-05	3.48221080148e-05	7.0317284681e-06
+UniRef50_UPI0003734789	hypothetical protein	1.14304343394e-05	1.46812123819e-05	3.2507780425e-06
+UniRef50_UPI000237AE8F	citrate synthase	1.39743864319e-05	1.1598181126e-05	-2.3762053059e-06
+UniRef50_A6M0W0	Methyltransferase type 11	0.000195279817986	0.000809566709961	0.000614286891975
+UniRef50_Q63VA4		3.1321175805e-05	1.10951735036e-05	-2.02260023014e-05
+UniRef50_C6SRX5		0.00624138376317	0.00329653312038	-0.00294485064279
+UniRef50_P95780	dTDP glucose 4,6 dehydratase	0.00735820869164	0.0011628787262	-0.00619532996544
+UniRef50_K0YWY6		1.36750892745e-05	2.05695511674e-05	6.8944618929e-06
+UniRef50_A6LT81	Histidine kinase internal region	0.000777661574339	0.00213603351704	0.0013583719427
+UniRef50_UPI00041035B8	hypothetical protein	8.4920021219e-06	1.42679628287e-05	5.7759607068e-06
+UniRef50_UPI0002E14D16	hypothetical protein	5.2418010757e-05	0.000402703354717	0.00035028534396
+UniRef50_J9PAX2		0.000340860303668	0.000133078252013	-0.000207782051655
+UniRef50_B2RI74	Aminomethyltransferase	8.44544627661e-06	0.00221217366217	0.00220372821589
+UniRef50_T2WDF3	Excinuclease ABC subunit A domain protein	0.000207523781952	0.000164549027019	-4.2974754933e-05
+UniRef50_P37016		0.00611656977908	0.00349412219928	-0.0026224475798
+UniRef50_M1M1B1	PTS system maltose and glucose specific EIICB component MalX	9.02356945458e-05	0.000628891087881	0.000538655393335
+UniRef50_E6RJY5		1.62098331928e-05	5.6614951159e-05	4.04051179662e-05
+UniRef50_UPI0002B4135E	PREDICTED	1.98015096326e-06	2.46029249527e-05	2.26227739894e-05
+UniRef50_UPI00036A4FA0	hypothetical protein	5.03815299981e-05	3.57658107377e-05	-1.46157192604e-05
+UniRef50_B9TLS4		0.000102349087321	0.00796415573012	0.0078618066428
+UniRef50_P76254	Putative dioxygenase subunit beta YeaX	0.00160549522464	0.000783771849003	-0.000821723375637
+UniRef50_UPI00036DD6AB	hypothetical protein	0.000153856008499	0.000106395176646	-4.7460831853e-05
+UniRef50_D3E4S6	Methionine synthase MetE	0.00324766276766	0.000513816766488	-0.00273384600117
+UniRef50_Q5HP49	Oxidoreductase, short chain dehydrogenase reductase family	0.00913147325148	0.00160662538261	-0.00752484786887
+UniRef50_UPI00016C0A47	Sodium proline symporter	1.36084763529e-05	3.28286972022e-05	1.92202208493e-05
+UniRef50_P37018		0.00384519095255	0.0013270643983	-0.00251812655425
+UniRef50_R0X3A7	FAD binding domain protein	5.21810253779e-06	6.80183994572e-05	6.28002969194e-05
+UniRef50_A3JD10	Choline glycine betaine transporter	0.00032125776339	0.000118189872565	-0.000203067890825
+UniRef50_P74211	Pyridoxine pyridoxamine 5 phosphate oxidase	9.9668262531e-06	0.0207006405365	0.0206906737102
+UniRef50_Q2FH82	Glycerol 3 phosphate acyltransferase	0.010113432579	0.00126957338042	-0.00884385919858
+UniRef50_P55138		0.00435263075045	0.000619635964338	-0.00373299478611
+UniRef50_UPI000366203C	hypothetical protein	1.37426509128e-05	2.10159288761e-05	7.2732779633e-06
+UniRef50_UPI00036AC02E	hypothetical protein	2.69476413933e-05	0.000280808277526	0.000253860636133
+UniRef50_P03023	Lactose operon repressor	0.00418910859356	0.00191950369155	-0.00226960490201
+UniRef50_F0P751		0.0201411484677	0.00409381539967	-0.016047333068
+UniRef50_A6LQP5	NLP P60 protein	0.000756742269975	0.000608965144638	-0.000147777125337
+UniRef50_G7ZP32		0.0211104133909	0.000947540230575	-0.0201628731603
+UniRef50_UPI0003B6696B	Holliday junction resolvase	3.0942607677e-05	1.92204626377e-05	-1.17221450393e-05
+UniRef50_W0ZB71		9.22025983216e-05	0.000242504790472	0.00015030219215
+UniRef50_A9VN54	Ribosomal RNA small subunit methyltransferase A	8.4854557176e-05	0.000838300878119	0.000753446320943
+UniRef50_A9DDG2	Sulfate transporter 	0.000418305772219	0.000157617166025	-0.000260688606194
+UniRef50_UPI00047D446A	HAD family hydrolase	7.35414871791e-06	2.96700278666e-05	2.23158791487e-05
+UniRef50_I4EVD0		3.16334818129e-05	8.55368646745e-06	-2.30797953455e-05
+UniRef50_A0A023RXY1	Helicase	0.000157330850518	0.00710943801757	0.00695210716705
+UniRef50_E6JZW3	Amino acid permease	0.00947600385784	0.00394330637891	-0.00553269747893
+UniRef50_UPI0003659021	MULTISPECIES	1.95679459525e-05	5.105715579e-06	-1.44622303735e-05
+UniRef50_D2ZS89		0.00258429831671	0.000326316801329	-0.00225798151538
+UniRef50_UPI0002880506	dihydroxyacetone kinase	7.38101545647e-06	0.000542290708295	0.000534909692839
+UniRef50_E8U932	UvrD REP helicase	0.000256265796054	0.0355526292709	0.0352963634748
+UniRef50_C5N0Y7	Iron chelate uptake ABC transporter, FeCT family, permease protein	0.0114471466903	0.0029631190156	-0.0084840276747
+UniRef50_G2L894		3.64179742017e-05	7.26394713702e-05	3.62214971685e-05
+UniRef50_D4FNL7	Ribonuclease R	0.0121718213442	0.00201715764088	-0.0101546637033
+UniRef50_UPI0003B4AB96	resolvase, partial	0.00230911466212	0.000781031305279	-0.00152808335684
+UniRef50_P77218	Ethanolamine utilization protein EutD	0.00165653060396	0.000629379340094	-0.00102715126387
+UniRef50_Q3JHV2		0.0145604800363	0.00185387088664	-0.0127066091497
+UniRef50_UPI00026597D0	PREDICTED	2.18669289505e-05	3.35812674039e-06	-1.85088022101e-05
+UniRef50_Q3JHV1		0.000151971655303	7.58977171045e-05	-7.60739381985e-05
+UniRef50_W4S288		0.000678118542849	0.00110055914979	0.000422440606941
+UniRef50_L8GKM7		3.11430501438e-05	0.000116773923949	8.56308738052e-05
+UniRef50_U2ZDH4	UPF0301 protein MBE BAB_1780	8.81423690968e-06	1.67119240686e-05	7.89768715892e-06
+UniRef50_U1LZ26	Transcriptional regulator	7.03183777232e-06	1.4006971174e-05	6.97513340168e-06
+UniRef50_E8TAB0	Glutamine synthetase catalytic region	0.00163789181259	0.000483962021408	-0.00115392979118
+UniRef50_A3PHY8	Transcriptional regulator, LysR family	0.0140243852739	0.00203529611815	-0.0119890891558
+UniRef50_A0A023RZA2	Quaternary ammonium transporter	0.000391853967671	0.00370259350429	0.00331073953662
+UniRef50_UPI0004789298	hypothetical protein	6.24089839583e-05	1.24948265377e-05	-4.99141574206e-05
+UniRef50_G1THI8		3.83282013666e-06	0.000489953054657	0.00048612023452
+UniRef50_D8UE68	Formin	4.23336279607e-06	1.77005433639e-06	-2.46330845968e-06
+UniRef50_I1ZKQ0	Fe2+ Zn2+ uptake regulation protein	0.0073457567032	0.00247109667141	-0.00487466003179
+UniRef50_P0AE84	Sensor protein CpxA	0.00293745860676	0.00313458554851	0.00019712694175
+UniRef50_K0M3M3		0.00034249597966	0.000178913971369	-0.000163582008291
+UniRef50_UPI0003C7C8AC	hypothetical protein	0.00102920269629	0.000824139642406	-0.000205063053884
+UniRef50_Q4L332	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0211220482648	0.00628089962163	-0.0148411486432
+UniRef50_E6NJA8		0.000117110441217	0.00450153945952	0.0043844290183
+UniRef50_Q5H1D4	Methionine aminopeptidase	0.00142928238152	0.00111991058224	-0.00030937179928
+UniRef50_Q48EZ4	Sensor histidine kinase	0.000199310354377	0.000189518668572	-9.791685805e-06
+UniRef50_Q0FD62		0.000308008435696	9.54284620468e-05	-0.000212579973649
+UniRef50_Q8F6I3	Phosphoribosylformylglycinamidine synthase 2	3.07231794052e-05	7.69384430951e-06	-2.30293350957e-05
+UniRef50_Q3SSW6	50S ribosomal protein L3	0.000870033727607	0.000304450211538	-0.000565583516069
+UniRef50_Q9CEB7	Putative ribosome biogenesis GTPase RsgA	0.00569266319164	0.00378446259325	-0.00190820059839
+UniRef50_A6LVT4	Cell wall hydrolase autolysin	0.000268992391105	0.00429794668771	0.0040289542966
+UniRef50_B2UN91	Glutamate  tRNA ligase	4.25408139769e-06	1.06925772879e-05	6.43849589021e-06
+UniRef50_F0RNV8	NurA domain containing protein	0.000220431079448	0.0160284205599	0.0158079894805
+UniRef50_Q2NFL4	Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein	0.00530943380379	0.00200658605367	-0.00330284775012
+UniRef50_E9T8A5	Transcriptional regulator, PadR family	3.65361338014e-05	9.55979490171e-05	5.90618152157e-05
+UniRef50_UPI000470F100	hypothetical protein	5.74267163922e-05	0.000124602333148	6.71756167558e-05
+UniRef50_D3DYX9	Glycosyl transferase GT4 family	0.00187399374543	0.00149910672389	-0.00037488702154
+UniRef50_F5Y5K7	Candidate UDP glucose 6 dehydrogenase 	0.00058710895527	0.000404913990912	-0.000182194964358
+UniRef50_A2PUV3		6.85118406973e-05	0.00023293307928	0.000164421238583
+UniRef50_UPI00047022DB	luciferase	2.92626742537e-05	1.88652539978e-05	-1.03974202559e-05
+UniRef50_U5NMZ2		0.000735362315945	0.000594597393014	-0.000140764922931
+UniRef50_P0AC14	Dihydropteroate synthase	0.00571951682224	0.000238842884248	-0.00548067393799
+UniRef50_U5NMZ6		0.00469031780091	0.00060929705839	-0.00408102074252
+UniRef50_UPI000255C69D	hypothetical protein	3.6412050903e-05	1.50512737629e-05	-2.13607771401e-05
+UniRef50_UPI000374608B	hypothetical protein	1.37994368057e-05	0.00027729555219	0.000263496115384
+UniRef50_I6SWC9	dTDP 4 dehydrorhamnose 3,5 epimerase	0.00264855491607	0.00177571792775	-0.00087283698832
+UniRef50_Q8GWW7	Agmatine deiminase	0.000339280958185	0.00212622127483	0.00178694031665
+UniRef50_X6CNL3		0.000815162735288	0.00172029148658	0.000905128751292
+UniRef50_E6X1D4	Pyruvate ketoisovalerate oxidoreductase, gamma subunit	0.000405898912746	0.00547495439141	0.00506905547866
+UniRef50_R5TGD1	Cobalt import ATP binding protein CbiO 2	0.000685966880346	0.000547527816442	-0.000138439063904
+UniRef50_D6ZIJ6		2.47165305196e-05	2.80534670634e-05	3.3369365438e-06
+UniRef50_UPI0003B576AB	hypothetical protein	5.44092154726e-06	1.11508102495e-05	5.70988870224e-06
+UniRef50_UPI00036BB2A6	hypothetical protein	2.76995473695e-05	2.97517028103e-05	2.0521554408e-06
+UniRef50_P12049	UPF0062 protein YexA	2.79260175706e-05	7.08331262668e-05	4.29071086962e-05
+UniRef50_G7LWI4	DNA polymerase	0.000197162545333	6.67131111141e-05	-0.000130449434219
+UniRef50_M9RKF6	D alanyl D alanine carboxypeptidase DacC	0.00473150972361	0.00406024253076	-0.00067126719285
+UniRef50_K4QLG2		5.92508543178e-05	3.50097264858e-05	-2.4241127832e-05
+UniRef50_W1U7Z2	Peptidase, M56 family 	2.7567101065e-05	2.34122099287e-05	-4.1548911363e-06
+UniRef50_E0SX52	Predicted Fe S oxidoreductase	2.72184445154e-05	0.000117093730731	8.98752862156e-05
+UniRef50_P52993	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00449089466026	0.0275654778858	0.0230745832255
+UniRef50_UPI0003B51A23	signal recognition particle protein Srp54	1.23536133716e-05	0.000247003871254	0.000234650257882
+UniRef50_UPI00047B2FC0	iron reductase	8.87418479519e-06	0.000122480665198	0.000113606480403
+UniRef50_UPI000470320D	hypothetical protein	2.3833759762e-05	1.10598082532e-05	-1.27739515088e-05
+UniRef50_L0MNT8	ATPase component of ABC transporters with duplicated ATPase domain	0.0039245509299	0.000862925374398	-0.0030616255555
+UniRef50_D5AV27	Secretion ATP binding protein, HlyB family	0.000459830275667	9.84936204108e-05	-0.000361336655256
+UniRef50_UPI0003605157	hypothetical protein	9.20175165826e-05	2.3036053264e-05	-6.89814633186e-05
+UniRef50_W5X880	Aminomethyltransferase	1.87587613849e-05	2.91909208041e-05	1.04321594192e-05
+UniRef50_R1ERY2		0.000105004041788	9.34768362209e-05	-1.15272055671e-05
+UniRef50_Q189B8	Threonine  tRNA ligase	0.00086835981142	0.000187014241432	-0.000681345569988
+UniRef50_Q3JS16		8.68209230342e-06	1.60820333817e-05	7.39994107828e-06
+UniRef50_Q2FWP1	Phospholipase C	0.0125504210675	0.00157181178812	-0.0109786092794
+UniRef50_B3DRA9	Deoxyuridine 5 triphosphate nucleotidohydrolase	0.000248346045292	0.00358350861986	0.00333516257457
+UniRef50_UPI000369A6CD	hypothetical protein	5.48605491096e-05	1.29697592159e-05	-4.18907898937e-05
+UniRef50_A4EPM0		1.90082243898e-05	1.38740431123e-05	-5.1341812775e-06
+UniRef50_UPI00046F0FC9	hypothetical protein	5.13585763074e-06	7.42031034759e-06	2.28445271685e-06
+UniRef50_Q8GCY1	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.7328607783e-05	1.94085025375e-05	2.0798947545e-06
+UniRef50_K0L524	Polysaccharide biosynthesis family protein	0.0158295947085	0.00243578174171	-0.0133938129668
+UniRef50_Q3ZZJ7	Malate dehydrogenase	3.88663222449e-05	2.65261064109e-05	-1.2340215834e-05
+UniRef50_Q3JS13		2.94244353764e-05	0.000142421859985	0.000112997424609
+UniRef50_L7WZJ1		0.000980448317277	0.00150979134947	0.000529343032193
+UniRef50_Q92ID7	NADH quinone oxidoreductase subunit C	1.445727806e-05	1.11769480991e-05	-3.2803299609e-06
+UniRef50_V8N3A8		0.00140845618418	0.000984389017326	-0.000424067166854
+UniRef50_UPI000382F770	hypothetical protein M271_03505	9.89721543217e-06	9.41684294706e-06	-4.8037248511e-07
+UniRef50_Q5GX46		1.42913056773e-05	4.83795968982e-05	3.40882912209e-05
+UniRef50_B9FN35		5.9303086031e-05	0.00013395176486	7.4648678829e-05
+UniRef50_Q8CMV5	Phage infection protein	0.0100512320776	0.00453755703634	-0.00551367504126
+UniRef50_UPI0004788FBC	cytochrome oxidase	3.68342006225e-05	5.17507288902e-05	1.49165282677e-05
+UniRef50_P16858	Glyceraldehyde 3 phosphate dehydrogenase	9.94581501303e-06	1.94762918434e-05	9.53047683037e-06
+UniRef50_Q9K105	Quinolinate synthase A	0.00454607893216	0.0115681059869	0.00702202705474
+UniRef50_U5MKN8	FAD dependent oxidoreductase	0.000281382129806	0.00115768630374	0.000876304173934
+UniRef50_A0A010YS39		0.000176552032803	4.83208576436e-05	-0.000128231175159
+UniRef50_X1KP36	Marine sediment metagenome DNA, contig	0.00015240654761	0.000128188680922	-2.4217866688e-05
+UniRef50_D9RNH9	Phage transcriptional regulator	0.0146249569535	0.00540219679646	-0.00922276015704
+UniRef50_R7DZG1	tRNA specific adenosine deaminase	0.0113757941654	0.000702438839085	-0.0106733553263
+UniRef50_UPI00047D8DA0	methionine aminopeptidase	1.84794880775e-05	1.15119403319e-05	-6.9675477456e-06
+UniRef50_Q9PHC7	Oxygen dependent coproporphyrinogen III oxidase	0.00282907412536	0.00747902593523	0.00464995180987
+UniRef50_E6PZA5		0.000150935111838	0.000585036575305	0.000434101463467
+UniRef50_Q1LGM8	Metal dependent phosphohydrolase, HD subdomain protein	0.00567145664597	0.00137518481016	-0.00429627183581
+UniRef50_D8LRY0		2.83147233151e-05	2.45259925884e-05	-3.7887307267e-06
+UniRef50_Q46907	Putative electron transfer flavoprotein subunit YgcQ	0.00380552662807	0.00301409908984	-0.00079142753823
+UniRef50_B5R7J9	HTH type transcriptional regulator MalT	0.00120192046374	0.000361605958218	-0.000840314505522
+UniRef50_A5IRR8	Bacteriocin associated integral membrane protein	0.00939900433724	0.00197587355792	-0.00742313077932
+UniRef50_V5XRA6	ABC superfamily ATP binding cassette transporter, substrate binding protein	1.97472293029e-05	1.38363358705e-05	-5.9108934324e-06
+UniRef50_UPI00036AF6AD	hypothetical protein	4.82770223987e-06	4.96316820766e-06	1.3546596779e-07
+UniRef50_Q6F797		0.000130617989224	0.011371715601	0.0112410976118
+UniRef50_Q5WJ15	Lipoprotein	0.000101236584555	2.40701718564e-05	-7.71664126986e-05
+UniRef50_Q8P151	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.00185627874013	0.00306741647844	0.00121113773831
+UniRef50_S5YEW5	Chaperone Hsp33	0.00904942233346	0.00129819060438	-0.00775123172908
+UniRef50_UPI00047E6CAE	macrolide ABC transporter ATP binding protein	3.12193267595e-05	9.84274156444e-06	-2.13765851951e-05
+UniRef50_Q7TVV6	2 isopropylmalate synthase	3.72458950938e-06	3.66251895615e-05	3.29006000521e-05
+UniRef50_UPI00047CA452	metal dependent hydrolase	0.000122391363972	0.000351236130679	0.000228844766707
+UniRef50_UPI0004728867	hypothetical protein	1.7830531794e-05	3.31557599866e-05	1.53252281926e-05
+UniRef50_R4SLJ1		3.10032399295e-05	3.3987514177e-05	2.9842742475e-06
+UniRef50_UPI00047EC453	hypothetical protein	1.6431706362e-05	2.4434974716e-05	8.003268354e-06
+UniRef50_W4HQ39	Fe3+ siderophore ABC transporter substrate binding protein	2.83947852055e-05	1.69525651657e-05	-1.14422200398e-05
+UniRef50_P58497	Transcriptional regulator ModE	0.00205367374435	0.00077844823564	-0.00127522550871
+UniRef50_A5UJC2	Predicted phosphotransacetylase	0.000999181867712	0.00177456501948	0.000775383151768
+UniRef50_D8LEL7		1.09214037583e-05	1.82280582269e-05	7.3066544686e-06
+UniRef50_F0Y2Z5	Expressed protein 	0.00108323062375	0.00126328188023	0.00018005125648
+UniRef50_UPI00047CBC3F	cytochrome C	0.000158472636123	6.85953915688e-05	-8.98772445542e-05
+UniRef50_A7HZN6	Chorismate synthase	5.13707075368e-06	0.00572225450633	0.00571711743558
+UniRef50_M4ZJ25	Integrase recombinase	0.000151398123869	0.000166219533874	1.4821410005e-05
+UniRef50_B2HTD1	Transcriptional regulator	0.000201504976255	0.0134891538242	0.0132876488479
+UniRef50_Q98I01	UvrABC system protein B	0.0134467584416	0.00359611101608	-0.00985064742552
+UniRef50_S1SUV9		7.77703776834e-05	0.000135577964233	5.78075865496e-05
+UniRef50_C9WZ56	Transcription repair coupling factor	2.79274467665e-05	0.00207656768196	0.00204864023519
+UniRef50_UPI0002FACF3D	hypothetical protein	7.19241442319e-06	5.96148080713e-06	-1.23093361606e-06
+UniRef50_UPI00035CB657	hypothetical protein	4.14815990089e-05	1.63829130445e-05	-2.50986859644e-05
+UniRef50_Q3J1W8	Chemotaxis histidine protein kinase, CheA3	0.00034031960082	0.000114103685255	-0.000226215915565
+UniRef50_S5CIT2	Non ribosomal peptide synthetase modules related protein	0.000185715585998	0.00311355855516	0.00292784296916
+UniRef50_G4LFN6		0.000434064582521	0.000342066954679	-9.1997627842e-05
+UniRef50_A0A022LJU5		0.000222568339476	0.000236326180691	1.3757841215e-05
+UniRef50_D5ALC6	CTP pyrophosphohydrolase	0.0224016388816	0.00107356270921	-0.0213280761724
+UniRef50_K0L0Y0	Pyruvate oxidase	0.0242503836548	0.0068552419843	-0.0173951416705
+UniRef50_Q8CQL5	Poly  alpha glucosyltransferase	0.0214837317088	0.00542878890006	-0.0160549428087
+UniRef50_P11954	L threonine dehydratase catabolic TdcB	0.00188099249666	0.00126193520902	-0.00061905728764
+UniRef50_X5P5H6		4.54986764438e-05	2.06118115195e-05	-2.48868649243e-05
+UniRef50_B1IS55	UPF0442 protein YjjB	0.00612920046237	0.00272600035565	-0.00340320010672
+UniRef50_Q0C3I3	Translocator protein, LysE family	0.0182492552214	0.00532509509416	-0.0129241601272
+UniRef50_Q5HQY2	Glycosyl transferase, group 4 family protein	0.0196665062802	0.0068601348889	-0.0128063713913
+UniRef50_E6QHZ2		0.000143175330504	0.000112160150652	-3.1015179852e-05
+UniRef50_A1VWN7	Transposase, IS4 family	0.0131852347128	0.0103757201209	-0.0028095145919
+UniRef50_B8DVE0	Ketol acid reductoisomerase	1.64523046513e-05	4.44007876821e-05	2.79484830308e-05
+UniRef50_UPI00037C3339	hypothetical protein	1.65020479581e-05	2.21762074914e-05	5.6741595333e-06
+UniRef50_A4WPY8	Short chain dehydrogenase reductase SDR	0.00619847451844	0.00279041621034	-0.0034080583081
+UniRef50_F7XAS6	Transcriptional regulator, LysR family	9.18555485599e-05	2.09308915746e-05	-7.09246569853e-05
+UniRef50_A5USR6	DNA directed RNA polymerase subunit beta	4.59382771142e-06	1.67177307274e-06	-2.92205463868e-06
+UniRef50_Q3HKI3	Possible virC1 gene, ATPase	0.0566327789512	0.00654130843002	-0.0500914705212
+UniRef50_C3K4R1	Glycerol 3 phosphate acyltransferase	0.000563739582841	0.000774448197163	0.000210708614322
+UniRef50_D4J507	Predicted membrane protein	5.95558600485e-06	2.86308570196e-05	2.26752710147e-05
+UniRef50_Q3J220	Phage terminase like protein, large subunit	0.0113337844865	0.00314495357313	-0.00818883091337
+UniRef50_Q168P3	Trk system potassium uptake protein	0.00681696365256	0.00151583404908	-0.00530112960348
+UniRef50_Q5ZUT5	N succinylglutamate 5 semialdehyde dehydrogenase	2.65038690196e-06	1.8718529159e-05	1.6068142257e-05
+UniRef50_Q04539	Ribulose phosphate 3 epimerase, plasmid	0.00316506393136	0.00787401019878	0.00470894626742
+UniRef50_K8Z653		5.06874047772e-05	2.54037964104e-05	-2.52836083668e-05
+UniRef50_B2A6Z3	Triosephosphate isomerase	1.27692272233e-05	1.91731593158e-05	6.4039320925e-06
+UniRef50_Q8TX36	50S ribosomal protein L22P	0.00565523086522	0.000626113155893	-0.00502911770933
+UniRef50_A0A024JQQ2	Plasmid pSG, complete sequence	0.00022469404098	0.000234068722742	9.374681762e-06
+UniRef50_Q58369		0.00254339690377	0.00040514123313	-0.00213825567064
+UniRef50_C7PE04	Short chain dehydrogenase reductase SDR	0.000483956359216	0.00142074741331	0.000936791054094
+UniRef50_Q3IVA6	Mannose 1 phosphate guanylyltransferase  mannose 6 phosphate isomerase, type 2	0.00712781743214	0.00102677966303	-0.00610103776911
+UniRef50_V4CH91	Chaperone fimC	0.00186700387678	0.00119737504261	-0.00066962883417
+UniRef50_A0A038GJ20	Lipoprotein	0.000903414068199	5.917841013e-05	-0.000844235658069
+UniRef50_J3CKR0	Pyruvate dehydrogenase complex, dehydrogenase  component (Fragment)	5.21068644993e-05	6.42130621087e-05	1.21061976094e-05
+UniRef50_A7HGV2	tRNA pseudouridine synthase D	1.37272865951e-05	4.95553554186e-05	3.58280688235e-05
+UniRef50_V9GEA9	Flagellar hook length control protein FliK	4.90047625372e-06	9.8878361117e-05	9.39778848633e-05
+UniRef50_UPI0002FF51AC	hypothetical protein	3.66624381408e-06	0.000312330304995	0.000308664061181
+UniRef50_W4TUZ9	Mg Co Ni transporter MgtE	0.000310262456591	0.000686824645589	0.000376562188998
+UniRef50_UPI00035D28CB	hypothetical protein	3.96874959184e-05	1.20749812276e-05	-2.76125146908e-05
+UniRef50_UPI0003EC5005	PREDICTED	3.56294972962e-06	2.47518995909e-05	2.11889498613e-05
+UniRef50_P58113	Pirin like protein CC_1473	0.00070424172541	0.000254583366547	-0.000449658358863
+UniRef50_E1VCL4	ABC type transport system permease protein	0.0172607301134	0.0046976799527	-0.0125630501607
+UniRef50_UPI0003D08670	PREDICTED	1.97428186396e-06	4.99305892421e-07	-1.47497597154e-06
+UniRef50_K2Q5M0		2.42734168175e-05	4.26319635052e-06	-2.0010220467e-05
+UniRef50_U5BVI3		2.64603338135e-05	1.28029809849e-05	-1.36573528286e-05
+UniRef50_UPI000248D343	extracellular ligand binding receptor	9.00717658194e-06	6.89026322649e-06	-2.11691335545e-06
+UniRef50_V2CGD9	D mannonate oxidoreductase	0.00145121432832	0.00178904638546	0.00033783205714
+UniRef50_C9XPK8	Padr family transcriptional regulator	9.69419217865e-05	2.64186208875e-05	-7.0523300899e-05
+UniRef50_U4QEL4		2.13661743948e-05	3.65999645239e-06	-1.77061779424e-05
+UniRef50_B3EFN5	Serine hydroxymethyltransferase	0.000123573740901	0.000163986582917	4.0412842016e-05
+UniRef50_J6CMF8	Sugar ABC transporter permease 	0.00100493325342	0.000161549120865	-0.000843384132555
+UniRef50_I0Z434		3.84935452125e-06	4.74964340348e-06	9.0028888223e-07
+UniRef50_F0YNG2		2.32977092886e-06	4.73855360441e-05	4.50557651152e-05
+UniRef50_UPI0003B55F2C	LacI family transcriptional regulator	3.15155244928e-06	4.25142597342e-05	3.93627072849e-05
+UniRef50_UPI00026263DB	ABC transporter	6.18708900779e-06	1.32167763365e-05	7.02968732871e-06
+UniRef50_Q55154	Chaperone protein dnaK1	0.00857518118047	0.000755687646451	-0.00781949353402
+UniRef50_Y7D100		0.000320255452974	5.85959876758e-05	-0.000261659465298
+UniRef50_F4H2Z9		1.57526665365e-05	3.66514024333e-05	2.08987358968e-05
+UniRef50_B4RA78	Regulatory protein, TetR	1.63042761443e-05	0.000623142673187	0.000606838397043
+UniRef50_W8Z0S3		2.1647552602e-05	0.000105369084	8.3721531398e-05
+UniRef50_K0VXX1		1.74577980442e-05	1.77802341338e-05	3.224360896e-07
+UniRef50_E4N9L3		3.22006713017e-05	0.000229668080055	0.000197467408753
+UniRef50_B9EAC4		0.0187428724393	0.00535751852654	-0.0133853539128
+UniRef50_UPI000473EAD9	hypothetical protein, partial	1.99496188385e-05	2.75192953128e-05	7.5696764743e-06
+UniRef50_M9VI34	ATP dependent dethiobiotin synthetase BioD	0.000292624797564	0.00388654151163	0.00359391671407
+UniRef50_Q5LY30	Glycoprotein endopeptidase	0.000174224302552	0.000288583099537	0.000114358796985
+UniRef50_A3PS51		0.00158365114701	0.000378809105071	-0.00120484204194
+UniRef50_B8DNL4	ATP dependent Clp protease proteolytic subunit	7.52023524109e-06	0.000185035963125	0.000177515727884
+UniRef50_R9ZDX0	GntR family transcriptional regulator	0.000892893053777	0.000153411275426	-0.000739481778351
+UniRef50_B9KHI6		2.46807189712e-05	8.54770687296e-05	6.07963497584e-05
+UniRef50_C1D0Z6	Thymidine kinase	1.85027076558e-05	6.01672778813e-05	4.16645702255e-05
+UniRef50_Q8DCG0	Ribosomal large subunit pseudouridine synthase A	0.00172241561359	2.32006393355e-05	-0.00169921497425
+UniRef50_Q97EX0	Ribosomal RNA small subunit methyltransferase A	0.000427391612785	0.001972947889	0.00154555627622
+UniRef50_P65691	ATP dependent 6 phosphofructokinase	4.14261482839e-06	8.82903000021e-06	4.68641517182e-06
+UniRef50_Q9LXS7	Citrate synthase 1, peroxisomal	1.03834085489e-05	5.07715884461e-05	4.03881798972e-05
+UniRef50_C4ZHB9	Glutamyl tRNA amidotransferase subunit A	0.0189270463726	0.0112317759779	-0.0076952703947
+UniRef50_Q3JWI9	PilL	0.000105698976443	6.4300275995e-05	-4.1398700448e-05
+UniRef50_B0V8W4		0.000261118127623	0.00607928283919	0.00581816471157
+UniRef50_UPI000365191C	hypothetical protein	2.97169638099e-06	2.46599658763e-05	2.16882694953e-05
+UniRef50_Q3J7E7	Malate dehydrogenase	2.95486080335e-05	2.14582199627e-05	-8.0903880708e-06
+UniRef50_C3AWX8		0.000259143699447	0.00158410802146	0.00132496432201
+UniRef50_UPI00046718DB	oxidoreductase, partial	5.60600943504e-06	2.11351409771e-05	1.55291315421e-05
+UniRef50_UPI000463A2AA	3 hydroxybutyrate dehydrogenase	6.0509690324e-06	0.000149127235823	0.000143076266791
+UniRef50_C6WBN9	PE PGRS family protein	4.70509143144e-05	0.000483523906529	0.000436472992215
+UniRef50_Q11RE2	ATP dependent 6 phosphofructokinase	1.69726748625e-05	1.73786020976e-05	4.059272351e-07
+UniRef50_UPI0003B54089	hypothetical protein	9.62280295139e-06	2.2257236241e-06	-7.39707932729e-06
+UniRef50_V3ARY1	Ornithine decarboxylase, inducible	0.000101748244975	0.000266729212392	0.000164980967417
+UniRef50_Q2IEZ0	Aspartyl Asparaginyl beta hydroxylase	0.00053992486904	0.000535041063585	-4.883805455e-06
+UniRef50_Q97BF6	Potassium transporting ATPase B chain	6.82535467285e-06	0.0010182375395	0.00101141218483
+UniRef50_UPI0003D06760	50S ribosomal protein L11	4.89106020093e-05	8.33813626971e-05	3.44707606878e-05
+UniRef50_A8A6Z4	Protein FdhE	0.00365570637185	0.0016458555151	-0.00200985085675
+UniRef50_B9KKX7		0.00255289836761	0.00188606052658	-0.00066683784103
+UniRef50_C0MHE9		2.15802408858e-05	3.30846091203e-05	1.15043682345e-05
+UniRef50_Q3HKD5		0.0045984833639	0.000361668545562	-0.00423681481834
+UniRef50_Q3HKD7		0.0260454347429	0.010919979027	-0.0151254557159
+UniRef50_Q3HKD6		0.00238771152851	0.000597779984952	-0.00178993154356
+UniRef50_UPI00036D0132	hypothetical protein	0.000503954692761	3.99122617737e-05	-0.000464042430987
+UniRef50_P0AEQ8	Glutamine transport system permease protein GlnP	0.0019764830774	0.000913350634632	-0.00106313244277
+UniRef50_Q9I1L9	Dihydrolipoyl dehydrogenase	0.000240573625513	0.000281975431133	4.140180562e-05
+UniRef50_UPI00047BC897	acyl CoA dehydrogenase	5.12581400826e-06	1.76657633898e-05	1.25399493815e-05
+UniRef50_G8V322		0.0121288157683	0.00279890077832	-0.00932991498998
+UniRef50_UPI000465AF35	aldehyde oxidoreductase	0.000177978829675	0.00113217893838	0.000954200108705
+UniRef50_D0LSQ0	3 demethylubiquinone 9 3 methyltransferase	0.00468811436765	0.000389428622235	-0.00429868574541
+UniRef50_Q8DSD9		0.00782316904708	0.000562973693485	-0.00726019535359
+UniRef50_S1STI3	Carbonic anhydrase, family 3	8.81965471089e-05	4.05999959486e-05	-4.75965511603e-05
+UniRef50_U5MMX2	Type IV pilus assembly protein PilO	0.000324297545183	0.000398976834538	7.4679289355e-05
+UniRef50_Q3JB01		0.00033137551243	0.000772464371747	0.000441088859317
+UniRef50_Q1GMD1	Probable chemoreceptor glutamine deamidase CheD 1	0.000256468209586	4.12357494991e-05	-0.000215232460087
+UniRef50_I3X6Z9		4.72290077459e-06	7.03340448565e-06	2.31050371106e-06
+UniRef50_UPI00037E93F7	hypothetical protein	1.9053341368e-05	5.74502777836e-06	-1.33083135896e-05
+UniRef50_P20751	Probable adenosine monophosphate protein transferase fic	0.0064925117853	0.00297927199182	-0.00351323979348
+UniRef50_UPI000378B4BF	hypothetical protein	1.61093204591e-05	4.11783730662e-05	2.50690526071e-05
+UniRef50_UPI0004671E08	hypothetical protein	3.98256484973e-06	8.02099902009e-06	4.03843417036e-06
+UniRef50_C6SQC4		0.00471912246437	0.00210114892954	-0.00261797353483
+UniRef50_UPI0003761AFD	hypothetical protein, partial	1.79518267396e-06	3.08211789454e-06	1.28693522058e-06
+UniRef50_S5XPF3	ATP dependent RNA helicase RhlE	0.00238188739925	0.00102663283228	-0.00135525456697
+UniRef50_P31802	Nitrate nitrite response regulator protein NarP	0.00258951160052	0.00164623828863	-0.00094327331189
+UniRef50_O07344	Signal peptidase I	0.000193252212719	0.00218529483154	0.00199204261882
+UniRef50_UPI0000DB7F4F	PREDICTED	1.51112903266e-05	4.55145781205e-05	3.04032877939e-05
+UniRef50_B4FRS7		2.95934263712e-05	7.25722517833e-05	4.29788254121e-05
+UniRef50_Q8PCH1	tRNA dihydrouridine synthase B	8.43526520771e-06	8.76719371208e-06	3.3192850437e-07
+UniRef50_G6CTE1		1.05189603701e-05	2.7064179549e-06	-7.8125424152e-06
+UniRef50_UPI00026C71CA	TetR family transcriptional regulator	0.000326855270059	0.000108866214099	-0.00021798905596
+UniRef50_UPI00024870DD	phosphoglyceromutase, partial	7.39028968022e-05	6.16826950046e-05	-1.22202017976e-05
+UniRef50_R7EC63		3.35132358362e-06	7.95469205052e-06	4.6033684669e-06
+UniRef50_B7MQ51		2.98885143182e-06	1.65944467644e-05	1.36055953326e-05
+UniRef50_F0T772	MotA TolQ ExbB proton channel family protein	6.14469488097e-05	2.19867770398e-05	-3.94601717699e-05
+UniRef50_A6LWJ1	DNA mismatch repair protein MutL	5.95716973486e-05	0.00210631034731	0.00204673864996
+UniRef50_R6EG03	Serine type site specific recombinase	1.14888290588e-05	0.000137141288755	0.000125652459696
+UniRef50_B5BFR1	Possible oxygen independent coproporphyrinogen III oxidase	0.00191458571656	0.000444358389305	-0.00147022732725
+UniRef50_Q9I7C2	DNA gyrase subunit B	0.00217107276943	0.00050014615494	-0.00167092661449
+UniRef50_Q9I656		0.00104503379861	0.00042825427429	-0.00061677952432
+UniRef50_U6JZT0		9.44846807773e-05	4.56199500503e-06	-8.99226857723e-05
+UniRef50_UPI0003B550BB	spermidine putrescine ABC transporter permease	8.2677794421e-06	0.000152461902994	0.000144194123552
+UniRef50_D6SHJ8	Bacterial membrane protein YfhO	0.00721488859767	0.00345322859598	-0.00376166000169
+UniRef50_UPI00036502F5	hypothetical protein	2.89558163087e-05	1.54485148e-05	-1.35073015087e-05
+UniRef50_Q0AAU9	Elongation factor P	1.13675924802e-05	3.66573437742e-05	2.5289751294e-05
+UniRef50_Q82HL5	Imidazolonepropionase	0.000479637111068	0.00650173094073	0.00602209382966
+UniRef50_B7V5F2	Alginate biosynthesis protein AlgZ FimS	0.000692504636356	0.000244400031881	-0.000448104604475
+UniRef50_Q9RTK1	tRNA specific 2 thiouridylase MnmA	0.000371026706344	0.0396619940964	0.0392909673901
+UniRef50_UPI0003AA521B	molybdenum ABC transporter permease	3.15030355198e-05	2.56311376953e-05	-5.8718978245e-06
+UniRef50_UPI0003B5A522	dihydrofolate reductase	1.2781563439e-05	2.49790663612e-05	1.21975029222e-05
+UniRef50_R9ZHA8	Histidine kinase	0.000303084034128	0.000706143032099	0.000403058997971
+UniRef50_A5G1D5	Uroporphyrinogen decarboxylase	7.4579052529e-06	2.18666267354e-05	1.44087214825e-05
+UniRef50_A0A037F2E9		0.000224662212355	1.37740417588e-05	-0.000210888170596
+UniRef50_UPI0003B3B50B	succinate dehydrogenase	7.50228095805e-06	1.36553136525e-05	6.15303269445e-06
+UniRef50_Q84WV0	Serine hydroxymethyltransferase 7	2.39297642032e-06	3.30131725703e-05	3.062019615e-05
+UniRef50_C0QJ54	Dihydroorotase	4.29070663979e-06	6.85704994891e-06	2.56634330912e-06
+UniRef50_Q634K9		0.000782375384975	0.000608900423076	-0.000173474961899
+UniRef50_UPI0003747F78	hypothetical protein	8.72549394864e-05	2.09678116673e-05	-6.62871278191e-05
+UniRef50_UPI0003B369AA	ribonuclease III	2.15714979479e-05	6.92094439128e-05	4.76379459649e-05
+UniRef50_UPI0003AEA2A6	PREDICTED	1.27862461754e-05	3.56438429067e-06	-9.22186188473e-06
+UniRef50_P33647	mRNA interferase ChpB	0.00169029656208	0.000513594269898	-0.00117670229218
+UniRef50_UPI0001BC2B50	GntR family transcriptional regulator	7.41122591194e-05	5.16994508947e-05	-2.24128082247e-05
+UniRef50_L1K4A8		0.000468524822607	0.000411408736575	-5.7116086032e-05
+UniRef50_B4RJX0	DNA polymerase III subunit delta	0.000533227846271	0.00414367333195	0.00361044548568
+UniRef50_Q04444	Protoheme IX farnesyltransferase	3.05973843096e-06	3.94630662121e-05	3.64033277811e-05
+UniRef50_K2GS32		7.00306280245e-05	1.12918282229e-05	-5.87387998016e-05
+UniRef50_D5AUR2		6.45113215985e-06	4.34250295474e-06	-2.10862920511e-06
+UniRef50_W8RUE5	Cytochrome B561	5.69474524575e-05	1.72135854189e-05	-3.97338670386e-05
+UniRef50_Q9HXX3	Probable cysteine desulfurase	0.000191055302585	0.000555437177595	0.00036438187501
+UniRef50_U3SRQ3	Cell shape determining protein MreC	0.00590628413574	0.00143480373981	-0.00447148039593
+UniRef50_T2E6Y0	Lysine arginine ornithine binding periplasmic family protein	0.000996128663077	0.00347257153372	0.00247644287064
+UniRef50_U6IEY8	Collagen alpha chain	4.12209537743e-05	1.53375081918e-05	-2.58834455825e-05
+UniRef50_A5WGA7	Penicillin binding protein 6, Serine peptidase, MEROPS family S11	0.00253444265998	0.00589009274925	0.00335565008927
+UniRef50_UPI00046F5711	alpha glucosidase, partial	3.20938547294e-05	7.47518147308e-06	-2.46186732563e-05
+UniRef50_A9GFW6	Histidine ammonia lyase	3.70651595586e-06	7.31527232869e-05	6.9446207331e-05
+UniRef50_A6QDZ2	Phage tape measure protein	0.000713707037488	0.000122855096404	-0.000590851941084
+UniRef50_UPI0004672C36	hypothetical protein, partial	0.000109815672558	8.85790244115e-06	-0.000100957770117
+UniRef50_UPI00046DEE74	hypothetical protein	1.30223881677e-06	7.59352792985e-05	7.46330404817e-05
+UniRef50_K7YHX4	Receptor ligand binding region family protein	0.00482522689976	0.00061899871782	-0.00420622818194
+UniRef50_A3PQ86	Extracellular solute binding protein, family 1	0.00894556284692	0.00186170050224	-0.00708386234468
+UniRef50_UPI0003B79FBA	O sialoglycoprotein endopeptidase	6.09540327431e-06	9.00097620862e-06	2.90557293431e-06
+UniRef50_A8LK13		5.72660915327e-05	2.06182187285e-05	-3.66478728042e-05
+UniRef50_A5N391		0.000145403247892	0.000463665195719	0.000318261947827
+UniRef50_E5QS55		2.84210257288e-05	0.000160734101085	0.000132313075356
+UniRef50_B4UIZ5	Putative 3 methyladenine DNA glycosylase	2.4110259963e-05	1.05862225026e-05	-1.35240374604e-05
+UniRef50_Q73CS7	Tn554 related, transposase B	0.00877647351416	0.00397484052538	-0.00480163298878
+UniRef50_I1ZP64		0.00368407755186	0.00717385535531	0.00348977780345
+UniRef50_UPI0003B53A62	metallophosphoesterase	4.06642450595e-06	6.78720535925e-05	6.38056290865e-05
+UniRef50_UPI00040A50B2	hypothetical protein	2.04076026085e-06	1.08563291311e-05	8.81556887025e-06
+UniRef50_D9QKP9	Flagellar FlaF family protein	1.1941354019e-05	2.42499876586e-05	1.23086336396e-05
+UniRef50_E4R8G4		2.37351956827e-05	5.98915899265e-05	3.61563942438e-05
+UniRef50_UPI000288FEC4	cystathionine beta lyase	1.68778597966e-05	3.18481820648e-05	1.49703222682e-05
+UniRef50_Q9ZMV7	DNA topoisomerase 1	0.000307622559545	0.00372366864282	0.00341604608328
+UniRef50_B7GIC0	N acetyldiaminopimelate deacetylase	3.02968451742e-05	0.000228337658653	0.000198040813479
+UniRef50_A9BPD7		0.000308856244385	7.25440392157e-05	-0.000236312205169
+UniRef50_A4WY56		0.00227377594921	0.000231620220955	-0.00204215572826
+UniRef50_S5V0B7		0.000548360592339	0.00112599471038	0.000577634118041
+UniRef50_Q7MV04	Chorismate synthase	4.62495944522e-06	0.0020274188357	0.00202279387625
+UniRef50_Q887Z4	Probable malate	0.009019120526	0.00504077039872	-0.00397835012728
+UniRef50_S9VRA1		7.65580163365e-05	2.65704847331e-05	-4.99875316034e-05
+UniRef50_UPI00047C4FEB	RNA methyltransferase	1.28917000836e-05	2.16946603983e-05	8.8029603147e-06
+UniRef50_D3QEM5		8.26519881161e-05	3.78906828682e-05	-4.47613052479e-05
+UniRef50_A0A024KA74		4.60954557117e-06	0.000112549493657	0.000107939948086
+UniRef50_A6LZ43	Binding protein dependent transport systems inner membrane component	0.000188428946181	0.000852644008553	0.000664215062372
+UniRef50_UPI0002376815	prolyl aminopeptidase, partial	1.34549942907e-05	3.48458661669e-05	2.13908718762e-05
+UniRef50_C0BAK5	Excinuclease ABC, C subunit	7.87582618192e-06	3.13096469214e-05	2.34338207395e-05
+UniRef50_Q21LN7	tRNA  2 O) methyltransferase	0.0020374873848	5.83726069246e-05	-0.00197911477788
+UniRef50_A4WQR0	MscS Mechanosensitive ion channel	0.00257080646298	0.000913900562882	-0.0016569059001
+UniRef50_UPI00035E0303	hypothetical protein	5.52469403818e-06	1.15684635595e-05	6.04376952132e-06
+UniRef50_U5MRV9	Serine threonine protein kinase	0.000442783635796	0.00157387420987	0.00113109057407
+UniRef50_P13982	Carbamate kinase	0.000689538988987	0.000191764094291	-0.000497774894696
+UniRef50_UPI0003815DEC	hypothetical protein	0.000730026997077	0.000699929067698	-3.0097929379e-05
+UniRef50_Q2IPX3		3.09563707558e-05	0.000506392216764	0.000475435846008
+UniRef50_S5D154	RNA 3 terminal phosphate cyclase	0.000183245625651	0.00520953956005	0.0050262939344
+UniRef50_E6NJU4	Single stranded DNA specific exonuclease	7.31089713695e-05	0.00253146614321	0.00245835717184
+UniRef50_UPI00042B0FB5	Enoyl CoA hydratase isomerase D isoform 1	4.2227885151e-05	5.28025992827e-05	1.05747141317e-05
+UniRef50_X2HZR9	Glycosyltransferase 9 family protein	0.0004950643619	0.00355227571611	0.00305721135421
+UniRef50_P72794	Phosphoadenosine phosphosulfate reductase	9.42903920079e-06	1.4621505404e-05	5.19246620321e-06
+UniRef50_P21826	Malate synthase 2, glyoxysomal	1.16051111112e-05	1.01791287612e-05	-1.42598235e-06
+UniRef50_Q8CRL3		0.00922242905109	0.00170711251666	-0.00751531653443
+UniRef50_C5WHP5		0.00644342984872	0.000663592958822	-0.0057798368899
+UniRef50_O87016	tRNA pseudouridine synthase A	0.00071564353676	0.00133223785409	0.00061659431733
+UniRef50_J3MER7		4.75027475239e-06	8.29409629013e-05	7.81906881489e-05
+UniRef50_P0AGG3	Acyl CoA thioesterase 2	0.00406027738126	0.000623364651693	-0.00343691272957
+UniRef50_UPI0003AF73D9	PREDICTED	9.00582863081e-05	5.97726284432e-05	-3.02856578649e-05
+UniRef50_R0P9K1	D alanyl D alanine carboxypeptidase family protein 	0.000140852980911	0.00220517238216	0.00206431940125
+UniRef50_B9DPV8	Heme A synthase	0.00863557309472	0.00329089091725	-0.00534468217747
+UniRef50_UPI0004705E30	hypothetical protein	4.97767935597e-05	0.000133443503908	8.36667103483e-05
+UniRef50_Q8FFW9		0.00317462678592	0.000446666953163	-0.00272795983276
+UniRef50_P39282	Inner membrane transporter YjeM	0.00191756109349	0.00241504385503	0.00049748276154
+UniRef50_G2L2S5	Usher CupC3	0.00050693542739	0.000228441714788	-0.000278493712602
+UniRef50_U5MXP3		0.00055238540274	0.00120948821241	0.00065710280967
+UniRef50_W7VSI1		4.41215866739e-05	1.16185939305e-05	-3.25029927434e-05
+UniRef50_UPI00036404C4	hypothetical protein, partial	6.38729393015e-05	8.33743423042e-05	1.95014030027e-05
+UniRef50_B7GX48	Dihydroorotase	0.000221416544302	0.00704194953859	0.00682053299429
+UniRef50_UPI00034DB867	hypothetical protein	3.66432003638e-05	2.86614895778e-05	-7.981710786e-06
+UniRef50_Q3IV31	Two component transcriptional regulator, LuxR family	0.00824173001267	0.00271683408625	-0.00552489592642
+UniRef50_W5VEC3		0.000287040968371	0.000425847963751	0.00013880699538
+UniRef50_X5QPT7	Phosphatase	5.69643832137e-06	1.13191411435e-05	5.62270282213e-06
+UniRef50_B7N5L4	CinA like protein	0.00303256945269	0.00233202738417	-0.00070054206852
+UniRef50_F2N5L7	Membrane protein	4.32448175698e-05	5.57853915734e-05	1.25405740036e-05
+UniRef50_UPI000380F219	hypothetical protein	1.69047544956e-05	2.25927924875e-05	5.6880379919e-06
+UniRef50_B9E6T3	Phosphate specific transport system accessory protein PhoU	0.0159093777712	0.00263858811801	-0.0132707896532
+UniRef50_UPI00029A1B88	putative beta carotene desaturase methylase	8.84732786372e-05	4.29248449696e-06	-8.41807941402e-05
+UniRef50_UPI0003B30D3A	ABC transporter permease	7.018336314e-06	9.53851644773e-06	2.52018013373e-06
+UniRef50_K2XX98	Tryptophanase	0.000308571653009	0.00107200723931	0.000763435586301
+UniRef50_UPI000366A6AA	hypothetical protein	6.63451302619e-06	2.78979366778e-05	2.12634236516e-05
+UniRef50_A1K1U7	Lipoyl synthase	4.81334664778e-06	9.79687824816e-06	4.98353160038e-06
+UniRef50_UPI0002627F17	acetolactate synthase	4.02764102318e-05	9.86499994125e-05	5.83735891807e-05
+UniRef50_R0ZN74	Putative identified by MetaGeneAnnotator	9.25287279381e-06	0.00010669999783	9.74471250362e-05
+UniRef50_P22609	Type 4 fimbrial assembly protein PilC	0.000411202888168	0.000183236838799	-0.000227966049369
+UniRef50_Q1CUW0	Phosphate acyltransferase	0.000122693170804	0.00492645331283	0.00480376014203
+UniRef50_Q9K907	Bis tetraphosphatase PrpE [asymmetrical]	3.46232294946e-05	0.000399221006554	0.000364597777059
+UniRef50_UPI00047C7069	hypothetical protein	6.73192233813e-06	1.02947824257e-05	3.56286008757e-06
+UniRef50_UPI000463DC0E	exodeoxyribonuclease III	7.48213360561e-05	1.62394806621e-05	-5.8581855394e-05
+UniRef50_D4GSF3	SAMP activating enzyme E1	2.85189236737e-05	7.03512615249e-05	4.18323378512e-05
+UniRef50_K0DUB4	Guanine deaminase	0.00017799278945	0.000347750396965	0.000169757607515
+UniRef50_A5P853		3.17531240605e-05	4.11507379255e-05	9.397613865e-06
+UniRef50_A8LKM9	Transcriptional regulator	0.00470221180881	0.000861283188269	-0.00384092862054
+UniRef50_Q469F5	Lon protease	0.000511577850277	0.00135075045631	0.000839172606033
+UniRef50_J7M386	Mevalonate kinase	0.000394175755734	0.0011527672651	0.000758591509366
+UniRef50_Q9KPZ7	Copper exporting P type ATPase A	5.23351227837e-06	5.80594491628e-05	5.28259368844e-05
+UniRef50_P25907		0.00259447348708	0.00195984435	-0.00063462913708
+UniRef50_A0A024EDR3	Malonate decarboxylase, alpha subunit	0.00107089900933	0.00104260521206	-2.829379727e-05
+UniRef50_P24171	Peptidyl dipeptidase dcp	0.00253856556398	0.000811116592989	-0.00172744897099
+UniRef50_I3X5Y9	Transposase IS4 family protein	3.40991223193e-05	1.3985250459e-05	-2.01138718603e-05
+UniRef50_N4R2H6	Type F conjugative transfer system protein TraW	0.0001101126364	4.46651370877e-05	-6.54474993123e-05
+UniRef50_Q1J163	Elongation factor P	1.39397354038e-05	0.00120579436193	0.00119185462653
+UniRef50_Q27I85	PSQ10.3c	4.55029082807e-05	5.63500747548e-05	1.08471664741e-05
+UniRef50_UPI00037303EC	hypothetical protein	2.03606793825e-05	1.64631278185e-05	-3.897551564e-06
+UniRef50_H6N2J3		4.02053109194e-07	3.62338438668e-06	3.22133127749e-06
+UniRef50_UPI000465CD92	membrane protein	8.78865920273e-06	1.40831536346e-05	5.29449443187e-06
+UniRef50_D6A1D4		5.99844134442e-05	0.00112535108184	0.0010653666684
+UniRef50_D2Q8M6	Sugar binding lipoprotein of ABC transporter system	0.00086109359777	0.00442880096515	0.00356770736738
+UniRef50_Q6E7F4	dTDP glucose 4,6 dehydratase	0.00333201274394	0.000694910024425	-0.00263710271952
+UniRef50_UPI00037948E9	hypothetical protein	1.22752950701e-05	1.73756854612e-05	5.1003903911e-06
+UniRef50_UPI0003708B64	hypothetical protein	1.34487425792e-05	6.38773750785e-06	-7.06100507135e-06
+UniRef50_P0AAS1	Inner membrane protein YlaC	0.00680536327058	0.00149022322971	-0.00531514004087
+UniRef50_UPI0003032198	hypothetical protein	1.03384040464e-05	1.27821040311e-05	2.4436999847e-06
+UniRef50_UPI00046685FF	hypothetical protein, partial	0.000199370708951	0.000534431258114	0.000335060549163
+UniRef50_UPI000377B254	hypothetical protein	4.00077514755e-06	1.06797024305e-05	6.67892728295e-06
+UniRef50_A0A011MUR4	Inner membrane protein YjcH	0.000159064985804	5.89671630859e-05	-0.000100097822718
+UniRef50_A5UN55	DNA directed RNA polymerase subunit D	0.00387161209938	0.00120422719843	-0.00266738490095
+UniRef50_F0KJH6	cAMP phosphodiesterase, heme regulated	0.000103515353427	0.0033646703999	0.00326115504647
+UniRef50_P39795	Trehalose 6 phosphate hydrolase	0.00251843938048	0.00237736078611	-0.00014107859437
+UniRef50_Q7NIG8	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	3.02649468004e-05	5.84977298898e-05	2.82327830894e-05
+UniRef50_UPI0002E68AF4	hypothetical protein	0.000346148054217	0.000144392531399	-0.000201755522818
+UniRef50_Q7UGJ1	Ribosome binding ATPase YchF	0.00152535588943	0.007605092871	0.00607973698157
+UniRef50_V5SST6	Transcriptional regulator	0.000371297693954	0.000368378426439	-2.919267515e-06
+UniRef50_Q52671	Sarcosine oxidase subunit beta	0.00981127435283	0.0011702325299	-0.00864104182293
+UniRef50_V6JTT6	Membrane protein	4.82578932584e-05	2.72768795513e-05	-2.09810137071e-05
+UniRef50_UPI00016C3AF7	aspartyl glutamyl tRNA amidotransferase subunit B	1.14223826312e-05	6.11991631173e-06	-5.30246631947e-06
+UniRef50_T1A5Q2	Protein containing DUF28	6.74169060459e-05	5.27993040976e-05	-1.46176019483e-05
+UniRef50_P0C652	Insertion element IS1 protein InsA	0.000962480048154	0.0039818918867	0.00301941183855
+UniRef50_UPI000362D518	hypothetical protein	2.60551511227e-06	2.92861738016e-06	3.2310226789e-07
+UniRef50_UPI0003C1AD28		0.00059129125796	8.39528444824e-05	-0.000507338413478
+UniRef50_Q7VJN5	3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000583297969285	0.00214077287321	0.00155747490393
+UniRef50_UPI00047D0FD3	isopentenyl diphosphate delta isomerase	6.96049288192e-05	1.67735712418e-05	-5.28313575774e-05
+UniRef50_Y7FMH1		3.24643977845e-05	5.21538458851e-05	1.96894481006e-05
+UniRef50_A0A053ZV58	PE PGRS family protein PE_PGRS6 	4.96421480445e-06	4.44829697082e-05	3.95187549038e-05
+UniRef50_Q5M2U6	Ribosomal RNA small subunit methyltransferase H	0.0261936059268	0.0148163068336	-0.0113772990932
+UniRef50_T0DA68		1.33509628063e-05	0.000119634322249	0.000106283359443
+UniRef50_UPI00031299A3	putrescine spermidine ABC transporter substrate binding protein	2.56698841095e-05	0.000119916594443	9.42467103335e-05
+UniRef50_T1XR51	SAM dependent methyltransferase, putative	0.0215953101397	0.00581570547797	-0.0157796046617
+UniRef50_UPI00040C571B	hypothetical protein	3.87006090364e-06	4.21535806713e-05	3.82835197677e-05
+UniRef50_Q51576		0.000306755112133	0.000635895150675	0.000329140038542
+UniRef50_J0GJ57	LPXTG motif cell wall anchor domain protein	0.00189267875781	0.000251690373754	-0.00164098838406
+UniRef50_A0A024JCU6	Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family	3.39513678557e-06	0.00012358305741	0.000120187920624
+UniRef50_M4TWT1		2.61934727096e-06	4.8525075276e-06	2.23316025664e-06
+UniRef50_UPI00036D292E	hypothetical protein	5.79997633727e-06	5.64233435913e-06	-1.5764197814e-07
+UniRef50_U5MPM6	Anti sigma factor N terminus	0.000210801323136	0.00120054699694	0.000989745673804
+UniRef50_UPI000360F857	hypothetical protein	5.67990682454e-06	1.61684579395e-05	1.0488551115e-05
+UniRef50_Q8FIR3	N methyl L tryptophan oxidase	0.00295445320372	0.0012591604561	-0.00169529274762
+UniRef50_M9SB66		0.000402966650976	0.000256425503788	-0.000146541147188
+UniRef50_L0Q2L3		9.03414029288e-05	0.000978135264835	0.000887793861906
+UniRef50_P77610	L asparagine permease	0.00353882579063	0.000503036631673	-0.00303578915896
+UniRef50_V5SZ20	Glycosyl transferase	0.000730048215693	0.000595999793308	-0.000134048422385
+UniRef50_Q9CEG1	5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.00657987225709	0.00708030271549	0.0005004304584
+UniRef50_UPI00041A37DE	hypothetical protein	3.58829873669e-05	1.99106867756e-05	-1.59723005913e-05
+UniRef50_C7MGE6		0.0171046538492	0.0034918991815	-0.0136127546677
+UniRef50_P0CK95	Putative lipoprotein AcfD homolog	0.00241277144926	0.000627983835345	-0.00178478761391
+UniRef50_Q6A8C8	ATP synthase epsilon chain	0.000516515137485	0.0163357137973	0.0158191986598
+UniRef50_UPI0003B78686	polyamine ABC transporter permease, partial	1.24421524914e-05	7.13375843667e-05	5.88954318753e-05
+UniRef50_T2E3D9	Cytochrome c oxidase accessory protein CcoG	0.000494445875905	0.00110566285469	0.000611216978785
+UniRef50_Q5LNK3	Holo [acyl carrier protein] synthase	0.00506694829474	0.000542445840392	-0.00452450245435
+UniRef50_Q8K9K4	Flagellar basal body rod protein FlgG	0.0164506244147	0.00282874350327	-0.0136218809114
+UniRef50_T0ND38		1.13494375483e-05	9.92837658123e-06	-1.42106096707e-06
+UniRef50_Q46812	Protein SsnA	0.00863524225922	0.00249311360445	-0.00614212865477
+UniRef50_F3KHX6	ABC type transport system involved in Fe S cluster assembly, ATPase component	1.8217743079e-05	3.91352128767e-05	2.09174697977e-05
+UniRef50_D8IGI0	Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.0102286176828	0.00637511876492	-0.00385349891788
+UniRef50_UPI0002192F4A	ABC transporter ATP binding protein	2.66426804626e-05	5.88687211286e-06	-2.07558083497e-05
+UniRef50_N6A660		0.000300771955137	0.000153328824921	-0.000147443130216
+UniRef50_UPI000300B5EF	pyrroline 5 carboxylate dehydrogenase	2.16460799875e-05	6.55090618321e-06	-1.50951738043e-05
+UniRef50_K6TZB8		0.000524286095625	0.00481154565986	0.00428725956424
+UniRef50_UPI0004765628	NADH quinone oxidoreductase subunit K	8.91613713091e-05	8.79816556777e-05	-1.1797156314e-06
+UniRef50_UPI000289CB7D	alkyl hydroperoxide reductase  thiol specific antioxidant  Mal allergen	1.59752251034e-05	0.000423934124494	0.000407958899391
+UniRef50_Q9RFD3	Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	0.0105755466464	0.002455438698	-0.0081201079484
+UniRef50_F0XYR5		1.65381464035e-05	0.000186891721937	0.000170353575533
+UniRef50_UPI0003775FD0	hypothetical protein	5.23622831573e-05	4.30903426307e-05	-9.2719405266e-06
+UniRef50_E6RPQ3		6.58664692817e-05	2.76820334873e-05	-3.81844357944e-05
+UniRef50_B6IPE0	Probable transaldolase	0.0139966823341	0.0141365417627	0.0001398594286
+UniRef50_D9STR3		0.000343710519528	0.000558198075654	0.000214487556126
+UniRef50_A6V5X2	Cyclic diguanylate phosphodiesterase  domain protein	0.000967226900584	0.000300093864815	-0.000667133035769
+UniRef50_UPI000465C5E8	peptide ABC transporter permease	1.80974435753e-05	2.11736782479e-05	3.0762346726e-06
+UniRef50_UPI000380077B	hypothetical protein	1.26083364399e-05	1.69512366835e-05	4.3429002436e-06
+UniRef50_UPI00029CD1FE	molybdopterin biosynthesis protein, partial	4.87456387146e-06	1.61889865377e-05	1.13144226662e-05
+UniRef50_C1CVF4	DNA gyrase subunit A	0.000159190540286	0.0508022764706	0.0506430859303
+UniRef50_UPI00024851F4	hemolysin type calcium binding protein, partial	5.20484161919e-05	2.98778123165e-05	-2.21706038754e-05
+UniRef50_A0A017XC98		0.0116446538598	0.00255918406452	-0.00908546979528
+UniRef50_UPI0004704CFF	cation	1.42576596603e-05	4.24030823681e-05	2.81454227078e-05
+UniRef50_M5FJL9		3.44896130893e-05	0.000987583848416	0.000953094235327
+UniRef50_C7NLK0		8.66547613271e-06	2.79836794614e-05	1.93182033287e-05
+UniRef50_A0A025GLL8	Lipoprotein NlpD	0.00217391173558	0.00110027233794	-0.00107363939764
+UniRef50_UPI0002557A7E	high affinity branched chain amino acid ABC transporterATP binding protein, partial	0.000295467390067	4.24570594636e-05	-0.000253010330603
+UniRef50_Q9PC10	Bifunctional purine biosynthesis protein PurH	2.85047267843e-06	0.00379891888394	0.00379606841126
+UniRef50_UPI00047B4540	flavin monooxygenase	1.145798318e-05	2.01469997051e-05	8.6890165251e-06
+UniRef50_T1B7E9	FeS assembly protein SufB 	4.44263809522e-06	8.70979755788e-05	8.26553374836e-05
+UniRef50_G8PBW8	Phosphatidylethanolamine binding family protein	3.68729530284e-05	2.00933103306e-05	-1.67796426978e-05
+UniRef50_UPI0003A506AE	MULTISPECIES	5.68214612427e-06	1.84569825451e-05	1.27748364208e-05
+UniRef50_E7KW76	Muc1p 	5.96654777896e-06	3.23411104275e-05	2.63745626485e-05
+UniRef50_UPI0003A8EC6C	hypothetical protein	0.000100276123806	1.73345862354e-05	-8.29415375706e-05
+UniRef50_F0RPV8	Diguanylate cyclase	8.76327023121e-06	0.00164619329046	0.00163743002023
+UniRef50_UPI00047DB175	beta lactamase	1.6713340482e-05	2.86648507308e-05	1.19515102488e-05
+UniRef50_Q42581	Ribose phosphate pyrophosphokinase 1, chloroplastic	0.000109623840068	6.9722285617e-05	-3.9901554451e-05
+UniRef50_UPI00037D526A	hypothetical protein, partial	6.47350617605e-05	5.49688823519e-05	-9.7661794086e-06
+UniRef50_F8WK85	PAP2 family protein	0.0100019317188	0.00438169397155	-0.00562023774725
+UniRef50_UPI00036C9515	hypothetical protein	0.000108175376047	0.000197463878759	8.9288502712e-05
+UniRef50_P45792	Type IV pilus assembly protein TapB	0.000678704040354	0.0117613737708	0.0110826697304
+UniRef50_Q3DDY2		0.000294190088179	1.9950000688e-05	-0.000274240087491
+UniRef50_Q2SSQ8	Glycerol kinase	1.29747286403e-05	9.97456681135e-05	8.67709394732e-05
+UniRef50_Q9M8L4	Glycerol kinase	0.00945689604232	0.0394545842843	0.029997688242
+UniRef50_V4XRX6		0.000106134767253	0.000359767365452	0.000253632598199
+UniRef50_UPI000364B546	hypothetical protein	0.000143204293309	1.99780816919e-05	-0.000123226211617
+UniRef50_UPI00036C1952	hypothetical protein, partial	0.00116995494801	0.000149937041184	-0.00102001790683
+UniRef50_Q9UZ08	2 isopropylmalate synthase	8.94198979865e-06	5.30116519347e-06	-3.64082460518e-06
+UniRef50_Q28VP7	Ubiquinone biosynthesis O methyltransferase	0.0045433762599	0.00399815931309	-0.00054521694681
+UniRef50_UPI0003771895	hypothetical protein, partial	3.40228003486e-05	5.76584700187e-05	2.36356696701e-05
+UniRef50_A7X0A3		0.0112126305457	0.00177221400291	-0.00944041654279
+UniRef50_A7X0A2		0.0106613089259	0.00226204113873	-0.00839926778717
+UniRef50_M9VDE6		0.000319268942872	0.00912339814015	0.00880412919728
+UniRef50_B1AIX1	Uridine kinase	1.03157370509e-05	5.32158137701e-05	4.29000767192e-05
+UniRef50_UPI00047145DA	cobyrinic acid a c diamide adenosyltransferase	1.00780972922e-05	1.53633036926e-05	5.2852064004e-06
+UniRef50_Q0AG56	S adenosylmethionine	1.57613272581e-05	8.6603139358e-05	7.08418120999e-05
+UniRef50_A1B903	Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.00982466571676	0.000633274965451	-0.00919139075131
+UniRef50_Q46807	Carbamate kinase like protein YqeA	0.00296833340408	0.000718882699722	-0.00224945070436
+UniRef50_Q5HGR7		3.35582503495e-05	0.000138991787255	0.000105433536906
+UniRef50_P0C0L2	Peroxiredoxin OsmC	0.0163595080319	0.000493565523996	-0.0158659425079
+UniRef50_A1A968	Glutathione binding protein GsiB	0.00265326495623	0.0010890675305	-0.00156419742573
+UniRef50_A1SHI2	Glycosyl transferase, family 4	0.00034877880988	0.00591578440292	0.00556700559304
+UniRef50_H9UVF3	PilL	0.000128421763707	0.000128802081986	3.80318279e-07
+UniRef50_UPI00037FAEB8	ABC transporter	1.22028656972e-05	6.31945704893e-05	5.09917047921e-05
+UniRef50_E6SFQ0	Cell envelope related transcriptional attenuator	3.40248496559e-06	6.23353018246e-06	2.83104521687e-06
+UniRef50_D3F7I1	Cupin 2 conserved barrel domain protein	0.000206362504528	1.06547213837e-05	-0.000195707783144
+UniRef50_Q9ZLW5	Glutamine synthetase	9.27424139346e-05	0.0053042947722	0.00521155235827
+UniRef50_Q9FI53	Fumarate hydratase 2, chloroplastic	0.000516015862066	0.00231881950565	0.00180280364358
+UniRef50_Q97DP6	Phospho alpha glucosidase PagL	0.000280981685127	0.0015050175279	0.00122403584277
+UniRef50_A7GYI2	Lipoprotein, nlpa family	0.000232576905162	0.00387190972858	0.00363933282342
+UniRef50_UPI00037CD319	hypothetical protein	8.78057865083e-06	5.82760173119e-06	-2.95297691964e-06
+UniRef50_UPI000376EC18	hypothetical protein	9.75728116849e-06	1.59048113404e-05	6.14753017191e-06
+UniRef50_Q67J65	UDP N acetylglucosamine 1 carboxyvinyltransferase 3	1.29158514144e-05	5.50724049496e-05	4.21565535352e-05
+UniRef50_A0A050FM21	Integral membrane protein 	5.5465010055e-05	3.90061173112e-05	-1.64588927438e-05
+UniRef50_Q6GDB6	Lactonase drp35	0.0231115856261	0.00612953936135	-0.0169820462648
+UniRef50_Q0RDV0	Ribosomal protein S12 methylthiotransferase RimO	0.000660041152952	0.00654604815353	0.00588600700058
+UniRef50_B9DZW5		0.000194915312664	0.000390286394531	0.000195371081867
+UniRef50_UPI0002196F63	membrane protein	1.94427564728e-05	4.84937704412e-05	2.90510139684e-05
+UniRef50_Q9Z3S3	Probable oxidoreductase OrdL	2.57169517125e-05	4.88101906791e-06	-2.08359326446e-05
+UniRef50_D3DZ74	UPF0288 protein mru_1774	0.00302280562731	0.00110698206159	-0.00191582356572
+UniRef50_D5APE1	Polyhydroxyalkanoate synthesis repressor PhaR	0.000410454663008	3.98598105854e-05	-0.000370594852423
+UniRef50_A6M0B9	D galactose binding periplasmic protein	0.000221439696001	0.00424079628005	0.00401935658405
+UniRef50_Q7MAI3	CTP synthase	0.00202262266695	0.00651223330206	0.00448961063511
+UniRef50_G8PD79	Fibronectin binding A family protein	2.54304494842e-06	0.00119811717816	0.00119557413321
+UniRef50_U1DNW1		0.000286052886474	4.87420552149e-05	-0.000237310831259
+UniRef50_B9DNV1	3 dehydroquinate synthase	0.0179533942372	0.00717765647824	-0.010775737759
+UniRef50_A5ULI3	Antimicrobial peptide ABC transporter, permease component	0.00253862358739	0.000770523029198	-0.00176810055819
+UniRef50_T0U0F8	Sakacin A production response regulator	0.00454262292846	0.00538896950332	0.00084634657486
+UniRef50_Z5YCH8	Cupin	9.07174769539e-05	3.38366227327e-05	-5.68808542212e-05
+UniRef50_Q98IL7	Mlr2347 protein	0.000246329197527	0.000276045123666	2.9715926139e-05
+UniRef50_Q609F9	Glutamate racemase	0.0011153340084	0.000265238748426	-0.000850095259974
+UniRef50_Q8RHI6	DNA directed RNA polymerase subunit beta	1.70049930159e-06	1.9183235634e-06	2.1782426181e-07
+UniRef50_UPI000378688C	hypothetical protein	3.37962831957e-05	1.05754675289e-05	-2.32208156668e-05
+UniRef50_N9R0J7		4.16420946777e-05	4.86720465508e-05	7.0299518731e-06
+UniRef50_UPI0000510061	putative ABC transport protein, ATP binding component	8.14554298237e-06	0.0013198140645	0.00131166852152
+UniRef50_I8R6Q9	Excinuclease ABC, subunit A	1.35616693059e-05	0.000104535603554	9.09739342481e-05
+UniRef50_P76361	Inner membrane protein YeeR	0.000868945758751	0.00044959160728	-0.000419354151471
+UniRef50_UPI0003A07059	virulence factor MviN	1.9901331499e-05	1.53871681942e-05	-4.5141633048e-06
+UniRef50_UPI0001C395E6	cystathionine gamma lyase	6.65959105759e-05	2.32380977849e-05	-4.3357812791e-05
+UniRef50_C6VIP9		8.2090718019e-06	1.01023680586e-05	1.8932962567e-06
+UniRef50_B6GEL4	DnaJ domain protein 	2.00887044949e-05	2.05168469874e-05	4.281424925e-07
+UniRef50_W4TF65	Glycosyltransferase	0.000283143144955	0.00736899448451	0.00708585133956
+UniRef50_A5CRZ1	Chorismate synthase	1.10429462478e-05	0.000163721134632	0.000152678188384
+UniRef50_UPI0003810CDE	hypothetical protein, partial	1.76861777055e-05	0.000215007181358	0.000197321003653
+UniRef50_Q2YUL0	Putative thiaminase 2	0.0181390146495	0.00476026067964	-0.0133787539699
+UniRef50_F6A0T7	Response regulator receiver domain protein	0.00389837218059	0.000358684257326	-0.00353968792326
+UniRef50_A5UJE8	DNA repair exonuclease , Rad32	0.00143457942626	0.000146075864066	-0.00128850356219
+UniRef50_B2UYL5		0.000196266545327	0.00216118105943	0.0019649145141
+UniRef50_UPI00046FD3F6	ATPase	2.43476602181e-06	0.00043911940413	0.000436684638108
+UniRef50_Q6F7X4		0.000187803974553	0.00483482457449	0.00464702059994
+UniRef50_W8S0E0		0.000311585763701	6.05379410349e-05	-0.000251047822666
+UniRef50_UPI0003B42AB6	damage inducible protein	1.77271020637e-05	9.09023612574e-06	-8.63686593796e-06
+UniRef50_G3ZGB0		0.000703252922103	0.000952634532885	0.000249381610782
+UniRef50_P21437	Fructose 1,6 bisphosphatase 2 class 2	0.00366546656703	0.000284414162307	-0.00338105240472
+UniRef50_UPI000373168E	hypothetical protein	1.4989358147e-05	1.66835849874e-05	1.6942268404e-06
+UniRef50_S3ZPA8	Putative Linear gramicidin synthase subunit C	8.32892092811e-05	0.000473227745177	0.000389938535896
+UniRef50_C9D9L2	Universal stress protein	0.000411776253368	0.0282083244482	0.0277965481948
+UniRef50_P45762	Putative type II secretion system protein K	0.0032267312026	0.00098540140987	-0.00224132979273
+UniRef50_E6S5F6	Flagellar biosynthesis sigma factor	0.000151600798739	0.00298468645591	0.00283308565717
+UniRef50_B1Y7P3	Glycine  tRNA ligase alpha subunit	0.000149841988814	0.000946356982569	0.000796514993755
+UniRef50_UPI0002899294	branched chain amino acid aminotransferase, partial	3.47803276422e-05	3.72560817618e-05	2.4757541196e-06
+UniRef50_P77172	Cyclic di GMP phosphodiesterase YfgF	0.00244217259085	0.000585964227889	-0.00185620836296
+UniRef50_H4GEP0	Replication initiator protein A, N terminal domain protein	0.000116787480987	2.35038486219e-05	-9.32836323651e-05
+UniRef50_K0IHJ1	Ammonium transporter NrgA	0.00027712719646	0.00129121770044	0.00101409050398
+UniRef50_UPI00036013C9	hypothetical protein, partial	0.000121894824799	0.000111074405426	-1.0820419373e-05
+UniRef50_UPI00046F81B4	hypothetical protein	2.36901228817e-05	6.81216927357e-05	4.4431569854e-05
+UniRef50_Q6FAM5	Bifunctional uridylyltransferase uridylyl removing enzyme	0.000337142789937	0.00525131810669	0.00491417531675
+UniRef50_Q0BWA4	Uroporphyrinogen decarboxylase	7.46180815603e-06	1.44741871027e-05	7.01237894667e-06
+UniRef50_Q47LW5		1.97223159411e-06	0.000109647291535	0.000107675059941
+UniRef50_P75685	Inner membrane protein RclC	0.00274211712134	0.00216625030876	-0.00057586681258
+UniRef50_D2R1Q0		1.6552174817e-05	0.000228119005864	0.000211566831047
+UniRef50_O34607	Probable L serine dehydratase, alpha chain	0.000911055321036	0.00768865007592	0.00677759475488
+UniRef50_Q2YUI8	Serine protein kinase RsbW	0.0129624453293	0.00254853302326	-0.010413912306
+UniRef50_Q57549	Probable thiol peroxidase	0.00155131228296	0.0027308363985	0.00117952411554
+UniRef50_A3PLU4	Holliday junction ATP dependent DNA helicase RuvA	8.91249002058e-05	4.50679477566e-05	-4.40569524492e-05
+UniRef50_O67703	Acetolactate synthase small subunit	4.46070866811e-05	0.000368494056094	0.000323886969413
+UniRef50_M5HHC7		0.000779037649562	3.7850948112e-05	-0.00074118670145
+UniRef50_K2DEX2		0.00319794464207	0.000915851534752	-0.00228209310732
+UniRef50_UPI00037E7ACC	hypothetical protein	0.000222191351783	4.06771019415e-05	-0.000181514249841
+UniRef50_P08142	Acetolactate synthase isozyme 1 large subunit	0.00262959397591	0.00121118492679	-0.00141840904912
+UniRef50_P37903	Universal stress protein F	0.00104736415878	0.00561658638029	0.00456922222151
+UniRef50_F3U4X7	ABC sugar transporter, inner membrane subunit	0.0190906779594	0.00380598692384	-0.0152846910356
+UniRef50_V5SGS7	Multidrug ABC transporter permease	0.00925169559036	0.0014569402123	-0.00779475537806
+UniRef50_M4S6Z7		6.92675275089e-05	9.34346725083e-05	2.41671449994e-05
+UniRef50_Q8XJ36	Two component response regulator	0.000439918039809	0.00128645179122	0.000846533751411
+UniRef50_G7ZP62	Chromosome replication initiation membrane attachment protein	0.0168095416203	0.00352217783447	-0.0132873637858
+UniRef50_K4KGL9	Beta ketoacyl synthase	0.00062519620505	0.000127017937712	-0.000498178267338
+UniRef50_P07770	Benzoate 1,2 dioxygenase subunit beta	0.00343169080774	0.0109633670813	0.00753167627356
+UniRef50_A5WFZ6	Anthranilate phosphoribosyltransferase	0.000139198043701	0.0100361146912	0.0098969166475
+UniRef50_E0SBA7		4.54100488904e-06	6.70404712587e-06	2.16304223683e-06
+UniRef50_M9RBA6		0.00529716127021	0.000113454417794	-0.00518370685242
+UniRef50_UPI0004259771	peptidylprolyl isomerase	1.14014822927e-05	5.86462512229e-05	4.72447689302e-05
+UniRef50_Q47679	Hydrolase YafV	0.0017861045139	0.000573430495526	-0.00121267401837
+UniRef50_UPI0004661C80	hypothetical protein, partial	2.40379548207e-05	0.000136475775768	0.000112437820947
+UniRef50_C5AI60	Diguanylate cyclase	3.13522164665e-06	0.000167188296511	0.000164053074864
+UniRef50_UPI0002197895	phosphoribosylaminoimidazole carboxylase	6.36261923385e-06	1.21657230203e-05	5.80310378645e-06
+UniRef50_B7GHM5	Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0138887108959	0.00156797721074	-0.0123207336852
+UniRef50_D8GMQ7	Predicted acyl CoA thioesterase 1	0.000241799087552	0.00267148981811	0.00242969073056
+UniRef50_K7RVQ7	Transporter, major facilitator family protein	9.11801905478e-05	0.00296972741164	0.00287854722109
+UniRef50_UPI000367D1F7	hypothetical protein	2.50789421641e-05	1.28042496832e-05	-1.22746924809e-05
+UniRef50_A3PJB9	ABC transporter related	0.0113046243824	0.000990774276087	-0.0103138501063
+UniRef50_H8GYE3		6.17479807229e-05	0.030380257698	0.0303185097173
+UniRef50_Q8DJL3	Tlr1209 protein	0.000205047980263	7.3143871086e-05	-0.000131904109177
+UniRef50_D2ZPN4	Putative toxin antitoxin system toxin component, PIN family	2.06196697336e-05	6.69489077827e-07	-1.99501806558e-05
+UniRef50_A3PHS3	Transport associated	0.000596367730434	0.00212569066333	0.0015293229329
+UniRef50_P31961	Phosphogluconate dehydratase	0.00353345788129	0.012371743748	0.00883828586671
+UniRef50_H8GYE9		0.00026583520342	0.00238490599175	0.00211907078833
+UniRef50_M5DRD3		8.32517960408e-05	3.64392113916e-05	-4.68125846492e-05
+UniRef50_A0A058ZFX3		3.94167521259e-06	8.38018027807e-06	4.43850506548e-06
+UniRef50_Q3J2Y8	Acyltransferase domain 	0.00230309228761	0.000182905842502	-0.00212018644511
+UniRef50_Q1GGL7		0.000168191978568	4.48170657139e-05	-0.000123374912854
+UniRef50_Q1GGL2		0.00483451897582	0.00267622818531	-0.00215829079051
+UniRef50_K0N9J9	Cellobiose permease IIC component	0.00571915490317	0.00336836098432	-0.00235079391885
+UniRef50_H2FLG9	Protein GRSP 2, isoform f	4.68471937896e-05	1.29369065555e-05	-3.39102872341e-05
+UniRef50_G2WZD3		6.49469523581e-06	0.000105769056209	9.92743609732e-05
+UniRef50_A9M9V6	NAD specific glutamate dehydrogenase	1.77429701554e-05	1.03784084975e-05	-7.3645616579e-06
+UniRef50_K0LFR7		0.0190458566493	0.00932978883974	-0.00971606780956
+UniRef50_Q48NP4	OsmC Ohr family protein	0.00871121512735	0.00336703131814	-0.00534418380921
+UniRef50_Q8CS08		0.0126868471177	0.00173392995839	-0.0109529171593
+UniRef50_Q2NHD8	Predicted minichromosome maintenance protein	0.00199163217154	0.000760741710875	-0.00123089046067
+UniRef50_L8MLB7	Putative membrane protein, clustering with ActP	0.000127559256993	7.51961455758e-05	-5.23631114172e-05
+UniRef50_Q6FF72		0.00101336892875	0.00315382702001	0.00214045809126
+UniRef50_Q72CF3	50S ribosomal protein L17	0.00273252794983	0.00287832928354	0.00014580133371
+UniRef50_Q6FF71		0.000463875691152	0.00378438986594	0.00332051417479
+UniRef50_T2F8G8	Type IV prepilin peptidase	1.52930342816e-05	1.4754678803e-05	-5.383554786e-07
+UniRef50_UPI00046B85CA	PREDICTED	5.68362089032e-06	0.000199659429296	0.000193975808406
+UniRef50_UPI0004788AD3	hypothetical protein	6.55128639135e-06	8.38438523829e-05	7.72925659915e-05
+UniRef50_W8YT37		1.23616245605e-05	0.000216478850176	0.000204117225615
+UniRef50_E3NV91	Aldehyde dehydrogenase	0.000157505803757	0.00896770998095	0.00881020417719
+UniRef50_UPI00035FA1C3	hypothetical protein	1.19597225325e-05	1.77060938768e-05	5.7463713443e-06
+UniRef50_I0IED2		8.5083243167e-05	8.60944278648e-05	1.0111846978e-06
+UniRef50_P54689	Branched chain amino acid aminotransferase	0.00535433688493	0.0458830204376	0.0405286835527
+UniRef50_K5YUY4	Polyhydroxyalkanoate synthesis repressor PhaR	3.20981600514e-05	9.73983034321e-06	-2.23583297082e-05
+UniRef50_UPI000376564B	hypothetical protein	6.41023151521e-06	1.2220771513e-05	5.81053999779e-06
+UniRef50_UPI00034CAA3F	peptidase M23	1.1820383081e-05	2.87351255164e-05	1.69147424354e-05
+UniRef50_Q3JSC1		1.17015538703e-05	5.07865707662e-05	3.90850168959e-05
+UniRef50_B4UHS9	Succinate dehydrogenase fumarate reductase iron sulfur subunit	0.000301988791085	0.0171850888176	0.0168831000265
+UniRef50_Q1GZH1	UPF0301 protein Mfla_2099	7.45630790961e-06	1.15900884501e-05	4.13378054049e-06
+UniRef50_A5UK83		0.00138531939449	0.00039551344445	-0.00098980595004
+UniRef50_D3R5Q5	O acetyl L homoserine sulfhydrolase	0.00568184756274	0.00724652400136	0.00156467643862
+UniRef50_Q89WL0	Glutathione synthetase	3.61114925836e-06	0.000121708229355	0.000118097080097
+UniRef50_I7EIU7		0.00957349084765	0.00307533793018	-0.00649815291747
+UniRef50_G8VQH1	ATP dependent helicase	0.000253169120298	0.00533813871191	0.00508496959161
+UniRef50_D4KG00	Transcriptional regulator, LacI family	0.000610241838077	0.00157235757593	0.000962115737853
+UniRef50_UPI0003B47824	nitrogen regulatory protein	1.81941969903e-05	3.07644531365e-05	1.25702561462e-05
+UniRef50_H6LJ16	UV damage endonuclease UvdE	0.000794107587337	0.000946485686244	0.000152378098907
+UniRef50_B7KNT0	ATP dependent Clp protease proteolytic subunit	1.54340919095e-05	8.27687301943e-05	6.73346382848e-05
+UniRef50_UPI000225B916	hypothetical protein	3.92251966909e-05	5.37668332618e-05	1.45416365709e-05
+UniRef50_M4X3P8	L threonine synthase	9.08514498909e-05	6.82167759319e-06	-8.40297722977e-05
+UniRef50_A9H7P2	Putative secretion protein, HlyD family	8.59592353144e-06	0.000578835835111	0.00057023991158
+UniRef50_UPI0002E0E4D6	hypothetical protein	5.1568045925e-06	1.73595185726e-05	1.22027139801e-05
+UniRef50_UPI000289152D	tonb dependent receptor plug	4.44966537061e-06	5.48413889386e-06	1.03447352325e-06
+UniRef50_Q28PK5	Guanylate kinase	1.56606934306e-05	2.98671869927e-05	1.42064935621e-05
+UniRef50_UPI00037BDD3D	hypothetical protein, partial	2.09954188226e-05	8.402116185e-05	6.30257430274e-05
+UniRef50_Q2RFN9	DNA directed RNA polymerase subunit beta	5.81335102824e-06	2.80829125013e-06	-3.00505977811e-06
+UniRef50_UPI00029A706B	MerR family transcriptional regulator	8.64021632482e-05	4.62384486945e-05	-4.01637145537e-05
+UniRef50_C5BYT3	Cysteine  tRNA ligase	5.07236474411e-06	0.0021201961767	0.00211512381196
+UniRef50_UPI000380AA73	hypothetical protein	0.00163049933645	0.00024193958543	-0.00138855975102
+UniRef50_J0Y468		0.000591462339007	4.91201352948e-05	-0.000542342203712
+UniRef50_UPI00037F71A6	hypothetical protein	3.85629738323e-06	5.11063316915e-06	1.25433578592e-06
+UniRef50_D3Q457	Regulatory protein, FmdB family	0.000510116201151	0.000927696456103	0.000417580254952
+UniRef50_R4LEH4	Yd repeat containing protein	1.97864528112e-07	3.11608997065e-07	1.13744468953e-07
+UniRef50_V9WQL8	Plasmid partitioning protein ParA	0.000239073216019	6.79957537218e-05	-0.000171077462297
+UniRef50_Q7U5L7	Probable malate	2.96003022935e-06	4.81016327605e-06	1.8501330467e-06
+UniRef50_P10121	Signal recognition particle receptor FtsY	0.00277732461913	0.000685696316302	-0.00209162830283
+UniRef50_U6F3A2	Elongation factor G	0.000297036775028	0.00156753251783	0.0012704957428
+UniRef50_Q9RZA4	Bacteriophytochrome	0.000163495058621	0.00739448107072	0.0072309860121
+UniRef50_UPI00042B6A44	Aldolase type TIM barrel family protein	1.65227101973e-06	1.44191506766e-05	1.27668796569e-05
+UniRef50_UPI000382498F	hypothetical protein, partial	3.52053062531e-05	0.000184239383192	0.000149034076939
+UniRef50_E0Y2I8		0.000561896007633	0.000133712698645	-0.000428183308988
+UniRef50_B9KN81	Alpha amylase, catalytic region	0.0117395508067	0.00275007942358	-0.00898947138312
+UniRef50_V9B5C8	Transketolase, thiamine pyrophosphate binding domain protein	1.69480073347e-05	1.13611043834e-05	-5.5869029513e-06
+UniRef50_D5CDT8	Ferritin Dps family protein	0.00027620926013	0.00047889195437	0.00020268269424
+UniRef50_P72146	WbpN	0.000764690905198	0.00039266751586	-0.000372023389338
+UniRef50_P0ACR6		0.00173604266467	0.000637584664119	-0.00109845800055
+UniRef50_P0ACR7		0.00547704240382	0.001107216744	-0.00436982565982
+UniRef50_P0ACR3		0.00366119331693	0.000237202172853	-0.00342399114408
+UniRef50_D2JL91	Beta lactamase regulatory sensor transducer BlaR1	0.000317281359462	0.000121151070477	-0.000196130288985
+UniRef50_A7MI52	Glutamate 5 kinase	0.00266783499276	0.00510217893609	0.00243434394333
+UniRef50_D4UF66		0.00017025144426	7.50145822548e-05	-9.52368620052e-05
+UniRef50_UPI00034FBAC3	PREDICTED	4.2036619229e-06	1.03363510457e-05	6.1326891228e-06
+UniRef50_C9A5T3		3.39376416159e-05	2.67948050343e-05	-7.1428365816e-06
+UniRef50_F5M1J1	Prophage CP4 57 regulatory	0.00286744164608	0.000573246933236	-0.00229419471284
+UniRef50_UPI0003D70A5F	PREDICTED	5.11972307402e-05	0.000200668202859	0.000149470972119
+UniRef50_C5XLB4		0.000226163076213	9.07112011654e-05	-0.000135451875048
+UniRef50_UPI000255A6FD	metal dependent phosphohydrolase	3.60835276666e-05	0.000298123918605	0.000262040390938
+UniRef50_K2AEI9		8.2370389023e-05	9.00584501128e-05	7.6880610898e-06
+UniRef50_U5MWI4	Flagellar basal body rod protein FlgG	0.000167771550603	0.00081901147926	0.000651239928657
+UniRef50_UPI00034B293D	hypothetical protein	1.64605125481e-06	2.17102724517e-05	2.00642211969e-05
+UniRef50_V8A9V2		0.000782024517958	0.000147275850256	-0.000634748667702
+UniRef50_V7YY07	Transketolase	2.71713150349e-05	3.5030228541e-05	7.8589135061e-06
+UniRef50_Q9RUZ9		0.00025764589754	0.0434095650688	0.0431519191713
+UniRef50_UPI0003602513	hypothetical protein	0.000122992988326	2.26143829853e-05	-0.000100378605341
+UniRef50_C2ZY26		0.000263405728174	0.000596599404435	0.000333193676261
+UniRef50_Q9RUZ6		0.00014900762718	0.0413020219233	0.0411530142961
+UniRef50_F2ABV1		6.96672261587e-05	0.000514696909573	0.000445029683414
+UniRef50_W0I9Q2	Prevent host death protein	5.16687871208e-05	6.52046014071e-05	1.35358142863e-05
+UniRef50_A0KJE0	Leucyl phenylalanyl tRNA  protein transferase	7.66318253377e-06	2.0796682429e-05	1.31334998952e-05
+UniRef50_Z2D8Y2	Amino acid ABC transporter substrate binding protein	0.000551056971677	9.90441716778e-05	-0.000452012799999
+UniRef50_P63235	Probable glutamate gamma aminobutyrate antiporter	0.00233134414053	0.00130020555761	-0.00103113858292
+UniRef50_UPI00034BB6BF	hypothetical protein	0.000364044929442	2.97811671193e-05	-0.000334263762323
+UniRef50_X3WS87	Lipoprotein	0.00290761362201	0.00104562098175	-0.00186199264026
+UniRef50_UPI00022CAAC7	PREDICTED	1.20020807977e-06	8.25689557079e-06	7.05668749102e-06
+UniRef50_Q9JYM0	Thiol	8.63812331487e-05	0.00243807456992	0.00235169333677
+UniRef50_A6W977		1.5272274685e-06	5.60019171437e-06	4.07296424587e-06
+UniRef50_UPI000478A779	ABC transporter permease	5.50499575854e-06	3.2480661108e-05	2.69756653495e-05
+UniRef50_T2RUR1		7.93773271691e-05	0.00257643514107	0.0024970578139
+UniRef50_Q5HR30	Glycosyl transferase, group 2 family protein	0.0153082434257	0.00270899248571	-0.01259925094
+UniRef50_B0VRV3	Formamidopyrimidine DNA glycosylase	0.000592403282138	0.00408698915763	0.00349458587549
+UniRef50_UPI0003755B23	hypothetical protein	3.64501413871e-05	2.22464215188e-05	-1.42037198683e-05
+UniRef50_Q1J255	Hemin import ATP binding protein HmuV	2.57545401214e-05	0.00609301455001	0.00606726000989
+UniRef50_P20586	p hydroxybenzoate hydroxylase	0.000830103738918	0.000735729906406	-9.4373832512e-05
+UniRef50_UPI00016A5EA5	CAIB BAIF family protein, partial	1.24651467446e-05	0.000148899421654	0.000136434274909
+UniRef50_G2M909		0.000136030986974	0.000768966293593	0.000632935306619
+UniRef50_G7U5P8	Uracil xanthine permease	0.000158684313331	0.00591245085996	0.00575376654663
+UniRef50_UPI00037C0AF6	hypothetical protein, partial	2.93285905212e-05	2.01492899747e-05	-9.1793005465e-06
+UniRef50_C7ZXH6	Methyltransferase type 12	0.00822899490369	0.000724365382928	-0.00750462952076
+UniRef50_UPI0004700E9C	hypothetical protein	0.000195751972439	0.00148614981153	0.00129039783909
+UniRef50_D9XX77		3.96091627931e-05	0.00012310439233	8.34952295369e-05
+UniRef50_A8LJU4		0.000439132142802	3.91636910875e-05	-0.000399968451715
+UniRef50_V1DP08	Bacteriophage replication protein	0.000119555100006	2.87878613073e-05	-9.07672386987e-05
+UniRef50_Q3YYG5	Regulatory protein RecX	0.00523708666477	0.000361612292071	-0.0048754743727
+UniRef50_A3PPL7		3.37054828519e-05	0.000175435666453	0.000141730183601
+UniRef50_UPI0002627F99	50S ribosomal protein L6	4.90755873418e-05	0.000260324938981	0.000211249351639
+UniRef50_Q9K0K9	Iron regulated protein FrpA	0.000200459260265	0.00751570554919	0.00731524628893
+UniRef50_Q5HQI7		0.000492373028943	0.00410806982311	0.00361569679417
+UniRef50_A2RN27	Methionyl tRNA formyltransferase	0.02064365986	0.0108155638671	-0.0098280959929
+UniRef50_U5MVR3	Methyl accepting chemotaxis protein McpA	0.000569473341325	0.00130359873152	0.000734125390195
+UniRef50_Q8GM57	50S ribosomal protein L2	0.0157464770065	0.00665527997003	-0.00909119703647
+UniRef50_F2LAJ8		0.000501682690607	0.00531831393439	0.00481663124378
+UniRef50_A4W2L5	Predicted membrane protein	0.000110413537989	4.30147432317e-05	-6.73987947573e-05
+UniRef50_UPI00037CA3B1	ferredoxin	0.00144514550792	0.00128283537021	-0.00016231013771
+UniRef50_P39899	Neutral protease B	5.95233971217e-06	0.000377746264455	0.000371793924743
+UniRef50_E8SKB9	Integral membrane protein	0.0327981429814	0.00767236221579	-0.0251257807656
+UniRef50_UPI0003B55E69	membrane protein	3.12486799227e-05	1.40547615027e-05	-1.719391842e-05
+UniRef50_UPI0003B397F3	tyrosine recombinase XerC	5.46388478248e-06	1.07935475165e-05	5.32966273402e-06
+UniRef50_A5CF65	Peptide deformylase	2.07802484456e-05	5.52702581998e-05	3.44900097542e-05
+UniRef50_A0A011R0F0	Aerobic C4 dicarboxylate transport protein	8.39960596469e-05	4.30710136267e-05	-4.09250460202e-05
+UniRef50_G2J2T3	Ribosomal RNA small subunit methyltransferase E	0.000179755232787	0.000801979534099	0.000622224301312
+UniRef50_UPI0003C18A10		6.70776573229e-05	0.000307327273709	0.000240249616386
+UniRef50_Q9I3N5	Heme exporter protein C	0.00068022101396	0.0012862545973	0.00060603358334
+UniRef50_P42359	Putative zinc metalloproteinase in scaA 5region 	0.00613984769046	0.007371153301	0.00123130561054
+UniRef50_P17054	Phytoene desaturase 	0.00979651097662	0.00196435593009	-0.00783215504653
+UniRef50_UPI00037BF3C3	hypothetical protein	4.29984189509e-06	0.000144953824067	0.000140653982172
+UniRef50_UPI00036A00B7	hypothetical protein	4.70796657348e-05	3.94562113148e-05	-7.62345442e-06
+UniRef50_C5VZF1	DNA protection during starvation protein	0.00465026338108	0.0025404247152	-0.00210983866588
+UniRef50_G7M6V3	Transcriptional regulator, RpiR family	0.000463967366218	0.00043171978722	-3.2247578998e-05
+UniRef50_Q98LB3	Dihydroxy acid dehydratase 2	2.25382327857e-05	1.84868668474e-05	-4.0513659383e-06
+UniRef50_E8Y3F7		0.000954027441696	5.11005517175e-05	-0.000902926889978
+UniRef50_UPI0003B4F713	flavine monooxygenase	3.35365908905e-05	6.85006127318e-06	-2.66865296173e-05
+UniRef50_P05050	Alpha ketoglutarate dependent dioxygenase AlkB	0.00324273370263	0.000552572116664	-0.00269016158597
+UniRef50_A7X0C7	Lipoyl synthase	0.0187682561161	0.00475348691673	-0.0140147691994
+UniRef50_UPI00020035C1	DEAD DEAH box helicase domain protein, partial	9.37768277558e-06	5.38265556906e-05	4.4448872915e-05
+UniRef50_G8V2S6	Phage tail tape measure protein, TP901 family, core region	0.0186492027847	0.00222951384391	-0.0164196889408
+UniRef50_UPI0002D9142D	hypothetical protein	0.000336699547803	8.62057993071e-05	-0.000250493748496
+UniRef50_T1XU00		0.0113457995076	0.000960578699671	-0.0103852208079
+UniRef50_F0P598	Aspartate aminotransferase, putative	0.0167455262412	0.00528996583824	-0.011455560403
+UniRef50_P04818	Thymidylate synthase	2.8353846465e-05	0.000168525831808	0.000140171985343
+UniRef50_UPI00039D1855	cytochrome C	0.000299102027024	7.24571336049e-05	-0.000226644893419
+UniRef50_P56111	Phosphogluconate dehydratase	0.000152411513494	0.00410383599449	0.003951424481
+UniRef50_D9XI44		2.40430475408e-05	0.000105962673696	8.19196261552e-05
+UniRef50_R1DBS1		1.53748855689e-06	7.64128783501e-06	6.10379927812e-06
+UniRef50_UPI000464EC64	glucan biosynthesis protein G	1.04854619577e-05	1.53911090598e-05	4.9056471021e-06
+UniRef50_A0RIF4	Branched chain alpha keto acid dehydrogenase E2 component	0.0150446608564	0.00754026568759	-0.00750439516881
+UniRef50_Q8E671	Protein SprT like	0.0017775381469	0.00159293946897	-0.00018459867793
+UniRef50_B9LNN2	AzlC family protein	2.58930174213e-05	1.23322799588e-05	-1.35607374625e-05
+UniRef50_B2I7A0	Malonyl CoA acyl carrier protein transacylase	0.000127099659549	0.00180922624346	0.00168212658391
+UniRef50_Q7NN36	Hemin import ATP binding protein HmuV	1.01187224891e-05	0.00211307837509	0.0021029596526
+UniRef50_X8CB66		6.62578880557e-05	0.00105993124824	0.000993673360184
+UniRef50_Q89ER2	Alkanesulfonate monooxygenase	0.00531913566699	0.00150802721704	-0.00381110844995
+UniRef50_Q74IP8	Ribonuclease 3	1.56818298413e-05	2.38864998147e-05	8.2046699734e-06
+UniRef50_J9P129		0.000288695116451	4.60586496547e-05	-0.000242636466796
+UniRef50_A8LKW8	Porin	1.02902567466e-05	3.08614734627e-05	2.05712167161e-05
+UniRef50_B4TWJ1	Transcriptional regulator NanR	0.00235043226693	0.000541362089226	-0.0018090701777
+UniRef50_A0A024G3T5	Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192	1.80972373661e-05	1.92587043378e-05	1.1614669717e-06
+UniRef50_R9YPK7	Urea transporter	0.0229957427288	0.00323466359523	-0.0197610791336
+UniRef50_UPI0004732AD3	hypothetical protein, partial	7.7012992015e-05	2.83747735995e-05	-4.86382184155e-05
+UniRef50_UPI00036124D1	hypothetical protein, partial	2.76998239044e-05	0.000150152319142	0.000122452495238
+UniRef50_UPI0004634B11	hypothetical protein	7.3288443342e-05	3.14721588951e-05	-4.18162844469e-05
+UniRef50_A3PRE1		0.00708919300054	0.00167129887266	-0.00541789412788
+UniRef50_A5UP00	Methenyltetrahydromethanopterin cyclohydrolase	0.00349368636703	0.000480578676009	-0.00301310769102
+UniRef50_R4MF75		8.67627626656e-05	3.41373280936e-05	-5.2625434572e-05
+UniRef50_T2EEM8	Maltose operon periplasmic family protein	0.00124149988968	0.000224860435429	-0.00101663945425
+UniRef50_A1WWV9	tRNA specific 2 thiouridylase MnmA	4.13947121566e-06	7.93799355641e-06	3.79852234075e-06
+UniRef50_D5BQ57		0.000991632515868	0.000275194883365	-0.000716437632503
+UniRef50_UPI00047C3270	multidrug MFS transporter	1.58655772955e-05	2.01347511612e-05	4.2691738657e-06
+UniRef50_A1B476	Beta lactamase domain protein	0.0053309609499	0.00114915899632	-0.00418180195358
+UniRef50_Q47138		0.000763846060865	0.0011155181193	0.000351672058435
+UniRef50_UPI00046CD5BB	hypothetical protein	1.66552569054e-05	0.000672150957439	0.000655495700534
+UniRef50_UPI0002FDE3EE	hypothetical protein	2.74235676915e-06	0.000137144205232	0.000134401848463
+UniRef50_R0UE42	Filamentous hemagglutinin family N terminal domain protein	2.73606660158e-05	0.000221589866997	0.000194229200981
+UniRef50_UPI000362807B	hypothetical protein, partial	1.13730969847e-05	1.72755839245e-05	5.9024869398e-06
+UniRef50_Q8DJB8	GTP cyclohydrolase 1	5.30065283816e-05	9.9105728059e-05	4.60991996774e-05
+UniRef50_A7FBY0		0.000391853967671	0.0110086154699	0.0106167615022
+UniRef50_L8E4A2	Macro domain containing protein lmo2759	1.76202532844e-05	2.72803797275e-05	9.6601264431e-06
+UniRef50_Q9RR65	Dihydrofolate reductase	0.00181806026101	0.0516701765456	0.0498521162846
+UniRef50_A5ULU4	Glutamyl tRNA reductase	0.00320190349779	0.000836333639531	-0.00236556985826
+UniRef50_UPI0002DBA9D3	50S ribosomal protein L25	0.000291149896074	8.62404878689e-05	-0.000204909408205
+UniRef50_D4HV65	UPF0380 protein yafZ	0.000227809195324	3.05214783759e-05	-0.000197287716948
+UniRef50_UPI000400F72F	hypothetical protein	1.12589163553e-05	1.00183752921e-05	-1.2405410632e-06
+UniRef50_T1LB68		0.00134477543303	0.0006911833898	-0.00065359204323
+UniRef50_Z1HLQ0	Regulatory protein BlaR1	0.00657478475533	0.00162534238039	-0.00494944237494
+UniRef50_UPI0001FFE3E3	nitrogen regulatory protein P II, partial	2.28868480007e-05	0.000114060441959	9.11735939583e-05
+UniRef50_A5UMR6	GtrA like surface polysaccharide biosynthesis protein, GtrA	0.00113807440544	0.000946448072647	-0.000191626332793
+UniRef50_Q2S2A3	Methionine  tRNA ligase	2.64754050284e-06	3.28916181413e-06	6.4162131129e-07
+UniRef50_K0H8G2	Metalloendopeptidase like membrane protein	0.000293382892887	0.00922096399885	0.00892758110596
+UniRef50_A5UMV3	Polysaccharide polyol phosphate ABC transporter, ATPase component	0.00417216517648	0.000108373102823	-0.00406379207366
+UniRef50_UPI0003FEC27D	hypothetical protein	6.50246005844e-06	4.76132901463e-06	-1.74113104381e-06
+UniRef50_Q8VPR1	MC8	5.69333795722e-06	7.47174199856e-05	6.90240820284e-05
+UniRef50_I0C6S9		0.00113690934606	0.000904030730184	-0.000232878615876
+UniRef50_I0K4C6	Transcriptional regulator, BadM Rrf2 family	3.1853939806e-05	6.12667868923e-05	2.94128470863e-05
+UniRef50_A3PBD7	Probable malate	2.79248673104e-06	4.27684124035e-06	1.48435450931e-06
+UniRef50_UPI0003641518	hypothetical protein	4.93249766915e-06	2.62262353492e-05	2.12937376801e-05
+UniRef50_Q2T4S8	Arabinose import ATP binding protein AraG 2	1.1001919436e-05	7.34611023579e-06	-3.65580920021e-06
+UniRef50_S6GM17		4.3656487614e-05	7.77690751943e-06	-3.58795800946e-05
+UniRef50_UPI0003697D46	hypothetical protein	2.54816105604e-05	5.27795099698e-06	-2.02036595634e-05
+UniRef50_Q1I5V8	Ribonuclease 3	2.83204116967e-05	5.13959513004e-05	2.30755396037e-05
+UniRef50_UPI0003B4A430	CRISPR associated protein Cas3	6.4371056238e-05	8.83130790199e-06	-5.5539748336e-05
+UniRef50_T0CSQ2	Glycosyltransferase, group 1 family protein	0.00825861333289	0.00124414236929	-0.0070144709636
+UniRef50_A0A011NU60	Putative esterase of the alpha beta hydrolase fold protein	5.76289870085e-06	4.04573300903e-05	3.46944313894e-05
+UniRef50_P64566		0.00297794218708	0.00461552936804	0.00163758718096
+UniRef50_B2V9F3	Gamma glutamyl phosphate reductase	0.000240496400804	0.00895005012273	0.00870955372193
+UniRef50_Q6LU53	Nucleoside diphosphate kinase	0.000125585650652	5.7447426371e-05	-6.8138224281e-05
+UniRef50_UPI000367902D	hypothetical protein	9.01378616154e-07	2.53910880939e-06	1.63773019324e-06
+UniRef50_UPI0003B4B7CD	ATPase AAA	4.31940548017e-06	4.26204123281e-05	3.83010068479e-05
+UniRef50_Q8NUV3		0.000833230725443	0.000342377378524	-0.000490853346919
+UniRef50_A7FAY2		0.000147840465605	0.00628232788975	0.00613448742415
+UniRef50_U9HN69		0.000965592182606	0.000904964522989	-6.0627659617e-05
+UniRef50_A7FAY1		0.000664203932916	0.01286690724	0.0122027033071
+UniRef50_UPI000420B770	porin	0.000170466851592	2.55356672855e-05	-0.000144931184306
+UniRef50_UPI0004228484	hypothetical protein	6.77187684924e-05	5.73623940484e-05	-1.0356374444e-05
+UniRef50_P0AC97	Low affinity gluconate transporter	0.00249453648066	0.000316647549866	-0.00217788893079
+UniRef50_V9VVU4	Cyclopropane fatty acyl phospholipid synthase	0.0053389579192	0.000475627258122	-0.00486333066108
+UniRef50_A7FAY9		0.000170808139747	0.00991047535682	0.00973966721707
+UniRef50_UPI000394090D	PREDICTED	6.40779197425e-06	0.000247542556069	0.000241134764095
+UniRef50_H4GDU5	Replication initiation family protein	2.35130251639e-05	9.46766806418e-05	7.11636554779e-05
+UniRef50_UPI00035944E9		2.95236090692e-06	6.42203511748e-06	3.46967421056e-06
+UniRef50_A5VYC6	GTPase Obg	0.00298941513357	0.00915837583941	0.00616896070584
+UniRef50_A0A035UC67		2.89915347124e-05	6.11000079703e-05	3.21084732579e-05
+UniRef50_Z4WLK7		2.5454264509e-05	0.000411297314864	0.000385843050355
+UniRef50_P0A9S4	Galactitol 1 phosphate 5 dehydrogenase	0.00378833843973	0.00120484607875	-0.00258349236098
+UniRef50_UPI000343F687		5.38822489882e-05	9.96277122366e-05	4.57454632484e-05
+UniRef50_UPI00035EEEBA	hypothetical protein	1.60227349992e-05	5.89408898632e-05	4.2918154864e-05
+UniRef50_P76193	Probable L,D transpeptidase YnhG	0.00301404599613	0.00021018982576	-0.00280385617037
+UniRef50_I1QUG7		2.09640861681e-05	0.000102496629407	8.15325432389e-05
+UniRef50_P75672		0.00608611835938	0.00177663448449	-0.00430948387489
+UniRef50_Q67FX7	DeoK	0.00305497130716	0.00817132500065	0.00511635369349
+UniRef50_P75676		0.00574230624992	0.000261897493754	-0.00548040875617
+UniRef50_B9KUH1		0.00160669236583	0.000942035690517	-0.000664656675313
+UniRef50_B9KUH0		2.88112949447e-05	0.000335368414088	0.000306557119143
+UniRef50_W0PG73		5.11629038781e-06	1.84153964542e-05	1.32991060664e-05
+UniRef50_H8E0P5	Isopropylmalate isomerase small subunit 	0.00313637122386	0.00111010239601	-0.00202626882785
+UniRef50_P09835	Sensor protein UhpB	0.00274312016114	0.000715571949819	-0.00202754821132
+UniRef50_Q4L8J6	Ribose 5 phosphate isomerase A	0.0213241647537	0.00608108638278	-0.0152430783709
+UniRef50_G4NYU6	Transcriptional regulator, PadR family	0.00228804360016	0.00238830479426	0.0001002611941
+UniRef50_UPI000423B599	rod shape determining protein MreB	5.3361404481e-05	1.29200093073e-05	-4.04413951737e-05
+UniRef50_Q9RWX1		0.000673062125786	0.0352161619999	0.0345430998741
+UniRef50_L9PQ51	Beta lactamase domain containing protein	4.74802592756e-05	1.31297450269e-05	-3.43505142487e-05
+UniRef50_Q9RWX5		9.35142829476e-05	0.0548065437314	0.0547130294485
+UniRef50_A9KV03	Two component transcriptional regulator, winged helix family	0.0013952783194	0.000295809721398	-0.001099468598
+UniRef50_Q9RWX7		0.000202942061746	0.0570156631625	0.0568127211008
+UniRef50_Q9RWX8		0.000488768316632	0.0323259101218	0.0318371418052
+UniRef50_UPI00036FA720	hypothetical protein	6.76687701674e-05	8.6591793544e-05	1.89230233766e-05
+UniRef50_A5VYK1	Beta lactamase domain protein	0.00037695150538	0.000754973830792	0.000378022325412
+UniRef50_Q9RVJ1	Branched chain amino acid ABC transporter, permease protein	0.000106634460129	0.0355595659276	0.0354529314675
+UniRef50_W8S1V4	ABC type dipeptide transport system, periplasmic component	2.83628565157e-05	1.67164188834e-05	-1.16464376323e-05
+UniRef50_A9U7M5	Predicted protein 	7.30734659245e-05	3.78220386206e-06	-6.92912620624e-05
+UniRef50_F0PDK0		1.82420327848e-05	0.00194926161795	0.00193101958517
+UniRef50_E8SF44	Chitinase B	0.0143632080155	0.00253050505703	-0.0118327029585
+UniRef50_UPI0003645B24	hypothetical protein	6.31854887334e-06	9.44225470738e-06	3.12370583404e-06
+UniRef50_K2EQR3	Toluene tolerance protein Ttg2B	2.80465416973e-05	5.25182027041e-05	2.44716610068e-05
+UniRef50_W3RJU2		3.85387607485e-06	1.86827433481e-05	1.48288672733e-05
+UniRef50_UPI000287E9BE	thymidylate synthase	0.000105906548933	0.000458724539788	0.000352817990855
+UniRef50_UPI0004746A8A	ammonia channel protein, partial	2.2892353547e-05	3.8407897002e-05	1.5515543455e-05
+UniRef50_P0AGB1	Phosphoserine phosphatase	0.00503507427588	0.00105963735911	-0.00397543691677
+UniRef50_UPI0004669E93	hypothetical protein, partial	4.15918874596e-05	1.77647149102e-05	-2.38271725494e-05
+UniRef50_Q5HQK2	Glycerophosphoryl diester phosphodiesterase GlpQ, putative	0.0213542328792	0.00346839485824	-0.017885838021
+UniRef50_UPI000464A474	quinone oxidoreductase	7.48156859629e-06	0.000177169620501	0.000169688051905
+UniRef50_UPI00047AB5CC	aryl phospho beta D glucosidase	4.60667672673e-06	2.45444074515e-05	1.99377307248e-05
+UniRef50_U7PP10		3.22648245359e-05	0.000101472472332	6.92076477961e-05
+UniRef50_Q02QX6	Phospholipase D	0.000896449766574	0.000480755758051	-0.000415694008523
+UniRef50_B0SZ50	NADH quinone oxidoreductase subunit C	2.71103453326e-05	2.31509963257e-05	-3.9593490069e-06
+UniRef50_A1B541		0.000250541924799	9.34202125974e-05	-0.000157121712202
+UniRef50_UPI0000165EE8	hypothetical protein DR_A0025	1.62440558687e-05	0.00711639824143	0.00710015418556
+UniRef50_K0P5L7	Transposase IS4 family protein	4.60260214296e-06	1.93061576865e-05	1.47035555435e-05
+UniRef50_W7LA83		1.14287904974e-05	0.000537733514625	0.000526304724128
+UniRef50_UPI0003FF921B	hypothetical protein	0.000391813438564	8.18433717949e-05	-0.000309970066769
+UniRef50_UPI0003453247	hypothetical protein	2.81375731532e-06	8.26238039937e-06	5.44862308405e-06
+UniRef50_P0C5W5	Transposase InsD for insertion element IS2A D F H I K	0.0100252672586	0.00515354734406	-0.00487171991454
+UniRef50_C9A9S2		0.00399389132747	0.000891741024771	-0.0031021503027
+UniRef50_Q05207	Protein translocase subunit SecY	0.0242414119776	0.00829152675134	-0.0159498852263
+UniRef50_A6LRQ1	Ubiquitin associated domain containing protein	0.000822113754382	0.00116381581644	0.000341702062058
+UniRef50_F2QW98	Tricalbin 2	3.18822625684e-05	4.98565062176e-05	1.79742436492e-05
+UniRef50_Q9K1G3	Ribosomal RNA small subunit methyltransferase G	3.10948538312e-05	0.00498913123432	0.00495803638049
+UniRef50_D4HEV9		4.18248123427e-05	0.000461549857635	0.000419725045292
+UniRef50_D4HEV8		0.00108042146364	0.00621725039158	0.00513682892794
+UniRef50_D4HEV4		0.00103895226289	0.00586788837237	0.00482893610948
+UniRef50_UPI00037EE4CD	hypothetical protein	1.11138329524e-05	2.38988985803e-05	1.27850656279e-05
+UniRef50_A6W3N1	Phosphate ABC transporter, inner membrane subunit PstA	0.00110938983346	0.00117356478892	6.417495546e-05
+UniRef50_U5MQ20		0.000941085986506	0.0020779011986	0.00113681521209
+UniRef50_P50059	Superoxide dismutase [Mn] 2	1.63182683193e-05	8.72467796718e-05	7.09285113525e-05
+UniRef50_G0AAC6		3.91851037267e-05	1.73831955363e-05	-2.18019081904e-05
+UniRef50_UPI000440A67E	hypothetical protein STEHIDRAFT_153002	3.87051956045e-06	2.09804570106e-05	1.71099374501e-05
+UniRef50_R1F8H0		4.36213320985e-06	0.000301588108581	0.000297225975371
+UniRef50_Q9RVD6	Tryptophan  tRNA ligase 2	0.00400036576191	0.0116588399444	0.00765847418249
+UniRef50_Q97R65	Dihydroorotate dehydrogenase B ), catalytic subunit	2.04376210229e-05	0.00358563354907	0.00356519592805
+UniRef50_UPI0003B4E783	hypothetical protein	7.57807493154e-06	1.05967720245e-05	3.01869709296e-06
+UniRef50_UPI000360793F	hypothetical protein	0.00010532583913	6.76790493422e-05	-3.76467897878e-05
+UniRef50_O06941	Protein GrpE	0.00453143152139	0.00469697341333	0.00016554189194
+UniRef50_Q9K0V4	Ribosomal RNA large subunit methyltransferase L	0.000165322330884	0.0034986877324	0.00333336540152
+UniRef50_UPI000476FB1B	hypothetical protein	1.0021726128e-05	5.05003659103e-06	-4.97168953697e-06
+UniRef50_A0A014LMK6	Acetate  CoA ligase	0.000266436372174	0.0053316610368	0.00506522466463
+UniRef50_UPI00042C3977	PREDICTED	1.49968632743e-05	2.68540203807e-05	1.18571571064e-05
+UniRef50_Q896L1	Magnesium protoporphyrin IX monomethyl ester oxidative cyclase	0.00015926064829	0.00151336391037	0.00135410326208
+UniRef50_Q3IRZ6	Urease subunit beta	5.02471571902e-05	3.98211447457e-05	-1.04260124445e-05
+UniRef50_B7UZP4		0.00107221755979	0.000418888943548	-0.000653328616242
+UniRef50_Q8RQL9	Isocitrate dehydrogenase [NADP]	0.00105270741589	0.00029716837491	-0.00075553904098
+UniRef50_I0C190	Nitrogen regulation protein NIFR3	0.000453730653816	6.43247811272e-05	-0.000389405872689
+UniRef50_UPI0004764B37	phosphoglyceromutase	1.28438085382e-05	1.7939471246e-05	5.0956627078e-06
+UniRef50_C6BBB4	Ammonium transporter	0.0060321665637	0.00195203154396	-0.00408013501974
+UniRef50_U5MV95		0.000138611746215	0.000833205058303	0.000694593312088
+UniRef50_A1SWH9	sn glycerol 3 phosphate import ATP binding protein UgpC	0.00361754302438	0.0409124140928	0.0372948710684
+UniRef50_I2FG31	Transposase	0.00150511837172	0.000308080880347	-0.00119703749137
+UniRef50_UPI000329A113		8.43948936652e-06	1.11445132704e-05	2.70502390388e-06
+UniRef50_K2AFG9		0.000734497456935	0.000125045887866	-0.000609451569069
+UniRef50_Q3IV13	Radical SAM superfamily protein	0.0265147700768	0.00434815836549	-0.0221666117113
+UniRef50_P44875	Acetate CoA transferase subunit alpha	4.16810820686e-05	0.000571189945296	0.000529508863227
+UniRef50_R7PYU4	Predicted glycosyltransferase  GT1 family	0.00398973734276	0.000296148602827	-0.00369358873993
+UniRef50_B0RZT0	Adenylate kinase	1.78529212468e-05	2.36669527292e-05	5.8140314824e-06
+UniRef50_P77529		0.00284268627407	0.00175910898203	-0.00108357729204
+UniRef50_A3PS98	Transcriptional regulator, GntR family	0.021485289554	0.00584210017551	-0.0156431893785
+UniRef50_A5UN97		0.000555713282722	0.000446322476372	-0.00010939080635
+UniRef50_Q6KHP5	Glucose 1 phosphate adenylyltransferase	8.00787185666e-06	1.64415213911e-05	8.43364953444e-06
+UniRef50_D4HDX4		8.73136442954e-05	0.00326111232968	0.00317379868538
+UniRef50_A5IVQ1	Diaminopimelate epimerase like protein	0.0288083917514	0.0079777948963	-0.0208305968551
+UniRef50_B4RI59	Putative ChaX protein	0.000264512645487	0.000250127498162	-1.4385147325e-05
+UniRef50_UPI00035F5713	hypothetical protein	6.57024285552e-05	6.23980905267e-06	-5.94626195025e-05
+UniRef50_A0A038FN38	Sulfonate binding protein	1.01722374018e-05	3.04958658948e-05	2.0323628493e-05
+UniRef50_J3NQ90		0.000288792639077	0.000132635225021	-0.000156157414056
+UniRef50_I3YR32	Nitroreductase like oxidoreductase	0.000803809735129	0.00498049260173	0.0041766828666
+UniRef50_H1ZV37	Geranial dehydrogenase	6.66486311487e-06	9.59446394946e-06	2.92960083459e-06
+UniRef50_UPI000455F234	alcohol oxidase	2.33753218424e-06	3.18887142826e-06	8.5133924402e-07
+UniRef50_Q9RYZ6	Phosphate binding protein	0.000341906559364	0.0434365082806	0.0430946017212
+UniRef50_Q1IZI8	Uridylate kinase	0.0212069719897	0.0336388067118	0.0124318347221
+UniRef50_A3MA07		0.000196949211577	0.0110825722583	0.0108856230467
+UniRef50_Q5DY13	Lateral flagellar rod protein 	0.000318106170376	0.000452882033134	0.000134775862758
+UniRef50_P20186		1.92141542836e-05	0.000391013507521	0.000371799353237
+UniRef50_UPI00037D4D8D	hypothetical protein	0.00152354705411	0.00105470251856	-0.00046884453555
+UniRef50_Q7NK24	Phosphoadenosine phosphosulfate reductase	9.83703970743e-06	1.28356271481e-05	2.99858744067e-06
+UniRef50_Q8TXN1	Chorismate synthase	0.00361611470529	5.55855327978e-05	-0.00356052917249
+UniRef50_W0E8G5		1.15907869334e-05	6.33063077582e-06	-5.26015615758e-06
+UniRef50_UPI00035D319D	hypothetical protein, partial	2.97875525196e-06	0.000533043359689	0.000530064604437
+UniRef50_A6LUF3	Histidinol phosphate aminotransferase	0.000158164520469	0.0008446352694	0.000686470748931
+UniRef50_Q89UV8	Immunogenic protein	0.0119122050099	0.00280872315848	-0.00910348185142
+UniRef50_B7UVV3	Dihydroorotase	0.000715594344417	0.000686264645788	-2.9329698629e-05
+UniRef50_UPI000395D90C	PREDICTED	3.98670697329e-06	5.11942900593e-06	1.13272203264e-06
+UniRef50_UPI00046CED3A	O sialoglycoprotein endopeptidase	6.70430111077e-06	5.26773928788e-06	-1.43656182289e-06
+UniRef50_Q1IAK7	Histidine decarboxylase	9.83036429352e-05	0.0050774463313	0.00497914268836
+UniRef50_Q1IYS1	Carboxynorspermidine decarboxylase	0.000215003643526	0.00103240487771	0.000817401234184
+UniRef50_C1AU54	UDP N acetylmuramate  L alanine ligase	3.84957144358e-06	5.29682588068e-06	1.4472544371e-06
+UniRef50_Q03470	DNA gyrase subunit A	2.10193850532e-06	0.00325601759165	0.00325391565314
+UniRef50_C4RE96	Diguanylate cyclase with GAF sensor	0.000289533757893	0.000641492953141	0.000351959195248
+UniRef50_Q9F4G3	HTH type transcriptional regulator TcaR	0.0332584265113	0.0446061101296	0.0113476836183
+UniRef50_P0AFR5		0.0023505384986	0.00415211676779	0.00180157826919
+UniRef50_UPI0004630051	hypothetical protein	4.32344342892e-06	1.38495823663e-05	9.52613893738e-06
+UniRef50_UPI0004641B3A	hypothetical protein	4.49684601221e-05	5.21753981277e-06	-3.97509203093e-05
+UniRef50_UPI000377D7B1	ABC transporter	1.30473276215e-05	7.28176777198e-06	-5.76555984952e-06
+UniRef50_Q9EXI7	P 14 protein 	5.71617838757e-05	2.68309952106e-05	-3.03307886651e-05
+UniRef50_O68926	Bacterioferritin	0.0134601290577	0.0009523991235	-0.0125077299342
+UniRef50_F1AXC6	PP241	8.19946263558e-05	0.000579978368818	0.000497983742462
+UniRef50_D4HF95	Transcriptional regulator, DeoR family	0.000371297693954	0.00220958555079	0.00183828785684
+UniRef50_C1A2V7	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	6.29238171748e-05	7.1129800856e-05	8.2059836812e-06
+UniRef50_UPI000174615B	methionine synthase	1.13597441728e-05	2.68206115918e-05	1.5460867419e-05
+UniRef50_P75851	Putative aliphatic sulfonates transport permease protein SsuC	0.00446900760337	0.000847033956834	-0.00362197364654
+UniRef50_UPI000466704B	hypothetical protein, partial	1.51990168172e-05	1.69075317189e-06	-1.35082636453e-05
+UniRef50_B2EBP0		3.15695532017e-05	0.000201954627818	0.000170385074616
+UniRef50_UPI0003605AF8	hypothetical protein	4.16191983255e-05	9.982953022e-06	-3.16362453035e-05
+UniRef50_Q6AAR3	L threonine 3 dehydrogenase	0.000223268649228	0.00638901786827	0.00616574921904
+UniRef50_C5AJH9	Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein	0.00077905095874	0.000191971856025	-0.000587079102715
+UniRef50_F9MSP3	HD domain protein	1.43042944038e-05	9.53256226052e-06	-4.77173214328e-06
+UniRef50_P76103	Inner membrane protein YdcO	0.00222300306536	0.000164369223673	-0.00205863384169
+UniRef50_UPI0002BA1B2C	glutathione regulated potassium efflux system protein KefB	1.96410503723e-05	2.29978808985e-05	3.3568305262e-06
+UniRef50_A6M1S5	Transcriptional regulator, AraC family	0.00106055914379	0.000492149440026	-0.000568409703764
+UniRef50_UPI0003A01203	hypothetical protein	6.39140889736e-06	7.02683163944e-06	6.3542274208e-07
+UniRef50_P39836		0.00241643168422	0.000908820968389	-0.00150761071583
+UniRef50_R5TC97		0.000666860564316	0.00212461914781	0.00145775858349
+UniRef50_P39834		0.00569748775618	0.000600644146164	-0.00509684361002
+UniRef50_P0AE14	Protein AmpE	0.00176474650751	0.000958544077683	-0.000806202429827
+UniRef50_E1M0K3	N acetyl glucosamine matabolism	3.23025793368e-05	2.23742369042e-05	-9.9283424326e-06
+UniRef50_UPI0004746698	hypothetical protein, partial	2.24435077049e-05	2.76341406543e-05	5.1906329494e-06
+UniRef50_Q49Y24	Heat inducible transcription repressor HrcA	0.018058498343	0.00325392560026	-0.0148045727427
+UniRef50_A5N6G6	Phosphate propanoyltransferase	0.000202224636884	0.00147720231117	0.00127497767429
+UniRef50_W1XPB9		4.752911469e-05	0.000177621610261	0.000130092495571
+UniRef50_UPI00028A201E	LuxR family transcriptional regulator	0.000184408345397	2.25314233431e-05	-0.000161876922054
+UniRef50_UPI0003F914BA	DEAD DEAH box helicase	2.01607818093e-06	6.34533320658e-05	6.14372538849e-05
+UniRef50_P76349		0.00188971289084	0.00072797167638	-0.00116174121446
+UniRef50_S7UZQ5		0.000121916196727	0.000121736170272	-1.80026455e-07
+UniRef50_A1TZQ0	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	7.9543075008e-06	1.5384926262e-05	7.4306187612e-06
+UniRef50_UPI000368871C	hypothetical protein	4.70376730384e-05	5.10940112794e-05	4.056338241e-06
+UniRef50_UPI0004703E16	hypothetical protein	4.69845160276e-05	2.95590428756e-05	-1.7425473152e-05
+UniRef50_B9JR02		0.000228868655391	2.32065406847e-05	-0.000205662114706
+UniRef50_UPI00035CD59F	DNA binding protein	0.000279504409643	0.000158130661684	-0.000121373747959
+UniRef50_A0A024C1C5		0.00014489186566	0.00771341085464	0.00756851898898
+UniRef50_G9RS55		2.17274677144e-05	1.37131457473e-05	-8.0143219671e-06
+UniRef50_A7IDP6	Glutamine amidotransferase class I	0.0049340312349	0.000289526181564	-0.00464450505334
+UniRef50_Q5LHZ1	N acetyl gamma glutamyl phosphate reductase	7.49516335782e-05	3.03356881693e-05	-4.46159454089e-05
+UniRef50_F2DS64	Predicted protein	5.05056330883e-06	1.69710781388e-05	1.192051483e-05
+UniRef50_C4ZF78	Orotate phosphoribosyltransferase	0.000906211568661	0.000559980016127	-0.000346231552534
+UniRef50_Q9FNJ8	Arogenate dehydratase 5, chloroplastic	8.79340802478e-05	2.33438558651e-05	-6.45902243827e-05
+UniRef50_E4PLJ2	Protein containing DUF1857	4.2063438778e-05	3.97794524292e-05	-2.2839863488e-06
+UniRef50_Q8DWA1		0.00398754168064	0.000811279645925	-0.00317626203471
+UniRef50_Q9RY02		0.000154075913818	0.0191806280784	0.0190265521646
+UniRef50_UPI000377338C	hypothetical protein	1.85038340325e-05	4.24007289656e-05	2.38968949331e-05
+UniRef50_UPI00034A10DE	MULTISPECIES	0.000104132661485	0.00158383046207	0.00147969780058
+UniRef50_Q9RY09		7.78321626536e-05	0.0525926811499	0.0525148489872
+UniRef50_Q6FE61	NADH dehydrogenase I chain L	0.00439743968009	0.00884215587778	0.00444471619769
+UniRef50_G7U705	Efflux ABC transporter, permease protein	0.000151600798739	0.0045771046753	0.00442550387656
+UniRef50_Q2NXY9	2 keto 3 deoxygluconate permease	0.00175413494699	0.00117456501152	-0.00057956993547
+UniRef50_UPI000308C80D	ATP  cobalamin adenosyltransferase	3.0376833421e-05	5.10426183232e-05	2.06657849022e-05
+UniRef50_UPI00036CA62E	hypothetical protein	5.26054576797e-05	1.28115760654e-05	-3.97938816143e-05
+UniRef50_Q8DWA4		0.00560554977894	0.00149506144483	-0.00411048833411
+UniRef50_Q2NI43	Predicted transcriptional regulator	0.00215130016522	0.00112145584252	-0.0010298443227
+UniRef50_A6TXC8	Nucleoid associated protein Amet_4780	0.00880800640655	0.00117824667255	-0.007629759734
+UniRef50_D3PYT6	LigA	0.000189115506523	0.000142995933387	-4.6119573136e-05
+UniRef50_P11988	6 phospho beta glucosidase BglB	0.00281451173166	0.000666271943544	-0.00214823978812
+UniRef50_Q21YW0	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	1.06841523874e-05	1.20132784876e-05	1.3291261002e-06
+UniRef50_D1YVK2		0.00128114492418	0.000739491307557	-0.000541653616623
+UniRef50_UPI00037CAA58	hypothetical protein	1.25319562495e-05	0.000101954218055	8.94222618055e-05
+UniRef50_E4SZ07	Alcohol dehydrogenase   Acetaldehyde dehydrogenase	0.00641047743206	0.00347308136009	-0.00293739607197
+UniRef50_UPI0003B5954D	TetR family transcriptional regulator	0.000239664904957	9.89047892217e-05	-0.000140760115735
+UniRef50_F8LW56		0.000194089972088	0.000128767139724	-6.5322832364e-05
+UniRef50_A5IT13		0.019420337191	0.00321040158581	-0.0162099356052
+UniRef50_P24555	Protease 2	0.0022179582456	0.000513517493638	-0.00170444075196
+UniRef50_A0A010JG94	MATE efflux family protein	0.000304517114465	0.00820184523429	0.00789732811982
+UniRef50_UPI0003C1B314	PREDICTED	0.000128348896424	2.29397670715e-05	-0.000105409129353
+UniRef50_Q1QH83	Carbohydrate ABC transporter substrate binding protein, CUT1 family	6.97135946614e-06	3.56034083206e-06	-3.41101863408e-06
+UniRef50_R4VNN3		0.00819112524916	0.00626855566828	-0.00192256958088
+UniRef50_UPI000443497D	PREDICTED	4.98317027094e-06	7.07237035247e-05	6.57405332538e-05
+UniRef50_B3X836	D xylose ABC transporter, ATP binding protein	0.000833177276995	0.000122368800494	-0.000710808476501
+UniRef50_A0A029HJU3	CRISPR associated helicase Cas3	9.40092713443e-05	1.11407471319e-05	-8.28685242124e-05
+UniRef50_Q9HVD1	Lipid A deacylase PagL	0.00172814394896	0.00148064335453	-0.00024750059443
+UniRef50_UPI000462CF76	hypothetical protein, partial	7.6947215425e-05	0.000637731153259	0.000560783937834
+UniRef50_Q9RXH9	Lipase, putative	0.000210784383954	0.0391661489164	0.0389553645324
+UniRef50_Q9S358	Anthranilate synthase component 1	0.000260782549038	0.00845200646296	0.00819122391392
+UniRef50_C6CE95	UPF0115 protein Dd1591_1343	0.00243668666401	0.000457855356899	-0.00197883130711
+UniRef50_Q1YIY5		0.000201688669669	0.000444737349611	0.000243048679942
+UniRef50_U6EC46	NusA family KH domain containing protein	0.00464404513881	0.00126564302227	-0.00337840211654
+UniRef50_UPI0004659C6E	hypothetical protein	1.41837521352e-05	0.00023127775024	0.000217093998105
+UniRef50_A7FHL7	Anhydro N acetylmuramic acid kinase	0.000407636138294	0.000189710945528	-0.000217925192766
+UniRef50_Q5LZ68	Ribonuclease 3	0.00947898870324	0.00719354303079	-0.00228544567245
+UniRef50_A4G0N3	Probable tRNA pseudouridine synthase B	0.00361546828679	0.00166437938319	-0.0019510889036
+UniRef50_A6LS09	PTS system fructose subfamily IIA component	0.000540580441109	0.00042188100743	-0.000118699433679
+UniRef50_Q7WDY0	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000730588105822	0.0038973246981	0.00316673659228
+UniRef50_U1S1M7		2.38856801173e-05	0.00231986498839	0.00229597930827
+UniRef50_UPI0003F0C550	PREDICTED	2.40027445056e-05	2.58088030129e-05	1.8060585073e-06
+UniRef50_UPI00041A8363	LamB YcsF family protein	0.0001347591247	1.15191225169e-05	-0.000123240002183
+UniRef50_UPI000368F174	hypothetical protein	5.00583334817e-06	2.97331397103e-06	-2.03251937714e-06
+UniRef50_Q216H0	Phosphomethylpyrimidine synthase	1.57071132903e-06	5.32402206858e-06	3.75331073955e-06
+UniRef50_W6MC79		2.01726625277e-05	0.00066443527726	0.000644262614732
+UniRef50_UPI000444A627	hypothetical protein STEHIDRAFT_83294	2.09798390548e-06	3.79908732481e-06	1.70110341933e-06
+UniRef50_UPI00046F6DE4	hypothetical protein, partial	1.26087363561e-05	2.24559661389e-05	9.8472297828e-06
+UniRef50_Q8ZQ16	Ribosomal large subunit pseudouridine synthase C	0.00212377850328	0.000473074341638	-0.00165070416164
+UniRef50_W7TU75		0.000111682245224	1.12221248572e-05	-0.000100460120367
+UniRef50_P52123		0.00184986806261	0.00171558197687	-0.00013428608574
+UniRef50_P52126		0.00307844920532	0.00067130866365	-0.00240714054167
+UniRef50_P52127		0.00233782530982	0.00115205440456	-0.00118577090526
+UniRef50_P52124		0.00188081002821	0.000803738338836	-0.00107707168937
+UniRef50_P52125		0.00103847791253	0.000387724339418	-0.000650753573112
+UniRef50_P0C0Q4	Extracellular elastase	0.0135288171468	0.00412272935007	-0.00940608779673
+UniRef50_Q4L565	Probable quinol oxidase subunit 2	0.0104696449092	0.00147636614347	-0.00899327876573
+UniRef50_A4WP12	Ribosomal RNA small subunit methyltransferase E	0.000146312398781	0.000238800570243	9.2488171462e-05
+UniRef50_Q7NL20	1,4 alpha glucan branching enzyme GlgB	2.36567967614e-06	6.4365006629e-06	4.07082098676e-06
+UniRef50_B9KP74	Branched chain amino acid aminotransferase	0.00749168225114	0.00156206519884	-0.0059296170523
+UniRef50_Q53212	Putative peroxiredoxin y4vD	0.00769220698926	0.00133170570717	-0.00636050128209
+UniRef50_A1KV38	Ribonuclease H	5.89582173041e-05	2.94020550489e-05	-2.95561622552e-05
+UniRef50_A6LPL8		0.000115087191723	0.00355156703418	0.00343647984246
+UniRef50_UPI0004725A0F	hypothetical protein	8.66209218976e-06	1.33126115805e-05	4.65051939074e-06
+UniRef50_UPI0003B7A3D3	ABC transporter	9.53521075902e-06	5.48367998409e-05	4.53015890819e-05
+UniRef50_Q4FNE4	UDP N acetylglucosamine 1 carboxyvinyltransferase	1.3067174706e-05	2.97081088729e-05	1.66409341669e-05
+UniRef50_A4XZN0	Acetate CoA transferase YdiF	0.00219656202779	0.00745699555574	0.00526043352795
+UniRef50_UPI000368346E	hypothetical protein	2.02834506414e-05	9.85638081962e-06	-1.04270698218e-05
+UniRef50_UPI00036B1EA9	hypothetical protein	5.43219826884e-07	3.81721058615e-06	3.27399075927e-06
+UniRef50_Q8YC19	Transposase	6.12064556986e-06	1.00408026586e-05	3.92015708874e-06
+UniRef50_J7L8P7	TRAP transporter solute receptor, TAXI family protein	4.15149693857e-05	4.35447544895e-05	2.0297851038e-06
+UniRef50_UPI00036DFF4F	hypothetical protein	4.35285957724e-05	2.85777315348e-05	-1.49508642376e-05
+UniRef50_O32220	Copper exporting P type ATPase A	0.0138673190416	0.00394434658861	-0.00992297245299
+UniRef50_G8W9Y6		0.0158101054377	0.0130445403494	-0.0027655650883
+UniRef50_K3KRS9	Sulfurtransferase	0.000696952720578	0.00085117448384	0.000154221763262
+UniRef50_M1MQ23	Pseudaminic acid biosynthesis associated protein PseG	0.00022632300922	0.00119052380454	0.00096420079532
+UniRef50_B7VB85	Glutamine  tRNA ligase	0.000679001221707	0.000426118141042	-0.000252883080665
+UniRef50_UPI000474892A	acetyl CoA acetyltransferase	1.02478829327e-05	3.43890035044e-05	2.41411205717e-05
+UniRef50_J4GJ09		1.31511231356e-05	4.98347773874e-05	3.66836542518e-05
+UniRef50_T8KWL4		4.06339602003e-05	4.81876177275e-05	7.5536575272e-06
+UniRef50_Q9HXN1	Membrane bound lytic murein transglycosylase F	0.000535989871558	0.000853258940805	0.000317269069247
+UniRef50_M2C918		4.66712767272e-06	9.35854216691e-06	4.69141449419e-06
+UniRef50_A0A059ILG7		6.58281913531e-05	2.72007539688e-05	-3.86274373843e-05
+UniRef50_W8X8B8	LemA family protein	2.65091445864e-05	1.23587750057e-05	-1.41503695807e-05
+UniRef50_UPI0001D62167	PREDICTED	4.34417904005e-06	3.20704755071e-05	2.7726296467e-05
+UniRef50_Q5L1U1	3 oxoacyl [acyl carrier protein] synthase 3	0.000150385700739	0.00104393103267	0.000893545331931
+UniRef50_R3JX77	Tandem lipoprotein	1.21061314661e-05	1.68871198003e-05	4.7809883342e-06
+UniRef50_UPI0003A1637C	pseudouridine synthase	1.43354572123e-06	1.15519099891e-05	1.01183642679e-05
+UniRef50_A0A011QIR3		4.29364657881e-05	4.57213543237e-05	2.7848885356e-06
+UniRef50_B1YMC1	Metallophosphoesterase	1.21163879567e-05	1.63648029484e-05	4.2484149917e-06
+UniRef50_X7ECM7		0.00110590613049	0.000151524237915	-0.000954381892575
+UniRef50_C4ZZ24	ATPase RavA	0.00205214987763	0.000834735845633	-0.001217414032
+UniRef50_A3V382		0.000642701522073	0.000652581993071	9.880470998e-06
+UniRef50_P76389	UPF0053 protein YegH	0.00290643877615	0.000994984225967	-0.00191145455018
+UniRef50_C3K789		0.000298801574284	0.00367243067673	0.00337362910245
+UniRef50_Q6A6X6	Methionine import ATP binding protein MetN	5.72618184291e-06	0.00458672835819	0.00458100217635
+UniRef50_K0B4J3	Uroporphyrin III C methyltransferase HemD	9.30532429341e-05	0.00195898026351	0.00186592702058
+UniRef50_UPI0003674EE1	hypothetical protein	7.59432646663e-05	5.05325287345e-05	-2.54107359318e-05
+UniRef50_UPI00036AFCF0	hypothetical protein	4.38988486352e-05	9.11309385136e-06	-3.47857547838e-05
+UniRef50_UPI00047853C3	hypothetical protein	0.000105822911272	2.72009771573e-06	-0.000103102813556
+UniRef50_UPI00047B85B2	hypothetical protein, partial	0.000208023084776	6.75096272765e-05	-0.000140513457499
+UniRef50_A4WVR4		0.00189171191715	0.000180224466069	-0.00171148745108
+UniRef50_Q213K6	Leucyl phenylalanyl tRNA  protein transferase	0.00912001060344	0.00308205667871	-0.00603795392473
+UniRef50_UPI0003474DF5	carbon monoxide dehydrogenase	0.000227128433087	9.00934219658e-05	-0.000137035011121
+UniRef50_C8RZX1		0.00012971740702	0.000108801381811	-2.0916025209e-05
+UniRef50_UPI00032B0880	PREDICTED	2.2366106264e-05	4.54395803347e-05	2.30734740707e-05
+UniRef50_A5UJV9	Adhesin like protein	0.00337133170245	0.00166472460246	-0.00170660709999
+UniRef50_S9TE19	Proteophosphoglycan ppg4	4.87814958444e-05	1.87138204936e-05	-3.00676753508e-05
+UniRef50_I0C4G8	Glycosyltransferase	0.0196653148793	0.00716375521555	-0.0125015596638
+UniRef50_V5WWK4	Glycine betaine ABC transporter permease	0.000185953689091	0.000694862835762	0.000508909146671
+UniRef50_E6LGM1		4.46686250019e-05	5.19486737123e-05	7.2800487104e-06
+UniRef50_Q9RXB0	Alpha dextran endo 1,6 alpha glucosidase	9.79299869344e-05	0.0146463801117	0.0145484501248
+UniRef50_Q3IVA1	Translation initiation factor 2, gamma subunit, GTPase	0.0459450590166	0.00180180959921	-0.0441432494174
+UniRef50_A8FQE6	Radical SAM domain protein	0.00059713831156	0.00104647869069	0.00044934037913
+UniRef50_UPI0001913051	prolipoprotein diacylglyceryl transferase, partial	3.46279205204e-05	2.34858727296e-05	-1.11420477908e-05
+UniRef50_UPI000479F065	hypothetical protein	2.71286435317e-05	7.18522686875e-06	-1.9943416663e-05
+UniRef50_I7EDR9	TonB dependent receptor	0.000864125333459	0.056217445116	0.0553533197825
+UniRef50_UPI00036EC80A	hypothetical protein	2.197157485e-05	6.62261183158e-06	-1.53489630184e-05
+UniRef50_UPI00022CAA5E	PREDICTED	2.61490868123e-05	2.43188255041e-06	-2.37172042619e-05
+UniRef50_V8X5Y2		0.000346589413413	4.95708355188e-05	-0.000297018577894
+UniRef50_UPI0003B3D29A	ATP dependent protease	2.49418215376e-05	3.17901481684e-05	6.8483266308e-06
+UniRef50_C6SJR7		6.52045964546e-05	4.65493011965e-05	-1.86552952581e-05
+UniRef50_U5UKU3	Membrane associated protein	0.00688229031902	0.00293655344252	-0.0039457368765
+UniRef50_M7A685		0.000230542508749	6.67698568746e-05	-0.000163772651874
+UniRef50_R1DWZ6		3.45662932904e-05	1.69174852267e-05	-1.76488080637e-05
+UniRef50_E2ZTH3	Putative membrane protein	0.000212529303263	8.13058503556e-05	-0.000131223452907
+UniRef50_A9BEV2	Protein RecA	0.000770971699111	0.0351486972826	0.0343777255835
+UniRef50_P78283	Protein translocase subunit SecY	0.00280542654437	0.0125578971215	0.00975247057713
+UniRef50_E7MXD2	Rhodanese like protein	0.00683686950706	0.000806919238892	-0.00602995026817
+UniRef50_UPI00046B96B5	PREDICTED	6.46359682911e-05	1.53280881501e-05	-4.9307880141e-05
+UniRef50_A0A014LBA0	Transposase	1.35834382169e-05	0.00028530810697	0.000271724668753
+UniRef50_D7BLK7	Sugar transporter	0.000442432708837	0.0138724854378	0.013430052729
+UniRef50_Q5HJZ6	Plasmid recombination enzyme type 3	0.740800531361	0.244512495215	-0.496288036146
+UniRef50_Q2RKZ7	Glutamate 5 kinase	1.02240166529e-05	1.46015516989e-05	4.377535046e-06
+UniRef50_UPI0003B48512	ABC transporter substrate binding protein	1.71648073527e-05	5.64742465462e-05	3.93094391935e-05
+UniRef50_UPI000255BACE	patatin	4.78174000641e-06	1.60885698862e-05	1.13068298798e-05
+UniRef50_UPI0004446091	PREDICTED	1.55078193737e-07	2.42316800842e-07	8.7238607105e-08
+UniRef50_R4Z5X8		1.18814500275e-05	1.57018823401e-05	3.8204323126e-06
+UniRef50_Q9ZJG8	Membrane protein insertase YidC	0.000754882768083	0.00330047365863	0.00254559089055
+UniRef50_A0A059IR82	Chromosome partitioning protein ParA 	0.000324323690749	8.70489747589e-05	-0.00023727471599
+UniRef50_Q8YFR1	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.00636525194072	0.00536307950221	-0.00100217243851
+UniRef50_UPI00040C16D0	hypothetical protein	1.00228001284e-05	8.2291056723e-06	-1.7936944561e-06
+UniRef50_F7Z665	D 3 phosphoglycerate dehydrogenase	0.0108252629411	0.00406279369009	-0.00676246925101
+UniRef50_D1FI19	TRAP dicarboxylate transporter 	2.11043206804e-05	4.1951982067e-05	2.08476613866e-05
+UniRef50_Q9MUM1	Light independent protochlorophyllide reductase subunit N	9.56739628346e-05	2.79851262003e-05	-6.76888366343e-05
+UniRef50_F5LXA3	Glycosyl transferase family protein	0.00107807403606	0.000185733776861	-0.000892340259199
+UniRef50_L0A408	Diguanylate cyclase  domain containing protein	2.8779050152e-05	0.000768257856395	0.000739478806243
+UniRef50_UPI000308ED7E	hypothetical protein	0.0118811079983	0.00401282544639	-0.00786828255191
+UniRef50_Q5JEF8	Nicotinamide nucleotide adenylyltransferase	0.0044456525845	0.000691575091185	-0.00375407749332
+UniRef50_A4WWA3	Glutathione dependent formaldehyde activating, GFA	0.00792815436951	0.00167056414792	-0.00625759022159
+UniRef50_S3FKB7	Major facilitator superfamily MFS_1 domain protein	0.000654873618774	0.00031430608951	-0.000340567529264
+UniRef50_F2US62		1.55443363869e-06	1.65940211716e-05	1.50395875329e-05
+UniRef50_E8U2Z7	Putative GAF sensor protein	1.35005050472e-05	0.00194591817792	0.00193241767287
+UniRef50_L7DFJ3	TetR family transcriptional regulator	0.000198328890814	0.000264562378528	6.6233487714e-05
+UniRef50_Q16CP9		0.00597534898873	0.000884542429376	-0.00509080655935
+UniRef50_Q3IW63		0.0245473497273	0.00923026710419	-0.0153170826231
+UniRef50_T1JH82		4.57702632721e-06	3.44502845853e-05	2.98732582581e-05
+UniRef50_B7GZC9		5.86765785751e-05	0.00462524651319	0.00456656993461
+UniRef50_D3QI51	Transporter	0.0207543590772	0.00525560843457	-0.0154987506426
+UniRef50_UPI0003744E94	hypothetical protein	8.8812845026e-06	9.3339725819e-05	8.44584413164e-05
+UniRef50_D8MLX7	Photosystem I assembly famlily protein BtpA	0.00372298184577	0.000678590938576	-0.00304439090719
+UniRef50_UPI000262C9D0	hypothetical protein	2.62702516383e-05	3.76820929481e-05	1.14118413098e-05
+UniRef50_B4U8E3	Potassium transporting ATPase A chain	5.27847786956e-05	0.00138304391499	0.00133025913629
+UniRef50_UPI00047293B6	hypothetical protein	3.53796864681e-06	7.58050961938e-06	4.04254097257e-06
+UniRef50_Q1QUD2	Probable malate	4.54918376094e-06	1.27029507494e-05	8.15376698846e-06
+UniRef50_UPI0003A0AD2C	30S ribosomal protein S7	0.000247481993963	0.00212901636073	0.00188153436677
+UniRef50_UPI0001CE1538	PREDICTED	9.7709919458e-05	0.000152881814591	5.5171895133e-05
+UniRef50_G3N4L7		3.73434634369e-05	1.06085400113e-05	-2.67349234256e-05
+UniRef50_Q3JNN4		1.93990556899e-05	2.77882674998e-05	8.3892118099e-06
+UniRef50_A6LZ55	2,5 didehydrogluconate reductase	0.000180041012167	0.00237740457833	0.00219736356616
+UniRef50_Q3JNN0		1.65362928528e-05	1.76321506551e-05	1.0958578023e-06
+UniRef50_A3PIA7		0.00090962508806	0.000810301625125	-9.9323462935e-05
+UniRef50_A7FRF2	SPFH domain Band 7 family protein	0.000155344028336	0.00580039531667	0.00564505128833
+UniRef50_X1FV54	Marine sediment metagenome DNA, contig	1.82137340759e-05	4.29233005106e-05	2.47095664347e-05
+UniRef50_UPI00037DF23F	hypothetical protein	2.50826146801e-06	9.63756893095e-06	7.12930746294e-06
+UniRef50_UPI00046A73E3	nitrate ABC transporter ATP binding protein	1.29616477541e-05	6.61509582947e-05	5.31893105406e-05
+UniRef50_UPI0002559CE7	IS5 family transposase OrfA	0.000124789467833	5.39867752684e-05	-7.08026925646e-05
+UniRef50_UPI0003B38F36	ABC transporter permease	8.53575906335e-06	2.01194099959e-05	1.15836509326e-05
+UniRef50_UPI0003603238	hypothetical protein, partial	9.32840390114e-06	7.75205599853e-06	-1.57634790261e-06
+UniRef50_L7WVU0	Ribosomal silencing factor RsfS	0.00288143169243	0.000551993841485	-0.00232943785094
+UniRef50_F0KKV9		0.000179470359203	0.00884496237467	0.00866549201547
+UniRef50_UPI0003C16777		0.000173877775771	3.89234679994e-05	-0.000134954307772
+UniRef50_C4ZGW0	Aspartate aminotransferase, putative	0.00501380403145	0.000796823789625	-0.00421698024182
+UniRef50_UPI00037BAEE0	hypothetical protein	0.000109731580681	0.000259505640912	0.000149774060231
+UniRef50_A7HUJ4	AzlC family protein	1.19695348391e-05	9.22791927658e-06	-2.74161556252e-06
+UniRef50_P0AEL7	Ferrienterobactin binding periplasmic protein	0.00290998321374	0.000562028814663	-0.00234795439908
+UniRef50_Q1RKE8	NADH quinone oxidoreductase subunit J	0.00012758253863	1.40906844409e-05	-0.000113491854189
+UniRef50_B2V326	Mate efflux family protein	0.000248709922281	0.0012785923014	0.00102988237912
+UniRef50_B6IWF0	Phosphate ABC transporter, periplasmic phosphate binding protein PstS, putative	4.24949181733e-06	5.40061126888e-06	1.15111945155e-06
+UniRef50_B7GXW5	Poly depolymerase	1.34700829229e-05	0.0055332988704	0.00551982878748
+UniRef50_F0P9K4	DNA polymerase III delta prime subunit	0.0244511728763	0.0080729803258	-0.0163781925505
+UniRef50_Q8DL38	Biotin synthase	6.59096828472e-06	0.000104110235408	9.75192671233e-05
+UniRef50_M2F7K0	Putative transposase 	0.000302059146735	0.000502857760576	0.000200798613841
+UniRef50_Q6C1W8	YALI0F12793p	6.39101564002e-06	0.000428500387812	0.000422109372172
+UniRef50_UPI00046D9296	3 kinase	4.22889384401e-05	0.000127241629804	8.49526913639e-05
+UniRef50_R7PVC4	O linked GlcNAc transferase	0.0033913882302	0.000237202172853	-0.00315418605735
+UniRef50_UPI00029AB782	cytochrome d ubiquinol oxidase subunit II	9.79140951064e-06	2.08076636388e-05	1.10162541282e-05
+UniRef50_U5NRE3		0.00697017061606	0.00146767932083	-0.00550249129523
+UniRef50_F8HC83	Regulatory protein spx	0.00126414950608	0.00114667829896	-0.00011747120712
+UniRef50_Q3Y3U3	Relaxase mobilization nuclease domain	0.00127485842409	0.00018833367085	-0.00108652475324
+UniRef50_C5ABI0	Major facilitator superfamily MFS_1	0.000198198688056	0.00648469005634	0.00628649136828
+UniRef50_M2XMH8	DNA polymerase II large subunit	2.02530780281e-05	0.000104394581345	8.41415033169e-05
+UniRef50_K7YBZ8		0.000228155110748	0.00197606779169	0.00174791268094
+UniRef50_P44304	Glyceraldehyde 3 phosphate dehydrogenase	0.00363824611945	0.000430280020438	-0.00320796609901
+UniRef50_B2TI69		0.000630593005367	0.00217094372115	0.00154035071578
+UniRef50_UPI000255F17A	hypothetical protein	5.82559931989e-05	0.000164821230301	0.000106565237102
+UniRef50_P45524	Putative esterase YheT	0.00222919467823	0.00144345948598	-0.00078573519225
+UniRef50_UPI000462C6A7	PREDICTED	1.52949701278e-05	0.000376817551654	0.000361522581526
+UniRef50_B2WGR9	Catabolic 3 dehydroquinase	3.29341505445e-05	0.00859615212763	0.00856321797709
+UniRef50_I4AI93		0.000208172420321	0.00281671794743	0.00260854552711
+UniRef50_UPI00045E39BE	PREDICTED	4.60558533168e-06	4.04538315796e-06	-5.6020217372e-07
+UniRef50_UPI00037892F1	hypothetical protein	3.64057505749e-06	2.08871737459e-06	-1.5518576829e-06
+UniRef50_U1X2L2		0.000123751680986	1.79173896482e-05	-0.000105834291338
+UniRef50_UPI0003601561	hypothetical protein	1.49523558644e-05	1.39103894639e-05	-1.0419664005e-06
+UniRef50_S5FCD6	Portal protein	9.11801905478e-05	0.00215988284241	0.00206870265186
+UniRef50_C9ABJ9	Fructose 6 phosphate aldolase	0.00732085094163	0.00231659558482	-0.00500425535681
+UniRef50_A4FIQ1	Inositol 2 dehydrogenase 3	0.00290214489783	0.00103195735108	-0.00187018754675
+UniRef50_A3CQ84	Stomatin prohibitin like membrane protease subunits, putative	0.00664379698948	0.00698751373888	0.0003437167494
+UniRef50_W3AF53		4.4674076915e-06	9.73624789762e-06	5.26884020612e-06
+UniRef50_A5UJ85	DNA helicase II	0.00305910634578	0.000404010667634	-0.00265509567815
+UniRef50_Q4L790	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00152011716229	0.000567916740756	-0.000952200421534
+UniRef50_F2N691	Methyltransferase PilK	0.000442042735691	0.000211191922662	-0.000230850813029
+UniRef50_L1KFY1		0.00012076752759	0.00133225581291	0.00121148828532
+UniRef50_M9VBK7	Protein translocase subunit SecE	0.000174762031871	0.00623746276338	0.00606270073151
+UniRef50_K0RFL8		2.23816179144e-05	7.71164771806e-05	5.47348592662e-05
+UniRef50_Q7UKQ9	Pyridoxine pyridoxamine 5 phosphate oxidase	6.51686951022e-06	4.22562704227e-05	3.57394009125e-05
+UniRef50_UPI0003B677A0	trehalose phosphatase	3.24179055267e-05	3.8594512666e-05	6.1766071393e-06
+UniRef50_D5AMV2		0.00585479990965	0.00104801845391	-0.00480678145574
+UniRef50_C5WIK5		9.40325337864e-05	4.80463894119e-05	-4.59861443745e-05
+UniRef50_A3TY58		0.000271217812282	5.86031302057e-05	-0.000212614682076
+UniRef50_I6AD38	Rhodanese domain protein	1.35942699055e-05	1.56650643619e-05	2.0707944564e-06
+UniRef50_Q3BTY0	Leucyl phenylalanyl tRNA  protein transferase	7.15154571387e-06	5.20737318081e-06	-1.94417253306e-06
+UniRef50_J1EAV0	Localization of periplasmic protein complex 	1.42407759349e-05	1.85357788066e-05	4.2950028717e-06
+UniRef50_Q08WY4		6.0550603539e-06	8.85087944195e-05	8.24537340656e-05
+UniRef50_A5UK74	Xanthine uracil permease, UraA	0.00257311722102	0.00441311184489	0.00183999462387
+UniRef50_R8TPL3		0.00034247910761	3.83202453147e-05	-0.000304158862295
+UniRef50_UPI0002F0AFD4	glycerol 3 phosphate dehydrogenase	1.46873079729e-05	5.47277805429e-06	-9.21452991861e-06
+UniRef50_O69763	Vanillin dehydrogenase	0.0003547788711	0.0091653848342	0.0088106059631
+UniRef50_A0A021V5W0	LctP family lactate transporter	0.00386871830562	0.00214125642029	-0.00172746188533
+UniRef50_UPI000328D943	PREDICTED	0.000247609148869	0.000343427211886	9.5818063017e-05
+UniRef50_Q8P322	tRNA lysidine synthase	0.00559811980106	0.0025382496282	-0.00305987017286
+UniRef50_P50178	Modification methylase LlaDCHIB	0.00295776896385	0.000225146153897	-0.00273262280995
+UniRef50_UPI0002DF814C	hypothetical protein	7.09205888256e-05	5.94525032505e-06	-6.49753385006e-05
+UniRef50_U3T3H2	Outer membrane cobalamin receptor protein	0.00012716768271	0.00643375108484	0.00630658340213
+UniRef50_Q8A0U0	GTP cyclohydrolase 1	4.09312928036e-05	0.000933468649062	0.000892537356258
+UniRef50_E4U994		7.28460535183e-05	0.000420326020798	0.00034747996728
+UniRef50_P56148	DNA repair protein RadA homolog	0.000119331714078	0.00501095270892	0.00489162099484
+UniRef50_S1T0A0	Molybdopterin guanine dinucleotide biosynthesis protein MobA	3.60545915537e-06	3.62248736218e-06	1.702820681e-08
+UniRef50_Q9ZLF9	Ribonucleoside diphosphate reductase subunit alpha	0.000251528325992	0.00365176545422	0.00340023712823
+UniRef50_Q5L0L0	Chemotaxis response regulator protein glutamate methylesterase	5.47385240571e-06	5.86052574605e-06	3.8667334034e-07
+UniRef50_Q7UIA6	3 isopropylmalate dehydratase small subunit	3.22272789678e-05	5.30062500842e-05	2.07789711164e-05
+UniRef50_Q8E0C9	Group B oligopeptidase PepB	0.00445720595275	0.00150548358306	-0.00295172236969
+UniRef50_K1WM50		1.55668959688e-05	0.000187786539651	0.000172219643682
+UniRef50_UPI00016C089F	competence damage inducible protein A	1.67431573981e-05	5.75415102687e-06	-1.09890063712e-05
+UniRef50_K2N567	2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	5.33395438294e-05	3.33540933688e-05	-1.99854504606e-05
+UniRef50_V6UH50		9.00790839893e-06	0.000245429383193	0.000236421474794
+UniRef50_A1UTH5	Peptidyl tRNA hydrolase	6.81921278934e-05	3.51198236662e-05	-3.30723042272e-05
+UniRef50_J7LD22		2.23072413933e-05	9.72494841897e-06	-1.25822929743e-05
+UniRef50_W1N6M3		0.000107858990348	4.91572138841e-05	-5.87017764639e-05
+UniRef50_J7MT36	Phage infection family protein	3.79907093011e-06	0.00165251376045	0.00164871468952
+UniRef50_UPI000262CD24	dihydroorotate dehydrogenase 2	5.64432813214e-06	6.69613784165e-06	1.05180970951e-06
+UniRef50_UPI000474A0FC	cation transporting ATPase PacS, partial	3.62633600666e-06	5.97220036057e-06	2.34586435391e-06
+UniRef50_P0A9S8	High affinity branched chain amino acid transport ATP binding protein LivG	0.00512397489533	0.000994326341755	-0.00412964855357
+UniRef50_UPI0003B61CAA	DNA polymerase III subunit alpha	2.57949696976e-06	1.00975679278e-05	7.51807095804e-06
+UniRef50_UPI000441931B	PREDICTED	2.062660605e-05	7.29575306157e-06	-1.33308529884e-05
+UniRef50_UPI0003EB11F8	hypothetical protein	0.000317946783882	0.000150828145793	-0.000167118638089
+UniRef50_B9JLP2	Dipeptide ABC transporter	0.0144319630433	0.000755232268359	-0.0136767307749
+UniRef50_S5NIJ4	6 pyruvoyl tetrahydropterin synthase family protein	0.000196949211577	0.0134595635748	0.0132626143632
+UniRef50_UPI00046D9084	hypothetical protein	1.1574838913e-05	0.000564089116712	0.000552514277799
+UniRef50_A0A024HLC2	Peptidoglycan synthase FtsI	0.00126718909768	0.000601422526307	-0.000665766571373
+UniRef50_UPI0003EABD05	PREDICTED	3.53765437387e-05	7.09944790988e-05	3.56179353601e-05
+UniRef50_UPI0003F6C60F	hypothetical protein	6.23776261745e-06	7.10100760025e-06	8.632449828e-07
+UniRef50_Q02127	Dihydroorotate dehydrogenase , mitochondrial	3.88577241031e-06	5.45527593257e-06	1.56950352226e-06
+UniRef50_Q63JM0	Tryptophan synthase alpha chain	0.000730735717188	0.00933192821108	0.00860119249389
+UniRef50_UPI00037DE56E	hypothetical protein	1.0181075704e-06	6.55994989111e-06	5.54184232071e-06
+UniRef50_P55798	Serine threonine protein phosphatase 1	0.00367472350853	0.0019272742775	-0.00174744923103
+UniRef50_A1AJA0		0.000367681157978	0.000757222321012	0.000389541163034
+UniRef50_V2WBL1		0.000101790673079	0.0054597983691	0.00535800769602
+UniRef50_D5BNR0		1.54963159223e-05	3.95853145172e-05	2.40889985949e-05
+UniRef50_UPI000464D525	hypothetical protein	3.67045210941e-05	1.49796554692e-05	-2.17248656249e-05
+UniRef50_F7ZCI7	YcjX like protein	0.000559933228429	0.000176726048331	-0.000383207180098
+UniRef50_P77551	Putative Rz endopeptidase from lambdoid prophage Rac 	0.00200978496923	0.000453994425311	-0.00155579054392
+UniRef50_P0AFR7	Inner membrane ABC transporter permease protein YcjO	0.00371800615952	0.000974390098632	-0.00274361606089
+UniRef50_A0A011MK47	Sulfate starvation induced protein 7	1.23555401582e-05	5.65188692134e-06	-6.70365323686e-06
+UniRef50_Q8C3X4	Translation factor Guf1, mitochondrial	0.000162689593318	0.00607355481825	0.00591086522493
+UniRef50_P15034	Xaa Pro aminopeptidase	0.00272522256053	0.000661161887643	-0.00206406067289
+UniRef50_E8SF18	Aldose 1 epimerase	0.0262337392811	0.00499367281283	-0.0212400664683
+UniRef50_A0A017HMF0		0.00109951483069	7.68717325399e-05	-0.00102264309815
+UniRef50_C4ZAJ9	ABC transporter, substrate binding protein	0.000433870517968	0.00165172626081	0.00121785574284
+UniRef50_Q3KKE6	Methionyl tRNA formyltransferase	1.15994981852e-05	1.01760715423e-05	-1.4234266429e-06
+UniRef50_J9NYM1		5.62734213803e-05	0.000796812327947	0.000740538906567
+UniRef50_C3QRE5		2.04045915274e-05	5.28306306203e-05	3.24260390929e-05
+UniRef50_UPI000454A2DB	PREDICTED	4.10028204569e-05	0.000583730781846	0.000542727961389
+UniRef50_A4WNL3	Alkane 1 monooxygenase	0.00461211358478	0.000797567668071	-0.00381454591671
+UniRef50_Q2KUS4	Glutamate 1 semialdehyde 2,1 aminomutase	1.30300919849e-05	5.17109824215e-05	3.86808904366e-05
+UniRef50_Q49XA7	Response regulator	0.0262766745275	0.00969861921099	-0.0165780553165
+UniRef50_W0NGN9		0.000245436890964	0.000103899038154	-0.00014153785281
+UniRef50_UPI0001DD0A5B	glucose methanol choline oxidoreductase	3.25551130128e-05	1.51054561154e-05	-1.74496568974e-05
+UniRef50_UPI0002DA0766	hypothetical protein	9.97826103677e-05	1.70678993212e-05	-8.27147110465e-05
+UniRef50_UPI000465EE27	transcriptional regulator	0.00051907931128	0.000178688564362	-0.000340390746918
+UniRef50_S9S9T8		8.71142785697e-06	8.93553676139e-07	-7.81787418083e-06
+UniRef50_Q4FQM5	Possible acyl CoA dehydrogenase	0.000256184774824	0.00805647737903	0.00780029260421
+UniRef50_F0LEQ2		1.76125021984e-05	3.73462807507e-06	-1.38778741233e-05
+UniRef50_UPI0004011469	glutamine synthetase	3.88022418163e-06	3.84890521942e-05	3.46088280126e-05
+UniRef50_Q2NVF9	Ribonuclease H	4.92115386828e-05	2.27583395313e-05	-2.64531991515e-05
+UniRef50_UPI000360E579	hypothetical protein	3.48693396424e-06	3.66772317774e-06	1.807892135e-07
+UniRef50_UPI00034CA4EE	hypothetical protein	1.18349023133e-05	7.84339940452e-06	-3.99150290878e-06
+UniRef50_T1Y907	Glycerol uptake operon antiterminator regulatory protein	0.010060208328	0.00517895372108	-0.00488125460692
+UniRef50_X0W5G8	Marine sediment metagenome DNA, contig	1.37658217162e-05	0.000557978103331	0.000544212281615
+UniRef50_P39634	1 pyrroline 5 carboxylate dehydrogenase	0.0312434604054	0.05662210642	0.0253786460146
+UniRef50_UPI0003D2D096	helicase subunit of the DNA excision repair complex	0.000213068221822	0.00035283242594	0.000139764204118
+UniRef50_UPI0004195273	metallophosphoesterase	3.00129406799e-05	0.000103183996409	7.31710557291e-05
+UniRef50_Q3SKN6	Ribosome recycling factor	0.00359509751005	0.00337254524287	-0.00022255226718
+UniRef50_M2SV33		3.08187578723e-06	2.11594207944e-05	1.80775450072e-05
+UniRef50_Q98HV6	Peptidyl tRNA hydrolase	6.18019648583e-05	3.148071852e-05	-3.03212463383e-05
+UniRef50_J7L680		4.04418090133e-05	1.8599765526e-05	-2.18420434873e-05
+UniRef50_UPI000475208B	hypothetical protein	8.66354316966e-05	1.60894354595e-05	-7.05459962371e-05
+UniRef50_P0A9P2	Dihydrolipoyl dehydrogenase	0.00293539989047	0.00116350489329	-0.00177189499718
+UniRef50_K1V9D8		2.72130078112e-05	8.60981672297e-06	-1.86031910882e-05
+UniRef50_P56262	Putative carboxymethylenebutenolidase	0.00265468570168	0.000716965950952	-0.00193771975073
+UniRef50_P27242	Lipopolysaccharide 1,2 N acetylglucosaminetransferase	0.00223156188007	0.000223724776658	-0.00200783710341
+UniRef50_UPI00036005C8	Cro Cl family transcriptional regulator	0.000302352917294	3.32271176516e-05	-0.000269125799642
+UniRef50_D6ZGV8	Hydrolase, alpha beta domain protein	9.96005247615e-05	0.00346275126597	0.00336315074121
+UniRef50_UPI0003B63445	3 oxoacyl ACP synthase	1.15942492086e-05	3.92712444924e-05	2.76769952838e-05
+UniRef50_UPI0004701497	hypothetical protein	1.15266624298e-05	1.32079993173e-05	1.6813368875e-06
+UniRef50_UPI00037075A9	hypothetical protein	1.28464256146e-05	1.42634073441e-05	1.4169817295e-06
+UniRef50_UPI00036443D8	hypothetical protein	1.83519997307e-05	1.36747211517e-05	-4.677278579e-06
+UniRef50_X0XIH0	Marine sediment metagenome DNA, contig	0.000117136984514	2.43647132904e-05	-9.27722712236e-05
+UniRef50_Q2RJX2	Ribonuclease 3	1.36690282123e-05	5.21028633718e-05	3.84338351595e-05
+UniRef50_Q82ZC9	Mannonate dehydratase	0.00038261443205	0.0090494550284	0.00866684059635
+UniRef50_UPI0003AEBAC4	PREDICTED	1.31413635789e-05	9.60149128807e-07	-1.21812144501e-05
+UniRef50_Q4L8C1	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00879889537516	0.00466730089782	-0.00413159447734
+UniRef50_UPI000380E91C	hypothetical protein	7.21708016402e-05	5.59215609367e-05	-1.62492407035e-05
+UniRef50_B9KSB3		0.00139052871764	0.00135259559632	-3.793312132e-05
+UniRef50_Q83KI3	UPF0339 protein YegP	0.000801986811085	0.00308740437904	0.00228541756795
+UniRef50_A6LQL4	Methylated DNA  protein cysteine methyltransferase	0.000356118857413	0.000381053813154	2.4934955741e-05
+UniRef50_Q5FKB1	Trehalose 6 P hydrolase	0.0063583902874	0.00213256877819	-0.00422582150921
+UniRef50_R1CXE8		4.17206431966e-05	0.000238378604517	0.00019665796132
+UniRef50_E6MXC7	Chorismate mutase	0.000146691446449	0.00638783807577	0.00624114662932
+UniRef50_UPI0001911376	DNA binding transcriptional activator of porin biosynthesis, partial	2.80483475261e-05	6.05030742556e-05	3.24547267295e-05
+UniRef50_D5QD63	Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.00174981661799	0.00035605686715	-0.00139375975084
+UniRef50_D7CSG3	ABC transporter related protein	0.000479138807593	0.0379434082039	0.0374642693963
+UniRef50_X7EKT4		3.70977852084e-05	2.35936272629e-05	-1.35041579455e-05
+UniRef50_UPI0000166DA8	COG0583	2.22015380385e-05	1.48156109259e-05	-7.3859271126e-06
+UniRef50_Q834F4	UPF0122 protein EF_1701	0.00102950724232	0.0180393758711	0.0170098686288
+UniRef50_Q8ZKQ1	Autoinducer 2 binding protein LsrB	0.0100166848175	0.00458056345516	-0.00543612136234
+UniRef50_B7VKH0	4 diphosphocytidyl 2 C methyl D erythritol kinase	0.00309970164874	0.00127375106598	-0.00182595058276
+UniRef50_P69925	Ribonucleoside diphosphate reductase 1 subunit beta	0.00389285407546	0.00429294621717	0.00040009214171
+UniRef50_Q28NI7	ATP dependent Clp protease proteolytic subunit	1.62277173087e-05	4.22969274885e-05	2.60692101798e-05
+UniRef50_Q9A8A3		0.000593504540491	0.000212804769119	-0.000380699771372
+UniRef50_R1CGH2		0.00011438560723	0.000262036804059	0.000147651196829
+UniRef50_Q2T0L2	UDP N acetylenolpyruvoylglucosamine reductase	0.000469722778002	0.000380209008191	-8.9513769811e-05
+UniRef50_A0A017HNY4	Paraquat inducible protein B	1.82422019514e-05	5.58002212442e-05	3.75580192928e-05
+UniRef50_P0A8Y6	Sugar phosphatase YidA	0.00678688135142	0.00489113011696	-0.00189575123446
+UniRef50_A5N3K4	CTP synthase	3.46635087934e-05	0.000177336186937	0.000142672678144
+UniRef50_C5WIG1	16S rRNA mC 967 methyltransferase	0.0051321430333	0.00557047488845	0.00043833185515
+UniRef50_P50434	Serine hydroxymethyltransferase 	1.00133587018e-05	1.29526459023e-05	2.9392872005e-06
+UniRef50_UPI00037E292F	Na translocating NADH quinone reductase subunit E, partial	7.14908434026e-05	8.28832726115e-05	1.13924292089e-05
+UniRef50_P76104		0.00335553458941	0.000540901625088	-0.00281463296432
+UniRef50_A6LQE3	Spore coat protein CotS	0.000607469626782	0.00125765239711	0.000650182770328
+UniRef50_UPI0000222BCC	Hypothetical protein CBG04553	8.92196171329e-07	0.000130647723141	0.00012975552697
+UniRef50_P76100		0.00187818780999	0.00116713888886	-0.00071104892113
+UniRef50_Q9HXY5	Skp like protein	0.000457710083491	0.00105893827165	0.000601228188159
+UniRef50_U4Q2X2		0.0013470591303	0.000548575922964	-0.000798483207336
+UniRef50_UPI000455F125	MFS general substrate transporter	3.16447653523e-06	2.42489172182e-05	2.1084440683e-05
+UniRef50_UPI000255A9B5	polyhydroxyalkanoate depolymerase, intracellular	0.000380018624549	6.24483168639e-05	-0.000317570307685
+UniRef50_P43801	Anaerobic glycerol 3 phosphate dehydrogenase subunit C	0.00192424024098	0.000288388401881	-0.0016358518391
+UniRef50_B3EFT2	Phosphoribosyl AMP cyclohydrolase	1.43082521179e-05	6.86055428384e-05	5.42972907205e-05
+UniRef50_B9E2W7		0.00011005422415	0.00106261531073	0.00095256108658
+UniRef50_UPI0004635F62	hypothetical protein, partial	1.89931350216e-05	1.02720497608e-05	-8.7210852608e-06
+UniRef50_D5RMQ9		0.00100317457958	0.000692148527801	-0.000311026051779
+UniRef50_A6UYW1	8 amino 7 oxononanoate synthase	9.41884458769e-06	4.38616684671e-06	-5.03267774098e-06
+UniRef50_D9XAX0	Predicted protein	0.000556279417224	2.23179165768e-05	-0.000533961500647
+UniRef50_Q67PR9	Guanylate kinase	9.38150948695e-06	2.55495586822e-05	1.61680491952e-05
+UniRef50_B8I4B5	50S ribosomal protein L9	0.000510116201151	0.00111272176274	0.000602605561589
+UniRef50_B9KUZ9		0.00161887715412	0.00220767355851	0.00058879640439
+UniRef50_C5QYC3		0.0374811977381	0.0267616167579	-0.0107195809802
+UniRef50_UPI0003705808	hypothetical protein	7.87129648936e-05	0.000108678971022	2.99660061284e-05
+UniRef50_O17953	Dihydrolipoyl dehydrogenase, mitochondrial	0.000621545687068	0.0575784965126	0.0569569508255
+UniRef50_W9UQ60	Putative assembly protein	1.94758834616e-06	1.91731645075e-06	-3.027189541e-08
+UniRef50_A0A024HXW4		2.16692232949e-05	3.9768085016e-05	1.80988617211e-05
+UniRef50_G4LCZ8	ABC transporter	0.00136274538262	0.00139222348632	2.94781037e-05
+UniRef50_A0A023XD37		0.00285644599929	0.000630569477283	-0.00222587652201
+UniRef50_Q67LS2	tRNA specific 2 thiouridylase MnmA	0.000105837193141	0.00182803218533	0.00172219499219
+UniRef50_A5IUF8		0.00525435426901	0.00249457223503	-0.00275978203398
+UniRef50_B9J8J7	Phosphate ABC transporter, permease protein PstC	0.00211341990744	0.000185928670631	-0.00192749123681
+UniRef50_UPI0003A61BAB	glutaredoxin	0.000263593282703	0.000119443857929	-0.000144149424774
+UniRef50_Q5M3M6	NADH nitroreductase, putative	0.0104806366719	0.00323940629224	-0.00724123037966
+UniRef50_D6T1N1		3.52258524946e-05	0.000196684230892	0.000161458378397
+UniRef50_P30864		0.0021694972146	0.00449120544414	0.00232170822954
+UniRef50_UPI0003B3E508	ATP dependent DNA helicase RecQ	3.1950876362e-05	8.76427945006e-06	-2.31865969119e-05
+UniRef50_I0C7F9	Transposase	0.00629222881243	0.00042188100743	-0.005870347805
+UniRef50_UPI00040BBC52	hypothetical protein	6.07225557301e-06	7.44802587944e-06	1.37577030643e-06
+UniRef50_E8SP74	TnaB	0.000170244177435	0.00306879754673	0.0028985533693
+UniRef50_UPI00031AADB4	hypothetical protein	7.98129398548e-06	4.80507417835e-05	4.0069447798e-05
+UniRef50_A6M044	Pyruvate phosphate dikinase, PEP pyruvate binding	0.000293205594883	0.000912992822274	0.000619787227391
+UniRef50_B1I8K9	50S ribosomal protein L24	0.000571948467958	0.00158205377784	0.00101010530988
+UniRef50_A4WU42	HAD superfamily hydrolase, subfamily IA, variant 3	0.0062012539686	0.00210555283762	-0.00409570113098
+UniRef50_A4X0H4		0.00722673297635	0.00466147221554	-0.00256526076081
+UniRef50_UPI0003B31D39	glucose 1 phosphate adenylyltransferase	8.27791414818e-06	1.74862295857e-05	9.20831543752e-06
+UniRef50_G0NKG2		1.77670334942e-06	1.69565034975e-06	-8.105299967e-08
+UniRef50_F2RAR1		2.28512392982e-05	1.77935372772e-05	-5.057702021e-06
+UniRef50_UPI0003F0A9A6	PREDICTED	1.60354202724e-05	1.89036774594e-05	2.868257187e-06
+UniRef50_A6LTB9		0.000219915479931	0.000347847745481	0.00012793226555
+UniRef50_W1CWF6	Dipeptide transport system permease protein DppC 	3.99159947935e-05	4.50292672275e-05	5.113272434e-06
+UniRef50_P76027	Oligopeptide transport ATP binding protein OppD	0.00357888287322	0.00307108294839	-0.00050779992483
+UniRef50_B9E466		0.000157158450554	0.000899803575401	0.000742645124847
+UniRef50_Q9KA77	Translation initiation factor IF 2	0.00983590535411	0.00321618573988	-0.00661971961423
+UniRef50_D2ZRY0		0.00123811800729	0.000901692565299	-0.000336425441991
+UniRef50_UPI0003AE05F2	PREDICTED	7.3782790292e-05	3.0981870398e-05	-4.2800919894e-05
+UniRef50_UPI0003B3B0BA	preprotein translocase subunit TatA	0.000115263405025	8.09674765753e-05	-3.42959284497e-05
+UniRef50_W8WPD9	Phage protein	0.00689815600913	0.000641992837382	-0.00625616317175
+UniRef50_A0A037XG38	Glyoxalase	1.61161911155e-05	3.31141839601e-05	1.69979928446e-05
+UniRef50_D4M1S2	RNA splicing ligase RtcB	0.000316058040362	0.00094952870824	0.000633470667878
+UniRef50_UPI0003B5B654	membrane protein	0.000174038751499	6.76193933771e-05	-0.000106419358122
+UniRef50_UPI00037C520F	hypothetical protein	3.32171331842e-06	6.10559592037e-06	2.78388260195e-06
+UniRef50_S3LIB4		4.18662965203e-05	3.22706734066e-05	-9.5956231137e-06
+UniRef50_Q28NL2		2.85002946155e-05	1.51245360965e-05	-1.3375758519e-05
+UniRef50_UPI00046673FB	hypothetical protein	0.000190820262984	0.000150793327316	-4.0026935668e-05
+UniRef50_UPI0004704A21	hypothetical protein	3.05012851836e-05	0.000500442944208	0.000469941659024
+UniRef50_Q3K425	Chromosomal replication initiator protein DnaA	0.00730992193626	0.00485592854234	-0.00245399339392
+UniRef50_UPI0003B72310	excinuclease ABC subunit C	8.01168615629e-06	1.68864653312e-05	8.87477917491e-06
+UniRef50_UPI0004703B9E	branched chain amino acid ABC transporter permease	5.90543812748e-06	0.000145323341918	0.000139417903791
+UniRef50_UPI000471ED7E	ABC transporter ATP binding protein	4.0981112959e-05	2.04501997775e-05	-2.05309131815e-05
+UniRef50_UPI000372F99D	hypothetical protein, partial	2.99295866321e-05	3.41608761337e-05	4.2312895016e-06
+UniRef50_A6M1G6	2 aminoethylphosphonate  pyruvate transaminase	0.000199494455397	0.002216107629	0.0020166131736
+UniRef50_UPI00042812AB	hypothetical protein	1.05766180632e-05	4.39196381855e-05	3.33430201223e-05
+UniRef50_X5P2F9	Replication initiation protein	5.0336391492e-05	2.85988750002e-05	-2.17375164918e-05
+UniRef50_X5K1E3		0.00105837193136	0.000881542403566	-0.000176829527794
+UniRef50_Q4L8N9	Multidrug export protein MepA	0.0109358220442	0.0013392441898	-0.0095965778544
+UniRef50_P18200	Phosphatidylglycerophosphatase A	0.00175102496705	0.000470986401241	-0.00128003856581
+UniRef50_W7WR71		5.97175079141e-05	9.90339160079e-05	3.93164080938e-05
+UniRef50_E8PGH1		0.000264873318412	0.00617833074134	0.00591345742293
+UniRef50_A0A023S033	Peptidase C13 family protein	9.7123324747e-05	0.00543603920085	0.0053389158761
+UniRef50_Q95748	NADH dehydrogenase [ubiquinone] iron sulfur protein 3	2.31596783811e-05	1.63320142889e-05	-6.8276640922e-06
+UniRef50_C1E3Y9	Carbamoyl phosphate synthase	0.000122376929233	0.00853044695092	0.00840807002169
+UniRef50_Q04E66	30S ribosomal protein S4	0.00302240830011	0.00285194301032	-0.00017046528979
+UniRef50_A6QII8	Phage portal protein	0.0195619375102	0.00335419751104	-0.0162077399992
+UniRef50_UPI00020D9EF8	potassium transporting ATPase subunit B, partial	1.58739084151e-05	0.00139569780923	0.00137982390081
+UniRef50_M1MIF0	Ankyrin repeat containing protein	0.000950716554642	0.000279921047585	-0.000670795507057
+UniRef50_A1B6P1	HupH hydrogenase expression protein	0.000234830164501	9.51567595386e-05	-0.000139673404962
+UniRef50_C7ZU12	Membrane protein	0.0115553727064	0.00776425598109	-0.00379111672531
+UniRef50_R4Q1E8	Fumarate reductase, flavoprotein subunit	0.00608928826387	0.000838731833528	-0.00525055643034
+UniRef50_UPI00036817A2	hypothetical protein	1.14936885719e-05	3.92703272152e-05	2.77766386433e-05
+UniRef50_UPI00037FABCF	hypothetical protein	0.000383675115771	0.000127374069866	-0.000256301045905
+UniRef50_S1HAB5	Peptidoglycan hydrolase flgJ	0.00417425402772	0.000736340090513	-0.00343791393721
+UniRef50_A0LUK5	Holliday junction ATP dependent DNA helicase RuvB	1.34678639395e-05	0.00747569741644	0.0074622295525
+UniRef50_J0GC54		0.00811320802385	0.004134109254	-0.00397909876985
+UniRef50_P22525	Probable L,D transpeptidase YcbB	0.00297589868023	0.0018079251832	-0.00116797349703
+UniRef50_I1AUI6	Ferrichrome ABC transporter periplasmic ferrichrome binding protein FhuD 1	3.13701111483e-05	1.58419951028e-05	-1.55281160455e-05
+UniRef50_P0AF07	Motility protein B	0.00270239899437	0.00145486187002	-0.00124753712435
+UniRef50_R3TZ40		1.05367221013e-05	7.62953861265e-06	-2.90718348865e-06
+UniRef50_UPI0004736CD6	hypothetical protein	5.23469688489e-05	2.08775311889e-05	-3.146943766e-05
+UniRef50_UPI0000352E5F	nucleoside diphosphate kinase	5.76301413004e-05	3.21534571033e-05	-2.54766841971e-05
+UniRef50_F2ABU0		0.00107356687878	0.000318143429591	-0.000755423449189
+UniRef50_B9KX90	ABC polysaccharide export transporter, inner membrane subunit	0.0203645951903	0.00283948197266	-0.0175251132176
+UniRef50_T1HGL7		6.92048074568e-06	6.20125331163e-05	5.50920523706e-05
+UniRef50_UPI0002491D69	glycine betaine carnitine ABC transporter, ATP binding subunit	0.000254215752016	2.89163098988e-05	-0.000225299442117
+UniRef50_UPI0004732920	long chain fatty acid  CoA ligase, partial	2.83798680388e-05	8.06922941792e-06	-2.03106386209e-05
+UniRef50_UPI0002EB7410	hypothetical protein	0.000125596036843	7.94447966809e-06	-0.000117651557175
+UniRef50_C5N039		0.00309414277407	0.00144174716362	-0.00165239561045
+UniRef50_UPI0002896C02	L glutamine synthetase	3.41657627596e-06	1.35287623231e-05	1.01121860471e-05
+UniRef50_UPI0003740E86	hypothetical protein	9.96012827383e-06	1.24335738072e-05	2.47344553337e-06
+UniRef50_D7GDS8	Protein export membrane protein SecF	9.83890500953e-05	0.004185214865	0.0040868258149
+UniRef50_UPI00035114FD	PREDICTED	2.78956326815e-06	6.08758455454e-07	-2.1808048127e-06
+UniRef50_Q18CD7	Proline  tRNA ligase 2	7.56279560481e-06	2.99017479952e-05	2.23389523904e-05
+UniRef50_Q9L6N7	Threonine efflux protein	0.00220539636516	0.00465375110875	0.00244835474359
+UniRef50_UPI00047C100E	hypothetical protein	0.000104251224206	9.66886825505e-06	-9.45823559509e-05
+UniRef50_UPI000463C607	hypothetical protein	2.38353935364e-06	1.76945660356e-06	-6.1408275008e-07
+UniRef50_F7ZSI9	Serine protein kinase , prkA protein	0.000323529144141	0.000698845092264	0.000375315948123
+UniRef50_J2PRG5		6.77514964598e-05	5.02104489412e-05	-1.75410475186e-05
+UniRef50_S7Z9P2		1.87736526976e-05	6.85317979988e-06	-1.19204728977e-05
+UniRef50_S9QRL9	Ribulose 5 phosphate 4 epimerase	2.06732314622e-05	0.000506537018293	0.000485863786831
+UniRef50_J1E8C3		2.03862942794e-05	1.74362834037e-05	-2.9500108757e-06
+UniRef50_Q46831		0.00418288054075	0.00190629184652	-0.00227658869423
+UniRef50_Q1R0P6		7.05214081848e-06	2.34137554333e-05	1.63616146148e-05
+UniRef50_UPI000429382E	hypothetical protein	1.07771965608e-05	8.21361914025e-06	-2.56357742055e-06
+UniRef50_UPI00036DD217	hypothetical protein	4.1676988856e-06	7.75111497774e-06	3.58341609214e-06
+UniRef50_W4U314	Transglutaminase like enzymes	4.97530185333e-05	2.24101367546e-05	-2.73428817787e-05
+UniRef50_Q03282	Urease subunit gamma	0.000681824738409	0.000374294570504	-0.000307530167905
+UniRef50_P16524	Putative N acetyl LL diaminopimelate aminotransferase	3.04673917925e-05	0.00267933318982	0.00264886579803
+UniRef50_UPI00037D91E8	hypothetical protein	2.69975941821e-05	1.56478033249e-05	-1.13497908572e-05
+UniRef50_A6YIY0	Major ampullate spidroin 2	6.93625593045e-06	2.38516723892e-05	1.69154164587e-05
+UniRef50_Q97KZ3	Putative ABC transporter ATP binding protein CA_C0773	0.000502922100373	0.00128041695837	0.000777494857997
+UniRef50_W6QWZ0	Putative acyl CoA thioester hydrolase	0.000281705961835	0.000501954739708	0.000220248777873
+UniRef50_Q6AQS4	Aspartate  tRNA ligase	0.0268282422176	0.00590881860223	-0.0209194236154
+UniRef50_UPI00046EC96E	hypothetical protein, partial	0.000133399139677	0.000142098485818	8.699346141e-06
+UniRef50_R9SMV0	Siroheme synthase CysG	0.00512865345631	0.000283958370386	-0.00484469508592
+UniRef50_E6MYI6	Esterase family protein	0.000583584479882	0.0015352030021	0.000951618522218
+UniRef50_UPI0003A50B9C	hypothetical protein	2.06281087424e-05	2.66192631087e-05	5.9911543663e-06
+UniRef50_A0YEX4		0.000141178686592	0.000367185114235	0.000226006427643
+UniRef50_F5X5K7	TetR family transcriptional regulator	0.00336299485171	0.00192021489492	-0.00144277995679
+UniRef50_UPI000382E61F	hypothetical protein, partial	2.08207063785e-05	5.48572424133e-05	3.40365360348e-05
+UniRef50_E0TW67	Quinol oxidase subunit 2	0.0100030010767	0.00304823568594	-0.00695476539076
+UniRef50_T2BF48	Ubiquinol cytochrome c reductase iron sulfur subunit	0.000505561592214	0.00169244544919	0.00118688385698
+UniRef50_X5E1J9		0.0192169882303	0.00192153394635	-0.0172954542839
+UniRef50_Q8DNI6	Phosphotransferase system, trehalose specific IIBC component	0.00594636626756	0.000872432519423	-0.00507393374814
+UniRef50_D4HBJ9	Adenosine deaminase	0.000184439408233	0.00357182429902	0.00338738489079
+UniRef50_X0VEK8	Marine sediment metagenome DNA, contig	1.16646909592e-05	1.49548888223e-05	3.2901978631e-06
+UniRef50_Q8DWB5		0.00143028371616	0.00131251868976	-0.0001177650264
+UniRef50_Q034T8	Holo [acyl carrier protein] synthase	0.00162028611099	0.00131908384106	-0.00030120226993
+UniRef50_P18357	Regulatory protein BlaR1	0.120613343904	0.0336519397722	-0.0869614041318
+UniRef50_UPI00036C8B47	hypothetical protein	0.00035369758798	5.27292956816e-05	-0.000300968292298
+UniRef50_K4R1X2		0.000239055457073	0.00035610077652	0.000117045319447
+UniRef50_A4EPP0		0.0010486141029	0.000334125226082	-0.000714488876818
+UniRef50_UPI000379B93E	quinone oxidoreductase	7.4048007735e-05	1.62958241127e-05	-5.77521836223e-05
+UniRef50_A0A059FRG3	MFS permease	4.69824456e-06	7.69767855986e-06	2.99943399986e-06
+UniRef50_B6IW38		0.000196954482659	9.07483171773e-05	-0.000106206165482
+UniRef50_U5MV68	SCP like extracellular	0.000119710144452	0.00151120330616	0.00139149316171
+UniRef50_UPI00046EA5E6	hypothetical protein, partial	2.5254474021e-05	1.91844416248e-05	-6.0700323962e-06
+UniRef50_S0EYL5	Sugar phosphate isomerases epimerases	0.000257077607856	0.000934112148509	0.000677034540653
+UniRef50_D6U9R9	Export membrane protein SecF	0.0185926367663	0.00498651446252	-0.0136061223038
+UniRef50_UPI0003F09E85	PREDICTED	3.94443038656e-05	3.01677049929e-05	-9.2765988727e-06
+UniRef50_M4X5B0		0.000396783876871	0.000281701149624	-0.000115082727247
+UniRef50_U5MX08	Phosphoglycerate mutase	0.000185953689091	0.00288193643771	0.00269598274862
+UniRef50_UPI000255BA65	potassium transporter	1.49911007733e-05	1.67742378661e-05	1.7831370928e-06
+UniRef50_UPI000225F75F	hypothetical protein	0.00023613386411	7.87565811337e-05	-0.000157377282976
+UniRef50_A7A485		0.000147258840698	0.000518798445402	0.000371539604704
+UniRef50_UPI00046F4E68	ribonucleoside diphosphate reductase, partial	3.55374393803e-05	1.49177660064e-05	-2.06196733739e-05
+UniRef50_K0T2W7		8.05763126359e-05	9.97263701178e-05	1.91500574819e-05
+UniRef50_B0VRG1		0.000151804016961	0.0014830098215	0.00133120580454
+UniRef50_A6M0V4	Methyl accepting chemotaxis sensory transducer	0.000450896885334	0.00143051930482	0.000979622419486
+UniRef50_UPI0003B6BA2C	chemotaxis protein CheY	9.74131359043e-06	1.27829526296e-05	3.04163903917e-06
+UniRef50_R7GI74	Formate C acetyltransferase	0.00654164373098	0.00814634046772	0.00160469673674
+UniRef50_E7C3S2	Dehydrogenases 	3.57572490414e-05	0.000108810610168	7.30533611266e-05
+UniRef50_Q3AEU3	Uroporphyrinogen decarboxylase	1.57553417194e-05	3.35784016388e-05	1.78230599194e-05
+UniRef50_A4WPB6	Orotate phosphoribosyltransferase	0.0107579918925	0.00191864824567	-0.00883934364683
+UniRef50_Q5XCE8	Dihydrolipoamide dehydrogenase	0.00845873487721	0.00456029336268	-0.00389844151453
+UniRef50_A9UUK0	Predicted protein	7.56485825242e-06	8.83300214869e-05	8.07651632345e-05
+UniRef50_A3MIQ6	Phosphoglucosamine mutase	0.000942583166592	0.0117895012217	0.0108469180551
+UniRef50_Q3J3N9	Chemotaxis protein methyltransferase	0.0129078550555	0.00301574950863	-0.00989210554687
+UniRef50_J9Z0P1	X Pro dipeptidyl peptidase 	8.36724282894e-06	2.68206541528e-05	1.84534113239e-05
+UniRef50_Q7NK15	Glr1665 protein	0.00298971767865	0.0461228076745	0.0431330899958
+UniRef50_D3E1W6	tRNA guanylyltransferase ThgL	0.00473932000539	0.000494253899902	-0.00424506610549
+UniRef50_UPI000366C0D7	hypothetical protein	1.35030912641e-05	5.71257007449e-06	-7.79052118961e-06
+UniRef50_UPI000314B2B3	hypothetical protein	2.32571311341e-05	2.59970100207e-05	2.7398788866e-06
+UniRef50_B9TDV5		8.14132254934e-05	0.000127109055325	4.56958298316e-05
+UniRef50_A0A009F5X4	Pirin family protein	8.52632154369e-06	3.126515518e-05	2.27388336363e-05
+UniRef50_C4WAX5		1.76950919503e-06	1.95270862694e-05	1.77575770744e-05
+UniRef50_A6LTQ4	HAD superfamily hydrolase, subfamily IA, variant 3	0.00017132495712	0.00069687498683	0.00052555002971
+UniRef50_UPI0002DD18E5	hypothetical protein	2.23472838387e-05	3.17348135845e-05	9.3875297458e-06
+UniRef50_U1MU63		8.07254431151e-06	4.6296282207e-05	3.82237378955e-05
+UniRef50_UPI000237F107	hypothetical protein	0.000142797670471	0.000110028936377	-3.2768734094e-05
+UniRef50_F4DTR0		3.12957715226e-05	6.24227005909e-05	3.11269290683e-05
+UniRef50_E8SJR1		0.035392014305	0.00137727785043	-0.0340147364546
+UniRef50_B2IJH9	UDP N acetylglucosamine 1 carboxyvinyltransferase	1.10527348067e-05	7.10249786579e-05	5.99722438512e-05
+UniRef50_A1WJX6	TRAP dicarboxylate transporter, DctM subunit	0.00840680729705	0.00176307805325	-0.0066437292438
+UniRef50_UPI0004174C64	hypothetical protein	2.81446306652e-05	8.99288536133e-05	6.17842229481e-05
+UniRef50_M8YJZ4	Protein rarD	0.00071790856919	0.000531162024347	-0.000186746544843
+UniRef50_B1YGD3	Thymidylate kinase	9.0325744206e-06	1.42661934269e-05	5.2336190063e-06
+UniRef50_A6SYG4	ABC type multidrug transport system, ATPase component	0.00220162131832	0.000790192288099	-0.00141142903022
+UniRef50_UPI00036B3D28	hypothetical protein	1.98503350708e-05	3.51843861112e-05	1.53340510404e-05
+UniRef50_UPI000477DA5B	hypothetical protein	1.00729387197e-05	3.05747837619e-05	2.05018450422e-05
+UniRef50_UPI0004635914	hypothetical protein, partial	2.07317536624e-05	3.23748677672e-05	1.16431141048e-05
+UniRef50_UPI000360F81F	hypothetical protein	1.5185123517e-05	8.59359247798e-06	-6.59153103902e-06
+UniRef50_I1AFI7		2.34543991513e-05	2.24882600838e-05	-9.661390675e-07
+UniRef50_B7MFJ5	Phosphopantetheine adenylyltransferase	0.00131176139184	0.00644754944767	0.00513578805583
+UniRef50_UPI00037AFD46	hypothetical protein	6.54189755266e-05	1.29661441851e-05	-5.24528313415e-05
+UniRef50_Q9C0V7		0.000622351616997	0.000111021317735	-0.000511330299262
+UniRef50_D4DV01		6.08061200072e-05	9.42060557543e-05	3.33999357471e-05
+UniRef50_K0NAU6	Aspartate aminotransferase	0.0048565053391	0.0037227589574	-0.0011337463817
+UniRef50_K4NFJ8		0.000231586496233	0.00268657523081	0.00245498873458
+UniRef50_V6QFW8		0.0739194987939	0.0258283992391	-0.0480910995548
+UniRef50_UPI0004642118	tRNA 2 thiouridylase	4.3859031515e-06	1.00117372046e-05	5.6258340531e-06
+UniRef50_D6M1S6	Peptide ABC transporter, permease 	0.000457700434745	5.74972321476e-05	-0.000400203202597
+UniRef50_W8ZM57		7.13607219438e-05	4.67764911256e-06	-6.66830728312e-05
+UniRef50_UPI00037A84FF	XRE family transcriptional regulator	1.88763688208e-05	5.16613577508e-05	3.278498893e-05
+UniRef50_A3PI40	Flagellar motor switch protein FliG	0.00166908965294	0.000174399629052	-0.00149469002389
+UniRef50_UPI000027FA94	50S ribosomal protein L18	7.65640117502e-05	0.000235728166702	0.000159164154952
+UniRef50_P77357	p aminobenzoyl glutamate hydrolase subunit A	0.00197792310116	0.00050248755358	-0.00147543554758
+UniRef50_A0A011PVU6		0.000177231219462	4.38058181897e-05	-0.000133425401272
+UniRef50_X4ZFB4		0.00705121689328	0.00592714909642	-0.00112406779686
+UniRef50_B7V5T6	Cardiolipin synthase A	0.000120427769058	0.000722241353194	0.000601813584136
+UniRef50_R1FZF8		2.39815923878e-06	9.23439108903e-06	6.83623185025e-06
+UniRef50_A3ATB7		4.66104320255e-07	7.65585110073e-07	2.99480789818e-07
+UniRef50_R4Y9R8	Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.0077294752871	0.00485066919433	-0.00287880609277
+UniRef50_P0C0R2	HTH type transcriptional regulator SarS	0.0113330259086	0.00147585562656	-0.00985717028204
+UniRef50_A3M5V1	Porin for benzoate transport 	0.000212070780251	0.00832904083046	0.00811697005021
+UniRef50_UPI000376439F	hypothetical protein	0.000327130201036	2.03710650475e-05	-0.000306759135989
+UniRef50_A8AHA1	Vitamin B12 import ATP binding protein BtuD	0.00299849454437	0.000237202172853	-0.00276129237152
+UniRef50_A7X2A9	Peptide methionine sulfoxide reductase MsrB	0.00552539110143	6.93626983989e-05	-0.00545602840303
+UniRef50_G0DUV4		0.000322637597309	0.00261280952324	0.00229017192593
+UniRef50_X5PRY3		0.000195708085028	9.82495680869e-05	-9.74585169411e-05
+UniRef50_G5RW92	Putative two component response regulator and GGDEF family protein YeaJ 	1.22410701972e-06	4.50862218066e-06	3.28451516094e-06
+UniRef50_P21880	Dihydrolipoyl dehydrogenase	0.0211868576991	0.00381327038302	-0.0173735873161
+UniRef50_E1IJ03		0.000290821435395	7.10389997931e-05	-0.000219782435602
+UniRef50_UPI0003A0EB32	3 ketoacyl CoA thiolase	3.71770127718e-06	9.43197350437e-06	5.71427222719e-06
+UniRef50_F5N2M6		5.58916685314e-05	6.62816605663e-05	1.03899920349e-05
+UniRef50_UPI00034B4804	DNA methyltransferase	0.000103074374295	0.000298264133943	0.000195189759648
+UniRef50_W8SRR9	MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr	0.00216016722841	0.00100489860424	-0.00115526862417
+UniRef50_Z2DE82	Biofilm formation protein PelB	7.38238569663e-06	9.1667092666e-06	1.78432356997e-06
+UniRef50_UPI0004658778	phosphoserine phosphatase	4.69875833353e-06	1.10074501252e-05	6.30869179167e-06
+UniRef50_Q8Y3B0	Peptide deformylase 1	0.00090855523862	0.0189631901863	0.0180546349477
+UniRef50_UPI0002E0BEDB	hypothetical protein	1.7760808452e-05	0.00015597211847	0.000138211310018
+UniRef50_M5Q4Y7		2.89246005691e-05	0.000109609907984	8.06853074149e-05
+UniRef50_P77425	Allantoate amidohydrolase	0.00376138962292	0.00113493120803	-0.00262645841489
+UniRef50_P54161	5 3 exonuclease	1.14458439327e-05	0.00230753040488	0.00229608456095
+UniRef50_B1HWM5		7.98241554919e-06	0.00398464379417	0.00397666137862
+UniRef50_Q9PII5	Diaminopimelate decarboxylase	1.14027009308e-05	0.000122933098996	0.000111530398065
+UniRef50_H8GZA7		0.000226447684417	0.0130842386823	0.0128577909979
+UniRef50_Q4QLY5	Glycine  tRNA ligase beta subunit	0.00382498002463	0.000756874595285	-0.00306810542934
+UniRef50_P52007	Protein YecM	0.00507305819682	0.000940831981157	-0.00413222621566
+UniRef50_UPI0003ADBF76	PREDICTED	0.000126588215871	3.17782038419e-05	-9.48100120291e-05
+UniRef50_C1D104		0.00018874299443	0.0384699961574	0.038281253163
+UniRef50_A0PTP8	Aminomethyltransferase	7.11464589601e-06	1.13745332077e-05	4.25988731169e-06
+UniRef50_UPI00037044B2	hypothetical protein	8.48581228785e-06	7.96061611544e-06	-5.2519617241e-07
+UniRef50_A3QF48	Adenylate kinase	9.04088315146e-06	3.00943215498e-05	2.10534383983e-05
+UniRef50_UPI000465597A	phosphate starvation inducible E	4.14509753184e-05	3.31811406148e-05	-8.2698347036e-06
+UniRef50_A4WT80	NADH quinone oxidoreductase subunit N	5.91907291573e-05	8.2773071598e-05	2.35823424407e-05
+UniRef50_I0ELD1		9.45290456222e-05	0.00067449100513	0.000579961959508
+UniRef50_UPI000395686C	30S ribosomal protein S15	0.000342145810872	0.000881804465431	0.000539658654559
+UniRef50_Q2KU87	Phosphoheptose isomerase	1.05189883984e-05	1.62116606768e-05	5.6926722784e-06
+UniRef50_B0VBV4		0.00018718313497	0.00558632761365	0.00539914447868
+UniRef50_Q9RTX1		9.58086266163e-05	0.0236445439968	0.0235487353702
+UniRef50_UPI0004648F0C	mechanosensitive ion channel protein MscL	0.000408186592693	9.56309713016e-05	-0.000312555621391
+UniRef50_A5W5N5	Fatty acid cistrans isomerase	0.00059177584712	0.00027358788728	-0.00031818795984
+UniRef50_P48591	Ribonucleoside diphosphate reductase large subunit	2.46591553521e-06	8.3125960094e-05	8.06600445588e-05
+UniRef50_D2ASS3		0.000791214937858	0.0257388377059	0.024947622768
+UniRef50_Q8CR16		0.010511605922	0.00441836764752	-0.00609323827448
+UniRef50_L0RET5		3.25170106831e-05	8.35133745445e-05	5.09963638614e-05
+UniRef50_A1U1J0		6.99467051318e-06	9.23839939314e-06	2.24372887996e-06
+UniRef50_U3H8E5		7.29893643187e-07	6.00374000749e-07	-1.29519642438e-07
+UniRef50_K7S6P7	DEAD DEAH box helicase	7.85338395664e-05	0.0288323371967	0.0287538033571
+UniRef50_Q8D1U5	Protein NrdI	2.07799648781e-05	6.39510001023e-05	4.31710352242e-05
+UniRef50_M9VHZ8		0.000228779387182	0.000847562781822	0.00061878339464
+UniRef50_UPI0002000914	non ribosomal peptide synthetase like protein	7.7798209129e-05	0.000138315656511	6.0517447382e-05
+UniRef50_UPI0003B35CAD	hypothetical protein	3.70378817718e-05	6.51042342623e-05	2.80663524905e-05
+UniRef50_B4SCX8	Phosphoribosyl AMP cyclohydrolase	1.38213868875e-05	6.16540771858e-05	4.78326902983e-05
+UniRef50_P37685	Aldehyde dehydrogenase B	0.00471161083383	0.008544838004	0.00383322717017
+UniRef50_A0R979	DNA topoisomerase 3	0.0134837050977	0.00602666265254	-0.00745704244516
+UniRef50_Q8RH06		0.000348280132548	0.000311430097992	-3.6850034556e-05
+UniRef50_O34514	o succinylbenzoate synthase	4.61700594718e-05	0.00227650642377	0.0022303363643
+UniRef50_UPI000382F305	hypothetical protein, partial	8.12819209331e-05	5.14264392006e-05	-2.98554817325e-05
+UniRef50_P64176	Macrolide export protein MacA	0.00251264096071	0.000636039558701	-0.00187660140201
+UniRef50_Q5ZZU2	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.58356009293e-05	1.39532238939e-05	-1.8823770354e-06
+UniRef50_UPI00036CA565	50S ribosomal protein L4	1.35508233708e-05	0.00015597597618	0.000142425152809
+UniRef50_B9ADD3		0.000488128433862	0.000613114266848	0.000124985832986
+UniRef50_UPI00037ABBDF	hypothetical protein	2.3662529626e-05	9.34364467829e-05	6.97739171569e-05
+UniRef50_A0QSU4		0.000264870866007	0.00551275732244	0.00524788645643
+UniRef50_UPI000369A760	hypothetical protein, partial	6.32086040011e-05	1.94475906743e-05	-4.37610133268e-05
+UniRef50_W4HGC6		5.45518734675e-06	1.21290005298e-05	6.67381318305e-06
+UniRef50_R5HWX2	Cys Met metabolism PLP dependent enzyme	0.000402431200716	0.00257612717393	0.00217369597321
+UniRef50_F2JHX4	ABC type transporter, periplasmic subunit	0.000111134245983	0.000650174786569	0.000539040540586
+UniRef50_Q1J2D3	Permease YjgP YjgQ	0.000107750520127	0.012544677399	0.0124369268789
+UniRef50_S9QS42		6.44134353292e-06	4.13556428956e-05	3.49142993627e-05
+UniRef50_B2V2J6	Sporulation protein YqfD	0.000100662930362	0.00202779999997	0.00192713706961
+UniRef50_Q9RW17		0.000562017339689	0.064927124305	0.0643651069653
+UniRef50_UPI0002489F97	hemolysin type calcium binding region, partial	5.471271286e-05	1.2017202591e-05	-4.2695510269e-05
+UniRef50_UPI00045EBAA8	surfeit 1	2.17623619606e-05	4.06264267287e-05	1.88640647681e-05
+UniRef50_U2Z2J1		1.41032048053e-06	1.17072917654e-06	-2.3959130399e-07
+UniRef50_A0RAR3		1.93211698514e-05	0.000131641919103	0.000112320749252
+UniRef50_UPI000367CE0F	hypothetical protein, partial	5.12754443347e-05	5.69996666334e-05	5.7242222987e-06
+UniRef50_G2L3N1		0.00212915152782	0.000373031627616	-0.0017561199002
+UniRef50_Q9ZJL8	ATP dependent Clp protease ATP binding subunit ClpX	8.49555863898e-05	0.00375746149196	0.00367250590557
+UniRef50_S9Z4U8		5.3143967059e-05	1.879604501e-05	-3.4347922049e-05
+UniRef50_A6LUE7		0.000883734169502	0.000990110784359	0.000106376614857
+UniRef50_W8SMD0	Flagellar protein FlaF	0.000101999844656	6.88660170806e-05	-3.31338275754e-05
+UniRef50_B9UQU3	PI 2a backbone protein	0.000249279997828	8.4255836002e-05	-0.000165024161826
+UniRef50_UPI000476AC5C	hypothetical protein	3.79524603294e-05	4.5218090573e-05	7.2656302436e-06
+UniRef50_Q5HQH1	Adapter protein MecA	0.0228932416539	0.00722435550387	-0.01566888615
+UniRef50_Q8XHL9	Glycine  tRNA ligase	0.000352098439873	0.00143030494717	0.0010782065073
+UniRef50_F6FZF8		0.00041918899485	0.000210439457392	-0.000208749537458
+UniRef50_Q30RX5	Chemotaxis response regulator protein glutamate methylesterase	9.73473575703e-05	1.09862442536e-05	-8.63611133167e-05
+UniRef50_Q9HUK1	DNA topoisomerase 4 subunit A	0.000577647555086	0.00521748489668	0.00463983734159
+UniRef50_Q6F9W4	LPS assembly protein LptD	0.000248487335777	0.00890409248528	0.0086556051495
+UniRef50_UPI000378F2FD	hypothetical protein	6.5307921523e-06	1.32152173655e-05	6.6844252132e-06
+UniRef50_A4WSI7		0.00416400641365	0.00133436256722	-0.00282964384643
+UniRef50_P9WNM4	Bifunctional enzyme CysN CysC	3.14446534612e-06	4.95579117036e-05	4.64134463575e-05
+UniRef50_P73450	Nitrate transport ATP binding protein NrtC	2.10282309429e-05	3.6045148364e-06	-1.74237161065e-05
+UniRef50_V9VLZ2	Cell wall shape determining protein	0.00918935409407	0.00268558176636	-0.00650377232771
+UniRef50_A0A024J9B5	Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit	3.35192986085e-05	4.99821955176e-05	1.64628969091e-05
+UniRef50_N6YLX8	Putative metal dependent RNase	8.45071246435e-05	3.75979763788e-05	-4.69091482647e-05
+UniRef50_G9WG62	ABC transporterpermease protein	0.0153078668516	0.00326741779454	-0.0120404490571
+UniRef50_R5LJ16	Putative phage terminase large subunit	1.65055381936e-05	1.1859735235e-05	-4.6458029586e-06
+UniRef50_B7IFM5	Ribose phosphate pyrophosphokinase	0.000112079917295	6.46640619433e-05	-4.74158553517e-05
+UniRef50_B9E484		0.00136315365789	0.000547579692773	-0.000815573965117
+UniRef50_UPI00034A1580	hypothetical protein	1.18303120535e-05	2.43131705021e-05	1.24828584486e-05
+UniRef50_H9KE53		1.43744657801e-05	1.01731281856e-05	-4.2013375945e-06
+UniRef50_P0A9K2	Protein PhoH	0.00217204459347	0.00047889195437	-0.0016931526391
+UniRef50_A4VGY1	Uroporphyrin III C methyltransferase, putative	0.000271809248739	0.000162858477137	-0.000108950771602
+UniRef50_C1C967	N anthranilate isomerase	0.00727905669673	0.00592385942309	-0.00135519727364
+UniRef50_UPI0003B66D36	hypothetical protein, partial	4.03255982831e-05	5.70835912348e-05	1.67579929517e-05
+UniRef50_N8TNI2		0.00162379728052	0.00835066260107	0.00672686532055
+UniRef50_Q6A9Q4	UDP N acetylmuramoylalanine  D glutamate ligase	0.000185201372824	0.00486060792734	0.00467540655452
+UniRef50_UPI00037E4DB6	hypothetical protein	2.18520034376e-05	2.09396069493e-05	-9.123964883e-07
+UniRef50_UPI0003607BC8	hypothetical protein	4.05066145205e-05	1.523891922e-05	-2.52676953005e-05
+UniRef50_B9KSY4		0.00805241181623	0.00114932886837	-0.00690308294786
+UniRef50_UPI0003B3F32A	molecular chaperone DnaK	1.40668500281e-05	2.79341150532e-06	-1.12734385228e-05
+UniRef50_E8SJW5	Membrane protein, putative	0.0113906752525	0.00194342040142	-0.00944725485108
+UniRef50_A9D6B9		1.51666587333e-05	1.93203151693e-05	4.153656436e-06
+UniRef50_UPI00035DC5BA	MULTISPECIES	5.27872907138e-06	9.04177534547e-06	3.76304627409e-06
+UniRef50_UPI0002630664	dTDP 4 dehydrorhamnose reductase	1.27817555832e-05	1.46852950704e-05	1.9035394872e-06
+UniRef50_E3EZ66		2.20428722519e-06	1.58423616913e-06	-6.2005105606e-07
+UniRef50_UPI000471B278	MFS transporter	9.27278795047e-06	7.750209519e-06	-1.52257843147e-06
+UniRef50_A8I9B9	Enoyl [acyl carrier protein] reductase [NADH]	0.00343762479255	0.000468756674913	-0.00296886811764
+UniRef50_B0SHV0		0.00444469687498	0.000422817535233	-0.00402187933975
+UniRef50_A1B214	Cupin 2, conserved barrel domain protein	0.0145335169199	0.00215723238787	-0.012376284532
+UniRef50_Q83MD7	Vitamin B12 binding protein	0.0018578542311	0.000568565053978	-0.00128928917712
+UniRef50_UPI0003C7EBB2	aminodeoxychorismate synthase	4.48722221794e-06	5.9761584313e-06	1.48893621336e-06
+UniRef50_A1TT41	Non canonical purine NTP pyrophosphatase	9.65486505716e-05	1.52117039665e-05	-8.13369466051e-05
+UniRef50_R4ZCR7	MFS transporter	0.000110483704055	0.000142321303707	3.1837599652e-05
+UniRef50_F8FR25		0.0229717920433	0.0057390990122	-0.0172326930311
+UniRef50_UPI00037A465E	hypothetical protein	3.29121339423e-06	5.61358938868e-06	2.32237599445e-06
+UniRef50_I0C665	RsbU	0.0224370329922	0.005916366424	-0.0165206665682
+UniRef50_D6B3Y8	FscRII 	0.000279982231076	0.000578992362705	0.000299010131629
+UniRef50_UPI000237CE2F	malto oligosyltrehalose synthase	2.68636393645e-06	0.000125425331759	0.000122738967823
+UniRef50_D9SLZ7	Methyltransferase type 11	0.000193914035367	0.000798082328577	0.00060416829321
+UniRef50_A5IP44	Acyl CoA dehydrogenase like protein	0.00644614401885	0.00227368634027	-0.00417245767858
+UniRef50_G8VEA6		0.000109039659282	0.00452995645857	0.00442091679929
+UniRef50_B2S968	Shikimate dehydrogenase	4.83467752864e-05	3.29684136972e-05	-1.53783615892e-05
+UniRef50_Q985A5	GTPase Era	0.00354482028004	0.000598830737824	-0.00294598954222
+UniRef50_P0AEP8	Glyoxylate carboligase	0.00226201967424	0.00183034898026	-0.00043167069398
+UniRef50_UPI000362A221	50S ribosomal protein L20	1.22305691523e-05	3.53719256442e-05	2.31413564919e-05
+UniRef50_Q9KDS9	Biotin carboxylase	0.000638164224375	6.48661460837e-06	-0.000631677609767
+UniRef50_V5XTD8	Periplasmic ribose binding protein	0.000991023531941	0.00273121725073	0.00174019371879
+UniRef50_Y2QRV2		0.0397186898838	0.00656567195954	-0.0331530179243
+UniRef50_Q8CT45		0.00305297248179	8.5042492089e-05	-0.0029679299897
+UniRef50_A5GF42	Dihydroorotase	4.18782441897e-06	1.58033532722e-05	1.16155288532e-05
+UniRef50_B0REY1	3 isopropylmalate dehydratase small subunit	1.16054085059e-05	0.00227488793147	0.00226328252296
+UniRef50_F3H6D0	Acriflavin resistance protein 	0.000767357747733	0.000201226434568	-0.000566131313165
+UniRef50_M1N4V8	Signal transduction histidine kinase	0.000100484291618	0.000330894831765	0.000230410540147
+UniRef50_Q2YVN2		0.00292164706521	0.000436428628368	-0.00248521843684
+UniRef50_Q46836	Leader peptidase PppA	0.00365865134071	0.00108797187089	-0.00257067946982
+UniRef50_S9RYR7	Putative signal transduction protein	0.000244991505619	0.000191662965974	-5.3328539645e-05
+UniRef50_UPI0003706081	hypothetical protein	3.56502111641e-05	0.0041149957771	0.00407934556594
+UniRef50_UPI000289FF7D	transporter	0.00017741493035	6.47335387361e-05	-0.000112681391614
+UniRef50_UPI000371D807	hypothetical protein	2.78606246914e-05	0.000141544340624	0.000113683715933
+UniRef50_Q73CC7		3.35429500157e-05	0.00052032740856	0.000486784458544
+UniRef50_M4MLZ6		0.000208734789344	8.78336770246e-05	-0.000120901112319
+UniRef50_Q8CM57	Degenerate transposase 	0.000291087113737	3.08122633281e-05	-0.000260274850409
+UniRef50_UPI000363DABC	hypothetical protein	0.000367877302268	6.2726447897e-05	-0.000305150854371
+UniRef50_UPI0003793433	hypothetical protein	1.80434264629e-05	3.09630487953e-06	-1.49471215834e-05
+UniRef50_X6KX92		0.00273404061406	0.00052376873415	-0.00221027187991
+UniRef50_A8LNJ7		0.00018814459526	7.12891990516e-05	-0.000116855396208
+UniRef50_UPI0003663A62	30S ribosomal protein S17	8.88165428637e-05	0.000288268292986	0.000199451750122
+UniRef50_Q5HKF0	ATP dependent dethiobiotin synthetase BioD	0.00959930863855	0.00565770607504	-0.00394160256351
+UniRef50_C4RLU4	Feruloyl esterase 	0.000547216181878	0.000142968129508	-0.00040424805237
+UniRef50_A6M1U5	Methyl accepting chemotaxis sensory transducer	0.000478830310969	0.00137857108573	0.000899740774761
+UniRef50_Q72KS4	Lon protease 1	6.25254696945e-06	0.000106588458217	0.000100335911248
+UniRef50_P37093	Type II secretion system protein E	0.00367903452528	0.0116904005164	0.00801136599112
+UniRef50_Q897T7	Transcriptional regulatory protein	0.000134656119687	0.000225146153897	9.049003421e-05
+UniRef50_Q8Y5E4	Diadenylate cyclase	0.0218916624843	0.0120185736106	-0.0098730888737
+UniRef50_V5SSA5		0.00100901552059	0.000153677383443	-0.000855338137147
+UniRef50_Q9KNV7	Tryptophan  tRNA ligase	0.00737278118224	0.00516879867676	-0.00220398250548
+UniRef50_A7G9R9		4.2589427e-05	2.26525643877e-05	-1.99368626123e-05
+UniRef50_P76445	Inner membrane protein YeiU	0.00493739621862	0.00143003707713	-0.00350735914149
+UniRef50_Q03RR1	Bifunctional protein FolD	5.50890689464e-06	3.16153426798e-06	-2.34737262666e-06
+UniRef50_Q8CQA9	Integral membrane protein LmrP	0.0205803565841	0.00522429252534	-0.0153560640588
+UniRef50_A0A022FNV0	LysR family transcriptional regulator	5.75000007597e-05	1.42048841905e-05	-4.32951165692e-05
+UniRef50_F8LV80	IS861, transposase OrfB	0.000256344357143	3.8387094787e-05	-0.000217957262356
+UniRef50_B9E9D4	Respiratory nitrate reductase delta chain	0.00945605383046	0.0040477736899	-0.00540828014056
+UniRef50_M9VLK0	Endonuclease III	0.000640301204992	0.00543209645913	0.00479179525414
+UniRef50_Q5WAN2	GntR family transcriptional regulator	0.00060586971003	0.00376152569634	0.00315565598631
+UniRef50_I0C1S4	Carboxylesterase	0.0257218159013	0.00771209194544	-0.0180097239559
+UniRef50_Q161I1		0.000166116858309	5.78718497574e-05	-0.000108245008552
+UniRef50_H8GVV6	Glutathione regulated potassium efflux system protein KefB, putative	6.56878170843e-05	0.00904746496659	0.00898177714951
+UniRef50_C7ZXI9	Mn2 and Fe2 transporter	0.0191542607107	0.00358632559457	-0.0155679351161
+UniRef50_Q9RUS5	Major facilitator family protein	9.10335985978e-05	0.0141888842712	0.0140978506726
+UniRef50_B7JGF8	Enterotoxin	1.67205367541e-05	0.000745041891486	0.000728321354732
+UniRef50_D5T2X9		0.000148228383511	5.20222868998e-05	-9.62060966112e-05
+UniRef50_UPI0004413622	P loop containing nucleoside triphosphate hydrolase protein	1.37844864014e-06	4.78025689588e-07	-9.00422950552e-07
+UniRef50_Q7CQY4	Chitoporin	0.00140175613114	0.000203901062277	-0.00119785506886
+UniRef50_O31645	PTS system mannose specific EIIBCA component	0.0103999745738	0.00432243540091	-0.00607753917289
+UniRef50_M2PRH7	DNA topology modulation protein	1.56254310224e-05	0.000356356982486	0.000340731551464
+UniRef50_UPI0004680367	hemolysin	7.31133660879e-06	1.27029921056e-05	5.39165549681e-06
+UniRef50_M2JNM4	Cellobiose phosphotransferase system IIC component	9.98640182185e-05	0.00116678526318	0.00106692124496
+UniRef50_A6LW23	L asparaginase, type II	0.000816905567068	0.000575803175682	-0.000241102391386
+UniRef50_Q2YUT2		0.0104591965444	0.00156914325686	-0.00889005328754
+UniRef50_UPI0003697307	ATP dependent Clp protease adaptor protein ClpS	0.000618276708037	0.000458068884413	-0.000160207823624
+UniRef50_D3FAE3	Plectin	0.000182502582427	0.000175958702661	-6.543879766e-06
+UniRef50_UPI000466A47B	peptide ABC transporter ATP binding protein	1.04013050199e-05	3.92156841864e-05	2.88143791665e-05
+UniRef50_UPI00047933C3	peptide permease BMEII0860	1.51697761182e-05	5.41008384753e-05	3.89310623571e-05
+UniRef50_A1WIM3	Urease subunit alpha	0.0287686207112	0.0472948285247	0.0185262078135
+UniRef50_UPI000476A297	nitrogen regulatory protein	1.61537033214e-05	2.30484413805e-05	6.8947380591e-06
+UniRef50_D8JEK3		0.000144815596745	0.00760531777493	0.00746050217818
+UniRef50_P31133	Putrescine binding periplasmic protein	0.00199631077004	0.000342219856026	-0.00165409091401
+UniRef50_V8G5F1	Cell wall binding protein	0.000810775824679	0.00145335553833	0.000642579713651
+UniRef50_UPI0003B2E824	4 alpha glucanotransferase	8.4055187984e-06	0.000463652596055	0.000455247077257
+UniRef50_B2TBH4	Major facilitator superfamily MFS_1	0.000835113341018	0.00104840558383	0.000213292242812
+UniRef50_M1E1G1	LOV protein	0.000568373790029	0.000396398262003	-0.000171975528026
+UniRef50_UPI00047D2208	hypothetical protein	0.00113242911979	0.000281160496261	-0.000851268623529
+UniRef50_U4PPL6		0.0150330978336	0.00227362625767	-0.0127594715759
+UniRef50_B0V7I3		0.00128516843625	0.00628685166454	0.00500168322829
+UniRef50_UPI0003616A07	MULTISPECIES	0.000140459180816	4.60301497026e-05	-9.44290311134e-05
+UniRef50_P52612	Flagellum specific ATP synthase	0.00360782999344	0.000484137381696	-0.00312369261174
+UniRef50_Q7WQL9	Glutamate 5 kinase	0.000265089036265	0.00831752583732	0.00805243680106
+UniRef50_I7BYL0		8.19357388814e-06	0.000908091754472	0.000899898180584
+UniRef50_A7HIP1	LigA	0.000491029858384	0.000577620184029	8.6590325645e-05
+UniRef50_E2XUR6	Amino acid ABC transporter, permease protein	0.000838445631845	0.00539986048301	0.00456141485117
+UniRef50_Q9RRW1	Ribonucleoside diphosphate reductase	0.000190794174278	0.0301075807813	0.029916786607
+UniRef50_UPI0003671810	hypothetical protein	2.43934375552e-05	2.78321809817e-05	3.4387434265e-06
+UniRef50_M1LPJ1	Transcriptional regulator, RpiR family	0.00034933983881	0.000454333392607	0.000104993553797
+UniRef50_Q2RV04	GTPase Obg	0.00409545719957	0.00060408242017	-0.0034913747794
+UniRef50_UPI0002887BFA	HAD superfamily hydrolase	6.63866576088e-05	0.000182443965008	0.000116057307399
+UniRef50_Q8FCW0	Phosphoglycolate phosphatase	0.00212946742435	0.00174204522803	-0.00038742219632
+UniRef50_B9KNX2	Transcriptional regulator, ArsR family	0.00125481069959	0.000492194508663	-0.000762616190927
+UniRef50_UPI00047A420C	hypothetical protein	1.38019373523e-05	9.63401699748e-06	-4.16792035482e-06
+UniRef50_B1KX53	Putative ribosome biogenesis GTPase RsgA	0.000189058091245	0.00167472460783	0.00148566651658
+UniRef50_UPI00035FFD13	hypothetical protein	0.000163237315015	4.13073941763e-05	-0.000121929920839
+UniRef50_D6SI32		0.000390849669984	1.62694473932e-05	-0.000374580222591
+UniRef50_R7PWI6		0.00376933097395	0.000253829154983	-0.00351550181897
+UniRef50_UPI00040A8670	beta hexosaminidase	6.14562275701e-06	2.63722155292e-05	2.02265927722e-05
+UniRef50_A3ZZL8		8.50043046296e-06	3.64219781734e-05	2.79215477104e-05
+UniRef50_UPI0004764961	molecular chaperone GroEL	2.92488264445e-05	9.06408376429e-06	-2.01847426802e-05
+UniRef50_Q88ND5	Alginate biosynthesis protein AlgA	2.5468799188e-05	2.93741622563e-05	3.9053630683e-06
+UniRef50_UPI000472B134	3 oxoacyl ACP reductase	1.11663287663e-05	1.34790609291e-05	2.3127321628e-06
+UniRef50_D7FE80	Sialic acid binding adhesin SabA	7.64657641136e-05	0.0028184570463	0.00274199128219
+UniRef50_P07102	Periplasmic AppA protein	0.00514775097718	0.00058609691446	-0.00456165406272
+UniRef50_K9BV07		0.00021679158317	0.0119538457782	0.011737054195
+UniRef50_A6TE36	Undecaprenyl diphosphatase	0.00518134590673	1.63013729954e-05	-0.00516504453373
+UniRef50_UPI000288E151	ABC transporter	7.5515023376e-06	2.33972408802e-05	1.58457385426e-05
+UniRef50_R8AGJ1		0.00406232114679	8.64420507871e-05	-0.003975879096
+UniRef50_Q9HQU4	Inosine 5 monophosphate dehydrogenase	0.00256934046596	0.000833345775886	-0.00173599469007
+UniRef50_UPI0001758483	PREDICTED	1.5605983435e-06	1.6052811522e-06	4.46828087e-08
+UniRef50_P75843		0.00250472618045	0.000499894598512	-0.00200483158194
+UniRef50_UPI00047BEFD1	nucleotidyl transferase	3.16491338201e-05	5.29431667504e-06	-2.63548171451e-05
+UniRef50_H2HGS8	Phage associated protein	4.11908735051e-05	5.38977115361e-05	1.2706838031e-05
+UniRef50_M9SEQ2		0.000256690416185	0.000287646141427	3.0955725242e-05
+UniRef50_P75849		0.0022881093597	0.0160981301435	0.0138100207838
+UniRef50_M4X4D0	ATP dependent RNA helicase RhlE	7.53966688803e-05	0.00019589980848	0.0001205031396
+UniRef50_K9SGS9	ATPase associated with various cellular activities AAA_5	0.000306826554659	0.00129169752968	0.000984870975021
+UniRef50_Q83BB6	RNA polymerase sigma factor RpoD	0.00317366191555	0.000523293986209	-0.00265036792934
+UniRef50_H7CRL6		0.000832851368604	0.003942881016	0.0031100296474
+UniRef50_H7E757	RHS repeat associated core domain protein	0.000891874136272	0.000229393947457	-0.000662480188815
+UniRef50_B5ZPH5		0.000211331379804	2.7464720449e-05	-0.000183866659355
+UniRef50_W5XAZ0	OmpR family two component response regulator	1.46083727988e-05	2.9775817522e-05	1.51674447232e-05
+UniRef50_J0WVH5		2.37034264883e-05	1.48433152947e-05	-8.8601111936e-06
+UniRef50_C0DVM5		4.44723547594e-05	2.70130320718e-05	-1.74593226876e-05
+UniRef50_P37545		0.026878234352	0.0064674087178	-0.0204108256342
+UniRef50_UPI00040973E2	hypothetical protein	1.26498779992e-05	1.18028896456e-05	-8.469883536e-07
+UniRef50_Q161C9		0.00108362703757	0.00118117786705	9.755082948e-05
+UniRef50_S7VZD9	Excinuclease ABC	4.52867357689e-06	7.64508874705e-05	7.19222138936e-05
+UniRef50_G8SMI0		0.000243986431371	6.37939377317e-05	-0.000180192493639
+UniRef50_A0QP90	Glucose 6 phosphate 1 dehydrogenase	0.0100977095399	0.00304653127692	-0.00705117826298
+UniRef50_Q5HJ36		0.00270637297849	0.000904030730184	-0.00180234224831
+UniRef50_T0V0U2	Cell division initiation protein DivIVA	0.00718417671992	0.00224228769949	-0.00494188902043
+UniRef50_UPI000289A6DA	transposase	6.0957187001e-05	0.00015156308984	9.0605902839e-05
+UniRef50_C5CWI4	ABC transporter related	0.00142868891815	0.00606903668809	0.00464034776994
+UniRef50_A7GTX6	Pseudouridine synthase	0.00729480451685	0.00175269365183	-0.00554211086502
+UniRef50_Q89AP7	Acetolactate synthase large subunit	0.00108658124755	0.0118663381865	0.010779756939
+UniRef50_UPI0003EE9416	peptide ABC transporter permease, partial	2.8923432937e-05	0.000259579795167	0.00023065636223
+UniRef50_L7WXH7		0.0044028690051	0.00167160399168	-0.00273126501342
+UniRef50_Q2T6U3	Acetyltransferase, GNAT family	0.00237930456555	0.00319361492506	0.00081431035951
+UniRef50_F9YYI3	Myo inositol 2 dehydrogenase	0.000116388280223	0.00389773480368	0.00378134652346
+UniRef50_UPI0001FFEA7A	ferredoxin	2.41194998913e-05	0.000191653349854	0.000167533849963
+UniRef50_A5UJI4	Predicted type I restriction modification enzyme, subunit S	0.000467957837425	0.00140130584148	0.000933348004055
+UniRef50_Q2RN88	Shikimate dehydrogenase	5.56668886371e-05	4.67665148312e-05	-8.9003738059e-06
+UniRef50_UPI00017449C1	permease YjgP YjgQ family protein	0.000134816424593	0.000210940503716	7.6124079123e-05
+UniRef50_UPI0003B4DD27	hypothetical protein	1.68808845918e-05	2.26102359946e-05	5.7293514028e-06
+UniRef50_V7Z055		0.000125704848161	0.000144820213097	1.9115364936e-05
+UniRef50_E6S2L0	Transporter, major facilitator family protein	0.000157285828689	0.00442479496948	0.00426750914079
+UniRef50_UPI00046F82BE	thioredoxin reductase, partial	9.36163414185e-05	0.000131847423028	3.82310816095e-05
+UniRef50_R5BF46	ATPase	4.671178724e-06	0.00296508276916	0.00296041159044
+UniRef50_P0A9L8	Pyrroline 5 carboxylate reductase	0.00227466506142	0.00316821157666	0.00089354651524
+UniRef50_A4XQZ9		0.000389196050501	9.55701308745e-05	-0.000293625919627
+UniRef50_M0HKI8		0.000169038771396	0.000105433118773	-6.3605652623e-05
+UniRef50_A9VYY8		0.0132358777563	0.00167601267052	-0.0115598650858
+UniRef50_UPI0003490FD2	hypothetical protein	0.00033353456421	0.000185056727014	-0.000148477837196
+UniRef50_F3LQG5		0.000672271536642	0.000490831088969	-0.000181440447673
+UniRef50_A5CX20	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.99971583594e-05	1.09236639091e-05	-9.0734944503e-06
+UniRef50_UPI0002194206	amino acid transporter, partial	5.30347412955e-05	9.49391575034e-05	4.19044162079e-05
+UniRef50_M9REM3		0.00018294959072	0.0140868512624	0.0139039016717
+UniRef50_UPI00037A4658	hypothetical protein	9.0978894321e-06	1.74109207959e-05	8.3130313638e-06
+UniRef50_Q5HM80		0.01259695944	0.000876320340766	-0.0117206390992
+UniRef50_UPI000464EDC8	hypothetical protein	4.15322467193e-05	6.74947754923e-06	-3.47827691701e-05
+UniRef50_UPI000479E693	ribonuclease	1.25103696981e-05	7.10842663511e-06	-5.40194306299e-06
+UniRef50_UPI00037CFC12	hypothetical protein	9.28493446813e-06	6.4782728919e-06	-2.80666157623e-06
+UniRef50_UPI00037AC159	hypothetical protein	0.00017501462148	0.000103454507633	-7.1560113847e-05
+UniRef50_D3QFC7		0.00403537440522	0.0110977386727	0.00706236426748
+UniRef50_Q49YE7		0.00720175833756	0.000697046555765	-0.0065047117818
+UniRef50_UPI000441CD41	PREDICTED	3.35893330819e-05	3.59038039356e-05	2.3144708537e-06
+UniRef50_W7VM91	Transcriptional regulator, LuxR family	0.000101119463521	0.000160607955043	5.9488491522e-05
+UniRef50_UPI0003B30FE2	DNA mismatch repair protein MutS	2.02197411948e-06	5.39539539351e-05	5.19319798156e-05
+UniRef50_Q3J221	Putative head portal protein	0.0120036240914	0.00334527746578	-0.00865834662562
+UniRef50_K9ZYD1	NADH dehydrogenase, FAD containing subunit	0.000105639735687	0.0411445664379	0.0410389267022
+UniRef50_I0DPX6		3.64367227341e-06	1.14576477496e-05	7.81397547619e-06
+UniRef50_E2PCU1	FimV domain protein	5.3977977438e-05	0.00143978941099	0.00138581143355
+UniRef50_X1C061	Marine sediment metagenome DNA, contig	1.83890501541e-05	3.81191636444e-05	1.97301134903e-05
+UniRef50_S4XSY7		1.32534925002e-05	0.000194230758481	0.000180977265981
+UniRef50_UPI00035E4DB7	hypothetical protein	4.62902798619e-05	1.22885114361e-05	-3.40017684258e-05
+UniRef50_P0C0G1	Dihydropteroate synthase	0.00270517267294	0.00438399903562	0.00167882636268
+UniRef50_T8S6T3		0.00135019294347	0.000457855356899	-0.000892337586571
+UniRef50_Q8G3N6	Inosine 5 monophosphate dehydrogenase	0.000206529276029	0.00791797129841	0.00771144202238
+UniRef50_E4R955	Peptidase C26	0.00129535878096	0.00148122032997	0.00018586154901
+UniRef50_C5BCZ7	Adenine phosphoribosyltransferase	3.80965449382e-05	5.42123738361e-05	1.61158288979e-05
+UniRef50_Q9HTU7	UPF0178 protein PA5247	0.000471366989714	0.00103017455301	0.000558807563296
+UniRef50_P50466	Aerotaxis receptor	0.00260915513211	0.000400950713092	-0.00220820441902
+UniRef50_Q55F83	Enolase B	4.33153144371e-06	3.99357440055e-05	3.56042125618e-05
+UniRef50_P42064	Oligopeptide transport ATP binding protein AppD	1.90622272107e-05	0.0256275899957	0.0256085277685
+UniRef50_P44681	Ribosome binding ATPase YchF	0.0232535153528	0.011621729977	-0.0116317853758
+UniRef50_UPI000468F00D	PEP synthetase regulatory protein	1.78353928699e-05	1.29245063724e-05	-4.9108864975e-06
+UniRef50_UPI00046E1553	PREDICTED	9.36920863679e-05	0.000122160061309	2.84679749411e-05
+UniRef50_B3W746	PTS system, IID component	0.00809427137532	0.00413135976654	-0.00396291160878
+UniRef50_Q92HL2	Transcription termination factor Rho	0.0027179094229	0.00138619795747	-0.00133171146543
+UniRef50_UPI0002DB231A	peptide ABC transporter ATP binding protein	5.45746799592e-05	0.000106018118421	5.14434384618e-05
+UniRef50_E8Q9V7	ABC transporter permease	0.000291957199651	0.000660935098783	0.000368977899132
+UniRef50_O88958	Glucosamine 6 phosphate isomerase 1	1.05649075872e-05	9.73035413219e-06	-8.3455345501e-07
+UniRef50_F2JYD9	Phenylalanine racemase 	0.000221941723168	0.00442104988728	0.00419910816411
+UniRef50_P77324	Putative xanthine dehydrogenase YagS FAD binding subunit	0.00240827880373	0.0165337041163	0.0141254253126
+UniRef50_UPI0001744E5F	methionine aminopeptidase	3.31219439428e-05	2.31237536079e-05	-9.9981903349e-06
+UniRef50_Q4ZNV9	Histidinol dehydrogenase	0.001162133287	0.012368122376	0.011205989089
+UniRef50_S4XFR3		0.00026925980265	0.00538242793412	0.00511316813147
+UniRef50_A1V623		0.000323554565342	0.000144618331822	-0.00017893623352
+UniRef50_D4HFA9		0.000241462252992	0.00614235102362	0.00590088877063
+UniRef50_U5L575	Oxidoreductase	0.00743618489624	0.00296904898176	-0.00446713591448
+UniRef50_D6AVU9	Ribosome associated heat shock protein	0.000287636788424	0.000552453054395	0.000264816265971
+UniRef50_O80448	Pyridoxal biosynthesis protein PDX1.1	0.0333515319106	0.00804014973239	-0.0253113821782
+UniRef50_Q58952	tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase	0.00252705657621	0.000292392777421	-0.00223466379879
+UniRef50_G0HAL8	Glycerol dehydrogenase	0.00511591409501	0.00139682788584	-0.00371908620917
+UniRef50_A5CSL0	LexA repressor	8.28552593836e-05	1.80794282587e-05	-6.47758311249e-05
+UniRef50_T8JJU2	ATP dependent helicase	0.00210323039841	0.000276068164607	-0.0018271622338
+UniRef50_A5UM96		0.0128754910926	0.00109330429036	-0.0117821868022
+UniRef50_P0A533	Cobyric acid synthase	7.76720141624e-05	0.00430301992896	0.0042253479148
+UniRef50_I1F524		8.65901428226e-06	0.000309363273491	0.000300704259209
+UniRef50_UPI000363B4C5	hypothetical protein	8.03517566738e-06	2.90491680591e-05	2.10139923917e-05
+UniRef50_Q3IVV1	Periplasmic sensor signal transduction histidine kinase	0.00549910638905	0.000165135156678	-0.00533397123237
+UniRef50_S5YP26	Adenylate cyclase 	0.000236015896168	0.000440942779127	0.000204926882959
+UniRef50_Q6FF55	Putative Holliday junction resolvase	2.33482089301e-05	0.0075905284963	0.00756718028737
+UniRef50_Q9RQQ0	Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR	0.0126941061623	0.00286176555315	-0.00983234060915
+UniRef50_H4NAZ8		0.000899621515052	0.000192853845235	-0.000706767669817
+UniRef50_P27375	Heat shock protein C	0.00408378587983	0.0033331835299	-0.00075060234993
+UniRef50_K5NMC7	Chaperone usher secretion system usher protein	0.000207536441043	0.00234638341635	0.00213884697531
+UniRef50_UPI00037905B5	hypothetical protein	7.97833275511e-06	0.000147458699481	0.000139480366726
+UniRef50_G8VR36	Anchored repeat type ABC transporter, permease subunit	0.000346709752644	0.00492619480047	0.00457948504783
+UniRef50_D2N5X4	Transcription factor	0.00794938010802	0.00298454288961	-0.00496483721841
+UniRef50_P77174		0.00151442148193	0.00142496794622	-8.945353571e-05
+UniRef50_A9B437	DNA directed RNA polymerase subunit alpha	1.52074500618e-05	7.37153268068e-06	-7.83591738112e-06
+UniRef50_P77171		0.00249486460735	0.000309772767695	-0.00218509183966
+UniRef50_U8XP57	Chemotactic transducer PctC	0.000259402037921	0.000306543118269	4.7141080348e-05
+UniRef50_P57874	Ferrochelatase	0.00759836359763	0.00336068047145	-0.00423768312618
+UniRef50_E1I5H5		0.000488128433862	0.000649047703726	0.000160919269864
+UniRef50_UPI000376F990	hypothetical protein	5.18707273652e-06	2.85377668922e-05	2.33506941557e-05
+UniRef50_R7GG89	Single strand binding protein Primosomal replication protein n	0.000630043773094	0.00184187969737	0.00121183592428
+UniRef50_Q5HLD6		0.000678118542849	0.00107387892798	0.000395760385131
+UniRef50_P61544	UPF0316 protein SA1727	0.019160748111	0.00225458274305	-0.0169061653679
+UniRef50_A6Q235	3 dehydroquinate dehydratase	0.0249522250532	0.00656317858161	-0.0183890464716
+UniRef50_UPI00047D7B73	hypothetical protein	1.76175231887e-05	1.53180141885e-05	-2.2995090002e-06
+UniRef50_Q03KQ7	tRNA and rRNA cytosine C5 methylase	0.00242895725793	0.00242268091399	-6.27634394e-06
+UniRef50_UPI00020D99AC	biotin biosynthesis protein BioC	1.73362401872e-05	0.000127198630162	0.000109862389975
+UniRef50_D3SFX6		0.00010446017013	2.69899371775e-05	-7.74702329525e-05
+UniRef50_S6CA35	Truncated bacteriocin ABC transporter ATP binding and permease components	0.00290223195251	0.000612163716228	-0.00229006823628
+UniRef50_A0A009WPV3	TonB dependent receptor family protein	0.000373304000053	0.00723296101974	0.00685965701969
+UniRef50_P77433		0.00185775633497	0.00116926576042	-0.00068849057455
+UniRef50_Q8CQR2		0.00536645704519	0.00104229425363	-0.00432416279156
+UniRef50_G9YY14		9.20947074204e-06	0.000152314126621	0.000143104655879
+UniRef50_UPI00035DA196	hypothetical protein	3.24693159248e-06	1.0167924221e-05	6.92099262852e-06
+UniRef50_B7V896		4.34889341953e-05	0.00027685941112	0.000233370476925
+UniRef50_P09622	Dihydrolipoyl dehydrogenase, mitochondrial	1.87073654482e-05	5.85826053817e-05	3.98752399335e-05
+UniRef50_S5XWD9		0.000522748633442	7.98638276788e-05	-0.000442884805763
+UniRef50_P0AA83	Cytosine permease	0.00360105503114	0.000504075776685	-0.00309697925446
+UniRef50_UPI000474B8BB	hypothetical protein	4.32116017962e-05	2.43669720732e-05	-1.8844629723e-05
+UniRef50_UPI000237A428	CBS domain containing protein	0.000110591598297	0.00301825634286	0.00290766474456
+UniRef50_UPI0003B401D2	phosphoglycerate kinase	1.86446654747e-05	1.85246539133e-05	-1.200115614e-07
+UniRef50_D4H9I9	RHS repeat associated core domain protein	0.000115060639321	0.00721047355517	0.00709541291585
+UniRef50_Q893R0	Thiamine phosphate synthase	0.00266956052078	0.00029000003783	-0.00237956048295
+UniRef50_Q9I484	Amino acid ABC transporter periplasmic binding protein	0.00126404873217	0.000444667668252	-0.000819381063918
+UniRef50_P33634		0.00270406881076	0.000772664195847	-0.00193140461491
+UniRef50_A1UT83	50S ribosomal protein L13	0.0149576815013	0.00240122229045	-0.0125564592108
+UniRef50_J9YSG0	Phage infection protein	0.000415711678886	7.22929510835e-05	-0.000343418727803
+UniRef50_UPI000465431D	hypothetical protein	8.60111666093e-05	2.0880125924e-05	-6.51310406853e-05
+UniRef50_F6G2W0	Threonine synthase protein	3.63690982897e-05	4.01390958874e-05	3.7699975977e-06
+UniRef50_B7N5W6	D serine dehydratase	0.0042151599935	0.00589012295654	0.00167496296304
+UniRef50_I6XTA1	UPF0225 protein HMPREF9154_3085	2.18595178398e-05	4.14520600316e-05	1.95925421918e-05
+UniRef50_UPI00046AD586	hypothetical protein	2.80778704674e-05	2.15250202293e-05	-6.5528502381e-06
+UniRef50_F8KSY3	ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 	5.17813427749e-05	0.00432168989448	0.00426990855171
+UniRef50_I6RX31		0.000529185965684	0.000671174329992	0.000141988364308
+UniRef50_V4R4A7	ThiF domain containing protein	6.16764425151e-06	8.76543612882e-06	2.59779187731e-06
+UniRef50_B7H056	Outer membrane protein oprM	0.000415892670639	0.0065208038143	0.00610491114366
+UniRef50_A8AL69		0.00032493052647	0.00022560683963	-9.932368684e-05
+UniRef50_G4QBM5		4.07985784691e-06	7.96242196527e-06	3.88256411836e-06
+UniRef50_Q3IV70	Polysaccharide export protein	0.00209053076279	0.000559525779014	-0.00153100498378
+UniRef50_E8ZN21	Histone acetyltransferase HPA2	0.000130317372447	0.0011365513536	0.00100623398115
+UniRef50_L5IBW3	Tat  pathway signal sequence	0.000236420737772	2.84067837922e-05	-0.00020801395398
+UniRef50_U3SVL6		0.00382102951589	0.00279612671275	-0.00102490280314
+UniRef50_UPI00042907AA	hypothetical protein	1.65408186985e-05	2.83116435584e-05	1.17708248599e-05
+UniRef50_A9E033		2.66113763799e-05	4.99995559935e-05	2.33881796136e-05
+UniRef50_Q47N93	Tyrosine  tRNA ligase	4.59070881346e-05	0.0011954144084	0.00114950732027
+UniRef50_K0CJC2		4.05378140546e-06	1.09983850836e-05	6.94460367814e-06
+UniRef50_V5AJL1	Competence protein ComM	8.43388398269e-06	4.57830610149e-05	3.73491770322e-05
+UniRef50_B8DJK7	Elongation factor P	1.21872224325e-05	0.000128158356373	0.00011597113394
+UniRef50_A1V9U1	Adenylosuccinate synthetase	0.000150809083773	0.00873929786154	0.00858848877777
+UniRef50_A6M360	Aminotransferase class III	0.000388150403275	0.001054727722	0.000666577318725
+UniRef50_Q55848	Ribose phosphate pyrophosphokinase	0.0240527528546	0.00729803973056	-0.016754713124
+UniRef50_UPI00046EC013	recombinase, partial	7.41869879029e-05	1.98443876556e-05	-5.43426002473e-05
+UniRef50_UPI000402DE31	hypothetical protein	2.04985903401e-05	2.62796293832e-05	5.7810390431e-06
+UniRef50_Q97GM6	Endonuclease MutS2	0.000448887423268	0.000809090988964	0.000360203565696
+UniRef50_A6LT80	Response regulator receiver protein	7.25005100276e-05	0.00186322677009	0.00179072626006
+UniRef50_P0ABI6	Magnesium transport protein CorA	0.00385483980292	0.00320266886493	-0.00065217093799
+UniRef50_P22033	Methylmalonyl CoA mutase, mitochondrial	0.000312623195002	0.00654261376453	0.00622999056953
+UniRef50_A5WFD7	Crossover junction endodeoxyribonuclease RuvC	0.00619797053389	0.00746793640847	0.00126996587458
+UniRef50_H5JT53	Gram negative pili assembly chaperone, N terminal domain protein	0.000216117932552	0.000301343576728	8.5225644176e-05
+UniRef50_N8X4K5		0.00111878636851	0.00467992290136	0.00356113653285
+UniRef50_A0LCH8	Zinc import ATP binding protein ZnuC	1.10963540866e-05	7.03861160429e-06	-4.05774248231e-06
+UniRef50_G7W6N5	NADH	0.000264379894087	0.000191764094291	-7.2615799796e-05
+UniRef50_P57388	2 oxoglutarate dehydrogenase E1 component	1.7055372447e-06	3.76014343838e-06	2.05460619368e-06
+UniRef50_UPI0003755588	hypothetical protein	1.59418311262e-05	4.76436692517e-05	3.17018381255e-05
+UniRef50_A9IIR2		1.04886342216e-05	2.74979196223e-05	1.70092854007e-05
+UniRef50_A3PG41		0.00704041212852	0.00293321179288	-0.00410720033564
+UniRef50_P22675	Argininosuccinate lyase	2.46882077459e-05	1.94930948796e-05	-5.1951128663e-06
+UniRef50_E6MV22	Factor H binding protein	0.000505884119369	0.00176830190746	0.00126241778809
+UniRef50_UPI00038330C2	PREDICTED	2.90923340259e-05	1.17461829378e-05	-1.73461510881e-05
+UniRef50_I0C482	Hydrolase 	0.00542477211719	0.000482954311376	-0.00494181780581
+UniRef50_UPI0003820085	hypothetical protein	4.6482006196e-06	8.04347128653e-06	3.39527066693e-06
+UniRef50_A4VR27		0.000674760589924	0.000246636584598	-0.000428124005326
+UniRef50_UPI000367811C	hypothetical protein, partial	8.90397007046e-06	7.42593749518e-06	-1.47803257528e-06
+UniRef50_A8I0S8		0.00114790956547	6.23452623492e-05	-0.00108556430312
+UniRef50_A1B9C6	Phospholipid glycerol acyltransferase	0.0131056947335	0.00360849545665	-0.00949719927685
+UniRef50_P17725	Citrate lyase subunit beta	0.00431907964295	0.002361291406	-0.00195778823695
+UniRef50_P15030	Fe dicitrate transport system permease protein FecC	0.00313752312499	0.000661020193938	-0.00247650293105
+UniRef50_UPI0003B749DD	NADH ubiquinone oxidoreductase subunit 6	7.73478858482e-05	1.2806688757e-05	-6.45411970912e-05
+UniRef50_UPI00046ADE6A	hypothetical protein	1.76364757447e-05	2.28132530052e-05	5.1767772605e-06
+UniRef50_UPI000366A0BF	aminotransferase	3.10563681645e-06	6.07715864042e-06	2.97152182397e-06
+UniRef50_UPI0004781051	peptide ABC transporter permease	1.64171882057e-05	6.25602066756e-05	4.61430184699e-05
+UniRef50_UPI0003B6312D	NADH ubiquinone oxidoreductase subunit 6	2.45321334873e-05	3.02105531374e-05	5.6784196501e-06
+UniRef50_P97056	Protein RnfH	0.00107053601078	0.000210276964128	-0.000860259046652
+UniRef50_Q3K022	GTPase Era	0.000324471379247	0.000835039960306	0.000510568581059
+UniRef50_D8TNI9		5.64543324124e-06	2.96499642505e-05	2.40045310093e-05
+UniRef50_A4T3P6		1.97823096231e-05	2.72268959114e-05	7.4445862883e-06
+UniRef50_E3A4U6		0.000469469152046	0.000211770056443	-0.000257699095603
+UniRef50_A6SYV8	Glucosyl transferase	0.000186874251907	0.000286252056733	9.9377804826e-05
+UniRef50_T1BIJ5	Appr 1 p processing domain containing protein	1.29690891921e-05	8.67862416983e-05	7.38171525062e-05
+UniRef50_UPI000360BB74	hypothetical protein	2.01195915158e-05	1.71443052184e-05	-2.9752862974e-06
+UniRef50_UPI0004785618	peptidase M20	3.95206948936e-06	6.69597071426e-05	6.30076376532e-05
+UniRef50_V5ST79		0.00105169907464	0.000272007512169	-0.000779691562471
+UniRef50_P39263		0.00291645478525	0.00116313155802	-0.00175332322723
+UniRef50_UPI0002492B0A	uroporphyrinogen III C methyltransferase	2.82200684014e-05	1.47531548802e-05	-1.34669135212e-05
+UniRef50_A7X534	Multidrug resistance efflux pump SepA	0.0100052463943	0.00207756516888	-0.00792768122542
+UniRef50_P39267		0.00178568059285	0.000577193359559	-0.00120848723329
+UniRef50_W8S776		6.58429782418e-05	0.000102587991932	3.67450136902e-05
+UniRef50_Q895P7	Phosphoprotein phosphatase 2C	0.000490073031534	0.0022380741043	0.00174800107277
+UniRef50_UPI00036925F6	hypothetical protein	0.000456643225518	0.000117398228933	-0.000339244996585
+UniRef50_UPI0004700B89	hypothetical protein	1.69810054724e-05	7.76914819468e-05	6.07104764744e-05
+UniRef50_UPI0003662012	hypothetical protein	3.21977529575e-06	1.19555419159e-05	8.73576662015e-06
+UniRef50_F2TBG9		1.52732449296e-05	1.02509067208e-06	-1.42481542575e-05
+UniRef50_UPI0003111719	FAD containing monooxygenase EthA	1.5247649647e-05	0.00182930178055	0.0018140541309
+UniRef50_Q3JRY4		1.78786478154e-05	5.52933917216e-05	3.74147439062e-05
+UniRef50_Q8DW61		0.0026004696474	0.000602687153456	-0.00199778249394
+UniRef50_Q8DW63		0.00811014313031	0.000146225473079	-0.00796391765723
+UniRef50_Q8DW64		0.00372374506195	0.000326875920868	-0.00339686914108
+UniRef50_Q8DW66		0.00202575755741	0.000584785554841	-0.00144097200257
+UniRef50_Q8DW69		0.00383356099134	0.0131938518914	0.00936029090006
+UniRef50_UPI00040DB40F	hypothetical protein	1.16833610463e-05	6.90030695945e-06	-4.78305408685e-06
+UniRef50_A0A011NIG9	Stalked cell differentiation controlling protein	6.34358451796e-06	9.89123971411e-06	3.54765519615e-06
+UniRef50_W1FDX5	Phenylacetate CoA oxygenase, PaaJ subunit	9.55855876496e-05	0.000132158695807	3.65731081574e-05
+UniRef50_UPI000468F800	3 methylcrotonyl CoA carboxylase	4.29607608731e-06	2.238370927e-05	1.80876331827e-05
+UniRef50_UPI00046E9B56	MULTISPECIES	7.76313591253e-06	1.58582466883e-05	8.09511077577e-06
+UniRef50_Q5HQU2	Lipoprotein, putative	0.00620680414643	0.00381570315534	-0.00239110099109
+UniRef50_F0MM24	Site specific recombinase	0.00020589502452	0.00170703821698	0.00150114319246
+UniRef50_Q9A7X1	Sulfate thiosulfate import ATP binding protein CysA	0.000125496956702	6.4226237002e-05	-6.12707197e-05
+UniRef50_P00363	Fumarate reductase flavoprotein subunit	0.00232728596957	0.0022240653276	-0.00010322064197
+UniRef50_B8FCL2	Arginine  tRNA ligase	4.25298726209e-06	8.48506486459e-06	4.2320776025e-06
+UniRef50_W1JJ37		1.6494182913e-05	2.78937381601e-05	1.13995552471e-05
+UniRef50_Q63SZ9	50S ribosomal protein L3 glutamine methyltransferase	0.00145565271172	0.00368596799836	0.00223031528664
+UniRef50_Q9RT16		0.000468435979094	0.0301588426703	0.0296904066912
+UniRef50_K7S7U2	Helicase secretion neighborhood ATPase	0.000194413384814	0.00412196849724	0.00392755511243
+UniRef50_A0A024E451		4.01662914913e-05	8.01158835875e-05	3.99495920962e-05
+UniRef50_D9RN76	Conserved bacteriophage protein	0.00625725388241	0.00450279560424	-0.00175445827817
+UniRef50_Q09AM4		0.000155884507615	4.55269168186e-05	-0.000110357590796
+UniRef50_K1Z5M7		1.0860271367e-05	6.71928828519e-06	-4.14098308181e-06
+UniRef50_E4PKC3	Extracellular solute binding protein, family 1	0.0096444577482	0.000670735046264	-0.00897372270194
+UniRef50_UPI00036DECB5	hypothetical protein	2.45542828364e-06	0.000266673612821	0.000264218184537
+UniRef50_Q09049	Cytochrome bd ubiquinol oxidase subunit 1	1.40858505778e-05	4.51651124395e-05	3.10792618617e-05
+UniRef50_Q3B4E2	Bifunctional protein FolD	0.00697570623407	0.00645479279563	-0.00052091343844
+UniRef50_N1MUD6		0.013474597831	0.00178303456773	-0.0116915632633
+UniRef50_D3DA43		1.1171091624e-05	0.000223442652099	0.000212271560475
+UniRef50_G9ZJL6		6.70937797759e-05	1.30127240933e-05	-5.40810556826e-05
+UniRef50_UPI0003B42F1C	hypothetical protein	2.80688806763e-05	7.40906116255e-05	4.60217309492e-05
+UniRef50_O25830	Bifunctional dihydropteroate synthase dihydropteroate reductase	0.00057051026703	0.0036305465132	0.00306003624617
+UniRef50_UPI00047B1D21	DNA gyrase subunit A	8.61520108029e-06	1.86148128217e-05	9.99961174141e-06
+UniRef50_UPI0004640DF8	ABC transporter permease	1.37623194993e-05	8.65151876701e-06	-5.11080073229e-06
+UniRef50_UPI00046E6161	hypothetical protein	3.56478057781e-05	1.75949076688e-05	-1.80528981093e-05
+UniRef50_B2INS9	Hydrolase, haloacid dehalogenase like family	0.00691060148007	0.008236867765	0.00132626628493
+UniRef50_F9YXR7		0.000207885856826	0.00541121682112	0.00520333096429
+UniRef50_Q9I6F3		0.000270922958506	0.00130816611149	0.00103724315298
+UniRef50_UPI00046835E4	hypothetical protein	0.000232254731516	3.90662628166e-05	-0.000193188468699
+UniRef50_Q9I5W0	DNA primase	0.000491170800127	0.000109376557477	-0.00038179424265
+UniRef50_UPI0003B68C85	chromosomal replication initiator protein DnaA	4.67357968212e-06	7.43135185529e-06	2.75777217317e-06
+UniRef50_UPI000377D8E1	hypothetical protein	1.31738954724e-05	3.22053806195e-05	1.90314851471e-05
+UniRef50_A5ENX4	Cysteine desulfuration protein SufE	0.00018598240212	2.62515973723e-05	-0.000159730804748
+UniRef50_P55809	Succinyl CoA	5.02222770547e-05	4.42066439934e-05	-6.0156330613e-06
+UniRef50_R6LKT9	PTS system	0.000622229651954	0.000763750099644	0.00014152044769
+UniRef50_UPI00037E8795	hypothetical protein	9.7519292095e-05	0.000101693816904	4.174524809e-06
+UniRef50_B9KL59	5 oxoprolinase	0.00194422663222	0.000756435077488	-0.00118779155473
+UniRef50_G4LIE7		0.000292230662804	0.000182294262473	-0.000109936400331
+UniRef50_Q9SAJ6	Glyceraldehyde 3 phosphate dehydrogenase GAPCP1, chloroplastic	2.23458403964e-05	3.60839327617e-05	1.37380923653e-05
+UniRef50_W5BG06		0.000223039291066	0.000307621567909	8.4582276843e-05
+UniRef50_Q9S6S1	Xaa Pro dipeptidase	0.00406600321439	0.00492330732713	0.00085730411274
+UniRef50_UPI00047AF1F1	hypothetical protein	3.65663635778e-06	0.000249102368774	0.000245445732416
+UniRef50_W5XC72	Excinuclease ABC subunit C	1.64817473128e-05	2.86139163422e-05	1.21321690294e-05
+UniRef50_B1W0Z3	Phosphoglycerate kinase	0.0237606903373	0.0216835293705	-0.0020771609668
+UniRef50_K0VIJ3	Replication initiation protein RepC	2.6392744294e-05	2.20939892299e-05	-4.2987550641e-06
+UniRef50_UPI00036C59B9	hypothetical protein	2.11188717687e-05	8.93415574944e-05	6.82226857257e-05
+UniRef50_A1WWJ6	ISXoo15 transposase	6.32979750019e-05	2.85605808873e-05	-3.47373941146e-05
+UniRef50_M4R3E4	MFS superfamily bicyclomycin multidrug transportprotein	0.000623229649913	0.00928328142758	0.00866005177767
+UniRef50_Q2G764	2,4 dihydroxyacetophenone dioxygenase	0.00081974089678	0.000666755145539	-0.000152985751241
+UniRef50_F4QZ58		8.33373403415e-05	1.11897579632e-05	-7.21475823783e-05
+UniRef50_R6PZ09	Chorismate synthase	0.000116388280223	0.00178940027096	0.00167301199074
+UniRef50_UPI000479CAE5	ABC transporter	3.05604607441e-06	1.69920190759e-05	1.39359730015e-05
+UniRef50_Q3JVM0		8.07515534964e-05	0.000113365337884	3.26137843876e-05
+UniRef50_G5JVK4	Acyl ACP thioesterase	0.00520714323114	0.00158862969528	-0.00361851353586
+UniRef50_Q9S469	L ribulose 5 phosphate 4 epimerase	0.0105501279448	0.00736697626122	-0.00318315168358
+UniRef50_C5CPN2	Transaldolase	0.00306333358167	0.000380666037909	-0.00268266754376
+UniRef50_UPI000305C0E8	hypothetical protein	3.93533351593e-05	0.000264476898853	0.000225123563694
+UniRef50_P45753	Putative DNA utilization protein HofM	0.00173602314793	0.000775213515781	-0.000960809632149
+UniRef50_G2M640		0.000340716909722	0.00475342916939	0.00441271225967
+UniRef50_F5M2B7	CRP FNR family transcriptional regulator	0.00247991749141	0.000242726059064	-0.00223719143235
+UniRef50_UPI00023768FE	monosaccharide transporting ATPase, partial	0.000239829882996	0.000630682184614	0.000390852301618
+UniRef50_A9HE84	Tryptophan synthase alpha chain	0.00129551189686	0.00266575517111	0.00137024327425
+UniRef50_C3FBN6	Transposase A from transposon Tn554	0.000100932082575	0.00038841464795	0.000287482565375
+UniRef50_UPI0003B6F059	aldehyde activating protein	8.74000899081e-05	2.762399649e-05	-5.97760934181e-05
+UniRef50_UPI000219427C	phosphoribosylcarboxyaminoimidazole  mutase, partial	7.20641022659e-05	2.3530658128e-05	-4.85334441379e-05
+UniRef50_C2BE46		0.000649436453475	0.000184168559401	-0.000465267894074
+UniRef50_K7EXQ4		2.94932409971e-05	9.87026946978e-06	-1.96229715273e-05
+UniRef50_UPI0003D78289	PREDICTED	4.62554463156e-06	0.000187178594339	0.000182553049707
+UniRef50_D4HCD1	L fucose isomerase, first N terminal domain protein	0.000569074355048	0.00652292183753	0.00595384748248
+UniRef50_P65894	Phosphoribosylamine  glycine ligase	0.000128251185346	0.00597884348432	0.00585059229897
+UniRef50_B9KUW5	Beta lactamase	0.0165141226521	0.00342850546849	-0.0130856171836
+UniRef50_V9Y4Q6		0.000297061306978	6.25716317643e-05	-0.000234489675214
+UniRef50_P58403	Protein YfdX	0.0022583545144	0.00140483904323	-0.00085351547117
+UniRef50_E2ZXX1	NalD	0.000943900692526	0.00133602740699	0.000392126714464
+UniRef50_B9JV31		0.0114179980041	0.00337611755162	-0.00804188045248
+UniRef50_I6SXW0	Acetyltransferase	0.00642502342194	0.00148828722409	-0.00493673619785
+UniRef50_Q8WEW3	Cytochrome c oxidase subunit 1 	9.0089499092e-06	2.03289337254e-05	1.13199838162e-05
+UniRef50_O84561	Dihydrolipoyl dehydrogenase	2.46651352964e-05	1.33113551615e-05	-1.13537801349e-05
+UniRef50_T1B7K3	Protein containing DUF28	9.88127430833e-06	1.1703615161e-05	1.82234085267e-06
+UniRef50_UPI0003F0D458		2.32302196068e-05	2.17953637077e-05	-1.4348558991e-06
+UniRef50_M1MXD6	Xylose transport system permease protein XylH	0.000198764931501	0.000165598152454	-3.3166779047e-05
+UniRef50_R2ZFJ6	Regulatory protein BlaR1	0.000183415488809	0.00318205399168	0.00299863850287
+UniRef50_UPI000377E8CB	hypothetical protein	5.12644132202e-06	8.08661296407e-06	2.96017164205e-06
+UniRef50_Q9RSS3	ABC transporter, ATP binding protein, MDR family	5.69360465787e-05	0.036495560056	0.0364386240094
+UniRef50_F5LYA4	P4 family integrase	0.000557174053809	0.000322754666944	-0.000234419386865
+UniRef50_Q8EWY8	ATP synthase subunit beta	9.23453928457e-06	4.88645398204e-06	-4.34808530253e-06
+UniRef50_UPI00037C4890	hypothetical protein	1.83430280024e-06	5.77470815267e-06	3.94040535243e-06
+UniRef50_UPI000379EBC0	hypothetical protein	6.38190008155e-05	5.28197862897e-05	-1.09992145258e-05
+UniRef50_UPI000364EE3F	hypothetical protein	3.41913531614e-05	0.000180659561345	0.000146468208184
+UniRef50_UPI0003717A9D	molybdopterin biosynthesis protein MoeZ, partial	2.46783343545e-05	5.80351264477e-05	3.33567920932e-05
+UniRef50_M3YWL2		1.34667590342e-05	6.46939436053e-06	-6.99736467367e-06
+UniRef50_O27333	Trk system potassium uptake protein TrkA homolog	0.00172180094971	0.000413030356916	-0.00130877059279
+UniRef50_M1MV61	ATP dependent transcriptional regulator, MalT like, LuxR family	0.000354082543669	0.000846958447112	0.000492875903443
+UniRef50_Q6AGI1		0.00622010207345	0.00201634305018	-0.00420375902327
+UniRef50_Q0K1E0	Ribulose bisphosphate carboxylase large chain, chromosomal	0.000106032576398	9.45658701477e-05	-1.14667062503e-05
+UniRef50_UPI0003A611B9	hypothetical protein	1.08700867992e-06	4.55304651729e-05	4.4443456493e-05
+UniRef50_D8JE10	Thioesterase superfamily protein	0.000681292166666	0.014016071807	0.0133347796403
+UniRef50_F4FM20	RstA	0.00921442395543	0.000349468961315	-0.00886495499411
+UniRef50_Q6Y3D2	NifD 	0.000513930963861	0.000228828256293	-0.000285102707568
+UniRef50_R0S4I1	AMIN domain protein	1.11029736431e-05	0.000122639592157	0.000111536618514
+UniRef50_Q0BWU4	Phosphoribosyl AMP cyclohydrolase	1.81685278487e-05	8.90710578229e-05	7.09025299742e-05
+UniRef50_UPI0002B4BC1C		1.25781660157e-05	6.5000510997e-05	5.24223449813e-05
+UniRef50_UPI0004785FB9	alkylhydroperoxidase	0.000246705255845	0.000219260546319	-2.7444709526e-05
+UniRef50_F7QTX4		1.64437196687e-05	1.97033106601e-05	3.2595909914e-06
+UniRef50_T2E7D0	Inner membrane transport protein RhmT	0.000529215619369	0.000134336636173	-0.000394878983196
+UniRef50_UPI0003955E77	PREDICTED	4.93261552293e-05	0.000107268402587	5.79422473577e-05
+UniRef50_Q01609		0.000805444225856	0.00343587109541	0.00263042686955
+UniRef50_B3E163	DNA directed RNA polymerase subunit beta	4.04082835124e-06	2.16939305526e-06	-1.87143529598e-06
+UniRef50_Q7WZY5	Oxygen sensor histidine kinase NreB	0.0193621449013	0.00645411723966	-0.0129080276616
+UniRef50_UPI0004740AD1	histidine kinase	4.41956427434e-05	7.62785187525e-05	3.20828760091e-05
+UniRef50_P50186	NaeI very short patch repair endonuclease	1.78212880379e-05	4.0131060692e-05	2.23097726541e-05
+UniRef50_UPI000367ED7B	hypothetical protein	1.93080198514e-05	5.04225965004e-06	-1.42657602014e-05
+UniRef50_UPI000470E957	major facilitator transporter, partial	6.8519039608e-06	4.19437687246e-05	3.50918647638e-05
+UniRef50_B5R646	Allantoinase	0.00438809441507	0.000868583109247	-0.00351951130582
+UniRef50_P23256	Protein MalY	0.00259120309458	0.000798956483774	-0.00179224661081
+UniRef50_B4RQQ4	Adhesin component	0.000832689681294	0.0441243405044	0.0432916508231
+UniRef50_K1RTS5	Carboxynorspermidine decarboxylase	0.000190052784136	0.000127862950305	-6.2189833831e-05
+UniRef50_I6TSK5	Osmoprotectant amino acid ABC transporter ATP binding protein	0.00500627868795	0.00237531774025	-0.0026309609477
+UniRef50_A5UJ55	SAM dependent methyltransferase	0.000955437961966	0.000715203418526	-0.00024023454344
+UniRef50_M1MCY2	Glycosyl transferase family 2	8.54685257742e-05	0.000531380222148	0.000445911696374
+UniRef50_UPI00036853DF	hypothetical protein	0.000153389194184	1.26347761438e-05	-0.00014075441804
+UniRef50_P22714	Galactose 1 phosphate uridylyltransferase	0.00359057400819	0.00111825150508	-0.00247232250311
+UniRef50_UPI000225A931	proline iminopeptidase	7.37233824644e-06	9.95611564391e-06	2.58377739747e-06
+UniRef50_A0A023RRW7	Lipid A biosynthesis acyltransferase	0.000121378131464	0.00674661643638	0.00662523830492
+UniRef50_I0C613	DNA polymerase III alpha subunit	0.0136435487592	0.00309124747135	-0.0105523012879
+UniRef50_A1KRG6	DNA directed RNA polymerase subunit beta	6.64547439828e-05	0.00452214597108	0.0044556912271
+UniRef50_P05824	DNA repair protein RecN	0.00272571673226	0.000333414573864	-0.0023923021584
+UniRef50_Q9K0V3	N acetylmuramoyl L alanine amidase AmiC	3.85337367799e-05	0.0014456799173	0.00140714618052
+UniRef50_A0A023RUS2	Chemotaxis protein CheY	0.000948312219635	0.00666264754683	0.0057143353272
+UniRef50_P0ABT9		0.00159622885827	0.000496184042659	-0.00110004481561
+UniRef50_A4WWG5	Extracellular solute binding protein, family 5	0.0202623619417	0.0037954235676	-0.0164669383741
+UniRef50_Q5HR29	Histidine protein kinase SaeS	0.0168854394268	0.00227464862547	-0.0146107908013
+UniRef50_UPI00046D5F2F	hypothetical protein	0.000621438639611	0.00225762175591	0.0016361831163
+UniRef50_UPI0002D4FA5D	hypothetical protein	1.36815473426e-05	6.27574981451e-05	4.90759508025e-05
+UniRef50_P31550	Thiamine binding periplasmic protein	0.00269719156216	0.00216638426356	-0.0005308072986
+UniRef50_P21514	Cyclic di GMP phosphodiesterase YahA	0.00282256893515	0.00266390425937	-0.00015866467578
+UniRef50_A6VC18	Haemagglutination activity domain protein	0.000195231897789	2.74628058223e-05	-0.000167769091967
+UniRef50_UPI000377E83F	hypothetical protein	3.27282406274e-05	0.000291712056764	0.000258983816137
+UniRef50_A3MND6	Bifunctional protein GlmU	0.00301999244345	0.012207617105	0.00918762466155
+UniRef50_UPI00037CB5D1	hypothetical protein, partial	7.85057669752e-05	2.82318328663e-05	-5.02739341089e-05
+UniRef50_UPI00028877C9	hypothetical protein	3.15766502025e-05	4.67013577186e-05	1.51247075161e-05
+UniRef50_UPI0004416F73	Pkinase domain containing protein	5.1620980521e-06	1.74298933999e-06	-3.41910871211e-06
+UniRef50_UPI00035DDF67	hypothetical protein	2.56298684014e-05	1.53011469741e-05	-1.03287214273e-05
+UniRef50_UPI00046CFF91	NUDIX hydrolase	9.22082808371e-06	0.000489641304528	0.000480420476444
+UniRef50_UPI0003654BCD	hypothetical protein	2.21162687326e-05	0.0052855991645	0.00526348289577
+UniRef50_S5SXF8	GntR family transcriptional regulator protein	0.00537319300924	0.000273441393692	-0.00509975161555
+UniRef50_UPI000344DDDB	hypothetical protein	2.6365761354e-06	1.0980688106e-06	-1.5385073248e-06
+UniRef50_UPI00041AB026	hypothetical protein	0.000201940725436	3.13974924014e-05	-0.000170543233035
+UniRef50_UPI000310D2B7	hypothetical protein	1.19185281396e-05	2.33243301623e-05	1.14058020227e-05
+UniRef50_I5XEX7		7.02856428705e-05	7.46743793596e-05	4.3887364891e-06
+UniRef50_UPI00028A0BB5	iron ABC transporter permease	6.08998464866e-05	9.43012975712e-05	3.34014510846e-05
+UniRef50_Q00267	N hydroxyarylamine O acetyltransferase	0.00187420471859	0.000809393808929	-0.00106481090966
+UniRef50_UPI0002D46590	hypothetical protein	3.13205007015e-05	4.30162259401e-06	-2.70188781075e-05
+UniRef50_UPI000310AFFC	hypothetical protein	0.000169088541724	1.61850334637e-05	-0.00015290350826
+UniRef50_K7RZQ6	Phosphate ABC transporter, permease protein PstC	0.000121118499099	0.00604819593877	0.00592707743967
+UniRef50_Q9RUF1	Putative gluconeogenesis factor	0.000121118499099	0.00580637756948	0.00568525907038
+UniRef50_A3M2J5	FilF	0.000355455608344	0.00760711455061	0.00725165894227
+UniRef50_Q9RYW8	Excinuclease ABC, subunit A	4.72251028609e-05	0.0286855626743	0.0286383375714
+UniRef50_L7WWN9	N acetylmuramoyl L alanine amidase	0.00858348568774	0.00264387494539	-0.00593961074235
+UniRef50_U5MQ76	Cell wall hydrolase autolysin	0.000796181223905	0.00300282106843	0.00220663984453
+UniRef50_Q8K3J1	NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial	5.87869616426e-05	1.04409718317e-05	-4.83459898109e-05
+UniRef50_B2TQZ4	Ribosomal RNA small subunit methyltransferase I	0.000371749222442	0.00226600982422	0.00189426060178
+UniRef50_UPI00045E70DE	phosphoglucosamine mutase	4.17142232811e-06	6.86870837911e-06	2.697286051e-06
+UniRef50_P0A2L2	UPF0047 protein YjbQ	1.67456954402e-05	0.0171151747311	0.0170984290357
+UniRef50_Q720A2	DNA polymerase III PolC type	0.0105344517625	0.00547248941566	-0.00506196234684
+UniRef50_W8UDC1	Oligopeptidase A	0.000813987272751	0.000175920374899	-0.000638066897852
+UniRef50_UPI000404E1BA	hypothetical protein	7.00800868692e-05	1.11808793433e-05	-5.88992075259e-05
+UniRef50_Q3J4T9	ATPase	0.0145238603634	0.00169696210157	-0.0128268982618
+UniRef50_G7U8C9	N formimino L glutamate deiminase	0.000106434019418	0.00573644775609	0.00563001373667
+UniRef50_P0A0E5	Mercuric reductase	0.0119854730565	0.00274855919635	-0.00923691386015
+UniRef50_R5D9D5		0.000278371795454	0.00103792686452	0.000759555069066
+UniRef50_UPI0002F9EB26	hypothetical protein	2.98328993867e-05	2.03083431814e-05	-9.5245562053e-06
+UniRef50_W8G521	Electron transfer flavoprotein subunit beta	0.0068450205936	0.00580726466339	-0.00103775593021
+UniRef50_UPI0003672E42	hypothetical protein	5.14629958399e-06	7.27514297368e-06	2.12884338969e-06
+UniRef50_A3JU62	Replication protein C	6.37271107187e-05	4.63052820603e-05	-1.74218286584e-05
+UniRef50_UPI000376A3B0	hypothetical protein	3.36155985985e-06	1.10408950079e-05	7.67933514805e-06
+UniRef50_D4HC17	TOBE domain protein	0.0003380471542	0.0044738549913	0.0041358078371
+UniRef50_I1F1X0		0.00021585868997	0.000290982103433	7.5123413463e-05
+UniRef50_Q87AR8	Laccase domain protein PD_1754	0.000175032143208	0.000808772324455	0.000633740181247
+UniRef50_I4XWS9	MFS transporter, aromatic acid	0.000323724864676	0.000132726609074	-0.000190998255602
+UniRef50_UPI000252B72D		1.56873143238e-05	1.51024581311e-05	-5.848561927e-07
+UniRef50_R4PRA1	Cytochrome D ubiquinol oxidase, subunit II	0.000337638755487	0.00380807142821	0.00347043267272
+UniRef50_UPI00034C051A	hypothetical protein	1.09716518469e-05	5.80057761253e-06	-5.17107423437e-06
+UniRef50_A6W2T3	3 dehydroquinate synthase	0.000136475804957	0.00412378546885	0.00398730966389
+UniRef50_Q24QJ3	Imidazole glycerol phosphate synthase subunit HisH	0.000948605138528	0.00462711755907	0.00367851242054
+UniRef50_A3PQB9	Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase	0.0048927774723	0.00135680179899	-0.00353597567331
+UniRef50_B9KR17	CrpK, Fnr type transcriptional regulator	0.0108827899111	0.0012095799515	-0.0096732099596
+UniRef50_P58423	Fructose 6 phosphate aldolase 1	0.0101171183728	0.00247981777964	-0.00763730059316
+UniRef50_E9UU02	Putative TolA domain protein	0.000101734801148	5.80239445701e-05	-4.37108565779e-05
+UniRef50_J3NBT7		1.17131462762e-05	0.000226287519003	0.000214574372727
+UniRef50_UPI00023B1DD2	PREDICTED	2.40155774287e-05	1.38392786601e-05	-1.01762987686e-05
+UniRef50_Q729A6	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000396638312082	0.0111625192468	0.0107658809347
+UniRef50_J1ZV65		1.47794619325e-06	3.31261557154e-06	1.83466937829e-06
+UniRef50_UPI0002630EBE	nicotinate phosphoribosyltransferase	4.05317546118e-06	6.12368248567e-06	2.07050702449e-06
+UniRef50_G0DTU8		0.00036792030283	0.00482932001029	0.00446139970746
+UniRef50_UPI00036FBE9A	hypothetical protein	7.6872927043e-05	0.000144749983105	6.7877056062e-05
+UniRef50_UPI00029B2F80	GCN5 family acetyltransferase	8.41439541389e-05	0.000502563945552	0.000418419991413
+UniRef50_G7MAN7	Carboxyl terminal protease	0.000614157832573	0.000921349452598	0.000307191620025
+UniRef50_B9KR73	ABC sugar transporter, inner membrane subunit	0.0123546128529	0.002529459646	-0.0098251532069
+UniRef50_UPI00037DF359	hypothetical protein	7.22882882314e-05	1.27544964257e-05	-5.95337918057e-05
+UniRef50_O32113		0.00375068255908	0.00312825375479	-0.00062242880429
+UniRef50_Q47BM0	Argininosuccinate synthase	0.0119077110384	0.00275987148788	-0.00914783955052
+UniRef50_P0AGM8	Uracil permease	0.00462698448054	0.00179843509325	-0.00282854938729
+UniRef50_UPI0002628793	organic solvent ABC transporter ATP binding protein	0.000128200535506	3.36863349922e-05	-9.45142005138e-05
+UniRef50_D3DEH5	DnaJ like molecular chaperone domain protein	5.65631092695e-05	2.31332727519e-05	-3.34298365176e-05
+UniRef50_P0ACZ1		0.000391853967671	0.000613114266848	0.000221260299177
+UniRef50_C7C6X9		0.00143892007009	0.000592608772976	-0.000846311297114
+UniRef50_B0TY89	Threonine  tRNA ligase	1.69441989805e-05	6.07784330265e-06	-1.08663556778e-05
+UniRef50_Q2FGC8	Shikimate dehydrogenase	0.0223138041455	0.00507900364977	-0.0172348004957
+UniRef50_UPI0004057B1E	hypothetical protein	1.65864004034e-05	6.77126316888e-06	-9.81513723452e-06
+UniRef50_C5N0J9		0.00612411480282	0.00116402329094	-0.00496009151188
+UniRef50_UPI0001BC2CC2	glyoxalase bleomycin resistance protein dioxygenase	1.87789706636e-05	3.83704291085e-05	1.95914584449e-05
+UniRef50_Q9ZE56	Aspartate aminotransferase	0.0136697209001	0.00404807991724	-0.00962164098286
+UniRef50_K1YDE1		0.000266522718685	0.000402424925402	0.000135902206717
+UniRef50_Q4A2U1	Putative membrane protein	2.93786101704e-06	4.80583517939e-06	1.86797416235e-06
+UniRef50_D9UFW6	Replication initiation protein 	2.14589833001e-05	1.48464009172e-05	-6.6125823829e-06
+UniRef50_W5X411	DoxX family protein	9.27113138416e-05	2.39597858564e-05	-6.87515279852e-05
+UniRef50_UPI00038FA33F	Aliphatic sulfonates import ATP binding protein SsuB, partial	8.558454282e-05	1.50795109245e-05	-7.05050318955e-05
+UniRef50_UPI00035D0942	hypothetical protein	6.25787649218e-05	5.61775703977e-05	-6.4011945241e-06
+UniRef50_B9KT30	Transporter, DME family, DMT superfamily	0.000307197551739	0.000187701295675	-0.000119496256064
+UniRef50_Q49YA3	HemA concentration negative effector	0.0196753415344	0.00589344931534	-0.0137818922191
+UniRef50_UPI0003B4E2D0	preprotein translocase subunit SecD	2.93413130069e-06	9.88854336036e-06	6.95441205967e-06
+UniRef50_A0R033	Phospho 2 dehydro 3 deoxyheptonate aldolase AroG	3.54295369733e-05	1.06854463286e-05	-2.47440906447e-05
+UniRef50_Q8CMX2	Dihydrolipoamide dehydrogenase	0.0120638636002	0.00188143081241	-0.0101824327878
+UniRef50_G1TF83		2.0224373231e-05	2.71276105651e-06	-1.75116121745e-05
+UniRef50_Q3SFH1	Acetylglutamate kinase	5.25676752241e-05	0.00363417827872	0.0035816106035
+UniRef50_UPI0002626E83	hypothetical protein	5.73132964576e-05	2.593685298e-05	-3.13764434776e-05
+UniRef50_E7T8U3	SdiA regulated domain protein	5.29269066775e-05	5.78537161482e-05	4.9268094707e-06
+UniRef50_A5V195	Beta lactamase domain protein	2.12667180632e-05	0.00010910083823	8.78341201668e-05
+UniRef50_A6LQ08	Oleoyl  hydrolase	0.000471103564113	0.00053387377675	6.2770212637e-05
+UniRef50_UPI00036116CD	hypothetical protein	8.31040134358e-06	0.000609700859869	0.000601390458525
+UniRef50_UPI0004222757	acyl CoA dehydrogenase	4.8695403502e-05	4.41731641336e-05	-4.5222393684e-06
+UniRef50_UPI0001744DDB	putative transporter	5.72295395266e-06	4.03240146381e-05	3.46010606854e-05
+UniRef50_Q9RUR8		0.000250013402159	0.0626882755764	0.0624382621742
+UniRef50_Q4UYY0	Tyrosine recombinase XerC	0.00311439724736	0.00107409014807	-0.00204030709929
+UniRef50_P53401	Succinyl CoA ligase [GDP forming] subunit alpha 3, mitochondrial	1.5984984343e-05	3.10533355285e-05	1.50683511855e-05
+UniRef50_A6M0K8	Amino acid permease associated region	0.000803891465594	0.0024132085664	0.00160931710081
+UniRef50_Q9CGD8	Homoserine dehydrogenase	0.00446419781525	0.0055543882634	0.00109019044815
+UniRef50_W0YNY5	Putrescine binding periplasmic protein	0.000494910711646	0.000210940503716	-0.00028397020793
+UniRef50_UPI0001CB98DC	PREDICTED	3.71719048201e-06	6.16049086021e-06	2.4433003782e-06
+UniRef50_UPI00036CD3A9	hypothetical protein	6.51318103801e-07	0.000415848406819	0.000415197088715
+UniRef50_UPI0002FA5AD3	hypothetical protein	0.000791287236964	0.000262313724087	-0.000528973512877
+UniRef50_G7U4S9		0.000170808139747	0.00985672200945	0.0096859138697
+UniRef50_B8P4L0	Predicted protein	2.84950950481e-05	3.70961523149e-05	8.6010572668e-06
+UniRef50_R9SPB0	7 carboxy 7 deazaguanine synthase	0.00336279839069	0.000649686826491	-0.0027131115642
+UniRef50_W4UGA1		6.27042886125e-05	0.000590591321642	0.00052788703303
+UniRef50_UPI000237A558	molecular chaperone DnaK	2.55175879573e-05	6.89886268356e-06	-1.86187252737e-05
+UniRef50_A6LRX4		0.000248891860782	0.000456268026566	0.000207376165784
+UniRef50_A0A023RW48		0.000165806437266	0.00381096394926	0.00364515751199
+UniRef50_Q9FYA6	Branched chain amino acid aminotransferase 5, chloroplastic	7.74650309469e-06	2.344442995e-05	1.56979268553e-05
+UniRef50_Q3J497		0.0019716347238	0.00247370573148	0.00050207100768
+UniRef50_UPI000464D2A1	peptidase M32	1.95225583282e-05	8.64591242153e-06	-1.08766459067e-05
+UniRef50_Q3JNY2	Phosphonates import ATP binding protein PhnC	0.00174089322351	0.002369993062	0.00062909983849
+UniRef50_P30296	High affinity branched chain amino acid transport system permease protein LivM	0.00245697305146	0.000378818820648	-0.00207815423081
+UniRef50_UPI00036616D0	hypothetical protein	3.66593481159e-06	3.48142701735e-05	3.11483353619e-05
+UniRef50_Q7UT69	Cyclic pyranopterin monophosphate synthase	4.77682281729e-06	0.000127521274482	0.000122744451665
+UniRef50_UPI00037F4F10	hypothetical protein	7.98786483501e-06	2.44960812647e-06	-5.53825670854e-06
+UniRef50_E2S811		0.000717146488905	0.00035321685738	-0.000363929631525
+UniRef50_Q04I02	Transcriptional regulator AdcR	0.00702928057572	0.00076691700201	-0.00626236357371
+UniRef50_Q72IW9	Homoisocitrate dehydrogenase	1.17158068163e-05	5.75797227148e-05	4.58639158985e-05
+UniRef50_Q84NM0		0.000177223468942	0.00026565220857	8.8428739628e-05
+UniRef50_UPI0003EC0560	PREDICTED	2.80867551212e-05	1.76846092498e-05	-1.04021458714e-05
+UniRef50_U1FXL3	Primosome assembly protein PriA	0.0184260949013	0.00430600963914	-0.0141200852622
+UniRef50_UPI000372345A	hypothetical protein	2.98587242413e-05	2.4576076766e-05	-5.2826474753e-06
+UniRef50_G8VIZ2	Dicarboxylate transport protein   alpha ketoglutarate permease	0.000152828335565	0.00550374233675	0.00535091400119
+UniRef50_UPI0002625F65	thioredoxin	0.000201125524198	0.000381395031613	0.000180269507415
+UniRef50_J9UTL0		0.000838857753003	0.000102998066914	-0.000735859686089
+UniRef50_P37417	UDP N acetylenolpyruvoylglucosamine reductase	0.00282714778037	0.000470704015539	-0.00235644376483
+UniRef50_D6SIG9		0.00411352462628	0.00143631899592	-0.00267720563036
+UniRef50_W0A6T6	Peroxidase	0.000303014800698	0.061407007555	0.0611039927543
+UniRef50_UPI0001B4A052	hypothetical protein, partial	4.87486151538e-06	0.000145911559744	0.000141036698229
+UniRef50_P76081	1,2 phenylacetyl CoA epoxidase, subunit E	0.00220617548171	0.000466144569113	-0.0017400309126
+UniRef50_W0YPV2		1.59245572919e-05	0.000509797026076	0.000493872468784
+UniRef50_Q9RTL4		0.00017584751034	0.0259281341848	0.0257522866745
+UniRef50_B0VB68	Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain	0.000891699186261	0.0036072780935	0.00271557890724
+UniRef50_UPI0003767C94	MULTISPECIES	1.1393260093e-05	0.000283565679908	0.000272172419815
+UniRef50_P29915	NADH quinone oxidoreductase chain 3	0.00202506193117	0.00068993132172	-0.00133513060945
+UniRef50_P51981	L Ala D L Glu epimerase	0.00368647123907	0.000903629740692	-0.00278284149838
+UniRef50_Q7UK64	Argininosuccinate lyase	2.70250515881e-05	1.30021793732e-05	-1.40228722149e-05
+UniRef50_Q5NPZ7	Tryptophan synthase alpha chain	7.25554999669e-06	1.34671814012e-05	6.21163140451e-06
+UniRef50_Q9RZH5		5.48888741709e-05	0.00850186315981	0.00844697428564
+UniRef50_Q5HH71	UPF0477 protein SACOL1020	0.0241821953962	0.0141448367194	-0.0100373586768
+UniRef50_Q9RZH7		7.5409843749e-05	0.00779275929849	0.00771734945474
+UniRef50_Q9RZH0		0.000201453654052	0.0165961985789	0.0163947449248
+UniRef50_Q9RZH1		0.000280311377865	0.0254161321516	0.0251358207737
+UniRef50_UPI0003737D75	hypothetical protein	7.694776435e-06	3.68677845861e-06	-4.00799797639e-06
+UniRef50_W1VJK5		0.000582622505785	0.00408380435617	0.00350118185038
+UniRef50_P14949	Thioredoxin	0.00079192864794	0.00089040212621	9.847347827e-05
+UniRef50_UPI000472A2A5	hypothetical protein	3.68034083203e-06	3.48079433025e-06	-1.9954650178e-07
+UniRef50_B9KF16		0.000354666553443	3.15711286306e-06	-0.00035150944058
+UniRef50_R6IHH7		9.29742070845e-05	0.000583889189001	0.000490914981916
+UniRef50_Q6FFB5	Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes	8.65132136393e-05	0.00615470611246	0.00606819289882
+UniRef50_F5Q2F1	Putrescine ornithine antiporter	0.000547851562923	0.00159181843557	0.00104396687265
+UniRef50_A0A014NVK4		1.00942910561e-05	5.33476925123e-05	4.32534014562e-05
+UniRef50_P34956	Quinol oxidase subunit 1	0.0214904345916	0.00415652627085	-0.0173339083208
+UniRef50_I6TBP2	Oligo beta mannoside permease IIC component	0.000594254542829	0.00578379382165	0.00518953927882
+UniRef50_Q6D107	Bifunctional protein Aas	0.00312568631822	0.000897504725649	-0.00222818159257
+UniRef50_I4K2W0		0.017898833977	0.00035156750618	-0.0175472664708
+UniRef50_UPI00036C4785	hypothetical protein, partial	2.11263109756e-05	0.00013332466527	0.000112198354294
+UniRef50_Q3J232		0.00633080828617	0.00333505612436	-0.00299575216181
+UniRef50_Q3J231		0.0110379923868	0.0057373490832	-0.0053006433036
+UniRef50_Q3J230		0.0186794836082	0.00642777575693	-0.0122517078513
+UniRef50_UPI00041335DC	hypothetical protein	1.95823394932e-06	2.925220169e-06	9.6698621968e-07
+UniRef50_UPI00035E09FF	hypothetical protein	5.30692510043e-06	1.3545702841e-05	8.23877774057e-06
+UniRef50_A4SN85	Putative transport protein ASA_2308	0.00244992063731	0.000592570269494	-0.00185735036782
+UniRef50_A4SV52	Indole 3 glycerol phosphate synthase	8.34767104486e-06	0.00484018938354	0.0048318417125
+UniRef50_B0JHY9	50S ribosomal protein L6	0.0274918951823	0.00525017705819	-0.0222417181241
+UniRef50_Q4T085	Chromosome undetermined SCAF11289, whole genome shotgun sequence. 	2.91348832916e-05	5.44712044637e-05	2.53363211721e-05
+UniRef50_J9YTG3		0.000313700267745	0.000412069821193	9.8369553448e-05
+UniRef50_UPI00044144A1	50s ribosomal protein	4.89810874842e-06	4.89991904881e-05	4.41010817397e-05
+UniRef50_A4WTJ9		3.34830368967e-05	6.60690467491e-05	3.25860098524e-05
+UniRef50_I3TNP2	Amino acid carrier protein	0.000556025739778	0.000380583802193	-0.000175441937585
+UniRef50_Q5HQ95	Cobalt transport family protein	0.0164474368722	0.00250379740831	-0.0139436394639
+UniRef50_F5XZ61	Candidate cytosine deaminase 	0.00310558512113	0.00145396723899	-0.00165161788214
+UniRef50_A4WUN6	ChaC family protein	3.08348946962e-05	5.42117169395e-05	2.33768222433e-05
+UniRef50_Q5HRI6	SdrG protein	0.0043053372442	0.00109141688704	-0.00321392035716
+UniRef50_D6AJJ2	Predicted protein	6.71807294909e-05	0.000325554987993	0.000258374258502
+UniRef50_UPI000470ED8E	hypothetical protein, partial	1.28670613428e-05	1.80366741489e-05	5.1696128061e-06
+UniRef50_Q9RWT4		0.000235438246685	0.0519460892705	0.0517106510238
+UniRef50_S6E1Z6	Red like rubisco 1,5 bisphosphate carboxylase oxygenease form I 	0.000414123057326	9.18488364726e-06	-0.000404938173679
+UniRef50_UPI00047E6722	hypothetical protein	6.75149776873e-06	5.25080286479e-05	4.57565308792e-05
+UniRef50_UPI0003AE08B4	PREDICTED	1.63388598705e-05	2.33039177123e-05	6.9650578418e-06
+UniRef50_M4XCW5		0.000149029591146	0.000831878042813	0.000682848451667
+UniRef50_UPI0004638808	hypothetical protein, partial	0.000127447309763	1.0205860977e-05	-0.000117241448786
+UniRef50_G1Y260		0.000542823830873	0.000255257418853	-0.00028756641202
+UniRef50_Q2RFW5	Ribose 5 phosphate isomerase	0.00671319668019	0.00201300603926	-0.00470019064093
+UniRef50_UPI0004657CE9	peptidoglycan glycosyltransferase	2.40224347108e-06	4.65786628945e-06	2.25562281837e-06
+UniRef50_B7RSE7	Plasmid partitioning protein RepA	2.06001000446e-05	1.24742548114e-05	-8.1258452332e-06
+UniRef50_U2Z6B8	GfdT protein	9.78123590463e-06	4.80811777671e-06	-4.97311812792e-06
+UniRef50_F2N3U1		4.08135857568e-05	5.36517930467e-05	1.28382072899e-05
+UniRef50_Q3IUV5	TraF	0.0293013767069	0.00557410179858	-0.0237272749083
+UniRef50_F0KNJ6		0.000713440944769	0.00508117920664	0.00436773826187
+UniRef50_UPI00047C69BC	multidrug transporter	4.20072353421e-06	1.4317095425e-05	1.01163718908e-05
+UniRef50_C7NCF6	2 nitropropane dioxygenase NPD	0.000255601423552	0.00631014605008	0.00605454462653
+UniRef50_Q9HTK9	Rubredoxin NAD reductase	0.000139122600314	0.000510660578947	0.000371537978633
+UniRef50_Q3JQL8	Bifunctional protein FolD	3.32814568192e-05	0.00150976281981	0.00147648136299
+UniRef50_UPI000382E191	hypothetical protein	8.49920121381e-05	9.60277145054e-06	-7.53892406876e-05
+UniRef50_UPI00047171F6	molybdopterin biosynthesis protein B	0.000120484599966	4.23403278635e-05	-7.81442721025e-05
+UniRef50_B0TI32	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00846520598424	0.00481700514044	-0.0036482008438
+UniRef50_Q9Z9A0	DNA directed RNA polymerase subunit beta	2.725571681e-06	3.42934449604e-06	7.0377281504e-07
+UniRef50_Q8ZN74	tRNA cytidine acetyltransferase TmcA	0.00249240658847	0.000592713532661	-0.00189969305581
+UniRef50_Q2Y8M6	N succinylarginine dihydrolase	1.50837536598e-05	5.0615915139e-05	3.55321614792e-05
+UniRef50_P63229	D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase	0.000223805922247	1.45494721667e-05	-0.00020925645008
+UniRef50_UPI00016C41D3	preprotein translocase subunit SecA	5.83329550424e-06	3.72411265694e-05	3.14078310652e-05
+UniRef50_A1BAM5		2.62952768077e-05	0.000378064849263	0.000351769572455
+UniRef50_UPI0003B3E9C2	cobalamin biosynthesis protein	7.65521839629e-05	0.000377546591003	0.00030099440704
+UniRef50_UPI0003651143	cold shock protein, partial	2.74741363109e-05	1.7161600205e-05	-1.03125361059e-05
+UniRef50_P33348		0.00255970780493	0.00048537799212	-0.00207432981281
+UniRef50_Y5MV84		0.00153477060641	1.65255634518e-05	-0.00151824504296
+UniRef50_UPI0003B3392D	pyridine nucleotide disulfide oxidoreductase	3.83871540707e-06	2.12505022957e-05	1.74117868886e-05
+UniRef50_A0A023B4C6		4.63819422101e-06	1.34859807488e-05	8.84778652779e-06
+UniRef50_Q5DXZ5	Lateral flagellar motor protein B 	0.00407980071436	0.00113377030243	-0.00294603041193
+UniRef50_P45769		0.00207592490052	0.000253853901306	-0.00182207099921
+UniRef50_B9KUP5		0.00204597794229	0.000543940685578	-0.00150203725671
+UniRef50_A7H6H5	Glucose 1 phosphate adenylyltransferase	7.89921593479e-06	1.20789433206e-05	4.17972738581e-06
+UniRef50_Q8G3W4	Permease of ABC transporter for sugars	0.000573414754476	0.00621470856633	0.00564129381185
+UniRef50_UPI00046C05A0	PREDICTED	2.29073575845e-05	9.82149473889e-05	7.53075898044e-05
+UniRef50_Q9ZMZ4	Urease subunit alpha	0.00070094077846	0.0029079147787	0.00220697400024
+UniRef50_Q2NA61	NADH quinone oxidoreductase subunit B	3.24379373945e-05	5.56783487769e-05	2.32404113824e-05
+UniRef50_P43262	Probable phospholipid binding lipoprotein MlaA	0.000822418765628	0.00287856974796	0.00205615098233
+UniRef50_G4LR38		0.0012168056243	0.000239122838212	-0.000977682786088
+UniRef50_A6QE03	Amidase	7.79929729079e-05	0.000405555985165	0.000327563012257
+UniRef50_A7C6L8	Excinuclease ABC subunit A	1.2143137735e-05	6.41820174776e-05	5.20388797426e-05
+UniRef50_UPI0001C373E9	helicase	7.25215787739e-07	1.36584905101e-05	1.29332747224e-05
+UniRef50_S6UH58		0.000124012885587	2.95276839803e-05	-9.44852016067e-05
+UniRef50_UPI000416F2B1	alpha amylase	1.50703172612e-05	1.1011041767e-05	-4.0592754942e-06
+UniRef50_UPI00026CA7A4	anhydro N acetylmuramic acid kinase	8.24970514116e-06	5.41626553079e-05	4.59129501667e-05
+UniRef50_UPI000441A65C	PREDICTED	2.258502536e-05	1.43469943454e-05	-8.2380310146e-06
+UniRef50_Q4ZZY5		8.98670736003e-05	0.000183659762573	9.37926889727e-05
+UniRef50_A0A024HXK5		0.000119486966624	1.45341478699e-05	-0.000104952818754
+UniRef50_UPI0000164D05	cytochrome c oxidase, subunit II	1.19387159242e-06	0.0501669819222	0.0501657880506
+UniRef50_Q6A5B0		0.000427342628894	0.000264726264841	-0.000162616364053
+UniRef50_X1NF36	Marine sediment metagenome DNA, contig	2.55427031798e-05	0.000157001412497	0.000131458709317
+UniRef50_Q5HLC6	Transcriptional regulator, MerR family	0.00817182046483	0.0038622417981	-0.00430957866673
+UniRef50_P44528	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.00103955620248	6.78806695283e-05	-0.000971675532952
+UniRef50_F4GZX9	Amidophosphoribosyltransferase	7.94150046685e-05	0.00497816626972	0.00489875126505
+UniRef50_C6KU11	ABC transporter, permease protein 	8.49810087235e-05	2.90787374061e-05	-5.59022713174e-05
+UniRef50_R9SK19	Histone acetyltransferase ELP3 family	0.00303567994113	0.0011951999861	-0.00184047995503
+UniRef50_B7IB09	Endonuclease exonuclease phosphatase	0.000202284689816	0.00607921344193	0.00587692875211
+UniRef50_R4NJP1	Signal peptidase I	0.0038641561021	0.00352264843809	-0.00034150766401
+UniRef50_Q8FBR8		5.83358310779e-05	3.20496053928e-05	-2.62862256851e-05
+UniRef50_Q46TV5	Amidase	0.000372638057105	0.000124082649234	-0.000248555407871
+UniRef50_Q99W47	Serine aspartate repeat containing protein D	0.0113450053575	0.00172772280502	-0.00961728255248
+UniRef50_UPI000477EDDF	3 methyl 2 oxobutanoate hydroxymethyltransferase	2.34242136993e-05	1.31743773864e-05	-1.02498363129e-05
+UniRef50_B0RYF7	2 methylcitrate hydratase	0.000397261925474	0.00609777103479	0.00570050910932
+UniRef50_B9D5D5		1.98046155458e-05	3.46934103295e-05	1.48887947837e-05
+UniRef50_S6AZR4		0.000272225472725	0.000217945907889	-5.4279564836e-05
+UniRef50_A1B9D8	ABC transporter related protein	0.00223009761593	0.00141733744242	-0.00081276017351
+UniRef50_J3DVI4		8.85346085631e-05	0.000109614272475	2.10796639119e-05
+UniRef50_UPI00047C6BBB	uracil transporter	6.70087451266e-05	0.000168588431059	0.000101579685932
+UniRef50_K0JC90	Mobilization protein A	0.000453282190779	5.87443714917e-05	-0.000394537819287
+UniRef50_UPI0004668D5E	peptidase S11	5.16836570866e-06	2.01302633986e-05	1.49618976899e-05
+UniRef50_A6LZM4		0.000107955954865	0.00162652192923	0.00151856597436
+UniRef50_Q4KGS9	GAF domain cyclic diguanylate phosphodiesterase  domain protein	2.88373856325e-06	6.64639128198e-05	6.35801742565e-05
+UniRef50_B0B7Q0	Pyruvate kinase	3.91561678854e-06	4.63457345603e-06	7.1895666749e-07
+UniRef50_K8NVT8	Diguanylate cyclase  domain containing protein	3.07302012788e-05	1.4247680879e-05	-1.64825203998e-05
+UniRef50_Q3JSP4		0.000142664773573	0.000372743160096	0.000230078386523
+UniRef50_UPI000474188B	dTDP 4 dehydrorhamnose 3,5 epimerase	8.56071548121e-06	1.77246660845e-05	9.16395060329e-06
+UniRef50_S6AGE8		2.1137545491e-05	0.00155605069186	0.00153491314637
+UniRef50_Q96S55	ATPase WRNIP1	2.89653416051e-06	2.51701837151e-05	2.22736495546e-05
+UniRef50_UPI0003B5BF85	ABC transporter	5.03561422951e-06	5.76073234275e-06	7.2511811324e-07
+UniRef50_F8DIK9	Phosphotransferase enzyme family	0.00688999346857	0.00571964218281	-0.00117035128576
+UniRef50_P0AFM3	Glycine betaine binding periplasmic protein	0.0162263459932	0.00563576538334	-0.0105905806099
+UniRef50_UPI00037F68CC	hypothetical protein	2.20300516273e-05	2.81664358737e-05	6.1363842464e-06
+UniRef50_Q4L5D3	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00470589917981	0.00100427916654	-0.00370162001327
+UniRef50_A6LWI6	GAF domain containing protein	0.00879897661091	0.00562201924473	-0.00317695736618
+UniRef50_Q9PBC7	Histidine biosynthesis bifunctional protein HisB	0.00310240144229	0.00406581295447	0.00096341151218
+UniRef50_C0RG90	3 phosphoshikimate 1 carboxyvinyltransferase	0.000509206598127	0.000297339965658	-0.000211866632469
+UniRef50_E3ZQM3	YqeL	5.18276229346e-05	0.000667388171693	0.000615560548758
+UniRef50_P72139	Putative imidazole glycerol phosphate synthase subunit hisF2	0.000673684748627	0.000685753825043	1.2069076416e-05
+UniRef50_B2G6L2	Isoleucine  tRNA ligase	0.0169144496618	0.0144477881506	-0.0024666615112
+UniRef50_D5E389	Relaxase mobilization nuclease domain protein	0.000301922124451	3.64831600988e-05	-0.000265438964352
+UniRef50_F7F1K1		2.82110713739e-06	4.18458795825e-05	3.90247724451e-05
+UniRef50_B2S6U9	Carbamoyl phosphate synthase small chain	0.00219617592887	0.000177367390508	-0.00201880853836
+UniRef50_A0A058ZGI8		1.81254548438e-05	1.37027183802e-05	-4.4227364636e-06
+UniRef50_UPI00047EBD86	hypothetical protein, partial	2.6286981689e-06	1.33686134264e-05	1.07399152575e-05
+UniRef50_X1RQI5	Marine sediment metagenome DNA, contig	1.89212973806e-05	1.49858692221e-05	-3.9354281585e-06
+UniRef50_O66605	Lon protease	1.68699879454e-06	3.52058654758e-05	3.35188666813e-05
+UniRef50_Q653B9		7.814703027e-05	8.63424200089e-05	8.1953897389e-06
+UniRef50_UPI00047DCF6D	dTDP 4 dehydrorhamnose 3,5 epimerase	3.23015347689e-05	1.77713318235e-05	-1.45302029454e-05
+UniRef50_UPI0004418B4E	PREDICTED	1.45127312878e-05	1.45063699849e-05	-6.3613029e-09
+UniRef50_P37024	ATP dependent RNA helicase HrpB	0.000419171202939	0.000266051085761	-0.000153120117178
+UniRef50_P45404	Cytochrome c type biogenesis protein CycK	0.00582054680958	0.000492232903064	-0.00532831390652
+UniRef50_E6SIK1	Xanthine uracil vitamin C permease	0.00030581571671	0.0233851465464	0.0230793308297
+UniRef50_Q8FT67	Triosephosphate isomerase	6.72502513686e-06	9.64470854778e-05	8.97220603409e-05
+UniRef50_L0A7V5	ABC type Fe3+ hydroxamate transport system, periplasmic component	3.67252879385e-05	0.00645472485436	0.00641799956642
+UniRef50_UPI000378926F	Gnt II system L idonate transporter IdnT, partial	5.22725372676e-06	7.95226320055e-06	2.72500947379e-06
+UniRef50_UPI0004628F03	hypothetical protein	2.47269880895e-05	0.000123936640101	9.92096520115e-05
+UniRef50_E3D2E3		0.00017584751034	0.00416816044096	0.00399231293062
+UniRef50_Q9RYE7	Chromosomal replication initiator protein DnaA	0.000368994553624	0.0365186791701	0.0361496846165
+UniRef50_B9KTR9		0.000382809495942	0.000743423810463	0.000360614314521
+UniRef50_UPI00037D79FE	hypothetical protein	1.71290884847e-05	1.69137024146e-05	-2.153860701e-07
+UniRef50_Q5X183		0.000237911337508	0.00742330784886	0.00718539651135
+UniRef50_Q5HEM7	DNA polymerase IV	0.0210533921232	0.00446629078494	-0.0165871013383
+UniRef50_B9KTR7		0.000163829099272	0.000154276823989	-9.552275283e-06
+UniRef50_E9C843		1.2052593655e-05	1.83121313845e-06	-1.02213805166e-05
+UniRef50_F3U3B9		0.000631326331853	2.51256024573e-05	-0.000606200729396
+UniRef50_Q5M4V7	Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein	0.00359327886167	0.00417542386488	0.00058214500321
+UniRef50_UPI0003B3970A	arylesterase	6.3378293779e-06	1.01839023136e-05	3.8460729357e-06
+UniRef50_UPI0003C73AEA	oxidoreductase	0.000165808094573	0.000426347620372	0.000260539525799
+UniRef50_W5Y8E7		6.00723780228e-05	2.06848599848e-05	-3.9387518038e-05
+UniRef50_UPI000360A00D	phage tail protein	2.03991863168e-05	2.99255321412e-05	9.5263458244e-06
+UniRef50_L7WUC8	HesA MoeB ThiF family protein	0.0128625759007	0.00109975190756	-0.0117628239931
+UniRef50_A6TKL7		2.06972554821e-05	3.71459436328e-05	1.64486881507e-05
+UniRef50_M4UHU9		0.00067323607527	7.32546582621e-06	-0.000665910609444
+UniRef50_I6TYT4	Transposase IS204 IS1001 IS1096 IS1165 family protein	0.00166847820395	0.00191516656741	0.00024668836346
+UniRef50_S2ZWU0		2.18537965716e-05	7.43670485448e-05	5.25132519732e-05
+UniRef50_Q06115	Choloylglycine hydrolase	0.00284910920615	0.00173336964275	-0.0011157395634
+UniRef50_P25553	Lactaldehyde dehydrogenase	6.43372947443e-06	0.0057758096017	0.00576937587223
+UniRef50_M9R5B4	Aminotransferase	0.00110287735399	0.000223161238178	-0.000879716115812
+UniRef50_Q9DWG9	Pr23.1	6.88629852005e-05	4.97131945548e-05	-1.91497906457e-05
+UniRef50_P17334	N,N diacetylchitobiose permease IIC component	0.00242783908131	0.00102949482912	-0.00139834425219
+UniRef50_UPI00021962A1	ABC type polar amino acid transport system, ATPase component, partial	1.66703311327e-05	1.73800840618e-05	7.097529291e-07
+UniRef50_UPI0003A69976	hypothetical protein	3.43109044047e-05	2.75755099816e-05	-6.7353944231e-06
+UniRef50_Q834B3	Phosphate import ATP binding protein PstB 2	1.2629692219e-05	0.000350098827533	0.000337469135314
+UniRef50_R9ZFP1	MFS transporter	0.000104086210166	0.000358296517874	0.000254210307708
+UniRef50_Q49ZN6	N acetylmuramic acid 6 phosphate etherase	7.80930351724e-06	1.11704058536e-05	3.36110233636e-06
+UniRef50_K8E2U7	ABC transporter, CydDC cysteine exporter  family, permease ATP binding protein CydD	0.000467111196855	0.0016261327558	0.00115902155894
+UniRef50_A3M2G5	Transposition Helper	0.00036296729697	0.00889775268894	0.00853478539197
+UniRef50_C5Y3F1		6.93744129686e-06	2.52463690816e-05	1.83089277847e-05
+UniRef50_K0SHL6		0.000513563461443	0.000101260910386	-0.000412302551057
+UniRef50_D3RCC5	Ethanolamine utilisation protein EutH	0.00128451279398	0.00163383718916	0.00034932439518
+UniRef50_J7R0T4	Rhsg core protein with extension	0.00404797171324	0.00121444599548	-0.00283352571776
+UniRef50_P20384	Putative transposon Tn552 DNA invertase bin3	0.10471001284	0.0142939386056	-0.0904160742344
+UniRef50_P19672	Putative rRNA methyltransferase YqxC	1.76627683497e-05	0.00508048506365	0.0050628222953
+UniRef50_W9BCF0	Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	2.54749945824e-05	3.35288037946e-05	8.0538092122e-06
+UniRef50_M3Z7R3		3.86294330453e-05	1.74725518625e-05	-2.11568811828e-05
+UniRef50_F0KK38		0.000270922958506	0.0082986334321	0.00802771047359
+UniRef50_N6VAB0		0.000170409687593	5.54253071778e-05	-0.000114984380415
+UniRef50_Q2P582	Aspartate  tRNA ligase	0.00460973211363	0.00470714839121	9.741627758e-05
+UniRef50_A1JSC3	UvrABC system protein B	0.000798449460941	0.000400692295175	-0.000397757165766
+UniRef50_O26273	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00230308016908	0.000782461541859	-0.00152061862722
+UniRef50_P37772	Inner membrane ABC transporter permease protein YjfF	0.00333839211359	0.00105283869912	-0.00228555341447
+UniRef50_A0A026SW65		1.42853735793e-06	7.26648678921e-05	7.12363305342e-05
+UniRef50_G8WJX8		2.2542552207e-05	8.32388635744e-05	6.06963113674e-05
+UniRef50_F0YA18		9.70821255751e-05	0.000333668144057	0.000236586018482
+UniRef50_UPI000368DC29	hypothetical protein	8.5600510081e-05	0.000130891511488	4.5291001407e-05
+UniRef50_UPI00029A2592	dihydrolipoamide dehydrogenase, partial	3.39935488234e-05	8.1094744461e-05	4.71011956376e-05
+UniRef50_P39858	Protein CapI	1.10882925713e-05	0.000592472033592	0.000581383741021
+UniRef50_R4KAB8	High affinity sulfate transporter 1	0.000511003436081	0.000991920492529	0.000480917056448
+UniRef50_P67185	Probable transcriptional regulatory protein SAG1645	0.0136585197178	0.0127185628028	-0.000939956915
+UniRef50_D4HEB6	Ribosomal subunit interface protein	0.000180327701681	0.000638996201181	0.0004586684995
+UniRef50_S3NMU2		0.000187571481725	0.00666265810004	0.00647508661831
+UniRef50_B7H1L0	EpsC	0.000481980756962	0.00523259545152	0.00475061469456
+UniRef50_B6TJX5	Grx_I1 glutaredoxin subgroup III	0.000268992391105	0.000185430109167	-8.3562281938e-05
+UniRef50_V5VA90		0.000126815001857	0.0131509575083	0.0130241425064
+UniRef50_UPI0003DE9A9C	PREDICTED	1.53395802631e-05	0.000836015603976	0.000820676023713
+UniRef50_M4QX62	General secretion pathway protein D	5.24528933048e-05	0.00729011123658	0.00723765834328
+UniRef50_P56123	Ribonuclease R	6.27400535489e-05	0.00405287445556	0.00399013440201
+UniRef50_A6TXF8	Histidine ammonia lyase	0.0117471459976	0.0019242029618	-0.0098229430358
+UniRef50_Q9RU93	NADH dehydrogenase I, G subunit	0.000118427669881	0.0165339916394	0.0164155639695
+UniRef50_H9JIZ2		0.000224465617097	4.70482656792e-05	-0.000177417351418
+UniRef50_UPI00016C363F	CheA signal transduction histidine kinase, partial	6.33645259553e-05	7.34956366756e-05	1.01311107203e-05
+UniRef50_C6XJS7	Membrane protein	1.88509248458e-05	5.86854247297e-05	3.98344998839e-05
+UniRef50_D4HDP4	Transcriptional regulator, MerR family	0.000565831322848	0.00714119684451	0.00657536552166
+UniRef50_S6VQV4	GlcG protein 	3.15610562223e-05	8.55312365878e-05	5.39701803655e-05
+UniRef50_Q3HKF7	Transcriptional regulator, LysR family	0.00693773465229	0.00171023942075	-0.00522749523154
+UniRef50_Q48KH7	Response regulator	0.000427602384119	0.00199675362471	0.00156915124059
+UniRef50_Q4THH6	Chromosome undetermined SCAF2934, whole genome shotgun sequence. 	0.00022033188776	5.73858704506e-06	-0.000214593300715
+UniRef50_B5YJD3	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.92081699906e-05	3.43694947412e-06	-1.57712205165e-05
+UniRef50_Q02441	Denitrification regulatory protein NirQ	0.00843808006112	0.00209534084601	-0.00634273921511
+UniRef50_A6D100		3.1928899509e-06	9.29418958025e-05	8.97490058516e-05
+UniRef50_E4ZAN9	NADH dehydrogenase I chain J	0.00017055089858	0.00253261362313	0.00236206272455
+UniRef50_Q92IH1	DNA topoisomerase 1	5.41173041607e-06	5.14764548942e-06	-2.6408492665e-07
+UniRef50_R6GIU2	Anaerobic sulfite reductase subunit C	0.00044298054813	0.00191250546997	0.00146952492184
+UniRef50_UPI000478777B	adenosine deaminase	2.00422032906e-05	4.54724725793e-05	2.54302692887e-05
+UniRef50_Q56220	NADH quinone oxidoreductase subunit 4	9.49286506404e-06	9.17414583619e-05	8.22485932979e-05
+UniRef50_A1SS95	Prolipoprotein diacylglyceryl transferase	0.000600584428659	0.0072837907848	0.00668320635614
+UniRef50_UPI00035E9ADC	hypothetical protein	7.54738020193e-06	0.000103062445205	9.55150650031e-05
+UniRef50_Q30TV4	50S ribosomal protein L14	0.032661496305	0.0035538767047	-0.0291076196003
+UniRef50_UPI0003788832	hypothetical protein	1.32678123066e-06	1.51707448802e-05	1.38439636495e-05
+UniRef50_V1GSR8	Siderophore interacting protein	0.000448667557334	0.000355803259269	-9.2864298065e-05
+UniRef50_U4KCQ5	Isoleucine  tRNA ligase	0.00101101415417	0.000480109193642	-0.000530904960528
+UniRef50_K7RTE7	UvrD REP helicase	0.000225522113463	0.004821075346	0.00459555323254
+UniRef50_I6U2U0	Permease	0.0122627903853	0.00290593248843	-0.00935685789687
+UniRef50_Q5FJI8	Acyl carrier protein	2.43750335277e-05	4.67615004598e-05	2.23864669321e-05
+UniRef50_UPI000476D930	phosphopantetheine adenylyltransferase	2.50451620642e-05	1.68717720966e-05	-8.1733899676e-06
+UniRef50_W8VWJ7		0.000987053417958	0.00218753114959	0.00120047773163
+UniRef50_A5D1G8	Methylthioribose 1 phosphate isomerase	0.000466501223218	0.00138239636781	0.000915895144592
+UniRef50_UPI00047CDE52	hypothetical protein	7.34416778829e-06	1.71365397594e-05	9.79237197111e-06
+UniRef50_Q2FH48	Phosphate binding protein PstS	0.0157006897857	0.00402567587681	-0.0116750139089
+UniRef50_Q5F4W9	Maf like protein NGO2175	0.000225140748821	0.00346288419572	0.0032377434469
+UniRef50_Q732I6	Orotidine 5 phosphate decarboxylase	0.0185636621689	0.0192418254175	0.0006781632486
+UniRef50_P76612		0.00196197953795	0.000416626258262	-0.00154535327969
+UniRef50_L1K5J8		0.0102508962883	0.00018072218278	-0.0100701741055
+UniRef50_B2EBX5		0.0001120428719	0.000237634676795	0.000125591804895
+UniRef50_S6VZ76	Inner membrane translocator 	0.00062355697263	7.79797316464e-05	-0.000545577240984
+UniRef50_UPI0003B71E48	RNA polymerase subunit sigma 54	1.68506773741e-05	4.07131824725e-05	2.38625050984e-05
+UniRef50_P02930	Outer membrane protein TolC	0.00307235143049	0.00166997742763	-0.00140237400286
+UniRef50_A7ZK67	Methylglyoxal synthase	0.00359829496077	0.00380741303336	0.00020911807259
+UniRef50_G2UGP7	Putative membrane protein	2.54772868019e-05	0.000624358542957	0.000598881256155
+UniRef50_F2B298	Archaeal DNA polymerase II, large subunit	1.74794003368e-05	2.0581046512e-05	3.1016461752e-06
+UniRef50_Q9DWH3	Pr5	6.18491516412e-05	9.50590252783e-05	3.32098736371e-05
+UniRef50_UPI00046774C4	phosphoserine phosphatase	5.66450792158e-06	1.24723524107e-05	6.80784448912e-06
+UniRef50_X6JA50		4.09787025675e-05	1.88551024801e-05	-2.21236000874e-05
+UniRef50_UPI0003752D0D	hypothetical protein	1.53903569265e-05	2.55692576411e-05	1.01789007146e-05
+UniRef50_Q8CTJ5		0.0178323973825	0.00553655765373	-0.0122958397288
+UniRef50_Q4UKI8	2 oxoglutarate dehydrogenase E1 component	1.5799977335e-06	1.22910629901e-05	1.07110652566e-05
+UniRef50_Q5F5X5		0.000160177930206	0.00170193674714	0.00154175881693
+UniRef50_O25441		0.000118087379206	0.00603712051017	0.00591903313096
+UniRef50_A1U1S9	Acyl carrier protein	3.62717600622e-05	4.6896223492e-05	1.06244634298e-05
+UniRef50_D9SSR9	ABC transporter related	0.000140290881731	0.00274989629911	0.00260960541738
+UniRef50_C5FF74	Splicing factor 3B subunit 4	2.61245071292e-05	2.31331994839e-05	-2.9913076453e-06
+UniRef50_UPI00037E81F2	MULTISPECIES	7.21226107067e-05	4.56287243231e-05	-2.64938863836e-05
+UniRef50_D0K3P4	Sua5 YciO YrdC YwlC family protein	0.0141575354225	0.000341406595601	-0.0138161288269
+UniRef50_Q5HDX9	Adenylate kinase	0.0212267216232	0.00581124298033	-0.0154154786429
+UniRef50_B2IR65		0.00421530084046	0.00866819375854	0.00445289291808
+UniRef50_P0A5W9	Ribonucleoside diphosphate reductase subunit alpha	0.00252396363211	0.0108357020548	0.00831173842269
+UniRef50_Q5HK23	Ribosomal RNA large subunit methyltransferase H	0.00872235820874	0.00114224991911	-0.00758010828963
+UniRef50_D5H605		3.1570149973e-05	1.13889882103e-05	-2.01811617627e-05
+UniRef50_V8NVA5	Vegetative cell wall protein gp1	2.04469755447e-05	0.00028214971834	0.000261702742795
+UniRef50_T0GPL5		0.000323103934666	0.00016067538887	-0.000162428545796
+UniRef50_B7GX14	Probable 5 dehydro 4 deoxyglucarate dehydratase	0.000131518480593	0.00504257433128	0.00491105585069
+UniRef50_A4X329	Transcriptional regulator, LacI family	0.000106334081372	0.00407252271976	0.00396618863839
+UniRef50_Q837B3	Methionine  tRNA ligase	2.03105378809e-05	0.000535848122554	0.000515537584673
+UniRef50_K2DQ88		2.03127504433e-05	0.00178837402907	0.00176806127863
+UniRef50_P52002	Multidrug resistance protein MexB	0.00208737017076	0.00135063013479	-0.00073674003597
+UniRef50_UPI00039FB6D9	hypothetical protein	4.58203851822e-07	6.29603294781e-05	6.25021256263e-05
+UniRef50_UPI0004153B49	hypothetical protein	3.67592727076e-05	7.83179687777e-06	-2.89274758298e-05
+UniRef50_Q5HJ26	Single stranded DNA binding protein 2	0.00327825028214	0.000516588988672	-0.00276166129347
+UniRef50_UPI000378D9CD	hypothetical protein, partial	7.86718978569e-06	0.000399144615115	0.000391277425329
+UniRef50_E3I295	Peptidase M20	0.0035318852967	0.000877903916283	-0.00265398138042
+UniRef50_V7EQE6		5.28182944685e-06	2.88254303055e-06	-2.3992864163e-06
+UniRef50_P96963	DNA repair protein RadA homolog	0.000317069060138	0.000131349164648	-0.00018571989549
+UniRef50_UPI000197AB3D	hypothetical protein	2.82386295234e-05	9.17121010581e-06	-1.90674194176e-05
+UniRef50_Q3ACZ7	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000143610053598	8.2116093624e-06	-0.000135398444236
+UniRef50_R9SL16	Energy converting hydrogenase A subunit P EhaP	0.00372036916144	0.00140836644364	-0.0023120027178
+UniRef50_H2JC94	Drug resistance transporter, EmrB QacA subfamily	0.000209375239973	0.00191360452669	0.00170422928672
+UniRef50_D7FCY4		7.50966821352e-05	0.00209196557611	0.00201686889397
+UniRef50_O30807	NAD dependent malic enzyme	0.00625405170713	0.00258693534741	-0.00366711635972
+UniRef50_T1YCF9		0.0109443514391	0.00473747828956	-0.00620687314954
+UniRef50_UPI000367099C	30S ribosomal protein S2	1.16223701895e-05	1.04244194839e-05	-1.1979507056e-06
+UniRef50_UPI00036ED496	hypothetical protein	3.78987397056e-05	1.05410237375e-05	-2.73577159681e-05
+UniRef50_D3QF63		0.0217426656039	0.00467904781824	-0.0170636177857
+UniRef50_G8RGA7	ATP dependent DNA helicase, RecQ family	0.00889067289667	0.00150816518683	-0.00738250770984
+UniRef50_UPI00046621BD	hypothetical protein	2.97933471938e-06	9.86055100277e-05	9.56261753083e-05
+UniRef50_UPI00034B9DA0	hypothetical protein	3.24534355801e-06	6.25111964113e-06	3.00577608312e-06
+UniRef50_Q39FG9		1.98903966321e-05	4.66364665681e-05	2.6746069936e-05
+UniRef50_Q8X6C5	Xanthine dehydrogenase FAD binding subunit	0.00256421807551	0.000660389106651	-0.00190382896886
+UniRef50_J0PUR2		0.000389696812655	0.000105997482871	-0.000283699329784
+UniRef50_Q8NNF6	Pyruvate dehydrogenase E1 component	0.00021396276354	0.00415500087294	0.0039410381094
+UniRef50_UPI00035DD0A3	hypothetical protein	1.82280404061e-05	0.00187305795321	0.0018548299128
+UniRef50_B9L9V6	Inner membrane protein YjcH	0.000182049892004	6.39934054844e-05	-0.00011805648652
+UniRef50_P0AFN4	Phage shock protein C	0.00429672991919	0.00175435666453	-0.00254237325466
+UniRef50_Q3ZTZ2		1.00342729469e-05	1.42076590748e-05	4.1733861279e-06
+UniRef50_E1RPL7		2.35487204541e-05	3.68455028343e-05	1.32967823802e-05
+UniRef50_UPI00040408E0	hypothetical protein	1.31454943213e-05	3.75553480562e-05	2.44098537349e-05
+UniRef50_V4QZ67	ATPase	9.49117849326e-05	7.77178239014e-05	-1.71939610312e-05
+UniRef50_Q5HNT4	Putative Holliday junction resolvase	0.00227268171505	0.00087734816672	-0.00139533354833
+UniRef50_X6KWG2		1.6203796048e-05	4.51811738646e-06	-1.16856786615e-05
+UniRef50_Q6F6Q1		0.000476630428599	0.00899468350563	0.00851805307703
+UniRef50_A0L3B2	Diguanylate cyclase with GAF sensor	1.07582720557e-05	0.000466675098863	0.000455916826807
+UniRef50_P67702	Antitoxin HigA	0.00109153208873	0.000851875111142	-0.000239656977588
+UniRef50_N8J4Y3	sn glycerol 3 phosphate binding periplasmic protein ugpB	3.83386868628e-05	1.57989452983e-05	-2.25397415645e-05
+UniRef50_K7ARY8		0.000376892291542	0.000438170753534	6.1278461992e-05
+UniRef50_Q57SA8	7 cyano 7 deazaguanine synthase	0.0107139216711	0.0029542547064	-0.0077596669647
+UniRef50_B2VDK4	Acyl carrier protein	4.02282145421e-05	5.3495590544e-05	1.32673760019e-05
+UniRef50_B1Y7H6	50S ribosomal protein L1	0.000164124342977	0.00421378696364	0.00404966262066
+UniRef50_M4YP28	Chemotaxis protein	0.00029325353962	0.00101167241705	0.00071841887743
+UniRef50_A3M533	Lysozyme	0.00179755232787	0.00877846249942	0.00698091017155
+UniRef50_K6EM30	Peptidase S8 and S53 subtilisin kexin sedolisin 	5.3287527204e-05	3.7444360177e-05	-1.5843167027e-05
+UniRef50_Q5HQ05	Laccase domain protein SERP0752	0.0223210350798	0.00517606181332	-0.0171449732665
+UniRef50_C5AB28		0.000484998188473	0.000604744106207	0.000119745917734
+UniRef50_UPI0004694578	30S ribosomal protein S15	0.000281416437767	5.16918904623e-05	-0.000229724547305
+UniRef50_Q04EV5	Arginine deiminase	0.0313816321175	0.0104047249468	-0.0209769071707
+UniRef50_Q1J141	Xanthine phosphoribosyltransferase	8.4823076815e-06	0.0503713880633	0.0503629057556
+UniRef50_Q5ZS58	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.92100490441e-05	9.58639406022e-06	-9.62365498388e-06
+UniRef50_I2FAM4	SpfH domain band 7 family protein	0.000107138880474	0.00418056465647	0.004073425776
+UniRef50_F7ZBN3		0.0130693648902	0.00154561859991	-0.0115237462903
+UniRef50_A1B198	4 hydroxyproline betaine 2 epimerase	0.00193978508911	0.000329397567353	-0.00161038752176
+UniRef50_G8QM91		3.59350329834e-06	1.14599582012e-05	7.86645490286e-06
+UniRef50_B9KJK7		0.000726568747469	0.000553513782872	-0.000173054964597
+UniRef50_UPI00036F49F7	hypothetical protein	1.30121197297e-05	0.000243758610021	0.000230746490291
+UniRef50_P75938	Flagellar basal body rod protein FlgF	0.00325817232253	0.000234378337464	-0.00302379398507
+UniRef50_A0A011Q6F6	Ribosomal RNA small subunit methyltransferase I	3.23141813121e-05	9.35460427811e-06	-2.2959577034e-05
+UniRef50_L7HXW0		2.22389871098e-05	1.23032846542e-05	-9.9357024556e-06
+UniRef50_K1V2Z1		0.00121274062033	0.00110043028406	-0.00011231033627
+UniRef50_J3M0X2		9.10612646704e-06	0.000175408750172	0.000166302623705
+UniRef50_T1YBW3	ABC transporter ATP binding and permease protein	0.0106305153567	0.00374470288152	-0.00688581247518
+UniRef50_Q216W2	Transcriptional regulator, GntR family	0.00119037347493	0.000803250551747	-0.000387122923183
+UniRef50_B9KU54		0.00221799677066	7.64921321693e-05	-0.00214150463849
+UniRef50_D8JAP3	ABC transporter	0.000259151999593	7.24189534428e-05	-0.00018673304615
+UniRef50_C4K764	Phosphopantetheine adenylyltransferase	5.56486666863e-05	2.59224291451e-05	-2.97262375412e-05
+UniRef50_Q9RWE3		0.000131528219109	0.0155940543345	0.0154625261154
+UniRef50_A4BRR9		9.24206887868e-05	2.91450418242e-05	-6.32756469626e-05
+UniRef50_F0RR64		0.000846315859607	0.301362181458	0.300515865598
+UniRef50_A5IUW4	Transport system permease protein	0.0195898797271	0.00793448507321	-0.0116553946539
+UniRef50_L2Z1P6	Evolved beta galactosidase subunit alpha	0.001210547833	0.00017361951133	-0.00103692832167
+UniRef50_F6BWB1	Transcriptional regulator, MerR family	0.0145319279065	0.0131902381243	-0.0013416897822
+UniRef50_I4SHI8	Rhs core protein with extension	0.000368619629915	0.000191556781752	-0.000177062848163
+UniRef50_UPI00018513F7	Acyl CoA dehydrogenase	5.90916572611e-06	1.17655589858e-05	5.85639325969e-06
+UniRef50_K0SMT2		7.76238838834e-06	3.10956498172e-05	2.33332614289e-05
+UniRef50_UPI00037E2E9B	hypothetical protein	9.3905472127e-05	0.000195315636629	0.000101410164502
+UniRef50_A8KZZ6	ABC transporter related	7.82624717782e-05	0.00511213272173	0.00503387024995
+UniRef50_UPI0003735C5A	hypothetical protein	3.34342149463e-05	2.04919650784e-05	-1.29422498679e-05
+UniRef50_A5FWE5		3.93091219731e-05	0.000101004519045	6.16953970719e-05
+UniRef50_A6T7G7	UPF0227 protein KPN78578_10770	0.00118682373879	0.000327523148093	-0.000859300590697
+UniRef50_F8IMA6	Transposase	1.57407456725e-05	3.16118340694e-05	1.58710883969e-05
+UniRef50_A3DJF6	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.29341413128e-05	1.91631978345e-05	6.2290565217e-06
+UniRef50_F6GAA5		1.24331211052e-05	8.95759440317e-06	-3.47552670203e-06
+UniRef50_Q8DIA7	Phosphoribosylformylglycinamidine synthase 2	2.75870718254e-05	6.19807600038e-06	-2.1388995825e-05
+UniRef50_R6QY26	FAD dependent oxidoreductase	0.000428742249967	0.000547339060729	0.000118596810762
+UniRef50_UPI000475B264	glyoxal reductase	2.31886027958e-05	3.52995108814e-05	1.21109080856e-05
+UniRef50_A8YZY5	Anthranilate synthase	0.019819210937	0.00823369651212	-0.0115855144249
+UniRef50_Q9ZIJ1	Gluconate permease	0.000715049044288	0.00476801060226	0.00405296155797
+UniRef50_K0LVM3	Fructose phosphotransferase system enzyme fruA homolog	0.0130498656042	0.00434863162488	-0.00870123397932
+UniRef50_UPI00047E7610	peroxiredoxin	1.11570069838e-05	0.000140028250214	0.00012887124323
+UniRef50_UPI0001912667	hypothetical protein	0.000845963288604	0.000214395244822	-0.000631568043782
+UniRef50_A4J4I2	Glucose 1 phosphate adenylyltransferase	0.000567924791033	0.00211200048872	0.00154407569769
+UniRef50_P42425	Lon protease 2	6.80563681868e-05	0.00105715087767	0.000989094509483
+UniRef50_W7Z889		7.86599446498e-06	1.34590878925e-05	5.59309342752e-06
+UniRef50_I2NPW1		1.1316828138e-05	0.000316415700282	0.000305098872144
+UniRef50_A0L4I8	Transcriptional regulator, BolA protein family	3.16754093137e-05	5.10961821583e-05	1.94207728446e-05
+UniRef50_A6M0C5	Metallophosphoesterase	0.00104671728094	0.00189499835587	0.00084828107493
+UniRef50_UPI000399D7FF	dihydrolipoyl dehydrogenase	3.87224790647e-06	5.84226790888e-06	1.97002000241e-06
+UniRef50_Q6A9R0	Ribosomal RNA small subunit methyltransferase H	0.000278292766648	0.00218833950979	0.00191004674314
+UniRef50_UPI0004414ABB	LamB YcsF family protein	5.77368724286e-05	4.43604798223e-05	-1.33763926063e-05
+UniRef50_Q9I3J5	5 hydroxyisourate hydrolase	0.00388162789272	0.00192137387409	-0.00196025401863
+UniRef50_Q7DKE3	Nitrile hydratase activator	5.3152777933e-06	6.45843554743e-06	1.14315775413e-06
+UniRef50_C5MZU9	Formate nitrite transporter	0.0238758918873	0.00647110925669	-0.0174047826306
+UniRef50_UPI000364C078	hypothetical protein	5.59382215456e-05	1.86382696268e-05	-3.72999519188e-05
+UniRef50_Q88Z97	Methionine  tRNA ligase	0.011407950296	0.00291596640528	-0.00849198389072
+UniRef50_X2HX12	Membrane protein	0.000220752040266	0.0036277104479	0.00340695840763
+UniRef50_E3HGU2	Oxidoreductase FAD binding domain protein 3	0.000214023427242	0.00018248200115	-3.1541426092e-05
+UniRef50_UPI0001816FFE	transposase	0.000134295121259	4.60934723138e-06	-0.000129685774028
+UniRef50_K8C391		2.30136252884e-05	0.000212797189621	0.000189783564333
+UniRef50_P28998	NADP specific glutamate dehydrogenase 	0.000101533899186	0.0151768348663	0.0150753009671
+UniRef50_UPI00029B44FF	UDP N acetylglucosamine 1 carboxyvinyltransferase	1.18488096219e-05	1.56444469029e-05	3.795637281e-06
+UniRef50_A0RUI8	Proline  tRNA ligase	3.8419952658e-06	1.7110977547e-05	1.32689822812e-05
+UniRef50_B2TJ76	Tetratricopeptide repeat domain protein	0.000268100697518	0.00272903020465	0.00246092950713
+UniRef50_A0A023S0D0	LysR family transcriptional regulator	0.000147072463189	0.00597869561808	0.00583162315489
+UniRef50_K0S2A3		4.76220560023e-05	5.03166655891e-05	2.6946095868e-06
+UniRef50_UPI0002DDE7B4	nitrate nitrite transport protein NarU	3.3866149284e-05	0.000134151609726	0.000100285460442
+UniRef50_G2AG81	Protein ydeP domain protein	0.000180327701681	0.00068694956856	0.000506621866879
+UniRef50_Q92ID5	NADH quinone oxidoreductase subunit A	0.0006222343482	0.00109848940743	0.00047625505923
+UniRef50_UPI00046263A7	PREDICTED	1.15637014494e-05	9.45190054243e-06	-2.11180090697e-06
+UniRef50_F3ZH54	Putative xanthine dehydrogenase YagT iron sulfur binding subunit	3.96804776801e-05	0.000323768949486	0.000284088471806
+UniRef50_P55611	Probable trehalose phosphate phosphatase	1.92109556561e-05	2.16597624687e-05	2.4488068126e-06
+UniRef50_UPI000378EE70	hypothetical protein	5.37898734179e-06	2.21950341619e-05	1.68160468201e-05
+UniRef50_A4Y1A0	Membrane protein insertase YidC	0.000493008721335	0.000952102583469	0.000459093862134
+UniRef50_X2MVD0		0.0034321860727	0.00362525870448	0.00019307263178
+UniRef50_B9KWB3		0.00105662842704	0.00158205377784	0.0005254253508
+UniRef50_F3ZFZ6		2.30789690417e-05	0.00183342994618	0.00181035097714
+UniRef50_A8IHG6	Predicted protein	8.62825117371e-05	2.02654592268e-05	-6.60170525103e-05
+UniRef50_Q1QCK7	Glutamate synthase 	8.79237551642e-05	0.00539877254308	0.00531084878792
+UniRef50_J0KVM1		0.00020367949039	0.00130959946019	0.0011059199698
+UniRef50_C6SPT4		1.30773292188e-05	1.20666945286e-05	-1.0106346902e-06
+UniRef50_UPI000309C6DF	N acetyl gamma glutamyl phosphate reductase	4.80840008271e-06	7.78347927058e-05	7.30263926231e-05
+UniRef50_UPI000375AEDF	hypothetical protein	4.25450726983e-06	4.64529906934e-06	3.9079179951e-07
+UniRef50_B4JDR2	GH10507	7.87503365387e-07	1.3128287887e-06	5.25325423313e-07
+UniRef50_U6UKQ1	Hydroxylamine reductase	0.00249977955003	0.00195837527372	-0.00054140427631
+UniRef50_P26512	Aspartokinase	0.000305211855141	0.00292512211429	0.00261991025915
+UniRef50_W4TKQ6		6.02203169636e-06	0.000175926130882	0.000169904099186
+UniRef50_UPI000463F4EC	LamB YcsF family protein	0.000125163450537	5.06938369323e-05	-7.44696136047e-05
+UniRef50_G2JZ43	Carnitine transport permease protein OpuCB	0.0240809615487	0.00622899294388	-0.0178519686048
+UniRef50_UPI00047A693B	chemotaxis protein CheY	0.000147456717649	9.5615594769e-05	-5.184112288e-05
+UniRef50_J8VGX4		0.000258128433292	6.75225369695e-05	-0.000190605896322
+UniRef50_UPI00045746A5	PREDICTED	6.06270802374e-06	5.53479271961e-06	-5.2791530413e-07
+UniRef50_UPI00046E1FAA	PREDICTED	2.3672919339e-06	1.45269163907e-05	1.21596244568e-05
+UniRef50_P32154	Fructose like PTS system EIIBC component	0.00297470779452	0.00126667182506	-0.00170803596946
+UniRef50_M9VG84	Class I glutamine amidotransferase	0.000770339635806	0.00383588308913	0.00306554345332
+UniRef50_UPI0003B3C78A	acyl CoA synthetase	4.28009801137e-06	4.72697271789e-05	4.29896291675e-05
+UniRef50_B7IPS6	Prolipoprotein diacylglyceryl transferase	7.39549303693e-06	0.000950354969344	0.000942959476307
+UniRef50_D3DYK7	ATPase	0.00281018126737	0.00141441206235	-0.00139576920502
+UniRef50_UPI000225AB9D	3 oxoacyl ACP synthase	3.78193190808e-05	2.18405556334e-05	-1.59787634474e-05
+UniRef50_Q57GZ6	Maltoporin	0.00286651406003	0.00150177096013	-0.0013647430999
+UniRef50_R6ZP96		7.70019119217e-05	3.30663482176e-05	-4.39355637041e-05
+UniRef50_Q59660	Succinate dehydrogenase hydrophobic membrane anchor subunit	0.00583710041677	0.000649348392465	-0.00518775202431
+UniRef50_B6IRS5	50S ribosomal protein L15	0.000258552047156	0.00384645017588	0.00358789812872
+UniRef50_C6D8U7		0.000268992391105	0.000980671864723	0.000711679473618
+UniRef50_S4XBL3		1.00287016387e-05	2.66895408891e-05	1.66608392504e-05
+UniRef50_I0EUL3	N5 glutamine S adenosyl L methionine dependent methyltransferase	0.000298364448205	0.00742744916738	0.00712908471917
+UniRef50_UPI00032980B7	PREDICTED	6.87903659029e-05	8.81008018107e-05	1.93104359078e-05
+UniRef50_D1DJZ6	TspB like protein	0.000353836626628	0.00687276751936	0.00651893089273
+UniRef50_UPI0003765EEE	hypothetical protein	4.53391372037e-06	2.51753788557e-05	2.06414651353e-05
+UniRef50_D1AIW2	PTS system Galactitol specific IIC component	0.000541991587796	0.00149671143839	0.000954719850594
+UniRef50_Q18KF1	ABC type transport system ATP binding protein	0.0028349868296	0.000567020387033	-0.00226796644257
+UniRef50_UPI0004293C91	UDP glucose 6 dehydrogenase	3.45078338057e-06	6.69270497986e-06	3.24192159929e-06
+UniRef50_Q9CDF7	Putative sugar uptake protein YxfA	0.00180671658487	0.000206756152991	-0.00159996043188
+UniRef50_B2I785	NADH quinone oxidoreductase subunit B	3.93303267502e-05	9.15051335606e-05	5.21748068104e-05
+UniRef50_Q3J1U1	RNA polymerase sigma 54 factor	0.000791355807249	0.000185539291214	-0.000605816516035
+UniRef50_P52073	Glycolate oxidase subunit GlcE	0.00421134513651	0.000585752142543	-0.00362559299397
+UniRef50_K0STI8		0.000172587294925	3.47052890423e-05	-0.000137882005883
+UniRef50_D2B0E6		0.000162213312073	0.000314638937302	0.000152425625229
+UniRef50_W9FWD7		3.90772245237e-05	1.99227612302e-06	-3.70849484007e-05
+UniRef50_B5QX27	Quinolinate synthase A	0.00123956515034	0.000176133223777	-0.00106343192656
+UniRef50_F4FX21	Transcriptional regulator, MerR family	0.00112021376954	0.00552619422699	0.00440598045745
+UniRef50_C6AZU8	ABC transporter related	6.44907725824e-05	0.0516041677848	0.0515396770122
+UniRef50_A5ISU0	von Willebrand factor, type A	0.0208494237473	0.00549579432466	-0.0153536294226
+UniRef50_B4W755		0.000171456900976	7.62156523879e-05	-9.52412485881e-05
+UniRef50_UPI0003B6DDE5	quaternary ammonium transporter	9.65518338205e-05	2.66445340561e-05	-6.99072997644e-05
+UniRef50_P03835	Transposase InsG for insertion sequence element IS4	0.00318025455041	0.000649310311281	-0.00253094423913
+UniRef50_L8UD09		0.00122741933534	0.00656042064705	0.00533300131171
+UniRef50_A6M0D9	Transcriptional regulator, XRE family	0.00304824396969	0.000504814880674	-0.00254342908902
+UniRef50_C7MAG4	Phosphate sulfate permease	0.000154090502289	0.00193855785986	0.00178446735757
+UniRef50_B9KUA0	CBS domain containing protein	0.0099325726005	0.000731306832862	-0.00920126576764
+UniRef50_UPI00045E7085	hypothetical protein	1.40956570296e-05	6.65012865189e-05	5.24056294893e-05
+UniRef50_Q4UKX5	DNA gyrase subunit B	8.44032146265e-06	1.0894103652e-05	2.45378218935e-06
+UniRef50_A3M4L9		0.000428703959695	0.00496136045192	0.00453265649222
+UniRef50_Q8EUR3	Spermidine putrescine import ATP binding protein PotA	4.88501174746e-06	7.8638896588e-06	2.97887791134e-06
+UniRef50_A8GIP4	Lysine  tRNA ligase	0.00208551766306	0.0025269026749	0.00044138501184
+UniRef50_UPI0004654768	hypothetical protein	4.42983997484e-05	4.03003041678e-05	-3.9980955806e-06
+UniRef50_G1C7I1	Nucleoid occlusion protein	7.03770042794e-06	2.38279475843e-05	1.67902471564e-05
+UniRef50_Q28NF0	Probable chemoreceptor glutamine deamidase CheD	0.000223919160864	3.79650635368e-05	-0.000185954097327
+UniRef50_M1YTR4		0.000261008601306	0.00285549528564	0.00259448668433
+UniRef50_D7BML1	Putative molybdopterin guanine dinucleotide biosynthesis protein A	6.61523275945e-06	2.96960182763e-05	2.30807855169e-05
+UniRef50_UPI0003B32011	cytidylate kinase	6.79425891723e-06	7.53321318664e-05	6.85378729492e-05
+UniRef50_F4A9G3	Glycerol dehydratase activator	0.000123227199839	0.000906916907809	0.00078368970797
+UniRef50_B4U247	Shikimate kinase	0.00200521934516	0.0036202695891	0.00161505024394
+UniRef50_P06200	Hemolytic phospholipase C	0.00152950057983	0.000163090085884	-0.00136641049395
+UniRef50_X5PED3		0.000295715982472	0.000134223663358	-0.000161492319114
+UniRef50_Q6N9W0	Methionine import ATP binding protein MetN 1	0.00181426294761	0.000359535445064	-0.00145472750255
+UniRef50_UPI000464B4E9	hypothetical protein	7.58806900332e-05	9.00385464282e-06	-6.68768353904e-05
+UniRef50_B3EQT3	Recombination protein RecR	0.0102357935342	0.000440771201791	-0.00979502233241
+UniRef50_Q6ARX8	NADPH dependent 7 cyano 7 deazaguanine reductase	0.000155281880435	0.00335558157129	0.00320029969086
+UniRef50_X1YMT4		0.000168558368661	4.75422653861e-05	-0.000121016103275
+UniRef50_B9KK74	Cellulose synthase	0.000568613378045	0.000462773282699	-0.000105840095346
+UniRef50_Q1GHF8	TRAP transporter solute receptor TAXI family	5.85931458442e-05	8.68942857247e-06	-4.99037172717e-05
+UniRef50_UPI000472F33D	hypothetical protein	0.0001281434778	1.15206629538e-05	-0.000116622814846
+UniRef50_I6TQ16	Pyridoxamine kinase	0.0036608271265	0.00142333116197	-0.00223749596453
+UniRef50_P57024	Outer membrane lipoprotein LolB	0.000195588595265	0.00282318876454	0.00262760016927
+UniRef50_Q17X82		0.000180327701681	0.0037807739618	0.00360044626012
+UniRef50_B9KKX8	Cyclic nucleotide binding protein	0.00315808915412	0.000543476712473	-0.00261461244165
+UniRef50_UPI000255F810	TetR family transcriptional regulator	1.06956758606e-05	1.10213740362e-05	3.256981756e-07
+UniRef50_Q1QE80	Spermidine putrescine import ATP binding protein PotA	0.000116629398711	7.33743777997e-05	-4.32550209113e-05
+UniRef50_UPI00029CBAAC	methylmalonate semialdehyde dehydrogenase , partial	6.10764144519e-05	8.12146028803e-06	-5.29549541639e-05
+UniRef50_UPI00036486F4	hypothetical protein	2.36189890633e-05	4.84266297218e-05	2.48076406585e-05
+UniRef50_S9UQG0		1.82284194511e-05	6.08147325114e-05	4.25863130603e-05
+UniRef50_M0SWW4		8.29850184897e-06	9.43414374549e-06	1.13564189652e-06
+UniRef50_UPI00045D969B	PREDICTED	1.78804159785e-05	2.9718083555e-05	1.18376675765e-05
+UniRef50_Q03736	Cytochrome c oxidase subunit 2	0.00947661857264	0.00418342453937	-0.00529319403327
+UniRef50_UPI00046AFEA5	membrane protein	0.000105305110155	6.52494059597e-05	-4.00557041953e-05
+UniRef50_UPI0004706261	hypothetical protein	1.61726120627e-06	9.12588080482e-06	7.50861959855e-06
+UniRef50_Q5LRL4	Outer membrane transporter, OMPP1 FadL TodX family	1.33689776985e-05	8.15837109614e-06	-5.21060660236e-06
+UniRef50_UPI0002F47A97	hypothetical protein	1.54775223974e-05	6.58541654844e-05	5.0376643087e-05
+UniRef50_J9P1L3		3.93462079217e-06	0.000168120808816	0.000164186188024
+UniRef50_A6LXP7	Proton translocating NADH quinone oxidoreductase, chain L	0.000322892117453	0.00107386201179	0.000750969894337
+UniRef50_A5EWC1	Conserved hypothetical lipoprotein	6.64965350226e-06	1.05076426078e-05	3.85798910554e-06
+UniRef50_A0A024HWT5		5.60648193047e-06	3.78900625792e-05	3.22835806487e-05
+UniRef50_P42887	Urease subunit gamma	0.000110528676429	0.000400364551786	0.000289835875357
+UniRef50_A3PPK4	Amidase	0.00296405115262	0.00126790394002	-0.0016961472126
+UniRef50_X9TRB8		0.00197124959361	0.000966739235253	-0.00100451035836
+UniRef50_UPI00047046AB	Fis family transcriptional regulator	4.40511671648e-06	1.10659360512e-05	6.66081933472e-06
+UniRef50_UPI00037B45E9	GTPase Era	1.90493176995e-05	0.000138637928006	0.000119588610307
+UniRef50_UPI000262D14F	electron transport complex RsxE subunit	0.000714473404273	0.000204477727402	-0.000509995676871
+UniRef50_N9HZ93		0.000202949456367	0.0143846749627	0.0141817255063
+UniRef50_J9H507	Membrane protein	0.00136743942971	0.000338902452903	-0.00102853697681
+UniRef50_UPI0004646E3C	ABC transporter ATP binding protein, partial	7.30321781378e-06	3.1784767616e-05	2.44815498022e-05
+UniRef50_UPI00034566D0	hypothetical protein	5.56743285462e-06	3.1318701243e-06	-2.43556273032e-06
+UniRef50_R5FYT2	Riboflavin synthase alpha subunit	0.000348986334422	0.00341722989211	0.00306824355769
+UniRef50_Q0FTZ1	ISSpo9, transposase	0.000142616061335	2.79400464184e-05	-0.000114676014917
+UniRef50_UPI00045E74EB	hypothetical protein	2.79890119832e-05	9.60503450558e-05	6.80613330726e-05
+UniRef50_A0A058T3B4	Transcriptional regulator	0.000827556870044	0.000676297798153	-0.000151259071891
+UniRef50_Q9RXT9	Thiosulfate sulfurtransferase	0.000226039514279	0.0521767910053	0.051950751491
+UniRef50_L7WYV1	Lipase esterase	0.019694907946	0.00528986166887	-0.0144050462771
+UniRef50_W0HAM9		4.55428215126e-05	3.99638582148e-05	-5.5789632978e-06
+UniRef50_B9E397		0.000703276372884	0.000572087756635	-0.000131188616249
+UniRef50_N2IAD7	Response regulator	2.61156910459e-05	3.09704722598e-05	4.8547812139e-06
+UniRef50_UPI000467FD4C	isopentenyl diphosphate delta isomerase	0.000364980715755	3.75132160252e-05	-0.00032746749973
+UniRef50_UPI00046ABA5E	hypothetical protein	1.2674527e-05	0.000782197920545	0.000769523393545
+UniRef50_A0A033UF50		2.51624247006e-05	2.65546141239e-05	1.3921894233e-06
+UniRef50_E0MPD3	UPF0301 protein R2A130_1378	9.69915892978e-06	1.46334637461e-05	4.93430481632e-06
+UniRef50_UPI00036D5BBB	hypothetical protein	0.000117619239949	8.66547325566e-05	-3.09645073924e-05
+UniRef50_F3WHU8	Peptidase M16 inactive domain protein	0.00193364966398	0.000676297798153	-0.00125735186583
+UniRef50_C0DSE0	BolA like protein	7.13933080481e-05	0.00051741578668	0.000446022478632
+UniRef50_O23346	Imidazoleglycerol phosphate dehydratase 2, chloroplastic	9.45523153798e-06	1.3736523189e-05	4.28129165102e-06
+UniRef50_UPI00035E3A63	hypothetical protein, partial	5.75684487727e-05	5.66306545362e-05	-9.377942365e-07
+UniRef50_B6JMQ6	tRNA  methyltransferase	0.000173158710486	0.00191040875	0.00173725003951
+UniRef50_UPI00006CF872	ribosomal protein L33 containing protein	0.00029780203437	7.84699501181e-05	-0.000219332084252
+UniRef50_UPI00045E7D30	hypothetical protein	2.98017684117e-05	4.24904437295e-05	1.26886753178e-05
+UniRef50_F3ZJM5	Putative alpha ribazole phosphatase	0.000224228029182	0.000117500015334	-0.000106728013848
+UniRef50_Q8FFY2		0.00110848701004	0.000267658645188	-0.000840828364852
+UniRef50_Q7UM14	Tyrosine  tRNA ligase	1.46242244585e-05	2.32790028281e-05	8.6547783696e-06
+UniRef50_F9YXK4	Membrane spanning protein	0.000599184109289	0.00632048969372	0.00572130558443
+UniRef50_A7IAF5	Phosphoribosylaminoimidazole succinocarboxamide synthase	4.34326100281e-05	1.59322224952e-05	-2.75003875329e-05
+UniRef50_M1QZS4		7.99124617331e-06	1.33316332484e-05	5.34038707509e-06
+UniRef50_UPI00016C5421	molybdenum cofactor biosynthesis protein	3.04791243288e-06	9.20591243519e-06	6.15800000231e-06
+UniRef50_Q9JXP4	Probable aromatic acid decarboxylase	0.00161537609138	0.00307149463296	0.00145611854158
+UniRef50_R5EVW4		9.55119188127e-06	0.00236466685947	0.00235511566759
+UniRef50_UPI0002F70260	hypothetical protein	2.24909558592e-06	0.000114987187863	0.000112738092277
+UniRef50_Q2RZJ2	Proline  tRNA ligase	4.36487920525e-06	0.00290206790404	0.00289770302483
+UniRef50_C6ECF3	3 keto L gulonate 6 phosphate decarboxylase UlaD	0.00395606356166	0.00229280855424	-0.00166325500742
+UniRef50_UPI000349CFD5	hypothetical protein	6.03736167793e-06	9.82547471564e-06	3.78811303771e-06
+UniRef50_R1CIV3		0.000153033759375	8.30318758772e-05	-7.00018834978e-05
+UniRef50_P17888	Primosomal protein N	0.00234873820062	0.000631457387298	-0.00171728081332
+UniRef50_Q9AGA7	PTS system alpha glucoside specific EIICB component	0.00261712959025	0.00165348066374	-0.00096364892651
+UniRef50_P15032	Exodeoxyribonuclease 8	0.00120423127558	0.000160820303146	-0.00104341097243
+UniRef50_A8TPL9		0.00010510202443	3.84816287297e-05	-6.66203957003e-05
+UniRef50_UPI00046AC3A5	hypothetical protein	0.000142968099677	1.44169743756e-05	-0.000128551125301
+UniRef50_P0AG04	3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein	0.0033522341444	8.69470419278e-05	-0.00326528710247
+UniRef50_G2L7T9		5.4975088094e-05	9.4307761357e-05	3.9332673263e-05
+UniRef50_UPI000479AE2C	hypothetical protein	0.00012428523054	2.09906096445e-05	-0.000103294620896
+UniRef50_A3PKK4	Acyl homoserine lactone synthase	0.0160376995635	0.00615627170489	-0.00988142785861
+UniRef50_A3PS02	WGR domain protein	0.00191472046163	0.000223935335125	-0.00169078512651
+UniRef50_UPI0002B9C508	hypothetical protein	3.76422119524e-05	0.000158700198968	0.000121057987016
+UniRef50_Q9RUQ6	Carboxymethylenebutenolidase related protein	0.000129276023577	0.00411418648702	0.00398491046344
+UniRef50_UPI0001584880	hypothetical protein BC1G_07259	8.35859609336e-06	1.90444822732e-05	1.06858861798e-05
+UniRef50_H2G856	Putative terminase large subunit	1.58846476951e-05	5.92579022168e-05	4.33732545217e-05
+UniRef50_Q87UY0	Glucans biosynthesis protein G	9.53652441026e-06	1.54742804265e-05	5.93775601624e-06
+UniRef50_UPI0003B5126A	addiction module toxin YoeB	3.93094160611e-06	4.35044208839e-05	3.95734792778e-05
+UniRef50_D9Y290		2.89381018236e-05	9.45662331215e-06	-1.94814785114e-05
+UniRef50_UPI0003F9F930	hypothetical protein, partial	5.18589344009e-06	0.000470595857386	0.000465409963946
+UniRef50_UPI00046644CC	peptide ABC transporter permease	3.61125654178e-05	7.12372529436e-05	3.51246875258e-05
+UniRef50_Q65I39	3 phosphoshikimate 1 carboxyvinyltransferase	4.36987252951e-06	8.58249345441e-06	4.2126209249e-06
+UniRef50_P0AEB6	Low conductance mechanosensitive channel YnaI	0.0029589201153	0.000178799216058	-0.00278012089924
+UniRef50_X0V3Z0	Marine sediment metagenome DNA, contig	1.6247663189e-05	6.64267247269e-05	5.01790615379e-05
+UniRef50_D3SDU3		0.00119484603416	1.99108500208e-05	-0.00117493518414
+UniRef50_C3SN52		0.00156585348358	0.000513993913508	-0.00105185957007
+UniRef50_UPI0003745614	hypothetical protein	8.90722396307e-05	4.01457460594e-05	-4.89264935713e-05
+UniRef50_H0P3C7		1.82203646966e-05	1.67591812148e-05	-1.4611834818e-06
+UniRef50_A0A024HAE7	Glucose 6 phosphate 1 dehydrogenase	0.000910472744036	0.00126714598645	0.000356673242414
+UniRef50_UPI0001911F20	hypothetical protein, partial	0.000299893934122	0.000814136283224	0.000514242349102
+UniRef50_A0A009L0Q9	Diguanylate cyclase domain protein	9.65437311629e-05	0.00122323636676	0.0011266926356
+UniRef50_A0A008QSP4		0.00057189680724	0.000247300607664	-0.000324596199576
+UniRef50_Q3J2Z8	RNA polymerase sigma factor	0.00345616767785	0.00151915189378	-0.00193701578407
+UniRef50_UPI0003753584	hypothetical protein	0.0021955652932	0.000530410580916	-0.00166515471228
+UniRef50_Q02Y94	Na+ driven multidrug efflux pump	0.000502636168881	0.000587458034935	8.4821866054e-05
+UniRef50_UPI0003B604B4	hypothetical protein	4.24988612334e-05	7.31425835346e-05	3.06437223012e-05
+UniRef50_D0NVH9	Adenylosuccinate synthetase	2.87895369053e-06	8.45281830035e-06	5.57386460982e-06
+UniRef50_W5XEU5	Putative N acyl D glucosamine 2 epimerase	4.70181795977e-05	3.12072522623e-06	-4.38974543715e-05
+UniRef50_V4N2T0		0.000296996414055	0.000171618448761	-0.000125377965294
+UniRef50_A4THV9		0.00187935115765	0.000500637535903	-0.00137871362175
+UniRef50_UPI0003802F25	hypothetical protein	8.19038684565e-06	2.93827398834e-05	2.11923530378e-05
+UniRef50_Q8FUU5	Zinc import ATP binding protein ZnuC	1.60382392661e-05	1.1082702923e-05	-4.9555363431e-06
+UniRef50_W5XB82	Putative family S53 non peptidase like protein	1.11684397132e-05	7.25431825905e-05	6.13747428773e-05
+UniRef50_H3X653	Osmosensitive K+ channel His kinase sensor domain protein	0.00889788733323	0.00240459979292	-0.00649328754031
+UniRef50_Q2W7P1		6.09294336383e-05	2.17145619031e-05	-3.92148717352e-05
+UniRef50_R5BHR4	Phage terminase	7.60376075425e-06	0.000158288402108	0.000150684641354
+UniRef50_A5N0V8	LivM	0.000783602613819	0.00129252319866	0.000508920584841
+UniRef50_A5N2L5	Orotidine 5 phosphate decarboxylase	0.000449451779777	0.00147293199773	0.00102348021795
+UniRef50_A6LXZ9	MATE efflux family protein	8.28425725361e-05	0.00136836684351	0.00128552427097
+UniRef50_N9WGA2		7.79714799994e-05	0.000113109514366	3.51380343666e-05
+UniRef50_UPI00016C57A2	elongation factor G, partial	2.97547815642e-06	6.7423041706e-06	3.76682601418e-06
+UniRef50_C1D5R6	Membrane protein	2.03217668471e-05	0.00136717420774	0.00134685244089
+UniRef50_UPI00036AFE80	cell wall hydrolase	2.35813996351e-05	1.7178873415e-05	-6.4025262201e-06
+UniRef50_A3M865		1.89659682949e-05	0.000921776882898	0.000902810914603
+UniRef50_Q7WLL0	Cysteine  tRNA ligase	2.84442733468e-06	9.84117151909e-06	6.99674418441e-06
+UniRef50_P18249	RNA polymerase principal sigma factor HrdD	0.000376532677997	0.00482601357197	0.00444948089397
+UniRef50_UPI0003B42D49	5 hydroxymethyluracil DNA glycosylase	7.71423207418e-06	0.000122700015603	0.000114985783529
+UniRef50_D6UF03		0.00467327631456	0.000935368114805	-0.00373790819976
+UniRef50_R1CXM7		7.57005622317e-06	2.49733016433e-05	1.74032454201e-05
+UniRef50_UPI000399BF1B	S adenosylmethionine synthetase	9.02957723469e-06	4.59897817931e-05	3.69602045584e-05
+UniRef50_X5ZAH5		0.00339314809803	0.00224166924829	-0.00115147884974
+UniRef50_UPI0003698C0E	hypothetical protein, partial	4.63196175671e-05	1.71251926698e-05	-2.91944248973e-05
+UniRef50_W6EUE7		8.40559837509e-05	2.49047435453e-05	-5.91512402056e-05
+UniRef50_V5SUH2	LysR family transcriptional regulator	0.000381683495918	0.000780790571617	0.000399107075699
+UniRef50_M7CYD5	Thioesterase	0.00437378318337	0.00245555310332	-0.00191823008005
+UniRef50_Q64GH1	Putative enoyl reductase 	4.73488335197e-05	0.000248862114694	0.000201513281174
+UniRef50_D6GTM4	Rubredoxin	0.000273319257479	0.00221126545738	0.0019379461999
+UniRef50_E1VWJ8	Protein NrdI	9.53571641282e-06	0.00240274162299	0.00239320590658
+UniRef50_A8F516	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.16858307672e-05	9.96840368342e-06	-1.71742708378e-06
+UniRef50_UPI000225A8AA	NUDIX hydrolase	0.00010080025987	1.89306916022e-05	-8.18695682678e-05
+UniRef50_UPI000225AEF7	D amino acid aminotransferase	3.42553362664e-05	4.13021330855e-05	7.0467968191e-06
+UniRef50_UPI00047468F0	sulfurase	5.95730804309e-05	3.4291244526e-05	-2.52818359049e-05
+UniRef50_UPI00041C6338	hydrolase	1.52788192275e-05	5.95997093552e-06	-9.31884829198e-06
+UniRef50_W4HIK8		3.16772381427e-05	6.13760513858e-06	-2.55396330041e-05
+UniRef50_B6XGE2	Putative dGTPase	1.51631070393e-05	4.54106599638e-05	3.02475529245e-05
+UniRef50_A6KZD0		1.05526087992e-05	0.00396289570355	0.00395234309475
+UniRef50_S5CIR4	EAL domain protein	0.000188258272251	0.00258798986746	0.00239973159521
+UniRef50_I6X6K9	2,5 diketo D gluconic acid reductase A	0.00529763296825	0.0024963329112	-0.00280130005705
+UniRef50_Q5HL78	Esterase, putative	0.0203190583706	0.00586911518488	-0.0144499431857
+UniRef50_K3YW20		0.000713676375634	0.000243071201698	-0.000470605173936
+UniRef50_D7I005		0.000776718220114	0.000822170111935	4.5451891821e-05
+UniRef50_UPI000380E85A	hypothetical protein	4.35166584423e-06	5.45701110132e-06	1.10534525709e-06
+UniRef50_UPI0003AFAFF5	PREDICTED	1.69708702794e-05	6.88725507147e-06	-1.00836152079e-05
+UniRef50_UPI0003723B10	hypothetical protein	4.1106629957e-05	1.65486609155e-05	-2.45579690415e-05
+UniRef50_C5N5L5		0.00155131228296	0.00224291168503	0.00069159940207
+UniRef50_UPI000474FC78	hypothetical protein, partial	9.32607433999e-05	0.00216636953756	0.00207310879416
+UniRef50_G7M098		0.000720003613245	0.00133219027256	0.000612186659315
+UniRef50_F0RKF5	Riboflavin synthase, alpha subunit	0.000179186387112	0.0348376547182	0.0346584683311
+UniRef50_Q6A5X8	Arginine  tRNA ligase	0.000216671069631	0.00580807181751	0.00559140074788
+UniRef50_H0YP80		4.87434185307e-05	3.34184396598e-05	-1.53249788709e-05
+UniRef50_UPI00022CA5D3	PREDICTED	1.3794472212e-05	8.18378333487e-06	-5.61068887713e-06
+UniRef50_Q8REW5	Precorrin 8X methylmutase	0.000370084302795	0.000668399608368	0.000298315305573
+UniRef50_Q56002	Serine acetyltransferase	1.14849751684e-05	3.37623211618e-05	2.22773459934e-05
+UniRef50_UPI00036189B5	DNA glycosylase	0.000116856442842	2.15878707709e-05	-9.52685720711e-05
+UniRef50_A5ULV9	Phosphatidylserine synthase, PssA	0.00551972457237	0.000551516807139	-0.00496820776523
+UniRef50_UPI0001FFE88F	glycosyl transferase group 1	8.1318039808e-05	0.000285973428186	0.000204655388378
+UniRef50_UPI00047588F4	hypothetical protein	4.04482602979e-06	3.91968101177e-06	-1.2514501802e-07
+UniRef50_O27179	Pyruvate carboxylase subunit B	0.0013127135154	0.00055822710661	-0.00075448640879
+UniRef50_D1BH34		0.000935915674838	0.00835753083995	0.00742161516511
+UniRef50_UPI000441E63E	PREDICTED	2.40188733004e-05	3.88841685102e-05	1.48652952098e-05
+UniRef50_UPI00037429B4	hypothetical protein, partial	4.64760218352e-06	3.27809735148e-05	2.81333713313e-05
+UniRef50_C4Z1D7	Proline  tRNA ligase	8.58474907041e-06	2.72220581631e-05	1.86373090927e-05
+UniRef50_W8YSM1		6.11776620942e-05	0.000151075562601	8.98979005068e-05
+UniRef50_UPI0004785C2A	hypothetical protein	8.04123270375e-05	0.000435465616824	0.000355053289786
+UniRef50_Q168G3	MFS protein, putative	0.00962455925541	0.00336029065433	-0.00626426860108
+UniRef50_UPI0003652F52	hypothetical protein	1.88415666548e-05	7.95694200055e-05	6.07278533507e-05
+UniRef50_UPI000368594E	hypothetical protein	1.73921016323e-05	1.45589174227e-05	-2.8331842096e-06
+UniRef50_V9U5K5		9.16183520793e-05	0.000288539313933	0.000196920961854
+UniRef50_F8KHX1	ArsR family transcriptional regulator	0.00277035123844	0.0016681105664	-0.00110224067204
+UniRef50_A6LZC7		0.000273540571632	0.000418888943548	0.000145348371916
+UniRef50_R7NTH8		1.84957009686e-05	0.000315625747611	0.000297130046642
+UniRef50_Q8SDT5	Phi ETA orf 55 like protein	0.000712670913339	0.000214359948499	-0.00049831096484
+UniRef50_Q493G3	Protoheme IX farnesyltransferase	6.40240395441e-06	1.3938849371e-05	7.53644541659e-06
+UniRef50_G7M7B0	Cell wall binding repeat containing protein	0.000399301590658	0.00194076597371	0.00154146438305
+UniRef50_I1D602		8.34229022179e-05	0.000165705851899	8.22829496811e-05
+UniRef50_W6CDL1	Bat2 domain protein	0.000105880565126	8.12893941335e-05	-2.45911709925e-05
+UniRef50_F8KRB8	Cell division protein FtsI [Peptidoglycan synthetase]	0.000294159524814	0.00246915371529	0.00217499419048
+UniRef50_A0A011RLE4	Rhodanese like domain protein	2.03355377852e-05	5.88352129361e-05	3.84996751509e-05
+UniRef50_A5UM88	Adhesin like protein	0.00339643365866	0.000510472542113	-0.00288596111655
+UniRef50_UPI000200387F	AGCS family alanine or glycine	5.45962532495e-06	0.000128396000124	0.000122936374799
+UniRef50_U5MPP2	5 nucleotidase	0.000182654510734	0.000281701149624	9.904663889e-05
+UniRef50_R9YN62	TM2 domain protein	0.0104552731741	0.00101833346619	-0.00943693970791
+UniRef50_UPI00037681F6	50S ribosomal protein L20	5.71057538871e-05	7.79527343542e-05	2.08469804671e-05
+UniRef50_P0AA55	Protein QmcA	0.00327691588784	0.000404339981157	-0.00287257590668
+UniRef50_F5NZP6	YhaO	1.23843488018e-05	3.36653233563e-05	2.12809745545e-05
+UniRef50_P37754	6 phosphogluconate dehydrogenase, decarboxylating	0.0134082062896	0.00472666050494	-0.00868154578466
+UniRef50_UPI00035F8157	hypothetical protein	1.48594170887e-06	3.14700786665e-05	2.99841369576e-05
+UniRef50_B8H8I4	Glucose 1 phosphate adenylyltransferase	2.99611913936e-06	1.12887262103e-05	8.29260707094e-06
+UniRef50_M9R3S4	Protease do	0.00645258169356	0.000488741654276	-0.00596384003928
+UniRef50_A5LX88	HAD superfamily protein  phosphatase	0.000154243345532	0.000642341194012	0.00048809784848
+UniRef50_B7MG32	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.00365534242866	0.00172119206463	-0.00193415036403
+UniRef50_P00935	Cystathionine gamma synthase	0.0043035964479	0.0014199085249	-0.002883687923
+UniRef50_H3RCL8	Oxidoreductase domain protein	0.000189704956309	0.000158438894981	-3.1266061328e-05
+UniRef50_V4LBB0		5.23507673507e-05	6.06977076974e-05	8.3469403467e-06
+UniRef50_Q1GB50	Ribonuclease Y	0.0216023346284	0.0126846968966	-0.0089176377318
+UniRef50_I3XFP9	Inosose dehydratase IolE	0.00425460441846	0.00107856624933	-0.00317603816913
+UniRef50_P31833	Cytochrome c oxidase subunit 1	2.75598526319e-05	3.06154732534e-05	3.0556206215e-06
+UniRef50_Q49VS2	Putative lipid kinase SSP1993	0.0253841956467	0.00699861670102	-0.0183855789457
+UniRef50_A5D5L4	2 C methyl D erythritol 4 phosphate cytidylyltransferase	1.67077586759e-05	8.12046541921e-06	-8.58729325669e-06
+UniRef50_Q81CT8	Putative ABC transporter ATP binding protein BC_2655	3.80044243183e-05	0.000649554120413	0.000611549696095
+UniRef50_B9TG20		4.47852907989e-05	1.45809378546e-05	-3.02043529443e-05
+UniRef50_P39389		0.00265953340392	0.00123755480017	-0.00142197860375
+UniRef50_A4ETQ1	Flagellar protein, putative	7.5121862055e-06	1.91093208336e-05	1.15971346281e-05
+UniRef50_P39385		0.00298891776367	0.000138646340475	-0.0028502714232
+UniRef50_P39384		0.00326215942734	0.00046482802743	-0.00279733139991
+UniRef50_V5VAL8	Flavodoxin reductase 1	0.000170294431062	0.0109338742637	0.0107635798326
+UniRef50_A9APP3	Rieske  domain protein	0.000221439764118	0.00532710411876	0.00510566435464
+UniRef50_P39383		0.00608255397389	0.000484788024949	-0.00559776594894
+UniRef50_P39382		0.00111684839469	0.00134351688699	0.0002266684923
+UniRef50_Q09545	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.12620533329e-05	4.51250730403e-05	2.38630197074e-05
+UniRef50_B7H275	Aminoglycoside 2 N acetyltransferase Ib)	0.000430592382719	0.00417556280892	0.0037449704262
+UniRef50_B7M6Q9	Putative ion transport protein YfeO	0.00338789742103	0.000571536380408	-0.00281636104062
+UniRef50_UPI00046FF34F	peptide synthetase	3.32539611702e-07	1.23676160791e-06	9.04221996208e-07
+UniRef50_A3MAB3		0.000170808930622	0.00301136680007	0.00284055786945
+UniRef50_J5IRF9		0.000781005494173	0.0223826869487	0.0216016814545
+UniRef50_D5AMB2	ArsC family protein	0.000332332458697	9.09403099916e-05	-0.000241392148705
+UniRef50_N6U9Z2		0.000855505127333	0.000330485805926	-0.000525019321407
+UniRef50_B9KMM9		0.00242279478061	0.00165598152446	-0.00076681325615
+UniRef50_UPI0003B360B2	riboflavin synthase subunit alpha	9.85739183432e-06	0.000150523578948	0.000140666187114
+UniRef50_UPI0003768F48	hypothetical protein	2.37876145686e-06	7.87513824848e-06	5.49637679162e-06
+UniRef50_Q9JYA6	PqiA family protein	9.16970013417e-05	0.00261284265213	0.00252114565079
+UniRef50_O61573	GTP cyclohydrolase 1	3.74020596091e-05	6.34806557419e-05	2.60785961328e-05
+UniRef50_A4XX36	Integral membrane sensor signal transduction histidine kinase	0.000444395778926	0.000418284317323	-2.6111461603e-05
+UniRef50_V7N9Q7		0.0005052261241	0.00016316588308	-0.00034206024102
+UniRef50_UPI00046AE0C6	hypothetical protein	4.25755102014e-05	3.53486801914e-05	-7.22683001e-06
+UniRef50_UPI0003C11AE9	PREDICTED	1.86474335871e-05	4.24821218761e-06	-1.43992213995e-05
+UniRef50_P77858	Hydrogenase 4 component C	0.00647744161017	0.00232639236921	-0.00415104924096
+UniRef50_A9RYC3	Predicted protein	3.74437692478e-06	7.59165668272e-05	7.21721899024e-05
+UniRef50_UPI00046D2B95	hypothetical protein	3.15250729026e-05	2.31453151529e-05	-8.3797577497e-06
+UniRef50_E1S7W8	Molybdenum transport ATP binding protein	0.000142268588759	0.0027474470492	0.00260517846044
+UniRef50_A6LVV3	GCN5 related N acetyltransferase	0.00025679318969	0.000738291762994	0.000481498573304
+UniRef50_Q48253	Vacuolating cytotoxin autotransporter	4.03009952487e-05	0.00681077100843	0.00677047001318
+UniRef50_G8PQM8	FAD dependent oxidoreductase	0.000993939757428	0.000301065891062	-0.000692873866366
+UniRef50_K6YYX6	Phosphate starvation inducible E	9.51995207813e-05	5.78972584523e-05	-3.7302262329e-05
+UniRef50_Q9RU10	Glutamate racemase	0.00011322739247	0.00806458283065	0.00795135543818
+UniRef50_Q8DN97	Hexulose 6 phosphate synthase 	0.00473059196531	0.00353583760831	-0.001194754357
+UniRef50_UPI0003055198	hypothetical protein	8.25261449362e-06	5.66777719857e-06	-2.58483729505e-06
+UniRef50_UPI0004771957	pyruvate kinase	3.8127668994e-06	1.53737303509e-05	1.15609634515e-05
+UniRef50_F8HG32	3 oxoacyl [acyl carrier protein] synthase 2	0.000316390699934	0.0032739558	0.00295756510007
+UniRef50_UPI0003C7DEB4	ferredoxin	7.07217185956e-06	1.31795699223e-05	6.10739806274e-06
+UniRef50_W5XG56	Transcriptional regulator	0.000514968780039	0.000248600377264	-0.000266368402775
+UniRef50_P45480	Glutathione synthetase	3.94289886739e-06	7.03827566972e-06	3.09537680233e-06
+UniRef50_Q03UE1	DNA replication and repair protein RecF	0.00901916302723	0.00689999329706	-0.00211916973017
+UniRef50_J2ZRL7	Rhamnan synthesis protein F domain protein	6.86606251652e-06	8.62137502309e-06	1.75531250657e-06
+UniRef50_UPI000346214E	hypothetical protein	6.86319888592e-05	6.52780604392e-06	-6.21041828153e-05
+UniRef50_G2IM51	Major facilitator superfamily protein	0.00159990540605	0.000653786120244	-0.000946119285806
+UniRef50_UPI00047E3C0E	hypothetical protein	2.54626356383e-05	0.000756866929282	0.000731404293644
+UniRef50_G0DY22		0.000167275918245	0.00318009535003	0.00301281943179
+UniRef50_A6V690		7.11790048168e-05	0.000250412567372	0.000179233562555
+UniRef50_A5UL99	Predicted permease, major facilitator superfamily	0.00172161403634	0.000891062860416	-0.000830551175924
+UniRef50_Q8AA27	Methionine aminopeptidase	0.00108587411061	0.00574543715262	0.00465956304201
+UniRef50_Q8DWJ3		0.0074366852284	0.00117834905089	-0.00625833617751
+UniRef50_Q9F664	UTP  glucose 1 phosphate uridylyltransferase	0.00434404118052	0.000330856081034	-0.00401318509949
+UniRef50_Q1AX36	Leucyl phenylalanyl tRNA  protein transferase	1.10771151093e-05	8.58988482637e-05	7.48217331544e-05
+UniRef50_UPI000371C01D	hypothetical protein	2.4105219721e-05	1.2007658658e-05	-1.2097561063e-05
+UniRef50_B1H0H4	NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component	0.000195845444659	0.000870185123404	0.000674339678745
+UniRef50_A7X240	Tryptophan synthase alpha chain	0.0150778749374	0.00195512749292	-0.0131227474445
+UniRef50_Q4L300	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.015031829113	0.00234429426364	-0.0126875348494
+UniRef50_Q8RCZ3		0.000258505679378	0.00259748272579	0.00233897704641
+UniRef50_A7MXI6	RNA polymerase subunit sigma 32	1.64353651413e-05	3.11223763631e-05	1.46870112218e-05
+UniRef50_M2YV20	Bacteriocin biosynthesis docking scaffold, SagD family domain protein	4.35887020209e-06	1.96790586793e-05	1.53201884772e-05
+UniRef50_W0HQE6	Outer membrane lipoprotein	2.20087826852e-05	1.90417122261e-05	-2.9670704591e-06
+UniRef50_Q1QLB8	3 dehydroquinate dehydratase	7.610261388e-05	1.22847738429e-05	-6.38178400371e-05
+UniRef50_F1WQG0	L aspartate oxidase	8.85606819696e-06	2.25552401273e-05	1.36991719303e-05
+UniRef50_G7W3F5	Phosphonate ABC transporter, permease protein	0.0166706224587	0.00522218361993	-0.0114484388388
+UniRef50_A0A029I8C3	TPR repeat family protein	0.00258016132498	0.000913898837441	-0.00166626248754
+UniRef50_K0TNT9		0.00130314259191	0.000141609653309	-0.0011615329386
+UniRef50_UPI0003807495	hypothetical protein, partial	1.4393389753e-05	2.49067969119e-05	1.05134071589e-05
+UniRef50_UPI00046EA948	peptide deformylase	2.66984218782e-05	2.48542554987e-05	-1.8441663795e-06
+UniRef50_C4Y1Q4		5.31532804839e-05	0.000197316284094	0.00014416300361
+UniRef50_UPI0003A5C3E8	methylmalonyl CoA mutase	9.25448128955e-05	6.87231659879e-05	-2.38216469076e-05
+UniRef50_M9RMW1	DNA integration recombination inversion protein	0.0132142795906	0.00204120009448	-0.0111730794961
+UniRef50_UPI00032A20C5	PREDICTED	1.31263687936e-05	3.75235413307e-05	2.43971725371e-05
+UniRef50_A6M334	Glycogen synthase	0.000735064383387	0.00201236332434	0.00127729894095
+UniRef50_UPI0003688E90	hypothetical protein	1.43451505995e-05	3.19191286489e-05	1.75739780494e-05
+UniRef50_A3V1D2	ABC phosphate transporter, periplasmic phosphate binding protein	8.86397564133e-06	7.30330337652e-06	-1.56067226481e-06
+UniRef50_Q9RAJ5	Bifunctional purine biosynthesis protein PurH	0.000303819660896	0.00569354219241	0.00538972253151
+UniRef50_A8GK38	Peptidase U62 modulator of DNA gyrase	9.64772716781e-05	0.00077273600531	0.000676258733632
+UniRef50_C7ZCJ9		6.93372400359e-06	0.000711419268889	0.000704485544885
+UniRef50_UPI0002628E3A	amino acid ABC transporter, permease protein, 3 TM region, His Glu Gln Arg opine family	4.94518149961e-05	6.91008367589e-05	1.96490217628e-05
+UniRef50_UPI000470BC2E	transposase, partial	7.85270562337e-05	0.0482257927107	0.0481472656545
+UniRef50_Q47142	Probable 3 phenylpropionic acid transporter	0.0016072588339	0.000434475966229	-0.00117278286767
+UniRef50_UPI000375E9A2	MULTISPECIES	6.04064948426e-05	3.07151505618e-06	-5.73349797864e-05
+UniRef50_UPI0004650867	hypothetical protein	3.57319885925e-05	0.000140991947147	0.000105259958555
+UniRef50_UPI0003B458E8	quinone oxidoreductase	1.097946951e-05	1.76531314599e-05	6.6736619499e-06
+UniRef50_C1KYN8	NADPH dehydrogenase	6.91510248763e-06	0.00180648364124	0.00179956853875
+UniRef50_UPI0003C8F987	PREDICTED	3.64996385995e-05	0.000894076435771	0.000857576797171
+UniRef50_UPI000364B2C5	hypothetical protein	4.74170603184e-06	1.57653778356e-05	1.10236718038e-05
+UniRef50_I3UG87	ABC transporter	3.04584460427e-05	0.000731826094088	0.000701367648045
+UniRef50_UPI00036731E7	hypothetical protein	0.000195742160496	0.000176857901753	-1.8884258743e-05
+UniRef50_C5N6N4	Type I restriction modification DNA specificity domain protein	0.0070121182992	0.00053587725922	-0.00647624103998
+UniRef50_Q12HP7	ATP synthase subunit b	0.00367342729998	0.00914846657284	0.00547503927286
+UniRef50_C8VXQ7	Prophage antirepressor	2.72831691879e-05	7.44536035676e-06	-1.98378088311e-05
+UniRef50_Q72VI6	Aminomethyltransferase	1.75109081146e-05	1.04062970022e-05	-7.1046111124e-06
+UniRef50_D8A1C0		0.00150665429276	3.94988772017e-05	-0.00146715541556
+UniRef50_Q49UD2		1.59735184326e-05	2.77897033592e-05	1.18161849266e-05
+UniRef50_B0TI89	Arginine  tRNA ligase	8.2830548392e-06	4.84154827153e-06	-3.44150656767e-06
+UniRef50_B2IDG3	Signal recognition particle receptor FtsY	0.0020359484181	0.000347126544276	-0.00168882187382
+UniRef50_A0A058ZE84		4.14401875917e-06	1.09412114978e-05	6.79719273863e-06
+UniRef50_B9MKF3	DNA directed RNA polymerase subunit alpha	0.0246965706257	0.0149230535302	-0.0097735170955
+UniRef50_UPI000174537F	tRNA isopentenyltransferase	4.82508418957e-06	7.8320085667e-06	3.00692437713e-06
+UniRef50_E1VL16		1.69424708043e-06	4.50360862439e-06	2.80936154396e-06
+UniRef50_X6GT76		0.000208539628775	3.91208210245e-05	-0.00016941880775
+UniRef50_J9NXH4		9.64970227076e-06	0.00031429828716	0.000304648584889
+UniRef50_A0RH75	LexA repressor	0.0167399148921	0.00243080914498	-0.0143091057471
+UniRef50_P37595	Isoaspartyl peptidase	0.00179815822486	0.000394656548944	-0.00140350167592
+UniRef50_UPI0003688AF0	hypothetical protein, partial	1.65388079967e-05	7.94081644156e-06	-8.59799155514e-06
+UniRef50_P20753	Peptidyl prolyl cis trans isomerase A	0.00434048017005	0.00100401511596	-0.00333646505409
+UniRef50_B1AJ89	Holliday junction ATP dependent DNA helicase RuvB	3.27046046782e-06	9.87303042699e-06	6.60256995917e-06
+UniRef50_E1SQ49		5.65769047706e-05	2.42981429986e-05	-3.2278761772e-05
+UniRef50_G7MAV9		0.000292626751416	0.000292392777421	-2.33973995e-07
+UniRef50_UPI0003622A28	hypothetical protein	1.094170138e-05	1.02655197592e-05	-6.761816208e-07
+UniRef50_Q08ZN5	Catalase	0.000250420174571	0.0667403440224	0.0664899238478
+UniRef50_I0EMB4		0.000130648092436	0.00335176627141	0.00322111817897
+UniRef50_Q2W939	FAD synthase	0.000603955346801	0.000201123749283	-0.000402831597518
+UniRef50_A0A038G0X4		8.56737998615e-05	7.4843897976e-05	-1.08299018855e-05
+UniRef50_S4P4Q3	Titin 	0.00120962559505	8.84753175718e-06	-0.00120077806329
+UniRef50_P0ACR1	HTH type transcriptional activator AllS	0.00170351502938	0.000361612292071	-0.00134190273731
+UniRef50_Q8X645	NAD dependent dihydropyrimidine dehydrogenase subunit PreT	0.00305504851227	0.000539917104517	-0.00251513140775
+UniRef50_D3QIC4		0.00804072806077	0.00274006089893	-0.00530066716184
+UniRef50_Q76HT9	Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 	0.00113897395726	5.74730069579e-05	-0.0010815009503
+UniRef50_E4RAI6	Choline carnitine betaine transporter	0.00105942903149	0.00632157472652	0.00526214569503
+UniRef50_U4VB44		0.00057924794533	1.50192850456e-05	-0.000564228660284
+UniRef50_UPI00036A732B	hypothetical protein	8.79995899515e-05	2.91052703894e-05	-5.88943195621e-05
+UniRef50_P0AE75	Citrate carrier	0.00264892763434	0.000544958111151	-0.00210396952319
+UniRef50_T1UA89	Neuraminyllactose binding hemagglutinin family protein	0.000243539347646	0.00337996469072	0.00313642534307
+UniRef50_M1M1B9	Beta fructofuranosidase	0.000363238667216	0.000937765346163	0.000574526678947
+UniRef50_A0A011MYY6	Trans aconitate 2 methyltransferase	2.42499581544e-05	3.28482757252e-05	8.5983175708e-06
+UniRef50_A5GWT2	Aspartate  tRNA ligase	3.11755278831e-06	1.95032330726e-05	1.63856802843e-05
+UniRef50_C4B488	Short chain dehydrogenase reductase SDR 	0.000301817465392	0.00031209981141	1.0282346018e-05
+UniRef50_A5ULF5	Possible glycosyltransferase	0.00347070022419	0.000678209532568	-0.00279249069162
+UniRef50_F4DRP3		0.000520121271721	0.00148481750506	0.000964696233339
+UniRef50_B8JBA1	Transcriptional regulator, Fis family	1.15532002572e-05	3.18791364532e-05	2.0325936196e-05
+UniRef50_W5WS06	Amino acid permease	0.000641237182429	0.00036733189682	-0.000273905285609
+UniRef50_UPI000470356D	glycine cleavage system protein H	0.000120751525993	4.26893459626e-05	-7.80621800304e-05
+UniRef50_Q89A21	ATP dependent DNA helicase Rep	7.29037179949e-06	3.72458535209e-06	-3.5657864474e-06
+UniRef50_Q5F8Z9	Formamidopyrimidine DNA glycosylase	0.000163670806562	0.00149598106347	0.00133231025691
+UniRef50_B6U1Z9		1.26117239387e-05	2.89644291453e-05	1.63527052066e-05
+UniRef50_B7VBB0	Putative phosphoenolpyruvate synthase regulatory protein	1.93867530629e-05	0.000326457910787	0.000307071157724
+UniRef50_F8JQM1		1.5086005394e-05	0.000116975101514	0.00010188909612
+UniRef50_Q3IV73		0.00335655411994	0.00264894724795	-0.00070760687199
+UniRef50_Q3IV76		0.00874652027172	0.000519618836113	-0.00822690143561
+UniRef50_S6SUU4	Peptide ABC transporter permease 	0.000291058934253	0.000156748357662	-0.000134310576591
+UniRef50_H0W1N8		2.30738712142e-05	3.90310774318e-05	1.59572062176e-05
+UniRef50_UPI0004770081	molybdenum cofactor biosynthesis protein A	8.1850993994e-06	9.8474331505e-05	9.02892321056e-05
+UniRef50_Q4FT48	Ornithine carbamoyltransferase	3.87760974388e-06	6.37798957415e-05	5.99022859976e-05
+UniRef50_N9CHK2		0.00033348980416	0.000734012258693	0.000400522454533
+UniRef50_Q7ULU1	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.43115795898e-05	3.80821487725e-05	-1.62294308173e-05
+UniRef50_U5S306		0.000499909938178	0.00270828574347	0.00220837580529
+UniRef50_Q7NFY0	Glr3394 protein	0.000150831006835	5.16894161632e-05	-9.91415906718e-05
+UniRef50_B9KJJ0	Proton translocating NADH quinone oxidoreductase, chain L	0.00273570228255	0.000100050831806	-0.00263565145074
+UniRef50_Q4WHZ9	Inosine 5 monophosphate dehydrogenase	2.31752323061e-05	4.03791498831e-06	-1.91373173178e-05
+UniRef50_X0PKD3		1.84403811556e-05	2.76339752296e-05	9.193594074e-06
+UniRef50_UPI00046F8172	hypothetical protein, partial	6.00736054487e-06	4.02219123425e-06	-1.98516931062e-06
+UniRef50_D3QHK8		0.0166533036362	0.00569002909746	-0.0109632745387
+UniRef50_Q4FRI0	Site 2 protease, Metallo peptidase, MEROPS family M50B	0.000114044105391	0.00867650393252	0.00856245982713
+UniRef50_P13228	Tryptophan synthase	5.44816905175e-06	5.77735287324e-06	3.2918382149e-07
+UniRef50_I6T6M3		0.00476256718342	0.00145182065906	-0.00331074652436
+UniRef50_A0A013WI76	Pirin	2.25200123977e-05	3.51263812386e-06	-1.90073742738e-05
+UniRef50_Q724H7	2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	2.11134291077e-05	0.000392882534625	0.000371769105517
+UniRef50_Q93SS1	Hemin import ATP binding protein HmuV	8.27087970432e-06	0.00187086142295	0.00186259054325
+UniRef50_A3PKX0	NAD transhydrogenase subunit beta	0.0102087851364	0.00182447818829	-0.00838430694811
+UniRef50_UPI0003160516	beta lactamase	5.23813342598e-05	2.24491139172e-05	-2.99322203426e-05
+UniRef50_F0Y015		0.000270352693396	0.00022095147397	-4.9401219426e-05
+UniRef50_A7H6S8	Chorismate synthase	1.56995271355e-05	0.000200708943699	0.000185009416564
+UniRef50_P12635	Uptake hydrogenase small subunit	0.00023461250138	5.90867761679e-05	-0.000175525725212
+UniRef50_H3V8P2		0.000884732786372	0.00140627002474	0.000521537238368
+UniRef50_A2BKX6	V type ATP synthase alpha chain	8.30247776054e-05	0.0442622439807	0.0441792192031
+UniRef50_Q9ZL20	Homoserine dehydrogenase	0.000204662241411	0.00597761539434	0.00577295315293
+UniRef50_UPI0003B6A98E	siderophore ABC transporter permease	1.08437395644e-05	7.64013967908e-06	-3.20359988532e-06
+UniRef50_A5UNY8		0.00131989171183	0.00144506449675	0.00012517278492
+UniRef50_UPI00028983C1	iron ABC transporter ATP binding protein	6.31583313382e-05	3.22486928603e-05	-3.09096384779e-05
+UniRef50_UPI00035C388E	hypothetical protein	1.20482189133e-05	9.46556279687e-06	-2.58265611643e-06
+UniRef50_Q2NHW2	4 hydroxy tetrahydrodipicolinate synthase	0.00568300732251	0.000275126075039	-0.00540788124747
+UniRef50_A5UNY0		0.000709651468135	0.000333063953224	-0.000376587514911
+UniRef50_P76278	Inner membrane protein YebZ	0.00278701617737	0.00221508751969	-0.00057192865768
+UniRef50_UPI0003F8B96B	hypothetical protein	6.24657330125e-05	4.78745706916e-05	-1.45911623209e-05
+UniRef50_UPI00034A188B	hypothetical protein	2.47966114014e-06	8.29736545314e-06	5.817704313e-06
+UniRef50_S9QCK8	Flagellar protein FlaF, putative	4.37928841016e-05	8.33178859481e-05	3.95250018465e-05
+UniRef50_I6WD10		3.53438711259e-06	5.93202349737e-06	2.39763638478e-06
+UniRef50_Q3IWS0	TRAP T family transporter, periplasmic binding protein	0.00225292724812	0.000703917253616	-0.0015490099945
+UniRef50_P0A0C8	Replication and maintenance protein	0.0623861574834	0.0165274521208	-0.0458587053626
+UniRef50_B3HTF1	Protein YgiQ	0.00234574987165	0.000246439531448	-0.0020993103402
+UniRef50_UPI0003B3CF72	histidine kinase	5.5405118147e-06	4.09448520666e-06	-1.44602660804e-06
+UniRef50_C6ST75		0.00500934565725	0.00258050643209	-0.00242883922516
+UniRef50_UPI00028905C7	recombinase RecQ	2.94112880377e-06	8.74222767327e-06	5.8010988695e-06
+UniRef50_P34749	Putative DNA transport protein HofQ	0.00362665813404	0.000374880651097	-0.00325177748294
+UniRef50_UPI00047D7442	multidrug ABC transporter ATPase	3.24989226794e-06	8.68934566524e-06	5.4394533973e-06
+UniRef50_Q88VG4	GTPase Obg	0.0285301072684	0.0113195805645	-0.0172105267039
+UniRef50_C1CMA0	Ribosomal protein L11 methyltransferase	0.00616934447601	0.00998821399	0.00381886951399
+UniRef50_Q9RW97		0.000172368031437	0.00900182108161	0.00882945305017
+UniRef50_L0GSA8	Glycine D amino acid oxidase, deaminating	0.00119535025924	0.000350889874761	-0.000844460384479
+UniRef50_UPI00037C253B	alcohol dehydrogenase	1.63325704481e-05	1.8367759324e-05	2.0351888759e-06
+UniRef50_U5UBZ0	Integral membrane protein TerC	0.00209948226997	0.000977424880443	-0.00112205738953
+UniRef50_G2TNB0	Beta lactamase	1.12808813062e-05	4.7362608045e-05	3.60817267388e-05
+UniRef50_A7ZEL6	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000142626947925	0.00118543384389	0.00104280689596
+UniRef50_Q9CE02	Glycerol facilitator aquaporin gla	0.00578647960401	0.00341511071572	-0.00237136888829
+UniRef50_A6X7L5	Cobyrinic acid ac diamide synthase	0.000290305665228	8.59117144387e-05	-0.000204393950789
+UniRef50_E5ALT8	UvrABC system protein A	8.97231649528e-05	0.00758436538607	0.00749464222112
+UniRef50_A9M1I6	Periplasmic thioredoxin	0.000370084302795	0.000360875810829	-9.208491966e-06
+UniRef50_D5HI95	Beta fructosidases 	0.000366095001508	0.000827829860193	0.000461734858685
+UniRef50_A8M621	NADH quinone oxidoreductase subunit B 2	1.69801436267e-05	0.0339201317892	0.0339031516456
+UniRef50_UPI00041CBDDB	phosphoenolpyruvate synthase	3.709774162e-06	1.51019291302e-05	1.13921549682e-05
+UniRef50_UPI0003B60C80	MFS transporter	8.19112865092e-06	8.28034282533e-06	8.921417441e-08
+UniRef50_O21049	Cytochrome c oxidase subunit 3	3.56245326004e-06	3.93192294643e-06	3.6946968639e-07
+UniRef50_M1GCT3	Peptidyl prolyl cis trans isomerase	0.000319002244105	0.000978950403971	0.000659948159866
+UniRef50_P49331	Glucosyltransferase S	0.00492029209645	0.00149449056862	-0.00342580152783
+UniRef50_Q1CU36	Phospho N acetylmuramoyl pentapeptide transferase	5.63620675513e-06	0.00264509988277	0.00263946367601
+UniRef50_P0AAJ9	Hydrogenase 2 operon protein HybA	0.00275494901213	0.00104855459288	-0.00170639441925
+UniRef50_P61154	Tungsten containing formylmethanofuran dehydrogenase 2 subunit B	0.00391566042739	0.00129881856166	-0.00261684186573
+UniRef50_W5X7F1	Band 7 protein	1.47790394464e-05	0.000287292161424	0.000272513121978
+UniRef50_J7R3C7		0.0030956984692	0.00236500599779	-0.00073069247141
+UniRef50_UPI000381CDD7	hypothetical protein	4.26265169235e-06	4.23548989079e-06	-2.716180156e-08
+UniRef50_X1Y977		4.2706502543e-06	2.30519724232e-05	1.87813221689e-05
+UniRef50_P26396	Glucose 1 phosphate cytidylyltransferase	0.0108249418803	0.00993978492785	-0.00088515695245
+UniRef50_Q9HZN2	Maf like protein PA2972	0.002150624633	0.000631080985278	-0.00151954364772
+UniRef50_Q2NED1	EhbF	0.00332712411382	0.00071688373595	-0.00261024037787
+UniRef50_Q9JY93	Peptide chain release factor 1	0.0111221498463	0.0162664260123	0.005144276166
+UniRef50_F2EI39	Predicted protein 	3.61935744281e-05	0.000110841771634	7.46481972059e-05
+UniRef50_D8UC86		1.40745759169e-05	3.56792957775e-05	2.16047198606e-05
+UniRef50_R4ZPZ7	Glycosyl transferase, family 8	0.000671401926993	0.000167634837394	-0.000503767089599
+UniRef50_Q1GD19	Binding protein dependent transport systems inner membrane component	0.0102211275338	0.00290144483705	-0.00731968269675
+UniRef50_D8JKK4	Glutathione import ATP binding protein gsiA	0.000152512137299	0.00447226210032	0.00431974996302
+UniRef50_UPI0003642310	hypothetical protein	5.99168985199e-06	3.53014676972e-05	2.93097778452e-05
+UniRef50_F5YLA3	Ferric enterobactin transport ATP binding protein FepC	0.000318613284521	0.00158379757956	0.00126518429504
+UniRef50_M5JPC6		0.000139692598695	4.43376198464e-05	-9.53549788486e-05
+UniRef50_P70584	Short branched chain specific acyl CoA dehydrogenase, mitochondrial	7.5499766789e-06	1.14847291715e-05	3.9347524926e-06
+UniRef50_X3WXP6		3.36728049732e-05	4.1355854496e-05	7.6830495228e-06
+UniRef50_UPI00020008D2	putative magnesium translocating P type ATPase	3.36636109773e-05	0.000133885689123	0.000100222078146
+UniRef50_UPI00037C785B	hypothetical protein	9.34246190593e-05	0.00015999231582	6.65676967607e-05
+UniRef50_Q8FF30	Flavohemoprotein	0.00344647789439	0.00111780293284	-0.00232867496155
+UniRef50_Q3IV85		0.00652407619201	0.00207741217372	-0.00444666401829
+UniRef50_B9KPB5	Response regulator receiver and SARP domain protein	0.000322637597309	0.0025436795637	0.00222104196639
+UniRef50_UPI00046F03A6	histidine kinase	6.98653018335e-05	2.08195212307e-05	-4.90457806028e-05
+UniRef50_P16552	Raffinose permease	0.000999665533874	0.0011762405932	0.000176575059326
+UniRef50_B4U0I9	Putative competence damage inducible protein	0.00789661600337	0.00546064795866	-0.00243596804471
+UniRef50_F4EDS5	Alkylhydroperoxidase like protein, AhpD family	0.00672305860622	0.0025759244621	-0.00414713414412
+UniRef50_UPI00036E614B	hypothetical protein	3.21258892587e-05	9.05317519518e-05	5.84058626931e-05
+UniRef50_F3S3U6		4.96406924058e-05	4.22136233535e-05	-7.4270690523e-06
+UniRef50_UPI00036215C0	hypothetical protein	4.86197140317e-06	0.000150427265964	0.000145565294561
+UniRef50_Q28QW5	Ppx GppA phosphatase	0.0048484748751	0.000182670126934	-0.00466580474817
+UniRef50_UPI000180B091	PREDICTED	6.46409265431e-06	7.40834619373e-06	9.4425353942e-07
+UniRef50_I4CF79	ATPase involved in chromosome partitioning	0.00528494933203	0.00973686901799	0.00445191968596
+UniRef50_UPI000364064B	hypothetical protein, partial	0.000201276570253	2.15972961107e-05	-0.000179679274142
+UniRef50_UPI000476D156	30S ribosomal protein S8	5.00552255868e-05	0.000315246829899	0.000265191604312
+UniRef50_M1N762	PAS domain S box diguanylate cyclase  domain containing protein	0.000634909182436	0.00275886422822	0.00212395504578
+UniRef50_G8VEI8		9.11023266451e-05	0.00074733554289	0.000656233216245
+UniRef50_Q3J6K9	Acrylyl CoA reductase AcuI	0.00665110333348	0.00126035348037	-0.00539074985311
+UniRef50_Q8YM92	Spermidine putrescine import ATP binding protein PotA	7.54502453195e-05	4.77805003844e-05	-2.76697449351e-05
+UniRef50_V1DIU7		5.23276749134e-05	4.99210932214e-05	-2.406581692e-06
+UniRef50_C0R3V6	3 5 exonuclease	0.0168492430658	0.00383292585521	-0.0130163172106
+UniRef50_R1D2B5		8.13954027567e-06	2.41383768856e-05	1.59988366099e-05
+UniRef50_UPI00041042FA	hypothetical protein	6.96805498777e-06	5.07450321446e-05	4.37769771568e-05
+UniRef50_P28303	DNA damage inducible protein F	0.00212529899665	0.000861927526551	-0.0012633714701
+UniRef50_R6NSD0		0.000174791299749	0.000644875588256	0.000470084288507
+UniRef50_P0A1J0	Basal body rod modification protein FlgD	0.00253311001131	0.000256054946702	-0.00227705506461
+UniRef50_Q1LSW5	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00396408312137	0.000176133223777	-0.00378794989759
+UniRef50_Q164Y5	sn glycerol 3 phosphate import ATP binding protein UgpC	8.1108091523e-05	7.58093586595e-05	-5.2987328635e-06
+UniRef50_B7L4M7	Glutathione regulated potassium efflux system protein KefB	0.00276607631409	0.00128549140257	-0.00148058491152
+UniRef50_UPI000329E73C	PREDICTED	3.28563903976e-06	5.20139117476e-06	1.915752135e-06
+UniRef50_P0AFJ0	Putative permease PerM	0.00358838338785	0.000298299702217	-0.00329008368563
+UniRef50_UPI00036E49BC	hypothetical protein	0.000379371991491	4.96446364568e-05	-0.000329727355034
+UniRef50_Q9XC21	Protein NrdI	1.14808599181e-05	4.57990076387e-05	3.43181477206e-05
+UniRef50_Q6G5Y3		0.0234714436108	0.00560768339471	-0.0178637602161
+UniRef50_V5XV11		7.05160697779e-06	2.13011866337e-05	1.42495796559e-05
+UniRef50_UPI00037AAF5D	hypothetical protein	0.00195550286055	0.0013908472994	-0.00056465556115
+UniRef50_Q8ZPD6		0.00190071834935	0.00107100541519	-0.00082971293416
+UniRef50_A1YN33	Outer membrane protein N	0.000577086829441	0.000741557572174	0.000164470742733
+UniRef50_E3HF39	Acyltransferase family protein 5	0.000425936072397	0.000259429023591	-0.000166507048806
+UniRef50_UPI0003B39CC6	ABC transporter substrate binding protein	9.10164696954e-05	0.000111626739969	2.06102702736e-05
+UniRef50_Q896J4	HPr kinase phosphorylase	0.000249990721098	0.00186973468552	0.00161974396442
+UniRef50_W0YKE6	Protein PqqC	0.000305660536572	0.00115856050729	0.000852899970718
+UniRef50_UPI00038F9E6F	DNA polymerase III subunit alpha, partial	1.46101884347e-05	2.87608248385e-05	1.41506364038e-05
+UniRef50_A6LXS8	FAD dependent pyridine nucleotide disulphide oxidoreductase	9.37465204062e-05	0.00171989404948	0.00162614752907
+UniRef50_Q487E5	Protein L isoaspartate O methyltransferase	0.00244600475456	0.00106026637819	-0.00138573837637
+UniRef50_P9WKI2		0.00011674824398	0.00596144832841	0.00584470008443
+UniRef50_G2JG74		0.00365309021469	0.00177147782215	-0.00188161239254
+UniRef50_Q12680	Glutamate synthase [NADH]	9.1054271516e-07	1.37630012434e-05	1.28524585282e-05
+UniRef50_Q142P6	Lipid A export ATP binding permease protein MsbA	2.56378925683e-06	6.14249179135e-06	3.57870253452e-06
+UniRef50_UPI0003FD8434	hypothetical protein	2.83550840038e-05	1.15207367889e-05	-1.68343472149e-05
+UniRef50_P77196	Putative outer membrane usher protein YfcU	0.00302832132771	0.00129565448897	-0.00173266683874
+UniRef50_D8GR57	D alanyl D alanine carboxypeptidase	0.00019608677785	0.000897181543735	0.000701094765885
+UniRef50_E7T039	PTS system protein, cellobiose specific IIC component	0.00166790515675	0.000564553633327	-0.00110335152342
+UniRef50_U2FR71	Putative conserved inner membrane protein	1.82834875865e-05	3.11019571619e-05	1.28184695754e-05
+UniRef50_X1Y4J3	S adenosylmethionine synthase	2.86486238582e-05	0.00016347347176	0.000134824847902
+UniRef50_UPI0003B599F8	membrane protein	5.43812219043e-06	3.66967490636e-05	3.12586268732e-05
+UniRef50_UPI0003699B2C	hypothetical protein	8.33033570671e-06	9.30782079632e-06	9.7748508961e-07
+UniRef50_B8DTW3	Carbamoyl phosphate synthase large chain	1.55008388122e-05	8.77927116125e-06	-6.72156765095e-06
+UniRef50_P0AE17	Protein AmpG	0.00267721610191	0.00199526830868	-0.00068194779323
+UniRef50_D2QC61	NAD dependent epimerase dehydratase	0.000654869594153	0.00138454245475	0.000729672860597
+UniRef50_UPI00037FC855	hypothetical protein	0.00173644784283	0.000559592915001	-0.00117685492783
+UniRef50_A5UNZ2	Magnesium chelatase subunit	0.00285246063776	0.000852879969053	-0.00199958066871
+UniRef50_A0A023S1G3	Transcriptional regulator	0.000653738717857	0.00568664305895	0.00503290434109
+UniRef50_V5VIA0		0.000797505610247	0.00937918408415	0.0085816784739
+UniRef50_UPI00016A5A21	ABC transporter permease	2.43642254169e-05	1.36314406812e-05	-1.07327847357e-05
+UniRef50_UPI0002DB5328	ABC transporter permease	9.80483538871e-06	1.16840538432e-05	1.87921845449e-06
+UniRef50_W1AP48	Penicillin binding protein 2 	0.00269337184431	0.000531085087412	-0.0021622867569
+UniRef50_UPI0002F2CBB8	hypothetical protein	0.000158112879685	5.36905187769e-05	-0.000104422360908
+UniRef50_A4WQG9		0.00272476060112	0.00143549361474	-0.00128926698638
+UniRef50_P43725	Superoxide dismutase [Mn]	8.78067731056e-06	0.000104739421233	9.59587439224e-05
+UniRef50_W5FKJ5		0.000102297989595	0.000204857365868	0.000102559376273
+UniRef50_Q9KA74	Transcription termination antitermination protein NusA	0.00637974375497	0.000846209134264	-0.00553353462071
+UniRef50_P0A9F8	Glycine cleavage system transcriptional activator	0.00190523329316	0.00125032605101	-0.00065490724215
+UniRef50_A9LZF9	3 isopropylmalate dehydratase small subunit	5.6791288078e-05	0.00904198060709	0.00898518931901
+UniRef50_M9VJJ5	AP endonuclease, family 2	0.000559066611697	0.00560035805641	0.00504129144471
+UniRef50_P44255	Elongation factor P hydroxylase	0.000101870634305	3.84687765347e-05	-6.34018577703e-05
+UniRef50_F3G6H6	AsmA family protein	2.58727658681e-05	7.68339313342e-05	5.09611654661e-05
+UniRef50_UPI000474A6D9	hypothetical protein, partial	1.18702606973e-05	0.000106823419169	9.49531584717e-05
+UniRef50_UPI000380FF19	chemotaxis protein CheY, partial	0.000185967938469	0.000103181564122	-8.2786374347e-05
+UniRef50_Q21YC7	NADH quinone oxidoreductase subunit A	1.51014715536e-05	0.000145947211422	0.000130845739868
+UniRef50_P38674	Ketol acid reductoisomerase, mitochondrial	2.52051717726e-06	0.00271912679335	0.00271660627617
+UniRef50_C1ELB5	Bis tetraphosphatase PrpE [asymmetrical]	8.63366107376e-05	0.000186631709541	0.000100295098803
+UniRef50_UPI00046FCD40	rubredoxin	0.000415782126582	0.000102819783026	-0.000312962343556
+UniRef50_UPI000381FE78	hypothetical protein	5.38214392116e-06	1.29349761233e-05	7.55283220214e-06
+UniRef50_UPI0003BCF281	PREDICTED	1.04842106709e-05	0.000193126669675	0.000182642459004
+UniRef50_V8G1A8	Membrane protein	0.000426669239637	0.00149678010725	0.00107011086761
+UniRef50_UPI0003600AD1	hypothetical protein	5.51569213999e-05	2.83418244237e-05	-2.68150969762e-05
+UniRef50_UPI000328F489	PREDICTED	0.000102470352109	1.31547756869e-05	-8.93155764221e-05
+UniRef50_I4EZI0		4.99583431396e-05	0.000109203060076	5.92447169364e-05
+UniRef50_P9WN18	Glutamate synthase [NADPH] small chain	9.72227072197e-05	0.000134872420104	3.76497128843e-05
+UniRef50_I3UWQ8	Spermidine putrescine ABC transporter ATPase	0.00919429940831	0.00242014802246	-0.00677415138585
+UniRef50_P45061	UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00203166581647	0.00107640954189	-0.00095525627458
+UniRef50_A3LGX4		1.00608525054e-05	9.59106276218e-05	8.58497751164e-05
+UniRef50_UPI0002EE4E70	D amino acid dehydrogenase small subunit	3.14691063883e-05	2.61865031974e-05	-5.2826031909e-06
+UniRef50_A3LGX1		0.000221103934161	0.000423657556294	0.000202553622133
+UniRef50_UPI00046F4247	MarR family transcriptional regulator	1.21757414489e-05	9.49865002677e-05	8.28107588188e-05
+UniRef50_Q28TP6		0.000150656275976	2.81277828093e-05	-0.000122528493167
+UniRef50_Q4QP16	tRNA specific 2 thiouridylase MnmA	9.80428268128e-06	2.39685007704e-05	1.41642180891e-05
+UniRef50_P46861	Lysine  tRNA ligase	0.000395466056609	0.00449871574785	0.00410324969124
+UniRef50_R4YER9	Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.00039443356509	5.39283397707e-05	-0.000340505225319
+UniRef50_UPI00036FD96D	hypothetical protein	7.21145060561e-05	0.000491446714796	0.00041933220874
+UniRef50_Q6AB12	4 hydroxythreonine 4 phosphate dehydrogenase	0.000115204269236	0.00336068083445	0.00324547656521
+UniRef50_J2XB15		0.00894331207736	0.00172029148658	-0.00722302059078
+UniRef50_C7DAC2	ISSpo9, transposase	0.000135855728571	2.3347029746e-05	-0.000112508698825
+UniRef50_Q8TT39	30S ribosomal protein S2	0.0049062006556	0.000900527402918	-0.00400567325268
+UniRef50_A2RNT2	Proline  tRNA ligase	0.00476933443278	0.00493372030925	0.00016438587647
+UniRef50_A6M0B1	PAS PAC sensor signal transduction histidine kinase	0.000342244732592	0.00212083222683	0.00177858749424
+UniRef50_D3QE85		0.0188483377382	0.00522984033394	-0.0136184974043
+UniRef50_G4LM52		0.000256212209626	0.00394694243171	0.00369073022208
+UniRef50_UPI00047BC3F9	peptidase S41	2.68003025985e-05	0.00015204133707	0.000125241034472
+UniRef50_P27129	Lipopolysaccharide 1,2 glucosyltransferase	0.00283045323684	0.000280363960626	-0.00255008927621
+UniRef50_B2I9J2	Tryptophan synthase beta chain	7.29121724957e-05	0.0228873566944	0.0228144445219
+UniRef50_S9RYT9		0.000503140366143	0.000759643236156	0.000256502870013
+UniRef50_UPI0001850E7F	signal recognition particle protein	4.19947873189e-05	0.00191928329826	0.00187728851094
+UniRef50_Q9HUL4	Epoxyqueuosine reductase	0.000759079037954	0.000188099812232	-0.000570979225722
+UniRef50_UPI0002D4C97B	hypothetical protein	2.4975230316e-05	9.31526773862e-06	-1.56599625774e-05
+UniRef50_Q98PK9	Thioredoxin reductase	2.8050069553e-05	2.65460963868e-05	-1.5039731662e-06
+UniRef50_A8AK39	6,7 dimethyl 8 ribityllumazine synthase	0.000458485006708	0.000403248283798	-5.523672291e-05
+UniRef50_UPI000369CA42	hypothetical protein	3.61060801141e-06	0.00204435977302	0.00204074916501
+UniRef50_Q58944		0.00207529025695	0.00406632657497	0.00199103631802
+UniRef50_UPI00042A1E91	hypothetical protein	1.25922027982e-05	1.01615376546e-05	-2.4306651436e-06
+UniRef50_F3F298	AsmA family protein 	4.55602266102e-05	0.000135299462802	8.97392361918e-05
+UniRef50_UPI0002DB6B05	hypothetical protein	2.13083057587e-05	6.29001136813e-05	4.15918079226e-05
+UniRef50_UPI00036C5239	hypothetical protein	6.35681253298e-06	8.24753719114e-06	1.89072465816e-06
+UniRef50_C6SRS1		0.00343071403632	0.000965131161782	-0.00246558287454
+UniRef50_A3V2W0		2.84899951708e-05	4.36951237902e-05	1.52051286194e-05
+UniRef50_Q883S2	Universal stress protein family	0.00194676558383	0.000357959642661	-0.00158880594117
+UniRef50_UPI0003B63590	LuxR family transcriptional regulator	3.89713931898e-05	0.000403670263344	0.000364698870154
+UniRef50_UPI000365B6C8	hypothetical protein	9.38863149246e-06	2.13131346101e-05	1.19245031176e-05
+UniRef50_L0A7F9		0.000148227482538	0.0452478303918	0.0450996029093
+UniRef50_D9RHP8	Enterotoxin family protein	0.0110469308107	0.00105470251856	-0.00999222829214
+UniRef50_A9KSY6	Sulfate ABC transporter, inner membrane subunit	0.000154919010474	0.00070353226378	0.000548613253306
+UniRef50_UPI00047845D7	hypothetical protein	1.69904274774e-05	2.16859141924e-05	4.695486715e-06
+UniRef50_A6LQA8	Methyl accepting chemotaxis sensory transducer	0.000289905838214	0.0010235460952	0.000733640256986
+UniRef50_Q5HPI3	Protein GlcT	0.0146013238694	0.00357745234146	-0.0110238715279
+UniRef50_UPI0003193330	hypothetical protein	0.000136466157208	3.54435595662e-05	-0.000101022597642
+UniRef50_B5EXJ5	7 cyano 7 deazaguanine synthase	5.43656356362e-05	4.73292727899e-05	-7.0363628463e-06
+UniRef50_B0U641	Lipoyl synthase	0.000895741312443	0.00280479079022	0.00190904947778
+UniRef50_B0NLN7		1.2687842486e-05	0.000342671785859	0.000329983943373
+UniRef50_S5CLP0	Zn dependent hydrolase, including glyoxylase	0.00075603967482	0.00534872958561	0.00459268991079
+UniRef50_Q6N6L4	Phosphopantetheine adenylyltransferase	2.64110495372e-05	1.62726623113e-05	-1.01383872259e-05
+UniRef50_T5BQJ5		1.74811347414e-05	6.39739018242e-06	-1.1083744559e-05
+UniRef50_UPI000465E97D	excinuclease ABC subunit A	3.81118476502e-06	2.09951386392e-06	-1.7116709011e-06
+UniRef50_UPI0003715EFB	hypothetical protein	6.91425932738e-06	5.51706059815e-05	4.82563466541e-05
+UniRef50_E8SKI8	Ribosomal protein S18p alanine acetyltransferase	0.0244381846984	0.00452518068606	-0.0199130040123
+UniRef50_U2LTW3		6.62444019762e-06	5.5554877205e-05	4.89304370074e-05
+UniRef50_I3U9I7	Phosphomethylpyrimidine synthase ThiC	2.05742138901e-05	6.06746821728e-05	4.01004682827e-05
+UniRef50_O75306	NADH dehydrogenase [ubiquinone] iron sulfur protein 2, mitochondrial	2.33029437924e-05	3.40040471578e-05	1.07011033654e-05
+UniRef50_B4RJZ9		0.000295680931211	0.00532934272303	0.00503366179182
+UniRef50_UPI00037AAD6E	hypothetical protein	0.000121976407489	3.32858824924e-05	-8.86905249966e-05
+UniRef50_M4UTW5		5.16966622e-05	1.95126574201e-05	-3.21840047799e-05
+UniRef50_B9KR53	Transcriptional regulator, Fis family	0.00257794229738	0.000494987553634	-0.00208295474375
+UniRef50_A0A029LHT4		0.00268632192166	0.0016958113222	-0.00099051059946
+UniRef50_A0A024HXI8		8.56689916941e-05	0.000178499755829	9.28307641349e-05
+UniRef50_C6SQS1		0.00527909842341	0.00126053388161	-0.0040185645418
+UniRef50_Q5HJ89	Protein EssA	0.0105080381829	0.00315007540302	-0.00735796277988
+UniRef50_Q887V6	Protein CysZ homolog	0.00103558584352	0.000350871332905	-0.000684714510615
+UniRef50_G7U6T9	Bacterial extracellular solute binding protein, family 5	0.000300218762002	0.0059868394597	0.0056866206977
+UniRef50_UPI0002E39CBB	hypothetical protein	5.9967823003e-06	4.07640353713e-05	3.4767253071e-05
+UniRef50_UPI00035CE977	hypothetical protein	0.00191717573781	0.000560670480056	-0.00135650525775
+UniRef50_Q6FD73		0.0012582866295	0.0108565872938	0.0095983006643
+UniRef50_A3M3H0	Adhesin Ata autotransporter	0.000105657545649	0.00582996982867	0.00572431228302
+UniRef50_Q46I98	Aspartate  tRNA ligase	2.71340909377e-06	1.35654558785e-05	1.08520467847e-05
+UniRef50_UPI000467166E	hypothetical protein	5.02842727754e-06	7.73174702735e-06	2.70331974981e-06
+UniRef50_UPI00037BC758	dihydropyrimidine dehydrogenase subunit B, partial	0.000272485495107	0.000128852465863	-0.000143633029244
+UniRef50_Q5I3J7	Aec68	0.000759788003887	0.000435174594507	-0.00032461340938
+UniRef50_UPI00036C8B3C	AraC family transcriptional regulator	0.00084999030458	0.000150217388882	-0.000699772915698
+UniRef50_Q62MT4	Methionyl tRNA formyltransferase	0.00022469404098	0.00506535232946	0.00484065828848
+UniRef50_W4KZP5	Peptidase family S11	0.000109931023379	2.17266206765e-05	-8.82044027025e-05
+UniRef50_Q3JHM0		0.000266549363836	0.0073421340745	0.00707558471066
+UniRef50_P80705	Aldehyde dehydrogenase gamma chain 	0.0732701412317	0.0054821190768	-0.0677880221549
+UniRef50_V6UAA6		6.84133645646e-05	0.000101454332734	3.30409681694e-05
+UniRef50_UPI00047E4EA4	hypothetical protein	3.23101369536e-06	8.3257393168e-06	5.09472562144e-06
+UniRef50_M1P548	Dipeptide binding ABC transporter, periplasmic substrate binding component	0.00332086994703	0.000606932896307	-0.00271393705072
+UniRef50_UPI000289E1E5	sodium	2.48727342067e-05	5.75689030312e-05	3.26961688245e-05
+UniRef50_P37474	Transcription repair coupling factor	0.0135951546948	0.00251558327466	-0.0110795714201
+UniRef50_P46320	Probable 6 phospho beta glucosidase	0.00117342753866	0.00580918367303	0.00463575613437
+UniRef50_G4YC47		0.000428442915246	3.93144049521e-05	-0.000389128510294
+UniRef50_Q5HP54		0.0143919739566	0.00319683949508	-0.0111951344615
+UniRef50_R6FZP0	Flagellar M ring protein	0.000650712489061	0.000800449093565	0.000149736604504
+UniRef50_D6SFZ2		7.2968387879e-05	0.0016406483622	0.00156767997432
+UniRef50_A5ISK2	ABC 2 type transporter	0.00650822148537	0.00160100917807	-0.0049072123073
+UniRef50_UPI00035F0BE8	hypothetical protein	0.000216008261563	0.00587483206376	0.0056588238022
+UniRef50_L8DT93	Chaperone protein DnaJ	7.43797070742e-05	7.10453049938e-05	-3.3344020804e-06
+UniRef50_F8HGC4	Permease of the major facilitator family protein	2.14928393881e-05	5.11386655042e-05	2.96458261161e-05
+UniRef50_F0TCJ5	Methyltransferase MtaA CmuA family	0.00449854756675	0.000378028476564	-0.00412051909019
+UniRef50_E4PPH7	DNA repair protein RecN	0.000705128588587	0.00053448590692	-0.000170642681667
+UniRef50_D7BZV1		6.1100953038e-05	4.03203452809e-05	-2.07806077571e-05
+UniRef50_Q46948	Chaperone protein YajL	0.00592854323394	0.00298687022154	-0.0029416730124
+UniRef50_P0A7B0	Inorganic pyrophosphatase	0.00468975584017	5.07306630968e-05	-0.00463902517707
+UniRef50_UPI00037BC2EC	hypothetical protein	5.36548186326e-06	1.04113297482e-05	5.04584788494e-06
+UniRef50_UPI00036A31F9	hypothetical protein	6.45871748108e-05	2.52322934429e-05	-3.93548813679e-05
+UniRef50_UPI00047ED552	hypothetical protein	1.49257996457e-05	1.81686768888e-05	3.2428772431e-06
+UniRef50_Q1GCB3		1.48225195358e-05	1.3980822569e-05	-8.416969668e-07
+UniRef50_A0Q1L0	Putative fluoride ion transporter CrcB	0.00202224636885	0.000456675317307	-0.00156557105154
+UniRef50_A3V7A8		0.000223271229081	8.23731490911e-05	-0.00014089807999
+UniRef50_M9S3N5	Glycosyl transferase family protein	0.00200291339078	0.000244063392719	-0.00175884999806
+UniRef50_U5MSV8	DNA binding protein, excisionase family	0.000452686552077	0.0018496368431	0.00139695029102
+UniRef50_Q6UB95	RepA	0.000166896197207	7.96238755497e-06	-0.000158933809652
+UniRef50_UPI000369C939	hypothetical protein	1.97935694715e-05	3.60063142644e-05	1.62127447929e-05
+UniRef50_P27298	Oligopeptidase A	0.00123253352837	0.000114611916634	-0.00111792161174
+UniRef50_A0A058Z2Y8		1.30791648539e-06	6.61907223052e-07	-6.46009262338e-07
+UniRef50_UPI0002486501	methylcitrate synthase	3.72161690008e-05	5.50823761587e-05	1.78662071579e-05
+UniRef50_R5RD02		0.00130195583421	0.00053693946399	-0.00076501637022
+UniRef50_UPI000405521B	acyl CoA dehydrogenase	4.16643713376e-05	1.39261643727e-05	-2.77382069649e-05
+UniRef50_UPI0003B6EF1B	dihydroxyacetone kinase	1.81633295496e-05	0.00132191334626	0.00130375001671
+UniRef50_B8I2T4	UDP N acetylmuramoylalanine  D glutamate ligase	0.000577180061908	0.00126692657461	0.000689746512702
+UniRef50_Q5M1E5		0.00452175034941	0.00351972985869	-0.00100202049072
+UniRef50_G7M8Y1	Type IV pilus assembly PilZ	0.000223364490448	0.000340096013652	0.000116731523204
+UniRef50_V9WDB1		7.07268037056e-05	1.2052550087e-05	-5.86742536186e-05
+UniRef50_UPI000473B5E4	translation initiation factor IF 3, partial	0.000218261941611	0.000311851248785	9.3589307174e-05
+UniRef50_S8ZG58	Amidase	0.000191813840575	0.000290685751701	9.8871911126e-05
+UniRef50_UPI000262E88D	reductase	0.000118951484509	0.000210977835457	9.2026350948e-05
+UniRef50_P72785	4 alpha glucanotransferase	1.38621375834e-05	0.000768150898684	0.000754288761101
+UniRef50_UPI00047CBF8E	hypothetical protein	6.80074935093e-06	1.17248636291e-05	4.92411427817e-06
+UniRef50_F2LSI9	Metal dependent phosphohydrolase, HD region	0.00026397621598	0.00331327340308	0.0030492971871
+UniRef50_UPI00026286B7	ABC transporter permease	0.000193025738056	1.46774618893e-05	-0.000178348276167
+UniRef50_UPI00037C530D	hypothetical protein	2.55150246161e-06	3.96254489078e-06	1.41104242917e-06
+UniRef50_X3WHN6	Short chain dehydrogenase 	2.32259994116e-05	5.06289508849e-05	2.74029514733e-05
+UniRef50_UPI000366373C	hypothetical protein	0.000348154852414	0.000134243135142	-0.000213911717272
+UniRef50_O27123	DNA directed RNA polymerase subunit B	0.0027263150849	0.000915817077032	-0.00181049800787
+UniRef50_UPI000464BDF6	amino acid permease	2.38554011583e-05	7.63671270001e-06	-1.62186884583e-05
+UniRef50_UPI0002D53655	hypothetical protein	4.23800650564e-05	2.57721182107e-05	-1.66079468457e-05
+UniRef50_D9UDJ1	Predicted protein	0.00103346272487	9.21492938561e-05	-0.000941313431014
+UniRef50_UPI0003B6AAD5	hypothetical protein	3.28656895422e-05	1.33915526063e-05	-1.94741369359e-05
+UniRef50_UPI00036396B4	hypothetical protein	1.38791313155e-05	0.000788674304946	0.000774795173631
+UniRef50_Q5HP23	Acetylglutamate kinase	0.0059154411298	0.00275544682379	-0.00315999430601
+UniRef50_R7PUS4	Adhesin like protein	0.004099221115	0.000770132169605	-0.0033290889454
+UniRef50_B0RVC3	Two component system response regulator	0.000764211441894	0.00370989493815	0.00294568349626
+UniRef50_U6HM79	Mitochondrial ribosomal protein S12	8.03480802961e-05	0.000103886971248	2.35388909519e-05
+UniRef50_C5Y1C5		3.49696237215e-05	7.7775025377e-05	4.28054016555e-05
+UniRef50_UPI00029AFBF4	excinuclease ABC subunit A	8.11635146615e-06	2.36392085813e-05	1.55228571151e-05
+UniRef50_X7F301		4.95161601479e-05	3.16890752935e-05	-1.78270848544e-05
+UniRef50_UPI0003B6DCF9	cysteine synthase	3.50528952244e-06	1.70442751601e-05	1.35389856377e-05
+UniRef50_UPI0002490F12	alcohol dehydrogenase	1.0361242598e-05	9.68459580098e-06	-6.7664679702e-07
+UniRef50_Q3J074	TRAP T family transporter, DctP  subunit	0.0127254856915	0.00397289273861	-0.00875259295289
+UniRef50_C4J2K7		0.000156502016027	0.00075391217446	0.000597410158433
+UniRef50_A0A028WY26	PF04507 domain protein	1.57956794645e-05	2.93457791256e-05	1.35500996611e-05
+UniRef50_C5Y4M7		0.000241275560139	7.30141036513e-05	-0.000168261456488
+UniRef50_Q2Y5B5	Ribosomal RNA small subunit methyltransferase G	2.17335841766e-05	4.59826369244e-05	2.42490527478e-05
+UniRef50_X2I3A5	Biotin  protein ligase	0.00107988336529	0.00236825759424	0.00128837422895
+UniRef50_L1K7Q7		0.00245044686356	0.000813188663273	-0.00163725820029
+UniRef50_P55177	Hydrolase in agr operon	0.0189370777488	0.00183490899356	-0.0171021687552
+UniRef50_P77966	DNA gyrase subunit B	1.15717469857e-05	1.5680260196e-05	4.1085132103e-06
+UniRef50_U3QXL3	NADH dehydrogenase	0.000162476035378	0.00719594470653	0.00703346867115
+UniRef50_L0DVV1		5.67799233753e-05	0.000525381471564	0.000468601548189
+UniRef50_V9XXU6		4.92880611665e-06	0.000312355936417	0.0003074271303
+UniRef50_P76082	2,3 dehydroadipyl CoA hydratase	0.00228813312123	0.0010361989656	-0.00125193415563
+UniRef50_UPI000462B96F	PREDICTED	8.44316011577e-06	4.81819953464e-06	-3.62496058113e-06
+UniRef50_F8KNY9		0.00321151144903	0.00161223912243	-0.0015992723266
+UniRef50_N0CST0		0.000101839745189	0.000117895732041	1.6055986852e-05
+UniRef50_A6M3H8		0.000151804016961	0.000887268018229	0.000735464001268
+UniRef50_F3KGL6		8.02630746945e-05	0.00012501574942	4.47526747255e-05
+UniRef50_J7QZC7	Citrate dependent iron transport, membrane bound protein	0.00324403690212	0.000975817036696	-0.00226821986542
+UniRef50_W8RUY9	Carbonic anhydrase, family 3	0.000208566720793	0.000640403867119	0.000431837146326
+UniRef50_UPI000376C688	MULTISPECIES	0.00030104252435	7.4105265967e-05	-0.000226937258383
+UniRef50_G7LY34	ATP dependent DNA helicase RecQ	0.000372145752678	0.00172377955165	0.00135163379897
+UniRef50_UPI0003B3BF74	diguanylate cyclase	6.25603067063e-06	6.0645157761e-05	5.43891270904e-05
+UniRef50_UPI00016AC33B	malto oligosyltrehalose synthase, partial	1.60060594764e-05	2.25998052077e-05	6.5937457313e-06
+UniRef50_P0ACB9	Protein HemY	0.00250102242456	0.00198237388763	-0.00051864853693
+UniRef50_B9KPD3	Small GTP binding protein	0.0026150676038	0.000852480117634	-0.00176258748617
+UniRef50_C1KXH5	3 5 exoribonuclease YhaM	0.0254843543049	0.00743461518344	-0.0180497391215
+UniRef50_UPI00035C4E67	hypothetical protein, partial	4.17887867711e-05	0.000548632219814	0.000506843433043
+UniRef50_Q5LZU3	Phosphate import ATP binding protein PstB 1	6.19608750746e-06	8.65769685155e-05	8.0380881008e-05
+UniRef50_UPI000362695F	hypothetical protein	3.10218232137e-06	0.000236375038554	0.000233272856233
+UniRef50_Q81ZF5	Methionine import ATP binding protein MetN 2	2.08542584581e-05	0.000168591839309	0.000147737580851
+UniRef50_Q3J527		0.0121910723862	0.00276895955352	-0.00942211283268
+UniRef50_Q3J525		0.00361244030935	0.000193867795882	-0.00341857251347
+UniRef50_Q3J523		0.00105059262312	0.000441870381833	-0.000608722241287
+UniRef50_UPI0004098CF0	hypothetical protein	4.66871030311e-05	0.000230291735532	0.000183604632501
+UniRef50_UPI0004261724	hypothetical protein	2.96403389293e-05	4.5459373169e-05	1.58190342397e-05
+UniRef50_P37178	Phosphoenolpyruvate protein phosphotransferase PtsP	0.00239966373598	0.00103633685435	-0.00136332688163
+UniRef50_K6NB87	NADP oxidoreductase coenzyme F420 dependent	0.000615466286172	0.00104974776197	0.000434281475798
+UniRef50_Q00753	Msm operon regulatory protein	0.00275549624179	0.000429336914563	-0.00232615932723
+UniRef50_UPI000360AD7B	hypothetical protein	4.47930729935e-06	0.000341186920229	0.00033670761293
+UniRef50_UPI000345C404	peptide ABC transporter ATP binding protein	4.86775225569e-05	3.61240999147e-05	-1.25534226422e-05
+UniRef50_UPI00046F1741	DNA mismatch repair protein MutL	3.49785532092e-06	5.40716037161e-06	1.90930505069e-06
+UniRef50_K2M973		0.000381264435227	3.17625567404e-05	-0.000349501878487
+UniRef50_Q8Z389	UDP N acetyl D mannosamine dehydrogenase	0.0024089561752	0.00065462505164	-0.00175433112356
+UniRef50_I1PAG3		2.59136595254e-05	0.000279710828579	0.000253797169054
+UniRef50_UPI00046359F3	hypothetical protein	2.58868812771e-05	3.86167435997e-05	1.27298623226e-05
+UniRef50_R9SHS2	Xaa Pro aminopeptidase	0.00386270886266	0.000670593214563	-0.0031921156481
+UniRef50_Q05026	UDP glucose 4 epimerase	0.000904220494495	0.00712825588158	0.00622403538708
+UniRef50_UPI000383C331	PREDICTED	3.02132796513e-05	5.05654325675e-06	-2.51567363946e-05
+UniRef50_F2GA52	Starvation protein B	0.000358372774223	0.0133533360461	0.0129949632719
+UniRef50_UPI00046CD6A6	hypothetical protein	5.12177947953e-06	3.69509054181e-05	3.18291259386e-05
+UniRef50_UPI0003B37C7C	Ssp gyrB intein	6.15983921532e-06	1.08104393249e-05	4.65060010958e-06
+UniRef50_UPI00038053ED	hypothetical protein	1.79764749136e-05	2.95857707503e-05	1.16092958367e-05
+UniRef50_A6TLS6	Phosphoribosylglycinamide formyltransferase	0.000740024939322	0.00158927747328	0.000849252533958
+UniRef50_UPI000379A6AD	30S ribosomal protein S4	1.25482226493e-05	5.14116048871e-05	3.88633822378e-05
+UniRef50_X0SMG4	Marine sediment metagenome DNA, contig	2.56332440775e-05	1.99653510848e-05	-5.6678929927e-06
+UniRef50_Q6FBI7		0.000132451224162	0.0100308842154	0.00989843299124
+UniRef50_A5IUD2	ATP dependent Clp protease proteolytic subunit	0.034890681551	0.00443146008775	-0.0304592214633
+UniRef50_UPI0003817364	hypothetical protein	2.59817991815e-05	2.42163405843e-05	-1.7654585972e-06
+UniRef50_Q2S1J1	Adenylosuccinate synthetase	4.33379782052e-06	1.00683879558e-05	5.73459013528e-06
+UniRef50_Q5LAB4	3 isopropylmalate dehydrogenase	2.94032841193e-05	0.00438276547754	0.00435336219342
+UniRef50_UPI0003661FA3	methionyl tRNA synthetase	1.49776098015e-05	4.33400766059e-05	2.83624668044e-05
+UniRef50_R5RTQ1	MIP family channel protein	0.00031855357709	0.000549488731932	0.000230935154842
+UniRef50_Q4L8Y1		0.0169737491982	0.00473252760718	-0.012241221591
+UniRef50_UPI0003620285	hypothetical protein	1.72211416555e-05	2.23520030114e-05	5.1308613559e-06
+UniRef50_A4X3N1		8.71054251266e-06	6.93609249395e-05	6.06503824268e-05
+UniRef50_M7AGI7		3.67785066002e-05	0.000448062821029	0.000411284314429
+UniRef50_A3UJ86		5.0458596107e-06	9.44328168304e-06	4.39742207234e-06
+UniRef50_G0EV06	Malonate decarboxylase gamma subunit	0.000593300163503	0.00887721914726	0.00828391898376
+UniRef50_Q46908	Putative electron transfer flavoprotein subunit YgcR	0.00410816030675	0.000910817538908	-0.00319734276784
+UniRef50_J9YRC9	Dihydrofolate reductase	0.00360663075539	0.00133304042597	-0.00227359032942
+UniRef50_P19669	Transaldolase	0.00050599703289	0.0347280891969	0.034222092164
+UniRef50_UPI00035C8A55	hypothetical protein, partial	5.34985256172e-06	3.37463840886e-05	2.83965315269e-05
+UniRef50_Q3JRV3	200 kDa antigen p200, putative	4.75917892965e-05	0.000192530779876	0.000144938990579
+UniRef50_UPI00016B0021	alkaline phosphatase family protein	0.000159255198506	6.87980406621e-05	-9.04571578439e-05
+UniRef50_UPI00016BFB47	excinuclease ABC subunit C	2.39863277606e-06	3.35155000666e-05	3.11168672905e-05
+UniRef50_P75957	Lipoprotein releasing system ATP binding protein LolD	0.00327849683527	0.0132777029417	0.00999920610643
+UniRef50_Q8Y6E5	Adenine deaminase	1.68644069208e-05	0.00121260965577	0.00119574524885
+UniRef50_V6QD47		7.55570608499e-05	6.3505902113e-05	-1.20511587369e-05
+UniRef50_R6XHZ3	Iron compound ABC transporter ATP binding protein	0.000782617263819	0.00149295544533	0.000710338181511
+UniRef50_UPI0004697408	DNA processing protein	2.32208004216e-05	4.83185187353e-05	2.50977183137e-05
+UniRef50_Q1C7K2	Electron transport complex subunit B	0.00159646010473	0.00134960604522	-0.00024685405951
+UniRef50_O86062	NADH pyrophosphatase	0.000152416953778	1.45365298885e-05	-0.000137880423889
+UniRef50_X6L5V7		4.78063390865e-05	1.65147512635e-05	-3.1291587823e-05
+UniRef50_UPI00046F4BB9	transcriptional regulator	0.000220981940467	2.2909487724e-05	-0.000198072452743
+UniRef50_B2V236	Flagellar hook protein FlgE	0.000631652931167	0.00190074900496	0.00126909607379
+UniRef50_G0AHQ2	TonB dependent receptor	4.28961350982e-05	0.00186985511116	0.00182695897606
+UniRef50_UPI000472C224	hypothetical protein	1.9869562248e-05	4.84201533734e-05	2.85505911254e-05
+UniRef50_UPI00035FBCBA	hypothetical protein	3.68836549714e-05	1.88282219208e-05	-1.80554330506e-05
+UniRef50_V8PQC8		0.000171368740561	0.000179414666201	8.04592564e-06
+UniRef50_UPI00023781E2	acyl homoserine lactone synthase	8.48793668839e-06	1.3598673887e-05	5.11073719861e-06
+UniRef50_R7QQF1	Stackhouse genomic scaffold, scaffold_590	0.000153734525033	2.65387388015e-05	-0.000127195786231
+UniRef50_UPI0003A1834B	MULTISPECIES	0.000194194385449	0.00102805543027	0.000833861044821
+UniRef50_Q9C641	Elongation factor G 1, mitochondrial	8.7461524609e-06	1.87250108941e-05	9.9788584332e-06
+UniRef50_UPI00047AAA07	beta lactamase	4.14014628745e-05	9.35891470893e-06	-3.20425481656e-05
+UniRef50_Q1CTN3	7 cyano 7 deazaguanine synthase	7.3552316648e-06	0.00152049852899	0.00151314329733
+UniRef50_T3PCK3	Transcriptional regulator family protein	1.26054585924e-05	6.1449939537e-05	4.88444809446e-05
+UniRef50_UPI0000E11B6C	Hemolysin type calcium binding region	2.62992550307e-05	6.12257821973e-06	-2.0176676811e-05
+UniRef50_P18392	Sensor protein RstB	0.00331947000221	0.000311759312802	-0.00300771068941
+UniRef50_UPI0003686798	hypothetical protein	1.18589681096e-05	1.11366429858e-05	-7.223251238e-07
+UniRef50_A7IEB4		0.000127468925487	4.6006267925e-05	-8.1462657562e-05
+UniRef50_F0MK77	HAD hydrolase, IIB family	0.000345261575169	0.00263450906111	0.00228924748594
+UniRef50_UPI00035D0C83	hypothetical protein, partial	3.87200208382e-06	5.38553686665e-05	4.99833665827e-05
+UniRef50_UPI0003B7726E	ABC transporter permease	1.85891441069e-05	8.50843552875e-05	6.64952111806e-05
+UniRef50_UPI0003B5ECB0	putrescine spermidine ABC transporter substrate binding protein	4.63327389952e-05	2.10230446326e-05	-2.53096943626e-05
+UniRef50_D1AJ49	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000144262161343	0.000536876708778	0.000392614547435
+UniRef50_A6LUW0	Dihydropyrimidinase	0.000522153143512	0.00179849325122	0.00127634010771
+UniRef50_P23849	Trk system potassium uptake protein TrkG	0.00297537204217	0.000424093004108	-0.00255127903806
+UniRef50_UPI000413C1F5	hypothetical protein	2.43524730173e-05	0.000136739234032	0.000112386761015
+UniRef50_UPI00036EC63D	hypothetical protein	1.58246278646e-05	0.000340650364033	0.000324825736168
+UniRef50_O27465	Protein L isoaspartate methyltransferase homolog	0.00413475052348	0.000243059016624	-0.00389169150686
+UniRef50_G7M4H0	GntR domain protein	0.000535790836533	0.00137438457389	0.000838593737357
+UniRef50_UPI0003646C18	hypothetical protein	9.9569923154e-05	0.000129189679279	2.9619756125e-05
+UniRef50_UPI00035E99F6	hypothetical protein, partial	0.000954089252679	0.000194526437422	-0.000759562815257
+UniRef50_W0Z0M6	ABC transporter permease	0.000461187096749	0.0136664240062	0.0132052369095
+UniRef50_R7PVK0	Bacterial transferase hexapeptide	0.00255833705923	0.000314724730229	-0.002243612329
+UniRef50_F0TB29	Mur ligase middle domain protein	0.00234083951527	0.000737076263321	-0.00160376325195
+UniRef50_O07051	L allo threonine aldolase	8.21738197097e-06	1.09009903017e-05	2.68360833073e-06
+UniRef50_T1XRH9	Ribulose phosphate 3 epimerase	0.014711479945	0.00236184775907	-0.0123496321859
+UniRef50_A0A023S2Y3		0.000618829489919	0.0091773258282	0.00855849633828
+UniRef50_B3PM96	Uracil phosphoribosyltransferase	9.35247077329e-06	6.05640621401e-05	5.12115913668e-05
+UniRef50_UPI0003B6FCF3	sulfate permease, partial	0.000159845459402	5.54979110733e-05	-0.000104347548329
+UniRef50_Q3KK43		0.000112102810476	6.60403464128e-05	-4.60624640632e-05
+UniRef50_E6U995	Binding protein dependent transport systems inner membrane component	0.0117456894986	0.00768692955467	-0.00405875994393
+UniRef50_S9FAF7		0.000181384188751	0.000244542040453	6.3157851702e-05
+UniRef50_J9PA20		2.88428780309e-05	5.44504995258e-05	2.56076214949e-05
+UniRef50_F0L4J7	Terminase large subunit	1.52816886268e-05	7.32641926799e-06	-7.95526935881e-06
+UniRef50_UPI00047624EF	DNA recombination protein RecAprecursor	0.00011287043079	0.000188898470941	7.6028040151e-05
+UniRef50_A0LGY7	Holliday junction ATP dependent DNA helicase RuvA	1.40159337328e-05	1.14111709306e-05	-2.6047628022e-06
+UniRef50_Q1GJB3	Protein NrdI	1.57258387319e-05	7.44143467281e-05	5.86885079962e-05
+UniRef50_A6FR36		8.35014631599e-05	0.000871288980447	0.000787787517287
+UniRef50_UPI0003683730	choline dehydrogenase, partial	2.42865320735e-05	8.87448009164e-06	-1.54120519819e-05
+UniRef50_A3PNW7		0.00493661758386	0.000283286608633	-0.00465333097523
+UniRef50_G8AX62		0.0132619931527	0.00378459148619	-0.00947740166651
+UniRef50_G8AX61		0.0001435134661	0.00075603260534	0.00061251913924
+UniRef50_UPI000288951C	hypothetical protein	0.00022285043728	0.000402435811958	0.000179585374678
+UniRef50_Q2FJ20	Transcriptional regulator SarA	0.00467982129243	0.00362371240964	-0.00105610888279
+UniRef50_P30952	Malate synthase 1, glyoxysomal	1.07876045969e-05	7.84865810319e-06	-2.93894649371e-06
+UniRef50_U5BVT6		4.21841601109e-05	1.66278651571e-05	-2.55562949538e-05
+UniRef50_UPI00046A51CF	hypothetical protein	1.04665757863e-05	3.15489913774e-05	2.10824155911e-05
+UniRef50_W4HL11		0.000184284309224	4.31173411985e-06	-0.000179972575104
+UniRef50_UPI00041A2261	hypothetical protein	6.54074356327e-05	0.00164110405488	0.00157569661925
+UniRef50_UPI000465CB11	choline dehydrogenase	2.89691893462e-05	1.35853457598e-05	-1.53838435864e-05
+UniRef50_K3Y3R8		4.34133883887e-05	0.00096304558664	0.000919632198251
+UniRef50_UPI0003D774B2	PREDICTED	6.1158071885e-06	1.1456963424e-05	5.3411562355e-06
+UniRef50_G7DEN0		0.000126933045868	7.97633307071e-05	-4.71697151609e-05
+UniRef50_UPI000303FFC3	hypothetical protein	0.000205795428692	2.90597859939e-05	-0.000176735642698
+UniRef50_T2EBD3	ATP dependent helicase HrpA	0.000433300520741	0.000138548700922	-0.000294751819819
+UniRef50_UPI0003751AA9	hypothetical protein	9.8473647344e-06	3.65590816294e-05	2.6711716895e-05
+UniRef50_UPI000174441D	ATPase AAA 2 domain protein	5.61940744332e-06	1.53768649842e-05	9.75745754088e-06
+UniRef50_UPI0003B682D7	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.91845796489e-06	9.01760878804e-06	4.09915082315e-06
+UniRef50_UPI0003EFB271	hypothetical protein	0.000612139441381	0.000816543885337	0.000204404443956
+UniRef50_Q04G65	Adenylate kinase	2.18027589446e-05	1.7278852478e-05	-4.5239064666e-06
+UniRef50_UPI00047D9C2A	3 hydroxybutyryl CoA dehydrogenase	3.04837157664e-06	6.35690198217e-05	6.05206482451e-05
+UniRef50_E1W4N2		1.85081076005e-05	0.00109047705241	0.00107196894481
+UniRef50_P0A0U8	Penicillin binding protein 2	6.76979898706e-05	0.00242281598542	0.00235511799555
+UniRef50_B2S7C0	Thromboxane receptor	0.00128857402545	0.000316174464854	-0.000972399560596
+UniRef50_D5WJ02	PE PGRS family protein	2.8690382283e-06	4.11278588838e-06	1.24374766008e-06
+UniRef50_C3FB78	Transposon Tn1546 resolvase	0.00704417342713	0.00109577299846	-0.00594840042867
+UniRef50_P90597	Dihydrolipoyl dehydrogenase	0.00909333356538	0.00128845863784	-0.00780487492754
+UniRef50_G7D8J6		3.6351821613e-05	4.00939179421e-05	3.7420963291e-06
+UniRef50_M9VK36	Cobaltochelatase subunit	0.000280888951858	0.00406509453624	0.00378420558438
+UniRef50_K2G5P2		0.000157946743163	0.000297142045145	0.000139195301982
+UniRef50_UPI0003B33E99	phosphopentomutase	1.00769884913e-05	1.89219212099e-05	8.8449327186e-06
+UniRef50_UPI0003B58728	peptidase	1.29514688596e-05	8.66277331382e-05	7.36762642786e-05
+UniRef50_P65368		0.000506692602481	0.00042903153298	-7.7661069501e-05
+UniRef50_P54981	Phytoene dehydrogenase	4.01864129138e-06	5.85424014261e-06	1.83559885123e-06
+UniRef50_Q8RM03	Acetone carboxylase alpha subunit	6.09175882979e-05	0.00387753876337	0.00381662117507
+UniRef50_G7M7T5	Metallophosphoesterase	0.000141028389365	0.000216878853269	7.5850463904e-05
+UniRef50_M0DR98	Transcriptional regulator	5.23536345079e-05	4.65598535357e-05	-5.7937809722e-06
+UniRef50_U2PUQ4		5.68266512977e-06	7.87481202392e-06	2.19214689415e-06
+UniRef50_F7Y7J0	NAD dependent epimerase dehydratase	0.00673835425204	0.00150403681545	-0.00523431743659
+UniRef50_B7I4D0	Transcriptional regulator, DeoR family	0.000386504425449	0.00830031375279	0.00791380932734
+UniRef50_R9TYY8	Spore envelope assembly protein SeaA	7.23220937551e-05	0.000244400031881	0.000172077938126
+UniRef50_Q8X693	2 methylcitrate dehydratase	0.00340320085295	0.00108713551185	-0.0023160653411
+UniRef50_F2ADJ4		0.00138313035997	0.000254949673557	-0.00112818068641
+UniRef50_R5QQN1		2.54995435079e-05	3.75624999062e-05	1.20629563983e-05
+UniRef50_D4DML3		2.03329935824e-05	0.00019802893202	0.000177695938438
+UniRef50_E4CT22		9.63042046387e-05	0.00136332082892	0.00126701662428
+UniRef50_G7RE88	Outer membrane specific lipoprotein transporter subunit LolC	0.00059290993013	0.00243374318948	0.00184083325935
+UniRef50_UPI0003B33E14	threonine dehydratase, partial	2.34716605286e-05	1.42558671113e-05	-9.2157934173e-06
+UniRef50_E4WMF0		8.60873045102e-05	0.000102460966035	1.63736615248e-05
+UniRef50_UPI00036DEA69	hypothetical protein	3.42528906782e-06	4.85654044341e-06	1.43125137559e-06
+UniRef50_G0A8R2	Amino acid adenylation	0.000177007877711	0.00774729090068	0.00757028302297
+UniRef50_UPI00046677C0	dihydrolipoamide dehydrogenase	2.85647164802e-06	7.00147137054e-06	4.14499972252e-06
+UniRef50_UPI0004669176	ABC transporter permease	0.000150565574156	0.00014390675152	-6.658822636e-06
+UniRef50_UPI0004651997	hypothetical protein, partial	5.94867436361e-05	0.000123760830211	6.42740865749e-05
+UniRef50_P51649	Succinate semialdehyde dehydrogenase, mitochondrial	1.2014348092e-05	5.37934655245e-06	-6.63500153955e-06
+UniRef50_Q4L9G5	Alkaline phosphatase III	0.0222084613425	0.00397633193326	-0.0182321294092
+UniRef50_S6AK43		7.70370699852e-06	2.31953396884e-05	1.54916326899e-05
+UniRef50_W0BBW6	Acetyl coenzyme A synthetase	0.000611706170381	0.000298108859029	-0.000313597311352
+UniRef50_P24197		0.00748076639058	0.00173759247627	-0.00574317391431
+UniRef50_D3QJ12	ABC transporter ecsA	0.011552820468	0.00465031277247	-0.00690250769553
+UniRef50_A0JTB2	Homodimeric dihydroxyacetone kinase	0.000157557738449	0.00712616033919	0.00696860260074
+UniRef50_UPI000377AAAD	hypothetical protein	3.82898087767e-06	1.25381998203e-05	8.70921894263e-06
+UniRef50_T1C4J3	Protein containing DUF28	4.80040828154e-05	7.17163224773e-05	2.37122396619e-05
+UniRef50_UPI00039592E8	PREDICTED	5.05038838937e-05	0.000232783355571	0.000182279471677
+UniRef50_A7HM29	Translation initiation factor IF 1	0.000618829489919	0.00081279827118	0.000193968781261
+UniRef50_P59351	UPF0229 protein PP_0396	0.00377148109125	0.000361138469877	-0.00341034262137
+UniRef50_F9P554	Conserved domain protein	4.5620194744e-05	0.000170842923096	0.000125222728352
+UniRef50_Q3IUY8	Response regulator receiver protein	0.0337235622163	0.00551672438586	-0.0282068378304
+UniRef50_UPI0002F4F600	translation elongation factor	9.3939874071e-07	1.01147992854e-05	9.17540054469e-06
+UniRef50_D0WHH7		4.8358880979e-05	0.000141733403282	9.3374522303e-05
+UniRef50_UPI0002D2633F	3 isopropylmalate dehydrogenase	1.95900133682e-05	3.27629058024e-05	1.31728924342e-05
+UniRef50_UPI0003F54605	aldehyde dehydrogenase	1.89488844077e-05	5.00370110407e-05	3.1088126633e-05
+UniRef50_B2S584	Ribulose phosphate 3 epimerase	0.00266400867833	0.000256054946702	-0.00240795373163
+UniRef50_Q8PUM8	Sodium proline symporter	0.00364758312227	0.00022576016586	-0.00342182295641
+UniRef50_Q60BY8	Type 4 fimbrial biogenesis protein PilM	0.00135499020047	0.00742300104528	0.00606801084481
+UniRef50_Q8CMK8	Membrane protein insertase YidC 1	0.0306172626198	0.0080452501302	-0.0225720124896
+UniRef50_UPI0001695299	ABC transporter like protein	2.40921666254e-05	8.68429531725e-05	6.27507865471e-05
+UniRef50_Q7UKJ8	Bifunctional purine biosynthesis protein PurH	2.64844047851e-06	1.0666131234e-05	8.01769075549e-06
+UniRef50_P0AG01	Lipopolysaccharide biosynthesis protein WzzE	0.00305385263064	0.000253490734069	-0.00280036189657
+UniRef50_UPI00026C71F4	ABC transporter ATP binding protein	4.25670285668e-06	3.95585196293e-06	-3.0085089375e-07
+UniRef50_P58083	Histidine ammonia lyase	3.26337042028e-06	1.4373723425e-05	1.11103530047e-05
+UniRef50_U7DF00	GntR family transcriptional regulator	0.00174498858837	0.000412069821193	-0.00133291876718
+UniRef50_Q8CAY6	Acetyl CoA acetyltransferase, cytosolic	0.0133477838507	0.0207103695432	0.0073625856925
+UniRef50_A3PKD3	Flagellar motor switch protein FliG	0.00745663665815	0.00260170437561	-0.00485493228254
+UniRef50_F2A6H7		0.000257851065039	8.95114064817e-05	-0.000168339658557
+UniRef50_UPI0004117F04	hypothetical protein	8.6012962144e-05	4.33820558637e-05	-4.26309062803e-05
+UniRef50_D8JDE9	Major Facilitator Superfamily protein	0.000120218467792	0.0046780585004	0.00455784003261
+UniRef50_V7ZFZ6		0.000225982271813	3.69866404465e-05	-0.000188995631367
+UniRef50_Q64737	Trifunctional purine biosynthetic protein adenosine 3	1.54385654923e-06	2.46798581498e-06	9.2412926575e-07
+UniRef50_UPI0003787A56	hypothetical protein	4.6770519013e-05	1.72593247022e-05	-2.95111943108e-05
+UniRef50_I6T745	Cell wall protein, WapE	0.00540082228613	0.00172852646243	-0.0036722958237
+UniRef50_P23388	Multiphosphoryl transfer protein	3.15628176361e-06	0.000441932789098	0.000438776507334
+UniRef50_M7D383	Transposon protein	0.00628971861234	0.002840482113	-0.00344923649934
+UniRef50_Q7UTP4	Glycerol kinase	6.97697375901e-05	0.000155400055359	8.56303177689e-05
+UniRef50_P37753	Mannose 1 phosphate guanylyltransferase	1.05861549334e-05	1.52590596126e-05	4.6729046792e-06
+UniRef50_V3L139		1.82486730767e-06	1.0281683104e-05	8.45681579633e-06
+UniRef50_M7EU96	GroEL	4.46980156721e-05	3.53736568794e-05	-9.3243587927e-06
+UniRef50_F9EHV6	Integral membrane transport protein	0.000209428952523	0.000103741231337	-0.000105687721186
+UniRef50_Q8A8M0	Glycine dehydrogenase 	2.11820220981e-06	0.00302724220445	0.00302512400224
+UniRef50_X6L4K9		3.92923234993e-05	6.90149012455e-05	2.97225777462e-05
+UniRef50_Q3K9C8	Ribosomal RNA large subunit methyltransferase M	0.000526943973226	0.000719049117033	0.000192105143807
+UniRef50_D8JDM8	Dihydropteroate synthase	0.000133387275209	0.00992356387055	0.00979017659534
+UniRef50_Q88FQ7	Enoyl CoA hydratase isomerase family protein	0.0013086448302	0.000875825663483	-0.000432819166717
+UniRef50_K2JPR7		1.96068547055e-05	1.42011653263e-05	-5.4056893792e-06
+UniRef50_UPI0002557988	dihydroorotate dehydrogenase 2, partial	0.000117524137511	0.000202499387948	8.4975250437e-05
+UniRef50_A9BLG4	 binding domain protein	0.000180615305666	0.0628774108913	0.0626967955856
+UniRef50_UPI00031A92CD	hypothetical protein	1.02447300678e-05	2.61620079704e-05	1.59172779026e-05
+UniRef50_P11664		0.00366492134521	0.000569232459282	-0.00309568888593
+UniRef50_M4WU27	Amidohydrolase	0.000130655935614	0.000114463839216	-1.6192096398e-05
+UniRef50_B4RPU8	Lipoprotein	0.000116149535026	0.002330846218	0.00221469668297
+UniRef50_UPI00047BD119	hypothetical protein	6.12368721607e-06	3.13396619546e-05	2.52159747385e-05
+UniRef50_UPI000382255A	MULTISPECIES	1.40641698285e-05	0.000306206978412	0.000292142808584
+UniRef50_A6U1W4	Segregation and condensation protein A	0.0202317503647	0.00298740575775	-0.0172443446069
+UniRef50_A7X311		0.0153648446047	0.00107635315478	-0.0142884914499
+UniRef50_UPI0003A8C9CC	ArsR family transcriptional regulator	1.1215081546e-05	1.36422987263e-05	2.4272171803e-06
+UniRef50_P44975	Lipoprotein signal peptidase	1.20916049747e-05	1.71586144645e-05	5.0670094898e-06
+UniRef50_Q8D2J1	Orotidine 5 phosphate decarboxylase	2.30160379788e-05	1.2330430024e-05	-1.06856079548e-05
+UniRef50_B7UZF1		0.000288206018206	0.00149193509642	0.00120372907821
+UniRef50_Q602P0	Non canonical purine NTP pyrophosphatase	0.000824947697749	0.0011914714636	0.000366523765851
+UniRef50_UPI00047986C5	methionine aminopeptidase	6.12798423496e-05	2.34851427067e-05	-3.77946996429e-05
+UniRef50_UPI000345A820	hypothetical protein	7.75556263385e-06	5.95181092741e-06	-1.80375170644e-06
+UniRef50_P94328	Cyclic pyranopterin monophosphate synthase accessory protein	0.0122205926933	0.00116897896602	-0.0110516137273
+UniRef50_Q4A054		0.0137536410681	0.00419861891142	-0.00955502215668
+UniRef50_UPI00016C38B9	S adenosylmethionine synthetase	3.94979311068e-05	0.000214204176797	0.00017470624569
+UniRef50_A1B0J8	Extracellular solute binding protein, family 5	0.00635951168668	0.0027240595395	-0.00363545214718
+UniRef50_UPI00036C4EF7	30S ribosomal protein S2	7.60295381e-06	1.49603012688e-05	7.3573474588e-06
+UniRef50_P94427	Probable 4 aminobutyrate aminotransferase	0.000488267542428	0.00145329175297	0.000965024210542
+UniRef50_G0VNS1	PTS family mannitol porter	0.000458007796146	0.00168080938869	0.00122280159254
+UniRef50_M7A0H8		3.93391623346e-05	5.28075610996e-05	1.3468398765e-05
+UniRef50_F9P6H2	TIGR01906 like family protein	8.66905156637e-05	8.64446586345e-05	-2.458570292e-07
+UniRef50_UPI00047CB6EE	serine threonine protein phosphatase	5.41039071829e-06	1.25923573661e-05	7.18196664781e-06
+UniRef50_F5X0H0	Haloacid dehalogenase like hydrolase	0.00649099431235	0.00267884446345	-0.0038121498489
+UniRef50_P77634		0.00317410621531	0.00379417421202	0.00062006799671
+UniRef50_K7S5J0	Transcriptional regulator, DeoR family	0.000865908321316	0.00319454859035	0.00232864026903
+UniRef50_C9RW76	YhgE Pip C terminal domain protein	1.90641780282e-06	3.19710204659e-06	1.29068424377e-06
+UniRef50_E8SIF5	Biotin carboxylase	0.0182747972674	0.00446490393811	-0.0138098933293
+UniRef50_UPI000255CC5F	cation	0.000179013989706	0.00088573417531	0.000706720185604
+UniRef50_A0A059MIV5	Aldehyde dehydrogenase	0.000110808020209	0.0055748727915	0.00546406477129
+UniRef50_P0C0I9	UTP  glucose 1 phosphate uridylyltransferase 1	0.00183361457227	0.00650551852491	0.00467190395264
+UniRef50_R4ZZZ3	Transcriptional regulator pfoR	8.48815786649e-05	0.000433262936178	0.000348381357513
+UniRef50_UPI0004755DAC	hypothetical protein	6.83077195087e-05	0.00149572216293	0.00142741444342
+UniRef50_P0ADJ1		0.00297160447267	0.0009353922789	-0.00203621219377
+UniRef50_B7I3B2	2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component	0.000152622367462	0.00942516105833	0.00927253869087
+UniRef50_I4X0N6	Lysophospholipase	8.86303866825e-06	2.47853340724e-05	1.59222954042e-05
+UniRef50_H6LRG1		0.011931248862	0.000988863834058	-0.0109423850279
+UniRef50_UPI00036A88A6	hypothetical protein	3.21468966936e-05	1.4648778581e-05	-1.74981181126e-05
+UniRef50_A5UKK0	Collagenase, peptidase family U32	0.00198421124059	0.000886955923322	-0.00109725531727
+UniRef50_UPI0001FFE9A7	binding protein dependent transport systems inner membrane component	0.00022167264273	3.05591852278e-05	-0.000191113457502
+UniRef50_UPI000360AEA9	hypothetical protein	4.05601629201e-05	1.52914929706e-05	-2.52686699495e-05
+UniRef50_UPI00036C7365	hypothetical protein	0.000247839742973	0.000407369078285	0.000159529335312
+UniRef50_C6UY37		6.56731169532e-05	2.73604426853e-05	-3.83126742679e-05
+UniRef50_D9RMN6	Phage protein	0.00757295099353	0.00120785398312	-0.00636509701041
+UniRef50_Q8FMD0	Peptide deformylase 2	1.11834005135e-05	5.74261421105e-05	4.6242741597e-05
+UniRef50_Q931R7	Conserved virulence factor C	0.00818590250348	0.00117306374711	-0.00701283875637
+UniRef50_UPI0003FC08D1	serine dehydratase	9.31748550018e-06	0.000194665981511	0.000185348496011
+UniRef50_B8DLQ2	ABC transporter related	0.000161318798655	0.00227133528618	0.00211001648753
+UniRef50_F0TB22	H4MPT linked C1 transfer pathway protein	0.00612974389826	0.000398352432596	-0.00573139146566
+UniRef50_UPI0004770BE9	hypothetical protein	0.000105116539098	1.67921480033e-05	-8.83243910947e-05
+UniRef50_UPI0003B3248F	methionyl tRNA synthetase	8.00179509853e-06	1.67372911062e-05	8.73549600767e-06
+UniRef50_UPI0003959E9D	CDP 6 deoxy delta 3,4 glucoseen reductase	1.19939047684e-05	1.46360036764e-05	2.642098908e-06
+UniRef50_Q5HLS8		0.0015338619942	0.0141198898236	0.0125860278294
+UniRef50_Q49XT6		0.0100344504598	0.00160368542209	-0.00843076503771
+UniRef50_S1E292	PTS system, mannose fructose sorbose family, IID component	0.00215449233377	0.000914029360892	-0.00124046297288
+UniRef50_A0A030WUA6	3 hydroxyisobutyrate dehydrogenase	0.00292566960494	0.000566154320492	-0.00235951528445
+UniRef50_Q399M3	Macrolide export ATP binding permease protein MacB	2.28288406612e-06	6.35418085373e-06	4.07129678761e-06
+UniRef50_UPI0003C3A6B9	PREDICTED	7.13046547312e-06	6.88613858649e-05	6.17309203918e-05
+UniRef50_Q3IW34		0.0202136797663	0.00266052098718	-0.0175531587791
+UniRef50_X7EB18	WGR domain containing protein	4.99699233263e-05	3.15722446265e-05	-1.83976786998e-05
+UniRef50_Q3IW32		0.00565728960708	0.0163244779591	0.010667188352
+UniRef50_UPI00047D4CFB	trehalose phosphatase	3.02267771686e-05	2.33227303313e-05	-6.9040468373e-06
+UniRef50_UPI0003642130	hypothetical protein	3.57683520896e-05	1.12531063733e-05	-2.45152457163e-05
+UniRef50_UPI0003692D13	hypothetical protein	2.90143361647e-05	1.15315225582e-05	-1.74828136065e-05
+UniRef50_W4LSH7		2.5014264115e-05	7.63173765068e-05	5.13031123918e-05
+UniRef50_E4NIV5		4.80253972258e-05	1.78573782578e-05	-3.0168018968e-05
+UniRef50_UPI00035CB116	hypothetical protein	1.16159131294e-05	0.000419661180619	0.00040804526749
+UniRef50_A0A011PWL1	Elongation factor G	5.79320070536e-06	2.90774461161e-05	2.32842454107e-05
+UniRef50_V4X579		2.16588274327e-05	0.000357626091479	0.000335967264046
+UniRef50_UPI00045EC544	hypothetical protein	6.24658227937e-06	2.97256453341e-05	2.34790630547e-05
+UniRef50_UPI0003463109	AraC family transcriptional regulator	9.90341988625e-06	3.64841911498e-05	2.65807712636e-05
+UniRef50_I3TU69	Lincomycin resistance protein	0.000114853749147	0.000460873039925	0.000346019290778
+UniRef50_E6Q6J2	Thioesterase superfamily	1.70514488765e-05	0.00116597676805	0.00114892531917
+UniRef50_Q4ZXL0	Alginate lyase	0.00020665566622	0.000548159853892	0.000341504187672
+UniRef50_S0AG26		0.000144187089322	0.00270534883781	0.00256116174849
+UniRef50_V4QY51	Transcriptional regulator 	7.81674024414e-06	1.51687093567e-05	7.35196911256e-06
+UniRef50_L7EAU8		2.14717616161e-05	9.59208722882e-06	-1.18796743873e-05
+UniRef50_Q9X806	Ubiquinol cytochrome c reductase cytochrome b subunit	0.00023418630138	0.00665526963512	0.00642108333374
+UniRef50_Q5NLZ4	Anhydro N acetylmuramic acid kinase	4.84956762504e-06	2.49588508401e-05	2.01092832151e-05
+UniRef50_H0TL85		5.06400982369e-05	7.78075326054e-05	2.71674343685e-05
+UniRef50_U5MPM1	Methyl accepting chemotaxis protein	0.000348985323919	0.00097624178303	0.000627256459111
+UniRef50_Q4L667	Phosphatidylglycerol lysyltransferase	0.0129613755783	0.00403590980428	-0.00892546577402
+UniRef50_UPI0001FFE90B	alcohol dehydrogenase	5.41216380774e-06	0.000151557469514	0.000146145305706
+UniRef50_P77439	Multiphosphoryl transfer protein 1	0.00380937836703	0.000590373526274	-0.00321900484076
+UniRef50_A9AF70	Urease subunit gamma	0.00300426887958	0.00365970109937	0.00065543221979
+UniRef50_A5UKH6		0.00787919223545	0.00029000003783	-0.00758919219762
+UniRef50_UPI00036A7FB4	hypothetical protein	1.73216097816e-05	2.14702300087e-05	4.1486202271e-06
+UniRef50_K2AEY0		0.000112053527253	7.88618524907e-06	-0.000104167342004
+UniRef50_UPI0003DF5EC3	PREDICTED	5.95232048304e-06	1.3069608062e-05	7.11728757896e-06
+UniRef50_F2TZS1		8.39066176864e-05	3.8484569641e-05	-4.54220480454e-05
+UniRef50_Q1CW26		0.000143827290066	0.000192286525626	4.845923556e-05
+UniRef50_I1B3F9		0.000506185379064	0.000322163678398	-0.000184021700666
+UniRef50_A8AVP5	ABC transporter, permease protein	0.005865556063	0.00323857698173	-0.00262697908127
+UniRef50_A8LL26	tRNA pseudouridine synthase B	0.000875338637374	0.000208950498955	-0.000666388138419
+UniRef50_Q5HKS5		0.00131681158902	0.0012478170642	-6.899452482e-05
+UniRef50_Q48FV2	Membrane protein, putative	0.00186822329162	0.000405458803526	-0.00146276448809
+UniRef50_I3UWL7	LysR family transcriptional regulator	0.00182515382211	0.000819290939821	-0.00100586288229
+UniRef50_B0VV20	p aminobenzoate synthetase	0.000253562107799	0.00727990780416	0.00702634569636
+UniRef50_C7CBT9	RepC like protein	0.000127408359687	4.17797043536e-05	-8.56286553334e-05
+UniRef50_P0AG19	N5 carboxyaminoimidazole ribonucleotide mutase	0.00123839534974	0.0152300344254	0.0139916390757
+UniRef50_UPI0003B429F7	transposase	9.21350989232e-05	9.55114349783e-05	3.3763360551e-06
+UniRef50_UPI0003B6F95F	tRNA delta isopentenylpyrophosphate transferase	2.42338823814e-05	1.18214813797e-05	-1.24124010017e-05
+UniRef50_P65234	Ribose phosphate pyrophosphokinase	0.0031140583286	0.00652343819446	0.00340937986586
+UniRef50_D6CUH0		7.04385345711e-06	1.08897769728e-05	3.84592351569e-06
+UniRef50_A4WSC8	OmpA MotB domain protein	0.00110298361822	0.000162559654243	-0.000940423963977
+UniRef50_G9ADV3		1.36230754687e-05	7.53426073761e-06	-6.08881473109e-06
+UniRef50_G9ADV1		6.3409627532e-05	5.24159310503e-05	-1.09936964817e-05
+UniRef50_Q51952	OrfD	0.0803621808219	0.00129590016625	-0.0790662806556
+UniRef50_S4HRH5		8.58402116946e-05	7.602784505e-05	-9.8123666446e-06
+UniRef50_O06994	Oligo 1,6 glucosidase 1	0.0186128280921	0.0120117225731	-0.006601105519
+UniRef50_M5J6F3		1.99669152767e-05	5.04478664556e-05	3.04809511789e-05
+UniRef50_A9H974		7.94324385985e-05	7.09255150584e-05	-8.5069235401e-06
+UniRef50_A6LZS6	Metallophosphoesterase	0.000249574818357	0.00178454099476	0.0015349661764
+UniRef50_Q1NCH4	Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	3.65952934849e-05	2.18751897445e-05	-1.47201037404e-05
+UniRef50_UPI0004676B57	GntR family transcriptional regulator	1.41688470632e-05	2.28531436356e-05	8.6842965724e-06
+UniRef50_L5RMF7		3.55910175748e-05	0.000680251716581	0.000644660699006
+UniRef50_P55253	Glucose 1 phosphate thymidylyltransferase	0.0433322218893	0.090252667211	0.0469204453217
+UniRef50_F3SW08	Conserved domain protein	0.000724802656383	0.00133225581291	0.000607453156527
+UniRef50_Q6GJ34	Putative N acetylmannosaminyltransferase	0.0088499282254	0.00198945301636	-0.00686047520904
+UniRef50_Q67SJ2	Valine  tRNA ligase	6.72273002959e-06	3.00581620275e-06	-3.71691382684e-06
+UniRef50_A0A038FZN0		3.11239007439e-05	0.000570859183848	0.000539735283104
+UniRef50_A6LQR2		0.000226463054397	0.000707069528623	0.000480606474226
+UniRef50_Q9RV19		0.0012969221676	0.030597960872	0.0293010387044
+UniRef50_J0F0U1		0.00192766179157	0.00107387892798	-0.00085378286359
+UniRef50_B9J9V0	ABC transporter	0.00548141280069	0.00148845210052	-0.00399296070017
+UniRef50_UPI000379B10E	hypothetical protein	1.82252779673e-05	0.000153731357225	0.000135506079258
+UniRef50_Q8VYV7	3 dehydroquinate synthase, chloroplastic	5.46293002982e-06	4.70395537596e-05	4.15766237298e-05
+UniRef50_U3QUQ4	Chemotaxis protein CheA	0.000644404625597	0.000173951997405	-0.000470452628192
+UniRef50_I4TNI4		0.00191810352224	0.000239122838212	-0.00167898068403
+UniRef50_A6LQ19	Drug resistance transporter, EmrB QacA subfamily	0.000773222285657	0.000849485418439	7.6263132782e-05
+UniRef50_Q5HQY3		0.0212349903896	0.00471183545339	-0.0165231549362
+UniRef50_P16219	Short chain specific acyl CoA dehydrogenase, mitochondrial	1.16599677488e-05	4.50472841041e-05	3.33873163553e-05
+UniRef50_B9KX63		0.00251657325901	0.00389475654678	0.00137818328777
+UniRef50_B9KX60		0.00210896850078	0.00043652670916	-0.00167244179162
+UniRef50_A8Z124		0.014902786921	0.00421378114946	-0.0106890057715
+UniRef50_B9KX64		0.00663373984434	0.00115538823963	-0.00547835160471
+UniRef50_UPI00037397A9	hypothetical protein	8.81097825056e-06	1.79189300496e-05	9.10795179904e-06
+UniRef50_UPI0004787AB2	transcriptional regulator	9.86840847602e-06	1.07017164835e-05	8.3330800748e-07
+UniRef50_C1CYZ3		0.000245120771981	0.0752036690738	0.0749585483018
+UniRef50_Q0SPR1	Cysteine desulfurase family protein	0.000102950724233	0.0017531927813	0.00165024205707
+UniRef50_Q16A99	tRNA 2 thiocytidine biosynthesis protein TtcA	0.00990342737699	0.00165055914397	-0.00825286823302
+UniRef50_F7ZKB0		1.26222010548e-05	1.50871173378e-05	2.464916283e-06
+UniRef50_W5X4N7		4.24013550963e-05	0.000100102394049	5.77010389527e-05
+UniRef50_Q7VTF7	Nicotinate phosphoribosyltransferase	0.000534859418552	0.00799130141458	0.00745644199603
+UniRef50_P56074	Delta aminolevulinic acid dehydratase	0.000183086630851	0.00348835491908	0.00330526828823
+UniRef50_H1S081		9.75586325411e-05	1.11973097843e-05	-8.63613227568e-05
+UniRef50_A7ZTW7	HTH type transcriptional regulator HdfR	0.00229853168731	0.000910583016323	-0.00138794867099
+UniRef50_UPI000248D3FD	Fosmidomycin resistance protein	5.4399942601e-05	2.34977302149e-05	-3.09022123861e-05
+UniRef50_UPI00047C911F	hyalin	2.98190065396e-06	5.85276420287e-06	2.87086354891e-06
+UniRef50_M9RZD9	ABC transporter permease	0.00087313797132	0.000490715691874	-0.000382422279446
+UniRef50_UPI000237DA3D	hypothetical protein	6.22347876658e-06	0.000164733338894	0.000158509860127
+UniRef50_P25666	Protein HtrL	0.00164795945908	0.000253128604458	-0.00139483085462
+UniRef50_P42506		0.0116393218358	0.00235409634312	-0.00928522549268
+UniRef50_E6C5P3	Glycosyl hydrolase family 20, catalytic domain protein	0.000111034566433	0.00430662919825	0.00419559463182
+UniRef50_V1BIM5		0.00169023577097	0.000507143020717	-0.00118309275025
+UniRef50_UPI00032A718B	PREDICTED	6.31740236157e-06	1.40419101583e-05	7.72450779673e-06
+UniRef50_UPI000464A259	hypothetical protein	0.000158919734548	6.41944385336e-05	-9.47252960144e-05
+UniRef50_A7ZTA0	Glyoxylate hydroxypyruvate reductase B	0.00287908213818	0.000191971856025	-0.00268711028215
+UniRef50_A3PIF6		0.000974229981897	0.000481360100081	-0.000492869881816
+UniRef50_UPI0003B59BB8	isopentenyl diphosphate delta isomerase	5.30712569158e-05	9.18284209925e-06	-4.38884148166e-05
+UniRef50_B3E0I7	50S ribosomal protein L2	0.00307779278476	0.00021271311299	-0.00286507967177
+UniRef50_UPI0003F9D1F7	anthranilate synthase component I	4.00621627966e-06	5.21914561507e-06	1.21292933541e-06
+UniRef50_A6M0E6	Signal transduction histidine kinase regulating citrate malate metabolism	0.000425056161391	0.00212187108621	0.00169681492482
+UniRef50_A5UMV1	Glycosyltransferase, GT2 family	0.002073329031	0.000367054108473	-0.00170627492253
+UniRef50_Q3HKG1	Mechanosensitive  ion channel protein	0.00215463175044	0.000733136232408	-0.00142149551803
+UniRef50_B8JAD8	Nucleoside diphosphate kinase	0.01623942303	4.97065662658e-05	-0.0161897164637
+UniRef50_V5VIG2	Tellurite resistance protein	0.00020008091282	0.00586161167725	0.00566153076443
+UniRef50_O26800	Ketoisovalerate oxidoreductase subunit VorB	0.00312976959527	0.000723436511222	-0.00240633308405
+UniRef50_Q2G718	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.0035720013e-05	8.29626809761e-06	-1.73945191539e-06
+UniRef50_A6LPK7	Sporulation stage II, protein E	9.39799142401e-05	0.000936331511773	0.000842351597533
+UniRef50_UPI00037D5D4D	hypothetical protein	0.000193458151422	5.719846723e-05	-0.000136259684192
+UniRef50_UPI0003A28CDF	competence protein	1.82552004738e-05	4.0218672547e-05	2.19634720732e-05
+UniRef50_UPI0003959061	sensor histidine kinase	6.07290774423e-06	8.58761235014e-06	2.51470460591e-06
+UniRef50_U5VXD2		4.65387010281e-05	3.67866106293e-05	-9.7520903988e-06
+UniRef50_B9E115	Phosphopentomutase	5.84714586153e-06	6.79744815103e-06	9.503022895e-07
+UniRef50_C0QXM0	Pyrrolidone carboxylate peptidase	0.00953215749912	0.00192519671089	-0.00760696078823
+UniRef50_A3L8X2		0.00107644150169	0.000238800570243	-0.000837640931447
+UniRef50_P39343	HTH type transcriptional regulator IdnR	0.00351151043142	0.000181733357036	-0.00332977707438
+UniRef50_A6LUQ9		0.000912714625129	0.000564082410423	-0.000348632214706
+UniRef50_A3L8X4		0.000219130625543	0.000302791912172	8.3661286629e-05
+UniRef50_B9E9D0		0.00738174946216	0.000324523851863	-0.0070572256103
+UniRef50_B6ISP7	Phosphopantetheine adenylyltransferase	0.0075020790703	0.00133225581291	-0.00616982325739
+UniRef50_A6LUQ6		0.00184695087293	0.00188479104794	3.784017501e-05
+UniRef50_E8PCN1	FilB	0.000205901448467	0.0137702511351	0.0135643496866
+UniRef50_UPI000348A8A8	hypothetical protein	3.66627232824e-05	4.29288134592e-05	6.2660901768e-06
+UniRef50_M5SVU5	Beta Ig H3 fasciclin	6.84296448596e-05	1.23422603285e-05	-5.60873845311e-05
+UniRef50_L4FI59	Sensor protein torS	0.000181768029127	7.87861374395e-05	-0.000102981891688
+UniRef50_UPI0002E655C1	hypothetical protein	4.11056816367e-05	1.21018836167e-05	-2.900379802e-05
+UniRef50_Q1C665	Penicillin insensitive murein endopeptidase	0.0031826594036	0.00131541633836	-0.00186724306524
+UniRef50_Q8K928	Oxygen independent coproporphyrinogen III oxidase like protein BUsg_532	7.47242541377e-06	5.39038867678e-05	4.6431461354e-05
+UniRef50_A9M4C4	UPF0276 protein NMCC_2101	0.000986446572407	0.00184624887924	0.000859802306833
+UniRef50_UPI00036BDC09	hypothetical protein	1.60127931734e-05	2.54383906716e-05	9.4255974982e-06
+UniRef50_D6Z4R6	Phosphoenolpyruvate phosphomutase	0.000505075352485	0.000485253571518	-1.9821780967e-05
+UniRef50_Q1JFX3		0.00592348501943	0.00112425599012	-0.00479922902931
+UniRef50_UPI0004637872	hypothetical protein, partial	1.32088708705e-05	8.78691872519e-05	7.46603163814e-05
+UniRef50_G8V105	Penicillinase repressor family protein	0.026710534346	0.00318860756714	-0.0235219267789
+UniRef50_UPI00037E6C33	hypothetical protein	0.0014976884435	0.000216136244069	-0.00128155219943
+UniRef50_UPI000411C3F9	hypothetical protein	1.41758072518e-06	2.00765848507e-06	5.9007775989e-07
+UniRef50_Q9JY91	L asparaginase I	0.000247802618498	0.00273094464981	0.00248314203131
+UniRef50_UPI0004739998	hypothetical protein	5.12211420014e-06	1.53292263124e-05	1.02071121123e-05
+UniRef50_B1Y2J2		1.55233360863e-05	7.29637349953e-05	5.7440398909e-05
+UniRef50_P0ACY2	Putative NADH nitroreductase YdjA	0.00120703393552	0.000971798201212	-0.000235235734308
+UniRef50_UPI00037F4C0B	hypothetical protein	3.06046178509e-05	0.000573065508672	0.000542460890821
+UniRef50_Q2NEQ0	Histidinol phosphate aminotransferase	0.00384302736763	0.000362576826262	-0.00348045054137
+UniRef50_Q9RRA6	Iron ABC transporter, periplasmic substrate binding protein, putative	0.000267277883954	0.0504986942049	0.0502314163209
+UniRef50_I3BQN9		6.18886778216e-06	0.000198904042376	0.000192715174594
+UniRef50_UPI00039CCA94	3 hydroxybutyryl CoA dehydratase	5.37954624491e-05	2.23840893073e-05	-3.14113731418e-05
+UniRef50_Q7NIR9	Phosphoribosylformylglycinamidine synthase 2	2.93018704473e-05	6.95259759575e-06	-2.23492728516e-05
+UniRef50_UPI0001FFE446	choline dehydrogenase	3.96035318496e-05	1.0923185124e-05	-2.86803467256e-05
+UniRef50_UPI00036ECF80	30S ribosomal protein S17	3.68128293514e-05	0.000320098707994	0.000283285878643
+UniRef50_A5IUE2	DUTPase	0.0190849074093	0.00135308466745	-0.0177318227418
+UniRef50_A6LV78	NMT1 THI5 like protein	0.000184740288181	0.000913421176036	0.000728680887855
+UniRef50_UPI0004636D79	hypothetical protein	4.2034312514e-05	2.88838686382e-06	-3.91459256502e-05
+UniRef50_L6YPP4	Autoinducer 2 aldolase	0.000712348600423	0.000823713950446	0.000111365350023
+UniRef50_A0A034W5P4		9.77963011321e-06	3.11520318775e-06	-6.66442692546e-06
+UniRef50_W8TZV3		2.00409303853e-05	0.000143204238244	0.000123163307859
+UniRef50_UPI0003607ABA	heavy metal transporter CzcA	1.44982787346e-06	6.64896939681e-06	5.19914152335e-06
+UniRef50_UPI0003FD356F	hypothetical protein	4.20892958171e-05	0.000105859572722	6.37702769049e-05
+UniRef50_B9TAE6	Glycine betaine L proline transport system permease protein proW, putative	0.000912140868539	0.000723824306453	-0.000188316562086
+UniRef50_T1E861		8.30410184796e-05	9.40941171797e-05	1.10530987001e-05
+UniRef50_Q8CS24		0.0254173995408	0.00427685599661	-0.0211405435442
+UniRef50_Q8FU18	Glutamyl Q tRNA synthetase	6.2466078163e-06	0.000863558533816	0.000857311926
+UniRef50_Q0VT33		0.00148551359392	0.000305141858582	-0.00118037173534
+UniRef50_I6UMD2	Acetyltransferase	0.000197636643381	0.00155076714728	0.0013531305039
+UniRef50_UPI00036CF3D9	formate dehydrogenase subunit alpha	0.00147062386559	0.000310771287926	-0.00115985257766
+UniRef50_Q87DM8	Acetylornithine aminotransferase	2.50158322521e-05	4.91354403134e-05	2.41196080613e-05
+UniRef50_UPI00017455B0	PAS PAC sensor hybrid histidine kinase	2.09053003317e-06	3.21310866679e-05	3.00405566347e-05
+UniRef50_H9UU02	Ribonucleoside diphosphage reductase 1, beta subunit, B2	0.000672408161445	5.43060465467e-05	-0.000618102114898
+UniRef50_P63884	N acetylmuramoyl L alanine amidase AmiC	0.00250295220253	0.00072849487112	-0.00177445733141
+UniRef50_Q3J1R2	Alpha keto acid binding periplasmic protein TakP	0.0109176667589	0.00125798373576	-0.00965968302314
+UniRef50_UPI0004785A72	dihydroxy acid dehydratase	3.84069397647e-05	3.22457080058e-05	-6.1612317589e-06
+UniRef50_UPI0003D742A7	PREDICTED	0.000137093695711	0.000559842095153	0.000422748399442
+UniRef50_B4RR58	Pilin glycosyl transferase A	0.00070659716582	0.00348412216106	0.00277752499524
+UniRef50_P9WG25	Transketolase	0.000133854593954	0.00534232299884	0.00520846840489
+UniRef50_F2D6B6	Predicted protein	0.00124756666298	0.000126758816316	-0.00112080784666
+UniRef50_C7U7G3	Predicted protein	4.98192571096e-06	1.7804639756e-05	1.2822714045e-05
+UniRef50_B9KS15	CheW protein	0.0166947594762	0.000402704597989	-0.0162920548782
+UniRef50_UPI00036E0B46	hypothetical protein	1.26163480025e-05	2.7006836481e-05	1.43904884785e-05
+UniRef50_Q87VF3	Lipid A export ATP binding permease protein MsbA	0.000314977212943	7.31768993062e-06	-0.000307659523012
+UniRef50_S4X152		0.00533571922682	0.00076705637713	-0.00456866284969
+UniRef50_S5YPY4	Branched chain amino acid transporter AzlC	3.75480660672e-05	3.74237190632e-05	-1.24347004e-07
+UniRef50_UPI00047E9A5D	hypothetical protein	4.26052047327e-05	0.000102351786717	5.97465819843e-05
+UniRef50_A5WDF2	Major facilitator superfamily MFS_1	8.84732786372e-05	0.00655633725068	0.00646786397204
+UniRef50_UPI00047CAA5D	cobyrinic acid a c diamide adenosyltransferase	1.85082170638e-05	0.000160425043412	0.000141916826348
+UniRef50_H5HII5	Protein traU	0.000296961518224	5.4275353248e-05	-0.000242686164976
+UniRef50_R1BAS7		7.90054052557e-06	2.15804317844e-05	1.36798912588e-05
+UniRef50_Q8DTW5		0.0043384912806	0.00142505874909	-0.00291343253151
+UniRef50_E4N7W5		6.20462688603e-05	0.000174932016995	0.000112885748135
+UniRef50_Q8DTW1		0.00703521644149	0.00172811565431	-0.00530710078718
+UniRef50_Q8DTW2		0.00430973285659	0.00417333399317	-0.00013639886342
+UniRef50_UPI00040D5ECC	lysophospholipase	1.27992446865e-06	1.10697934957e-05	9.78986902705e-06
+UniRef50_E4BFH6		3.33357178633e-05	0.000134550394124	0.000101214676261
+UniRef50_R6S4R3	NADH	0.000375723627864	0.00200011121956	0.0016243875917
+UniRef50_Z5SAF9		1.66957544063e-05	2.75940587472e-05	1.08983043409e-05
+UniRef50_Q3IVP4		0.00131866465944	0.000299813913899	-0.00101885074554
+UniRef50_Q3IVP3		9.54042738135e-05	0.00108913158329	0.000993727309477
+UniRef50_R1DLE7		1.3648680015e-05	4.91223743389e-06	-8.73644258111e-06
+UniRef50_P44093		0.00384054017032	0.00154608898905	-0.00229445118127
+UniRef50_UPI0003457BAD	hypothetical protein	2.89657668431e-06	1.53421510666e-06	-1.36236157765e-06
+UniRef50_Q73LF4	1 deoxy D xylulose 5 phosphate synthase	1.96213096368e-06	2.82392323747e-05	2.6277101411e-05
+UniRef50_Q5HNB3	O succinylbenzoic acid synthetase, putative	0.00846707961907	0.00268614893446	-0.00578093068461
+UniRef50_UPI0003C1B3E9		7.21839965648e-05	0.00010870798479	3.65239882252e-05
+UniRef50_Q8PYJ4	Methionine  tRNA ligase	3.55761589789e-06	3.14218525922e-06	-4.1543063867e-07
+UniRef50_A8PM40	Transcriptional repressor NrdR	4.45241452331e-05	0.000142221993944	9.76978487109e-05
+UniRef50_A6LZR8		0.000454804230061	0.00186399702382	0.00140919279376
+UniRef50_P20372	Protocatechuate 3,4 dioxygenase beta chain	0.000160404811127	0.00320678635244	0.00304638154131
+UniRef50_K0S5L3		1.5388682191e-06	0.000143508189513	0.000141969321294
+UniRef50_UPI000248D061	iron hydroxamate transporter permease subunit, partial	1.11848160293e-05	6.42916853266e-05	5.31068692973e-05
+UniRef50_K2HGX5		2.57671894845e-05	8.66819103699e-06	-1.70989984475e-05
+UniRef50_A3PL72		0.0079256813433	0.000798709178294	-0.00712697216501
+UniRef50_Q8CPK5	Cell division protein FtsA	0.0214895024156	0.00412589127887	-0.0173636111367
+UniRef50_A0A011NNA2		0.000155787077998	0.000304872081262	0.000149085003264
+UniRef50_C4K9K2		6.13665671584e-05	5.55764024261e-05	-5.7901647323e-06
+UniRef50_A4WYS1		6.07286895414e-05	7.42635727607e-05	1.35348832193e-05
+UniRef50_C6S8M1		0.000100306285793	0.00244061111133	0.00234030482554
+UniRef50_P54457	Ribosomal silencing factor RsfS	0.00150892885602	0.00159882903855	8.990018253e-05
+UniRef50_UPI0003B3EB5D	pyruvate phosphate dikinase	3.36529323403e-06	1.13646148899e-05	7.99932165587e-06
+UniRef50_V4JG08		1.67186635101e-05	1.71693054904e-05	4.506419803e-07
+UniRef50_UPI00021917AB	DNA processing protein DprA	4.7265739473e-05	6.51598927318e-05	1.78941532588e-05
+UniRef50_UPI0002E59390	hypothetical protein	0.000159651351157	5.66465648891e-05	-0.000103004786268
+UniRef50_UPI000255B733	peroxiredoxin, ohr subfamily protein	2.11517888678e-05	0.000244477454495	0.000223325665627
+UniRef50_Q49V41	Putative TrmH family tRNA rRNA methyltransferase	0.0117412369192	0.0020276976335	-0.0097135392857
+UniRef50_D0K0C5		0.0001554777905	0.00577364418242	0.00561816639192
+UniRef50_V6KIY8		5.37901934053e-05	0.000275498146057	0.000221707952652
+UniRef50_UPI0003C1B40C	PREDICTED	5.52857669296e-05	0.000118814909326	6.35291423964e-05
+UniRef50_P37624		0.00219563449468	0.00072817149442	-0.00146746300026
+UniRef50_F8JKY1		7.21791203027e-05	8.65269631344e-05	1.43478428317e-05
+UniRef50_C6SPT2	Predicted periplasmic or secreted lipoprotein	0.000686338161548	0.00114316143946	0.000456823277912
+UniRef50_Q034G9	6 phospho alpha glucosidase 2	0.000688478735805	0.00291371430768	0.00222523557187
+UniRef50_G4LBR0	MFS family transporter	0.000192104828933	0.000303678489364	0.000111573660431
+UniRef50_Q81L15	Translation initiation factor IF 3	0.0376830528669	0.0105168985609	-0.027166154306
+UniRef50_D8UHW0		5.09360354029e-06	6.341641821e-05	5.83228146697e-05
+UniRef50_D5G934	Whole genome shotgun sequence assembly, scaffold_16, strain Mel28	1.14703670609e-05	3.31466799726e-05	2.16763129117e-05
+UniRef50_W5XAK2	Citrate synthase	1.30046330728e-05	1.33029115607e-05	2.982784879e-07
+UniRef50_A8YTF9	Thymidylate kinase	0.0141705942381	0.00328817902601	-0.0108824152121
+UniRef50_UPI00034584B5	hypothetical protein	8.53576953858e-06	7.58682890665e-06	-9.4894063193e-07
+UniRef50_Q8XA47	Sensor histidine kinase QseE	0.00184437615146	0.00093786920799	-0.00090650694347
+UniRef50_S6AZJ1		0.00567876953349	0.000948372930447	-0.00473039660304
+UniRef50_UPI0003B76F12	glycerol kinase	7.33276056184e-06	5.02568536615e-06	-2.30707519569e-06
+UniRef50_N9ILP1		7.58003993635e-05	0.000371388028466	0.000295587629103
+UniRef50_Q6D178	23S rRNA  C(5)) methyltransferase RlmD	0.00107746059401	0.000530248027869	-0.000547212566141
+UniRef50_B2UW91	Dihydroorotase	0.000438351382792	0.00138615120498	0.000947799822188
+UniRef50_B9MRD1	4 hydroxy tetrahydrodipicolinate synthase	7.25765759157e-06	0.00201076385792	0.00200350620033
+UniRef50_UPI00016A52E2	oxidoreductase, FAD binding protein, partial	5.87553929272e-05	2.53124701742e-05	-3.3442922753e-05
+UniRef50_K8D6Q9	Cell division protein FtsK	0.000819515787499	0.000137791942374	-0.000681723845125
+UniRef50_W1JGR6		1.82984188069e-05	5.17296432598e-05	3.34312244529e-05
+UniRef50_UPI00023785BE	ABC transporter like protein	0.000273685323972	4.84809481384e-05	-0.000225204375834
+UniRef50_UPI00040687FC	hypothetical protein	1.56891048985e-05	4.14746100136e-06	-1.15416438971e-05
+UniRef50_D3E3V9	Transporter MIP family	0.00217910284444	0.000749274055236	-0.0014298287892
+UniRef50_A5UK88	Adhesin like protein	0.00333720249728	0.000784041984177	-0.0025531605131
+UniRef50_A6M085	GCN5 related N acetyltransferase	0.00026321151084	0.000294825329643	3.1613818803e-05
+UniRef50_UPI00036FB667	hypothetical protein	2.43874978245e-05	1.44167649547e-05	-9.9707328698e-06
+UniRef50_Q6FCW7	Phosphate import ATP binding protein PstB	0.000267046584839	0.00555978468587	0.00529273810103
+UniRef50_O34364	Probable oligo 1,6 glucosidase 2	0.0133995903357	0.000947011059783	-0.0124525792759
+UniRef50_Q3JSX2		7.45267145118e-05	0.000173602243418	9.90755289062e-05
+UniRef50_Q3JSX0		6.76498187892e-05	1.09977232258e-05	-5.66520955634e-05
+UniRef50_UPI00020D97AB	excinuclease ABC subunit B	0.000324017679384	0.00157794236416	0.00125392468478
+UniRef50_A1B092		0.0117466833514	0.00235156937156	-0.00939511397984
+UniRef50_F0QGI7		0.000276784193798	0.00492815662395	0.00465137243015
+UniRef50_UPI0003B3B830	2 oxoglutarate dehydrogenase E1, partial	3.65918519225e-06	8.22382597662e-06	4.56464078437e-06
+UniRef50_Q81V80	Putative pyridoxal phosphate dependent acyltransferase	0.0111030010846	0.00199959273995	-0.00910340834465
+UniRef50_Q7VK98	Methionyl tRNA formyltransferase	7.05126010592e-06	8.95076429479e-06	1.89950418887e-06
+UniRef50_UPI00034B192C	ATP binding protein	0.000159392186204	3.38241088112e-05	-0.000125568077393
+UniRef50_Q9K0G6	Non canonical purine NTP pyrophosphatase	5.86249927365e-06	0.00424137357815	0.00423551107888
+UniRef50_M9VK41	KHG KDPG aldolase	0.000430592382719	0.00266872869636	0.00223813631364
+UniRef50_Q3D1H7		0.00518009571257	0.00112802489495	-0.00405207081762
+UniRef50_B1AJ73	Urease subunit alpha	3.44480342495e-06	1.90109252824e-05	1.55661218574e-05
+UniRef50_Q5P7J7	Phosphoribosylaminoimidazole succinocarboxamide synthase	1.41446079896e-05	0.00270908324371	0.00269493863572
+UniRef50_U1VIQ4		0.000132905497161	0.00411896902597	0.00398606352881
+UniRef50_W5XFT3	General secretion pathway protein G	1.07393457727e-06	2.6248664966e-05	2.51747303887e-05
+UniRef50_Q9M5K2	Dihydrolipoyl dehydrogenase 2, mitochondrial	2.64856068779e-05	6.9621563667e-05	4.31359567891e-05
+UniRef50_UPI00035E4A51	hypothetical protein	8.85167641172e-06	0.000221962711537	0.000213111035125
+UniRef50_Q4FNA6	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	6.20724210519e-06	8.85000584375e-06	2.64276373856e-06
+UniRef50_UPI00036C5D7B	hypothetical protein	7.15576298168e-05	6.58416094096e-05	-5.7160204072e-06
+UniRef50_V9VU16	Regulator	0.000113325071635	8.88071999779e-05	-2.45178716571e-05
+UniRef50_Q2NSZ1	Macrolide export ATP binding permease protein MacB	2.29055833739e-06	1.43007728218e-05	1.20102144844e-05
+UniRef50_M9R8E0	Putative IS30 family transposase	3.37337355377e-05	2.52341314705e-05	-8.4996040672e-06
+UniRef50_F0RNU6		7.23835947954e-05	0.044316864467	0.0442444808722
+UniRef50_A0A011PXZ1	Copper exporting P type ATPase A	2.66833760644e-06	1.71722585747e-05	1.45039209683e-05
+UniRef50_B2K308	UPF0502 protein YPTS_2082	0.00138741700079	0.0028730956732	0.00148567867241
+UniRef50_UPI0003B66071	sodium	1.00742321339e-05	1.50839291223e-05	5.0096969884e-06
+UniRef50_K0LM02	Formate nitrite transporter family protein	0.00863839617475	0.00353700830558	-0.00510138786917
+UniRef50_O53182	2 oxoglutarate oxidoreductase subunit KorA	7.54468998348e-05	0.00440050512335	0.00432505822352
+UniRef50_R7PY79		0.00260576228779	0.00101148432434	-0.00159427796345
+UniRef50_B2A170	Carbamoyl phosphate synthase large chain	1.37816354611e-05	7.28277578477e-05	5.90461223866e-05
+UniRef50_Q3KGL4	Uracil DNA glycosylase	0.00997559146374	0.00371042944759	-0.00626516201615
+UniRef50_A6LYS3	PAS PAC sensor signal transduction histidine kinase	0.000541919103036	0.00175806457771	0.00121614547467
+UniRef50_G7MBX9	Xylose isomerase domain containing protein TIM barrel	0.000417264995876	0.00171974148114	0.00130247648526
+UniRef50_UPI000370772D	hypothetical protein	4.53617555602e-05	4.50418281397e-05	-3.199274205e-07
+UniRef50_Q6GBK7	Putative antiporter subunit mnhA2	0.0176504979211	0.00513787995375	-0.0125126179673
+UniRef50_UPI000376D794	hypothetical protein, partial	8.88563483988e-05	0.000115544746056	2.66883976572e-05
+UniRef50_UPI0003B415C3	phospholipase C	5.30711547794e-06	1.27077311059e-05	7.40061562796e-06
+UniRef50_UPI0003A4E33B	peptidase	4.72763461196e-05	1.06241992505e-05	-3.66521468691e-05
+UniRef50_A7HF60	Tetratricopeptide TPR_4	2.84678893988e-05	2.44699472956e-05	-3.9979421032e-06
+UniRef50_Q9WXB2	Phytoene disaturase 	4.88382939001e-05	2.86706554049e-05	-2.01676384952e-05
+UniRef50_Q3SL19	Serine type D ala D ala carboxypeptidase	0.00148069775263	0.000389440270477	-0.00109125748215
+UniRef50_UPI0001FFE6FF	oxidoreductase	6.03073649307e-05	0.000775401365077	0.000715094000146
+UniRef50_Q5HQE8	Probable glycolipid permease LtaA	0.0209051928977	0.00411150844843	-0.0167936844493
+UniRef50_Q31WQ9		0.000155344028336	0.00024781821415	9.2474185814e-05
+UniRef50_UPI00036A674F	hypothetical protein	1.82795745138e-05	0.000151553016888	0.000133273442374
+UniRef50_L0IJZ9	Beta glucosidase like glycosyl hydrolase	0.000318770198599	0.000928554330425	0.000609784131826
+UniRef50_L1KBS6		0.000530061789549	0.000156593037902	-0.000373468751647
+UniRef50_Q9HUG9	Bifunctional protein HldE	0.00244615157147	0.00128061230575	-0.00116553926572
+UniRef50_Q5HR43		3.5839385221e-05	5.59712970245e-05	2.01319118035e-05
+UniRef50_W5XGK2	DNA mismatch repair protein MutL	3.1446012524e-06	7.19366444502e-06	4.04906319262e-06
+UniRef50_UPI000262634A	dihydropyrimidine dehydrogenase subunit A	1.86357325897e-05	8.50014561023e-05	6.63657235126e-05
+UniRef50_A6M2S3	Threonyl alanyl tRNA synthetase, SAD	0.000107037614984	0.000586236635633	0.000479199020649
+UniRef50_B1YKT1	Ribosomal protein L11 methyltransferase	1.37411599978e-05	0.000377804316637	0.000364063156639
+UniRef50_W0AKF5	Exo poly alpha D galacturonosidase	6.82355935326e-06	8.08476620106e-06	1.2612068478e-06
+UniRef50_UPI000463C46F	Surfeit locus 1 family protein	8.06419725828e-06	1.27807974673e-05	4.71660020902e-06
+UniRef50_A3M3W1	Phage integrase	0.000563838795038	0.00604813948981	0.00548430069477
+UniRef50_U4WEY2		0.000421204475535	9.83242721802e-05	-0.000322880203355
+UniRef50_Q08YP9		0.00019121352797	8.67934655405e-05	-0.000104420062429
+UniRef50_U5MNN3	Glycerate dehydrogenase HprA	0.00023741491936	0.000949524094922	0.000712109175562
+UniRef50_UPI0002BB9F78	hypothetical protein, partial	0.000547497138335	5.04381327342e-05	-0.000497059005601
+UniRef50_A8M9N8	GTPase like protein	0.00295219034839	0.00107986969598	-0.00187232065241
+UniRef50_P52041	3 hydroxybutyryl CoA dehydrogenase	0.0116037782299	0.00218463839218	-0.00941913983772
+UniRef50_V9BHA3	Elongation factor Tu	0.0257222062628	0.00529540092294	-0.0204268053399
+UniRef50_Q2FWQ0	Anti repressor	0.0179935335476	0.00265045759129	-0.0153430759563
+UniRef50_J2YEX7	Transport protein, AzlD family	0.000123251566383	0.000905654197447	0.000782402631064
+UniRef50_D3VGH0	Putative mating pair stabilization protein	1.72362134026e-05	1.17518895197e-05	-5.4843238829e-06
+UniRef50_X5JZY6	ABC transporter, ATP binding protein	0.00443075803232	0.000577541454886	-0.00385321657743
+UniRef50_Q8E5X0	Hydroxyethylthiazole kinase	0.000185953689091	0.000230716175927	4.4762486836e-05
+UniRef50_B8FP12	Lipoprotein	0.000304642453724	5.57649842618e-05	-0.000248877469462
+UniRef50_Q2FXR3	Delta aminolevulinic acid dehydratase	0.0127099871412	0.00247900742769	-0.0102309797135
+UniRef50_A0A023RZK1	Transglutaminase	0.000147647714023	0.00578241363184	0.00563476591782
+UniRef50_UPI0002E002F0	ABC transporter ATP binding protein	0.000105517309721	1.77853413704e-05	-8.77319683506e-05
+UniRef50_Q1CRS3	tRNA specific 2 thiouridylase MnmA	0.000174762031871	0.00305486172816	0.00288009969629
+UniRef50_Q6W1T0	Transporter	0.00971432354625	0.00482338947226	-0.00489093407399
+UniRef50_V6QBN8		0.000298015254361	0.000656259344878	0.000358244090517
+UniRef50_J7QD35		0.0038914941591	0.00060182009628	-0.00328967406282
+UniRef50_A6LQ54		0.000155557412985	0.000579175208544	0.000423617795559
+UniRef50_Q4FQF7	ATP phosphoribosyltransferase	0.000723050410977	0.00752993909274	0.00680688868176
+UniRef50_A6LQ58		0.00098634711073	0.000711699092776	-0.000274648017954
+UniRef50_B4R825	Succinoglycan biosynthesis protein	0.00294045115857	0.000519786285858	-0.00242066487271
+UniRef50_P31828	Probable zinc protease PqqL	0.00210058154213	0.00134629406208	-0.00075428748005
+UniRef50_A7I252	Glutamate 1 semialdehyde 2,1 aminomutase	8.55298941131e-06	0.00923302870549	0.00922447571608
+UniRef50_G1ZXK5	Sodium proline symporter	0.00214690238992	0.000616164736886	-0.00153073765303
+UniRef50_F3SDM6		0.000136996778916	6.70662793754e-05	-6.99304995406e-05
+UniRef50_UPI00035C8B7E	hypothetical protein	0.00767910636879	0.00173715708938	-0.00594194927941
+UniRef50_H4A9R7	PRD domain protein	0.0113189691781	0.00206101291883	-0.00925795625927
+UniRef50_A6LRK0	UspA domain protein	0.000302796247737	0.00043858916614	0.000135792918403
+UniRef50_A5UNV2	Putative structural protein 	0.000652713525392	0.00188500024592	0.00123228672053
+UniRef50_Q83LD5		0.000327599402696	3.48826529242e-05	-0.000292716749772
+UniRef50_A1TXZ0	Gluconolactonase	0.000981559362898	0.000693498507066	-0.000288060855832
+UniRef50_UPI0003169EC4	hypothetical protein	3.71517277146e-05	1.73964607788e-05	-1.97552669358e-05
+UniRef50_B9KTB3	Extracellular solute binding protein, family 5	0.0145750872264	0.00425975214059	-0.0103153350858
+UniRef50_A6LZH5	Cation diffusion facilitator family transporter	0.000372589200682	0.000153013836893	-0.000219575363789
+UniRef50_A4WR60	von Willebrand factor, type A	0.000228204618775	1.3609103593e-05	-0.000214595515182
+UniRef50_Q9KQM0	5 deoxynucleotidase VC_1978	0.000625920117967	0.000310859689677	-0.00031506042829
+UniRef50_UPI0003B76BAF	malto oligosyltrehalose synthase, partial	7.38438612701e-06	5.39370716595e-06	-1.99067896106e-06
+UniRef50_F8G1E1		0.00386590431929	0.000307621567909	-0.00355828275138
+UniRef50_UPI0003B6C0E2	ATPase	6.79478754861e-06	9.62605522957e-06	2.83126768096e-06
+UniRef50_R7F196		1.43532593383e-05	0.000533879257946	0.000519525998608
+UniRef50_UPI000379E4F4	hypothetical protein	4.70351643382e-05	8.21869271254e-05	3.51517627872e-05
+UniRef50_R5BXF1	Aspartokinase	0.000128396594851	0.00253421191727	0.00240581532242
+UniRef50_UPI0003B32155	hypothetical protein	0.00146807741626	0.000101961622738	-0.00136611579352
+UniRef50_UPI000472BA56	hypothetical protein, partial	1.35702152413e-05	1.8823965657e-05	5.2537504157e-06
+UniRef50_E6AKY5	4Fe 4S binding domain protein	0.00818627382019	0.00446522960158	-0.00372104421861
+UniRef50_UPI000428EAFE	hypothetical protein	1.82568715062e-06	3.07766812149e-06	1.25198097087e-06
+UniRef50_Q75ZQ4	Urease subunit gamma	5.92988908745e-05	0.000210317232829	0.000151018341954
+UniRef50_D2PVS1		2.02078485743e-06	4.17862385369e-06	2.15783899626e-06
+UniRef50_Q5HFU7	30S ribosomal protein S1	0.0108051662775	0.00375655427462	-0.00704861200288
+UniRef50_UPI00040934E7	hypothetical protein	5.88218387433e-05	0.000137005114253	7.81832755097e-05
+UniRef50_Q2FG95	Probable cell wall amidase LytH	0.0142902044621	0.00395639628541	-0.0103338081767
+UniRef50_T7NH17	L fucose proton symporter	0.000463119201756	0.000213225057899	-0.000249894143857
+UniRef50_Q5HN77	Amino acid ABC transporter, permease amino acid binding protein, putative	0.0104192918203	0.00198565752047	-0.00843363429983
+UniRef50_UPI0003665A08	hypothetical protein	0.000125288701011	2.60167215425e-05	-9.92719794685e-05
+UniRef50_B4RL88		0.000291494972086	0.00471382573257	0.00442233076048
+UniRef50_N0DYS1		1.38668152009e-05	0.000314724730229	0.000300857915028
+UniRef50_UPI0003B45643	glycosyl transferase family 1	2.58331429078e-05	6.40670073849e-06	-1.94264421693e-05
+UniRef50_UPI0001912596	SsrA binding protein, partial	3.90018812346e-05	8.60126090073e-05	4.70107277727e-05
+UniRef50_A7FPN7	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.26345550728e-05	2.25000674244e-05	9.8655123516e-06
+UniRef50_U5MTV6		0.000659279987501	0.0015170537449	0.000857773757399
+UniRef50_V2EJX2	Proline specific permease	0.00442795259935	0.00202768905555	-0.0024002635438
+UniRef50_P62177	RNA polymerase sigma 35 factor	0.000552518132057	0.00244026119266	0.0018877430606
+UniRef50_P42601	Inner membrane protein alx	0.00226687723775	0.00707235761733	0.00480548037958
+UniRef50_UPI00036D10A8	hypothetical protein, partial	9.69739736537e-05	1.0433986558e-05	-8.65399870957e-05
+UniRef50_UPI00035D2E6B	hypothetical protein	2.57083396302e-05	2.72707914439e-05	1.5624518137e-06
+UniRef50_P39207	Nucleoside diphosphate kinase 1	1.42948927151e-05	3.20745813366e-05	1.77796886215e-05
+UniRef50_UPI000376C41C	hypothetical protein	2.75837218675e-05	0.00144532215068	0.00141773842881
+UniRef50_P80357	Arginine N succinyltransferase subunit alpha	0.000622847168474	0.000304974222238	-0.000317872946236
+UniRef50_F0YH85		7.93046054748e-05	0.00016432609633	8.50214908552e-05
+UniRef50_I2JHH7		1.09847811455e-05	1.31754993536e-05	2.1907182081e-06
+UniRef50_O25770	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000117719123342	0.001937223325	0.00181950420166
+UniRef50_R5T8M0	Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC	0.000416337090519	0.00167975164149	0.00126341455097
+UniRef50_Q38YR5		1.17011382921e-05	0.00419456472715	0.00418286358886
+UniRef50_A0A014QHI0		6.22537408221e-05	0.000837015325202	0.00077476158438
+UniRef50_UPI0001FFF018	AMP dependent synthetase	1.21794665448e-05	1.16549174777e-05	-5.245490671e-07
+UniRef50_A7AI53		4.19247545554e-05	0.000331960225017	0.000290035470462
+UniRef50_UPI0002B44D7F	PREDICTED	5.71349797054e-05	0.000159519373128	0.000102384393423
+UniRef50_A0QI67		4.65531469677e-05	0.000318109111801	0.000271555964833
+UniRef50_UPI0003638900	hypothetical protein	1.64600496672e-05	0.000177172605586	0.000160712555919
+UniRef50_UPI00046489F4	ABC transporter ATPase, partial	1.48277809582e-05	4.3218372345e-05	2.83905913868e-05
+UniRef50_B6ZUP8	Formate C acetyltransferase 3	0.00318017986611	0.000410950587957	-0.00276922927815
+UniRef50_UPI00039CFDC1	hypothetical protein	9.69724154481e-05	0.00185596358941	0.00175899117396
+UniRef50_B1ZKW6	40 residue YVTN family beta propeller repeat protein	0.00977375898238	0.00362167320567	-0.00615208577671
+UniRef50_C5Z6N8		8.3521372088e-05	0.000870891786541	0.000787370414453
+UniRef50_A6UVH0	FO synthase subunit 1	0.0023753599348	0.000431077420709	-0.00194428251409
+UniRef50_Q2NGM6	Probable translation initiation factor IF 2	0.00238231420926	0.000341959782782	-0.00204035442648
+UniRef50_A0A031HYF4	Cell envelope like function transcriptional attenuator common domain protein	9.11133801595e-07	7.47006842818e-05	7.37895504802e-05
+UniRef50_A1R863	tRNA specific 2 thiouridylase MnmA	0.000113359155811	0.00850548406276	0.00839212490695
+UniRef50_F0Y2L6	Expressed protein 	7.29656622112e-05	0.000317283450164	0.000244317787953
+UniRef50_U5RSG0	NAD dependent epimerase dehydratase	0.0131653208591	0.00174118974982	-0.0114241311093
+UniRef50_N0ATL3	Amidase	0.000279447710146	0.0011569135415	0.000877465831354
+UniRef50_W0YMI4	GTP binding protein LepA	2.91323089881e-05	6.41684838809e-05	3.50361748928e-05
+UniRef50_Q5HKG7	ABC transporter, ATP binding protein	0.0193444259598	0.00335772504816	-0.0159867009116
+UniRef50_A7FBL3		0.000295533451142	0.0030936133788	0.00279807992766
+UniRef50_P0AD62	Pyruvate kinase I	0.00258954854462	0.00179106862636	-0.00079847991826
+UniRef50_P17597	Acetolactate synthase, chloroplastic	9.59318751084e-06	1.31303984151e-05	3.53721090426e-06
+UniRef50_P80576	Phospho 2 dehydro 3 deoxyheptonate aldolase	4.14616224957e-05	5.30160930255e-06	-3.61600131932e-05
+UniRef50_R7PTS8		0.00106121578966	0.000194714311118	-0.000866501478542
+UniRef50_A0A032AQX4		6.65821004776e-05	6.83853287389e-05	1.8032282613e-06
+UniRef50_Q2NBB9		1.39054376913e-05	1.91448931837e-05	5.2394554924e-06
+UniRef50_Q829X3	UvrABC system protein A	0.0130642091732	0.00961050662784	-0.00345370254536
+UniRef50_UPI0003739172	hypothetical protein	7.53842800846e-06	2.64499872071e-05	1.89115591986e-05
+UniRef50_E3A6L5		0.00295061345597	0.000591606312127	-0.00235900714384
+UniRef50_J1NS24	Arabinose transport protein	4.41157495326e-05	0.000111170494778	6.70547452454e-05
+UniRef50_A4WT93		0.00964838742565	0.00142389607949	-0.00822449134616
+UniRef50_A9UZQ9	Predicted protein	6.57719188826e-06	3.18588793808e-06	-3.39130395018e-06
+UniRef50_C6SP54		0.00535080301527	0.000304450211538	-0.00504635280373
+UniRef50_UPI000255E535	malonyl CoA acyl carrier protein transacylase, partial	0.000110342367853	0.000645203842502	0.000534861474649
+UniRef50_K4H363	Ribose ABC transporter, periplasmic ribose binding protein RbsB	0.0123648614173	0.000704457579105	-0.0116604038382
+UniRef50_Q2P7B9	3 oxoacyl [acyl carrier protein] synthase 3	0.0122273940776	0.00619693545492	-0.00603045862268
+UniRef50_Q8XIK5		8.38857752959e-05	0.00154558515942	0.00146169938412
+UniRef50_UPI00034B5D93	DNA polymerase III subunit gamma tau	3.05016993121e-06	1.1320062071e-05	8.26989213979e-06
+UniRef50_R4R715	Putrescine importer PuuP	0.000200700612221	0.000507533739408	0.000306833127187
+UniRef50_Q6NGH3	Ribonuclease 3	1.3295878069e-05	0.00425827910564	0.00424498322757
+UniRef50_Q5HLI2	Amino acid ABC transporter, amino acid binding protein	0.00910198897578	0.00457118580355	-0.00453080317223
+UniRef50_UPI0003B3520D	mannose 1 phosphate guanylyltransferase	2.31980193309e-05	1.03990702894e-05	-1.27989490415e-05
+UniRef50_M9VI11	Phosphoenolpyruvate sugar phosphotransferase	0.000170266531623	0.0043580213698	0.00418775483818
+UniRef50_UPI00036C530C	hypothetical protein, partial	5.85139132754e-05	0.000104865347259	4.63514339836e-05
+UniRef50_A4VS44		0.000471198166788	0.000586638970279	0.000115440803491
+UniRef50_UPI000477575F	spermidine putrescine ABC transporter substrate binding protein	2.66212024233e-05	0.000199872719077	0.000173251516654
+UniRef50_C3ZSQ3		0.000188117314178	9.50323128369e-05	-9.30850013411e-05
+UniRef50_A3PJG3	Outer membrane protein assembly factor BamA	0.0114694523744	0.00329031658524	-0.00817913578916
+UniRef50_B9E6Y5		0.0165050428413	0.00505682682174	-0.0114482160196
+UniRef50_UPI00047C4591	hypothetical protein	3.05535024127e-05	0.000275438989379	0.000244885486966
+UniRef50_W5XCX4	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	3.04057649474e-06	2.86443886497e-05	2.5603812155e-05
+UniRef50_A4WW20		0.000197374617713	0.00325506892955	0.00305769431184
+UniRef50_A4WW27		0.00870691410275	0.0024919303547	-0.00621498374805
+UniRef50_U6AME7	Glycerol 3 phosphate transporter	0.00151726313252	0.000132231360532	-0.00138503177199
+UniRef50_X5EIQ4	Dihydroxyacetone kinase, L subunit	0.0253712409572	0.00438931217804	-0.0209819287792
+UniRef50_UPI0002E4364A	hypothetical protein	4.02465272254e-05	4.30505468148e-05	2.8040195894e-06
+UniRef50_K7S070	ABC transporter, ATP binding protein	0.000284895085921	0.00684168899645	0.00655679391053
+UniRef50_Q99UB6	Prephenate dehydrogenase	0.00893935849316	0.00313743566727	-0.00580192282589
+UniRef50_A5IRF7	PEBP family protein	0.0291659008016	0.00316333356749	-0.0260025672341
+UniRef50_K9WCH6		3.22777795266e-05	0.000403358637159	0.000371080857632
+UniRef50_UPI000465069F	mannose 1 phosphate guanyltransferase	2.29838899432e-05	7.28961213377e-06	-1.56942778094e-05
+UniRef50_B4S5Y8	Riboflavin biosynthesis protein RibBA	1.01375240772e-05	0.00256901597057	0.00255887844649
+UniRef50_UPI000328EECC	PREDICTED	7.74955934733e-05	0.00202502883564	0.00194753324217
+UniRef50_Q2C9Y7		0.000378644076208	4.55312947057e-05	-0.000333112781502
+UniRef50_UPI000376B5FB	hypothetical protein	0.00014496826201	2.01930245832e-05	-0.000124775237427
+UniRef50_UPI0002375AFF	plasmid pRiA4b ORF 3 family protein	8.3241215135e-06	1.14900387414e-05	3.1659172279e-06
+UniRef50_UPI00046AEB45	hypothetical protein	1.81074386381e-05	2.66561100045e-05	8.5486713664e-06
+UniRef50_UPI0003FEA9DB	xanthine dehydrogenase	4.97599425625e-05	3.3411869064e-05	-1.63480734985e-05
+UniRef50_A5UL20	ATPase involved in DNA repair, SbcC	0.00326217426329	0.00117084239866	-0.00209133186463
+UniRef50_O59829	Probable nitrilase C965.09	0.000303619452667	0.000239122838212	-6.4496614455e-05
+UniRef50_E8PEL6		0.000212468661645	0.00175338516407	0.00154091650243
+UniRef50_E8UAZ5	Phosphoesterase RecJ domain protein	0.000133702239266	0.00519090931062	0.00505720707135
+UniRef50_Q162C3	Sodium hydrogen exchanger family, putative	0.00533545263552	0.0005099378771	-0.00482551475842
+UniRef50_H1UZM0	Peroxiredoxin HYR1	4.58693353607e-05	7.0336116509e-05	2.44667811483e-05
+UniRef50_C0BFU0		4.78674464958e-05	8.83129780216e-06	-3.90361486936e-05
+UniRef50_UPI000466DC48	glycine dehydrogenase	1.31412964468e-05	2.94381697068e-06	-1.01974794761e-05
+UniRef50_UPI00047B371C	hypothetical protein, partial	3.11101608465e-05	7.04792873234e-05	3.93691264769e-05
+UniRef50_P0AFB9	Nitrogen regulation protein NR	0.00292893310244	0.000919552899458	-0.00200938020298
+UniRef50_B4RFJ6	Type II secretion system protein N	0.00010902520255	6.76398474671e-05	-4.13853550829e-05
+UniRef50_C6AZB2	Inner membrane translocator	0.0119503801337	0.00353145082022	-0.00841892931348
+UniRef50_R7PXT2		0.00330084033994	0.000499668865723	-0.00280117147422
+UniRef50_UPI000444A373	hypothetical protein STEHIDRAFT_62958	3.15604784196e-05	0.000402661527878	0.000371101049458
+UniRef50_A6LUB1	Diguanylate cyclase	0.000546840661818	0.0017885589242	0.00124171826238
+UniRef50_UPI0003B75BCC	polar amino acid ABC transporter permease	3.74940370186e-06	3.92921408307e-06	1.7981038121e-07
+UniRef50_UPI00029D9246		3.94607091047e-05	3.96742438685e-05	2.135347638e-07
+UniRef50_H8MF76		8.83605987298e-06	0.00092605040078	0.000917214340907
+UniRef50_A0A023RZ47	DNA binding protein	0.000408829590809	0.00475204682507	0.00434321723426
+UniRef50_Q01YD9	Bifunctional protein GlmU	4.13402401358e-06	5.03870273751e-06	9.0467872393e-07
+UniRef50_F2AC19		0.000234139820378	0.00010618081182	-0.000127959008558
+UniRef50_P59680	ATP dependent 6 phosphofructokinase	1.82988613489e-06	2.89796318721e-06	1.06807705232e-06
+UniRef50_P0AD05		0.00701358541667	0.0034938809681	-0.00351970444857
+UniRef50_A1B1Z9		0.0113733105752	0.00431011682069	-0.00706319375451
+UniRef50_Q2NG02	Enolase	0.00249353723587	0.000824841131346	-0.00166869610452
+UniRef50_F9NSM8		0.00055526038532	0.00371584727636	0.00316058689104
+UniRef50_Q8DW15	Glutathione biosynthesis bifunctional protein GshAB	0.00550186920965	0.00180864537669	-0.00369322383296
+UniRef50_A8ISU7	Predicted protein	0.000530577215517	0.000173387568509	-0.000357189647008
+UniRef50_A6M262	ABC transporter related	0.000479285527454	0.000851717962019	0.000372432434565
+UniRef50_F5YI36	Glutamine ABC transporter, permease substrate binding protein	0.00672618412148	0.00159114918499	-0.00513503493649
+UniRef50_UPI00047AA542	argininosuccinate lyase	5.22799159108e-06	1.0504914289e-05	5.27692269792e-06
+UniRef50_M4RCI7	Fatty acid desaturase	0.000345388135772	0.00742927624491	0.00708388810914
+UniRef50_Q5GWS2		0.000449538230973	0.000247286737867	-0.000202251493106
+UniRef50_T8CXA8	Phosphatase yihX	6.96446982968e-05	0.000178133079522	0.000108488381225
+UniRef50_O31711		0.00321012258277	0.000333063953224	-0.00287705862955
+UniRef50_O31716		0.00136807277639	0.00513923235862	0.00377115958223
+UniRef50_Q9ZPX5	Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial	0.000558323683303	0.00298833832919	0.00243001464589
+UniRef50_U5MKU3	ABC type transport system, involved in lipoprotein release, permease component	0.000295530503988	0.00140414775693	0.00110861725294
+UniRef50_A6LQ14	AMP dependent synthetase and ligase	0.000706144164955	0.000124869642797	-0.000581274522158
+UniRef50_B9DP24	4 hydroxy tetrahydrodipicolinate reductase	0.017488820534	0.00510239160521	-0.0123864289288
+UniRef50_F0N4Z5	Exodeoxyribonuclease V, gamma subunit	0.00019319368823	0.00343487096322	0.00324167727499
+UniRef50_P14756	Pseudolysin	0.000291692961966	0.000128678302919	-0.000163014659047
+UniRef50_UPI0004720360	30S ribosomal protein S3	0.000313330757321	0.00104893389463	0.000735603137309
+UniRef50_Q7UJ69	Dihydroxy acid dehydratase	2.21129427489e-06	8.38967181605e-06	6.17837754116e-06
+UniRef50_H8L8P6	PTS system, mannose fructose sorbose specific IID component	0.00105003925893	0.0032070000259	0.00215696076697
+UniRef50_A3PNL6	PpiC type peptidyl prolyl cis trans isomerase	0.0100107750419	0.00194690787508	-0.00806386716682
+UniRef50_K6Q1W9	Biotin dependent carboxylase like protein	4.70544947275e-06	6.72026763217e-05	6.2497226849e-05
+UniRef50_UPI0004761EBF	cold shock protein	2.1831300464e-05	3.40359300573e-05	1.22046295933e-05
+UniRef50_Q2FFJ3	Sodium proline symporter	0.0236722969053	0.00733144905057	-0.0163408478547
+UniRef50_UPI0002F6340C	hypothetical protein	4.20828014311e-06	1.42779565232e-05	1.00696763801e-05
+UniRef50_UPI0004779366	serine protease	1.81061900691e-05	2.33133975202e-05	5.2072074511e-06
+UniRef50_B7LN63		0.00469635344377	0.000781675575147	-0.00391467786862
+UniRef50_UPI0003B3C2F9	alpha amylase	2.00381127959e-05	3.47823662417e-05	1.47442534458e-05
+UniRef50_Q3AZ12		0.000170956013843	2.06794009552e-05	-0.000150276612888
+UniRef50_Q896N2	Phosphoserine phosphatase	0.000249440080738	0.00109351991179	0.000844079831052
+UniRef50_G8LZQ1	Molybdate ABC transporter, permease protein	0.000600122018428	0.000290475447734	-0.000309646570694
+UniRef50_D3SBH6	TRAP transporter solute receptor, TAXI family	7.3038614021e-05	7.79727014196e-05	4.9340873986e-06
+UniRef50_UPI0004432C18	PREDICTED	7.66028050831e-06	5.18223566459e-05	4.41620761376e-05
+UniRef50_Q92DG5	D alanine  D alanine ligase	6.3270452185e-06	0.00047889195437	0.000472564909152
+UniRef50_A7ZTE9	Mannitol 1 phosphate 5 dehydrogenase	0.00411918731568	0.000660392514901	-0.00345879480078
+UniRef50_A6LTV5	Ion transport 2 domain protein	0.000419610819248	0.00134328873201	0.000923677912762
+UniRef50_UPI0004677ABB	hypothetical protein	1.9718922576e-05	2.77839576715e-05	8.0650350955e-06
+UniRef50_UPI000471685A	membrane protein	3.50173917045e-05	0.000899055382538	0.000864037990833
+UniRef50_UPI0003C15BF1	PREDICTED	5.69007202092e-05	3.31063191152e-06	-5.35900882977e-05
+UniRef50_UPI000027C743	hypothetical protein	7.48869126994e-06	1.52564527575e-05	7.76776148756e-06
+UniRef50_UPI0003656A67	hypothetical protein	3.59506284696e-05	3.69419166923e-05	9.912882227e-07
+UniRef50_A0A023S0W1	Acyltransferase	0.00014155724582	0.00188348695926	0.00174192971344
+UniRef50_UPI000372E136	hypothetical protein	3.7315344732e-05	0.000120172944516	8.2857599784e-05
+UniRef50_P75867	Putative Lon protease homolog	0.00366534037404	0.000102838086542	-0.0035625022875
+UniRef50_A1T5E9		3.83149698522e-05	1.50219961238e-05	-2.32929737284e-05
+UniRef50_UPI00047D7AE5	resolvase	7.29628466942e-05	0.000219817765938	0.000146854919244
+UniRef50_R7NTI0		6.4371998579e-06	1.19096215976e-05	5.4724217397e-06
+UniRef50_E6S0A0		2.06779661217e-05	3.85443347728e-05	1.78663686511e-05
+UniRef50_V6UAJ9		0.000415175957368	4.96768506484e-06	-0.000410208272303
+UniRef50_Q8CU26		0.00328533513994	0.0013943187415	-0.00189101639844
+UniRef50_UPI000367BBBE	hypothetical protein	0.000405564832278	0.00045458887484	4.9024042562e-05
+UniRef50_W4XFJ9		6.76030182537e-07	2.06555424425e-07	-4.69474758112e-07
+UniRef50_UPI000379071D	hypothetical protein	9.43628097165e-05	6.67104452015e-05	-2.7652364515e-05
+UniRef50_A6LT54		0.000186566386584	0.00109194426667	0.000905377880086
+UniRef50_A6LT50		0.00023728827183	0.00391685034238	0.00367956207055
+UniRef50_B9KX92	ABC polysaccharide export transporter, ATPase subunit	0.0185351010945	0.00211628906084	-0.0164188120337
+UniRef50_A6LT52		0.00027914657665	0.00050470376079	0.00022555718414
+UniRef50_A6LT53		0.000494159569863	0.000954036239284	0.000459876669421
+UniRef50_Q6ZD36		1.07522669369e-05	0.000138970134759	0.000128217867822
+UniRef50_P0A9R9	Cell division ATP binding protein FtsE	0.00261341985107	0.000268469732005	-0.00234495011907
+UniRef50_R6FNM8	DEAD DEAH box helicase domain protein	0.000685760623058	0.000984518922578	0.00029875829952
+UniRef50_A4G3E6	Isoleucine  tRNA ligase	0.000739371378363	0.000334887628344	-0.000404483750019
+UniRef50_A3PLZ5	ParB family protein	0.00059611970572	0.000334730976329	-0.000261388729391
+UniRef50_UPI00025581FA	cyclohexadienyl dehydrogenase, partial	4.5187314283e-05	0.000146517682055	0.000101330367772
+UniRef50_UPI00046F08B0	hypothetical protein	0.000108654210894	1.83879562934e-05	-9.02662546006e-05
+UniRef50_UPI0003B4920F	preprotein translocase subunit SecB	3.45067734853e-05	5.98448434774e-05	2.53380699921e-05
+UniRef50_P0A2X3	Exodeoxyribonuclease	0.00488410503424	0.00597416025615	0.00109005522191
+UniRef50_UPI0003B559D7	4 alpha glucanotransferase	1.08044327185e-05	0.000594511498005	0.000583707065286
+UniRef50_A5N248		0.00126515337634	0.00217450115948	0.00090934778314
+UniRef50_W1GUL6		3.60839875691e-05	2.28783404467e-05	-1.32056471224e-05
+UniRef50_G7UQ41	Terminase	4.27530818981e-06	3.23509773958e-05	2.8075669206e-05
+UniRef50_Q9RQW2	Holo [acyl carrier protein] synthase	8.94334562036e-05	0.000678888977457	0.000589455521253
+UniRef50_L8UK30		0.000703390041336	0.000689966788659	-1.3423252677e-05
+UniRef50_Q8X643	NAD dependent dihydropyrimidine dehydrogenase subunit PreA	0.00165478987246	0.00297688916432	0.00132209929186
+UniRef50_U5PD31	Asparaginase	0.0049951520362	0.00819383782422	0.00319868578802
+UniRef50_UPI00037472A7	hypothetical protein	5.08574675189e-05	2.23479879209e-05	-2.8509479598e-05
+UniRef50_F9ZUX9	Succinate dehydrogenase subunit A like protein	0.000172239973521	0.000230968410904	5.8728437383e-05
+UniRef50_G0DS55	Radical SAM superfamily protein	0.000117110441217	0.0036813899534	0.00356427951218
+UniRef50_A8ZUC6	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.52693719121e-05	7.6681328677e-06	-7.6012390444e-06
+UniRef50_W7VMR8		7.64165776251e-05	0.000287831791158	0.000211415213533
+UniRef50_W4Q5P9	Phage terminase large subunit	5.33696791928e-06	1.64284155842e-05	1.10914476649e-05
+UniRef50_A6LZB3	FMN binding domain protein	0.000149994432661	0.0014952984196	0.00134530398694
+UniRef50_U9XFZ5		0.000129830094458	0.000132424648145	2.594553687e-06
+UniRef50_N2GFP3		0.000235438246685	0.000525429829699	0.000289991583014
+UniRef50_I0C1E1		0.00522708544695	0.00192123651959	-0.00330584892736
+UniRef50_Q8Z9L3	L carnitine CoA transferase	0.00241797023074	0.000993651609394	-0.00142431862135
+UniRef50_Q2W0J7	Flagellar P ring protein	0.00943515421167	0.00145529811926	-0.00797985609241
+UniRef50_Q92U29		0.000103176552206	0.000391866267024	0.000288689714818
+UniRef50_Q7UID0	Thymidylate synthase	0.00142927573747	0.016106152773	0.0146768770355
+UniRef50_UPI0003691ABF	hypothetical protein	3.55684061717e-06	1.04131555319e-05	6.85631491473e-06
+UniRef50_F0MG01		0.000201147063333	0.00261319095365	0.00241204389032
+UniRef50_W7TC28		1.47289251804e-05	2.17640867982e-05	7.0351616178e-06
+UniRef50_A6UPR3	Glutamyl tRNA amidotransferase subunit E	0.0027501928806	0.000211909231622	-0.00253828364898
+UniRef50_UPI00030168D3	hypothetical protein	2.99184050592e-05	0.00018820279495	0.000158284389891
+UniRef50_K0HTP9	Sulfate ABC transporter periplasmic sulfate binding protein	0.000317014417105	0.000272600035571	-4.4414381534e-05
+UniRef50_Q1RFI5		0.00059290993013	0.00118126682079	0.00058835689066
+UniRef50_A0L5M9	UDP N acetylenolpyruvoylglucosamine reductase	4.94908325217e-06	5.96385948221e-05	5.46895115699e-05
+UniRef50_B9AGR4		0.00129980860143	0.000257741985155	-0.00104206661627
+UniRef50_G7ELT9		2.51123298335e-05	1.17630425862e-05	-1.33492872473e-05
+UniRef50_U3AFI9	Urea ABC transporter, urea binding protein	0.00698261911932	0.00155133945209	-0.00543127966723
+UniRef50_D4HC81		0.000311198219146	0.00591441252345	0.0056032143043
+UniRef50_C0XT97		1.36960606861e-05	0.00186856943653	0.00185487337584
+UniRef50_Q55587		4.02299074535e-06	1.84877594776e-05	1.44647687322e-05
+UniRef50_F0VN90		8.21637708439e-06	1.26798168731e-05	4.46343978871e-06
+UniRef50_B7QVH2	Major facilitator superfamily protein	3.03517627947e-05	6.30827769979e-05	3.27310142032e-05
+UniRef50_P42620	Glutathionyl hydroquinone reductase YqjG	0.0288905955137	0.00828376693824	-0.0206068285755
+UniRef50_UPI0003758451	AsnC family transcriptional regulator	0.000135788438972	8.50665236632e-05	-5.07219153088e-05
+UniRef50_I0LIW9		1.9506904962e-05	4.26687775675e-06	-1.52400272052e-05
+UniRef50_UPI00046EAF7B	hypothetical protein, partial	1.51904680505e-05	1.60009392137e-05	8.104711632e-07
+UniRef50_A7X1E9	Aspartate carbamoyltransferase	0.0123155084818	0.00121912547131	-0.0110963830105
+UniRef50_V8FVT8		9.86461643372e-05	0.0015816481678	0.00148300200346
+UniRef50_I1YHV8	Carbonic anhydrase, family 3	5.99858754362e-05	0.000133863051733	7.38771762968e-05
+UniRef50_A3PI07		0.00251802107269	0.0017897982133	-0.00072822285939
+UniRef50_A7MMQ6		8.41884243704e-05	8.04770489307e-05	-3.7113754397e-06
+UniRef50_Q9AD79	Putative membrane protein	0.00012622647155	2.18758904957e-05	-0.000104350581054
+UniRef50_UPI00036DE46F	hypothetical protein	2.06797028933e-05	3.88434859113e-05	1.8163783018e-05
+UniRef50_UPI0003780756	SAM dependent methyltransferase	1.29040514176e-05	2.97713943451e-05	1.68673429275e-05
+UniRef50_Q3J1W3	Chemotaxis response regulator protein glutamate methylesterase 2	0.000100239200105	0.00034818774817	0.000247948548065
+UniRef50_T0UG31	Cell division protein FtsW	0.0047956712244	0.00446446987613	-0.00033120134827
+UniRef50_UPI0004040B20	PTS sugar transporter subunit IIA	2.16196659831e-05	6.80309602808e-05	4.64112942977e-05
+UniRef50_Q58556	Cell division cycle protein 48 homolog MJ1156	0.00200620122814	0.000360788032948	-0.00164541319519
+UniRef50_C6ABJ5	sn glycerol 3 phosphate binding periplasmic protein UgpB	1.55391390956e-05	5.93003733895e-06	-9.60910175665e-06
+UniRef50_UPI00047E8722	hypothetical protein	8.66638075146e-06	5.74659771742e-06	-2.91978303404e-06
+UniRef50_O27041	V type ATP synthase subunit I	0.00284443831233	0.000507790757045	-0.00233664755529
+UniRef50_P66938	DNA topoisomerase 4 subunit B	0.0281823127507	0.0138964129147	-0.014285899836
+UniRef50_Q49150	Bifunctional coenzyme PQQ synthesis protein C D	0.000124609438148	2.17856495128e-05	-0.000102823788635
+UniRef50_U3R1J4	3 hydroxyacyl CoA dehydrogenase	5.49470143931e-05	0.00860785630103	0.00855290928664
+UniRef50_P93033	Fumarate hydratase 1, mitochondrial	1.31605626031e-05	3.41217119469e-05	2.09611493438e-05
+UniRef50_V5VCJ0	Protease	0.000146455909076	0.00863991926869	0.00849346335961
+UniRef50_F3ZAY0	Putative transcriptional regulator	0.000173038732986	0.000331966136148	0.000158927403162
+UniRef50_Q9Z3R7	Alpha glucoside transport system permease protein AglG	0.00700470581409	0.000495442916683	-0.00650926289741
+UniRef50_UPI0004743C7F	hypothetical protein, partial	0.000105011167531	0.000102141084124	-2.870083407e-06
+UniRef50_N6V2G4		2.01495321983e-06	1.5956669633e-05	1.39417164132e-05
+UniRef50_B4U501	50S ribosomal protein L4	0.00036472076218	0.000346751512944	-1.7969249236e-05
+UniRef50_V4Z4F4		2.54427060768e-06	1.83220540258e-06	-7.120652051e-07
+UniRef50_R5NSU1		0.000479744624373	0.00025438540934	-0.000225359215033
+UniRef50_R7MVM8	Terminase small subunit family protein	0.000135463262263	2.84851542838e-05	-0.000106978107979
+UniRef50_P67109	UPF0042 nucleotide binding protein SA0720	0.0106434781768	0.000197536257659	-0.0104459419191
+UniRef50_D8HCA4	ABC transporter, ATP binding protein	0.00416519825803	0.00207931435521	-0.00208588390282
+UniRef50_UPI00036EA77A	hypothetical protein	1.80610902477e-05	0.00124319397702	0.00122513288677
+UniRef50_C7PA11		7.07139816428e-06	0.000762303522494	0.00075523212433
+UniRef50_A9B518	Ribosomal RNA small subunit methyltransferase H	1.05423060364e-05	3.39494327809e-05	2.34071267445e-05
+UniRef50_F3U3C4		8.25979688065e-05	1.53905932419e-05	-6.72073755646e-05
+UniRef50_Q02252	Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial	9.98974818758e-06	0.007699638719	0.00768964897081
+UniRef50_G8VRC7	Electron transfer flavoprotein FAD binding domain protein	0.000279619251005	0.00597674508864	0.00569712583764
+UniRef50_Q9SI75	Elongation factor G, chloroplastic	2.06612263319e-05	0.000101538544808	8.08773184761e-05
+UniRef50_A5IPV1		0.00816014635855	0.00626863708312	-0.00189150927543
+UniRef50_C1F9K5	Threonine  tRNA ligase	3.16519694042e-05	3.22539463318e-06	-2.8426574771e-05
+UniRef50_Q9LEJ0	Enolase 1	3.63650876333e-06	8.3708725659e-05	8.00722168957e-05
+UniRef50_UPI000366215B	hypothetical protein	0.00340280874994	0.000463938940873	-0.00293886980907
+UniRef50_T0FGA8		1.47725411873e-05	2.32908492216e-05	8.5183080343e-06
+UniRef50_D0T5H1	ATP dependent helicase HrpA	0.000284842938769	0.00322869154081	0.00294384860204
+UniRef50_W4UAP9	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	2.25096594217e-06	2.65595906829e-05	2.43086247407e-05
+UniRef50_K4NG74	VirB4 like protein	4.95388436774e-05	0.00346494090654	0.00341540206286
+UniRef50_Q12PV1	SsrA binding protein	0.000523354622866	0.00118046992953	0.000657115306664
+UniRef50_UPI000369C4CE	hypothetical protein	0.000126584908652	2.83177192448e-05	-9.82671894072e-05
+UniRef50_G7M5A0		0.000530100818569	0.0010389180224	0.000508817203831
+UniRef50_G7M6S3	Arginine decarboxylase	0.000797441026498	0.001398689146	0.000601248119502
+UniRef50_P09184	Very short patch repair protein	0.000619375859826	0.000474277510021	-0.000145098349805
+UniRef50_Q02394	5,10 methenyltetrahydromethanopterin hydrogenase	0.00286503460298	0.000909185526621	-0.00195584907636
+UniRef50_Q88M74	Acyltransferase	0.000465143493236	0.000600194762941	0.000135051269705
+UniRef50_Q0FUI9	ISSpo9, transposase	7.99384094593e-05	7.73993796221e-05	-2.5390298372e-06
+UniRef50_UPI0003AFDE9C	PREDICTED	2.36301303206e-06	1.38885423416e-05	1.15255293095e-05
+UniRef50_P18120	3 isopropylmalate dehydrogenase	1.97420323853e-05	2.45273628521e-05	4.7853304668e-06
+UniRef50_K7UE53	Putative acetylornithine succinylornithine aminotransferase family protein	2.63526470378e-06	3.76535615625e-06	1.13009145247e-06
+UniRef50_R5BW02		0.000595502666077	0.00233741110794	0.00174190844186
+UniRef50_A8MM69	TRAP transporter solute receptor, TAXI family	1.82964357938e-05	1.29344233082e-05	-5.3620124856e-06
+UniRef50_Q3IRX5	Serine hydroxymethyltransferase	8.52700158469e-05	9.55385133525e-05	1.02684975056e-05
+UniRef50_Q9RUB7	Phage shock protein A homolog	0.000176120990128	0.02049858318	0.0203224621899
+UniRef50_Q89VR4	Acyl CoA dehydrogenase	0.000511193084627	0.00384656942268	0.00333537633805
+UniRef50_C3MFT1		0.000607018859646	5.92966881915e-05	-0.000547722171454
+UniRef50_P26608	Flagellar protein FliS	0.00336237762095	0.000717368514652	-0.0026450091063
+UniRef50_UPI0002F0F5DA	branched chain amino acid ABC transporter permease	4.40009523818e-05	0.000523817586644	0.000479816634262
+UniRef50_UPI00046778C2	hypothetical protein	5.14172477089e-06	1.71702099568e-05	1.20284851859e-05
+UniRef50_Q21ET8		1.94122373987e-05	1.81624712867e-05	-1.249766112e-06
+UniRef50_Q720Z5	Teichoic acids export ATP binding protein TagH	5.6667064868e-06	0.000820447142127	0.00081478043564
+UniRef50_P0AFZ1	Protein SseB	0.00523233974107	0.0011791742126	-0.00405316552847
+UniRef50_G2DDB6		3.83482075276e-05	1.23664861738e-05	-2.59817213538e-05
+UniRef50_Q1C0V9	Rhamnulokinase	0.00495804348411	0.000922905679454	-0.00403513780466
+UniRef50_C4ZJG8	Nitrite reductase H), large subunit	0.000598588698913	0.000394933150137	-0.000203655548776
+UniRef50_UPI00039C17A8	hypothetical protein	4.16500883248e-05	2.73702605186e-05	-1.42798278062e-05
+UniRef50_D1BIN8	Monosaccharide binding protein	1.03136230916e-05	0.00516190275641	0.00515158913332
+UniRef50_E6VPG8	Transcriptional regulator, AraC family	0.0284390045463	0.0091596707949	-0.0192793337514
+UniRef50_UPI00021A57D1	PREDICTED	9.84312416401e-05	5.13380031993e-05	-4.70932384408e-05
+UniRef50_E0N7V9		0.000625667384843	0.00850253712458	0.00787686973974
+UniRef50_UPI00037031A7	hypothetical protein, partial	6.92488374226e-06	2.40880117023e-05	1.716312796e-05
+UniRef50_UPI00030650F9	hypothetical protein	7.81507079725e-07	1.23352886453e-06	4.52021784805e-07
+UniRef50_M4SA42	TraU family protein	0.000115303091969	1.64602307439e-05	-9.88428612251e-05
+UniRef50_UPI0001509F0D	Electron transfer flavoprotein ubiquinone oxidoreductase containing protein	2.65544836622e-06	8.60832721048e-06	5.95287884426e-06
+UniRef50_UPI0002BC4120	phosphoenolpyruvate protein phosphotransferase, partial	2.15937525589e-06	0.000173363204951	0.000171203829695
+UniRef50_G8LLV9	Coproporphyrinogen III oxidase	0.00255219309591	0.00161412635007	-0.00093806674584
+UniRef50_Q02136	Histidinol dehydrogenase	0.00588272813331	0.00306893601157	-0.00281379212174
+UniRef50_F6G400		9.92513555255e-05	4.02270795757e-05	-5.90242759498e-05
+UniRef50_U5ACW9		0.000288920644946	0.000127910409555	-0.000161010235391
+UniRef50_UPI0002BFF2B3	unnamed protein product	5.61444684709e-06	2.31897287713e-05	1.75752819242e-05
+UniRef50_K1R9M4	Phage terminase, large subunit	1.52470814135e-05	0.000180883242663	0.00016563616125
+UniRef50_A6LR81	Coenzyme F390 synthetase like protein	0.000107955954865	0.00171630553255	0.00160834957768
+UniRef50_P54019	30S ribosomal protein S13	0.000842038939477	0.000401791435631	-0.000440247503846
+UniRef50_UPI00037EC4C5	hypothetical protein	6.73867909197e-06	3.14001632931e-05	2.46614842011e-05
+UniRef50_UPI00034B83FC	hypothetical protein	7.98698874288e-06	0.000812247123261	0.000804260134518
+UniRef50_UPI000427207E	hypothetical protein	6.97947065103e-06	3.33088710552e-06	-3.64858354551e-06
+UniRef50_K1V4W8		0.000136357920873	1.88029716869e-05	-0.000117554949186
+UniRef50_Q8YF84	Glutamate synthase  small chain	0.00204884880084	0.000303373833107	-0.00174547496773
+UniRef50_Q0BAQ4	tRNA modification GTPase MnmE	0.00504714228498	0.0131205017663	0.00807335948132
+UniRef50_UPI00036B6D82	hypothetical protein	0.00011753106094	2.79443657264e-05	-8.95866952136e-05
+UniRef50_U6EFC2	Helicase	0.00309670934647	0.000774987775745	-0.00232172157072
+UniRef50_A4HI31		6.49074672859e-06	1.46425122558e-05	8.15176552721e-06
+UniRef50_B9KS21	Two component, sigma54 specific, transcriptional regulator, Fis family	0.00306956189778	0.00139689868593	-0.00167266321185
+UniRef50_UPI00046960A8	nickel ABC transporter permease	8.99154584445e-05	4.54239999272e-05	-4.44914585173e-05
+UniRef50_UPI0004647121	hypothetical protein	3.26872267709e-06	9.2677761151e-05	8.94090384739e-05
+UniRef50_UPI00044159A7	cwf21 domain containing protein, partial	5.09910326125e-05	2.52683094059e-05	-2.57227232066e-05
+UniRef50_Q5M4T5		0.00761793149845	0.00576697869196	-0.00185095280649
+UniRef50_O87656	Iron hydroxamate import system permease protein FhuB	0.00261733815291	0.00138462431863	-0.00123271383428
+UniRef50_M1MMU8		0.000199043610132	0.00300362227614	0.00280457866601
+UniRef50_J7RCA7		0.00545297193947	0.000362351785524	-0.00509062015395
+UniRef50_I0AL38	3 oxoacyl [acyl carrier protein] reductase	0.0160072257179	0.00214648353327	-0.0138607421846
+UniRef50_P45468	UPF0718 protein YraQ	0.00223580355969	0.000847832275355	-0.00138797128433
+UniRef50_R9SN00	Transcriptional regulator ArsR family	0.00405368916017	0.000256797134949	-0.00379689202522
+UniRef50_Q07211	Fructokinase	0.00485075668772	0.00360470493283	-0.00124605175489
+UniRef50_Q99UM3	Probable cell wall hydrolase LytN	0.00631799487022	0.000951283493776	-0.00536671137644
+UniRef50_Q4L691	Phosphate import ATP binding protein PstB	2.88489690468e-05	0.000178390342974	0.000149541373927
+UniRef50_I0C432	Homoserine dehydrogenase	0.025512920913	0.00962826165726	-0.0158846592557
+UniRef50_F0MX64	Nickel dependent hydrogenase, b type cytochrome subunit	0.000352345097598	0.0056724264365	0.0053200813389
+UniRef50_P9WNP6	3 hydroxybutyryl CoA dehydrogenase	9.28238080939e-06	0.000283226390587	0.000273944009778
+UniRef50_UPI00036B09C8	hypothetical protein	4.59748784954e-07	2.80608149564e-06	2.34633271069e-06
+UniRef50_B1R255	Cell wall binding repeat domain protein	0.00025334630124	0.000888965254305	0.000635618953065
+UniRef50_S9QXB6		0.000107134058989	3.44910750752e-05	-7.26429839138e-05
+UniRef50_M9VCS0		9.41361568159e-05	0.00285582849635	0.00276169233953
+UniRef50_UPI00035E4AA0	hypothetical protein	9.0176990756e-06	1.26421157621e-05	3.6244166865e-06
+UniRef50_I6T6X2	Protein BglB	0.00342913241115	0.00284425452579	-0.00058487788536
+UniRef50_A0A024HX75		2.05694976103e-05	9.91378879242e-06	-1.06557088179e-05
+UniRef50_P73662	Phosphate acetyltransferase	3.99675354017e-06	7.52091115266e-06	3.52415761249e-06
+UniRef50_W8RVD2	ATPase of the AAA+ class	0.000130006693838	4.5610595622e-05	-8.4396098216e-05
+UniRef50_I0C816	Nitrogen regulation protein NIFR3	3.53894363537e-05	6.2401200814e-05	2.70117644603e-05
+UniRef50_UPI00047AA101	hypothetical protein	3.10917100259e-06	6.81949597648e-06	3.71032497389e-06
+UniRef50_UPI00046A4480	hypothetical protein	2.42626794625e-05	2.14704971228e-05	-2.7921823397e-06
+UniRef50_UPI00028825F3	multidrug ABC transporter permease	0.000227497471899	5.02936142125e-06	-0.000222468110478
+UniRef50_D3NVZ1		5.37917953464e-05	1.74564403813e-05	-3.63353549651e-05
+UniRef50_UPI000190AB93	branched chain amino acid aminotransferase	7.40178192707e-05	6.16403354792e-05	-1.23774837915e-05
+UniRef50_A0A022S140		4.40648613448e-05	0.000326307066793	0.000282242205448
+UniRef50_B0V541		0.000220322561583	0.00742363668812	0.00720331412654
+UniRef50_J2PC13	Arabinose efflux permease family protein	2.96451517059e-06	6.01876194731e-06	3.05424677672e-06
+UniRef50_B2A2G4	Ribosomal RNA small subunit methyltransferase H	6.47341342888e-06	6.8406330452e-06	3.6721961632e-07
+UniRef50_A0Q2Z5	ATP synthase gamma chain	0.000274202897477	0.00147606336038	0.0012018604629
+UniRef50_M1LPW4		0.00065057739139	0.00182198318117	0.00117140578978
+UniRef50_UPI00034DD1B3	hypothetical protein	0.000110289465181	3.70037767062e-05	-7.32856884748e-05
+UniRef50_A6LYK1		0.000157285828689	0.00058359593005	0.000426310101361
+UniRef50_UPI000363AA5C	MULTISPECIES	2.67370096927e-05	1.45142046012e-05	-1.22228050915e-05
+UniRef50_B9ISU4		1.93769381063e-05	3.56276330317e-05	1.62506949254e-05
+UniRef50_D4HF88	Amino acid peptide transporter	0.000169768830967	0.00669466693541	0.00652489810444
+UniRef50_Q39FJ3	Hydroxypyruvate isomerase	0.000149598146176	0.000461432351874	0.000311834205698
+UniRef50_V9XDD0	Diaminohydroxyphosphoribosylaminopyrimidine deaminase	0.000109099996778	0.00113476520694	0.00102566521016
+UniRef50_W1HEW1	DNA topology modulation protein	1.85592008538e-05	1.68355298619e-05	-1.7236709919e-06
+UniRef50_L0SAB5	Fusion of IS1381 orf A and B	1.78509671792e-05	0.00223625007784	0.00221839911066
+UniRef50_Q2NYD7	Indole 3 glycerol phosphate synthase	0.00100468022574	0.00228316820623	0.00127848798049
+UniRef50_E5U188		0.000254346600275	8.91690437462e-05	-0.000165177556529
+UniRef50_E4LMM6	HD domain protein	1.84577554616e-05	2.34957561941e-05	5.0380007325e-06
+UniRef50_Q49W87	Na H(+) antiporter subunit E1	0.0167931114181	0.00270143782698	-0.0140916735911
+UniRef50_UPI0003A7FBFE	side tail fiber protein	8.21673355952e-06	0.000179259035012	0.000171042301452
+UniRef50_UPI0003626812	hypothetical protein	0.000103126891252	1.631480042e-05	-8.6812090832e-05
+UniRef50_UPI000381F4EB	hypothetical protein	4.03856679871e-06	1.28047416867e-05	8.76617488799e-06
+UniRef50_P08368	Transcriptional regulatory protein CreB	0.00197804155607	0.000535317290393	-0.00144272426568
+UniRef50_W4N2B7	UPF0176 protein X964_08780	0.000390200610964	0.00710693968419	0.00671673907323
+UniRef50_UPI0004747C9B	hypothetical protein	0.000713383940696	0.000122730661875	-0.000590653278821
+UniRef50_F2J6W6	Transcriptional regulator	0.00120321853091	0.000588322380236	-0.000614896150674
+UniRef50_UPI0003754665	hypothetical protein, partial	6.21599282306e-05	8.77136706163e-05	2.55537423857e-05
+UniRef50_M3HZS8		3.06709789931e-05	8.04105305025e-06	-2.26299259429e-05
+UniRef50_UPI0004745709	iron hydroxamate transporter permease subunit, partial	1.83188231742e-05	3.4792692823e-05	1.64738696488e-05
+UniRef50_F2JM58	Transcriptional regulator, PucR family	0.000210317289469	0.00136478127803	0.00115446398856
+UniRef50_UPI0004785665	hypothetical protein	8.43217723264e-06	0.000249816181669	0.000241384004436
+UniRef50_UPI000361AD47	flagellar P ring protein FlgI	2.25926506978e-05	2.31726511259e-05	5.800004281e-07
+UniRef50_Q6A615		9.25967266145e-05	0.00456809170202	0.00447549497541
+UniRef50_D4SL88	L ribulose 5 phosphate 3 epimerase UlaE	7.13473408885e-05	2.63127201163e-05	-4.50346207722e-05
+UniRef50_B9KN41		0.00747354552495	0.00128508363134	-0.00618846189361
+UniRef50_UPI00046AB541	MULTISPECIES	7.1351855149e-05	2.90060047643e-05	-4.23458503847e-05
+UniRef50_UPI0002195D2E	peptide ABC transporter ATP binding protein	5.57782563993e-05	1.7026168218e-05	-3.87520881813e-05
+UniRef50_C5N2Z6	LPXTG motif cell wall anchor domain protein 	0.0343176072486	0.000962989256073	-0.0333546179925
+UniRef50_R6A8H0		0.00178746751519	0.000676916656792	-0.0011105508584
+UniRef50_UPI000463E95A	hypothetical protein	2.53026541394e-05	4.45881564215e-06	-2.08438384972e-05
+UniRef50_UPI0002D6C4DC	hypothetical protein	0.000129116750375	1.44800447745e-05	-0.000114636705601
+UniRef50_UPI00047EFE08	macrolide transporter	7.78025221064e-06	4.87888741877e-06	-2.90136479187e-06
+UniRef50_UPI00035CFCF8	hypothetical protein	3.31563090706e-05	4.48996758491e-05	1.17433667785e-05
+UniRef50_UPI0003AEE1CA	PREDICTED	1.28383213376e-05	3.36849617873e-05	2.08466404497e-05
+UniRef50_C6DJF9	Protein ViaA	0.00233235618564	0.000431799027627	-0.00190055715801
+UniRef50_R5J6V4		0.000324926066261	0.000813307218547	0.000488381152286
+UniRef50_P0ACI1	Right origin binding protein	0.00459072391409	0.000204371422282	-0.00438635249181
+UniRef50_U3T5M8	Acetyltransferase	0.000224249102288	0.00309169605713	0.00286744695484
+UniRef50_UPI0004634FA1	hypothetical protein	2.18078389698e-05	3.40634296299e-05	1.22555906601e-05
+UniRef50_A3PJF7	Ribosome recycling factor	0.017299628818	0.00168752402968	-0.0156121047883
+UniRef50_O28437	Putative ABC transporter ATP binding protein AF_1841	5.51470206823e-05	2.75118235993e-05	-2.7635197083e-05
+UniRef50_D4HE05		0.000838172009978	0.00786400359709	0.00702583158711
+UniRef50_A6LZK4		0.00146584990493	0.00179420528583	0.0003283553809
+UniRef50_UPI00029B0F13	NADH dehydrogenase subunit D	2.44720981649e-05	3.18146602639e-05	7.342562099e-06
+UniRef50_UPI00038304E6	hypothetical protein M271_24355	2.91594715021e-05	2.07671794396e-05	-8.3922920625e-06
+UniRef50_G3ZK67	Putative Mg chelatase like protein	7.96225869204e-06	1.28176587508e-05	4.85540005876e-06
+UniRef50_M4YVT1		7.85338395664e-05	0.000193017454369	0.000114483614803
+UniRef50_I0EPZ1	L lactate permease	0.000445879151223	0.00894735818745	0.00850147903623
+UniRef50_O34943	Putative tRNA binding protein YtpR	0.00931248616675	0.00339734594586	-0.00591514022089
+UniRef50_R9SJS2	Helicase	0.00253928950182	0.000580886733011	-0.00195840276881
+UniRef50_A4VHU4	Exonuclease SbcD	0.000647880867584	0.000210940503716	-0.000436940363868
+UniRef50_A5UM89	Adhesin like protein	0.00284270224698	0.000516472711475	-0.00232622953551
+UniRef50_Q9HWB8	Nuclease SbcCD subunit C	0.00055271194294	0.000158548466208	-0.000394163476732
+UniRef50_A3PFK8		0.00111792077592	0.000335352827567	-0.000782567948353
+UniRef50_UPI00047ACA41	hypothetical protein	4.5889840075e-06	6.59848345859e-06	2.00949945109e-06
+UniRef50_E9B5X1		7.95313633543e-07	5.73397255617e-06	4.93865892263e-06
+UniRef50_S6PZF6	Sulfur transfer complex subunit TusD	0.000124611848461	0.000198890983614	7.4279135153e-05
+UniRef50_UPI00046865DF	hypothetical protein	2.07261629439e-05	1.36076070638e-05	-7.1185558801e-06
+UniRef50_W0YVS4	Respiratory nitrate reductase subunit beta	2.83433996195e-05	0.000106351641518	7.80082418985e-05
+UniRef50_Q9HI37	Probable family 20 transposase	0.00267400994058	0.000885634619393	-0.00178837532119
+UniRef50_UPI0003F0B2FB	PREDICTED	1.86557023648e-06	1.37006703648e-05	1.18351001283e-05
+UniRef50_Q88J89	Ribose transport permease protein, putative	0.000676950966375	0.000856233185307	0.000179282218932
+UniRef50_P43531	Inner membrane transport protein YnfM	0.00362628754461	0.000619785889069	-0.00300650165554
+UniRef50_UPI00027FC17F		1.05325272845e-05	0.000233585255724	0.000223052728439
+UniRef50_G1XXP0	Transposase	0.000417486879282	0.00022276676701	-0.000194720112272
+UniRef50_UPI000471C1F1	hypothetical protein, partial	1.20853927633e-05	7.84337968328e-06	-4.24201308002e-06
+UniRef50_M9VD06	UvrD REP helicase	0.000114025437615	0.00527992133776	0.00516589590014
+UniRef50_A5UJE9	Predicted ATPase	0.00230159850064	0.00161060692165	-0.00069099157899
+UniRef50_Q2N696		0.000105360291355	0.000643522441542	0.000538162150187
+UniRef50_F0KNV9	Acyl CoA dehydrogenase	0.000229834539741	0.00681535197805	0.00658551743831
+UniRef50_UPI0004736CBD	membrane protein, partial	0.00013592247715	0.000226640074328	9.0717597178e-05
+UniRef50_U3SV04		0.00322349338654	0.00221209138337	-0.00101140200317
+UniRef50_C2ESX2		0.000399100578701	0.000236470547981	-0.00016263003072
+UniRef50_C3BKL0	ABC transporter	0.00787893729103	0.000727865306427	-0.0071510719846
+UniRef50_O27283	Fibrillarin like rRNA tRNA 2 O methyltransferase	0.00136328801208	0.000289526181564	-0.00107376183052
+UniRef50_W0EAD6	HAD family hydrolase	0.000434842847951	0.000404543431768	-3.0299416183e-05
+UniRef50_UPI0004710EDE	hypothetical protein	1.90475012029e-05	7.38127436134e-05	5.47652424105e-05
+UniRef50_N5R5Q8		0.000373748503814	0.000615243135819	0.000241494632005
+UniRef50_Q3BRW8	1 deoxy D xylulose 5 phosphate synthase	0.000876105585201	0.00440606900191	0.00352996341671
+UniRef50_UPI000369DDA4	hypothetical protein	1.30381858997e-05	4.86985554716e-06	-8.16833035254e-06
+UniRef50_F7YLR6		1.3010858115e-05	9.61388285439e-05	8.31279704289e-05
+UniRef50_U3SVV6	2  3 dephospho CoA	0.0111368347657	0.00117940697512	-0.00995742779058
+UniRef50_E3EMN0	Oxidoreductase, aldo keto reductase family	0.000285717979776	0.00447078397209	0.00418506599231
+UniRef50_UPI0003B63C22	magnesium chelatase	9.85956391135e-06	2.73759937854e-05	1.7516429874e-05
+UniRef50_X5EKC8	Ferric alcaligin siderophore receptor	7.75656141421e-05	0.003833703957	0.00375613834286
+UniRef50_P0AGA8	Transcriptional regulatory protein UhpA	0.00179373257937	0.00339772099241	0.00160398841304
+UniRef50_E4D778		6.46679036737e-05	0.00132490597001	0.00126023806634
+UniRef50_R7IGH5		2.45494199713e-05	8.36761924367e-05	5.91267724654e-05
+UniRef50_Q9RSP4		0.00054874375358	0.0484260994899	0.0478773557363
+UniRef50_UPI0001BF71FE	hypothetical protein SMAC_09973	5.48887263285e-05	5.034278494e-05	-4.5459413885e-06
+UniRef50_A7X4U4	ATP synthase gamma chain	0.0193777626299	0.00307049177465	-0.0163072708553
+UniRef50_Q6A674		0.000462227741456	0.0103961208688	0.00993389312734
+UniRef50_P77619	UPF0214 protein YfeW	0.0027173400256	0.00065056967571	-0.00206677034989
+UniRef50_P32134		0.00408290859028	0.000604921056402	-0.00347798753388
+UniRef50_C1KWD9	Bifunctional protein PyrR	0.00148652291857	0.00511312006677	0.0036265971482
+UniRef50_F0KEU9		0.000881739632676	0.00621446563328	0.0053327260006
+UniRef50_P18185	Carbamoyl phosphate synthase arginine specific large chain	1.73131198462e-05	1.20900412456e-05	-5.2230786006e-06
+UniRef50_Q4UYN4	NAD NADP dependent betaine aldehyde dehydrogenase	0.00163439717145	0.000472835792305	-0.00116156137914
+UniRef50_P32139		0.00194063410902	0.00094917395303	-0.00099146015599
+UniRef50_UPI0004713D39	phenylacetic acid degradation protein	1.68709211814e-05	3.23779767256e-05	1.55070555442e-05
+UniRef50_J0BXE7	Plasmid pRiA4b ORF 3 like protein	0.000645506213359	0.000129501792169	-0.00051600442119
+UniRef50_Q3JLT3	DGPF domain protein	4.15271819029e-05	2.75652923013e-05	-1.39618896016e-05
+UniRef50_G7MBY5	ABC transporter related protein	0.000525683569173	0.00104941685076	0.000523733281587
+UniRef50_N4Y922	Phosphatidylglycerol lysyltransferase	0.00283523710223	0.000777707978657	-0.00205752912357
+UniRef50_G7SA54	Phosphodiesterase, MJ0936 family	0.0016571318731	0.00726608207777	0.00560895020467
+UniRef50_H8GT24	Transpeptidase transglycosylase component	3.95549412039e-05	0.026598505383	0.0265589504418
+UniRef50_UPI0004761F50	iron ABC transporter ATP binding protein	2.55081907644e-05	2.48588890709e-05	-6.493016935e-07
+UniRef50_Q0BVN0	Chorismate synthase	9.12599145581e-06	5.35548258598e-05	4.4428834404e-05
+UniRef50_Q9K411		4.62370076349e-06	0.000567264472049	0.000562640771286
+UniRef50_F2TZ40		3.26364463138e-05	1.04767823075e-05	-2.21596640063e-05
+UniRef50_B7I864	TonB dependent receptor	0.000164949447163	0.00764567868927	0.00748072924211
+UniRef50_C5N344		0.0103244218326	0.00194914795886	-0.00837527387374
+UniRef50_UPI00046610C2	sugar ABC transporter ATP binding protein	1.75617902777e-05	5.44454279931e-05	3.68836377154e-05
+UniRef50_C5N340		0.0118924899102	0.00506579563768	-0.00682669427252
+UniRef50_UPI00037883B0	hypothetical protein, partial	1.34787958167e-05	2.54784673162e-05	1.19996714995e-05
+UniRef50_P0AF43		0.00291307960366	0.000545657673805	-0.00236742192986
+UniRef50_Q35826	Cytochrome c oxidase subunit 3 	1.8949671013e-05	5.54568853989e-05	3.65072143859e-05
+UniRef50_T9JSA5	DNA binding transcriptional activator	0.00207845350801	0.0005106351326	-0.00156781837541
+UniRef50_K2KB78	Chemotactic signal response protein	0.000137868744676	7.64906984008e-05	-6.13780462752e-05
+UniRef50_Q47KH4	Phosphoribosylaminoimidazole succinocarboxamide synthase	2.07017677382e-05	0.000680401561879	0.000659699794141
+UniRef50_G8PRB6	TRAP dicarboxylate transporter, DctM subunit	6.00443695741e-06	5.04354526996e-06	-9.6089168745e-07
+UniRef50_Q3IUZ1	Phytochrome sensor diguanylate cyclase phosphodiesterase	0.0260999277124	0.00516613635614	-0.0209337913563
+UniRef50_I0JA88		0.00953694581898	0.00200871636663	-0.00752822945235
+UniRef50_Q5XL59	Hypothetical 18.9 kDa protein	0.000179476162812	0.00334402783705	0.00316455167424
+UniRef50_A7GHG0	CBS domain protein	0.00107227235935	0.000298802737126	-0.000773469622224
+UniRef50_A4WNP3		0.000297398942163	0.000565773370924	0.000268374428761
+UniRef50_R8ZFM2	Two component sensor	0.000120859975083	0.000658107476811	0.000537247501728
+UniRef50_Q9RU62	Transcription repair coupling factor	7.86217276021e-05	0.0348094669499	0.0347308452223
+UniRef50_I3WYQ6		0.000591048949949	6.16323989078e-05	-0.000529416551041
+UniRef50_H1GBP2	LPXTG motif protein cell wall anchor domain protein	3.05704068959e-06	8.1796823781e-06	5.12264168851e-06
+UniRef50_UPI000262662B	hypothetical protein	2.33110112305e-05	2.25728317477e-05	-7.381794828e-07
+UniRef50_B7Z2X9	Gamma enolase	4.38507394313e-06	5.3594191671e-05	4.92091177279e-05
+UniRef50_UPI00029A8E8E	type I restriction enzyme EcoKI subunit R	2.43580403619e-05	7.32568557903e-05	4.88988154284e-05
+UniRef50_UPI0003C15755		5.77138047469e-05	9.5558275409e-06	-4.8157977206e-05
+UniRef50_H9K7J8		5.23055377949e-05	8.22754570197e-05	2.99699192248e-05
+UniRef50_P52228	Thioredoxin C 3	0.000721310806725	0.00478031232762	0.00405900152089
+UniRef50_Q3J3B6		0.0112881011445	0.00330605728405	-0.00798204386045
+UniRef50_D4HE60	Release factor glutamine methyltransferase	0.000272225472725	0.00561082195645	0.00533859648373
+UniRef50_Q2YZ40		0.0299067150563	0.00353138383334	-0.026375331223
+UniRef50_UPI0003B3D851	single stranded DNA binding protein	2.3110364842e-05	0.00122673890481	0.00120362853997
+UniRef50_Q8Z8E5	Putative potassium transporting ATPase B chain	0.000391929844405	0.00200251254745	0.00161058270304
+UniRef50_Q9ZKX5	Catalase	2.06534462778e-05	0.00425760537813	0.00423695193185
+UniRef50_Q9PIN2	Zinc transporter ZupT	0.0057333945718	0.000496330596971	-0.00523706397483
+UniRef50_D3DZ70	Methanogenesis marker protein 17	0.00351478486697	0.00108846967428	-0.00242631519269
+UniRef50_UPI000299EEED	hypothetical protein, partial	3.61599541858e-05	6.70594975514e-05	3.08995433656e-05
+UniRef50_Q2SDW0	Nucleoside diphosphate kinase	0.0233934192389	0.0334221804605	0.0100287612216
+UniRef50_Q6F945		0.000133387275209	0.00707230063586	0.00693891336065
+UniRef50_E8U988	Acetylornithine acetyl lysine aminotransferase	0.000358586488294	0.0438784058726	0.0435198193843
+UniRef50_F9YXA3	Succinate dehydrogenase  cytochrome b subunit, b558 family	0.000206276496643	0.00358859618098	0.00338231968434
+UniRef50_E3L9A9		1.52261947778e-05	0.000934832347121	0.000919606152343
+UniRef50_V4STF9	Ribosomal RNA small subunit methyltransferase E	8.52342509105e-05	4.16300354319e-05	-4.36042154786e-05
+UniRef50_S6AEF9		2.06407606422e-06	1.16355605131e-05	9.57148444888e-06
+UniRef50_F4A619	GTPase HflX	0.000685961470786	0.00252369536673	0.00183773389594
+UniRef50_T1Y9P7	UDP N acetylmuramoylalanyl D glutamate  2, 6 diaminopimelate ligase	0.0233279798183	0.00490515711121	-0.0184228227071
+UniRef50_B2HZE1	Enoyl CoA hydratase carnithine racemase	0.000181483648491	0.00557309594397	0.00539161229548
+UniRef50_I3US46	Major facilitator superfamily metabolite H symporter	0.000808792312943	0.00169209626092	0.000883303947977
+UniRef50_UPI00037E89DC	hypothetical protein	7.14083568516e-06	4.15666081368e-05	3.44257724516e-05
+UniRef50_A7FQL2	UPF0313 protein CLB_0243	0.000653346308239	0.000964183671603	0.000310837363364
+UniRef50_P75915	Chaperone protein YcdY	0.00942729514805	0.00214719755147	-0.00728009759658
+UniRef50_B6IPB9		0.000236411963307	0.000296207677396	5.9795714089e-05
+UniRef50_UPI00036011C5	hypothetical protein	3.16710447754e-05	2.66460758575e-05	-5.0249689179e-06
+UniRef50_S5CU75	Transposase like protein	0.00077852784729	0.0314762031902	0.0306976753429
+UniRef50_I6XPP6	Methylmalonyl CoA carboxyltransferase 5S subunit	0.000218373341773	0.00742929790072	0.00721092455895
+UniRef50_UPI0003B33B7C	DNA binding protein	8.99997087647e-05	4.42620591987e-05	-4.5737649566e-05
+UniRef50_UPI0003625CBC	hypothetical protein	4.23940390441e-06	5.516798263e-05	5.09285787256e-05
+UniRef50_A3PJ50	Binding protein dependent transport systems inner membrane component	0.00674855654504	0.000241732637264	-0.00650682390778
+UniRef50_C9SAM1	Ribosomal RNA processing protein	1.69805020269e-06	3.03420016623e-05	2.86439514596e-05
+UniRef50_UPI000368DEE4	hypothetical protein	0.000112694511577	0.00741567422137	0.00730297970979
+UniRef50_UPI00029B09D5	CRISPR associated protein Csn1	1.33650924617e-05	0.000133988849048	0.000120623756586
+UniRef50_Q7MWR7	CTP synthase	7.48871386247e-06	0.000145450787295	0.000137962073433
+UniRef50_T1XRQ5	Teichoic acid translocation ATP binding protein, putative	0.0101175444633	0.00166715129561	-0.00845039316769
+UniRef50_I7ENI8	Thioesterase like protein	0.00577768651925	0.0012423760577	-0.00453531046155
+UniRef50_A0A021DBD0	D isomer specific 2 hydroxyacid dehydrogenase	0.00113023091057	0.00220943414517	0.0010792032346
+UniRef50_UPI00046F8C7A	membrane protein	0.000111345038176	0.000167883185584	5.6538147408e-05
+UniRef50_A5UNS3	Putative ATPase 	0.00220288974861	0.000515403077341	-0.00168748667127
+UniRef50_M9RKI3		0.000145922941448	0.000109442436054	-3.6480505394e-05
+UniRef50_T0C715	Thioesterase family protein	2.1844247618e-05	0.000778460223752	0.000756615976134
+UniRef50_D8JFV1		0.000296454965064	0.00352742596194	0.00323097099688
+UniRef50_Q5HQT4		0.0284274996944	0.00213090672396	-0.0262965929704
+UniRef50_UPI0004412F07	mitochondrial ribosomal protein subunit L2	2.3885510543e-05	0.000103551053693	7.966554315e-05
+UniRef50_P37344	Psp operon transcriptional activator	0.00294006308441	0.000771038796131	-0.00216902428828
+UniRef50_C6CXV0	D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein	0.0015222163604	0.000756144430105	-0.000766071930295
+UniRef50_Q8CQM7		0.0228228880897	0.00243614402236	-0.0203867440673
+UniRef50_A1SM80	Biotin synthase	5.03400278712e-06	0.000135953500361	0.000130919497574
+UniRef50_A5UKE2		0.0065112586955	0.000445201063114	-0.00606605763239
+UniRef50_A6LZ61	Aldose 1 epimerase	0.000116989459351	0.00201414771985	0.0018971582605
+UniRef50_UPI0003B60CB5	hypothetical protein	2.83494797071e-06	1.29827551119e-05	1.01478071412e-05
+UniRef50_C7Q9W5		4.4257978224e-06	0.000907632254461	0.000903206456639
+UniRef50_UPI00046D8C08	hypothetical protein	7.53665221244e-06	3.08935621506e-05	2.33569099382e-05
+UniRef50_UPI000382B4D1	hypothetical protein	8.84253717243e-05	2.19581178471e-05	-6.64672538772e-05
+UniRef50_Q7NZP2	Sigma B regulator protein	2.01521892731e-05	0.00351410074234	0.00349394855307
+UniRef50_Q6AAT0	Cysteine  tRNA ligase	1.70699117237e-05	0.009131389373	0.00911431946128
+UniRef50_G7LXC6	Lytic transglycosylase catalytic	0.000199378826523	0.00119699234837	0.000997613521847
+UniRef50_E9KNQ0	Truncated transposase	0.000658405794513	0.00201718554824	0.00135877975373
+UniRef50_UPI000467240F	hypothetical protein	6.34126140502e-06	6.96436251715e-06	6.2310111213e-07
+UniRef50_Q48677	Glutamyl aminopeptidase	0.00468701067804	0.00706323293218	0.00237622225414
+UniRef50_UPI000474A2DB	MarR family transcriptional regulator	0.000752274713467	0.000387300634803	-0.000364974078664
+UniRef50_A6M168	Diguanylate cyclase	0.000134177484187	0.00207813613061	0.00194395864642
+UniRef50_O27596	Tungsten formylmethanofuran dehydrogenase, subunit H	0.00704285182393	0.000509166733097	-0.00653368509083
+UniRef50_F0YIK7	Expressed protein 	4.00260814062e-05	2.95200521756e-05	-1.05060292306e-05
+UniRef50_UPI00032995A5		1.26546153199e-05	6.82935670758e-06	-5.82525861232e-06
+UniRef50_Q9RXU7	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.000171404197684	0.0221185688458	0.0219471646481
+UniRef50_E8U9D7	Nicotinate phosphoribosyltransferase	0.000163710997586	0.00667309409105	0.00650938309346
+UniRef50_UPI00046D1D34	hypothetical protein	1.40616078349e-05	7.59358288535e-05	6.18742210186e-05
+UniRef50_A5W7R4	Regulatory inactivation of DnaA Hda protein	0.00102080861635	0.000255685459043	-0.000765123157307
+UniRef50_UPI00047D437C	cobalamin adenosyltransferase	1.04713333894e-05	2.27572033356e-05	1.22858699462e-05
+UniRef50_A3PR78	Peptidase S15	0.00580205829008	0.00207092641532	-0.00373113187476
+UniRef50_A9MUH4		0.000122576233285	0.000261458220516	0.000138881987231
+UniRef50_B7V7M2	Cysteine synthase	0.00123382869724	0.000303407573826	-0.000930421123414
+UniRef50_P76113	NADPH dependent curcumin reductase	0.00935060730476	0.00323517155805	-0.00611543574671
+UniRef50_L8ND35	Sigma 54 dependent transcriptional regulator	0.00078768567052	0.000740862020711	-4.6823649809e-05
+UniRef50_UPI00041D3C43	chromosomal replication initiation protein	4.45101593999e-06	5.31462451219e-06	8.636085722e-07
+UniRef50_B9TKF4		0.000463161329974	0.000961149009716	0.000497987679742
+UniRef50_K5DHJ7		0.000189680917929	5.71981571475e-05	-0.000132482760781
+UniRef50_UPI00037794A5	hypothetical protein	0.000331128060398	0.00386775464603	0.00353662658563
+UniRef50_G7UA09	Glycosyl hydrolase family 38 N terminal domain protein	3.62850998621e-05	0.00689659070384	0.00686030560398
+UniRef50_D7HX96	Acetate permease ActP 	0.00214291167934	0.000943600812013	-0.00119931086733
+UniRef50_G8LP59	YdiK	0.000324415046484	0.000171695758841	-0.000152719287643
+UniRef50_UPI000255BF67	heptaprenyl diphosphate synthase subunit II	2.90601839633e-05	4.37765018523e-05	1.4716317889e-05
+UniRef50_UPI0002DAB67A	hypothetical protein	4.51598789486e-05	1.79975945704e-05	-2.71622843782e-05
+UniRef50_V5NNB3	Iron regulated outer membrane protein FrbP_1	0.000109144223542	0.00239652893878	0.00228738471524
+UniRef50_Q0SPS1	DHH family protein	0.000307896119172	0.000761014072865	0.000453117953693
+UniRef50_UPI00047BD1F1	methionine gamma lyase	2.59735525887e-05	7.23317633179e-06	-1.87403762569e-05
+UniRef50_F9FAZ9	ATP dependent Clp protease proteolytic subunit	0.000254484936301	0.000889409481707	0.000634924545406
+UniRef50_A8LSJ7	Fe S metabolism associated SufE	0.000794794355656	7.1323222442e-05	-0.000723471133214
+UniRef50_A5UMA7		0.0017447023499	0.00202861426839	0.00028391191849
+UniRef50_UPI0003628360	hypothetical protein	4.91017747414e-05	1.33407276149e-05	-3.57610471265e-05
+UniRef50_A5UL43	Oligosaccharyl transferase, STT3 subunit	0.00373692515796	0.00112732882079	-0.00260959633717
+UniRef50_UPI000470DB6F	hypothetical protein, partial	7.87580963672e-06	1.63779145671e-05	8.50210493038e-06
+UniRef50_E3D3R3	LPS biosynthesis protein related protein	0.000103044400964	0.00214631090103	0.00204326650007
+UniRef50_A6M109	Auxin Efflux Carrier	0.00012653161638	0.00105118232833	0.00092465071195
+UniRef50_Q03JU0	Transposase	0.0279697671823	0.0140827310523	-0.01388703613
+UniRef50_K6X7D8		0.000273979409355	0.000104865045787	-0.000169114363568
+UniRef50_D2NRJ6	Molybdopterin guanine dinucleotide biosynthesis protein A	4.18064878025e-06	1.82094986351e-05	1.40288498549e-05
+UniRef50_D4GB36	FeS assembly ATPase SufC	0.000758052080383	0.000867666143222	0.000109614062839
+UniRef50_E6NPZ4	Methyl accepting chemotaxis protein	0.000138388326188	0.00560959451001	0.00547120618382
+UniRef50_Q56954	Chelated iron transport system membrane protein YfeC	0.00466394107148	0.00116953026281	-0.00349441080867
+UniRef50_P24216	Flagellar hook associated protein 2	0.00217127191781	0.00202180037365	-0.00014947154416
+UniRef50_X5EK07		6.17564031299e-05	0.000201999711568	0.000140243308438
+UniRef50_A0A011NP07	4 alpha glucanotransferase	1.81349195652e-05	0.000776063703528	0.000757928783963
+UniRef50_P45682	Lipoprotein NlpD LppB homolog	0.00060916906941	0.00041601110431	-0.0001931579651
+UniRef50_I6T6E7		0.00476411949327	0.00175296451659	-0.00301115497668
+UniRef50_G7I860	NADH ubiquinone oxidoreductase chain	3.92025421638e-05	0.000115111400054	7.59088578902e-05
+UniRef50_O00217	NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial	7.6099688775e-05	1.0561909728e-05	-6.5537779047e-05
+UniRef50_U3T764		0.000442366393186	0.00166037704991	0.00121801065672
+UniRef50_Q6VRN6	Cag17	0.000258257232969	0.00153093308729	0.00127267585432
+UniRef50_A6TBU8	L rhamnonate dehydratase	0.00222307400377	0.00016528920067	-0.0020577848031
+UniRef50_UPI0003B65FB6	MULTISPECIES	1.45228010701e-05	3.04929786187e-05	1.59701775486e-05
+UniRef50_UPI00042B11A5	Urease isoform 4	1.13374397336e-05	2.37308179848e-05	1.23933782512e-05
+UniRef50_A6M2F4	Response regulator receiver protein	0.000174430559477	0.00161400728783	0.00143957672835
+UniRef50_Q3IV75	RES domain containing protein	0.0178043113312	0.00244403832052	-0.0153602730107
+UniRef50_A3PRF6	D amino acid dehydrogenase small subunit	0.000604843248227	0.00131841646354	0.000713573215313
+UniRef50_C6ST78	Serine protease	0.00592238070429	0.00519222251743	-0.00073015818686
+UniRef50_A3LGR5	Hypothetical 	0.000155380294453	6.85413025425e-05	-8.68389919105e-05
+UniRef50_F9V7S5	Metallo beta lactamase superfamily protein	0.00569590026432	0.00152106934186	-0.00417483092246
+UniRef50_A6M2T3	Phosphotransferase system, EIIC	0.000334460340093	0.00262156722985	0.00228710688976
+UniRef50_UPI0002B42FAD	PREDICTED	0.000422558942747	3.57040782652e-05	-0.000386854864482
+UniRef50_A3PXZ4	Uridylate kinase	0.000341640384292	0.00258387222873	0.00224223184444
+UniRef50_UPI0004654176	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000247244038159	0.000414910713246	0.000167666675087
+UniRef50_Q9RXQ2	Pyruvate dehydrogenase E1 component	4.43579305384e-05	0.0448182921925	0.044773934262
+UniRef50_E6SJV1	TRAP transporter solute receptor, TAXI family	1.22505073205e-05	1.00790741798e-05	-2.1714331407e-06
+UniRef50_UPI0003D0B25A	PREDICTED	2.88208036847e-05	5.24802227491e-05	2.36594190644e-05
+UniRef50_A7HWY8		3.02691333502e-05	3.8924509416e-05	8.6553760658e-06
+UniRef50_D3V7P4	Multidrug resistance protein MdtC	0.00193114069126	0.000409765965806	-0.00152137472545
+UniRef50_Q57251	Putative L lactate permease	0.000305670500108	0.00282951903646	0.00252384853635
+UniRef50_UPI0003B7A308	MarR family transcriptional regulator	1.33705663331e-05	2.29161791458e-05	9.5456128127e-06
+UniRef50_A9WNC8	ATP synthase subunit beta	1.54715557594e-05	0.011927164214	0.0119116926582
+UniRef50_UPI0003B39EAE	riboflavin synthase subunit alpha	7.36331468547e-06	2.41756831109e-05	1.68123684254e-05
+UniRef50_UPI000414CEF0	ATP dependent DNA helicase PcrA	1.94945348971e-05	9.74496669216e-06	-9.74956820494e-06
+UniRef50_A1AZE4	Nucleoside ABC transporter membrane protein	0.00335986080682	0.000801525340307	-0.00255833546651
+UniRef50_Q8TV83	Imidazole glycerol phosphate synthase subunit HisH	2.31354705405e-05	9.2068392276e-06	-1.39286313129e-05
+UniRef50_UPI0003B6B799	diguanylate cyclase	8.50124020438e-06	7.37682655156e-06	-1.12441365282e-06
+UniRef50_Q8DYL9	Glycosyl transferase, family 8	0.000431772176499	0.000147290127271	-0.000284482049228
+UniRef50_E9CIL8		5.6379384589e-05	7.59494312532e-05	1.95700466642e-05
+UniRef50_P10367	Histidine biosynthesis bifunctional protein HisIE	0.00156204051043	0.00243912204065	0.00087708153022
+UniRef50_UPI0003714C23	hypothetical protein	3.9018741801e-05	7.49156200146e-05	3.58968782136e-05
+UniRef50_UPI0003C73FC0	phosphonate ABC transporter	0.000149258751354	4.33446972257e-05	-0.000105914054128
+UniRef50_C1DGV0	Glycosyl transferase, group 1	9.98640182185e-05	0.000156252224977	5.63882067585e-05
+UniRef50_UPI000375CFC4	hypothetical protein	0.000145747741208	3.65044550793e-05	-0.000109243286129
+UniRef50_B7V1T0	Urease subunit beta	7.74442616791e-05	3.83477205946e-05	-3.90965410845e-05
+UniRef50_O34742	Glycine betaine carnitine choline transport system permease protein OpuCD	0.0321664789188	0.0138296580657	-0.0183368208531
+UniRef50_UPI000369F7C5	hypothetical protein	4.51016515952e-06	1.31523064377e-05	8.64214127818e-06
+UniRef50_Q39BJ9		0.000148169841899	2.29293596738e-05	-0.000125240482225
+UniRef50_D0DDW6	Replication protein C	0.000225084197754	6.41021940809e-05	-0.000160982003673
+UniRef50_D6SCB4	ABC transporter, ATP binding protein	0.0202443875171	0.00580152135911	-0.014442866158
+UniRef50_X6K2H2		0.000245083691684	5.51731384167e-05	-0.000189910553267
+UniRef50_X0W523	Marine sediment metagenome DNA, contig	8.18740114287e-06	9.79476848199e-06	1.60736733912e-06
+UniRef50_P31679	Putative metabolite transport protein YaaU	0.00241754832124	0.00095388903908	-0.00146365928216
+UniRef50_V9GEY6	Selenophosphate dependent tRNA 2 selenouridine synthase	3.06716317192e-05	2.45371921675e-05	-6.1344395517e-06
+UniRef50_A0A023SIR8	rRNA methyltransferase	0.00745848439018	0.00467557966167	-0.00278290472851
+UniRef50_UPI00028947D1	hypothetical protein	3.85401552572e-05	1.59736840924e-05	-2.25664711648e-05
+UniRef50_UPI0002F02B73	5 oxopent 3 ene 1,2,5 tricarboxylate decarboxylase	9.82375172877e-06	2.41477877312e-05	1.43240360024e-05
+UniRef50_A9BDW2	Na+ melibiose symporter	2.90166973169e-05	4.29910146347e-06	-2.47175958534e-05
+UniRef50_Q9PDT5	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.00969962373736	0.00348631515657	-0.00621330858079
+UniRef50_Q9UQ39	RNA binding protein 	2.24666261322e-06	6.21310444839e-05	5.98843818707e-05
+UniRef50_Q8SDK3	Phi PVL orfs 18 19 like protein	0.0211207095346	0.00399663406174	-0.0171240754729
+UniRef50_A6LR61	Diguanylate cyclase	0.000420747673314	0.000842556314044	0.00042180864073
+UniRef50_A5CD22	UDP N acetylmuramate  L alanine ligase	1.12271216127e-05	5.2136403565e-06	-6.0134812562e-06
+UniRef50_UPI000374D78C	hypothetical protein	1.4659643565e-05	1.02641043653e-05	-4.3955391997e-06
+UniRef50_L5S2T2		2.9257635869e-05	0.00053693946399	0.000507681828121
+UniRef50_A5UN24	Adhesin like protein	0.00270584962373	0.000854616689923	-0.00185123293381
+UniRef50_UPI0003EB198B	lactoylglutathione lyase, partial	0.000383168756012	0.000183207817571	-0.000199960938441
+UniRef50_D4YPZ1		4.62201281565e-05	0.000151833781585	0.000105613653428
+UniRef50_UPI000381F0C9	resolvase	5.45648423422e-05	2.78080083112e-05	-2.6756834031e-05
+UniRef50_A9GRS6		5.34334130212e-06	0.000321385808935	0.000316042467633
+UniRef50_Q4QKB5	Dihydroorotate dehydrogenase 	9.9026317861e-06	1.66783081622e-05	6.7756763761e-06
+UniRef50_UPI00042C50B5	PREDICTED	2.55460648813e-05	0.000121628143044	9.60820781627e-05
+UniRef50_UPI00041CB2A5	MerR family transcriptional regulator	0.000237609763645	3.23594432694e-05	-0.000205250320376
+UniRef50_B6YRL9	Dihydroorotate dehydrogenase B ), catalytic subunit	0.000449005832347	0.00118517636385	0.000736170531503
+UniRef50_Q0VMD0	Biotin synthase	0.00217654548435	0.0019128712217	-0.00026367426265
+UniRef50_UPI000479EB6C	phosphohydrolase	4.3341075591e-06	1.32591091416e-05	8.9250015825e-06
+UniRef50_W4UE45	Hypothetical membrane protein	4.50633543808e-05	0.000258453622052	0.000213390267671
+UniRef50_Q1C165	Phosphopentomutase	0.00297725561472	0.000411712695375	-0.00256554291934
+UniRef50_I6XSN2	Peptidase, M50 family	0.00025927090726	0.00509547304371	0.00483620213645
+UniRef50_W0EW28	Fe S metabolism protein SufE	3.56118085066e-05	0.000991079264076	0.000955467455569
+UniRef50_UPI00047DC7BF	hypothetical protein	5.22788846945e-06	1.11036602501e-05	5.87577178065e-06
+UniRef50_UPI00037BA2E6	hypothetical protein	5.75506280517e-06	1.24632472179e-05	6.70818441273e-06
+UniRef50_B0LU82	Putative plasmid transfer protein	1.19565724987e-05	2.80863970495e-05	1.61298245508e-05
+UniRef50_R8X1X2		0.00140563411964	0.000235322099157	-0.00117031202048
+UniRef50_UPI000299FFB6	50S ribosomal protein L6	1.04711803038e-05	0.000358799137379	0.000348327957075
+UniRef50_UPI00036AB26C	hypothetical protein	3.68578667178e-05	1.76241611038e-05	-1.9233705614e-05
+UniRef50_A4STH4	Anaerobic nitric oxide reductase flavorubredoxin	0.000961559888062	0.00030097559384	-0.000660584294222
+UniRef50_F2MTI0	3 dehydroquinate synthase	0.00565285676654	0.00381054422471	-0.00184231254183
+UniRef50_Q6L8K7	Acetyl CoA acetyltransferase	1.14451936074e-05	9.38261325791e-05	8.23809389717e-05
+UniRef50_UPI00047E7907	membrane protein	7.78875803448e-06	1.22268826552e-05	4.43812462072e-06
+UniRef50_F6BN92	Tetracycline transcriptional regulator YcdC domain containing protein	0.0148694259993	0.00321942413994	-0.0116500018594
+UniRef50_P50096	Inosine 5 monophosphate dehydrogenase 1	2.22252970972e-05	9.593921748e-06	-1.26313753492e-05
+UniRef50_UPI0003B755F7	integrase, partial	0.000302300534386	1.54252667425e-05	-0.000286875267643
+UniRef50_M1N659	Diguanylate phosphodiesterase	0.000162011154012	0.000297050328755	0.000135039174743
+UniRef50_P0AEA4	Curli production assembly transport component CsgG	0.00299335305764	0.000851875111142	-0.0021414779465
+UniRef50_Q9RXZ7		9.01622545675e-05	0.0149264844492	0.0148363221946
+UniRef50_A0A024E690		8.80749289374e-05	1.1709621389e-05	-7.63653075484e-05
+UniRef50_Q16740	ATP dependent Clp protease proteolytic subunit, mitochondrial	5.74951822303e-06	6.30203818348e-05	5.72708636118e-05
+UniRef50_UPI00046321A5	hypothetical protein	4.55273926335e-05	1.1131607706e-05	-3.43957849275e-05
+UniRef50_E8NEK5		1.10318091125e-05	2.11398089243e-05	1.01079998118e-05
+UniRef50_A8NPH0		8.89217692499e-06	7.66275507963e-06	-1.22942184536e-06
+UniRef50_UPI00041CFDCE	hypothetical protein	7.79283912875e-05	6.69724403366e-05	-1.09559509509e-05
+UniRef50_Q2GK85	Malate dehydrogenase	1.90186025744e-05	1.67353528245e-05	-2.2832497499e-06
+UniRef50_Q4TCA6	Chromosome 1 SCAF7036, whole genome shotgun sequence. 	9.36006871689e-06	3.40699686329e-05	2.4709899916e-05
+UniRef50_Q9ZL74	Molybdenum cofactor guanylyltransferase	0.000203313818048	0.00305284140119	0.00284952758314
+UniRef50_Q6G5Z1	Putative ABC transporter ATP binding protein SAS2569	0.0120344093833	0.00643679198147	-0.00559761740183
+UniRef50_Q9RV79	tRNA 2 methylthio N dimethylallyladenosine synthase	0.000100484291618	0.0370931619179	0.0369926776263
+UniRef50_O82392	Phosphomethylpyrimidine synthase, chloroplastic	8.57273252495e-05	0.0350158556472	0.034930128322
+UniRef50_UPI0003C10FC0		1.78071968861e-05	6.56615753094e-06	-1.12410393552e-05
+UniRef50_M9S4J7		0.000331236656831	0.000561921379301	0.00023068472247
+UniRef50_Q5ZW64	Flagellar P ring protein	0.00358054901382	0.000938689870759	-0.00264185914306
+UniRef50_UPI000378C9B2	hypothetical protein	8.79989050976e-05	1.11661033964e-05	-7.68328017012e-05
+UniRef50_Q1CEX0	UPF0301 protein YPN_3133	0.00602198628879	1.50680740527e-05	-0.00600691821474
+UniRef50_J9YRU2		0.000853669101669	0.00026565220857	-0.000588016893099
+UniRef50_U5DDJ2	TRAP transporter solute receptor, TAXI family	6.7085528789e-06	4.46587138785e-05	3.79501609996e-05
+UniRef50_K2FX44		1.04065324232e-05	1.92631149696e-05	8.8565825464e-06
+UniRef50_J2LA76		0.000624867057649	0.000161976962407	-0.000462890095242
+UniRef50_UPI00046889D2	hypothetical protein	1.1641202422e-05	3.20591483159e-05	2.04179458939e-05
+UniRef50_UPI00022CA944	PREDICTED	3.4286044744e-06	5.38475288585e-06	1.95614841145e-06
+UniRef50_X7UD14	Protein dipZ	2.88991320424e-05	2.18035387061e-05	-7.0955933363e-06
+UniRef50_UPI00032895ED	PREDICTED	1.74716485148e-05	0.000120190595637	0.000102718947122
+UniRef50_UPI00037FC52E	hypothetical protein	3.86661336639e-05	1.47342387998e-05	-2.39318948641e-05
+UniRef50_A3CP60	Glycosyl transferase, putative	0.00428442162741	0.00142725195492	-0.00285716967249
+UniRef50_B7I7I0		0.000312833692416	0.019301652821	0.0189888191286
+UniRef50_A6LZA6	Histidine kinase	0.000129423767612	0.000614169981592	0.00048474621398
+UniRef50_UPI00046EE93F	hypothetical protein	7.11566646712e-05	1.55098193054e-05	-5.56468453658e-05
+UniRef50_P9WJQ4	Molybdopterin molybdenumtransferase 2	8.88466524069e-06	9.43675917654e-06	5.5209393585e-07
+UniRef50_F5M4L1		0.000567822872047	0.000391147953907	-0.00017667491814
+UniRef50_Q1GGT9	Phosphoribosyl AMP cyclohydrolase	1.52229105705e-05	6.03250440327e-05	4.51021334622e-05
+UniRef50_C3P5A0	Demethylmenaquinone methyltransferase	0.0203666966326	0.00295066781167	-0.0174160288209
+UniRef50_Q5ZI49	Ribose phosphate pyrophosphokinase 2	3.19824680549e-05	6.28074264308e-05	3.08249583759e-05
+UniRef50_A5UKS7	Transcriptional regulator, MarR family	0.00501779224744	0.00118830996847	-0.00382948227897
+UniRef50_UPI00046A6374	hypothetical protein	5.3870991382e-05	1.55306631778e-05	-3.83403282042e-05
+UniRef50_H7KDR0	Anaphase promoting complex, cyclosome, subunit 3 family protein	1.39140239876e-05	0.000249563412836	0.000235649388848
+UniRef50_F2E8Q7	Predicted protein 	1.53109943174e-05	2.36616231369e-05	8.3506288195e-06
+UniRef50_UPI00047AC4C6	hypothetical protein	2.85618335366e-05	7.11462876788e-05	4.25844541422e-05
+UniRef50_G2Z8U2		2.01781779603e-05	0.000673676653338	0.000653498475378
+UniRef50_Q12MN3	Putative phosphoenolpyruvate synthase regulatory protein	4.05184212668e-05	3.72121888164e-05	-3.3062324504e-06
+UniRef50_UPI0002FA2625	hypothetical protein	2.13524444971e-05	7.37194517195e-05	5.23670072224e-05
+UniRef50_F0I702		5.79265807114e-05	1.04018592072e-05	-4.75247215042e-05
+UniRef50_X1JCC9	Marine sediment metagenome DNA, contig	1.43157408247e-05	6.88027091407e-06	-7.43546991063e-06
+UniRef50_UPI0003609B11	hypothetical protein	3.00375648912e-05	0.000176018516112	0.000145980951221
+UniRef50_K2JK23		2.31465442468e-05	4.02520604098e-05	1.7105516163e-05
+UniRef50_Q6G930	Probable glycine dehydrogenase  subunit 1	0.0225153263841	0.00503067699706	-0.017484649387
+UniRef50_L0IML0	ABC type nitrate sulfonate bicarbonate transport system, periplasmic component	0.000452562708785	0.00275110471604	0.00229854200726
+UniRef50_A1IRX0		4.89225818179e-05	0.00105554653855	0.00100662395673
+UniRef50_UPI00036605EC	hypothetical protein	0.000630043928863	0.000469643104098	-0.000160400824765
+UniRef50_UPI00047AF6CE	restriction endonuclease	1.81302153688e-06	0.00120768417974	0.0012058711582
+UniRef50_Q6N535	ATP dependent Clp protease adapter protein ClpS 2	0.000353893114548	0.0151174027659	0.0147635096514
+UniRef50_Q9LPW0	Glyceraldehyde 3 phosphate dehydrogenase GAPA2, chloroplastic	6.45801536053e-05	2.47912334726e-05	-3.97889201327e-05
+UniRef50_Q6AFK7	3 isopropylmalate dehydratase large subunit	0.0316638872649	0.0108507885029	-0.020813098762
+UniRef50_Q6AJF8	3 oxoacyl [acyl carrier protein] synthase 3	2.10522133563e-05	7.25092985071e-06	-1.38012835056e-05
+UniRef50_C7JHV1	Transposase	0.000266064644591	0.000113716654793	-0.000152347989798
+UniRef50_G7ZR43		0.015951367075	0.00581044614024	-0.0101409209348
+UniRef50_B1AJD3	Glycine  tRNA ligase	0.0179432179669	0.00751718549069	-0.0104260324762
+UniRef50_UPI0003C104A0		1.45480708843e-05	1.76372454175e-06	-1.27843463425e-05
+UniRef50_B2TPY0	Vancomycin B type resistance protein VanW	0.000275328181515	0.000948459646978	0.000673131465463
+UniRef50_Q9K0I2	Phosphoenolpyruvate synthase	0.0030990344491	0.0149928482711	0.011893813822
+UniRef50_G7U8X0	Drug resistance MFS transporter, drug	0.000169349946022	0.00530116903656	0.00513181909054
+UniRef50_E6PX09		0.000178820670491	0.000123541442614	-5.5279227877e-05
+UniRef50_UPI000359A0D1	PREDICTED	2.33737811333e-06	4.1325560867e-05	3.89881827537e-05
+UniRef50_UPI0003698208	hypothetical protein	1.66806906883e-06	5.5997762392e-06	3.93170717037e-06
+UniRef50_UPI0003B69E18	membrane protein	4.70523733846e-05	5.60016793901e-05	8.9493060055e-06
+UniRef50_UPI0003B51B40	protein export membrane protein SecD, partial	3.65251948803e-06	1.09341001003e-05	7.28158061227e-06
+UniRef50_Q893Q5	4 methyl 5 thiazole monophosphate biosynthesis enzyme	0.000723380590955	0.000528925442146	-0.000194455148809
+UniRef50_B7I6U8		0.000213268920259	0.0102762913914	0.0100630224711
+UniRef50_Q097C2		0.000141210881602	4.85284312551e-05	-9.26824503469e-05
+UniRef50_P0A3Q0	4 alpha glucanotransferase	0.00545378413218	0.00602578427191	0.00057200013973
+UniRef50_C6SP30		0.00382213845986	0.00262027920066	-0.0012018592592
+UniRef50_Q09AF1	Ribose transport system permease protein RbsC	0.00739949871433	0.00122845112877	-0.00617104758556
+UniRef50_K7SFB2		0.000118234072579	0.000229928120412	0.000111694047833
+UniRef50_UPI00028877F3	peptide ABC transporter permease	2.46183002323e-06	4.02927422823e-05	3.78309122591e-05
+UniRef50_B1J061	UPF0178 protein YaiI	0.00282646384514	2.52516943684e-05	-0.00280121215077
+UniRef50_UPI00046A4EAB	membrane protein	2.62448552719e-06	3.97437744562e-06	1.34989191843e-06
+UniRef50_P0ACD8	Hydrogenase 1 large chain	0.00180271543214	0.000489111128395	-0.00131360430374
+UniRef50_V7ZPF8		0.000261213588882	9.16344514465e-05	-0.000169579137436
+UniRef50_W7QBW2	Immunogenic protein	5.79365472022e-05	6.87716454438e-05	1.08350982416e-05
+UniRef50_C1D094	GTPase Der	0.00040460996081	0.0538097911183	0.0534051811575
+UniRef50_X6DLZ2		0.00013878102636	5.40204635215e-05	-8.47605628385e-05
+UniRef50_UPI0004716F0E	ribonuclease J	1.20744494936e-05	4.68382089622e-05	3.47637594686e-05
+UniRef50_UPI0002B8D004	hypothetical protein	9.11892253654e-05	0.000454904712919	0.000363715487554
+UniRef50_UPI0004681C8E	hypothetical protein, partial	1.29166969302e-05	0.000504507901653	0.000491591204723
+UniRef50_R9YN68	2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase	0.0191630867459	0.00595301160108	-0.0132100751448
+UniRef50_Q6FEV8	3 isopropylmalate dehydratase small subunit	0.000834014443975	0.00097657505395	0.000142560609975
+UniRef50_A6M0Q7	Methyl accepting chemotaxis sensory transducer	0.00039982652249	0.00183214571578	0.00143231919329
+UniRef50_P40711	Peptidyl tRNA hydrolase ArfB	0.00836595279523	0.00127474836775	-0.00709120442748
+UniRef50_B0V969	Homoserine kinase	0.000354742120506	0.00653437842298	0.00617963630247
+UniRef50_UPI000287CE50	ABC transporter periplasmic protein, partial	0.000110351733145	0.000218654012219	0.000108302279074
+UniRef50_D3DZ73	Methanogenesis marker protein 6	0.00191227824473	0.00191433466534	2.05642061e-06
+UniRef50_Q5V5M1	Nucleoside diphosphate kinase	1.3797390658e-05	9.63126384725e-05	8.25152478145e-05
+UniRef50_UPI0004026C93	ABC transporter permease	1.85351307089e-05	2.26638372701e-05	4.1287065612e-06
+UniRef50_A7ZK57	3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.00857343777211	0.00448946348716	-0.00408397428495
+UniRef50_W4M3I0		7.95754998163e-05	3.45627829562e-05	-4.50127168601e-05
+UniRef50_A4VQM5	Alanine racemase	0.000426107902714	1.46662887648e-05	-0.000411441613949
+UniRef50_B9EBJ3	GTPase HflX	0.0214869546136	0.00504292918386	-0.0164440254297
+UniRef50_Q4W573	Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion	0.000166395904536	0.00351535053073	0.00334895462619
+UniRef50_R6FSH7	Oxidoreductase	0.000305692302144	0.00139886339576	0.00109317109362
+UniRef50_F9M5F2		0.00253103632371	0.000671174329992	-0.00185986199372
+UniRef50_A1BD29	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.0101549503353	0.00758757588134	-0.00256737445396
+UniRef50_M5RG91	Glutamate binding periplasmic protein	0.000300308843189	8.69907841199e-05	-0.000213318059069
+UniRef50_R9SIF8	NADPH dependent FMN reductase	0.00441212340654	0.000269695621179	-0.00414242778536
+UniRef50_K7RVB3	DNA recombination RmuC like protein	0.000128251185346	0.00404327604741	0.00391502486206
+UniRef50_D3E1G5	Cobalamin biosynthesis protein CbiX	0.00249269505297	0.000206756152991	-0.00228593889998
+UniRef50_A0KJ40	Nucleoside diphosphate kinase	0.000105895074201	5.03817715469e-05	-5.55133026541e-05
+UniRef50_UPI000466CC16	hydantoinase	2.12039564499e-06	3.8205932323e-06	1.70019758731e-06
+UniRef50_UPI0003B508F0	GntR family transcriptional regulator	0.000182113862877	1.97874144715e-05	-0.000162326448405
+UniRef50_P27868	Acetolactate synthase 	1.59158413179e-05	1.74274645322e-05	1.5116232143e-06
+UniRef50_UPI00035F1C59	50S ribosomal protein L3	4.8815993232e-06	4.12397291338e-05	3.63581298106e-05
+UniRef50_F9YZE2		0.00121769673823	0.00265747758288	0.00143978084465
+UniRef50_M5S2J2	Phytoene desaturase	7.56203519325e-06	2.62545425185e-05	1.86925073252e-05
+UniRef50_H6LML3		0.00732700741234	0.000710734470096	-0.00661627294224
+UniRef50_A6LT68	Phage tail tape measure protein, TP901 family	0.000376588911931	0.00161627477518	0.00123968586325
+UniRef50_UPI00036C1C23	hypothetical protein	2.62379544808e-05	0.000202268081362	0.000176030126881
+UniRef50_A5UNK4	Ribose phosphate pyrophosphokinase	0.00237514630933	0.000613379542215	-0.00176176676711
+UniRef50_UPI00035CAC38	hypothetical protein	1.09907747246e-05	3.82473031103e-05	2.72565283857e-05
+UniRef50_UPI0003EDD3EB	hypothetical protein, partial	0.000142209152858	3.38698464644e-05	-0.000108339306394
+UniRef50_P33235	Flagellar hook associated protein 1	0.00645460594033	0.00145125389464	-0.00500335204569
+UniRef50_UPI000379C48D	hypothetical protein	0.00016946093568	2.97295822483e-05	-0.000139731353432
+UniRef50_F6GB14	Multidrug efflux system transmembrane protein	0.00122869387626	0.000186123973868	-0.00104256990239
+UniRef50_Q4L5F4	Succinate dehydrogenase iron sulfur protein subunit	0.00861888355762	0.00652693343613	-0.00209195012149
+UniRef50_Q2G1T7	HTH type transcriptional regulator SarU	0.00585404427429	0.00031031527691	-0.00554372899738
+UniRef50_UPI0002EB7833	hypothetical protein	7.53958815615e-05	0.000129877625108	5.44817435465e-05
+UniRef50_E8NHH4	WGS CADB00000000 data, contig 29 	1.83710134169e-06	3.02034824759e-06	1.1832469059e-06
+UniRef50_F0LGR4	Sugar ABC transporter, substrate binding protein	0.0164645471064	0.00437631137942	-0.012088235727
+UniRef50_P56867	Hexagonally packed intermediate layer surface protein	8.6532816985e-05	0.0586772850657	0.0585907522487
+UniRef50_K0S670		0.000181623358584	0.00011140691636	-7.0216442224e-05
+UniRef50_I4CPJ8	C type cytochrome	0.000452232072348	0.000481873327421	2.9641255073e-05
+UniRef50_G7MDF6		0.00246186514469	0.00246461897019	2.7538255e-06
+UniRef50_UPI0003B56D5B	50S ribosomal protein L25	0.00024736567556	5.52852819292e-05	-0.000192080393631
+UniRef50_A0A024HXA7		7.2666456613e-06	2.5565016226e-06	-4.7101440387e-06
+UniRef50_F5M453	McpA	0.0134221912944	0.00437343828673	-0.00904875300767
+UniRef50_B0C6R3	Phosphoribosylformylglycinamidine synthase 2	2.28681721834e-05	5.91964645531e-06	-1.69485257281e-05
+UniRef50_A0A023RWA6	Sugar kinase	0.000592791302586	0.00931103658267	0.00871824528008
+UniRef50_UPI00036BDA1B	hypothetical protein	4.34393184712e-06	6.24777549309e-05	5.81338230838e-05
+UniRef50_Z1Y9N5	Replication initiator protein	4.99800439334e-05	6.66917058327e-06	-4.33108733501e-05
+UniRef50_UPI00047572A2	tRNA delta isopentenylpyrophosphate transferase	1.27262992751e-05	1.10964415817e-05	-1.6298576934e-06
+UniRef50_V5LMT9		0.000329810918888	1.05549456817e-05	-0.000319255973206
+UniRef50_UPI0001FFF28B	gas vesicle protein, partial	0.000297823836508	0.00014347771065	-0.000154346125858
+UniRef50_Q7VID0		0.000311293795653	0.00207864427227	0.00176735047662
+UniRef50_Q74LG0	Xanthine uracil permease	0.0131384593797	0.00981282502988	-0.00332563434982
+UniRef50_Q6F8J4	DNA primase	0.000137813181635	0.00513690355464	0.004999090373
+UniRef50_K2ADM0		0.000223966747393	7.69496656024e-05	-0.000147017081791
+UniRef50_A0A031M1H9	Membrane protein	0.000109756430919	2.44832277232e-05	-8.52732031958e-05
+UniRef50_R9SKE6	Iron dependent repressor	0.0012000667335	0.00123981832645	3.975159295e-05
+UniRef50_B8JFW2	Lysine  tRNA ligase	3.34808825313e-06	1.38960118047e-05	1.05479235516e-05
+UniRef50_Q8FEA4		0.000298015254361	3.40211676833e-05	-0.000263994086678
+UniRef50_A1U241	Uracil phosphoribosyltransferase	0.0228969774573	0.0103019115255	-0.0125950659318
+UniRef50_V8G0X5	Cell wall binding protein	0.00024406421693	0.00154979927826	0.00130573506133
+UniRef50_UPI0001711954	GTPase CgtA	1.02665299403e-05	0.000322260203442	0.000311993673502
+UniRef50_X1HTP5	Marine sediment metagenome DNA, contig	3.30005017778e-05	1.60199051908e-05	-1.6980596587e-05
+UniRef50_R5HYZ8		0.000641569765233	0.00114989539398	0.000508325628747
+UniRef50_R5NRV6	Pseudouridine synthase	0.000185345002706	0.00124600013658	0.00106065513387
+UniRef50_D3VHY7		0.000144806323419	0.00154791136297	0.00140310503955
+UniRef50_UPI0003A646A2	GTP pyrophosphokinase	3.07170517092e-06	2.2115603808e-05	1.90438986371e-05
+UniRef50_B4THT3	UPF0257 lipoprotein YnfC	0.00603801021806	0.00201829258749	-0.00401971763057
+UniRef50_UPI00037C47E4	hypothetical protein	1.00591167078e-05	0.000113885406142	0.000103826289434
+UniRef50_E1ZV58	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	0.000756740954738	0.00950729585502	0.00875055490028
+UniRef50_W6QS47	Methyl accepting chemotaxis transducer	0.000117685283211	0.000505401404423	0.000387716121212
+UniRef50_L0A178	Putative branched chain amino acid permease 	2.88801632582e-05	1.51749840629e-05	-1.37051791953e-05
+UniRef50_E2ZSI9		0.000165564030199	0.000174512500284	8.948470085e-06
+UniRef50_B2V1Q0		0.000365903001277	0.000287646141427	-7.825685985e-05
+UniRef50_UPI0003B54C8A	ATP dependent DNA helicase Rep	5.41995110964e-06	5.21076761009e-06	-2.0918349955e-07
+UniRef50_F8KJ61	DNA 3 methyladenine glycosylase I	0.0149788462382	0.00268543931711	-0.0122934069211
+UniRef50_UPI0003777478	hypothetical protein	8.72222562852e-06	1.96122410127e-05	1.08900153842e-05
+UniRef50_F2JLA6	Transposase	0.000705511244232	0.00160480536173	0.000899294117498
+UniRef50_UPI00035F7004	hypothetical protein	8.08619725874e-06	0.000210842688373	0.000202756491114
+UniRef50_UPI00046A5F56	hypothetical protein	5.36217331936e-06	0.000155566306503	0.000150204133184
+UniRef50_W5T9B1		1.28938584919e-05	0.000177795542929	0.000164901684437
+UniRef50_C6NYG1	Flagellar biosynthesis protein FlhA	2.18276252868e-06	2.76787835919e-05	2.54960210632e-05
+UniRef50_UPI000262C262	transposase	1.35860460184e-05	1.4678155287e-05	1.0921092686e-06
+UniRef50_L1K4Y6		0.000786429143437	0.00521147126815	0.00442504212471
+UniRef50_D4HAB8	Aminodeoxychorismate synthase, component I	0.000200949521046	0.00568182059207	0.00548087107102
+UniRef50_UPI0003C75D29	pirin	7.40047974763e-06	6.54218643181e-06	-8.5829331582e-07
+UniRef50_UPI0003648088	hypothetical protein, partial	0.000157370615557	0.000121341576631	-3.6029038926e-05
+UniRef50_P26171	Bacteriochlorophyll synthase 44.5 kDa chain	0.000380638314925	1.25398873072e-05	-0.000368098427618
+UniRef50_UPI0003B578F4	peptidase M22	8.87192701375e-06	1.89972957195e-05	1.01253687057e-05
+UniRef50_G8PES7	Glycosyl transferase 2 family protein	9.18457393789e-05	0.00440512544523	0.00431327970585
+UniRef50_B9E294		9.06691726615e-05	0.0022097498788	0.00211908070614
+UniRef50_UPI00036DA897	hypothetical protein	5.69108943928e-06	0.000134081463952	0.000128390374513
+UniRef50_Q28PP3	Binding protein dependent transport systems inner membrane component	0.0125216683248	0.00467375152732	-0.00784791679748
+UniRef50_UPI0002EEB552	hypothetical protein	2.52264351431e-05	4.73736553645e-05	2.21472202214e-05
+UniRef50_A1K3T2	Phosphoheptose isomerase	1.96691480587e-05	2.5732758158e-05	6.0636100993e-06
+UniRef50_Q9RVZ7	O acetylhomoserine  lyase	6.72081879274e-05	0.0362525247629	0.036185316575
+UniRef50_UPI0004268C03	hypothetical protein	1.91033687858e-05	1.35290014587e-05	-5.5743673271e-06
+UniRef50_UPI00034D0CB3	hypothetical protein	6.73260512196e-05	9.57238054426e-06	-5.77536706753e-05
+UniRef50_A2ZQQ8		0.000131243816208	0.00017103598022	3.9792164012e-05
+UniRef50_UPI00035A2A22	PREDICTED	6.76324128988e-06	1.01173852143e-05	3.35414392442e-06
+UniRef50_W2CS51		2.26614179847e-05	3.40327153341e-05	1.13712973494e-05
+UniRef50_C6S4V7	Transcriptional regulator, AraC family	0.000135299637578	0.00479043814848	0.0046551385109
+UniRef50_Q5HPM6		0.00109947375394	0.00196877803463	0.00086930428069
+UniRef50_C1D0F7	Aminomethyltransferase	4.44125679321e-05	0.000330736656182	0.00028632408825
+UniRef50_Q5Z5L8		6.08768049985e-05	0.000409681954045	0.000348805149047
+UniRef50_Q5HPM0		0.000943714972126	0.000952634532885	8.919560759e-06
+UniRef50_UPI0003C7E085	acetylornithine aminotransferase	4.6303788115e-06	9.9769887881e-06	5.3466099766e-06
+UniRef50_R6JRA3		7.45431579148e-06	1.23779204586e-05	4.92360466712e-06
+UniRef50_UPI00016AA163	hypothetical protein	0.00105267699221	0.000592971857003	-0.000459705135207
+UniRef50_J9YT54		2.73028196551e-05	3.81168692463e-05	1.08140495912e-05
+UniRef50_Q66ED4	Sulfite reductase [NADPH] flavoprotein alpha component	0.000504020981913	0.00117356737802	0.000669546396107
+UniRef50_UPI000378803E	hypothetical protein	6.16707822637e-06	1.54068762077e-05	9.23979798133e-06
+UniRef50_V9WCN5	Serine pyruvate aminotransferase archaeal aspartate aminotransferase	0.000465397093427	0.000187106677001	-0.000278290416426
+UniRef50_UPI0004636D1A	hypothetical protein	0.000325404348593	7.47695748767e-05	-0.000250634773716
+UniRef50_UPI00036F7C7E	hypothetical protein	4.77789235249e-05	7.86297342514e-05	3.08508107265e-05
+UniRef50_UPI00037CF289	hypothetical protein	6.87794211497e-05	2.11431082024e-05	-4.76363129473e-05
+UniRef50_W7LMB8		3.31710007762e-05	5.19010026679e-05	1.87300018917e-05
+UniRef50_UPI00036C6A8F	hypothetical protein	6.2128955392e-06	0.0014038902234	0.00139767732786
+UniRef50_D7GUI6	TRAP transporter solute receptor, TAXI family	2.45350367133e-05	1.40208289931e-05	-1.05142077202e-05
+UniRef50_A6M071		0.000504145084198	0.000505224962549	1.079878351e-06
+UniRef50_UPI0003B45945	glycosyl transferase	3.26367563129e-05	1.7093285637e-05	-1.55434706759e-05
+UniRef50_Q9P2T1	GMP reductase 2	0.003019874909	0.000185619234072	-0.00283425567493
+UniRef50_H8XBT6	Recombinase A 	0.000135341645461	4.46246743994e-05	-9.07169710616e-05
+UniRef50_Q8P558	Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	6.98185396544e-06	0.00257358912199	0.00256660726802
+UniRef50_V5XU16	Replication initiator protein A	1.05771951185e-05	3.85457136832e-06	-6.72262375018e-06
+UniRef50_Q8CUE8		0.0512549549357	0.00710261696862	-0.0441523379671
+UniRef50_Q8CUE9		0.0171736941222	0.000959617511552	-0.0162140766106
+UniRef50_Q8CUE6		0.00807024305529	0.00216629456746	-0.00590394848783
+UniRef50_Q8CUE4		0.0124821806548	0.00385142546669	-0.00863075518811
+UniRef50_Q8CUE5		0.00101253614459	0.000176884746785	-0.000835651397805
+UniRef50_Q8CUE2		0.00213368868259	0.00468761225963	0.00255392357704
+UniRef50_Q8CUE3		0.0220676404114	0.00786202891308	-0.0142056114983
+UniRef50_A4YPV8		0.000239608965621	0.000104018055452	-0.000135590910169
+UniRef50_M0SZR5		0.000258287065004	0.000285113951854	2.682688685e-05
+UniRef50_UPI0004784CAD	hypothetical protein	4.80409777298e-06	2.71764899036e-05	2.23723921306e-05
+UniRef50_UPI0004738AE6	glyceraldehyde 3 phosphate dehydrogenase, partial	0.000100560209346	1.62442227101e-05	-8.43159866359e-05
+UniRef50_I7AL68	Phosphoglycerate mutase family protein	5.03721412535e-05	0.00112095563913	0.00107058349788
+UniRef50_P0ABL3	Periplasmic nitrate reductase, electron transfer subunit	0.00142657392781	0.00184572940748	0.00041915547967
+UniRef50_R6U4B5	Transposase	0.000152244641929	0.000220349434455	6.8104792526e-05
+UniRef50_Q8CNT1	Integrase	0.0175664100198	0.00378933031711	-0.0137770797027
+UniRef50_Q6MDQ6	NADH quinone oxidoreductase subunit K	1.26395194062e-05	2.37440837943e-05	1.11045643881e-05
+UniRef50_UPI00016C4514	50S ribosomal protein L18	4.91986356719e-05	0.000295837452769	0.000246638817097
+UniRef50_Q9JYT7		0.000437242458129	0.00294915342218	0.00251191096405
+UniRef50_G7UAA9	Transporter, major facilitator family protein	0.000246285914396	0.0045997293388	0.0043534434244
+UniRef50_B8CRT5	Homoserine O succinyltransferase	0.0054913811242	0.00230289634906	-0.00318848477514
+UniRef50_W0CEL3		6.3975109127e-05	0.000483282889277	0.00041930778015
+UniRef50_P77390	[Citrate [pro 3S] lyase] ligase	0.00462441753496	0.000355468702517	-0.00426894883244
+UniRef50_W0PAW0	Integral membrane protein	1.12156799708e-05	1.73394086213e-05	6.1237286505e-06
+UniRef50_C1KVA6	Glycine  tRNA ligase alpha subunit	2.69774432705e-05	0.00144060409347	0.0014136266502
+UniRef50_UPI0003F0AAA6	PREDICTED	3.20306420241e-06	2.3589291299e-06	-8.4413507251e-07
+UniRef50_M1N022	Histidinol phosphatase HisK	0.000145186918795	0.000647425084459	0.000502238165664
+UniRef50_Q5HNY9	Putative GTP cyclohydrolase 1 type 2	0.0173072481957	0.00631127026367	-0.010995977932
+UniRef50_F8FMK7	Response regulator	0.00195623604944	0.001156140961	-0.00080009508844
+UniRef50_P85098	Respiratory nitrate reductase beta chain 	3.67840965939e-05	3.40887612651e-05	-2.6953353288e-06
+UniRef50_C6BUI7	Phosphoglycerate kinase	1.3208990039e-05	1.6535166779e-05	3.32617674e-06
+UniRef50_UPI000287D575	putative short chain dehydrogenase	3.15110908858e-05	0.000262028109379	0.000230517018493
+UniRef50_O67161	Glyceraldehyde 3 phosphate dehydrogenase	0.0070473688668	0.00307509351284	-0.00397227535396
+UniRef50_U7DV00		5.39424189374e-05	0.000132479481228	7.85370622906e-05
+UniRef50_X1T7L9	Marine sediment metagenome DNA, contig	0.000128556427828	0.000135969877078	7.41344925e-06
+UniRef50_P46130	Putative acyl CoA thioester hydrolase YbhC	0.00277354561524	0.000877733848288	-0.00189581176695
+UniRef50_T0GKT6	ABC transporter permease	6.06225279828e-06	7.65239614333e-06	1.59014334505e-06
+UniRef50_D5VAW9	Transporter	7.83165951945e-05	0.00879202114316	0.00871370454797
+UniRef50_M4R0I6		9.58897516131e-05	0.00700602380022	0.00691013404861
+UniRef50_D5ANC8		1.08947331048e-05	1.27350230827e-05	1.8402899779e-06
+UniRef50_T0BL71		0.000280244398175	5.34407199323e-05	-0.000226803678243
+UniRef50_J7PRA1	Internalin E 	2.19778961851e-05	0.00137013320297	0.00134815530678
+UniRef50_A9H8V7		0.0250567431707	0.000708052747062	-0.0243486904236
+UniRef50_A6WGM7	Cobyrinic acid ac diamide synthase	3.53655939347e-06	1.21082368182e-05	8.57167742473e-06
+UniRef50_B2ULY3	NADH quinone oxidoreductase subunit K	5.36065968397e-05	6.39288051381e-05	1.03222082984e-05
+UniRef50_C7C0M5		0.000158164520469	0.00198137557757	0.0018232110571
+UniRef50_P0ABC8	Protein HflK	0.00435588927897	0.000652150553898	-0.00370373872507
+UniRef50_Q4FU03	Pseudouridine synthase	0.000222050581675	0.00681598955466	0.00659393897298
+UniRef50_Q8FDG7	L tartrate succinate antiporter	0.00267953223578	0.000678329251449	-0.00200120298433
+UniRef50_Q6L8L1	Circadian clock protein kinase KaiC	4.61526391767e-05	1.3297255354e-05	-3.28553838227e-05
+UniRef50_UPI000375D5D1	hypothetical protein	2.2028730887e-05	1.09746632909e-05	-1.10540675961e-05
+UniRef50_A8AVA4	ABC transporter ATP binding protein	0.00493843513284	0.00128764774909	-0.00365078738375
+UniRef50_UPI0003805572	Fis family transcriptional regulator	3.5623302366e-05	2.00715540006e-05	-1.55517483654e-05
+UniRef50_O68560	Ribosome association toxin RatA	0.00514753621162	0.00139519703241	-0.00375233917921
+UniRef50_A1JJ54	Autoinducer 2 import system permease protein LsrC	0.00427234772409	0.000946953356292	-0.0033253943678
+UniRef50_U6K454		7.71419899057e-05	1.31914161208e-05	-6.39505737849e-05
+UniRef50_P09852	Exotoxin A regulatory protein	0.000297160948681	0.00144051255889	0.00114335161021
+UniRef50_A6LS16	Sigma 54 factor, interaction domain containing protein	0.00042836519913	0.00107766223372	0.00064929703459
+UniRef50_D5AT86		0.00134224984377	0.000146196388719	-0.00119605345505
+UniRef50_A3CNP4	Transcriptional regulator GntR family	0.00414922247107	0.00244720877664	-0.00170201369443
+UniRef50_A7MH24	NADH quinone oxidoreductase subunit C D	0.00482244427802	0.00189530888264	-0.00292713539538
+UniRef50_Q89AR9	NAD kinase	1.82859939085e-05	1.95001171328e-05	1.2141232243e-06
+UniRef50_Q0FLV7		6.46540453326e-05	3.13215183871e-05	-3.33325269455e-05
+UniRef50_UPI00038316EF	hypothetical protein	6.1309888747e-06	9.06750797388e-05	8.45440908641e-05
+UniRef50_F2N563		0.000594119372543	0.00230491086981	0.00171079149727
+UniRef50_H8I380		8.70951731997e-05	3.73294577628e-05	-4.97657154369e-05
+UniRef50_K8FGY8	DUF2188 family protein	0.0106521976682	0.00721230557044	-0.00343989209776
+UniRef50_A0A011PD71		0.00012309325723	0.000438973151202	0.000315879893972
+UniRef50_UPI000382A08A	hypothetical protein	7.37894012985e-05	0.000164582262746	9.07928614475e-05
+UniRef50_U6AC49	Phenazine specific methyltransferase PhzM	0.000338833908003	0.000488963615877	0.000150129707874
+UniRef50_P80503	Dihydrolipoyl dehydrogenase 	4.90602620711e-05	0.00015509848641	0.000106038224339
+UniRef50_D7FVW5		8.66482012812e-05	0.000574734608727	0.000488086407446
+UniRef50_U5MVZ4	Sensor histidine kinase YclK	0.000219468598168	0.00077103118637	0.000551562588202
+UniRef50_P37925	Protein FimH	0.000510037145597	0.000193862169709	-0.000316174975888
+UniRef50_UPI0003735D88	hypothetical protein	2.80564414183e-05	0.00177594576919	0.00174788932777
+UniRef50_A0A011UTJ0		6.45023408896e-05	1.43013113732e-05	-5.02010295164e-05
+UniRef50_U5MNI8	Type IV pilus assembly protein TapC	0.000100306285793	0.000910359604404	0.000810053318611
+UniRef50_UPI00046D22D7	hypothetical protein	5.75099046028e-05	1.36379604412e-05	-4.38719441616e-05
+UniRef50_X1ILZ0	Marine sediment metagenome DNA, contig	6.77973617548e-05	0.000398223322359	0.000330425960604
+UniRef50_D5QFZ9	Cyclase dehydrase	0.00317140138968	0.00161081839197	-0.00156058299771
+UniRef50_Q51463	Flagellar M ring protein	0.000460245108042	0.000897837151232	0.00043759204319
+UniRef50_A7FZA6	Transcription elongation factor GreA	0.00374484003689	0.000369145881487	-0.0033756941554
+UniRef50_UPI0003B58BAE	hemolysin expression modulating protein	4.65000421746e-06	3.42493600826e-06	-1.2250682092e-06
+UniRef50_UPI0003776FB7	hypothetical protein	5.79053945972e-05	8.31764780681e-05	2.52710834709e-05
+UniRef50_D4ZAK4		0.00155138706938	0.00976467356493	0.00821328649555
+UniRef50_UPI000360EB76	hypothetical protein, partial	3.04492122522e-05	0.00120606903892	0.00117561982667
+UniRef50_A4WXK1		2.39180645987e-05	0.00128593571989	0.00126201765529
+UniRef50_G0LPP3		1.75130282118e-05	8.8912564962e-06	-8.6217717156e-06
+UniRef50_UPI0003613F90	hypothetical protein	3.49462451913e-05	5.85666173664e-05	2.36203721751e-05
+UniRef50_UPI000368B7D0	hypothetical protein	1.9877668552e-05	0.000141850021303	0.000121972352751
+UniRef50_UPI00034BE6B7	hypothetical protein	0.000153780469284	0.000230882467543	7.7101998259e-05
+UniRef50_UPI00036CB57D	hypothetical protein	0.000124254840656	1.9390020112e-05	-0.000104864820544
+UniRef50_U5MKL2	DEAD DEAH box helicase	0.000925872157184	0.000162363880566	-0.000763508276618
+UniRef50_O27720	Probable tRNA sulfurtransferase	0.00319728022735	0.000218214314184	-0.00297906591317
+UniRef50_A0A052I467	PF07120 family protein	3.82074606233e-06	1.08797465468e-05	7.05900048447e-06
+UniRef50_Q8YBL2	GMP synthase [glutamine hydrolyzing]	4.78292482583e-05	1.75929254972e-05	-3.02363227611e-05
+UniRef50_P48932	Succinate dehydrogenase [ubiquinone] iron sulfur subunit	1.94990830182e-05	3.79951029156e-05	1.84960198974e-05
+UniRef50_A1B5W0	RNA polymerase sigma factor	0.0154412513056	0.00403772112068	-0.0114035301849
+UniRef50_R5NV67	tRNA dihydrouridine synthase	0.000257148580005	0.00159071473176	0.00133356615176
+UniRef50_G8UZW2	Glycerophosphoryl diester phosphodiesterase family protein	0.0113915833637	0.00172333989802	-0.00966824346568
+UniRef50_UPI000225BB06	NADH ubiquinone oxidoreductase subunit	0.00031911204997	0.000242797693111	-7.6314356859e-05
+UniRef50_Q7BHL7	Regulatory protein MsrR	0.0179261507902	0.00593844281616	-0.011987707974
+UniRef50_U3SRT1	Ribonuclease R	0.00595643053054	0.00133662877418	-0.00461980175636
+UniRef50_UPI0004091E67	enterobactin ABC transporter permease	7.60271157724e-06	1.92352257915e-05	1.16325142143e-05
+UniRef50_UPI00040FC3C0	resolvase	1.82892801543e-05	0.000186362639846	0.000168073359692
+UniRef50_Q92G90	Aconitate hydratase	9.02371754612e-06	7.14064123959e-05	6.23826948498e-05
+UniRef50_Q6A9W5	Probable cytosol aminopeptidase	0.000759784981674	0.00471514632646	0.00395536134479
+UniRef50_S1SCM6	Short chain dehydrogenase reductase SDR	0.00103537456077	0.00750095910112	0.00646558454035
+UniRef50_UPI0004560FCC	hypothetical protein PFL1_00477	7.56488472929e-06	5.18794405911e-05	4.43145558618e-05
+UniRef50_UPI0003781D54	hypothetical protein	0.000101177084002	7.19540518108e-05	-2.92230321912e-05
+UniRef50_M9V9M5		0.000246626901361	0.0044088258943	0.00416219899294
+UniRef50_F5XYC9		0.000188070647974	0.000475911001366	0.000287840353392
+UniRef50_UPI00047A219A	hypothetical protein	9.8210833611e-05	0.000131646324826	3.3435491215e-05
+UniRef50_P0A9V7		0.000650837911816	0.000723224584158	7.2386672342e-05
+UniRef50_K0R926		0.000127776582313	0.000120169213444	-7.607368869e-06
+UniRef50_B9KRR9		0.00114389693592	0.000576132825919	-0.000567764110001
+UniRef50_UPI00036ACC32	hypothetical protein	0.000195676435318	0.000247698959293	5.2022523975e-05
+UniRef50_B7LBZ3		1.69963288404e-05	0.000995641831884	0.000978645503044
+UniRef50_UPI000366BCAE	hypothetical protein	5.31381431788e-06	2.14809482511e-05	1.61671339332e-05
+UniRef50_UPI00034FAA06	PREDICTED	2.78247205418e-06	5.06808908268e-06	2.2856170285e-06
+UniRef50_A6M1J6	PolyA polymerase related protein  and P loop ATP ase domain	0.000844720945455	0.00104090717712	0.000196186231665
+UniRef50_UPI0001E2C790	helix turn helix domain containing protein	0.000350284998896	0.000223715494736	-0.00012656950416
+UniRef50_Q9HCC0	Methylcrotonoyl CoA carboxylase beta chain, mitochondrial	0.00322770954777	0.00778168753535	0.00455397798758
+UniRef50_Q9JWM8	Peptide methionine sulfoxide reductase MsrA MsrB	9.85120688569e-05	0.00321430480961	0.00311579274075
+UniRef50_UPI000383BA43	PREDICTED	2.21634236596e-05	0.000551939798563	0.000529776374903
+UniRef50_G0HC44	Adenylosuccinate lyase	0.000523871611604	0.00375189887646	0.00322802726486
+UniRef50_A6ZVT8	Cell surface flocculin	2.59740092636e-06	8.47067604244e-06	5.87327511608e-06
+UniRef50_B4SEB2	Short chain dehydrogenase reductase SDR	2.46980747615e-06	2.84914751304e-06	3.7934003689e-07
+UniRef50_UPI00037E5D09	LuxR family transcriptional regulator	1.91563005167e-05	1.95227389654e-05	3.664384487e-07
+UniRef50_A1TWN0	Methionyl tRNA formyltransferase	7.17077298158e-06	2.59810487078e-05	1.88102757262e-05
+UniRef50_B5GNF3	ABC transport system ATP binding protein	0.000467957837425	0.00482992768248	0.00436196984506
+UniRef50_O75489	NADH dehydrogenase [ubiquinone] iron sulfur protein 3, mitochondrial	1.52929146827e-05	1.09366167125e-05	-4.3562979702e-06
+UniRef50_UPI00046F9A01	hypothetical protein	0.000116831740175	7.91968438374e-05	-3.76348963376e-05
+UniRef50_D5AU36	Peptidase, U32 family	0.00056250052245	0.000396398262003	-0.000166102260447
+UniRef50_Q7VFF8	Argininosuccinate lyase	1.38147437985e-05	1.59392243539e-05	2.1244805554e-06
+UniRef50_Q6A823		1.83492112341e-05	0.00348433754644	0.00346598833521
+UniRef50_P13604	NADPH dependent butanol dehydrogenase	0.00185630581017	0.00422056016765	0.00236425435748
+UniRef50_Q6A824		0.00020761030336	0.000241516335112	3.3906031752e-05
+UniRef50_UPI00037EF460	hypothetical protein	1.55271270006e-05	0.000117054961377	0.000101527834376
+UniRef50_A2RKV6	Homoserine kinase	0.00588426858955	0.00175580523721	-0.00412846335234
+UniRef50_P56176	Bifunctional NADH hydrate repair enzyme Nnr	0.00021035703837	0.00478603416197	0.0045756771236
+UniRef50_P64804	Cobyrinic acid a,c diamide adenosyltransferase	1.12937351911e-05	2.24934383205e-05	1.11997031294e-05
+UniRef50_D1YLF7	DNA repair protein RadA	4.40712250337e-05	0.00118849658827	0.00114442536324
+UniRef50_W7IVE6		0.0101155209612	0.002807293386	-0.0073082275752
+UniRef50_P0ADT7	Putative acid  amine ligase YgiC	0.00290992072721	0.000350110636804	-0.00255981009041
+UniRef50_UPI0003682914	hypothetical protein	3.42843416405e-06	4.89682200819e-06	1.46838784414e-06
+UniRef50_UPI000362C7A0	hypothetical protein	1.0223285923e-05	5.44325125059e-06	-4.78003467241e-06
+UniRef50_X1V7S4	Marine sediment metagenome DNA, contig	2.65436920173e-05	5.19350545681e-05	2.53913625508e-05
+UniRef50_Q73MY1	Phosphopantetheine adenylyltransferase	1.18084939145e-05	1.57584662553e-05	3.9499723408e-06
+UniRef50_UPI000191165B	hypothetical protein	3.29533607801e-05	1.98544495681e-05	-1.3098911212e-05
+UniRef50_F0S2L5		7.90572709247e-06	1.33982421675e-05	5.49251507503e-06
+UniRef50_K0HAG9		0.000332099824425	0.00940379920514	0.00907169938072
+UniRef50_G7LZX4		0.000270323271289	0.00020994078568	-6.0382485609e-05
+UniRef50_A3PJL4	Invasion associated locus B family protein	0.00436730325782	0.000596599404435	-0.00377070385339
+UniRef50_C5WG19	Phosphomevalonate kinase	0.00448899070704	0.000194500574217	-0.00429449013282
+UniRef50_A3PS67		0.00488643287615	0.00209071030186	-0.00279572257429
+UniRef50_A4WQP0		0.000129500809316	0.000203995941812	7.4495132496e-05
+UniRef50_A3PKI7	NADH quinone oxidoreductase subunit I 2	0.0019684416847	9.30476511362e-05	-0.00187539403356
+UniRef50_F2MV72	C4 dicarboxylate binding protein	0.000849695271659	0.000283504036987	-0.000566191234672
+UniRef50_K0J3D5	Transposase	1.66678984431e-05	4.86437385485e-06	-1.18035245882e-05
+UniRef50_Q979P0	7 cyano 7 deazaguanine synthase	0.000630843018168	0.00671365209986	0.00608280908169
+UniRef50_Q5E212	Soluble pyridine nucleotide transhydrogenase	0.00345454460361	0.00666040397547	0.00320585937186
+UniRef50_A5UNU9	Bacteriophage capsid portal protein	0.00257009916019	0.001741543541	-0.00082855561919
+UniRef50_R0MT59	DNA polymerase III PolC	0.00663029151926	0.00509453878833	-0.00153575273093
+UniRef50_I6CAK2	Inner membrane transport YhjV domain protein	6.44385600304e-05	1.91820636815e-05	-4.52564963489e-05
+UniRef50_T1XSP1		0.0130758557034	0.0039072901074	-0.009168565596
+UniRef50_A7GJS9	Glutamine amidotransferase subunit PdxT	2.75535277749e-06	0.00329718849176	0.00329443313898
+UniRef50_UPI0004641AEF	hypothetical protein, partial	8.87569226775e-05	5.50705844638e-05	-3.36863382137e-05
+UniRef50_W5X7V9	Aspartyl glutamyl tRNA amidotransferase subunit B	6.26772385403e-06	7.69284995455e-06	1.42512610052e-06
+UniRef50_A9MKV9	Hydroxyethylthiazole kinase	0.00383734256595	0.00056905803135	-0.0032682845346
+UniRef50_A0A023Y3W6	Radical SAM protein	0.000901141364364	0.000278600665274	-0.00062254069909
+UniRef50_M9VBI4	Amidohydrolase family protein	7.95824291342e-05	0.00805421392018	0.00797463149105
+UniRef50_UPI00036008AF	hypothetical protein	0.000176842569876	2.67409760697e-05	-0.000150101593806
+UniRef50_UPI0003717A52	hypothetical protein	0.000151699831384	9.94462844837e-05	-5.22535469003e-05
+UniRef50_A5ULW7	Nitrate sulfonate bicarbonate ABC transporter, ATPase component	0.00257434508306	0.000826168343394	-0.00174817673967
+UniRef50_S9RBB4	Plasmid replication protein RepA	0.000247789052648	3.673526516e-05	-0.000211053787488
+UniRef50_UPI0003B7AD31	glycosyl transferase	2.41127994207e-06	1.03228078807e-05	7.91152793863e-06
+UniRef50_V5VEP7	Rhs element Vgr family protein	4.9109191956e-05	0.00206526033472	0.00201615114276
+UniRef50_F2D1I1	Predicted protein 	2.28447557271e-05	1.71213955407e-05	-5.7233601864e-06
+UniRef50_V6QB21		0.000555780017326	0.000932065184759	0.000376285167433
+UniRef50_V2VF38		0.000162698395165	0.00666991405594	0.00650721566078
+UniRef50_G9EIS6		2.70902341021e-05	3.24078132928e-05	5.3175791907e-06
+UniRef50_D5WG02	Type VI secretion ATPase, ClpV1 family	7.43570562389e-05	0.000190931935806	0.000116574879567
+UniRef50_L2SNR0		0.000125006923455	7.02611397733e-05	-5.47457836817e-05
+UniRef50_UPI0004007565	16S rRNA methyltransferase	6.94141024494e-06	1.51255068321e-05	8.18409658716e-06
+UniRef50_UPI00037B5A68	hypothetical protein	7.71220157479e-05	2.75873776024e-05	-4.95346381455e-05
+UniRef50_B7KNU7	Peptidyl tRNA hydrolase	8.73887470506e-05	4.3373944264e-05	-4.40148027866e-05
+UniRef50_P25397	Tellurite methyltransferase	0.00200129741016	0.000461432351874	-0.00153986505829
+UniRef50_D5ZH35	Predicted protein	2.19750302058e-06	0.000984912190554	0.000982714687533
+UniRef50_P75749		0.00268932275891	0.000768596962359	-0.00192072579655
+UniRef50_A0QV20	Ribonuclease 3	2.36552435387e-05	6.99690556106e-05	4.63138120719e-05
+UniRef50_U8RNG4		0.000158198483824	0.000130362882471	-2.7835601353e-05
+UniRef50_P75745		0.002185959709	0.000623930005751	-0.00156202970325
+UniRef50_A8IJ61	Sodium sulphate symporter	8.24205215782e-05	0.00335337404437	0.00327095352279
+UniRef50_P05378	Anthranilate synthase component 1	2.17573180947e-05	0.0183615747049	0.0183398173868
+UniRef50_UPI0003777559	hypothetical protein	3.66618324796e-05	5.22737741702e-05	1.56119416906e-05
+UniRef50_A3SLT9		5.24177656364e-05	1.47601576248e-05	-3.76576080116e-05
+UniRef50_W4PGX2		1.39474060739e-05	0.000229570348736	0.000215622942662
+UniRef50_L0DV31	Pirin	5.92800374537e-06	7.78023192321e-06	1.85222817784e-06
+UniRef50_UPI0003A0D931	chemotaxis protein CheY	0.000128922923535	4.25865579769e-05	-8.63363655581e-05
+UniRef50_A5UL23	Fe S oxidoreductase	0.00190375005269	0.000125845186868	-0.00177790486582
+UniRef50_UPI00016A2EB9	ABC transporter related protein, partial	0.000444931068274	0.000147451099039	-0.000297479969235
+UniRef50_W0L514		0.000138306156408	5.54950253034e-05	-8.28111311046e-05
+UniRef50_A2RIB7	NADH oxidase	0.00628370474082	0.00784969647756	0.00156599173674
+UniRef50_B7UYN1		0.00118009165	0.00015475111189	-0.00102534053811
+UniRef50_Q6A6F2	Ubiquinone menaquinone biosynthesis methyltransferase UbiE	0.000328248685954	0.0086701239716	0.00834187528565
+UniRef50_UPI000360EAB2	MULTISPECIES	5.5033600136e-06	4.45190730437e-06	-1.05145270923e-06
+UniRef50_W9FFV8		3.61914789278e-05	4.6316238499e-05	1.01247595712e-05
+UniRef50_A5UMM1	Predicted metal dependent phosphoesterase, PHP family	0.00525369001504	0.000976325418564	-0.00427736459648
+UniRef50_UPI00047B30F5	hypothetical protein	2.4255939956e-06	6.46748846921e-06	4.04189447361e-06
+UniRef50_V7ENR3	Branched chain amino acid transporter AzlC	0.0002494610436	8.91969707368e-05	-0.000160264072863
+UniRef50_G7LXS1	Prophage antirepressor	0.00037177601129	0.00117077526062	0.00079899924933
+UniRef50_D6UB35		7.92381441214e-05	0.000109759050545	3.05209064236e-05
+UniRef50_U5NEG6	Type I restriction enzyme subunit M	0.000812968507199	0.000434547607505	-0.000378420899694
+UniRef50_UPI00042B88CF	Phosphoenolpyruvate carboxylase family protein isoform 3	1.38394907115e-05	2.04988777927e-05	6.6593870812e-06
+UniRef50_I0EYG5	Adenine specific DNA methylase	5.17813427749e-05	0.0049712895887	0.00491950824593
+UniRef50_Q6MSN9	30S ribosomal protein S8	0.00506196709155	0.0149012625803	0.00983929548875
+UniRef50_Q5HM58		0.0128027835619	0.00572237341886	-0.00708041014304
+UniRef50_W1AUZ6	Exonuclease SbcC	0.000927245822186	0.000889139660443	-3.8106161743e-05
+UniRef50_G0DUX4	Phosphoesterase family protein	0.000175632466232	0.00402748797428	0.00385185550805
+UniRef50_Q8XK20	Putative ABC transporter ATP binding protein CPE1583	1.1866340796e-05	0.000586115644224	0.000574249303428
+UniRef50_R9SKG8		0.00241646311644	0.000372247947718	-0.00204421516872
+UniRef50_E6REC8		3.51591097028e-05	1.20889456265e-05	-2.30701640763e-05
+UniRef50_UPI00046CC73E	PREDICTED	1.75833330936e-05	8.09000218395e-06	-9.49333090965e-06
+UniRef50_C4J675		2.63969755987e-05	0.000195343614101	0.000168946638502
+UniRef50_Q163E0	AzlC family protein	0.0112989440012	0.00292526171434	-0.00837368228686
+UniRef50_Q1GGE3	NADH dehydrogenase 	0.00335945718396	0.000238640735716	-0.00312081644824
+UniRef50_C5BMG6	Probable cytosol aminopeptidase	0.000160666023111	0.00419868409331	0.0040380180702
+UniRef50_Q83EH9	ATP dependent 6 phosphofructokinase	1.64697171892e-05	7.67440222282e-06	-8.79531496638e-06
+UniRef50_UPI0002EF2687	hypothetical protein	1.4717230536e-05	6.9084116187e-05	5.4366885651e-05
+UniRef50_A5VLG3	Glutamyl tRNA amidotransferase subunit A	0.00634645374378	0.00112662563354	-0.00521982811024
+UniRef50_Q8XHR6	50S ribosomal protein L10	0.000928244234885	0.00367139723203	0.00274315299715
+UniRef50_Q3J376	Phosphate import ATP binding protein PstB	0.002224891882	0.00108801059277	-0.00113688128923
+UniRef50_A0A058ZJ58		6.4908853222e-05	4.21005135175e-05	-2.28083397045e-05
+UniRef50_UPI00046FA64C	RNA helicase, partial	5.54017438752e-06	2.14884843732e-05	1.59483099857e-05
+UniRef50_UPI0003B55A40	PREDICTED	4.70605843956e-05	2.13169780389e-05	-2.57436063567e-05
+UniRef50_Q7ME63	Molybdenum import ATP binding protein ModC	0.00243594324623	0.000993869026778	-0.00144207421945
+UniRef50_UPI0002556A08	signaling repeat GGDEF domain EAL domain containing protein	0.000127123381022	1.44762443852e-05	-0.000112647136637
+UniRef50_A3M261		0.000638831835141	0.00592977954019	0.00529094770505
+UniRef50_P30845	Phosphoethanolamine transferase EptA	0.00288340517117	0.000824104998495	-0.00205930017268
+UniRef50_P0A324	Catalase	0.0218999020614	0.008089445116	-0.0138104569454
+UniRef50_A0A022GVC0	Transcriptional regulator	0.000145978913409	3.27402258693e-05	-0.00011323868754
+UniRef50_R7PY13	Trk type potassium transport system membrane component TrkH	0.00247660433669	0.000721796760355	-0.00175480757633
+UniRef50_O11346	H1 41 protein 	0.00167264313709	0.000321716470927	-0.00135092666616
+UniRef50_UPI00047B8E24	ABC transporter ATP binding protein	5.2701453435e-05	1.37499523676e-05	-3.89515010674e-05
+UniRef50_UPI0003B50756	ABC transporter permease	0.000164675506124	9.53049077448e-05	-6.93705983792e-05
+UniRef50_UPI0003B32B2D	glutathione ABC transporter ATP binding protein	2.9497008764e-05	2.77130461357e-05	-1.7839626283e-06
+UniRef50_UPI00037FBEE1	hypothetical protein	9.71822133426e-06	1.67728283726e-05	7.05460703834e-06
+UniRef50_A8EV23	Chaperone protein HtpG	7.12237714804e-05	0.00266567040831	0.00259444663683
+UniRef50_UPI00042B67B1	Serine hydroxymethyltransferase 6 isoform 2	2.28148999903e-06	7.13480070737e-05	6.90665170747e-05
+UniRef50_W5XBV9	Cyclic nucleotide binding protein	5.3451024781e-06	8.89776142545e-06	3.55265894735e-06
+UniRef50_W5XBZ4	PAS domain protein	4.16287863488e-06	8.61851173863e-06	4.45563310375e-06
+UniRef50_UPI00039CC563	hypothetical protein	0.000174757768699	3.16412559058e-05	-0.000143116512793
+UniRef50_T0N5V1		1.72593549094e-05	2.93909704309e-05	1.21316155215e-05
+UniRef50_UPI0003728055	hypothetical protein	6.17977239504e-05	5.4356166552e-05	-7.4415573984e-06
+UniRef50_Q4L967	Putative acetyltransferase SH0499	3.80640803241e-05	1.79385513463e-05	-2.01255289778e-05
+UniRef50_UPI0003783400	hypothetical protein	1.21556667856e-05	2.46369815485e-05	1.24813147629e-05
+UniRef50_UPI00034B61C2	hypothetical protein	1.79852050321e-06	7.35726041413e-06	5.55873991092e-06
+UniRef50_Q9RYC2	Aminotransferase, putative	0.000101293199152	0.0466745955103	0.0465733023111
+UniRef50_A5UJP7	Chaperonin , alpha subunit	0.00306177689365	0.00182276116997	-0.00123901572368
+UniRef50_UPI00021A5DF1	PREDICTED	1.99316214089e-05	1.18040457219e-05	-8.127575687e-06
+UniRef50_I0GMV1	Electron transport complex subunit C	0.000669707825774	0.00201552245038	0.00134581462461
+UniRef50_UPI0003B4DBF3	acyl CoA dehydrogenase	4.53854004898e-06	6.88560770215e-05	6.43175369725e-05
+UniRef50_P58579	Glutathione synthetase	0.000365788317407	0.000999002374291	0.000633214056884
+UniRef50_UPI00036DBC6E	hypothetical protein	0.000209432960461	0.000632498893031	0.00042306593257
+UniRef50_P40709	Inner membrane protein YejM	0.00414448475494	0.000134336636173	-0.00401014811877
+UniRef50_UPI00037AA69B	hypothetical protein	5.49069416205e-06	8.88053878556e-06	3.38984462351e-06
+UniRef50_A8I6E1	Lysyl tRNA synthetase protein	0.000910448998771	0.000493690561734	-0.000416758437037
+UniRef50_A3CN89	Orotidine 5 phosphate decarboxylase	0.000179933449996	1.94397124692e-05	-0.000160493737527
+UniRef50_UPI00036637FB	MULTISPECIES	1.05076053952e-05	1.99784442227e-05	9.4708388275e-06
+UniRef50_G8QQL0	Succinate dehydrogenase fumarate reductase flavoprotein subunit	8.59097923129e-06	1.64054164964e-05	7.81443726511e-06
+UniRef50_Q89AR7	Superoxide dismutase [Mn]	7.77257759962e-06	2.05573013833e-05	1.27847237837e-05
+UniRef50_UPI00037AA28C	hypothetical protein	1.20728724893e-05	8.78644900506e-06	-3.28642348424e-06
+UniRef50_G4LD57	AraC family transcriptional regulator	0.000612041974393	0.000557859183363	-5.418279103e-05
+UniRef50_UPI000375BAEA	hypothetical protein	0.000103583104016	2.71536917671e-05	-7.64294122489e-05
+UniRef50_UPI0003711312	hypothetical protein	5.74177078363e-06	0.000147497532783	0.000141755761999
+UniRef50_Q8ZDL2	NADH quinone oxidoreductase subunit G	0.00669110959485	0.000861704689542	-0.00582940490531
+UniRef50_UPI00034B27B9	FAD binding molybdopterin dehydrogenase	0.000270555605268	0.00121201118887	0.000941455583602
+UniRef50_Q5HPQ8	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0154699317853	0.00709908535998	-0.00837084642532
+UniRef50_UPI00035C36B2	hypothetical protein	1.27807136539e-05	4.28277777944e-06	-8.49793587446e-06
+UniRef50_B3G2P1		0.00056815402459	0.000443530872561	-0.000124623152029
+UniRef50_D8JKW7	TetR family regulatory protein	0.000169276228183	0.00773559247469	0.00756631624651
+UniRef50_UPI00034922BA	hypothetical protein	4.24991535661e-06	2.72224734965e-05	2.29725581399e-05
+UniRef50_M9VD27	Hydrolase, alpha beta domain protein	0.000157467149615	0.0083401059594	0.00818263880979
+UniRef50_U6AJ35	Pyocin protein	0.00139582984111	0.000823342405398	-0.000572487435712
+UniRef50_B7MI93	Acetylornithine deacetylase	0.00363821018713	0.000491083417945	-0.00314712676919
+UniRef50_M3Z5Z5		5.79328322757e-06	3.76754491371e-06	-2.02573831386e-06
+UniRef50_A3DGK6	Acetylglutamate kinase	0.00514604855212	0.000230131283107	-0.00491591726901
+UniRef50_K8DMU1	Maltose phosphorylase   Trehalose phosphorylase	0.000336040939626	0.000363839883189	2.7798943563e-05
+UniRef50_C4ZLQ1	BolA family protein	2.79587068531e-05	4.45664445129e-05	1.66077376598e-05
+UniRef50_U5ACU4	ABC transporter	0.000361191151775	1.15225413098e-05	-0.000349668610465
+UniRef50_A5UMN0	Glutamyl tRNA amidotransferase subunit A	0.00377733774606	0.000429817202491	-0.00334752054357
+UniRef50_A3UFL0	GAF sensor diguanylate cyclase	4.10822025328e-05	8.77124014748e-05	4.6630198942e-05
+UniRef50_F5TJT7		5.10265798452e-05	0.000495062725525	0.00044403614568
+UniRef50_B5Y8G1	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	8.4493862904e-06	5.82291546263e-06	-2.62647082777e-06
+UniRef50_UPI0003737153	hypothetical protein	1.01041045631e-05	3.39036523184e-05	2.37995477553e-05
+UniRef50_B7MVN0		0.00174110440424	0.00253060832403	0.00078950391979
+UniRef50_Q7VI99	Arginine  tRNA ligase	0.000166448543911	0.00469595857807	0.00452951003416
+UniRef50_D3QAH6		4.14061702304e-05	4.52143907568e-05	3.8082205264e-06
+UniRef50_P0AE89	Transcriptional regulatory protein CpxR	0.00207552148755	0.00141583433699	-0.00065968715056
+UniRef50_E6RH94		3.36740489104e-05	3.62051481198e-05	2.5310992094e-06
+UniRef50_B5HHN6	Regulatory protein	0.000167771550603	0.00193550772548	0.00176773617488
+UniRef50_UPI0002657849	PREDICTED	2.08751231354e-05	2.14451829943e-05	5.700598589e-07
+UniRef50_A7MKJ4		0.00346545047247	0.00143531435073	-0.00203013612174
+UniRef50_D3QET5		0.0154798366877	0.0015716112933	-0.0139082253944
+UniRef50_UPI000317D125	hypothetical protein	1.27571085867e-05	7.83521536945e-06	-4.92189321725e-06
+UniRef50_X1FS40	Marine sediment metagenome DNA, contig	3.43879872287e-05	0.000341219143654	0.000306831156425
+UniRef50_A1B573	Allergen V5 Tpx 1 family protein	0.00796148546697	0.00209110259581	-0.00587038287116
+UniRef50_Q3IYX7	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0137277419157	0.00242642967881	-0.0113013122369
+UniRef50_UPI00036A7D45	MULTISPECIES	1.13471231213e-05	1.56048651678e-05	4.2577420465e-06
+UniRef50_T9LFH4	Toxin YeeV	5.97451720276e-06	1.61393123602e-05	1.01647951574e-05
+UniRef50_P0ADW3	Inner membrane protein YhcB	0.0164671959612	0.000444085270977	-0.0160231106902
+UniRef50_R5VVL9		0.0049773965812	0.000577616151891	-0.00439978042931
+UniRef50_Q9JUC8	Lipoyl synthase	0.00361955290894	0.00372128630819	0.00010173339925
+UniRef50_UPI00017450C8	tetratricopeptide repeat protein kinase domain protein	3.55865412403e-06	0.000119050114463	0.000115491460339
+UniRef50_P76508		0.00459062602564	0.00329269292417	-0.00129793310147
+UniRef50_E3DRH8	Fumarate reductase succinate dehydrogenase flavoprotein domain protein	9.09194369937e-06	1.61480649803e-05	7.05612128093e-06
+UniRef50_C0QI21	N acetyl gamma glutamyl phosphate reductase	1.59244804546e-05	2.20097980461e-05	6.0853175915e-06
+UniRef50_K1JLF6		0.00172562351112	0.000523147878187	-0.00120247563293
+UniRef50_P76507		0.00303260726918	0.0010133336131	-0.00201927365608
+UniRef50_Q115Z7	Holliday junction ATP dependent DNA helicase RuvB	0.0133096701415	0.0129468651524	-0.0003628049891
+UniRef50_K1E5L6	Coagulation factor 5 8 type domain containing protein	1.53402792841e-05	5.0932755955e-05	3.55924766709e-05
+UniRef50_A6M156		0.000990543801162	0.00246384196221	0.00147329816105
+UniRef50_I3TGS2		0.000127400039857	2.58772846002e-05	-0.000101522755257
+UniRef50_B6AXL4		1.9995246827e-05	6.94885137342e-06	-1.30463954536e-05
+UniRef50_Q07LR9	NLPA lipoprotein	3.20293728898e-05	1.12776645384e-05	-2.07517083514e-05
+UniRef50_M4TWI8	Response regulator	8.5083243167e-05	0.000133627468419	4.8544225252e-05
+UniRef50_S5S5I1	Alcohol dehydrogenase iron type protein	0.011034620392	0.00203531443053	-0.00899930596147
+UniRef50_UPI00030FA7EB	hypothetical protein	4.45654893596e-05	5.54734200101e-05	1.09079306505e-05
+UniRef50_R4NJ09	Alpha L Rha alpha 1,3 L rhamnosyltransferase	0.00629167432534	0.00141291879752	-0.00487875552782
+UniRef50_L9FSE1	Transposase IS66 family protein	5.96077156386e-05	6.8625434598e-05	9.0177189594e-06
+UniRef50_A8LR58		0.0025558112201	3.08872581373e-05	-0.00252492396196
+UniRef50_UPI000380D395	hypothetical protein, partial	0.000339514094407	9.26591834327e-05	-0.000246854910974
+UniRef50_R4X9Z7	Glutamate dehydrogenase	9.42144730903e-05	0.00494488207672	0.00485066760363
+UniRef50_UPI000478F011	hypothetical protein	7.23552906846e-06	2.47633462258e-05	1.75278171573e-05
+UniRef50_I4XXI7	Malonate transporter, MadM subunit	0.000482892448182	0.00761494326874	0.00713205082056
+UniRef50_Q667I7	Bifunctional uridylyltransferase uridylyl removing enzyme	0.00338999186219	0.000803711080825	-0.00258628078137
+UniRef50_UPI00041C4BFA	manganese ABC transporter substrate binding protein	9.67563100572e-06	9.68387051791e-05	8.71630741734e-05
+UniRef50_Q0TMJ7	Amidohydrolase homolog	0.000106634460129	0.00149632263408	0.00138968817395
+UniRef50_Q2YLX5	Peptidyl tRNA hydrolase	0.00253848084632	0.000836529997742	-0.00170195084858
+UniRef50_W1BF78	Dipeptide transport system permease protein DppB 	2.78279003479e-05	4.46881145938e-05	1.68602142459e-05
+UniRef50_L6WUR9	Lipoprotein	3.66457993322e-05	0.000128344243184	9.16984438518e-05
+UniRef50_UPI00031F8523	V type sodium ATP synthase subunit J	3.19525797373e-05	4.84508693346e-06	-2.71074928038e-05
+UniRef50_Q8XA44	tRNA specific adenosine deaminase	1.08406157811e-05	4.92810277164e-05	3.84404119353e-05
+UniRef50_A6W2Y7	Monosaccharide transporting ATPase	0.00324969993507	0.00068754044312	-0.00256215949195
+UniRef50_UPI00035DAB5C	transposase ISM1, partial	0.000702341719641	0.000546882787401	-0.00015545893224
+UniRef50_B3PH29	Anhydrase, family 3 protein	5.78541366732e-05	0.000127346516268	6.94923795948e-05
+UniRef50_UPI00046594C3	hypothetical protein	2.36279446315e-05	1.28197397059e-05	-1.08082049256e-05
+UniRef50_UPI00036E4560	hypothetical protein, partial	4.10241029093e-05	3.74551783544e-05	-3.5689245549e-06
+UniRef50_Q8EB10	Sulfate adenylyltransferase subunit 1	0.00456290064999	0.0110216948102	0.00645879416021
+UniRef50_A7MQT1		5.61058933288e-05	0.000194172051635	0.000138066158306
+UniRef50_W0FVK3	NAD dependent dehydrogenase	9.519142912e-05	9.81958860128e-05	3.0044568928e-06
+UniRef50_Q9Z3R8	Probable alpha glucosidase	4.19021671831e-05	2.24441766589e-05	-1.94579905242e-05
+UniRef50_A6VB08	Lipoprotein, putative	0.00133040113952	0.00145368780689	0.00012328666737
+UniRef50_A6M2Z6	Transketolase, central region	0.000198676836237	0.00256601005451	0.00236733321827
+UniRef50_Q72VJ3		3.71947635408e-05	2.25696809017e-05	-1.46250826391e-05
+UniRef50_UPI00036DBF3B	hypothetical protein	8.15454287158e-05	4.40496564858e-05	-3.749577223e-05
+UniRef50_E2Q4F7	TT_ORF1 domain containing protein	6.3928850031e-05	0.000161673432903	9.7744582872e-05
+UniRef50_U2ENE3	Periplasmic binding protein	2.85700007555e-06	2.89747831027e-05	2.61177830272e-05
+UniRef50_P28630	DNA polymerase III subunit delta	0.0020401622951	0.00122573156354	-0.00081443073156
+UniRef50_R4RC10	Isopenicillin N epimerase CefD	0.00065600996731	0.000506446714017	-0.000149563253293
+UniRef50_UPI0003B76D70	adenylylsulfate kinase	3.1760298261e-06	7.3139189832e-05	6.99631600059e-05
+UniRef50_D6ZZA5	Peptidoglycan binding domain 1 protein	1.12810292391e-05	2.02989113742e-06	-9.25113810168e-06
+UniRef50_A7X6Z3	Oxygen dependent choline dehydrogenase	0.0266450825195	0.00865869628658	-0.0179863862329
+UniRef50_F5YQ07	4Fe 4S ferredoxin, iron sulfur binding domain protein	0.00123420192642	0.00130561893988	7.141701346e-05
+UniRef50_D3HD08		0.00328721950187	0.000749590940209	-0.00253762856166
+UniRef50_UPI00028A32C2	helix turn helix domain containing protein	7.49824836922e-05	4.50891182432e-05	-2.9893365449e-05
+UniRef50_Q8QNC0	EsV 1 162	1.65057960656e-05	2.7326564325e-05	1.08207682594e-05
+UniRef50_T0QKP7		1.17471851089e-05	6.84124153347e-06	-4.90594357543e-06
+UniRef50_O52618	Nod factor export ATP binding protein I	1.15440126823e-05	5.20458689605e-05	4.05018562782e-05
+UniRef50_T2ELK1	Sulfotransferase family protein	0.000686740677595	0.0003815815323	-0.000305159145295
+UniRef50_I2E190	IS5 family transposase	6.31971948042e-05	4.82977642552e-05	-1.4899430549e-05
+UniRef50_Q9RV93		0.000331128060398	0.0226977964962	0.0223666684358
+UniRef50_UPI000467A336	glutamate synthase, partial	0.000419202229909	4.64600680883e-05	-0.000372742161821
+UniRef50_UPI0003B755FD	sugar ABC transporter permease	3.31841117064e-05	2.59186644596e-05	-7.2654472468e-06
+UniRef50_UPI00047BD144	hypothetical protein	1.69282454335e-06	2.68844048551e-06	9.9561594216e-07
+UniRef50_A8IEI6	Adenine phosphoribosyltransferase	6.2134786803e-05	6.53256005402e-05	3.1908137372e-06
+UniRef50_Q7UZP0	Lysine  tRNA ligase	6.88212749729e-06	9.59183476848e-06	2.70970727119e-06
+UniRef50_W7X3Q1	Fasciclin domain protein	0.000277577154807	6.60890074709e-05	-0.000211488147336
+UniRef50_Q84F59		0.0163657478115	0.00397942307757	-0.0123863247339
+UniRef50_Q0WLU6	NADH dehydrogenase subunit 4	6.02061209236e-05	5.99202175085e-05	-2.859034151e-07
+UniRef50_UPI00044341F7	PREDICTED	1.69861130957e-05	8.58331240898e-06	-8.40280068672e-06
+UniRef50_A6LZ49	Transcriptional regulator, LysR family	0.000246131874043	0.000392283248233	0.00014615137419
+UniRef50_UPI000371865D	hypothetical protein	7.60807085529e-06	0.000117545556005	0.00010993748515
+UniRef50_UPI000479EF00	hypothetical protein	3.73149519956e-05	3.60997969034e-05	-1.2151550922e-06
+UniRef50_L7WU99	CapB protein	0.0149037257289	0.00523064263405	-0.00967308309485
+UniRef50_B2V6Y7	Argininosuccinate lyase	3.01244571453e-05	1.96113181007e-05	-1.05131390446e-05
+UniRef50_Q4L350	Transposase for IS1272	0.00333705899427	0.00199652314501	-0.00134053584926
+UniRef50_P22350	Pyrroline 5 carboxylate reductase	0.00186415467351	0.000478086225284	-0.00138606844823
+UniRef50_F2DQI0	Predicted protein	1.08427779151e-05	1.81990559766e-05	7.3562780615e-06
+UniRef50_Q9RUB4		0.000428318283571	0.0376344763145	0.0372061580309
+UniRef50_S5YGA2		0.00241878721462	0.000885802446625	-0.001532984768
+UniRef50_G4R4C9		2.4903750192e-05	1.79583286765e-05	-6.9454215155e-06
+UniRef50_UPI00040657AE	hypothetical protein	1.11079261536e-05	9.41255083237e-05	8.30175821701e-05
+UniRef50_R5HYR6		0.000628359688057	0.000958286579861	0.000329926891804
+UniRef50_P0AET9	7 alpha hydroxysteroid dehydrogenase	0.00287892899419	0.00165411092814	-0.00122481806605
+UniRef50_I6T5H3		0.00601757293409	0.00175847886082	-0.00425909407327
+UniRef50_F8LGT0	Transcriptional regulator, DeoR family	0.00523111158419	0.00087464327345	-0.00435646831074
+UniRef50_D0FNY6		2.56885584659e-05	2.83732477631e-05	2.6846892972e-06
+UniRef50_UPI0004637F8D	hypothetical protein	6.50179921258e-05	0.000888771630704	0.000823753638578
+UniRef50_G5KUR8	Mg chelatase like protein	1.6126832959e-05	2.81428170992e-05	1.20159841402e-05
+UniRef50_W8ERS2	Histidine kinase	0.000183554770233	0.0089417606668	0.00875820589657
+UniRef50_D4HF76	Transglycosylase	0.000101002251891	0.00654308001118	0.00644207775929
+UniRef50_N0B0S7	PspA IM30	3.34235738504e-05	0.000268469732005	0.000235046158155
+UniRef50_O29399	tRNA splicing ligase RtcB	0.00384933982197	0.000703525357641	-0.00314581446433
+UniRef50_UPI000225AE96	prolipoprotein diacylglyceryl transferase	8.81528502218e-06	7.09577916565e-06	-1.71950585653e-06
+UniRef50_Q1GDV2	DNA topoisomerase 4 subunit A	0.00673900955291	0.00133738013414	-0.00540162941877
+UniRef50_Q58595	2 isopropylmalate synthase	1.4604619618e-05	5.26669404393e-06	-9.33792557407e-06
+UniRef50_J7R5F6		0.00396102861061	0.00118571883141	-0.0027753097792
+UniRef50_UPI0004665B0F	hypothetical protein	6.58385326648e-06	8.75487939531e-06	2.17102612883e-06
+UniRef50_Q5F6F8		4.15714199126e-05	0.000147211644654	0.000105640224741
+UniRef50_UPI0004246E9D	hypothetical protein	3.65810496324e-06	4.85865558552e-05	4.4928450892e-05
+UniRef50_UPI00042410AD	50S ribosomal protein L18	0.000712670454534	0.000185039029824	-0.00052763142471
+UniRef50_B9KWX6		0.00117645297998	0.000521212169004	-0.000655240810976
+UniRef50_Q91ZA3	Propionyl CoA carboxylase alpha chain, mitochondrial	9.15177534939e-06	3.35519539725e-06	-5.79657995214e-06
+UniRef50_P14853	Cytochrome c oxidase subunit 3	9.98256194566e-05	4.17520025541e-05	-5.80736169025e-05
+UniRef50_A0A028VK75	ATPase	3.24650420851e-05	1.8337368967e-05	-1.41276731181e-05
+UniRef50_Q8REG7	Phosphonates import ATP binding protein PhnC	2.58666535734e-05	1.76345514913e-05	-8.2321020821e-06
+UniRef50_A3PM78	Haloacid dehalogenase domain protein hydrolase	0.0161952996633	0.00402869674376	-0.0121666029195
+UniRef50_B1KTX4		1.03645601336e-05	7.35096575627e-06	-3.01359437733e-06
+UniRef50_UPI00026306BC	gluconate transporter	1.23955417445e-05	2.60118307435e-05	1.3616288999e-05
+UniRef50_D8TM72		2.63667171485e-06	2.45553114242e-05	2.19186397094e-05
+UniRef50_D6XXB5	TRAP transporter solute receptor, TAXI family	3.32338462253e-05	4.83950273141e-05	1.51611810888e-05
+UniRef50_S5SY81	WGR domain containing protein	3.46791339162e-05	4.07557989943e-05	6.0766650781e-06
+UniRef50_K9H593	Chromosomal replication initiator protein DnaA	8.41092831116e-05	1.32487430291e-05	-7.08605400825e-05
+UniRef50_B5FN15	Multidrug resistance protein MdtL	0.00281771296233	0.00154972262673	-0.0012679903356
+UniRef50_B1I3M7	Sulfate adenylyltransferase	5.92811319744e-05	1.77912107368e-05	-4.14899212376e-05
+UniRef50_UPI0002891CEE	hypothetical protein	4.90987109103e-06	1.22850232201e-05	7.37515212907e-06
+UniRef50_A1JJF7	LPS assembly protein LptD	0.000552942116325	7.48268678708e-05	-0.000478115248454
+UniRef50_UPI0003B5E20B	ABC transporter permease	2.38179331863e-06	6.32744767222e-05	6.08926834036e-05
+UniRef50_UPI0003506E3F		8.64111873981e-06	0.000556432354766	0.000547791236026
+UniRef50_B0RWV1		4.12396776079e-05	2.20054004199e-05	-1.9234277188e-05
+UniRef50_Q8DQD2	ADP dependent  NAD(P)H hydrate dehydratase	0.00866254544854	0.00740832900304	-0.0012542164455
+UniRef50_J7QYC7		0.00237824233763	0.000772069817495	-0.00160617252014
+UniRef50_G5QFD3	Potassium transporting ATPase B chain 	1.07988772987e-05	0.00239433550442	0.00238353662712
+UniRef50_B2TQK8	Amino acid ABC transporter, amino acid binding permease protein	0.000327299990334	0.001207208971	0.000879908980666
+UniRef50_P39315	Quinone oxidoreductase 2	0.00369091838146	0.0332097076678	0.0295187892863
+UniRef50_J1HLJ2	PF06224 family protein	1.51305418063e-05	0.00172762325925	0.00171249271744
+UniRef50_UPI000443234B	PREDICTED	8.25692135584e-06	0.000108058399255	9.98014778992e-05
+UniRef50_Q4FR51	Lon protease	0.00014241945601	0.00799614723719	0.00785372778118
+UniRef50_UPI00035C8CB7	hypothetical protein	1.8530286099e-05	9.65544700208e-05	7.80241839218e-05
+UniRef50_P42593	2,4 dienoyl CoA reductase [NADPH]	0.002154338277	0.000566652772132	-0.00158768550487
+UniRef50_UPI00035C6B06	hypothetical protein, partial	0.000169834903978	2.06035220209e-05	-0.000149231381957
+UniRef50_P77569	Mhp operon transcriptional activator	0.00276614843707	0.00224683881851	-0.00051930961856
+UniRef50_Q3IUW5	Type IV conjugative transfer system lipoprotein 	0.00905210492279	0.00210366365798	-0.00694844126481
+UniRef50_E4CEH2		1.20325682876e-05	3.00415150249e-05	1.80089467373e-05
+UniRef50_UPI000472C3D3	hypothetical protein	1.98913436727e-05	1.08255592154e-05	-9.0657844573e-06
+UniRef50_G8V705	Poly glycerophosphotransferase family protein	0.0124867629645	0.00441201281778	-0.00807475014672
+UniRef50_P96672	UPF0750 membrane protein YdeO	0.030161554109	0.0118023373196	-0.0183592167894
+UniRef50_W9A418		2.80097172331e-05	5.38109978749e-05	2.58012806418e-05
+UniRef50_Q0C269	Transcriptional regulator, LysR family	0.00168572651712	0.000229520755339	-0.00145620576178
+UniRef50_W5X6C6	NADP oxidoreductase coenzyme F420 dependent	1.38034065239e-05	2.6045564056e-05	1.22421575321e-05
+UniRef50_P0AGI3	Ribose transport system permease protein RbsC	0.00398588254333	0.00166581919939	-0.00232006334394
+UniRef50_B3M6C2	GF24314	2.86300390338e-06	3.51630115725e-05	3.23000076691e-05
+UniRef50_T2ESK7	Integrase core domain protein	0.000804781091232	0.000893709383485	8.8928292253e-05
+UniRef50_Q59939	Citrate synthase	0.0237748489526	0.0137539406738	-0.0100209082788
+UniRef50_UPI00036F2872	hypothetical protein	5.69977372716e-06	1.95042719908e-05	1.38044982636e-05
+UniRef50_A8LU90	WGR domain protein	0.000160707770732	3.47175951729e-05	-0.000125990175559
+UniRef50_W4KZV0	Glycosyltransferase Gtf1	0.0268611872437	0.00836474990691	-0.0184964373368
+UniRef50_UPI0003074063	hypothetical protein	2.10445834887e-06	0.000138793589991	0.000136689131642
+UniRef50_P71082	Putative multidrug export ATP binding permease protein YgaD	0.0220007146912	0.00680196635461	-0.0151987483366
+UniRef50_A5WHZ1	Flavoprotein involved in K+ transport like protein	3.81984443328e-06	0.000875207158214	0.000871387313781
+UniRef50_UPI0003C116D2		0.000267446462033	1.28363987929e-05	-0.00025461006324
+UniRef50_Q8CN53	Antiholin like protein LrgB	0.0122743204635	0.000531253146621	-0.0117430673169
+UniRef50_Q02432	Chlorophyllide reductase 52.5 kDa chain	0.00263846058768	0.00057853276274	-0.00205992782494
+UniRef50_A7ZII5	Protoheme IX farnesyltransferase	0.00409059364019	0.000441892508331	-0.00364870113186
+UniRef50_UPI0004688FC2	cytochrome C biogenesis protein	4.29874587395e-05	0.000120615993409	7.76285346695e-05
+UniRef50_Q2P0E2	ISXoo4 transposase	5.42580909954e-06	1.98191545558e-05	1.43933454563e-05
+UniRef50_G7U8S7	Siderophore interacting protein	0.000153034860351	0.00507444785627	0.00492141299592
+UniRef50_D7BMW7	Portal protein	8.08370020024e-06	6.40715828389e-05	5.59878826387e-05
+UniRef50_UPI0004754826	hypothetical protein	1.12647225466e-05	1.47943447565e-05	3.5296222099e-06
+UniRef50_D3QH70		0.00527247314546	0.0033343880484	-0.00193808509706
+UniRef50_UPI0004707087	amino acid ABC transporter permease	1.67111281574e-05	1.64407915099e-05	-2.703366475e-07
+UniRef50_A5WH07	UPF0313 protein PsycPRwf_2008	6.03977582125e-05	0.00873841225987	0.00867801450166
+UniRef50_H7CWQ5	ABC transporter, permease ATP binding protein	7.58511699003e-05	0.000912489214596	0.000836638044696
+UniRef50_N0B4L4	40 residue YVTN family beta propeller repeat protein	0.000224455100741	2.31086379521e-05	-0.000201346462789
+UniRef50_Q5V468	Succinyl CoA	4.95165037583e-06	4.82212731119e-05	4.32696227361e-05
+UniRef50_Q12545	3 isopropylmalate dehydrogenase	3.15730771617e-05	2.6267715002e-05	-5.3053621597e-06
+UniRef50_F8DJT3	Phosphorylase family	0.0114088337284	0.000722241942049	-0.0106865917864
+UniRef50_Q044B7	Translation initiation factor IF 2	0.00938742386886	0.00153867335731	-0.00784875051155
+UniRef50_F0P650	Ribonuclease BN like family protein	0.0197977634555	0.00761372803618	-0.0121840354193
+UniRef50_K0B0P3		0.00164516223593	0.00125893229574	-0.00038622994019
+UniRef50_E6CDL3		0.00119582628827	0.00321641053183	0.00202058424356
+UniRef50_K7S3L7	Putative glucoamylase S1 S2	3.86064887448e-05	5.64289884223e-05	1.78224996775e-05
+UniRef50_UPI000410322D	hypothetical protein	1.18331236068e-05	5.45620597643e-05	4.27289361575e-05
+UniRef50_C4LJY7	Glutamate racemase	4.80674874383e-06	3.04920371019e-05	2.56852883581e-05
+UniRef50_UPI00026292D1	oligopeptide dipeptide ABC transporter ATPase, partial	2.71110955519e-05	8.32355046718e-05	5.61244091199e-05
+UniRef50_H4BLQ2	Pyrimidine specific ribonucleoside hydrolase rihA	0.00160529200563	0.000285330149942	-0.00131996185569
+UniRef50_P0AEJ1	Multidrug export protein EmrB	0.00454750177625	0.00567373455482	0.00112623277857
+UniRef50_UPI0000056230	50S ribosomal protein L22	2.30049205596e-05	6.47734098579e-05	4.17684892983e-05
+UniRef50_P0AFK8	Spermidine putrescine transport system permease protein PotC	0.0049891954939	0.000671866591673	-0.00431732890223
+UniRef50_U1F6C3	Adhesion protein associated protein	6.78222023223e-06	7.75800965063e-05	7.07978762741e-05
+UniRef50_UPI00026291F3	3 5 exonuclease	0.000103992161944	4.84271330301e-05	-5.55650289139e-05
+UniRef50_UPI0002D58150	hypothetical protein	5.52757664424e-05	2.16218054421e-05	-3.36539610003e-05
+UniRef50_F0MXQ2	Type IV pilus assembly protein PilC	0.000200322740068	0.00296918977238	0.00276886703231
+UniRef50_Q9ZKM0	Putative	0.000158830009337	0.00476126313204	0.0046024331227
+UniRef50_K8E4E7	Metallo beta lactamase superfamily protein	0.000102920186949	1.39722942537e-05	-8.89478926953e-05
+UniRef50_F0KHD0		0.000141017584923	9.59976139252e-05	-4.50199709978e-05
+UniRef50_V4ZPA3		1.17947395895e-05	1.67846203333e-05	4.9898807438e-06
+UniRef50_C2VC63	Fructose bisphosphate aldolase, class II	0.000252217809923	0.000458815576904	0.000206597766981
+UniRef50_UPI00041FD2D5	hypothetical protein	4.31957227538e-05	0.000144203889018	0.000101008166264
+UniRef50_UPI00034AB6AD	ABC transporter	6.7995594094e-06	8.03926991618e-05	7.35931397524e-05
+UniRef50_UPI0004706166	fusaric acid resistance protein, partial	4.57437543562e-06	4.88931289523e-05	4.43187535167e-05
+UniRef50_P44940	Putative acid  amine ligase HI_0929	9.83036429352e-05	0.0079963170838	0.00789801344086
+UniRef50_Q54E41	Hydroxyacid oxidase	4.06618197875e-06	4.08986489175e-05	3.68324669388e-05
+UniRef50_UPI0002D41DEC	protoheme IX farnesyltransferase	5.6675087087e-06	1.0039448289e-05	4.3719395803e-06
+UniRef50_UPI0004757165	phosphate acetyltransferase	3.87306574496e-06	1.42193108073e-05	1.03462450623e-05
+UniRef50_K2EIZ6		5.89657995632e-05	1.45873730064e-05	-4.43784265568e-05
+UniRef50_A3PJ18	UDP glucose pyrophosphorylase	0.00516621473399	0.000725866773884	-0.00444034796011
+UniRef50_A0A024DE18	Pyruvate dehydrogenase	0.00453337581121	0.00455614115135	2.276534014e-05
+UniRef50_G7U623	Major facilitator superfamily permease	0.000320059257349	0.00447557946953	0.00415552021218
+UniRef50_UPI000373646F	hypothetical protein	8.36053778427e-05	1.1413501316e-05	-7.21918765267e-05
+UniRef50_UPI000350E784		3.01512317583e-05	4.43599348034e-05	1.42087030451e-05
+UniRef50_P0A9U1		0.00447154575327	0.00139357662439	-0.00307796912888
+UniRef50_UPI000476EE69	ArsR family transcriptional regulator	4.22195450058e-05	1.56270152851e-05	-2.65925297207e-05
+UniRef50_P0A9U5		0.00417942677078	0.00498131284816	0.00080188607738
+UniRef50_Q5KWI5	Ribonuclease PH	2.76644773432e-05	0.00131821815388	0.00129055367654
+UniRef50_T0JW92		0.0104594235933	0.0099894971916	-0.0004699264017
+UniRef50_UPI000378D30F	hypothetical protein	0.000177119950835	5.26650876341e-05	-0.000124454863201
+UniRef50_Q58989	Phosphoserine phosphatase	8.11655341737e-06	1.5058154654e-05	6.94160123663e-06
+UniRef50_B8KMG5	Transposase, IS4 family protein	5.07143328158e-05	2.84763334279e-05	-2.22379993879e-05
+UniRef50_S1EIE9		2.1425023898e-05	5.67956537263e-05	3.53706298283e-05
+UniRef50_UPI00031BB00E	hypothetical protein	3.43580704297e-06	5.31265247583e-06	1.87684543286e-06
+UniRef50_C0PC97		0.000151899916197	2.6793677521e-05	-0.000125106238676
+UniRef50_P42799	Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic	0.0206749201848	0.00560104593801	-0.0150738742468
+UniRef50_Q5HPM8	Surface lipoprotein related protein	0.00671119758549	0.000786006285432	-0.00592519130006
+UniRef50_A6M2Q9	Helicase, putative	0.000406663890798	0.00166458872794	0.00125792483714
+UniRef50_P77427		0.00636375824535	0.00344453904327	-0.00291921920208
+UniRef50_X5WUC6		1.45914964006e-05	4.28321461132e-05	2.82406497126e-05
+UniRef50_C5QZ07		0.0168506349734	0.00123909107075	-0.0156115439026
+UniRef50_Q4LC37	TraU protein	0.000146618981347	3.43954391347e-05	-0.000112223542212
+UniRef50_M0SF49		8.42492305231e-05	0.00076251765894	0.000678268428417
+UniRef50_UPI00046CC98D	hypothetical protein	4.47163154342e-05	3.1167390124e-05	-1.35489253102e-05
+UniRef50_A3PIL0	TonB dependent receptor	0.00259910691639	0.00132761718439	-0.001271489732
+UniRef50_R8A8K0		0.000182911510156	2.86068806048e-05	-0.000154304629551
+UniRef50_UPI0003C1AE3D	PREDICTED	0.000290913755577	0.000260486180146	-3.0427575431e-05
+UniRef50_A9MJT7	Membrane protein insertase YidC	0.00373025938568	0.00147585294482	-0.00225440644086
+UniRef50_M9VCF0	Dolichyl phosphate mannose protein mannosyltransferase	0.000111025290843	0.00542324650924	0.0053122212184
+UniRef50_W8YLC5		0.000228822111516	0.00152838058925	0.00129955847773
+UniRef50_UPI0002375397	NAD dependent dehydratase	1.05495154676e-05	4.29256429273e-05	3.23761274597e-05
+UniRef50_F0YP70		5.8403121334e-05	6.19487132037e-05	3.5455918697e-06
+UniRef50_A6LVH3	Methyl accepting chemotaxis sensory transducer	0.000284506683835	0.00136683592307	0.00108232923924
+UniRef50_P23482	Hydrogenase 4 component B	0.00430052573431	0.00132803842956	-0.00297248730475
+UniRef50_F0Y482	Expressed protein 	0.000499429150894	0.000877005167979	0.000377576017085
+UniRef50_C4Z7U3	Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase	0.000692708706018	0.00161887257858	0.000926163872562
+UniRef50_O74942	Peptidyl prolyl cis trans isomerase 9	3.42213777703e-06	3.54338181548e-06	1.2124403845e-07
+UniRef50_W6RRV7	Magnesium transporter, CorA family	0.000318246165192	0.000199313861778	-0.000118932303414
+UniRef50_O33952	UDP glucose 6 dehydrogenase	0.00274513517939	0.004425699855	0.00168056467561
+UniRef50_UPI000392EF25	PREDICTED	3.35425704612e-06	2.0364169556e-05	1.70099125099e-05
+UniRef50_H8GU00	Peptidyl prolyl cis trans isomerase	0.00039596432397	0.0475116707915	0.0471157064675
+UniRef50_UPI0004700EA0	urocanate hydratase, partial	1.51311252485e-05	2.14046922389e-05	6.2735669904e-06
+UniRef50_G7MD42	PHP domain protein	0.000171584540393	0.00131270991032	0.00114112536993
+UniRef50_R4ZPM4	Cell wall surface anchor family protein	0.000917223072168	0.000135881919561	-0.000781341152607
+UniRef50_Q17VD8	Complete genome, strain Sheeba	7.88070957963e-05	0.00379601802801	0.00371721093221
+UniRef50_U0FZ44		8.38539003978e-05	3.42518586568e-05	-4.9602041741e-05
+UniRef50_C6SMN5		3.99938220839e-05	0.00056936897477	0.000529375152686
+UniRef50_I4EB03		0.000974197939926	0.00076705637713	-0.000207141562796
+UniRef50_UPI0003000992	hypothetical protein	5.79721264155e-05	4.64308209259e-05	-1.15413054896e-05
+UniRef50_P37630	Inner membrane protein YhiM	0.00168355501581	0.00077337651489	-0.00091017850092
+UniRef50_P62457	Histidinol dehydrogenase	4.04931564807e-06	5.94466657252e-06	1.89535092445e-06
+UniRef50_A3DIZ5	DNA directed RNA polymerase subunit beta	4.42242688008e-06	5.35491146355e-06	9.3248458347e-07
+UniRef50_UPI000479E680	FIST domain containing protein	3.99281326592e-06	5.90085750876e-06	1.90804424284e-06
+UniRef50_E9CGB4	Acyl CoA dehydrogenase	0.000261179896422	0.00453793483554	0.00427675493912
+UniRef50_P18949	Cystathionine beta lyase	0.00315150051396	0.00174372783898	-0.00140777267498
+UniRef50_R9DK57		0.00177107447034	0.00177190023117	8.2576083e-07
+UniRef50_Q67MT5	Peptide chain release factor 3	0.0269745585661	0.0156042547514	-0.0113703038147
+UniRef50_P77526	Disulfide bond oxidoreductase YfcG	0.00320530481829	0.000481494628027	-0.00272381019026
+UniRef50_H8FYF0		0.000126889792417	0.0001511926604	2.4302867983e-05
+UniRef50_C1F2I6	Metallo beta lactamase family protein	4.72678641906e-06	0.000144945952648	0.000140219166229
+UniRef50_N3SI82		6.96715965178e-05	0.000326121270881	0.000256449674363
+UniRef50_UPI0003B41E49	lactose phosphotransferase system repressor	8.76831007685e-06	2.59562911509e-05	1.7187981074e-05
+UniRef50_M0YT93		4.83187260919e-05	5.80663959685e-05	9.7476698766e-06
+UniRef50_Q2FF88	Accessory gene regulator protein B	0.00517729525747	0.00100538030667	-0.0041719149508
+UniRef50_O52376	Thiol	0.000178903312256	0.000325119308468	0.000146215996212
+UniRef50_A7FJ95		0.00315869328292	0.00312720690777	-3.148637515e-05
+UniRef50_UPI0003826EC3	hypothetical protein	1.42553205343e-05	1.60760342414e-05	1.8207137071e-06
+UniRef50_O06456	N5 carboxyaminoimidazole ribonucleotide mutase	0.000409452414595	0.00222783185919	0.00181837944459
+UniRef50_Q8CQE0	Galactosamine containing minor teichoic acid biosynthesis protein	0.00945522039515	0.00238012943504	-0.00707509096011
+UniRef50_UPI0003C1158B		1.16455332131e-05	1.06438965085e-05	-1.0016367046e-06
+UniRef50_UPI00037E8C2C	hypothetical protein	3.06378498639e-06	1.21123342843e-05	9.04854929791e-06
+UniRef50_F0RKJ6	Transposase IS4 family protein	0.00427372358825	0.871496431206	0.867222707618
+UniRef50_J8VEE3	Plasmid pRiA4b ORF 3 like protein	0.000370357774747	7.43621022499e-05	-0.000295995672497
+UniRef50_B7MNC1	Ribosomal RNA small subunit methyltransferase C	0.00312178913159	0.00131068876385	-0.00181110036774
+UniRef50_Q49WJ7	Bifunctional purine biosynthesis protein PurH	8.86602575264e-06	1.02267683366e-05	1.36074258396e-06
+UniRef50_UPI00005C7E8C	hypothetical protein	0.0124749400872	0.00272922113577	-0.00974571895143
+UniRef50_Q4FMW8	GMP synthase [glutamine hydrolyzing]	6.48587772557e-06	0.00457245723309	0.00456597135536
+UniRef50_E0NC31		0.000959710141151	0.000329570359183	-0.000630139781968
+UniRef50_A7WZ80	Putative antiporter subunit mnhE2	0.0230557001751	0.00192880236101	-0.0211268978141
+UniRef50_UPI00036BF214	hypothetical protein	3.98175603579e-05	9.36164526744e-05	5.37988923165e-05
+UniRef50_P63651	Probable succinyl CoA	6.75436559509e-05	9.40602551564e-05	2.65165992055e-05
+UniRef50_UPI0003AB3DEF	hypothetical protein	4.66826366622e-05	2.345354503e-05	-2.32290916322e-05
+UniRef50_R4R8Z7	Rhs family protein	0.00197923249357	0.000508051146677	-0.00147118134689
+UniRef50_UPI000471A1D9	branched chain amino acid transporter II carrier protein	2.16251055637e-05	8.2264918714e-06	-1.33986136923e-05
+UniRef50_UPI00046FA3C6	hypothetical protein	1.13205205058e-05	6.48459643173e-06	-4.83592407407e-06
+UniRef50_UPI00047136FE	hypothetical protein	3.50774152836e-05	1.57386658726e-05	-1.9338749411e-05
+UniRef50_B2V995	Protease HtpX homolog	0.000265368097293	0.0012064799108	0.000941111813507
+UniRef50_K7YQ94		0.000149615584159	0.00313043664521	0.00298082106105
+UniRef50_Q6LU24	Phosphoribosylformylglycinamidine synthase	1.18064922724e-05	8.29883450018e-06	-3.50765777222e-06
+UniRef50_Q3IWC2		0.00281554618479	0.00169401577093	-0.00112153041386
+UniRef50_D0Z2D3		4.11723962756e-06	1.36034314392e-06	-2.75689648364e-06
+UniRef50_R8ZFX9		0.000920697533784	0.000723224584158	-0.000197472949626
+UniRef50_A3PQQ0	GCN5 related N acetyltransferase	0.000541910816138	0.000751668921763	0.000209758105625
+UniRef50_A0A058Z6L2		5.75771898761e-05	0.000116266419368	5.86892294919e-05
+UniRef50_Q8CNV6	Smooth muscle caldesmon	0.00486611404903	0.00195886224467	-0.00290725180436
+UniRef50_UPI00037E8BDB	hypothetical protein	4.39000968191e-06	1.50908533185e-05	1.07008436366e-05
+UniRef50_UPI00036ED2AC	hypothetical protein	3.21455397372e-06	6.21796107984e-06	3.00340710612e-06
+UniRef50_S5XSF5	Nitrilotriacetate monooxygenase family FMN dependent	0.000379713282874	0.000180254347023	-0.000199458935851
+UniRef50_J5PQD7		5.30414795111e-05	4.5425061136e-05	-7.6164183751e-06
+UniRef50_A0A022S8H0	Export membrane family protein	2.7375729983e-05	5.47673915852e-05	2.73916616022e-05
+UniRef50_O07002	Aspartate proton symporter	8.86811250236e-05	0.009474006699	0.00938532557398
+UniRef50_UPI0002FCB073	hypothetical protein	7.51329904929e-06	4.97449641589e-05	4.22316651096e-05
+UniRef50_A5UK56	Arginine biosynthesis bifunctional protein ArgJ	0.00191873740922	0.00190796007487	-1.077733435e-05
+UniRef50_U5MQZ5		0.000670253571197	0.00175372810923	0.00108347453803
+UniRef50_Q3JUT4		0.000195875822572	2.82900307522e-05	-0.00016758579182
+UniRef50_U6FWJ6	SdrH protein	7.37232847333e-06	1.20544441243e-05	4.68211565097e-06
+UniRef50_UPI00037A959D	hypothetical protein	8.98398331053e-06	2.06452220273e-05	1.16612387168e-05
+UniRef50_V6QG63	Integrase	0.340495265028	0.114492453346	-0.226002811682
+UniRef50_A2RFC7	ATP synthase subunit a	0.000181774954504	0.00118928529676	0.00100751034226
+UniRef50_D3QCQ2	Ferric uptake regulation protein FUR	0.0227315782888	0.00494963994773	-0.0177819383411
+UniRef50_UPI000311159F	hypothetical protein	2.42489382401e-05	8.50752791715e-06	-1.5741410323e-05
+UniRef50_Q5HKX7	Glycosyl transferase, group 1 family protein	0.00911407783292	0.00357043674433	-0.00554364108859
+UniRef50_Q67N36	Aminomethyltransferase	4.53434975293e-05	0.00028568963967	0.000240346142141
+UniRef50_P42096	Protein LacX, chromosomal	0.00374587985865	0.00165523416637	-0.00209064569228
+UniRef50_C2LZG9	Transcriptional regulator, PadR family	9.82532889278e-05	0.000540069447397	0.000441816158469
+UniRef50_A0A022FMT2		0.000113855603187	2.34909539014e-05	-9.03646492856e-05
+UniRef50_Q6NDQ0	sn glycerol 3 phosphate import ATP binding protein UgpC	0.00011924982064	5.38699017568e-05	-6.53799188832e-05
+UniRef50_G4LIM7	3 hydroxyacyl CoA dehydrogenase NAD binding subunit	0.000118706285809	0.000150671788373	3.1965502564e-05
+UniRef50_X1PRM6	Marine sediment metagenome DNA, contig	1.98981235626e-05	3.39402990781e-05	1.40421755155e-05
+UniRef50_I6G892	HTH type transcriptional regulator AdiY domain protein	4.07802318573e-06	1.20924809573e-05	8.01445777157e-06
+UniRef50_Q7M8H4	7 cyano 7 deazaguanine synthase	1.71209854195e-05	2.88239751146e-05	1.17029896951e-05
+UniRef50_P51763	Reaction center protein M chain	0.0118997366126	0.0028989646317	-0.0090007719809
+UniRef50_I0C0V7	Multidrug resistance efflux pump	0.0143810148794	0.00286481722427	-0.0115161976551
+UniRef50_UPI0003B40FE5	membrane protein	1.01575227073e-05	2.86329163576e-05	1.84753936503e-05
+UniRef50_Q39ZB4	NADH quinone oxidoreductase subunit I 1	6.16906823588e-05	9.05301873108e-05	2.8839504952e-05
+UniRef50_P0ACM7		0.00181380880315	0.00259337466179	0.00077956585864
+UniRef50_Q8ZT92	GMP synthase [glutamine hydrolyzing]	1.16401488397e-05	1.75574987619e-05	5.9173499222e-06
+UniRef50_E4GGL7	HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein	0.000173689872173	0.00513727960718	0.00496358973501
+UniRef50_C3EUD3		0.000826858130036	0.00081618149141	-1.0676638626e-05
+UniRef50_P42360		0.00542758992229	0.00562067849748	0.00019308857519
+UniRef50_UPI0003725E3A	hypothetical protein	4.81687860299e-05	0.00120899684931	0.00116082806328
+UniRef50_T0Z4X5		1.95129377807e-05	2.02479324225e-05	7.349946418e-07
+UniRef50_UPI0003A412EC	hypothetical protein	2.38001694506e-06	3.87066651267e-06	1.49064956761e-06
+UniRef50_U6ANF3		0.000718193585248	0.000309772767695	-0.000408420817553
+UniRef50_UPI0004704A43	hydroxyethylthiazole kinase	4.37833872865e-06	6.71846892307e-06	2.34013019442e-06
+UniRef50_D8ACP8		0.000498197140088	0.000538571498834	4.0374358746e-05
+UniRef50_Q7A7G4		0.0467306695097	0.00811540816471	-0.038615261345
+UniRef50_P37351	Ribose 5 phosphate isomerase B	0.00615641821572	0.00721498487204	0.00105856665632
+UniRef50_F2ENL3		1.23294685411e-05	1.85918619296e-05	6.2623933885e-06
+UniRef50_UPI0002D4EE34	hypothetical protein	3.02069634802e-05	2.45073141908e-05	-5.6996492894e-06
+UniRef50_UPI00037CDEEA	hypothetical protein	3.56144046778e-05	5.57240743102e-05	2.01096696324e-05
+UniRef50_P39176	Probable L,D transpeptidase ErfK SrfK	0.00348394284473	0.00284713635616	-0.00063680648857
+UniRef50_V4QXI1	AMP binding protein	1.16985549064e-05	7.15839379637e-06	-4.54016111003e-06
+UniRef50_E1NTN7		4.88442278438e-05	1.77971188191e-05	-3.10471090247e-05
+UniRef50_L7U7P5	PT repeat DnaJ domain containing protein	6.00408038037e-06	8.06888900044e-06	2.06480862007e-06
+UniRef50_J5KRR9		0.000101632535199	0.000185567090397	8.3934555198e-05
+UniRef50_A6LTF1	YodP	0.0006669567196	0.000917857565392	0.000250900845792
+UniRef50_UPI0003F9ADEE	hypothetical protein	2.83977218502e-05	7.6415692039e-05	4.80179701888e-05
+UniRef50_Q9KTK8	tRNA sulfurtransferase	0.007127516305	0.000632190111243	-0.00649532619376
+UniRef50_D2S427	LigA	5.71206999427e-05	0.000480643688481	0.000423522988538
+UniRef50_UPI0002D844FC	hypothetical protein	0.000336650147472	7.16804902958e-05	-0.000264969657176
+UniRef50_UPI00037FB4E4	hypothetical protein	4.93765590195e-06	1.50746208874e-06	-3.43019381321e-06
+UniRef50_UPI0004270BC7	hypothetical protein	1.01205177747e-05	1.12415530168e-05	1.1210352421e-06
+UniRef50_Q0K7P2	ABC type transporter, ATPase component	0.00114980559286	0.000987185526324	-0.000162620066536
+UniRef50_D0MEX8	FAD dependent oxidoreductase	7.84794155617e-05	0.0225019104155	0.0224234309999
+UniRef50_B7LTE9	Transporter	1.90214857557e-05	6.9348195183e-06	-1.20866662374e-05
+UniRef50_UPI00030DD9C9	hypothetical protein	2.71494169217e-05	3.1086703741e-05	3.9372868193e-06
+UniRef50_G2TPA3	PfkB domain protein	0.000245120771981	0.0022918118216	0.00204669104962
+UniRef50_Q9VM33	Elongation factor G, mitochondrial	7.81991071876e-06	3.92191805353e-06	-3.89799266523e-06
+UniRef50_O31248	Peptidyl prolyl cis trans isomerase  (Rotamase)	0.000187506171368	0.00768826125224	0.00750075508087
+UniRef50_P13656	Probable bifunctional chitinase lysozyme	0.000309418910305	7.6705637713e-05	-0.000232713272592
+UniRef50_G9AU18		0.00034796642424	7.12848869907e-05	-0.000276681537249
+UniRef50_D3E347		0.000566232522232	0.00061738684013	5.1154317898e-05
+UniRef50_D3E1C8	Hydrolase HAD superfamily	0.00458072974067	0.000463735485513	-0.00411699425516
+UniRef50_P33941	ABC transporter ATP binding protein YojI	0.00153226538779	0.000444785353012	-0.00108748003478
+UniRef50_X6DV46		0.000568701744273	0.00012064113701	-0.000448060607263
+UniRef50_UPI0003B521C3	cytochrome C biogenesis protein	4.07808394097e-05	0.000192002172122	0.000151221332712
+UniRef50_E6MXZ6	Exonuclease, DNA polymerase III, epsilon subunit	0.000333057942696	0.00321163670353	0.00287857876083
+UniRef50_E7DWP7	WdaG	0.000185000346112	2.61925899583e-05	-0.000158807756154
+UniRef50_M4YXM1	Cell division protein FtsX	0.00402878123008	0.00174187812226	-0.00228690310782
+UniRef50_D8JH95	ABC transporter family protein	9.87321679628e-05	0.0062230426131	0.00612431044514
+UniRef50_A3PIS2		0.0126556561302	0.00334320798334	-0.00931244814686
+UniRef50_P76085	Phenylacetate coenzyme A ligase	0.00348159402361	0.00645734179598	0.00297574777237
+UniRef50_P0AEG3	Dipeptide transport system permease protein DppC	0.00382370326485	0.000846996592862	-0.00297670667199
+UniRef50_A6NPX7		2.94773550239e-05	1.24306693792e-05	-1.70466856447e-05
+UniRef50_B7IJP9	Probable manganese dependent inorganic pyrophosphatase	0.0220385364733	0.00414181365992	-0.0178967228134
+UniRef50_A9KFA0	Ribonuclease 3	7.19583834191e-06	1.91850239598e-05	1.19891856179e-05
+UniRef50_I0JK39		0.000140155688933	0.000458139504879	0.000317983815946
+UniRef50_U5MPS5	Acetyltransferase	0.000241462252992	0.000373031627616	0.000131569374624
+UniRef50_U5UQU4	TetR family transcriptional regulator	0.00784496537669	0.000329349485352	-0.00751561589134
+UniRef50_N1N5F7	Clumping factor ClfB, fibrinogen binding protein	4.65457446223e-05	8.75444778166e-05	4.09987331943e-05
+UniRef50_P71237	Putative colanic acid biosynthesis glycosyl transferase WcaC	0.0018559679204	0.000910964758709	-0.000945003161691
+UniRef50_UPI00036F4FFA	hypothetical protein	5.50707252338e-05	1.72251895581e-05	-3.78455356757e-05
+UniRef50_P39830	Inner membrane protein YbaL	0.00380738246987	0.000508316790971	-0.0032990656789
+UniRef50_F8DI48	Cytoplasmic alpha amylase	0.00660532032062	0.00343393571422	-0.0031713846064
+UniRef50_UPI0003B686EF	hypothetical protein	3.9335523464e-05	0.000130407717908	9.1072194444e-05
+UniRef50_Q5HRM6	PIN domain protein	0.0145722666425	0.00317355799789	-0.0113987086446
+UniRef50_A0RH88	tRNA dimethylallyltransferase	1.22169338261e-05	0.000728461723526	0.0007162447897
+UniRef50_Q83FR2	Hexulose 6 phosphate synthase	0.000173956676891	0.00461536800775	0.00444141133086
+UniRef50_C5W449		0.00367160193727	0.000793589111246	-0.00287801282602
+UniRef50_B6VLA0		3.11625000867e-06	5.61482663574e-06	2.49857662707e-06
+UniRef50_B7MGB3	D galactonate dehydratase	0.00022368293636	0.000152750019926	-7.0932916434e-05
+UniRef50_G8RA51	Exotoxin 15	0.01095422475	0.00433777186573	-0.00661645288427
+UniRef50_UPI000248470C	hemolysin type calcium binding region	4.32758235328e-05	1.10390279212e-05	-3.22367956116e-05
+UniRef50_A7IPS8	ParB domain protein nuclease	0.000104832309532	1.92018643122e-05	-8.56304452198e-05
+UniRef50_A3PSB0		0.00371338731486	0.000880668731604	-0.00283271858326
+UniRef50_C4ZYY9	HTH type transcriptional regulator YidZ	0.0024083939575	0.000572870158602	-0.0018355237989
+UniRef50_A3PR77	Major facilitator superfamily MFS_1	0.00533483320643	0.00130158375924	-0.00403324944719
+UniRef50_D4HCV0	FAD linked oxidase, C terminal domain protein	0.000337950167046	0.00572166321347	0.00538371304642
+UniRef50_E8SIU9	Phosphate regulon sensor protein PhoR SphS	0.0186450848692	0.00662723171096	-0.0120178531582
+UniRef50_G7U4H3		0.000870376173622	0.00913563313681	0.00826525696319
+UniRef50_B3H2W6	RNA pyrophosphohydrolase	0.02035591341	0.000439677476724	-0.0199162359333
+UniRef50_Q47SB4	3 isopropylmalate dehydrogenase	9.37601209206e-05	0.000270034028822	0.000176273907901
+UniRef50_S5CRE9		0.000470740409928	0.00981397533082	0.00934323492089
+UniRef50_K4KJS3	Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.000178339837253	0.00505187568862	0.00487353585137
+UniRef50_Q1B492	LigA	3.62434192937e-06	0.000199620239258	0.000195995897329
+UniRef50_U3STE7		0.00368500366505	0.000296800708731	-0.00338820295632
+UniRef50_M9VIL3		0.00010544301365	0.00721478848789	0.00710934547424
+UniRef50_I0C1G5	SIR2 family protein	0.0149109102003	0.00455407993982	-0.0103568302605
+UniRef50_H8H8S2	ABC transport system permease	0.000343716196778	0.00301894934907	0.00267523315229
+UniRef50_Q2T751	Taurine import ATP binding protein TauB	2.18686184419e-05	1.18088977163e-05	-1.00597207256e-05
+UniRef50_D6TV92	ATPase	9.92791472557e-07	2.33964619527e-06	1.34685472271e-06
+UniRef50_UPI0002557200	2 nitropropane dioxygenase	8.3740781244e-05	8.11484121652e-05	-2.5923690788e-06
+UniRef50_X1J3J4	Marine sediment metagenome DNA, contig	6.18713133906e-06	4.57098792142e-05	3.95227478751e-05
+UniRef50_R1DBP2		4.76785465843e-05	0.00271453924715	0.00266686070057
+UniRef50_C5Z1P3		0.00182510547351	0.000634218855091	-0.00119088661842
+UniRef50_Q972W3	Urease accessory protein UreG	0.000373471097578	0.00309051314972	0.00271704205214
+UniRef50_B8LZL2		7.53780234808e-06	1.53612126377e-05	7.82341028962e-06
+UniRef50_Q9UVC0	Glyceraldehyde 3 phosphate dehydrogenase	1.74288279122e-05	2.82863309712e-05	1.0857503059e-05
+UniRef50_G0EU06		2.90189864788e-05	5.60601499892e-05	2.70411635104e-05
+UniRef50_V4RI55	Pirin domain protein	3.64266539258e-05	1.00310700359e-05	-2.63955838899e-05
+UniRef50_Q2LQN4	Glutamate  tRNA ligase 1	3.7248495557e-06	1.23336278964e-05	8.6087783407e-06
+UniRef50_E8XZE4		7.74228935449e-06	1.19695568317e-05	4.22726747721e-06
+UniRef50_P0AAV9	Putative isomerase YbhH	0.00406045425313	0.000941470031499	-0.00311898422163
+UniRef50_Q04MW7	Argininosuccinate synthase	3.85897195451e-06	5.04172335607e-05	4.65582616062e-05
+UniRef50_K0AYA8	Bifunctional chorismate mutase prephenate dehydratase	0.000307959690379	0.000226585707308	-8.1373983071e-05
+UniRef50_A6LVB7		0.000124369773306	0.00084004571323	0.000715675939924
+UniRef50_Q08NW1		3.01908282191e-05	2.20416803253e-06	-2.79866601866e-05
+UniRef50_U5MUC9	Cyclic di GMP phosphodiesterase response regulator RpfG	0.000169276228183	0.00293056635321	0.00276129012503
+UniRef50_P13518	RNase E specificity factor CsrD	0.00270523577673	0.000966616504477	-0.00173861927225
+UniRef50_UPI0004762DA1	acetate permease, partial	0.000117064957277	0.000222839171496	0.000105774214219
+UniRef50_A3JZH8		0.000240350261531	3.44913502691e-05	-0.000205858911262
+UniRef50_A5UJJ6	Predicted CRISPR associated protein	0.00289384722685	0.000142895179933	-0.00275095204692
+UniRef50_B0V8Z8	ATP dependent dsDNA exonuclease 	3.23651890987e-05	0.00266649832585	0.00263413313675
+UniRef50_Q5HP88	Probable ATP dependent helicase DinG homolog	0.0192091188015	0.00526460941745	-0.013944509384
+UniRef50_E8PIL7	Rossmann fold nucleotide binding protein	0.000101202677982	0.0080634397514	0.00796223707342
+UniRef50_UPI0004422EE7	PREDICTED	2.37848299677e-06	3.80944178882e-05	3.57159348914e-05
+UniRef50_E3YUW5		0.000234250633169	0.0013374323091	0.00110318167593
+UniRef50_P75691	Aldehyde reductase YahK	0.00276580565744	0.00830423302692	0.00553842736948
+UniRef50_V1QTW1		0.00331640875209	0.00125451616966	-0.00206189258243
+UniRef50_UPI0004646ABC	MULTISPECIES	0.000278058394687	5.64464571438e-05	-0.000221611937543
+UniRef50_UPI0004769729	thioesterase	1.83598123204e-05	3.33894051787e-05	1.50295928583e-05
+UniRef50_R6Q2D0	Iron only hydrogenase maturation protein HydF	0.000210846599972	0.00138081998809	0.00116997338812
+UniRef50_Q6FDN2		1.64274324883e-05	0.0010361989656	0.00101977153311
+UniRef50_UPI000273D0E2		3.1410525742e-05	8.1391306694e-06	-2.32713950726e-05
+UniRef50_R7PTK0		0.00351102554309	0.000719999982592	-0.0027910255605
+UniRef50_F0Y6N7	Expressed protein 	0.000160983535335	0.000455512719133	0.000294529183798
+UniRef50_B2A9N0	Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1	4.00086407947e-06	0.000591443128976	0.000587442264897
+UniRef50_Q9RZN7	Potassium transporting ATPase A chain	8.98733040216e-05	0.0158759128115	0.0157860395075
+UniRef50_K2DR39		1.0667325353e-05	3.24972316179e-05	2.18299062649e-05
+UniRef50_R5J2P0	HTH type transcriptional regulator GmuR	0.0010260506466	0.00470647846601	0.00368042781941
+UniRef50_H3VA73	PF03904 domain protein	0.032992205684	0.00777645372905	-0.0252157519549
+UniRef50_UPI000273C7FC	PREDICTED	1.74243648387e-05	1.16347223511e-05	-5.7896424876e-06
+UniRef50_Q68X45	DNA topoisomerase 1	5.2131528358e-06	1.75226801959e-06	-3.46088481621e-06
+UniRef50_B2HZ46		0.000230220986119	0.00995534458788	0.00972512360176
+UniRef50_UPI000469439E	hypothetical protein, partial	1.23646480421e-05	0.000318149124638	0.000305784476596
+UniRef50_A3CPL4	Cystathionine gamma synthase, putative	0.00469070086003	0.00167444463834	-0.00301625622169
+UniRef50_Q0TN75	Sulfatase	0.000836831555326	0.000188953929026	-0.0006478776263
+UniRef50_Q833W8	Tagatose 1,6 diphosphate aldolase 2	1.96878754934e-05	0.00157779437103	0.00155810649554
+UniRef50_L5P9E1	Rhodanese like domain protein	0.00020367949039	0.000298996164153	9.5316673763e-05
+UniRef50_T6ITD7	DNA mismatch repair protein mutS	0.000350854302435	0.000146453967375	-0.00020440033506
+UniRef50_P96995	UDP glucose 4 epimerase	0.00659704004829	0.0098737395285	0.00327669948021
+UniRef50_UPI0003B31677	sugar ABC transporter ATP binding protein	7.59381692397e-06	6.30603990144e-06	-1.28777702253e-06
+UniRef50_G2C2A9		2.82042470236e-05	0.000391374275872	0.000363170028848
+UniRef50_Q1IJ73		7.03677280897e-06	7.28270575926e-05	6.57902847836e-05
+UniRef50_Q2FEK4	Urease subunit beta	0.0120110715355	0.00196404039226	-0.0100470311432
+UniRef50_A1R4R1	Glutamyl tRNA amidotransferase subunit A	0.000101043282575	0.0076287402783	0.00752769699573
+UniRef50_UPI0003685835	hypothetical protein	6.92141938234e-05	9.27440452985e-06	-5.99397892936e-05
+UniRef50_K0S5Y4		0.000186772022854	0.000114225875159	-7.2546147695e-05
+UniRef50_A0A023X9G2	ABC transporter permease protein	0.0125265939867	0.00524608298953	-0.00728051099717
+UniRef50_B9E1A4		0.000182360381085	0.00134167359752	0.00115931321644
+UniRef50_UPI0003FA3257	protein HflC	8.46458372455e-05	1.58682334723e-05	-6.87776037732e-05
+UniRef50_M9S6A9	Two component response regulator, PprB	0.000655509560464	0.00092474989088	0.000269240330416
+UniRef50_W4TN66	Integral membrane protein	6.63018518973e-05	0.000586914312731	0.000520612460834
+UniRef50_Q6AAW0	Phosphoenolpyruvate protein phosphotransferase	9.56467877165e-05	0.00536074619651	0.00526509940879
+UniRef50_A8L3Z7		2.6539170441e-05	8.1324634341e-06	-1.84067070069e-05
+UniRef50_M9Z693	Nitrite oxidordeuctase B subunit 	2.31930484293e-05	2.70267873688e-05	3.8337389395e-06
+UniRef50_W6ICP5	Methyl accepting chemotaxis protein	2.49426301013e-05	9.84770667696e-06	-1.50949234243e-05
+UniRef50_W8YNW6	6 pyruvoyl tetrahydropterin synthase	4.28283374897e-05	0.000121434553499	7.86062160093e-05
+UniRef50_X5DUC9	Thioesterase like superfamily protein	0.0309976534356	0.00554374880551	-0.0254539046301
+UniRef50_V8G0E6	Cell wall binding protein	0.00121668485799	0.00576806634254	0.00455138148455
+UniRef50_Q5ZZI2	2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.00118386410449	0.000437506229925	-0.000746357874565
+UniRef50_O74197	Phosphoribosylaminoimidazole carboxylase	2.05450491225e-05	2.35679343728e-05	3.0228852503e-06
+UniRef50_R1BXE4		0.000245285910898	0.000263346271411	1.8060360513e-05
+UniRef50_UPI0004695C98	amino acid ABC transporter permease	3.94346356983e-05	6.42011089939e-05	2.47664732956e-05
+UniRef50_UPI000426690E	hypothetical protein	3.152159372e-05	3.33629431599e-05	1.8413494399e-06
+UniRef50_O34947		0.000325418955908	0.00103062362617	0.000705204670262
+UniRef50_V9WEG0	Permease of the drug metabolite transporter  superfamily	0.0035492444399	0.000623312452362	-0.00292593198754
+UniRef50_S9SJZ0		0.00100391711547	0.00123669967403	0.00023278255856
+UniRef50_UPI000473A780	threonine dehydratase	2.91705153567e-06	1.326628594e-05	1.03492344043e-05
+UniRef50_UPI0001E89D91	Transcriptional regulator of sugar metabolism	1.76451323327e-05	5.13127890767e-05	3.3667656744e-05
+UniRef50_A7FAZ1		0.000255633852495	0.0132088966659	0.0129532628134
+UniRef50_UPI0003B54A85	alpha beta hydrolase, partial	6.82256066011e-05	2.12202446364e-05	-4.70053619647e-05
+UniRef50_UPI0002883AB7	acyl CoA dehydrogenase	6.71816367596e-06	2.18771260062e-05	1.51589623302e-05
+UniRef50_K5CST2	Branched chain amino acid ABC transporter nucleotide binding protein ATPase	3.48034276897e-05	6.82958710244e-05	3.34924433347e-05
+UniRef50_M9R3P2	PHB depolymerase	0.00534868159634	0.00156691845204	-0.0037817631443
+UniRef50_Q6A9Z4	Glutamate ammonia ligase adenylyltransferase	0.00030647782972	0.00621268788677	0.00590621005705
+UniRef50_Q8Y0U6	Thymidylate synthase	0.000116419168241	0.000592112726583	0.000475693558342
+UniRef50_A4WPC2	OmpA MotB domain protein	0.00457116043312	0.000292403313158	-0.00427875711996
+UniRef50_F7Y7I2		0.000235925219919	9.8771950446e-05	-0.000137153269473
+UniRef50_A6LVU2	Cobalt precorrin 5B C methyltransferase	0.000400162934655	0.00119678460493	0.000796621670275
+UniRef50_R7G9U3	Phosphosugar isomerase transcriptional regulator	0.000182654510734	0.00153272544283	0.0013500709321
+UniRef50_L0NA87		0.0014493950259	0.000406514791478	-0.00104288023442
+UniRef50_X5EJ50	PAP2 superfamily protein	0.01758576534	0.00665892548799	-0.010926839852
+UniRef50_UPI0003B68328	mandelate racemase, partial	0.00300881820171	0.00147301580115	-0.00153580240056
+UniRef50_UPI00046BB227	PREDICTED	1.7670102895e-05	5.42736769949e-05	3.66035740999e-05
+UniRef50_G5PRD3	Putative outer membrane lipoprotein	4.32018040191e-05	6.2168073141e-05	1.89662691219e-05
+UniRef50_Q17WK3		0.000226626619354	0.000364887769871	0.000138261150517
+UniRef50_UPI0003EAE12A	PREDICTED	4.10932777566e-05	9.23586255471e-05	5.12653477905e-05
+UniRef50_J0XW17		0.000940642595952	5.96728995901e-05	-0.000880969696362
+UniRef50_A6M391	Methyl accepting chemotaxis sensory transducer	8.51472155251e-05	0.00047202046696	0.000386873251435
+UniRef50_E8SJA6	SAM dependent methyltransferase, MraW methylase family	0.00844644924925	0.00301843669099	-0.00542801255826
+UniRef50_A4WQ24	Lytic transglycosylase, catalytic	0.000188546467221	8.09214193954e-05	-0.000107625047826
+UniRef50_A7X2X9	Ribosomal protein L11 methyltransferase	0.0251022106608	0.00941444649834	-0.0156877641625
+UniRef50_UPI0003B390C8	cell division protein FtsW	5.27111737973e-06	6.88426817924e-06	1.61315079951e-06
+UniRef50_I0C5T1		0.00992961581786	0.00358578591712	-0.00634382990074
+UniRef50_L2F8J3		1.5221857645e-05	2.0103074511e-05	4.881216866e-06
+UniRef50_UPI00035F908D	hypothetical protein	0.000107952056299	1.73164591113e-05	-9.06355971877e-05
+UniRef50_C0PP21		7.76547371345e-06	0.000130104692687	0.000122339218974
+UniRef50_I0C5T9		0.0153779240783	0.00444446379825	-0.01093346028
+UniRef50_UPI00046F3223	hypothetical protein	3.94147101909e-06	1.87848131648e-05	1.48433421457e-05
+UniRef50_P19769	Putative transposase InsK for insertion sequence element IS150	0.00217549997282	0.000818447020154	-0.00135705295267
+UniRef50_P20371	Protocatechuate 3,4 dioxygenase alpha chain	0.000180327701681	0.00491392696038	0.0047335992587
+UniRef50_O32091		0.0249523986244	0.00873419215956	-0.0162182064648
+UniRef50_UPI0003D730BE	PREDICTED	8.52505562555e-06	1.2896724412e-05	4.37166878645e-06
+UniRef50_UPI00039597D2	PREDICTED	4.54951296648e-06	9.35059940619e-05	8.89564810954e-05
+UniRef50_Q9RWU2		3.89428461667e-05	0.00739051920356	0.00735157635739
+UniRef50_UPI0002F9456A	hypothetical protein	5.47838889643e-06	8.59315772455e-06	3.11476882812e-06
+UniRef50_W1A536		0.000102887379937	1.03360219152e-05	-9.25513580218e-05
+UniRef50_Q313W4	Bifunctional protein GlmU	3.69003116161e-06	4.82712523398e-06	1.13709407237e-06
+UniRef50_F0Y3L5		0.000181725211559	0.00068655495424	0.000504829742681
+UniRef50_C0LZW7	Cross beta structure silk protein 2	2.05621529976e-06	6.19971148202e-06	4.14349618226e-06
+UniRef50_UPI00035C4CDB	hypothetical protein	1.6295955568e-05	1.97135661528e-05	3.4176105848e-06
+UniRef50_R0NY94		7.42541994644e-05	0.000426317845042	0.000352063645578
+UniRef50_M4IMI2	Transposase like protein	0.0223684188054	0.00259087657702	-0.0197775422284
+UniRef50_G8UVE6	TraU	0.000115115752359	9.88747952918e-06	-0.00010522827283
+UniRef50_A6W320	Transposase, IS4	6.88737749315e-06	1.35881082586e-05	6.70073076545e-06
+UniRef50_F4S3R3		0.00016511649144	2.51796976323e-05	-0.000139936793808
+UniRef50_Q1IYK3	UDP N acetylglucosamine 1 carboxyvinyltransferase	5.08919248061e-06	0.0277089566415	0.027703867449
+UniRef50_UPI0003B63C0F	hypothetical protein	0.000133164688161	0.000405271343799	0.000272106655638
+UniRef50_H2JMH7		0.000145815104486	6.89038615915e-05	-7.69112428945e-05
+UniRef50_B9KTJ2	ABC spermidine putrescine transporter, ATPase subunit	0.000116149535026	0.000275139787458	0.000158990252432
+UniRef50_H4PPD3	NADP dependent dehydrogenase domain protein	0.000112941896091	0.000255453146905	0.000142511250814
+UniRef50_Q5DZU8	3 methyl 2 oxobutanoate hydroxymethyltransferase 2	0.00321401240101	0.000706249254594	-0.00250776314642
+UniRef50_P37216	Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic	0.0152427514228	0.00186527772818	-0.0133774736946
+UniRef50_X1KHN3	Marine sediment metagenome DNA, contig	0.000240039219062	7.28941881769e-05	-0.000167145030885
+UniRef50_O67762	DNA directed RNA polymerase subunit beta	3.62788629631e-06	1.80988567904e-06	-1.81800061727e-06
+UniRef50_Q161C7	DNA damage inducible protein, putative	0.000508364935933	0.000147045662343	-0.00036131927359
+UniRef50_UPI000443E2D6	PREDICTED	1.90475579618e-07	3.42990413301e-07	1.52514833683e-07
+UniRef50_Q49WP2		0.0178506743972	0.00056429943668	-0.0172863749605
+UniRef50_H6SJN5		2.21368221653e-05	3.01378270517e-05	8.0010048864e-06
+UniRef50_M9VCC8		0.000257963090329	0.0039355432355	0.00367758014517
+UniRef50_X2M4F7		4.1179666769e-05	0.00026609308024	0.000224913413471
+UniRef50_A5IU85	Parallel beta helix repeat	0.0198223398133	0.00704339995686	-0.0127789398564
+UniRef50_UPI00029A6665	citrate synthase I	0.000142082111628	0.000312074401971	0.000169992290343
+UniRef50_A4WZ48		0.00418123846518	0.00126989570376	-0.00291134276142
+UniRef50_B9HS46		2.08866336533e-05	0.000144618590572	0.000123731956919
+UniRef50_A3UKH7		2.17470530655e-05	4.39510230037e-05	2.22039699382e-05
+UniRef50_B9KTI0		0.00607274542549	0.00199463570617	-0.00407810971932
+UniRef50_B0VS88	Putative acetyltransferase 	0.000685900834344	0.00113328011316	0.000447379278816
+UniRef50_UPI000376ED10	hypothetical protein	8.79797964888e-06	0.00011433797813	0.000105539998481
+UniRef50_Q2NHY7	L tyrosine decarboxylase	0.00279557795958	0.00049237674387	-0.00230320121571
+UniRef50_B7LMR0		2.74594098728e-05	0.000279539883017	0.000252080473144
+UniRef50_A8GCA1	Ecotin	0.002595228835	0.000423899576834	-0.00217132925817
+UniRef50_O26607	UPF0145 protein MTH_507	0.000671685653511	0.00358488623641	0.0029132005829
+UniRef50_W8XBA5	Inner membrane transport protein YhjV	5.20480697164e-06	5.94114343242e-06	7.3633646078e-07
+UniRef50_B0K0N0	Adenine phosphoribosyltransferase	1.19993768166e-05	2.20063123107e-05	1.00069354941e-05
+UniRef50_UPI000248DA1A	hypothetical protein	2.11245748043e-05	6.29764871351e-06	-1.48269260908e-05
+UniRef50_Q8CQ91	Histidine biosynthesis bifunctional protein HisIE	0.0187881375942	0.00528486439151	-0.0135032732027
+UniRef50_N1X5N0		8.33821909882e-05	8.46126057925e-05	1.2304148043e-06
+UniRef50_UPI0002E805CD	hypothetical protein	1.12041394767e-05	9.91443755596e-06	-1.28970192074e-06
+UniRef50_UPI00047183C3	nuclease PIN	6.50615162227e-06	1.22689647541e-05	5.76281313183e-06
+UniRef50_UPI0003829CBF	hypothetical protein	9.1810244964e-06	5.75839824161e-05	4.84029579197e-05
+UniRef50_U5MRK8	Secretion protein HlyD family protein	0.000251754444034	0.00219989460152	0.00194814015749
+UniRef50_K4JRS2		4.12236960552e-06	6.02417669013e-05	5.61193972958e-05
+UniRef50_P39131	UDP N acetylglucosamine 2 epimerase	0.0233225716582	0.0160905437937	-0.0072320278645
+UniRef50_UPI00037118F4	hypothetical protein	6.24211182907e-05	1.9651341287e-05	-4.27697770037e-05
+UniRef50_A0A023AZR5	Malic enzyme	0.000577775103057	0.00272109331488	0.00214331821182
+UniRef50_M9R8K1	FlgD like flagellar basal body rod modification protein	6.98583655964e-06	9.55808885768e-06	2.57225229804e-06
+UniRef50_C5E391	KLTH0H11330p	2.23768594054e-05	5.87312083815e-06	-1.65037385673e-05
+UniRef50_A6M0V7	Dihydroxy acid dehydratase	0.000526390587233	0.00149373630218	0.000967345714947
+UniRef50_Q1ATH8	Pyridoxine pyridoxamine 5 phosphate oxidase	9.85136234499e-06	0.000842867902735	0.00083301654039
+UniRef50_A7X1Z3		0.00770158232403	0.00174335395872	-0.00595822836531
+UniRef50_Q72CS6	3 oxoacyl [acyl carrier protein] synthase 3	9.54152844758e-06	5.38223001887e-05	4.42807717411e-05
+UniRef50_B4RL22	Arginine  tRNA ligase	0.000236596649626	0.004096024886	0.00385942823637
+UniRef50_O27398	Imidazole glycerol phosphate synthase subunit HisF	0.00606857690043	0.0023446945466	-0.00372388235383
+UniRef50_UPI000478B1E4	hypothetical protein	0.000341506129317	0.0001267940435	-0.000214712085817
+UniRef50_E9SHD5		0.000763508688274	0.00032725157279	-0.000436257115484
+UniRef50_UPI000382B9BD	hypothetical protein	9.5503782023e-05	4.29717406836e-05	-5.25320413394e-05
+UniRef50_M4YVY6	Cytoplasmic protein	1.97171985107e-05	3.01725163753e-05	1.04553178646e-05
+UniRef50_A0A022NW71	LigA	3.90511167018e-05	0.000216032471014	0.000176981354312
+UniRef50_A3UE81		1.08925180623e-05	2.70446681811e-05	1.61521501188e-05
+UniRef50_Q8GPJ0	MobB like protein	0.00327342837087	0.00115443035494	-0.00211899801593
+UniRef50_UPI0004657E4B	hypothetical protein	3.46965296144e-05	1.23058847584e-05	-2.2390644856e-05
+UniRef50_I6RK04	Tryptophan repressor binding protein	0.000226039514279	0.000908267716836	0.000682228202557
+UniRef50_A0A013LHN9	Putative membrane protein	0.000106425553219	0.00663002205389	0.00652359650067
+UniRef50_E1V4H9	ATP dependent RNA helicase RhlB	0.000136112736362	0.00913936661665	0.00900325388029
+UniRef50_R6LJ53	Cell cycle protein FtsW	0.000860300972659	0.000300936919299	-0.00055936405336
+UniRef50_UPI0003673C2F	hypothetical protein	0.000104751216878	2.60006400417e-05	-7.87505768363e-05
+UniRef50_A6M1A4	Flagellin domain protein	0.000285974233984	0.000621667794785	0.000335693560801
+UniRef50_F6B016	Bile acid	0.000928959554168	0.0110455204903	0.0101165609361
+UniRef50_Q02N70	Tryptophan 2,3 dioxygenase	0.000515339900907	0.008674958868	0.00815961896709
+UniRef50_A6VDM0		0.000738285820078	0.000349499462025	-0.000388786358053
+UniRef50_UPI000415BF03	hypothetical protein	5.708289041e-06	0.000112575768776	0.000106867479735
+UniRef50_G8V752		0.000270276364337	0.00377142335926	0.00350114699492
+UniRef50_UPI0003637379	hypothetical protein	1.4239309719e-05	7.62252303945e-06	-6.61678667955e-06
+UniRef50_V8G5A1	Cell wall binding protein	0.00136476669845	0.00199526506377	0.00063049836532
+UniRef50_Q97MB4	NAD dependent protein deacetylase	0.00151854711387	0.00287113721157	0.0013525900977
+UniRef50_UPI00021A56DC	PREDICTED	4.49065897872e-05	2.3776331528e-05	-2.11302582592e-05
+UniRef50_UPI00034D5672	ABC transporter permease	2.58330817777e-05	6.56317551676e-05	3.97986733899e-05
+UniRef50_B9KM82		0.000563657267121	0.000169413235378	-0.000394244031743
+UniRef50_Q9ZMV8	Flagellin B	8.72463764734e-05	0.0103836479531	0.0102964015766
+UniRef50_UPI00036E1801	hypothetical protein, partial	0.000123239060004	2.49553087584e-05	-9.82837512456e-05
+UniRef50_L7VNU0		0.000239927535287	0.00188703207725	0.00164710454196
+UniRef50_A0A024JC88	Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit	5.77732860484e-06	9.16358811928e-05	8.5858552588e-05
+UniRef50_T0ZIX4		0.000522578289285	0.000130234602707	-0.000392343686578
+UniRef50_P76482		0.0040963467608	0.000346074263901	-0.0037502724969
+UniRef50_P44502	Cystathionine gamma synthase	0.00878512064938	0.00640410821106	-0.00238101243832
+UniRef50_C0QC86	Probable cytosol aminopeptidase	3.26589686605e-06	1.2685345698e-05	9.41944883195e-06
+UniRef50_H9UNY1		0.00277161544013	0.00201745860869	-0.00075415683144
+UniRef50_Q2J5A7	Biotin synthase 2	4.76668358137e-06	0.000160072557049	0.000155305873468
+UniRef50_D4LLK4	Recombinational DNA repair ATPase 	1.12080004449e-05	6.22726301918e-05	5.10646297469e-05
+UniRef50_UPI0002897140	O acetylhomoserine aminocarboxypropyltransferase	3.53218211389e-05	4.30604935715e-05	7.7386724326e-06
+UniRef50_UPI000380E239	hypothetical protein	2.41036223664e-05	2.14445108593e-05	-2.6591115071e-06
+UniRef50_UPI0003775D90	hypothetical protein	0.000150492243732	6.04661664596e-05	-9.00260772724e-05
+UniRef50_F8JSQ7		2.06305722802e-05	0.000171218707466	0.000150588135186
+UniRef50_G7M8J1	Methyl accepting chemotaxis sensory transducer	0.000314937771968	0.000495506544538	0.00018056877257
+UniRef50_A1SG46	Alpha amylase, catalytic region	0.000444348118141	0.00584589697302	0.00540154885488
+UniRef50_J9NZQ0		1.53035106275e-05	7.81166539077e-05	6.28131432802e-05
+UniRef50_UPI00046C792F	hypothetical protein	0.000183672389571	2.18971271982e-05	-0.000161775262373
+UniRef50_A8G9Z1	Cell division protein FtsB	0.0048838469263	0.000630569477283	-0.00425327744902
+UniRef50_A0A033TLC6		1.71444663125e-05	7.41134868753e-05	5.69690205628e-05
+UniRef50_A6M2Q2	Phage replisome organizer, putative	0.000525904163991	0.00277416077794	0.00224825661395
+UniRef50_UPI0002FAA418	hypothetical protein	7.73262622655e-06	2.29383081243e-05	1.52056818978e-05
+UniRef50_UPI0002C5976A		5.96567173213e-06	6.09788866822e-06	1.3221693609e-07
+UniRef50_S5XYL7	Aldo keto reductase	0.00229811133678	0.00104165228257	-0.00125645905421
+UniRef50_UPI0003B570ED	plasmid stablization protein ParB	2.9588984486e-05	0.00103146354448	0.00100187455999
+UniRef50_Q9RT21	Trigger factor	0.000330363426013	0.0337305945028	0.0334002310768
+UniRef50_D2AEN1		2.62563161996e-06	8.50464443302e-06	5.87901281306e-06
+UniRef50_K2LKK6	Phosphate ABC transporter, periplasmic binding protein	4.51349724722e-06	6.4636836324e-06	1.95018638518e-06
+UniRef50_Q88X60	Adenylyl sulfate kinase	0.0024292441303	0.00151248477249	-0.00091675935781
+UniRef50_Q4XSF0	GTP binding protein, putative 	4.18943202232e-06	8.14083548549e-06	3.95140346317e-06
+UniRef50_O67216	4 hydroxy tetrahydrodipicolinate synthase	5.80485769541e-06	2.58854994841e-05	2.00806417887e-05
+UniRef50_UPI0004064E58	transcription termination factor Rho	5.35295054771e-06	3.08276636042e-05	2.54747130565e-05
+UniRef50_Q9R5L5	HSP62=62 kDa urease associated heat shock protein 	2.6861316512e-05	0.000222100815177	0.000195239498665
+UniRef50_X0NX98		0.000116823150831	7.34835007715e-06	-0.000109474800754
+UniRef50_UPI00035F4BA7	hypothetical protein	3.39790978671e-05	2.72527165732e-05	-6.7263812939e-06
+UniRef50_Q8FL68	Ribosomal RNA small subunit methyltransferase H	0.00543903914276	0.00148927930947	-0.00394975983329
+UniRef50_W5Y8P3		2.05807583193e-05	5.50256669524e-05	3.44449086331e-05
+UniRef50_A0A024HQB8	Carbamoyl transferase	0.00146064270313	0.000451114012991	-0.00100952869014
+UniRef50_UPI0004761289	hypothetical protein	2.61026842679e-05	0.000209503676374	0.000183400992106
+UniRef50_UPI0003B465F4	hypothetical protein	8.68486359453e-05	1.70073329717e-05	-6.98413029736e-05
+UniRef50_UPI00046A5F3F	hypothetical protein	1.72773869583e-05	2.85792285601e-05	1.13018416018e-05
+UniRef50_UPI000382BE44	hypothetical protein	0.00729196509462	0.00372588348113	-0.00356608161349
+UniRef50_Q8CSL5		0.0124931392739	0.00125621761105	-0.0112369216629
+UniRef50_Q8CSL4		0.0101824391723	0.00412948725159	-0.00605295192071
+UniRef50_R6GNH1		0.000476685345143	0.000396398262003	-8.028708314e-05
+UniRef50_B1AIC1	ATP synthase subunit alpha	2.43325345432e-06	1.0090054486e-05	7.65680103168e-06
+UniRef50_UPI000413242B	hypothetical protein	9.73092522962e-05	3.39748544459e-05	-6.33343978503e-05
+UniRef50_UPI00036CCC09	hypothetical protein	2.15785364573e-05	5.07217102697e-06	-1.65063654303e-05
+UniRef50_B2TIC3	DNA mismatch repair protein MutS	0.000256009480455	0.000459741978473	0.000203732498018
+UniRef50_Q6LUX5	Isopentenyl diphosphate Delta isomerase	7.33371850124e-05	1.92643355253e-05	-5.40728494871e-05
+UniRef50_UPI00046D5342	hypothetical protein	0.000186456225036	7.74066725508e-05	-0.000109049552485
+UniRef50_UPI00047A154A	phosphoribosylaminoimidazolecarboxamide formyltransferase	4.07756012367e-06	1.48324981628e-05	1.07549380391e-05
+UniRef50_O68823	DNA polymerase III subunit chi	1.72047697332e-05	0.000461432351874	0.000444227582141
+UniRef50_I2DEN6		9.5244572462e-05	0.00297213776782	0.00287689319536
+UniRef50_UPI000376424C	hypothetical protein	6.55809772965e-06	5.14108864348e-06	-1.41700908617e-06
+UniRef50_M1MMR2	O antigen polymerase	0.000546940534044	0.000576928209253	2.9987675209e-05
+UniRef50_Q08021		0.00240825899851	0.00173715708938	-0.00067110190913
+UniRef50_UPI000472C3EA	acetyl CoA carboxylase subunit beta	7.3055853757e-06	2.86476255569e-05	2.13420401812e-05
+UniRef50_G2ZT62		3.94041155936e-06	1.2922390883e-05	8.98197932364e-06
+UniRef50_B1VDD6	Protein RecA	0.00333731304989	0.00560137954926	0.00226406649937
+UniRef50_A9L6A7	TraU family protein	0.000100087686809	1.21362841915e-05	-8.79514026175e-05
+UniRef50_A7X3N2	S adenosylmethionine synthase	0.0144977636378	0.0299510085769	0.0154532449391
+UniRef50_A7X1N2	GTP sensing transcriptional pleiotropic repressor CodY	0.0174538645695	0.00668805024443	-0.0107658143251
+UniRef50_J2YJ27	TonB dependent outermembrane ferric citrate receptor	0.000893668571185	0.000186841609055	-0.00070682696213
+UniRef50_G8AGG5		4.23997252515e-05	7.82620243768e-05	3.58622991253e-05
+UniRef50_UPI0004682C49	hypothetical protein	5.06132220083e-05	2.24810251316e-05	-2.81321968767e-05
+UniRef50_F6G1Z6	Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons	0.000151845707213	0.00442802506102	0.00427617935381
+UniRef50_M4K135	Phospholipid binding domain lipoprotein	0.00297286683172	0.00110743764448	-0.00186542918724
+UniRef50_UPI000361F619	hypothetical protein	0.000119843344702	0.000185671587221	6.5828242519e-05
+UniRef50_UPI000319FA33	hypothetical protein	8.93336198644e-06	5.46646711269e-06	-3.46689487375e-06
+UniRef50_UPI000376B2F3	hypothetical protein	5.46382753106e-05	4.07642915703e-05	-1.38739837403e-05
+UniRef50_Q8DR50	Diphosphomevalonate decarboxylase	0.00413633887785	0.00375201178648	-0.00038432709137
+UniRef50_UPI0003C1AF0C		1.30949726307e-05	1.57479621295e-05	2.6529894988e-06
+UniRef50_Q9K621	Sensory transduction protein BceR	0.0206297389337	0.00315669771627	-0.0174730412174
+UniRef50_Q852F2		1.59873449516e-05	2.49809617098e-05	8.9936167582e-06
+UniRef50_Q3J5W8	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.00108817409996	0.000331196304892	-0.000756977795068
+UniRef50_UPI00045EA5EB	hypothetical protein	2.06070361911e-05	7.82702132316e-06	-1.27800148679e-05
+UniRef50_Q8DSX2	Bifunctional protein GlmU	0.0328777645638	0.0132768631814	-0.0196009013824
+UniRef50_Q8ZIL5	Carbamoyl phosphate synthase small chain	2.01184364086e-05	7.73405978241e-06	-1.23843766262e-05
+UniRef50_Q28M29	Lipoprotein releasing system transmembrane protein LolC E family	0.00399804927816	0.000762735456185	-0.00323531382198
+UniRef50_D2NAM2	Transcriptional regulator	0.0113218052105	0.00225351116361	-0.00906829404689
+UniRef50_P65765	FKBP type peptidyl prolyl cis trans isomerase FkpA	0.00163072079315	0.00024712694996	-0.00138359384319
+UniRef50_D3E2L0	Mevalonate kinase	0.0025388584601	0.00038481895406	-0.00215403950604
+UniRef50_I0JI98	DUF21 CBS domain protein	0.0194989067414	0.00411736181688	-0.0153815449245
+UniRef50_UPI0003766160	hypothetical protein	0.00145400719562	0.000269400635831	-0.00118460655979
+UniRef50_F0L4M9	Cytochrome c oxidase fixO chain	0.016375269256	0.00303107391853	-0.0133441953375
+UniRef50_B7V416		0.00116431639298	0.00130714924403	0.00014283285105
+UniRef50_A0A024HQA8	Amino acid ABC transporter substrate binding protein	0.000650175201672	0.00069387749016	4.3702288488e-05
+UniRef50_A8FAK7	2 isopropylmalate synthase 2	1.95732159589e-06	6.28859173408e-06	4.33127013819e-06
+UniRef50_Q1ITT1	50S ribosomal protein L35	0.0052427317198	0.00196877803463	-0.00327395368517
+UniRef50_Q4FME5		9.75961111015e-06	2.590002352e-05	1.61404124099e-05
+UniRef50_R1E3V2		7.8588339106e-05	0.000524630997291	0.000446042658185
+UniRef50_UPI00036F4F1C	peptidase S8	2.67341351859e-05	0.0117551088368	0.0117283747016
+UniRef50_A6LVW2	3D domain protein	0.000230643170378	0.000340750044459	0.000110106874081
+UniRef50_K6VBL3	Type IV secretion system family protein	1.5088801761e-05	1.46202403204e-05	-4.685614406e-07
+UniRef50_U3T564	Acyl coenzyme A dehydrogenase	0.000642769589172	0.0196419098187	0.0189991402295
+UniRef50_UPI0001BF5D6F	hypothetical protein SMAC_10343	7.54981539425e-06	1.72347675116e-05	9.68495211735e-06
+UniRef50_UPI0003638F6E	hypothetical protein	0.000177061599184	6.59648093136e-05	-0.00011109678987
+UniRef50_UPI000348D250	hypothetical protein	9.35840352805e-06	0.00271998365698	0.00271062525345
+UniRef50_UPI000367510D	hypothetical protein	2.10493739897e-05	1.10247382545e-05	-1.00246357352e-05
+UniRef50_Q9ZJT0	Methionine aminopeptidase	2.62257615776e-05	0.00247429277342	0.00244806701184
+UniRef50_A3QBC5	 S malonyltransferase	0.000331497548229	0.000184765404716	-0.000146732143513
+UniRef50_UPI0003B4C933	peptide ABC transporter permease	1.0358182119e-05	8.35811540694e-06	-2.00006671206e-06
+UniRef50_A2RHJ5	Protein translocase subunit SecA	0.000108576986252	0.00226940823142	0.00216083124517
+UniRef50_L5VNR4	Ybl54	0.000589821857578	0.000220133152856	-0.000369688704722
+UniRef50_UPI000364F3E3	hypothetical protein	2.04908596272e-05	4.35789242388e-05	2.30880646116e-05
+UniRef50_Q0ARE4	UspA domain protein	0.00188739639982	0.000255685459043	-0.00163171094078
+UniRef50_B7IH88	CTP synthase	6.80181005635e-06	4.93693339968e-06	-1.86487665667e-06
+UniRef50_A6LQR9	GTPase Obg	0.000471312984821	0.00353675744525	0.00306544446043
+UniRef50_UPI000360EF04	hypothetical protein	2.11495001476e-05	2.64565329433e-05	5.3070327957e-06
+UniRef50_UPI000225C0BC	Holliday junction ATP dependent DNA helicase ruvA	2.09897138278e-05	1.28583914059e-05	-8.1313224219e-06
+UniRef50_UPI0003B42254	CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase	1.28967063179e-05	2.06422080959e-05	7.745501778e-06
+UniRef50_F0XVT1		1.22585381348e-05	4.89111039943e-05	3.66525658595e-05
+UniRef50_UPI000376F4CA	hypothetical protein	2.9524877422e-06	6.01458357621e-06	3.06209583401e-06
+UniRef50_A6LST7	Response regulator receiver protein	0.000219044094112	0.00107691621115	0.000857872117038
+UniRef50_Q53175	MotB	4.41182617886e-05	0.000148577832251	0.000104459570462
+UniRef50_UPI00014C4177	MULTISPECIES	4.42083521267e-05	2.9219488549e-05	-1.49888635777e-05
+UniRef50_R4YW23	Chromosome partitioning protein transcriptional regulator	1.44487000872e-05	2.90170254168e-05	1.45683253296e-05
+UniRef50_UPI0003769C11	hypothetical protein	2.838140338e-05	5.03961067691e-05	2.20147033891e-05
+UniRef50_X1QL65	Marine sediment metagenome DNA, contig	5.54631798105e-05	0.000328024924245	0.000272561744434
+UniRef50_P52599	Probable multidrug resistance protein EmrK	0.00312974664089	0.00116232029316	-0.00196742634773
+UniRef50_H0Q3N8	Thioesterase superfamily protein	9.80414369471e-06	6.10130100964e-05	5.12088664017e-05
+UniRef50_UPI00041EC5EE	DNA polymerase III subunit alpha	1.76054779241e-05	3.36536824856e-06	-1.42401096755e-05
+UniRef50_A0A023YHP1		1.40823327104e-05	1.16263358233e-05	-2.4559968871e-06
+UniRef50_A1T8K1	Riboflavin biosynthesis protein RibBA	1.20032128141e-05	9.21068752911e-06	-2.79252528499e-06
+UniRef50_UPI0003B3F8B2	ABC transporter	6.68832178913e-06	1.10430792647e-05	4.35475747557e-06
+UniRef50_I2F1Y3	L serine deaminase	6.85361146959e-06	8.64448717586e-06	1.79087570627e-06
+UniRef50_UPI0003A7C9ED	hypothetical protein	8.89437277231e-07	9.61497780369e-05	9.52603407597e-05
+UniRef50_R6Z842	[citrate  lyase] ligase	0.00377497816404	0.00153210687733	-0.00224287128671
+UniRef50_F4E2U8	Glycerol dehydrogenase	0.000371928764129	0.00184820190651	0.00147627314238
+UniRef50_UPI0002E02ECB	cold shock protein	4.69098449881e-05	5.01173411478e-05	3.2074961597e-06
+UniRef50_P71405	Serine acetyltransferase	1.03358513842e-05	0.0134222940227	0.0134119581713
+UniRef50_P52137	Putative arsenical pump membrane protein 	0.000490320830018	0.000313056577946	-0.000177264252072
+UniRef50_UPI000372B1CF	hypothetical protein	8.72784112518e-06	3.09073577937e-06	-5.63710534581e-06
+UniRef50_P23481	Hydrogenase 4 component A	0.00141542985494	0.00273542286067	0.00131999300573
+UniRef50_Q5HE46	Mannitol specific phosphotransferase enzyme IIA component	0.0103421027892	0.0014041804641	-0.0089379223251
+UniRef50_Q836B1	UPF0473 protein EF_1204	0.00211550647335	0.000694862835762	-0.00142064363759
+UniRef50_A6LQW6	UPF0272 protein Cbei_0559	0.000298884839366	0.000530524226449	0.000231639387083
+UniRef50_UPI00046EF03F	hypothetical protein	8.88023820204e-06	6.26985560787e-06	-2.61038259417e-06
+UniRef50_A3PLE1		0.0113166176695	0.00113189833496	-0.0101847193345
+UniRef50_M1MRV5	Neutral endopeptidase PepO	0.000242611209003	0.00195584195819	0.00171323074919
+UniRef50_Q897S6	S1 RNA binding domain	0.000335914792664	0.000241074861385	-9.4839931279e-05
+UniRef50_C0ZES6	LexA repressor	0.000206230662615	0.0035678678546	0.00336163719198
+UniRef50_W1FU82	Cell division protein FtsK	0.000221744272145	5.07271752353e-05	-0.00017101709691
+UniRef50_B5BP16	Truncated transposase of IS3 family	0.0193935035512	0.0066155824657	-0.0127779210855
+UniRef50_M9V8F1		0.00026397621598	0.00375162316872	0.00348764695274
+UniRef50_UPI0002E99FC0	hypothetical protein	1.91105116965e-05	7.70596536515e-06	-1.14045463314e-05
+UniRef50_Q97L15	Permease	0.0010577591384	0.000160207977501	-0.000897551160899
+UniRef50_UPI00037D00A3	hypothetical protein	3.64965246119e-05	1.13379803589e-05	-2.5158544253e-05
+UniRef50_A4WVZ8	FxsA cytoplasmic membrane protein	0.000481916641496	0.000543527678278	6.1611036782e-05
+UniRef50_Q2W2I2	DNA directed RNA polymerase subunit beta	6.6431934524e-06	1.22754694176e-05	5.6322759652e-06
+UniRef50_UPI000466CD21	hypothetical protein, partial	5.92340799314e-06	1.12488391237e-05	5.32543113056e-06
+UniRef50_P0A9S2	Lactaldehyde reductase	0.00426831983883	0.0085677523087	0.00429943246987
+UniRef50_Q2S8W1	Glucose 6 phosphate isomerase	0.000727623401213	0.000378390983644	-0.000349232417569
+UniRef50_A8LL11	HTH type transcriptional regulator	0.006037973454	0.00297789462745	-0.00306007882655
+UniRef50_Q9RRG5		0.000234949785595	0.0870772692128	0.0868423194272
+UniRef50_Q9RRG4		0.000154972173725	0.0165091959811	0.0163542238074
+UniRef50_F5MXW8	Baseplate J like family protein	1.2694355784e-05	6.15003670202e-06	-6.54431908198e-06
+UniRef50_A8LSD5	3 oxoadipate enol lactonase	0.00273259970254	0.000225432599378	-0.00250716710316
+UniRef50_J9YYN1		0.000162373661847	5.2545325181e-05	-0.000109828336666
+UniRef50_Q833W9	Tagatose 6 phosphate kinase	0.000215781432963	0.00487715894696	0.004661377514
+UniRef50_A3M8U5	Heavy metal RND efflux outer membrane protein CzcC family	9.19202894945e-05	0.00606440998336	0.00597248969387
+UniRef50_R4Q8N7	Oxidoreductase	0.000137267632307	0.00294210782748	0.00280484019517
+UniRef50_W7S9M8	Pyruvate dehydrogenase E1 component	4.4969498337e-05	3.44323924682e-05	-1.05371058688e-05
+UniRef50_A6LSX8		0.000240999160205	0.00260918625837	0.00236818709817
+UniRef50_U3U1D9		2.1983670475e-05	2.47420462487e-05	2.7583757737e-06
+UniRef50_UPI000363B64B	hypothetical protein	1.71544928236e-05	0.000248909483523	0.000231754990699
+UniRef50_C5N6E7	Hydrolase, haloacid dehalogenase like family protein	0.0177621043601	0.00627112219694	-0.0114909821632
+UniRef50_C7ZTC0	FecCD transporter	0.0128123104741	0.0033236168844	-0.0094886935897
+UniRef50_L1KZ69		7.8981788932e-05	0.000142425725899	6.3443936967e-05
+UniRef50_UPI000174446D	ABC transporter permease	6.37787228755e-06	3.06930037227e-05	2.43151314351e-05
+UniRef50_Q1AVI9	NADH quinone oxidoreductase subunit K	1.01199095881e-05	4.16409347091e-05	3.1521025121e-05
+UniRef50_M1MG71	Methyl accepting chemotaxis sensory transducer	0.000423377497034	0.000796090942569	0.000372713445535
+UniRef50_UPI00028A050D	translation factor Sua5	9.12939659951e-05	0.000220134323994	0.000128840357999
+UniRef50_F6EUQ1		4.06285268822e-06	6.93003343858e-06	2.86718075036e-06
+UniRef50_UPI000379F19F	hypothetical protein	1.44277008172e-05	1.67778906207e-05	2.3501898035e-06
+UniRef50_O33948	Catechol 1,2 dioxygenase 1	0.000751167016841	0.00367103122382	0.00291986420698
+UniRef50_Q4L7V3	mRNA interferase MazF	0.00282097991807	0.00462715892414	0.00180617900607
+UniRef50_A6LZS0		0.000143712939918	0.000570141748584	0.000426428808666
+UniRef50_E4SGC1	ABC transporter related protein	0.000240436935571	0.00106674234722	0.000826305411649
+UniRef50_A6LZS9		0.00108378220493	0.00183792253709	0.00075414033216
+UniRef50_UPI00037BA2BE	hypothetical protein	4.78138007728e-06	8.19412800736e-06	3.41274793008e-06
+UniRef50_UPI00036A311B	hypothetical protein	1.15765830002e-05	0.000282422434126	0.000270845851126
+UniRef50_A4WVM4		0.0201965704813	0.00795222918528	-0.012244341296
+UniRef50_I3TI18	Cysteine desulfuration protein SufE	0.000168348456038	3.06108642751e-05	-0.000137737591763
+UniRef50_UPI000262CF2F	amino acid ABC transporter	1.27416411248e-05	4.83747643416e-05	3.56331232168e-05
+UniRef50_F0YPX2		0.000333240887747	0.000746958566597	0.00041371767885
+UniRef50_O27818	dTDP 4 dehydrorhamnose 3,5 epimerase	0.000827545755014	0.00648464173753	0.00565709598252
+UniRef50_M1Z2C4		1.05473220211e-05	8.90333474272e-06	-1.64398727838e-06
+UniRef50_UPI0003682E40	hypothetical protein	2.32208044079e-06	0.000675528563406	0.000673206482965
+UniRef50_UPI0003B7B255	hypothetical protein	0.000189027419028	0.000103801116887	-8.5226302141e-05
+UniRef50_E6TTW0	Cyclic nucleotide binding protein	0.000302934855009	0.00120646291406	0.000903528059051
+UniRef50_P57134	DNA replication protein DnaC	0.00126079232907	0.00224602758449	0.00098523525542
+UniRef50_UPI0004706BF7	hypothetical protein	0.000178104630444	7.87506913905e-05	-9.93539390535e-05
+UniRef50_G4LJE6	TonB dependent receptor	0.000864656494443	0.000259481057142	-0.000605175437301
+UniRef50_G7M1W4	Two component transcriptional regulator, winged helix family	0.000569102953191	0.00252385069592	0.00195474774273
+UniRef50_B1JZW0	Glutamate  putrescine ligase	0.00942648811488	0.00249460941909	-0.00693187869579
+UniRef50_Q9X4Q9	Flagellar motor switch protein FliG	0.0009211028829	0.00047382629598	-0.00044727658692
+UniRef50_H2HFL3	Metal nicotianamine transporter YSL2	5.87374464015e-05	0.00867126481957	0.00861252737317
+UniRef50_A5ULB0	Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF	0.00545187566083	0.00072313042547	-0.00472874523536
+UniRef50_X5E2B2	Nucleoside triphosphatase YtkD	0.0213950811135	0.00456794902128	-0.0168271320922
+UniRef50_A6LTZ5		0.000257963090329	0.000897261753016	0.000639298662687
+UniRef50_Q3IV04	Transposase, IS3 IS911family	0.00289787223765	0.00370120566977	0.00080333343212
+UniRef50_UPI0003957091		1.29797881341e-05	3.45854819551e-05	2.1605693821e-05
+UniRef50_V8FTX6	Hemerythrin	0.000406627636108	0.00079457409469	0.000387946458582
+UniRef50_Q92WJ0	Fe ions import ATP binding protein FbpC 1	8.26290704735e-05	2.72263338115e-05	-5.5402736662e-05
+UniRef50_C9D087		0.000759504616145	0.000207309765447	-0.000552194850698
+UniRef50_UPI0004717DF9	hypothetical protein	3.99775878913e-06	0.000176562291225	0.000172564532436
+UniRef50_R4XYL7	Glutamate dehydrogenase	0.000138951897734	0.0234558784526	0.0233169265549
+UniRef50_C6AN40	Tellurite resistance protein TehB	3.30304864109e-05	2.87522496565e-05	-4.2782367544e-06
+UniRef50_A6LTZ8		0.000718751433046	0.000513594269898	-0.000205157163148
+UniRef50_UPI0003B4BD8A	Ktr system potassium transporter B	3.04919139807e-05	5.64864932295e-06	-2.48432646577e-05
+UniRef50_B5EXJ7	HMP PP phosphatase	0.00304790282174	0.0013422546532	-0.00170564816854
+UniRef50_B3DTE2	DNA directed RNA polymerase subunit beta	1.48871412452e-06	0.00385044474073	0.00384895602661
+UniRef50_G9PNM2		0.000258353423654	0.000190970498982	-6.7382924672e-05
+UniRef50_UPI00037627C6	hypothetical protein	4.28919418554e-05	6.98706438644e-06	-3.5904877469e-05
+UniRef50_UPI0004561990	hypothetical protein PFL1_04301	2.17716637439e-06	4.16438530641e-07	-1.76072784375e-06
+UniRef50_Q8PLY8	Sulfoxide reductase catalytic subunit YedY	0.0133045836728	0.000561192911587	-0.0127433907612
+UniRef50_U3T5A3	AraC family transcriptional regulator	0.000123361434261	0.00703138033169	0.00690801889743
+UniRef50_V8FJ54		3.83157000272e-05	2.4237662799e-05	-1.40780372282e-05
+UniRef50_Q71YZ5	2 succinylbenzoate  CoA ligase	4.90055444994e-06	0.000873825703817	0.000868925149367
+UniRef50_R6QTT5		2.34641165126e-05	1.23850825502e-05	-1.10790339624e-05
+UniRef50_UPI0002626035	N acylamino acid racemase	3.52179748339e-05	0.00276789484125	0.00273267686642
+UniRef50_G7ZBU5		8.79195836987e-07	3.31687698982e-05	3.22895740612e-05
+UniRef50_B1I4C7	Phospho N acetylmuramoyl pentapeptide transferase	5.48397506244e-06	1.64567015084e-05	1.0972726446e-05
+UniRef50_Q0BXH7	Elongation factor P	0.0125352836038	0.00201011751363	-0.0105251660902
+UniRef50_A0A024K7R9		6.68034991922e-06	0.000270644910385	0.000263964560466
+UniRef50_B2V461	Molecular chaperone, DnaJ family	0.000437242458129	0.00130123826738	0.000863995809251
+UniRef50_Q46892	Inner membrane permease YgbN	0.00247658805084	0.00205933583358	-0.00041725221726
+UniRef50_Q57962	Probable phosphoenolpyruvate synthase	1.57251730505e-06	4.20223841815e-05	4.04498668765e-05
+UniRef50_Q9RSQ3	Phosphoglucosamine mutase	0.000134018694272	0.0367130268057	0.0365790081114
+UniRef50_Q9KV02	Sulfurtransferase TusD homolog	0.000589821857578	0.0010054338974	0.000415612039822
+UniRef50_A4WUU1		0.000697061115739	0.000723499297692	2.6438181953e-05
+UniRef50_B9L5K2	3 isopropylmalate dehydratase small subunit	0.00233998126793	0.000496087612676	-0.00184389365525
+UniRef50_P9WQ18	Trehalose synthase amylase TreS	2.66596022611e-06	5.73543476545e-05	5.46883874284e-05
+UniRef50_Q7WK82	ATP dependent Clp protease ATP binding subunit ClpX	0.0429285828639	0.0376689359364	-0.0052596469275
+UniRef50_M1HJ56	Arginine serine rich splicing factor SR45 transcript VII	0.000106997490651	0.000189531391223	8.2533900572e-05
+UniRef50_B9JX70	ABC transporter membrane spanning protein	0.00840451577838	0.00111187498437	-0.00729264079401
+UniRef50_E4PYK4		0.00900846710666	0.00154078280971	-0.00746768429695
+UniRef50_UPI00034DD06F	hypothetical protein	2.76008213713e-06	1.0810459117e-05	8.05037697987e-06
+UniRef50_Q49YI2	Putative dipeptidase SSP1012	0.0217334617115	0.00539371980972	-0.0163397419018
+UniRef50_Q6NAT0	Holliday junction ATP dependent DNA helicase RuvA	2.538957945e-05	6.44195602122e-05	3.90299807622e-05
+UniRef50_UPI000370A604	hypothetical protein	2.18501642579e-05	1.45329207227e-05	-7.3172435352e-06
+UniRef50_Q7ML43		0.00014842175184	0.000228043787796	7.9622035956e-05
+UniRef50_UPI000367EFAE	hypothetical protein	2.98632019236e-05	9.22717732702e-05	6.24085713466e-05
+UniRef50_R6UK77		1.39077664779e-05	3.32930191572e-05	1.93852526793e-05
+UniRef50_J7M6X3	MarR family transcriptional regulator	0.0101004177232	0.00299801127546	-0.00710240644774
+UniRef50_H6RV56	ABC transporter substrate binding protein	5.45057158398e-05	1.06610341326e-05	-4.38446817072e-05
+UniRef50_P17055	Spheroidene monooxygenase	0.00116089620059	0.000706460974096	-0.000454435226494
+UniRef50_B7UZN8		0.00121866500854	0.00121363029532	-5.03471322e-06
+UniRef50_W6LVN7		5.96561725863e-05	7.89554215805e-06	-5.17606304283e-05
+UniRef50_A4YNQ7	Fructose 1,6 bisphosphatase class 1	2.17259422031e-05	9.14272245072e-06	-1.25832197524e-05
+UniRef50_UPI00039CC0CD	hypothetical protein	0.000100735112938	0.000606815147654	0.000506080034716
+UniRef50_UPI00047A1A5F	hypothetical protein	1.91603932424e-06	1.37760435985e-05	1.18600042743e-05
+UniRef50_Q4L6F4	Penicillin binding protein 2	0.0197790564135	0.00529411681174	-0.0144849396018
+UniRef50_G0K3J8	Aspartate transaminase	0.000866220535402	0.000152750019926	-0.000713470515476
+UniRef50_N6A8S2		0.128624641912	0.0408651374255	-0.0877595044865
+UniRef50_UPI000381D193	hypothetical protein	4.95329075139e-05	1.34710916129e-05	-3.6061815901e-05
+UniRef50_V9AXK3		4.292866749e-05	0.0010361989656	0.00099327029811
+UniRef50_Q9SZX3	Argininosuccinate synthase, chloroplastic	6.78255081935e-06	0.000106036094597	9.92535437777e-05
+UniRef50_UPI00046EE386	hypothetical protein	2.85873698862e-05	4.70552027218e-05	1.84678328356e-05
+UniRef50_Q2RJ31	Glutamate 1 semialdehyde 2,1 aminomutase	0.0211707455126	0.0084053287015	-0.0127654168111
+UniRef50_T1IAF8		4.42162544977e-05	0.000138321641777	9.41053872793e-05
+UniRef50_Q652A8	UDP glucose 4 epimerase 3	0.0033148135432	0.00350173337234	0.00018691982914
+UniRef50_C7NJ54		2.67793570637e-05	5.98741611968e-05	3.30948041331e-05
+UniRef50_A0A009P2J7	SnoaL like polyketide cyclase family protein	0.000106376226475	7.74113834311e-05	-2.89648430439e-05
+UniRef50_P31884	Quinone reactive Ni Fe hydrogenase small chain	0.000199661560248	0.00172780677606	0.00152814521581
+UniRef50_M7MSG6	Putative metal ABC transporter metal binding protein	1.18972563322e-05	6.63670239507e-05	5.44697676185e-05
+UniRef50_A6LQU3	Integral membrane sensor signal transduction histidine kinase	0.00011268238473	0.00192036119138	0.00180767880665
+UniRef50_C1DR09		0.000141330594788	0.000123212229257	-1.8118365531e-05
+UniRef50_K9IDN1	Lactose PTS family porter repressor	1.35709196075e-05	1.44875779552e-05	9.166583477e-07
+UniRef50_Q0SA63	Flavin binding monooxygenase	0.00102276836437	0.000120783928514	-0.000901984435856
+UniRef50_UPI00046253F9	PTS sugar transporter subunit IIA	9.73041004731e-06	2.92513105482e-05	1.95209005009e-05
+UniRef50_UPI00026C726F	cell division protein FtsZ	5.52723730095e-06	2.12603970475e-05	1.57331597465e-05
+UniRef50_W5X4V3		1.59664538314e-05	0.0003666684518	0.000350701997969
+UniRef50_A3TWL6		0.000887359015352	0.00022139832901	-0.000665960686342
+UniRef50_D9RF73		0.000132463599085	0.000229411710101	9.6948111016e-05
+UniRef50_F4NHW2		0.000320417141437	0.00111440266111	0.000793985519673
+UniRef50_UPI0003B4D2F4	hypothetical protein	0.000631498966191	0.00134739296056	0.000715893994369
+UniRef50_UPI0002628E38	arginine ABC transporter ATP binding protein	7.84742675097e-05	4.14489817624e-05	-3.70252857473e-05
+UniRef50_A4EQN9		2.63945509496e-05	0.000167120686114	0.000140726135164
+UniRef50_UPI0003A677C1	histidine kinase	7.87357538774e-06	5.57419051372e-06	-2.29938487402e-06
+UniRef50_A5UNL6	Transposase, RNaseH like family	0.00522851761134	0.00163624599604	-0.0035922716153
+UniRef50_U5NRH5		0.0178924692635	0.0295316705195	0.011639201256
+UniRef50_W5X9W9	Glucose 6 phosphate 1 dehydrogenase	1.01761908466e-05	0.000185033285536	0.000174857094689
+UniRef50_D5WDJ8	Ectoine hydroxyectoine ABC transporter, ATP binding protein	0.0165254093452	0.00655526342436	-0.00997014592084
+UniRef50_UPI0003B7A139	NUDIX hydrolase	0.00037520921556	2.42947689639e-05	-0.000350914446596
+UniRef50_Q1NAN1		4.69575343559e-06	1.57499562437e-05	1.10542028081e-05
+UniRef50_UPI0003A86DCB	sec independent translocation protein mttA Hcf106	5.64491131968e-05	4.25773162061e-05	-1.38717969907e-05
+UniRef50_A6V2V4	3 isopropylmalate dehydratase small subunit	0.00161415264876	0.000934882362	-0.00067927028676
+UniRef50_T0ZWG6	Phosphoribosylformylglycinamidine synthase I	2.51528009255e-05	3.30100747039e-05	7.8572737784e-06
+UniRef50_UPI000369DCC7	hypothetical protein	5.44969019987e-05	0.000181409750662	0.000126912848663
+UniRef50_A0A024HJZ5		0.000307627504106	0.000102067985674	-0.000205559518432
+UniRef50_P61951	Flavodoxin 1	0.0038303605491	0.000678239944027	-0.00315212060507
+UniRef50_Q9ZL73	Flagellar biosynthetic protein FlhB	0.000217752206347	0.00254292551931	0.00232517331296
+UniRef50_U3ST65	Fructan hydrolase FruB	0.00755109695962	0.00214277347298	-0.00540832348664
+UniRef50_B7VA67		0.00182034059833	0.000706318945962	-0.00111402165237
+UniRef50_Q0A562		2.69180165648e-05	2.02413706683e-05	-6.6766458965e-06
+UniRef50_Q8EGH1	Ditrans,polycis undecaprenyl diphosphate synthase  farnesyl diphosphate specific)	0.00204856703827	0.000256660035054	-0.00179190700322
+UniRef50_P77544	Glutathione S transferase YfcF	0.00592090285717	4.53046920905e-05	-0.00587559816508
+UniRef50_B6JMC7	Phosphotransacetylase	0.000230643170378	0.000655044012135	0.000424400841757
+UniRef50_Q6G6T1	MerR family regulatory protein	0.011570972894	0.000720639688898	-0.0108503332051
+UniRef50_B1JFW5	Putative sialic acid transporter	0.00286525587553	0.000725416944637	-0.00213983893089
+UniRef50_O31688	Zinc transporting ATPase	1.64451683429e-05	0.00220835824755	0.00219191307921
+UniRef50_B0T2U9	ChaC family protein	3.88340830237e-06	3.35206932227e-06	-5.313389801e-07
+UniRef50_Q5HG20	Diaminopimelate decarboxylase	0.00728391697913	0.00115654227328	-0.00612737470585
+UniRef50_P39405	Ferric iron reductase protein FhuF	0.00338635659748	0.000295316705201	-0.00309103989228
+UniRef50_UPI0004674EC8	pseudouridine synthase	1.14431618646e-05	1.78352939312e-05	6.3921320666e-06
+UniRef50_UPI00037DA301	hypothetical protein	4.69697654229e-05	9.824339406e-06	-3.71454260169e-05
+UniRef50_UPI0002DDF67E	hypothetical protein	3.86829135201e-05	4.27191730501e-05	4.03625953e-06
+UniRef50_G8RZN0		5.49893768598e-06	2.69898278689e-05	2.14908901829e-05
+UniRef50_Q3J3J9		0.000702504504244	0.00089040212621	0.000187897621966
+UniRef50_B7UZJ0	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000111572213456	0.000185900385592	7.4328172136e-05
+UniRef50_W0YUW2	Phosphoketolase	0.00038164938633	0.000256564237252	-0.000125085149078
+UniRef50_I0ZXX0	ATPase associated with various cellular activities AAA_5	0.00291453612608	0.0013148308522	-0.00159970527388
+UniRef50_Q9WZR0	CTP synthase	6.73195784069e-06	2.94483785455e-05	2.27164207048e-05
+UniRef50_Q8ZJF2	Tryptophan  tRNA ligase	0.00467345301486	0.00142611555949	-0.00324733745537
+UniRef50_P44638	Lactoylglutathione lyase	0.000401441553581	3.23672091182e-05	-0.000369074344463
+UniRef50_UPI000360EF37	hypothetical protein, partial	1.70013249845e-05	5.69880686071e-05	3.99867436226e-05
+UniRef50_G3NMT4		5.40058208084e-06	0.00038476553164	0.000379364949559
+UniRef50_P0ABJ0	Cytochrome bo ubiquinol oxidase subunit 1	0.00453517414156	0.010635895701	0.00610072155944
+UniRef50_Q04664	Galactosyl transferase CpsE	0.000178207040781	0.000454172093428	0.000275965052647
+UniRef50_Q88HN0	CobW P47K family protein	1.05248090398e-05	1.28976731937e-05	2.3728641539e-06
+UniRef50_A5UMX1	Predicted membrane associated Zn dependent protease	0.00278865623254	0.000534025617684	-0.00225463061486
+UniRef50_A5UP18		0.00275383464472	0.00101647693896	-0.00173735770576
+UniRef50_UPI00045E2399	PREDICTED	6.30840724341e-05	0.000108234168055	4.51500956209e-05
+UniRef50_A3SUN2		0.00157400855818	0.000129125227348	-0.00144488333083
+UniRef50_P64452		0.00459439886299	0.00172019043043	-0.00287420843256
+UniRef50_W1GE26	Aerotaxis sensor receptor protein	0.00011069970347	0.00017303713195	6.233742848e-05
+UniRef50_Q167K9	Chemotaxis response regulator protein glutamate methylesterase	6.75217610652e-05	9.34288145708e-06	-5.81788796081e-05
+UniRef50_Q9A7N9	Guanylate kinase	9.64062507658e-06	5.33993978369e-05	4.37587727603e-05
+UniRef50_P0AGJ6		0.00223556044187	0.000189710945528	-0.00204584949634
+UniRef50_K4PRE7	PTS system beta glucoside specific EIIBCA component	0.000216351331064	0.00352738739095	0.00331103605989
+UniRef50_U5MWY6		0.000402960371937	0.000942500122969	0.000539539751032
+UniRef50_R4GFK2		1.15173507714e-05	0.000103191756571	9.16744057996e-05
+UniRef50_W7WSH9		3.93286986155e-05	0.00144003239666	0.00140070369804
+UniRef50_D0JTC4	Uroporphyrinogen decarboxylase	0.00262486529261	0.00188317231262	-0.00074169297999
+UniRef50_P0CQ36	Phosphoribosylaminoimidazole carboxylase	1.86080582161e-05	2.64283030819e-05	7.8202448658e-06
+UniRef50_A0A038FKH8		0.00193966093626	0.000576005642589	-0.00136365529367
+UniRef50_B9TKN7		3.55867028307e-05	2.50262236609e-05	-1.05604791698e-05
+UniRef50_F4SG83	Glycerol 3 phosphate transporter	0.0023413107756	0.000348799258104	-0.0019925115175
+UniRef50_F9EIW4		0.000190580605219	3.9239345132e-05	-0.000151341260087
+UniRef50_UPI0003A9F6F6	molybdenum cofactor biosynthesis protein MoeA	5.18705800324e-06	4.43569703789e-05	3.91699123757e-05
+UniRef50_P67634	Tyrosine recombinase XerS	0.00671138930197	0.00202780881376	-0.00468358048821
+UniRef50_P54473	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	6.54900295746e-05	0.000382699833941	0.000317209804366
+UniRef50_K8AXM7	NADH ubiquinone oxidoreductase chain G	0.00018718313497	0.000541565658592	0.000354382523622
+UniRef50_O27633	Probable S methyl 5 thioinosine phosphorylase	0.00165980436191	0.000245415544476	-0.00141438881743
+UniRef50_F2LRZ3		2.40111447617e-05	7.63664887617e-06	-1.63744958855e-05
+UniRef50_X7Y8I7		2.95705784655e-05	0.000171586182546	0.000142015604081
+UniRef50_W1GDJ6	Ribonucleotide reductase transcriptional regulator NrdR	4.40364545087e-05	0.000134075017318	9.00385628093e-05
+UniRef50_P30871	Inorganic triphosphatase	0.00355307580835	0.00113066236903	-0.00242241343932
+UniRef50_Q16DT4	Magnesium chelatase 30 kDa subunit	0.000854534121249	0.000329349485352	-0.000525184635897
+UniRef50_P25747		0.0022693521386	0.00047242612268	-0.00179692601592
+UniRef50_V8G0E8		0.000276851539012	0.000506239808945	0.000229388269933
+UniRef50_Q5M061	NADPH dependent 7 cyano 7 deazaguanine reductase	0.000124040711925	0.000930716877779	0.000806676165854
+UniRef50_Q1GFL6		0.00200139507124	0.00100287358992	-0.00099852148132
+UniRef50_A9UPG1		2.09257023546e-06	9.65457440677e-07	-1.12711279478e-06
+UniRef50_UPI00035F8DA2	hypothetical protein	6.89922137727e-05	1.52387752177e-05	-5.3753438555e-05
+UniRef50_UPI00036C24C5	hypothetical protein	0.000455452176102	0.00015574698134	-0.000299705194762
+UniRef50_R7HEN4	Pseudouridine synthase	0.00892488928241	0.00182687061985	-0.00709801866256
+UniRef50_Q9JLJ2	4 trimethylaminobutyraldehyde dehydrogenase	8.71099199654e-06	2.15301774336e-05	1.28191854371e-05
+UniRef50_R9WF85	Oxidoreductase	0.000328492065214	0.00777148264131	0.0074429905761
+UniRef50_L0KAS8	Sulfite reductase, subunit C	0.00011723167356	0.000895515963488	0.000778284289928
+UniRef50_A6UYG3		0.000682940365616	0.000183807077915	-0.000499133287701
+UniRef50_U6F043	Transposase YhgA family protein	0.00053809445313	0.00128288667888	0.00074479222575
+UniRef50_A6DUS0	CarR	2.05241936746e-05	0.000589466105706	0.000568941912031
+UniRef50_UPI000470D4BA	amino acid permease, partial	2.1060328233e-05	1.52635786492e-05	-5.7967495838e-06
+UniRef50_E6UW30	5 nucleotidase domain containing protein	2.12511366872e-06	0.000595572937899	0.00059344782423
+UniRef50_P75736	Esterase YbfF	0.00283156575095	0.00143997590485	-0.0013915898461
+UniRef50_UPI00036D73AB	hypothetical protein	8.07279930707e-06	0.000608081637672	0.000600008838365
+UniRef50_A6LRB4	Histidine kinase	0.000165699211876	0.00130872574362	0.00114302653174
+UniRef50_P37747	UDP galactopyranose mutase	0.00263856609784	0.00450356420655	0.00186499810871
+UniRef50_Q1IEH7	GTPase Der	0.000493452122986	0.00713725598739	0.0066438038644
+UniRef50_UPI0003B66950	tetracycline transporter	8.49049924826e-06	0.000270153062244	0.000261662562996
+UniRef50_D3QIS4		0.000674082122953	0.00158205377784	0.000907971654887
+UniRef50_P0AC26	Nitrite transporter NirC	0.00372812402679	0.000610326077257	-0.00311779794953
+UniRef50_P71103	Phosphate acetyltransferase	0.000328267440274	0.00637220414335	0.00604393670308
+UniRef50_A1JNH2	UPF0283 membrane protein YE2117	0.00352579726221	0.00021271311299	-0.00331308414922
+UniRef50_W7Z054		2.23931863463e-05	1.24868292432e-05	-9.9063571031e-06
+UniRef50_Q9K1N7		0.000770379569081	0.0082242215653	0.00745384199622
+UniRef50_W1YTD2		9.77363753634e-05	7.72603175785e-05	-2.04760577849e-05
+UniRef50_E1VH08	Exodeoxyribonuclease III	0.00106866094732	0.00664296341073	0.00557430246341
+UniRef50_A6R2L6	ATP dependent RNA helicase DBP9	5.51433992969e-06	1.202547554e-05	6.51113561031e-06
+UniRef50_B8CX69	Predicted ATPase of the ABC class	0.0110890097835	0.00490845656294	-0.00618055322056
+UniRef50_D4JAE0		0.000131375634168	0.00150236799977	0.0013709923656
+UniRef50_A4XKE2	Phosphopantetheine adenylyltransferase	6.38122885107e-05	0.000823995582221	0.00076018329371
+UniRef50_G7MBQ3	PTS system transcriptional activator	0.000583018612708	0.00160141105018	0.00101839243747
+UniRef50_M1JGK6	Ammonium transporter	0.000185042151398	0.000281701149624	9.6658998226e-05
+UniRef50_UPI000255A1E5	multi anti extrusion protein MatE	2.11833229753e-05	2.46248850868e-05	3.4415621115e-06
+UniRef50_UPI00037C177B	hypothetical protein	0.000131624482939	1.66551436497e-05	-0.000114969339289
+UniRef50_Q8CS21	2 succinylbenzoate  CoA ligase	0.014886252707	0.00209148257495	-0.012794770132
+UniRef50_D3E0E9		0.00310933180482	0.000890088631769	-0.00221924317305
+UniRef50_P44869	Ribosomal RNA small subunit methyltransferase D	3.00482509118e-05	1.91981395121e-05	-1.08501113997e-05
+UniRef50_Q4A602	ATP synthase subunit alpha	3.30896185304e-06	1.82022052457e-05	1.48932433927e-05
+UniRef50_B9KML1	Response regulator receiver protein	0.00620160854692	0.0053693946399	-0.00083221390702
+UniRef50_UPI0002C45261	PREDICTED	4.56796072939e-06	1.69065940293e-06	-2.87730132646e-06
+UniRef50_UPI0004702537	methionine ABC transporter ATP binding protein	1.0287804658e-05	8.39973985947e-06	-1.88806479853e-06
+UniRef50_W7VUU1		4.05152839959e-05	0.00024475759231	0.000204242308314
+UniRef50_UPI0003B4C98F	RpiR family transcriptional regulator	2.67166508842e-05	2.61933151795e-05	-5.233357047e-07
+UniRef50_D8JJP4	AraC type DNA binding domain containing protein	0.000907152231135	0.00475156940661	0.00384441717547
+UniRef50_UPI0003793A77	hypothetical protein	2.22061545941e-05	2.47095054959e-05	2.5033509018e-06
+UniRef50_A3M540	TonB dependent receptor	0.000100829278981	0.00773435178394	0.00763352250496
+UniRef50_UPI00047C9351	hypothetical protein, partial	2.10941005529e-05	5.99423469122e-05	3.88482463593e-05
+UniRef50_U3SV52	Acyl CoA thioesterase	0.00468943279864	0.00152550702457	-0.00316392577407
+UniRef50_K1UTW6		0.000188913398596	0.000709109927963	0.000520196529367
+UniRef50_D2ZP15		0.00206972402462	0.000325418131361	-0.00174430589326
+UniRef50_Q79UU3	Bll2159 protein	5.6315505217e-05	2.31395545636e-05	-3.31759506534e-05
+UniRef50_Q5F9U0	Phenylalanine  tRNA ligase alpha subunit	0.00239804719611	0.00111561813651	-0.0012824290596
+UniRef50_Q3KDB9	Alanine racemase domain protein	0.000790909724559	0.000538004977289	-0.00025290474727
+UniRef50_P0A9P5	Thioredoxin reductase	0.00385173378469	0.00328319143056	-0.00056854235413
+UniRef50_C7NFG6	Cell envelope related function transcriptional attenuator common domain protein	4.74505730337e-06	1.40892797847e-05	9.34422248133e-06
+UniRef50_E1ZFT3		2.8933970481e-06	1.22562919287e-05	9.3628948806e-06
+UniRef50_A3P9L6		0.000427406885532	0.000200895717825	-0.000226511167707
+UniRef50_U3T490		0.00042533670047	0.00415039625779	0.00372505955732
+UniRef50_A4A899		4.58992754656e-05	3.92777035471e-05	-6.6215719185e-06
+UniRef50_A6LY62		0.000423387974682	0.00077608441084	0.000352696436158
+UniRef50_UPI0001DD0936	hypothetical protein, partial	0.000102953479764	2.48684564639e-05	-7.80850233001e-05
+UniRef50_U6M2X4		2.40207525351e-05	3.32218023406e-05	9.2010498055e-06
+UniRef50_I3ZJH3	GAF domain containing protein	1.16771233205e-05	3.32999393312e-05	2.16228160107e-05
+UniRef50_Q6GF11	Protein SprT like	0.0246783458307	0.00196456929443	-0.0227137765363
+UniRef50_UPI000471A4D9	hypothetical protein	1.366666894e-05	7.81281424482e-06	-5.85385469518e-06
+UniRef50_UPI000362ADEC	hypothetical protein	3.58753342159e-06	1.49736897647e-05	1.13861563431e-05
+UniRef50_A6Q6L7	Transketolase	6.01411559548e-05	0.00543562825294	0.00537548709699
+UniRef50_A9LZ37	Tail fibre protein, putative	0.000204054251647	0.000914150998865	0.000710096747218
+UniRef50_P45550		0.00440370040747	0.0007540986435	-0.00364960176397
+UniRef50_M1XJU0	Transposase for IS1272	0.00822775888012	0.00106747481519	-0.00716028406493
+UniRef50_P75167	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.59154608006e-05	1.00764874535e-05	-5.8389733471e-06
+UniRef50_B9DM19	50S ribosomal protein L3	0.0131992639121	0.00507207856933	-0.00812718534277
+UniRef50_I6T7R3	ATP binding protein	0.00257799506289	0.00120065454453	-0.00137734051836
+UniRef50_P0ADP0	Flavin mononucleotide phosphatase YigB	0.00272353993782	0.00107417808242	-0.0016493618554
+UniRef50_Q5HQS0	Acetyltransferase, GNAT family	0.00687482466354	0.00157658366718	-0.00529824099636
+UniRef50_UPI000365881D	UDP N acetylmuramate  alanine ligase, partial	1.82290035162e-05	8.76216695518e-06	-9.46683656102e-06
+UniRef50_UPI000464B7EB	hypothetical protein, partial	0.000106851270543	4.88981293079e-05	-5.79531412351e-05
+UniRef50_Q06464	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.25589886554e-05	1.1271693837e-05	-1.2872948184e-06
+UniRef50_B3GYD9		7.48849716324e-05	3.13331011751e-05	-4.35518704573e-05
+UniRef50_UPI0003745C94	hypothetical protein	0.000965271707964	0.00182967339842	0.000864401690456
+UniRef50_O67444		9.03924561723e-06	2.23520817014e-05	1.33128360842e-05
+UniRef50_UPI00029AB2BE	DNA processing protein	6.2870907391e-05	4.95373006235e-05	-1.33336067675e-05
+UniRef50_UPI000373702C	hypothetical protein	1.93157409838e-05	2.90885747303e-05	9.7728337465e-06
+UniRef50_B2VK30	Protein TsgA homolog	0.00297374290412	0.000797447901047	-0.00217629500307
+UniRef50_K6LK64	Diguanylate cyclase  domain protein	8.94516561282e-05	0.000456037688626	0.000366586032498
+UniRef50_K2SED6		0.000137047494064	7.48867184436e-05	-6.21607756204e-05
+UniRef50_Q9RXB5		3.86504425414e-05	0.021732239059	0.0216935886165
+UniRef50_Q9RXB7		0.000245120771981	0.0553583475266	0.0551132267546
+UniRef50_G7U855	Ser Thr phosphatase family protein	0.00011005422415	0.00218455871511	0.00207450449096
+UniRef50_I3YFJ2	NADH dehydrogenase subunit M	7.78856923336e-05	0.00344596700088	0.00336808130855
+UniRef50_Q58690	Putative fumarate hydratase subunit alpha	0.00329739899649	0.000231318568035	-0.00306608042845
+UniRef50_A6LR96	Radical SAM domain protein	0.000332029699854	0.000186712353132	-0.000145317346722
+UniRef50_L7WSQ0		0.026303276134	0.00625083781117	-0.0200524383228
+UniRef50_B4RIY5	Rsp	0.000100932082575	0.00416155179136	0.00406061970878
+UniRef50_UPI0002889AF8	alcohol dehydrogenase	0.000100515736442	3.3151049514e-05	-6.7364686928e-05
+UniRef50_D6PE21	Predicted flagellar hook capping protein	8.52565299713e-06	1.17276706558e-05	3.20201765867e-06
+UniRef50_G7UVD4	Dihydrolipoamide dehydrogenase	8.81290246311e-05	0.00197869076315	0.00189056173852
+UniRef50_Q6FDN3	Glycerol kinase	2.71176616565e-05	0.000126431651399	9.93139897425e-05
+UniRef50_A5IV34	50S ribosomal protein L3	0.00872987569824	0.00186377152345	-0.00686610417479
+UniRef50_J9B6L5		9.79177642702e-06	1.77784766037e-05	7.98670017668e-06
+UniRef50_UPI00029ABC7B	LysR family transcriptional regulator, partial	4.01233001367e-05	2.06466716722e-05	-1.94766284645e-05
+UniRef50_Q0BS24	Acetolactate synthase small subunit	0.0119247875902	0.00151493399138	-0.0104098535988
+UniRef50_P37924	Outer membrane usher protein FimD	0.00301939227975	0.00115883470606	-0.00186055757369
+UniRef50_U3TX51	Malonyl CoA acyl carrier protein transacylase	0.00175527998524	0.00225744585272	0.00050216586748
+UniRef50_UPI000361F37C	hypothetical protein	4.30138955065e-05	1.8323822648e-05	-2.46900728585e-05
+UniRef50_UPI0002EB7738	hypothetical protein	1.07653267706e-05	4.43384112479e-05	3.35730844773e-05
+UniRef50_V9UBP5		0.000138211946844	0.000165443532329	2.7231585485e-05
+UniRef50_I1EPG5		2.26497517312e-05	4.74130017204e-05	2.47632499892e-05
+UniRef50_E9BYY8		2.07160620757e-06	1.65232513169e-05	1.44516451093e-05
+UniRef50_I2QVL7		4.2822554174e-05	2.68064956953e-05	-1.60160584787e-05
+UniRef50_E3A0E2		0.000439648606825	0.00336450188563	0.00292485327881
+UniRef50_UPI0003777C1D	hypothetical protein	0.000204098969672	2.63837077196e-05	-0.000177715261952
+UniRef50_A9BF34	50S ribosomal protein L7 L12	0.00191628639599	0.00194109119692	2.480480093e-05
+UniRef50_T0TSM6	Histidine kinase, putative	0.00415797235325	0.00145964223484	-0.00269833011841
+UniRef50_UPI00037689C2	hypothetical protein	9.79272942437e-06	0.000237088538711	0.000227295809287
+UniRef50_UPI00023B2B80	PREDICTED	8.66862299559e-06	3.89941196861e-05	3.03254966905e-05
+UniRef50_A4X0E6		5.44875341365e-05	3.36138450299e-05	-2.08736891066e-05
+UniRef50_G8V4L1		0.0136699162563	0.00315188589135	-0.0105180303649
+UniRef50_W4S2X5	Alkyl hydroperoxide reductase subunit F	7.71198234451e-05	0.000236343706486	0.000159223883041
+UniRef50_E2XSQ7	Transcriptional regulator, AraC family	0.000227653299757	0.000176133223777	-5.152007598e-05
+UniRef50_U4TYH6		0.00162769612583	0.00070230451535	-0.00092539161048
+UniRef50_UPI0003B7313F	GNAT family acetyltransferase	3.8705863834e-05	2.4049220093e-05	-1.4656643741e-05
+UniRef50_UPI000262A595	membrane protein	0.000502517358481	3.35477697895e-05	-0.000468969588692
+UniRef50_UPI0002378354	AraC family transcriptional regulator	0.000113637457606	1.35740812762e-05	-0.00010006337633
+UniRef50_F0Y7I6		0.000229612588454	0.000329159633223	9.9547044769e-05
+UniRef50_UPI00041D5BF9	transcription termination factor Rho	1.18847788764e-05	6.62469381435e-06	-5.26008506205e-06
+UniRef50_D0IRH3		0.000206276496643	0.00126519994175	0.00105892344511
+UniRef50_Q3AE81	Adenine deaminase 2	2.77284915682e-05	7.39974158041e-06	-2.03287499878e-05
+UniRef50_W1FF26		0.000532620805937	2.69659595577e-05	-0.000505654846379
+UniRef50_Q3IV87	Caspase 1, p20	0.00381179151706	0.00108746078944	-0.00272433072762
+UniRef50_W6BZ44	Cupin domain protein	1.87966852506e-05	4.93107487202e-05	3.05140634696e-05
+UniRef50_UPI000363D9BF	hypothetical protein, partial	2.91478981214e-05	1.49245080691e-05	-1.42233900523e-05
+UniRef50_Q8FT12	Tryptophan synthase beta chain 2	1.53395825733e-05	9.96895226372e-06	-5.37063030958e-06
+UniRef50_Q73NM0	Chorismate synthase	4.45875422911e-06	1.84711140873e-05	1.40123598582e-05
+UniRef50_S5YXU8	ErfK YbiS YcfS YnhG family protein	0.00457504033361	0.00539274364427	0.00081770331066
+UniRef50_Q0AK81	Ferric uptake regulator, Fur family	0.0107162869468	0.00228920951453	-0.00842707743227
+UniRef50_F0K4Y1	2,3 cyclic nucleotide 2phosphodiesterase 	0.000378840155347	0.00109852474362	0.000719684588273
+UniRef50_D7A6Y6		1.07554198471e-05	8.03888284457e-06	-2.71653700253e-06
+UniRef50_X8ACG0	Pyridine nucleotide disulfide oxidoreductase family protein	4.94833773131e-05	0.00275404860856	0.00270456523125
+UniRef50_P29928	Uroporphyrinogen III C methyltransferase	5.39947344412e-05	0.000255685309762	0.000201690575321
+UniRef50_Q2LTA1	4 hydroxy tetrahydrodipicolinate synthase	5.4353334221e-06	2.92788927977e-05	2.38435593756e-05
+UniRef50_O83571	Transketolase	3.84857391345e-05	1.77006576692e-05	-2.07850814653e-05
+UniRef50_P37518	Ribosome binding ATPase YchF	0.00777465762818	0.0052464797859	-0.00252817784228
+UniRef50_D9RHA1		0.00795710956243	0.00154159034787	-0.00641551921456
+UniRef50_A5IVA9		0.0116418063965	0.00308676477226	-0.00855504162424
+UniRef50_UPI0003763331	hypothetical protein	2.26811341459e-05	2.92831333271e-05	6.6019991812e-06
+UniRef50_UPI00016C4318	hypothetical protein	7.72614087193e-05	4.30126679112e-05	-3.42487408081e-05
+UniRef50_UPI000255CEAC	3,4 dihydroxy 2 butanone 4 phosphate synthase	1.49147321113e-06	1.0078794131e-05	8.58732091987e-06
+UniRef50_UPI00036D0344	hypothetical protein, partial	2.91147073638e-05	9.78105420454e-06	-1.93336531593e-05
+UniRef50_F8GWB2	Aromatic compounds catabolic protein	1.12588349656e-05	1.58774503126e-05	4.618615347e-06
+UniRef50_X5DV87	Molybdate ABC transporter, periplasmic molybdate binding protein	0.0171209960761	0.00546666404902	-0.0116543320271
+UniRef50_UPI0004541A53	PREDICTED	5.74572735962e-05	0.000239555096073	0.000182097822477
+UniRef50_UPI000360E9DE	hypothetical protein	3.41240950785e-05	6.04828651842e-06	-2.80758085601e-05
+UniRef50_P55734	Inner membrane protein YgaP	0.00140151864724	0.000714348523532	-0.000687170123708
+UniRef50_UPI0003B40AC8	ABC transporter	4.67874074605e-06	1.9489042721e-05	1.48103019749e-05
+UniRef50_G7MCR1	Taurine transporting ATPase	0.000137267632307	0.000809821909556	0.000672554277249
+UniRef50_Q8DVQ3	Ribosome maturation factor RimP	0.00557184888849	0.00279103792231	-0.00278081096618
+UniRef50_C7NA19	Ribonucleoside diphosphate reductase subunit beta	0.0180563286137	0.00482699858703	-0.0132293300267
+UniRef50_X1LB27	Marine sediment metagenome DNA, contig	2.58856459014e-05	0.000167794102236	0.000141908456335
+UniRef50_UPI0001E2E6F3	transport system permease	2.75687258931e-05	1.9233045929e-05	-8.3356799641e-06
+UniRef50_A3N3F8	3 dehydroquinate dehydratase	5.38926304002e-05	2.33646412647e-05	-3.05279891355e-05
+UniRef50_K0RWJ4		4.3110427424e-06	5.49345924854e-06	1.18241650614e-06
+UniRef50_A3TPX9		7.10684697507e-05	0.00138480778634	0.00131373931659
+UniRef50_UPI0003B75E06	preprotein translocase subunit TatA	6.39738583724e-05	4.78766491838e-05	-1.60972091886e-05
+UniRef50_Q73FJ4	Glutamine amidotransferase subunit PdxT	0.0182328691833	0.00659721995591	-0.0116356492274
+UniRef50_Q1JAW0	DNA repair protein RecN	0.00597392746286	0.0055106608689	-0.00046326659396
+UniRef50_UPI00037D1EFC	ABC transporter	5.86171435572e-06	9.13151682254e-05	8.54534538697e-05
+UniRef50_P0A0S5	Cell division protein FtsZ	0.000334640182345	0.00348741758183	0.00315277739949
+UniRef50_A3PKK1	Transcriptional regulator, LuxR family	0.0131331314106	0.00484255997554	-0.00829057143506
+UniRef50_UPI000185FC5F	hypothetical protein TGME49_010350	2.75889714784e-05	2.14958174354e-05	-6.093154043e-06
+UniRef50_F3R0E6	Cobalt transport protein	2.01429840546e-05	4.29729208224e-05	2.28299367678e-05
+UniRef50_A0KF56	Trap transporter solute receptor, taxi family	4.95380895057e-05	1.14927135311e-05	-3.80453759746e-05
+UniRef50_Q8TY21	GTP cyclohydrolase MptA	0.00303708332945	0.000444693080934	-0.00259239024852
+UniRef50_A3PPL1	Aminotransferase	0.00784683725582	0.0025784171095	-0.00526842014632
+UniRef50_R5G6A1	Cyclopropane fatty acyl phospholipid synthase	0.000298329240325	0.000480738846681	0.000182409606356
+UniRef50_P43799	Anaerobic glycerol 3 phosphate dehydrogenase subunit A	0.00258865051196	0.000389996268726	-0.00219865424323
+UniRef50_Q99RJ0	Protein flp	0.00926277548262	0.00313874176223	-0.00612403372039
+UniRef50_F0VWI5	PTT family thiamin transporter	0.00409308345524	0.000289053871314	-0.00380402958393
+UniRef50_Q12PZ2	2 C methyl D erythritol 4 phosphate cytidylyltransferase	6.37047600074e-06	8.80479674846e-06	2.43432074772e-06
+UniRef50_Q8FGS9	Ribosomal RNA small subunit methyltransferase F	0.00313701740099	0.000836132980282	-0.00230088442071
+UniRef50_U7PCU9		4.56260682599e-05	0.00334322687445	0.00329760080619
+UniRef50_UPI0001851281	aldehyde dehydrogenase	3.82550067579e-06	6.1713825183e-06	2.34588184251e-06
+UniRef50_G8NCG2	Short chain dehydrogenase reductase SDR	3.98671185418e-06	3.87488562505e-05	3.47621443963e-05
+UniRef50_Q99XQ7	Elongation factor Ts	0.00503874227619	0.00400189716792	-0.00103684510827
+UniRef50_A4WSL4	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.00243289321406	1.79209363191e-05	-0.00241497227774
+UniRef50_UPI00045EAF7F	amidase	1.88830149901e-05	7.52902236264e-06	-1.13539926275e-05
+UniRef50_P22098	Tryptophan biosynthesis protein TrpCF	0.0035386865701	0.00059973047584	-0.00293895609426
+UniRef50_UPI00037775E1	hypothetical protein	4.00046294021e-06	7.73820259147e-06	3.73773965126e-06
+UniRef50_D6GRE6	CobQ CobB MinD ParA nucleotide binding domain protein	6.97683137846e-06	6.44040381182e-05	5.74272067397e-05
+UniRef50_UPI0000510540	aspartate ammonia lyase	3.65968013866e-05	2.36622660532e-05	-1.29345353334e-05
+UniRef50_UPI00034B0665	glucose 1 phosphate adenylyltransferase	1.08510914136e-05	2.50861817701e-05	1.42350903565e-05
+UniRef50_Q46802		0.00513301387663	0.0010626632033	-0.00407035067333
+UniRef50_O30019	Pyruvate carboxylase subunit A	7.81776381628e-06	1.54343987264e-05	7.61663491012e-06
+UniRef50_Q49VK7	Secretory antigen SsaA like protein	0.00876382083714	0.00438970089801	-0.00437411993913
+UniRef50_W4UBQ2	Glucoamylase S1 S2	0.00019844214558	0.000187200103754	-1.1242041826e-05
+UniRef50_Q46809		0.0033355749656	0.000509919233309	-0.00282565573229
+UniRef50_Q46808		0.00316614729655	0.00210960890249	-0.00105653839406
+UniRef50_B0VB06		0.000268354968373	0.000754810784963	0.00048645581659
+UniRef50_G7M9G8	Signal peptidase I	0.00105139244997	0.000883465702945	-0.000167926747025
+UniRef50_Q6F985	Protein TolB	0.000249855161395	0.0107880724089	0.0105382172475
+UniRef50_A8MIR6	Heavy metal translocating P type ATPase	0.000361482705049	0.0003223409879	-3.9141717149e-05
+UniRef50_Q6GI34	Glutamyl endopeptidase	0.00839670068442	0.00114078481692	-0.0072559158675
+UniRef50_A0A011EDI0		2.18466032552e-05	6.36254469059e-05	4.17788436507e-05
+UniRef50_W5VF17	Beta aspartyl peptidase	0.00152685626444	0.00034213617568	-0.00118472008876
+UniRef50_A6FSN1		3.58206187165e-06	1.93326186952e-06	-1.64880000213e-06
+UniRef50_UPI00046B7987	PREDICTED	8.1365818119e-05	3.69616260525e-05	-4.44041920665e-05
+UniRef50_UPI00037A4252	hypothetical protein	4.63296885611e-06	3.26417426446e-06	-1.36879459165e-06
+UniRef50_UPI00037DFE14	hypothetical protein	8.6566233011e-07	3.43503299921e-05	3.3484667662e-05
+UniRef50_UPI0004698FEC	anti sigma regulatory factor	2.319668029e-05	0.00104768952259	0.0010244928423
+UniRef50_B7H2F2	TonB dependent siderophore receptor family protein	0.00012042550199	0.0068487807895	0.00672835528751
+UniRef50_UPI0003621DA0	hypothetical protein	0.000454301580043	3.96682270623e-05	-0.000414633352981
+UniRef50_F8HDH3	N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase	0.004236401228	0.000933405304551	-0.00330299592345
+UniRef50_E1VQ96		0.000751268586283	0.000187900342655	-0.000563368243628
+UniRef50_V1VWE5	Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA	0.000862377428233	0.000214988314519	-0.000647389113714
+UniRef50_Q57624	Aspartyl glutamyl tRNA amidotransferase subunit B	0.00320227283329	0.000330808282006	-0.00287146455128
+UniRef50_P38942	4 hydroxybutyrate coenzyme A transferase	0.000863015462288	0.0021048861233	0.00124187066101
+UniRef50_Q8DW17	Putative agmatine deiminase	0.00607781779478	0.00443874315847	-0.00163907463631
+UniRef50_Q2RRP2	Fructose 1,6 bisphosphatase class 1	1.73683689598e-05	9.76920788205e-06	-7.59916107775e-06
+UniRef50_G7LXK3	Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000754316477018	0.0011580912414	0.000403774764382
+UniRef50_A2RLU5	Bifunctional protein FolD	1.31799939057e-05	4.16954470778e-06	-9.01044919792e-06
+UniRef50_UPI00047C45C3	hypothetical protein	2.64976359936e-05	5.3034021998e-06	-2.11942337938e-05
+UniRef50_D4HC59	MazG family protein	0.00059290993013	0.00528837608123	0.0046954661511
+UniRef50_P76909		0.00334963636146	0.000983787813649	-0.00236584854781
+UniRef50_F0RK09	Peptidase U32	5.5951480556e-05	0.0198055112287	0.0197495597481
+UniRef50_UPI000479CC6C	pseudouridine synthase	6.18259839294e-06	5.25351429563e-06	-9.2908409731e-07
+UniRef50_R7G2P1	tRNA  2 O) methyltransferase	0.0308319054726	0.0260197849502	-0.0048121205224
+UniRef50_Q2KAV8	UPF0061 protein RHE_CH01223	7.73008850942e-05	0.000973556115833	0.000896255230739
+UniRef50_V4HW78		3.38994761404e-06	0.000198627150752	0.000195237203138
+UniRef50_A4EDG0		0.00022802672554	7.21354113454e-05	-0.000155891314195
+UniRef50_B4RQC6	Lipid II flippase FtsW	0.000299461383637	0.00290998726558	0.00261052588194
+UniRef50_D8THS2	Pathogenesis related protein 1 like protein	1.22103071691e-05	4.41507377948e-05	3.19404306257e-05
+UniRef50_UPI000376F8EF	hypothetical protein, partial	2.6152056604e-05	1.95916943942e-05	-6.5603622098e-06
+UniRef50_F4DL94	Beta lactamase domain containing protein	0.000316225937685	6.52887496932e-05	-0.000250937187992
+UniRef50_C5QMP7	Nitrite reductase [NADH], large subunit	0.0287029985913	0.00779141621946	-0.0209115823718
+UniRef50_Q9RYB4	GTP cyclohydrolase 1	0.000414398256095	0.0534840979209	0.0530696996648
+UniRef50_P23224	Zinc metalloproteinase	2.17273418304e-06	0.0012685183819	0.00126634564772
+UniRef50_Q5HRK1	Ornithine cyclodeaminase mu crystallin family protein	0.00799383814489	0.00389776504399	-0.0040960731009
+UniRef50_UPI000426573E	hypothetical protein	2.49961566783e-05	3.23741967131e-05	7.3780400348e-06
+UniRef50_F0L5S4	Segregation and condensation protein B	0.0017456127819	0.00253060927577	0.00078499649387
+UniRef50_R5FRB0	Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase	0.00349878368374	0.00113848388587	-0.00236029979787
+UniRef50_Q2W403	Electron transport complex subunit E	0.00370689577757	0.00205786826871	-0.00164902750886
+UniRef50_UPI0004636746	arabinose transporter permease	8.77583822708e-06	7.78268938935e-06	-9.9314883773e-07
+UniRef50_Q57661		0.00651000329718	0.000777149224201	-0.00573285407298
+UniRef50_Q5V230	Probable aminomethyltransferase	7.87921482457e-06	5.22885264269e-05	4.44093116023e-05
+UniRef50_U1W1Q2		1.7456605566e-05	0.00111286693995	0.00109541033438
+UniRef50_V5VE78		0.000176225963693	0.0052998456188	0.00512361965511
+UniRef50_V5VBQ5	Ribonuclease Z	0.000465673600297	0.00556461686254	0.00509894326224
+UniRef50_X2HF59	Membrane protein	0.00346172378566	0.0020428034206	-0.00141892036506
+UniRef50_R5LLF3	Acetate CoA transferase subunit alpha	0.00132775169757	0.0015179614607	0.00019020976313
+UniRef50_A5UII8	Lipid A disaccharide synthase	0.00309136058486	0.00120898086735	-0.00188237971751
+UniRef50_UPI0003F49601	hypothetical protein TREMEDRAFT_38243	1.90677045136e-05	0.000128580122778	0.000109512418264
+UniRef50_Q3JKL4		3.85977493742e-05	5.79086730159e-05	1.93109236417e-05
+UniRef50_UPI0004726B74	hypothetical protein	0.000106858286018	9.00974785897e-06	-9.7848538159e-05
+UniRef50_F0RLT4	Homoserine dehydrogenase	0.000119457591412	0.0174633231119	0.0173438655205
+UniRef50_R5ZCF8		3.41042121969e-06	1.45869125781e-05	1.11764913584e-05
+UniRef50_UPI000375252A	hypothetical protein	4.12266136068e-06	3.18372412896e-05	2.77145799289e-05
+UniRef50_Q8RQP4	NADP specific glutamate dehydrogenase	1.22197083254e-05	7.24035703897e-05	6.01838620643e-05
+UniRef50_UPI00036DFBB3	hypothetical protein	3.49596279114e-06	5.5560639212e-06	2.06010113006e-06
+UniRef50_R0DWK7		7.36988509447e-05	0.000101804349493	2.81054985483e-05
+UniRef50_F9YX60	Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase	0.000212868038824	0.0059591309578	0.00574626291898
+UniRef50_UPI0003769C5D	hypothetical protein	6.04704569972e-06	3.47491385231e-05	2.87020928234e-05
+UniRef50_UPI000472FB88	adenosylcobinamide kinase	2.38483063204e-05	4.0627813099e-05	1.67795067786e-05
+UniRef50_I4E1R6		0.0181235642659	0.00259972979109	-0.0155238344748
+UniRef50_A4E9H7		3.38279665272e-05	0.000456840723113	0.000423012756586
+UniRef50_UPI000248CE53	sugar ABC transporter substrate binding protein	4.97041496653e-06	2.08644474421e-05	1.58940324756e-05
+UniRef50_UPI0003B44826	hypothetical protein	6.8329956159e-06	1.03860906595e-05	3.5530950436e-06
+UniRef50_A8AXR0	Multidrug resistance protein B	0.00622038485082	0.00206625626737	-0.00415412858345
+UniRef50_B9TDS9		4.42472585015e-05	2.43124019051e-05	-1.99348565964e-05
+UniRef50_UPI000382B615	hypothetical protein	1.37545895225e-05	8.63210481455e-05	7.2566458623e-05
+UniRef50_F2E6Z5	Predicted protein 	0.000139345151067	3.90115343114e-05	-0.000100333616756
+UniRef50_A8IJS1	Glutamate synthase	0.00128026563425	0.000127017937712	-0.00115324769654
+UniRef50_P76108	Putative ABC transporter periplasmic binding protein YdcS	0.00383756302508	0.00147457741304	-0.00236298561204
+UniRef50_Q05197	Phosphatidylethanolamine N methyltransferase	0.00254228775841	0.00130914273516	-0.00123314502325
+UniRef50_F5L317		1.93781542303e-05	1.70899863588e-05	-2.2881678715e-06
+UniRef50_UPI00040DE43B	hypothetical protein	7.89711055954e-06	2.05019636101e-05	1.26048530506e-05
+UniRef50_UPI0004786ABC	hypothetical protein	1.25214168143e-05	2.09603533671e-05	8.4389365528e-06
+UniRef50_F8JXJ3		1.24419487848e-05	6.62529227364e-06	-5.81665651116e-06
+UniRef50_F4T079	Exodeoxyribonuclease 8  (EXOVIII)	0.000754721586371	0.000375188756835	-0.000379532829536
+UniRef50_H3WGZ6		0.000467034846539	0.000364707653094	-0.000102327193445
+UniRef50_O27859	Ribonuclease Z	0.00332272675451	0.00071117995287	-0.00261154680164
+UniRef50_Q9P9X3		0.00231544251776	0.000211696562859	-0.0021037459549
+UniRef50_Q21CC1	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00881266530114	0.00110600657098	-0.00770665873016
+UniRef50_R4SH81	PE PGRS family protein	3.20660931678e-06	8.31074428152e-05	7.99008334984e-05
+UniRef50_V8FTC7		0.00160982980627	0.000874450751439	-0.000735379054831
+UniRef50_P66898	L threonine dehydratase biosynthetic IlvA	1.40675682896e-05	0.000500809339492	0.000486741771202
+UniRef50_Q9RU40		0.000137768609074	0.0256262282209	0.0254884596118
+UniRef50_UPI000470AB53	zinc ABC transporter permease, partial	0.000110755119304	8.88107179085e-05	-2.19444013955e-05
+UniRef50_F0VW84	Ferrous iron transport protein B	0.00470576956129	0.00149056574322	-0.00321520381807
+UniRef50_UPI00030520A7	hypothetical protein	2.38136568778e-05	2.72781041647e-05	3.4644472869e-06
+UniRef50_P08624	Nitrogenase iron protein 2	0.00594265137104	0.00166299556588	-0.00427965580516
+UniRef50_UPI0002BAC68C	hypothetical protein, partial	4.34832725849e-05	0.00240442358078	0.0023609403082
+UniRef50_A7FMJ5	Autoinducer 2 kinase LsrK	0.000744706888764	0.000138863654487	-0.000605843234277
+UniRef50_Q3JQJ9		0.000370074476117	5.6586143233e-05	-0.000313488332884
+UniRef50_Q4L8H3	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00933771098491	0.00207819541404	-0.00725951557087
+UniRef50_UPI000329E5F9	PREDICTED	2.6034869797e-05	2.17222966907e-05	-4.3125731063e-06
+UniRef50_Q1IHH4	DNA directed RNA polymerase subunit beta	4.56061017122e-06	3.30273703284e-06	-1.25787313838e-06
+UniRef50_D4GDT5	YliJ	0.000363844029575	0.00402220485901	0.00365836082944
+UniRef50_N1HFC9	M48B family peptidase	0.00171999664275	0.00272600035565	0.0010060037129
+UniRef50_UPI000475CBB8	SAM dependent methyltransferase	1.64028433492e-05	2.19798537827e-05	5.5770104335e-06
+UniRef50_D3QF90	Manganese ABC transporter, inner membrane permease protein SitD	0.01529007816	0.00422250359934	-0.0110675745607
+UniRef50_Q8D2L6	Tyrosine  tRNA ligase	3.66546513597e-06	4.64881871882e-06	9.8335358285e-07
+UniRef50_A0A011DVL1	Bacterial regulatory s, tetR family protein	0.000214075229968	0.00435064986238	0.00413657463241
+UniRef50_UPI0003EBE8AE	PREDICTED	1.13609537399e-05	6.66329161322e-06	-4.69766212668e-06
+UniRef50_UPI0004683656	aspartate aminotransferase	1.32163654772e-05	2.40974447675e-05	1.08810792903e-05
+UniRef50_P33117	Ferric uptake regulation protein	0.00611031459481	0.0333446053364	0.0272342907416
+UniRef50_K7RVV7	FAD linked oxidase protein	4.34557930395e-05	0.00119227808727	0.00114882229423
+UniRef50_V5WXJ2	Alpha beta hydrolase	0.000338835264902	0.00125887495664	0.000920039691738
+UniRef50_P0A3M5	Penicillin binding protein 2B	0.0004049340737	0.00444297502824	0.00403804095454
+UniRef50_UPI0003B419E6	DNA mismatch repair protein MutS	2.11337006829e-06	6.21057326233e-05	5.9992362555e-05
+UniRef50_L7EXS1		4.58347582821e-05	2.53472539933e-05	-2.04875042888e-05
+UniRef50_UPI00024870CC	phosphoribosylaminoimidazole carboxylase ATPase subunit, partial	1.58957070306e-05	1.35198277288e-05	-2.3758793018e-06
+UniRef50_H6VX40	GroEL 	1.86179806429e-06	2.25988144675e-05	2.07370164032e-05
+UniRef50_Q81MY9	Probable transaldolase 2	0.000163297636635	0.000513624747486	0.000350327110851
+UniRef50_P22513	Glyceraldehyde 3 phosphate dehydrogenase, glycosomal	4.83410427503e-05	0.00593583495336	0.00588749391061
+UniRef50_A5UKB5	V type ATP synthase subunit E	0.0054689829169	0.00150800019675	-0.00396098272015
+UniRef50_UPI0002F6015E	hypothetical protein	1.34318779699e-05	2.53515245917e-05	1.19196466218e-05
+UniRef50_W5XGC5	Cation exchanger, putative	0.000148857450797	0.000153256531817	4.39908102e-06
+UniRef50_L6Y993	Electron transfer flavoprotein ubiquinone oxidoreductase	2.37677285614e-05	4.51650964392e-05	2.13973678778e-05
+UniRef50_Q60316	Formate dehydrogenase subunit beta	0.00451785636311	0.00133179106264	-0.00318606530047
+UniRef50_R6G0X7	Rubrerythrin	0.000231113870722	0.000663082457162	0.00043196858644
+UniRef50_V8G1N6	Transcriptional regulator	0.000278245200628	0.000413030356916	0.000134785156288
+UniRef50_A0A023UJB1	Type F conjugative transfer system protein TraW	7.68470659158e-05	1.94102586855e-05	-5.74368072303e-05
+UniRef50_Q9K1P6	Efem EfeO family lipoprotein NMB0035	0.00208313352415	0.00568878830717	0.00360565478302
+UniRef50_A4SHC0	ADP L glycero D manno heptose 6 epimerase	0.00245043138879	0.000557370735232	-0.00189306065356
+UniRef50_UPI00036EB160	hypothetical protein	2.7038648977e-05	2.60091641931e-05	-1.0294847839e-06
+UniRef50_UPI000476D9A7	hypothetical protein	3.15301630974e-06	1.00573701916e-05	6.90435388186e-06
+UniRef50_F8HEJ4	Pts system, trehalose specific iibc component	0.000511452773432	0.00266625324643	0.002154800473
+UniRef50_G4PGT5	Pirin	7.18521550115e-06	1.19266849614e-05	4.74146946025e-06
+UniRef50_S4XAN4	Cobalamin biosynthesis like protein	0.0228222197272	0.00975569824653	-0.0130665214807
+UniRef50_UPI0003B3E06E	alcohol dehydrogenase	5.31632929185e-06	9.6094338663e-06	4.29310457445e-06
+UniRef50_Q6DB87	Ribose import ATP binding protein RbsA	3.20784919178e-05	1.76700566509e-05	-1.44084352669e-05
+UniRef50_Q4UNK0	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.65657941189e-05	2.08575002644e-05	4.2917061455e-06
+UniRef50_UPI00038035A6	hypothetical protein	1.92438974087e-06	2.05054057921e-06	1.2615083834e-07
+UniRef50_UPI00036EABAC	hypothetical protein	4.85183077887e-05	1.92274578163e-05	-2.92908499724e-05
+UniRef50_G2QJ48		8.29757207833e-06	3.49134073358e-06	-4.80623134475e-06
+UniRef50_Q5HKG5	Drug transporter, putative	0.0104188732573	0.00431732254809	-0.00610155070921
+UniRef50_Q89EZ8	Outer membrane lipoprotein	0.013056144916	0.00651806616689	-0.00653807874911
+UniRef50_Q5HKF6	Extracellular cysteine protease	0.020511466984	0.00323062289731	-0.0172808440867
+UniRef50_A6LXP0	Multicopper oxidase, type 3	0.000127816926252	0.000211696562859	8.3879636607e-05
+UniRef50_Q3JMW6	Phenol hydroxylase, putative	6.4951472281e-05	7.20022784698e-06	-5.7751244434e-05
+UniRef50_E0RTD9	ATP dependent 6 phosphofructokinase	7.52266160023e-06	0.00822220835326	0.00821468569166
+UniRef50_P80668	Phenylacetaldehyde dehydrogenase	0.00297000694387	0.00109678376115	-0.00187322318272
+UniRef50_UPI0004673888	acyl transferase	0.00013714820517	1.56669803885e-05	-0.000121481224781
+UniRef50_Q2S6J2	Uridylate kinase	0.000259960437622	0.00976978260282	0.0095098221652
+UniRef50_UPI00041D7A97	hypothetical protein	2.2624251643e-05	1.14782333498e-05	-1.11460182932e-05
+UniRef50_P00936	Adenylate cyclase	0.000951323161686	7.07063140959e-05	-0.00088061684759
+UniRef50_Q11ID5	Hemin import ATP binding protein HmuV	1.17827522955e-05	0.00134519591855	0.00133341316625
+UniRef50_B7UZ76	TadG	0.00120557254603	0.000106038314257	-0.00109953423177
+UniRef50_A5UNR9		0.000328248685954	0.000533704888912	0.000205456202958
+UniRef50_Q3HKE6	TonB dependent receptor protein	0.0127815967563	0.00276460436609	-0.0100169923902
+UniRef50_M3AAW3		7.38719942778e-05	2.73444576467e-05	-4.65275366311e-05
+UniRef50_UPI0003B55AAB	GntR family transcriptional regulator	1.93522666488e-05	1.59758707413e-05	-3.3763959075e-06
+UniRef50_O29406	Serine hydroxymethyltransferase	0.00278474687837	0.00104012522049	-0.00174462165788
+UniRef50_UPI00028943C6	transposase Tn3	6.99176911057e-06	0.000528512625202	0.000521520856091
+UniRef50_B2V085	Pyruvate kinase	0.000845953828843	0.00220541622381	0.00135946239497
+UniRef50_UPI000465D378	transposase, partial	0.000123925235991	0.000424177955472	0.000300252719481
+UniRef50_J7R4E7		0.00321652300828	0.00537204854973	0.00215552554145
+UniRef50_W8EY20		3.33270007001e-05	2.72608974897e-05	-6.0661032104e-06
+UniRef50_A0A037YSW4		9.4391746441e-05	6.05501271725e-05	-3.38416192685e-05
+UniRef50_UPI000371DAEA	hypothetical protein, partial	8.20457134599e-06	2.82703045944e-05	2.00657332484e-05
+UniRef50_B9JXV9	Folylpolyglutamate synthase	0.00145318338233	0.000490749768476	-0.000962433613854
+UniRef50_D3E3E5		0.000818351807542	0.00163870332492	0.000820351517378
+UniRef50_UPI0003749DD6	hypothetical protein, partial	2.39995742348e-05	5.89133456386e-05	3.49137714038e-05
+UniRef50_W5L6H6		9.63794014105e-05	0.000161270261368	6.48908599575e-05
+UniRef50_D7FUW4		4.93466257772e-05	1.99810742541e-05	-2.93655515231e-05
+UniRef50_C1KVY0	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.0131713318436	0.00502067804079	-0.00815065380281
+UniRef50_F0VXH5	ABC transporter permease protein	0.00435676651663	0.00150052326942	-0.00285624324721
+UniRef50_UPI000380067C	hypothetical protein, partial	1.16905077393e-05	1.28448538401e-05	1.1543461008e-06
+UniRef50_Q6G6X4	Isopentenyl diphosphate delta isomerase	0.0262882716244	0.00565924812996	-0.0206290234944
+UniRef50_Q8PYF8	2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00148878526022	0.000407265126568	-0.00108152013365
+UniRef50_P73098	Chaperone protein dnaK3	0.0121213094143	0.00324177494165	-0.00887953447265
+UniRef50_UPI000255C532	hypothetical protein	1.46143178747e-05	2.10441132174e-05	6.4297953427e-06
+UniRef50_P46133	p aminobenzoyl glutamate transport protein	0.00262515738265	0.000383339004761	-0.00224181837789
+UniRef50_K8EYP9		0.00577351635868	0.00501398776238	-0.0007595285963
+UniRef50_X1D6B5	Marine sediment metagenome DNA, contig	7.3552518905e-06	0.00197887404921	0.00197151879732
+UniRef50_M4ZDD2	Polysaccharide ABC exporter membrane spanning protein	0.00271439481466	0.000708273885348	-0.00200612092931
+UniRef50_X7E7Z7		0.000149421981184	0.000110774196888	-3.8647784296e-05
+UniRef50_J9YQL3	DedA family protein	0.0073083428704	0.00148428718383	-0.00582405568657
+UniRef50_A1A1X1	Acetylglutamate kinase	0.000450072501766	0.00872876985413	0.00827869735236
+UniRef50_UPI0003C18C5D		9.76973528437e-06	4.72483694378e-05	3.74786341534e-05
+UniRef50_J8RTD6		8.29820635671e-06	1.55852217401e-05	7.28701538339e-06
+UniRef50_W1BD39		9.13208205257e-06	0.000158910072683	0.00014977799063
+UniRef50_I0C802		0.00483736697966	0.00199727011273	-0.00284009686693
+UniRef50_UPI00034D0909	Organic hydroperoxide resistance protein	8.36906584845e-06	4.47397394563e-05	3.63706736078e-05
+UniRef50_UPI000373CB86	hypothetical protein	1.03472334475e-05	1.33182347236e-05	2.9710012761e-06
+UniRef50_UPI0003B6D6B9	DNA invertase	3.26401553855e-05	1.69514851748e-05	-1.56886702107e-05
+UniRef50_A4IK10		7.81984225036e-06	1.41507299935e-05	6.33088774314e-06
+UniRef50_P0A9F0	Regulatory protein YeiL	0.0013189593164	0.000266852444456	-0.00105210687194
+UniRef50_UPI00046AC99E	hypothetical protein	9.41843317363e-05	6.31348604636e-05	-3.10494712727e-05
+UniRef50_UPI000462BAFD	PREDICTED	9.3426033839e-06	4.04106537376e-06	-5.30153801014e-06
+UniRef50_G0DS62	Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase	0.000226201894437	0.00583473427998	0.00560853238554
+UniRef50_F2CUB3	Predicted protein 	0.000234398358574	0.000280773100505	4.6374741931e-05
+UniRef50_UPI000468D55C	glucose methanol choline oxidoreductase	8.40877830686e-06	1.15299299743e-05	3.12115166744e-06
+UniRef50_A1AZK3	Peptidoglycan glycosyltransferase	0.00226108806212	0.000535229110448	-0.00172585895167
+UniRef50_A3PKF9		0.00028079754916	0.000496198594142	0.000215401044982
+UniRef50_Q9ZDI2	Protoheme IX farnesyltransferase	9.28385601708e-06	3.21221116034e-05	2.28382555863e-05
+UniRef50_P58313	UTP  glucose 1 phosphate uridylyltransferase	0.00753888765713	0.00488141294869	-0.00265747470844
+UniRef50_P66798	Response regulator UvrY	0.00201572423268	0.000275996920751	-0.00173972731193
+UniRef50_C6DY30	Poly A polymerase family protein	0.000508920101799	0.00187723084725	0.00136831074545
+UniRef50_M4HS21	Transposase, IS4 family	2.16911797637e-05	0.0334677002086	0.0334460090288
+UniRef50_P00805	L asparaginase 2	0.00242332982599	0.00478877939887	0.00236544957288
+UniRef50_P40882		0.0027546653934	6.45695094487e-05	-0.00269009588395
+UniRef50_Q7V024	Fumarate hydratase class II	6.40377630095e-06	4.35046174585e-06	-2.0533145551e-06
+UniRef50_Q7UX42	Glutamine  tRNA ligase	0.000176347760566	0.00517505650465	0.00499870874408
+UniRef50_W3SJV3		0.000389160813245	0.00133475535477	0.000945594541525
+UniRef50_K7SGJ6	Tat  pathway signal sequence	0.000470329394297	0.00493925375816	0.00446892436386
+UniRef50_UPI0003798A30	hypothetical protein	0.000467957837425	0.00165598152446	0.00118802368703
+UniRef50_UPI000426481D	hypothetical protein	2.08575276943e-05	2.8152299193e-05	7.2947714987e-06
+UniRef50_G7LXY6	Signal peptidase I	0.000222050581675	0.000738015388428	0.000515964806753
+UniRef50_A5UM93	Adhesin like protein	0.00377013147539	0.000712167491182	-0.00305796398421
+UniRef50_H1SKR8	Site specific recombinase, phage integrase family	0.000214491047391	0.000341411665556	0.000126920618165
+UniRef50_Q4A4A3		0.000216513838793	0.00113583348153	0.000919319642737
+UniRef50_A5W7U2	Protein SprT	0.000690731139244	0.000355803259269	-0.000334927879975
+UniRef50_Q65G88	Isocitrate dehydrogenase [NADP]	0.0101495983207	0.00280601678391	-0.00734358153679
+UniRef50_Q9K1H0	Outer membrane protein assembly factor BamA	5.89208099186e-05	0.00363931853555	0.00358039772563
+UniRef50_Q8CT38		0.0149898852132	0.00403772345519	-0.010952161758
+UniRef50_P42910	N acetylgalactosamine permease IIC component 1	0.00323521971087	0.001595649159	-0.00163957055187
+UniRef50_Q48E25	GAF domain GGDEF domain EAL domain protein	0.000616417066886	0.000702022361005	8.5605294119e-05
+UniRef50_UPI0003634A2A	hypothetical protein	5.37824942765e-05	3.5503205821e-05	-1.82792884555e-05
+UniRef50_UPI000328E1F2	PREDICTED	7.14830438815e-05	0.000119720037426	4.82369935445e-05
+UniRef50_E8SI06	Hydroxyacylglutathione hydrolase	0.0155133185695	0.00780660633664	-0.00770671223286
+UniRef50_UPI0003B3DE75	ketol acid reductoisomerase	3.86458515229e-06	1.9578964939e-05	1.57143797867e-05
+UniRef50_Q2FER8	Energy coupling factor transporter ATP binding protein EcfA2	0.00988050516368	0.00372165482025	-0.00615885034343
+UniRef50_UPI00046AC673	hypothetical protein	3.19451029893e-05	2.5288522783e-05	-6.6565802063e-06
+UniRef50_B7UX08		0.000558601020844	0.000519064849397	-3.9536171447e-05
+UniRef50_UPI000381E035	hypothetical protein	3.98627127821e-05	2.96778193902e-05	-1.01848933919e-05
+UniRef50_I0EI71	ATP dependent helicase	0.000356352377494	0.00287833307069	0.0025219806932
+UniRef50_Q3J6C1	Sensor histidine kinase RegB	0.00410677823804	0.00171470316757	-0.00239207507047
+UniRef50_Q1RF65		0.000279825468181	0.000472506728318	0.000192681260137
+UniRef50_F0KIU0	Sel1 like repeat protein	0.000401580839207	0.0062948791084	0.00589329826919
+UniRef50_UPI000360580F	methyltransferase, partial	3.92985179878e-05	3.79056335245e-05	-1.3928844633e-06
+UniRef50_L2YYW7		6.41885005032e-05	0.000447449553334	0.000383261052831
+UniRef50_P21369	Pyrazinamidase nicotinamidase	0.00645797089485	0.00110743764448	-0.00535053325037
+UniRef50_A5UKM8		0.00433655915246	0.000669429755475	-0.00366712939698
+UniRef50_UPI00045434B5	PREDICTED	7.04386749506e-05	0.000106882685776	3.64440108254e-05
+UniRef50_B9KRZ3		0.010544480628	0.00167482958151	-0.00886965104649
+UniRef50_D0K3I1	Phage amidase	0.0135554250523	0.00135285320894	-0.0122025718434
+UniRef50_A6LXA4	4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000581388210392	0.000910262242916	0.000328874032524
+UniRef50_I3XDK3		2.65798142895e-05	1.70234409092e-05	-9.5563733803e-06
+UniRef50_X2H5V8	Glutamate  cysteine ligase , divergent, of Alpha and Beta proteobacteria type	0.000171050941748	0.00324486862164	0.00307381767989
+UniRef50_I0ERW5	Integral membrane protein	9.30532429341e-05	0.00284140224443	0.0027483490015
+UniRef50_UPI0002559D47	DNA primase	3.62662900751e-06	4.50889156264e-06	8.8226255513e-07
+UniRef50_P08075	Glucose 1 phosphate thymidylyltransferase	8.0797394285e-06	1.54741502804e-05	7.3944108519e-06
+UniRef50_UPI0004782C1A	ABC transporter permease	6.55789931169e-06	1.15804945317e-05	5.02259522001e-06
+UniRef50_D9Q0N2	Membrane protein	9.28666313124e-06	8.25839684161e-05	7.32973052849e-05
+UniRef50_A0A059IJL8		0.000223246575787	0.000142418962609	-8.0827613178e-05
+UniRef50_U1ASZ8	Diguanylate cyclase domain protein	0.00125450157067	7.11892419069e-05	-0.00118331232876
+UniRef50_K8R3V6	6 pyruvoyl tetrahydropterin synthase	0.00031569509448	0.000144464724426	-0.000171230370054
+UniRef50_O05410	Probable metal binding protein YrpE	0.00986766075661	0.000558959063463	-0.00930870169315
+UniRef50_Q30ST8	Two component transcriptional regulator, winged helix family	0.000382587150866	0.0022926005332	0.00191001338233
+UniRef50_UPI00036A4579	hypothetical protein	2.79302367466e-06	1.03899798919e-05	7.59695621724e-06
+UniRef50_G8VC64		0.00181560304853	0.00443145692385	0.00261585387532
+UniRef50_UPI0002556399	urea ABC transporter ATP binding protein UrtE, partial	0.000118686716787	4.8000356259e-05	-7.0686360528e-05
+UniRef50_UPI000456060D	hypothetical protein PFL1_06357	7.08431227327e-06	1.77543534046e-05	1.06700411313e-05
+UniRef50_UPI0003B73D80	Fis family transcriptional regulator	3.70642052476e-05	4.23267588288e-05	5.2625535812e-06
+UniRef50_C2QZX3		6.53760003662e-06	0.000883452257164	0.000876914657127
+UniRef50_C5N0K5	Isochorismatase family protein	0.00654156399139	0.000322750497486	-0.0062188134939
+UniRef50_UPI00034B4110	hypothetical protein	5.89790302282e-05	1.77037172624e-05	-4.12753129658e-05
+UniRef50_J9JHU2		0.000222050581675	0.000279775012387	5.7724430712e-05
+UniRef50_A0A031K6Z2		3.3536644218e-05	1.96971676237e-05	-1.38394765943e-05
+UniRef50_UPI00046C5540	hypothetical protein	0.000252318230565	4.11945804426e-05	-0.000211123650122
+UniRef50_UPI000369A903	hypothetical protein	0.00878701524772	0.00323669294599	-0.00555032230173
+UniRef50_UPI00036FC1C6	hypothetical protein	1.5084749634e-05	0.000161817372704	0.00014673262307
+UniRef50_O27842	Conserved protein	0.00298133603751	0.00256210193584	-0.00041923410167
+UniRef50_UPI000466B8EE	UDP pyrophosphate phosphatase	9.41724120953e-05	1.45326671992e-05	-7.96397448961e-05
+UniRef50_M2ADJ2		7.38261381104e-05	2.49866823428e-05	-4.88394557676e-05
+UniRef50_UPI00016A5286	hypothetical protein	0.000371978780981	0.000780207725342	0.000408228944361
+UniRef50_P33135	Flagellar biosynthetic protein FliR	0.00352392990211	0.000645162854675	-0.00287876704743
+UniRef50_UPI00016C427F	glutamine ABC transporter ATP binding protein	8.4316884434e-05	2.68829707144e-05	-5.74339137196e-05
+UniRef50_F3U500	ABC branched chain amino acid transporter, inner membrane subunit	0.00451293510437	0.00228849857164	-0.00222443653273
+UniRef50_H1V624		1.01087174494e-05	7.30431809063e-06	-2.80439935877e-06
+UniRef50_UPI00046F0C1E	cold shock protein, partial	4.50098745969e-05	2.05530696425e-05	-2.44568049544e-05
+UniRef50_UPI000395A7E4	membrane protein	8.57343519813e-05	3.26783351839e-05	-5.30560167974e-05
+UniRef50_A4WQX9		0.0060728156165	0.000877435153289	-0.00519538046321
+UniRef50_G0DVB4	LacI family transcription regulator	0.000364840264139	0.00407507899632	0.00371023873218
+UniRef50_U6HG59	Iron sulfur cluster assembly 2	6.73458884178e-05	0.000135577186281	6.82312978632e-05
+UniRef50_Q8E0W8	Prophage LambdaSa1, minor structural protein, putative	0.000254306725739	0.000192046958903	-6.2259766836e-05
+UniRef50_F0YEK3		9.00407302426e-06	9.48317474274e-05	8.58276744031e-05
+UniRef50_UPI000359DA59	PREDICTED	4.6136500439e-05	1.18354229565e-05	-3.43010774825e-05
+UniRef50_UPI0003683526	hypothetical protein	2.82596257356e-06	4.24280753753e-06	1.41684496397e-06
+UniRef50_Q9Z615	Ferredoxin  NADP reductase	0.00420155795097	3.59526697015e-05	-0.00416560528127
+UniRef50_UPI00034F34D0	PREDICTED	6.60636838809e-06	3.04342928579e-06	-3.5629391023e-06
+UniRef50_F8H2S7	Long chain fatty acid transporter, putative	0.000644370723791	1.00578522725e-05	-0.000634312871518
+UniRef50_D8TNQ9		1.83703742462e-05	1.77726164335e-05	-5.977578127e-07
+UniRef50_P72524	DNA gyrase subunit A	0.00514208190287	0.00774654078998	0.00260445888711
+UniRef50_D9PWJ1	Phosphomethylpyrimidine kinase	0.00226549864282	0.00070736439591	-0.00155813424691
+UniRef50_UPI00016AD9D7	hypothetical protein	5.16092917995e-05	0.00013771067013	8.61013783305e-05
+UniRef50_J3P8W6		0.000190649489319	0.000298299702217	0.000107650212898
+UniRef50_Q9KLP4	Glucose 1 phosphate adenylyltransferase 2	9.29747761786e-06	2.04213752841e-05	1.11238976662e-05
+UniRef50_G4LJ72		0.000566124859295	0.000554583416193	-1.1541443102e-05
+UniRef50_X6F3D8		7.89961489974e-06	0.000324819849179	0.000316920234279
+UniRef50_E8TAD2	ABC transporter related protein	0.00194314002282	0.00080832760716	-0.00113481241566
+UniRef50_UPI0003745162	hypothetical protein	3.06306989581e-06	3.13168062666e-05	2.82537363708e-05
+UniRef50_UPI0004171916	hypothetical protein	3.94152150406e-06	3.1698361167e-06	-7.7168538736e-07
+UniRef50_J9FU21	Ferredoxin NADP reductase subunit alpha	0.00013163457348	8.4734520254e-05	-4.6900053226e-05
+UniRef50_A6VPF4	30S ribosomal protein S9	0.00202985976468	0.00596656554769	0.00393670578301
+UniRef50_Q9I0Q0	2 heptyl 3 hydroxy 4 quinolone synthase	0.000749681006178	0.000349199151072	-0.000400481855106
+UniRef50_Q56213	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.52501200813e-05	4.89048813642e-05	3.36547612829e-05
+UniRef50_UPI00041994DB	hypothetical protein	2.76898403701e-05	4.62117644264e-05	1.85219240563e-05
+UniRef50_UPI0001B417EE	50S ribosomal protein L6	2.88366635093e-05	0.000328043211159	0.00029920654765
+UniRef50_UPI00037C13D8	hypothetical protein	3.89206032654e-06	0.000219191881322	0.000215299820995
+UniRef50_UPI00025597AC	8 amino 7 oxononanoate synthase	5.15177184737e-06	4.79048800729e-06	-3.6128384008e-07
+UniRef50_Q8TVF7	Transcription factor homologous to NACalpha BTF3 fused to metal binding domain	0.000963171708067	0.000757900550379	-0.000205271157688
+UniRef50_Q8TX94	3 isopropylmalate dehydratase small subunit 1	0.00112773213166	0.000480844798537	-0.000646887333123
+UniRef50_W1DGA8		0.00038794800939	2.65983455961e-05	-0.000361349663794
+UniRef50_Q7WTJ2	Phenol hydroxylase P5 protein	1.45745340375e-05	2.15862597415e-05	7.011725704e-06
+UniRef50_UPI000375778F	hypothetical protein, partial	0.000316913422896	3.42746345561e-05	-0.00028263878834
+UniRef50_G7UA75	Periplasmic solute binding family protein	0.000321792500054	0.00700168733252	0.00667989483247
+UniRef50_P37171	Hypoxanthine guanine phosphoribosyltransferase	0.0120676538095	0.00309881508539	-0.00896883872411
+UniRef50_Q6A5B2	Ribosomal RNA small subunit methyltransferase G	0.000178903312256	0.0104525814307	0.0102736781184
+UniRef50_W5X3P5	Ammonium transporter	1.44944940828e-05	0.000140346177045	0.000125851682962
+UniRef50_Q2YSG3		0.000128960183316	0.000750357954763	0.000621397771447
+UniRef50_Q59337	Catalase	0.000204162577277	0.050591180255	0.0503870176777
+UniRef50_UPI000371F98A	50S ribosomal protein L13	0.000987008417249	0.000143456352271	-0.000843552064978
+UniRef50_Q9RWN6	Cell division protein FtsA	0.000169326811797	0.0197204112317	0.0195510844199
+UniRef50_U5MV88	Protein tyrosine phosphatase	0.000256288431409	0.000972152997477	0.000715864566068
+UniRef50_B0V4J6	Methylenetetrahydrofolate reductase	0.000167399551592	0.00582692513909	0.0056595255875
+UniRef50_O34720	Probable oxidoreductase YjgC	0.0140711568424	0.00564239172051	-0.00842876512189
+UniRef50_D5ZK04	Predicted protein	6.14341677533e-05	2.17615083999e-05	-3.96726593534e-05
+UniRef50_P16691	Protein PhnO	0.000490241543964	0.000608900423076	0.000118658879112
+UniRef50_UPI0003665D5A	hypothetical protein	1.18073293852e-05	1.81279223507e-05	6.3205929655e-06
+UniRef50_B9KW91	Serine acetyltransferase	0.00554435751003	0.00113251152756	-0.00441184598247
+UniRef50_UPI0004541D3D	PREDICTED	1.88462957993e-05	2.50569861347e-05	6.2106903354e-06
+UniRef50_X2LXG1	Phosphatase	3.62322127841e-05	3.14894002818e-05	-4.7428125023e-06
+UniRef50_UPI0002BCA4B1		0.000108777066287	0.000238713898062	0.000129936831775
+UniRef50_UPI000479C59F	hypothetical protein	4.26367621235e-05	1.61614257814e-05	-2.64753363421e-05
+UniRef50_O83369	FKBP type peptidyl prolyl cis trans isomerase SlyD	1.84232763407e-05	1.93391368429e-05	9.158605022e-07
+UniRef50_F0WVE4	AlNc14C294G10284 protein	5.4765738381e-06	1.69636527251e-05	1.1487078887e-05
+UniRef50_X0WP46	Marine sediment metagenome DNA, contig	2.43431563422e-05	1.25775526967e-05	-1.17656036455e-05
+UniRef50_R5WGC0		0.000169602425034	0.00275864530679	0.00258904288176
+UniRef50_UPI000371C267	hypothetical protein, partial	1.0381607114e-05	8.12088215242e-06	-2.26072496158e-06
+UniRef50_Q47944	L sorbose 1 dehydrogenase	2.50037787432e-05	2.28359993492e-05	-2.167779394e-06
+UniRef50_UPI0003AED982	PREDICTED	5.45279938247e-05	5.13727159297e-05	-3.155277895e-06
+UniRef50_UPI000474FA07	hypothetical protein	2.11696464163e-05	1.53833424135e-05	-5.7863040028e-06
+UniRef50_X5EFM7	Glycosyl transferase	0.000701107466431	0.00144041866408	0.000739311197649
+UniRef50_A0A025XI46	Membrane protein 	0.00141569092926	0.000336863161818	-0.00107882776744
+UniRef50_N6UVZ9		5.01738446473e-06	2.05984372875e-06	-2.95754073598e-06
+UniRef50_A5WEH0	Sulfate adenylyltransferase	1.80404960693e-05	2.36530338858e-05	5.6125378165e-06
+UniRef50_Q1C7J0	Arabinose import ATP binding protein AraG	0.00454624986954	0.000768795893013	-0.00377745397653
+UniRef50_Q2H308		0.000126271640598	6.32754476704e-05	-6.29961929276e-05
+UniRef50_UPI0004643586	hypothetical protein	0.000357033770159	1.8103914591e-05	-0.000338929855568
+UniRef50_A6LYY5	Helix turn helix domain containing protein, AraC type	0.000889336037005	0.000607306927345	-0.00028202910966
+UniRef50_Q8ZH39	D methionine transport system permease protein MetI	0.00410931176021	0.0112691967879	0.00715988502769
+UniRef50_W6L3I5	Genomic scaffold, scaffold_5	2.0578314192e-05	1.1188885639e-05	-9.389428553e-06
+UniRef50_Q4L6W7	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0182527296794	0.00416956805143	-0.014083161628
+UniRef50_Q83NS5	Phosphoglucosamine mutase	5.17948945823e-06	7.77930543201e-06	2.59981597378e-06
+UniRef50_P18358	Transposon Tn552 resolvase	0.182991894827	0.0377164489243	-0.145275445903
+UniRef50_D8JFF2	Major Facilitator Superfamily protein	0.000238123637387	0.00789717693536	0.00765905329797
+UniRef50_C0QDY4	3 isopropylmalate dehydratase small subunit	1.88739547375e-05	1.46837164313e-05	-4.1902383062e-06
+UniRef50_Q1J087	Inositol monophosphatase	0.00011268238473	0.00910486947061	0.00899218708588
+UniRef50_D4GG42		0.00188742994426	0.000942500122969	-0.000944929821291
+UniRef50_A5GQQ3	Permease of the major facilitator superfamily	1.97703257604e-05	4.18848337991e-06	-1.55818423805e-05
+UniRef50_Q3ZXS0	NADH quinone oxidoreductase subunit B	1.24545126698e-05	0.000160091853733	0.000147637341063
+UniRef50_Q8XSL7	Remnant of isrso5 transposase protein	0.018967382822	0.0035621660227	-0.0154052167993
+UniRef50_UPI00045609D0	hypothetical protein PFL1_01311	4.33995645309e-05	0.000189495219492	0.000146095654961
+UniRef50_UPI00047256F0	ABC transporter ATP binding protein	8.16840336776e-06	4.22491927799e-05	3.40807894121e-05
+UniRef50_P71019	Malonyl CoA acyl carrier protein transacylase	4.25584042199e-06	0.00178171873192	0.0017774628915
+UniRef50_Q8XCU1	UDP 2,3 diacylglucosamine hydrolase	0.0033913216472	0.000780095898344	-0.00261122574886
+UniRef50_C0ME26	Adenylate kinase	0.0047492331881	0.00852450735492	0.00377527416682
+UniRef50_UPI0004668B02	hypothetical protein	0.000213568450271	5.32188704928e-05	-0.000160349579778
+UniRef50_W5ASR4		0.000214480675479	8.22925987192e-05	-0.00013218807676
+UniRef50_UPI00040BD6B1	spermidine putrescine import ATP binding protein PotA	0.000121230432105	5.88027187665e-05	-6.24277133385e-05
+UniRef50_A6M079	NADPH dependent FMN reductase	0.000145935304967	0.00225847941097	0.002112544106
+UniRef50_K9EK44	ATPase involved in chromosome partitioning	9.37334282295e-06	0.000774729282488	0.000765355939665
+UniRef50_Q5M456		0.00495015616552	0.00214666494895	-0.00280349121657
+UniRef50_UPI000380AA86	hypothetical protein	7.07911062204e-06	0.000158245676685	0.000151166566063
+UniRef50_A2SM89	PKHD type hydroxylase Mpe_A3725	3.6361193586e-05	3.87634980646e-05	2.4023044786e-06
+UniRef50_UPI00037B8173	hypothetical protein	7.97786649952e-06	8.56589329369e-05	7.76810664374e-05
+UniRef50_U2NH71	MaoC domain containing protein dehydratase	3.40094179343e-05	2.03048025881e-05	-1.37046153462e-05
+UniRef50_J0P6S9		0.0066412792172	0.000545200071126	-0.00609607914607
+UniRef50_Q3JN62	Colicin V processing peptidase	0.000257882340289	0.0125804267854	0.0123225444451
+UniRef50_A0A024JLS1	Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 	1.04926977865e-06	2.78766826282e-07	-7.70502952368e-07
+UniRef50_V5PVU9	ABC transporter ATP binding protein	0.00144474807409	0.000450865198773	-0.000993882875317
+UniRef50_D0ZY51	Serine endoprotease DegS	0.00440595210465	0.00171130634038	-0.00269464576427
+UniRef50_A3PGU0	Lytic transglycosylase, catalytic	0.00944313632268	0.00184161125264	-0.00760152507004
+UniRef50_UPI00034D4180	hypothetical protein	1.46630338496e-05	1.44213868324e-06	-1.32208951664e-05
+UniRef50_UPI0003A7AC6C	TetR family transcriptional regulator	1.00978521947e-05	2.14542936622e-05	1.13564414675e-05
+UniRef50_UPI00036F4D48	hypothetical protein, partial	3.59600682995e-05	0.00119997942833	0.00116401936003
+UniRef50_V6VI70	Membrane protein	1.654097799e-06	2.77579812598e-06	1.12170032698e-06
+UniRef50_D5WEA6	Major facilitator superfamily MFS_1	8.88202326721e-05	0.00472029775061	0.00463147751794
+UniRef50_UPI00042A98EF		0.000158191760126	0.000133068886191	-2.5122873935e-05
+UniRef50_I0C7K3	Lantibiotic transport ATP binding protein	0.027815223462	0.00898827491848	-0.0188269485435
+UniRef50_Q6F8J3	Glutamyl tRNA reductase	8.84042128456e-05	0.0108766803581	0.0107882761453
+UniRef50_Q00750	Multiple sugar binding transport system permease protein MsmF	0.00399315911685	0.00305592942163	-0.00093722969522
+UniRef50_A9CJS1	ABC transporter, substrate binding protein	0.0085308855927	0.00106988607869	-0.00746099951401
+UniRef50_F2AEH0		0.000476191270254	0.000100123917959	-0.000376067352295
+UniRef50_G2QPJ3		4.56485111306e-06	7.00805355466e-06	2.4432024416e-06
+UniRef50_UPI00037BF3DC	hypothetical protein	0.000102784028504	6.02186436742e-05	-4.25653848298e-05
+UniRef50_Q3IWE5	Sulfotransferase domain protein	0.00244391640739	0.00023625336415	-0.00220766304324
+UniRef50_D3QDZ4	Na+ H+ antiporter like protein	0.0199525397091	0.00518556963026	-0.0147669700788
+UniRef50_E3D365		5.48138488079e-05	3.09336172134e-05	-2.38802315945e-05
+UniRef50_V6F2D8	Transposase	1.950931464e-05	2.17959754208e-05	2.2866607808e-06
+UniRef50_B8EL88	Regulatory protein ArsR	0.00231408567858	0.00655301302039	0.00423892734181
+UniRef50_P30690	Major outer membrane protein P.IB	0.000119963767644	0.00235910143414	0.0022391376665
+UniRef50_D5HFR4	Alpha galactosidase	0.00100469747645	0.00121915752403	0.00021446004758
+UniRef50_F7QLE1		0.00613943741257	0.000864898339608	-0.00527453907296
+UniRef50_Q4FPV2	Na translocating NADH quinone reductase subunit F	0.000604007731951	0.0027064981941	0.00210249046215
+UniRef50_UPI00035E03F5	DNA glycosylase	4.24754714919e-05	4.08924404982e-05	-1.5830309937e-06
+UniRef50_A0A021XF37	Transposase	0.000140970128412	7.98291143459e-05	-6.11410140661e-05
+UniRef50_UPI00036477DE	hypothetical protein	8.47553531107e-06	1.36182166177e-05	5.14268130663e-06
+UniRef50_P0ABE7	Soluble cytochrome b562	0.000352790643786	0.00186515813808	0.00151236749429
+UniRef50_D6XQD7	Outer membrane protein BabA	6.0591651505e-05	0.00335047915388	0.00328988750237
+UniRef50_UPI00042B81D2	Ribosomal protein L1p L10e family, putative isoform 1	2.08226093155e-05	8.05057642927e-05	5.96831549772e-05
+UniRef50_UPI00046F39AE	hypothetical protein, partial	9.81476212908e-05	0.000225728386352	0.000127580765061
+UniRef50_UPI00037C645E	hypothetical protein	8.79240811422e-06	6.16533241813e-06	-2.62707569609e-06
+UniRef50_P58120	Multi drug resistance efflux pump PmrA homolog	9.80483087926e-05	0.000989601544539	0.000891553235746
+UniRef50_UPI0003B4A46E	hypothetical protein	1.38133041726e-06	2.94196760298e-06	1.56063718572e-06
+UniRef50_U2Z407		0.000148018633632	4.76696931327e-05	-0.000100348940499
+UniRef50_P0ACV7	Protein MpaA	0.0028572638114	0.000488126785439	-0.00236913702596
+UniRef50_B6IU75		2.95996073721e-05	7.30050021087e-05	4.34053947366e-05
+UniRef50_D1B330		5.27760038451e-06	8.49621022335e-06	3.21860983884e-06
+UniRef50_I7DDI7	Sec independent protein translocase protein TatC	0.0122316688597	0.00217311360683	-0.0100585552529
+UniRef50_B2TLC0	Aminotransferase, class V	0.000226031762367	0.000653282952549	0.000427251190182
+UniRef50_Q7MLH6	Phosphoserine aminotransferase	0.00469658748439	0.010312165551	0.00561557806661
+UniRef50_G0G0R8	Recombinase	5.03716733898e-06	0.000151508885799	0.00014647171846
+UniRef50_UPI0003B50543	translation initiation factor IF 3	0.000140270457489	0.000228310012369	8.803955488e-05
+UniRef50_B1GZA3	Adenylate kinase	7.90642272743e-06	1.63533629934e-05	8.44694026597e-06
+UniRef50_W1U046	Alanine dehydrogenase	3.13465260238e-05	0.000661723753502	0.000630377227478
+UniRef50_J2E9X6		0.000325261373385	3.0317943244e-05	-0.000294943430141
+UniRef50_A9LZ58		0.000660102427422	0.00531723770366	0.00465713527624
+UniRef50_UPI00035F961E	hypothetical protein	4.09927329857e-05	0.000182341356622	0.000141348623636
+UniRef50_UPI000473026F	hypothetical protein, partial	6.55919410637e-05	4.23439308988e-05	-2.32480101649e-05
+UniRef50_G8R9L3	Branched chain amino acid transport systemcarrier protein	0.00946418679202	0.00197177645069	-0.00749241034133
+UniRef50_UPI0003EBE04C	PREDICTED	2.02939351524e-05	2.09057957794e-05	6.11860627e-07
+UniRef50_B0VCQ6	Deoxyribodipyrimidine photolyase , FAD binding	0.0001623085577	0.00582569878535	0.00566339022765
+UniRef50_UPI0003C1772B	PREDICTED	1.13998709749e-05	3.2764717216e-05	2.13648462411e-05
+UniRef50_Q5HNU6	UPF0271 protein SERP1168	0.0227324314793	0.0044201665478	-0.0183122649315
+UniRef50_B0RNQ5	Nicotinamide phosphoribosyltransferase	0.000172720188924	0.0479323900871	0.0477596698982
+UniRef50_C1KVV7	N acetylmuramic acid 6 phosphate etherase	8.21494718634e-06	1.1572859892e-05	3.35791270566e-06
+UniRef50_S9QJ95	Glycine D amino acid oxidase 	0.000288165055197	3.79759298035e-05	-0.000250189125393
+UniRef50_Q72JJ7	Ribonuclease J	3.53070335027e-05	0.000137639874405	0.000102332840902
+UniRef50_P36667	Rhamnosyltransferase WbbL	0.000935596626266	0.000223442652099	-0.000712153974167
+UniRef50_I6U2T3		0.00334843794837	0.00037540259135	-0.00297303535702
+UniRef50_W4UBR6	L threonine 3 O phosphate decarboxylase	6.06271562253e-06	0.000385726967488	0.000379664251865
+UniRef50_E3ZT62	Lipoprotein	9.90432530904e-06	0.0019972707632	0.00198736643789
+UniRef50_UPI0003812E06	hypothetical protein	5.67895875678e-05	1.62617379262e-05	-4.05278496416e-05
+UniRef50_B2JIJ5	Malate dehydrogenase  (NADP(+)), Phosphate acetyltransferase	0.00289391902837	0.00703727510855	0.00414335608018
+UniRef50_UPI00038F56D4	Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	2.71607338912e-05	0.000151632961111	0.00012447222722
+UniRef50_UPI000465DB23	peptide ABC transporter permease	0.000118103993689	2.08977522207e-05	-9.72062414683e-05
+UniRef50_UPI000475E2DE	hypothetical protein, partial	2.92182427977e-06	3.20951566067e-05	2.91733323269e-05
+UniRef50_UPI00047C3548	membrane protein	1.11251869534e-05	1.07147035377e-05	-4.104834157e-07
+UniRef50_B2TJ59	Riboflavin biosynthesis protein RibF	0.000123361434261	0.00160656757126	0.001483206137
+UniRef50_UPI0003B40EDF	methylmalonyl CoA mutase	6.26717710786e-05	5.05106605443e-05	-1.21611105343e-05
+UniRef50_Q3J4Q5	Putative Transcriptional regulator	0.000998807067205	0.0104229425363	0.0094241354691
+UniRef50_I4L4Y8	ISPa7 like transposase	0.000232472048569	3.50626105846e-05	-0.000197409437984
+UniRef50_A5UKX6		0.0011064985217	0.000206997690564	-0.000899500831136
+UniRef50_L4FV79		1.53358820744e-05	3.50723518012e-05	1.97364697268e-05
+UniRef50_A5UJS4	Ribonuclease P protein component 3	0.00338966963348	0.000299307471484	-0.003090362162
+UniRef50_D4ZLV9	Thioesterase superfamily	5.77629089963e-06	6.2291042769e-06	4.5281337727e-07
+UniRef50_D3E066	Aminotransferase	0.0024753553038	0.000828506976381	-0.00164684832742
+UniRef50_Q2FC63	Beta lactamase regulatory protein 	0.000636056628392	0.000218497650033	-0.000417558978359
+UniRef50_UPI000477F0AC	hypothetical protein	5.63440110753e-06	8.41769386891e-06	2.78329276138e-06
+UniRef50_G8UZP3	Dyp type peroxidase family protein	0.013414803489	0.0024215711543	-0.0109932323347
+UniRef50_I6T4S9	Cation efflux pump 	0.00702501658968	0.00644922367955	-0.00057579291013
+UniRef50_K2FDY9	UPF0301 protein ACD_16C00235G0006	3.71019406836e-05	5.79525516267e-05	2.08506109431e-05
+UniRef50_P77183		0.00721455719959	0.00113714854899	-0.0060774086506
+UniRef50_Q8Z591	Multiphosphoryl transfer protein	0.00224229482716	0.000836490671637	-0.00140580415552
+UniRef50_UPI0003644847	chromosome partitioning protein ParA	1.21326451948e-05	0.000104578082718	9.24454375232e-05
+UniRef50_P24602	Bacterioferritin	9.94732164756e-05	0.000121327517702	2.18543012264e-05
+UniRef50_L1K7Z2		0.000499137783886	0.000877178332262	0.000378040548376
+UniRef50_P12425	Glutamine synthetase	0.00044817033512	0.00358146409408	0.00313329375896
+UniRef50_N6V491		6.63808890152e-05	0.0001038628506	3.74819615848e-05
+UniRef50_UPI0003B3ECFC	hypothetical protein, partial	2.0982846682e-05	2.71775519452e-05	6.1947052632e-06
+UniRef50_UPI00037C5312	hypothetical protein	5.57350946552e-06	1.9490856881e-05	1.39173474155e-05
+UniRef50_UPI00029AA298	heme exporter protein CcmA	3.45454801059e-06	2.68888746682e-05	2.34343266576e-05
+UniRef50_UPI0003B71736	hypothetical protein	9.80327529196e-06	6.93150289315e-06	-2.87177239881e-06
+UniRef50_P83851	Inosine uridine preferring nucleoside hydrolase	5.21857965365e-06	2.04956640618e-05	1.52770844082e-05
+UniRef50_W7W6N9		6.02018788493e-06	1.23933575369e-05	6.37316965197e-06
+UniRef50_Q1AW66	Uridylate kinase	1.65437688647e-05	2.74353229763e-05	1.08915541116e-05
+UniRef50_A7NN67	Thioesterase superfamily protein	1.19920211283e-05	0.00188663725543	0.0018746452343
+UniRef50_F8LMW5	Branched chain amino acid ABC uptake transporter substrate binding protein	0.00924786476785	0.00541295254251	-0.00383491222534
+UniRef50_UPI0003B44F91	16S rRNA methyltransferase	1.5373923727e-05	7.3861450865e-05	5.8487527138e-05
+UniRef50_UPI00037A1640	hypothetical protein	2.30349759035e-05	7.25454670661e-05	4.95104911626e-05
+UniRef50_P0ABU5	Enhancing lycopene biosynthesis protein 2	0.00494671915031	0.006372351934	0.00142563278369
+UniRef50_D6GRJ0	Relaxase mobilization nuclease domain protein	1.2401022456e-05	3.36917078191e-06	-9.03185167409e-06
+UniRef50_G7M3W5	PAS modulated sigma54 specific transcriptional regulator, Fis family	6.68906064094e-05	0.00131422210259	0.00124733149618
+UniRef50_D3EHS5	Copper amine oxidase domain protein	7.04373921475e-06	1.41130079209e-05	7.06926870615e-06
+UniRef50_F0YJ43		0.000167549084728	3.92962752234e-05	-0.000128252809505
+UniRef50_Q82MV1	Aliphatic sulfonates import ATP binding protein SsuB 1	7.91874768648e-06	3.51491665465e-05	2.723041886e-05
+UniRef50_UPI00047B469E	hypothetical protein	2.75204390519e-06	6.26175625193e-06	3.50971234674e-06
+UniRef50_P26365	N acetylmuramoyl L alanine amidase AmiB	0.00399805733287	0.000833499978781	-0.00316455735409
+UniRef50_W9B7R7	Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.000245652435359	0.00121187489983	0.000966222464471
+UniRef50_A0A030STE3		0.000234346116747	4.84410280591e-05	-0.000185905088688
+UniRef50_Q1LTQ4	Alanine  tRNA ligase	0.00292534922718	0.00202511396585	-0.00090023526133
+UniRef50_Q2KVV8	Glutaminase	0.00334818572691	0.00126497674854	-0.00208320897837
+UniRef50_N6V723		3.28215521288e-05	3.41293618959e-05	1.3078097671e-06
+UniRef50_R5EPL7		1.90066601483e-06	0.00411377303504	0.00411187236903
+UniRef50_UPI000420BB24	hypothetical protein	3.91304214536e-05	0.000393957903549	0.000354827482095
+UniRef50_B2TI10	Peptidyl tRNA hydrolase	0.000198676836237	0.0014781244494	0.00127944761316
+UniRef50_P76586		0.00092586571394	0.00129642388	0.00037055816606
+UniRef50_P76584		0.00312978011251	0.000542877351096	-0.00258690276141
+UniRef50_P76585		0.00355788907512	0.000908469170782	-0.00264941990434
+UniRef50_E7DRS8	Cobyrinic acid a,c diamide synthase 	2.39120283713e-05	0.000101972561014	7.80605326427e-05
+UniRef50_B2TPC7	Homoserine kinase	0.000354954565215	0.00391774681766	0.00356279225245
+UniRef50_UPI00016AE1F0	amino acid ABC transporter, permease ATP binding protein, His Glu Gln Arg opine family, partial	4.12868098063e-05	3.53260354305e-05	-5.9607743758e-06
+UniRef50_UPI00037DC74D	hypothetical protein	8.46128187802e-06	3.79508251134e-06	-4.66619936668e-06
+UniRef50_UPI0003B5A1CC	type I secretion protein	7.85933382285e-07	1.40141391306e-06	6.15480530775e-07
+UniRef50_C3ISU2	Transcriptional regulator, PadR	0.000159578864664	4.54386748582e-05	-0.000114140189806
+UniRef50_X1FD15	Marine sediment metagenome DNA, contig	0.000173471105778	0.000130865930918	-4.260517486e-05
+UniRef50_W5X9W4	30S ribosomal protein S4	5.52417369412e-05	7.64246466026e-05	2.11829096614e-05
+UniRef50_Q8NY74		0.0143367645915	0.00269157438495	-0.0116451902066
+UniRef50_B9DK14	Homolog of FecCD transport family protein SstB	0.0175640000954	0.00527726088709	-0.0122867392083
+UniRef50_V9VUC0		2.00016855866e-05	1.70338607102e-05	-2.9678248764e-06
+UniRef50_Q475Q2	4 hydroxythreonine 4 phosphate dehydrogenase	0.000463075779513	0.00520022121367	0.00473714543416
+UniRef50_K1TVZ4	Anthranilate synthase component II 	1.52295452453e-05	1.70722442509e-05	1.8426990056e-06
+UniRef50_Q5HRY7		0.00190829504482	0.0027197815235	0.00081148647868
+UniRef50_Q9RU78	2 phosphoglycerate kinase, putative	9.2445548289e-05	0.0126550890118	0.0125626434635
+UniRef50_Q5HKC7		0.019010564897	0.0124597019271	-0.0065508629699
+UniRef50_A0A020CZ32		0.000807587477663	0.000202093948186	-0.000605493529477
+UniRef50_B5B0J6	FAD dependent urate hydroxylase	0.000108058966276	0.0118502250003	0.011742166034
+UniRef50_UPI0003B6355C	multidrug transporter CflA	6.14581544474e-06	8.38554509585e-06	2.23972965111e-06
+UniRef50_B8H806	Shikimate dehydrogenase	0.000142268588759	0.000207239793125	6.4971204366e-05
+UniRef50_A6LTJ7	Glycosyl transferase	0.000629226230738	0.00365508196157	0.00302585573083
+UniRef50_UPI0000164CF0	helicase related protein, partial	9.72902033113e-05	0.0268198312983	0.026722541095
+UniRef50_UPI00037DA311	hypothetical protein	2.52829376611e-05	8.10499894506e-06	-1.7177938716e-05
+UniRef50_E3F454		0.000172874674004	9.03720311285e-05	-8.25026428755e-05
+UniRef50_M1MT01	Oxygen independent coproporphyrinogen III oxidase 1	0.000265081999205	0.00088027600776	0.000615194008555
+UniRef50_Q55G10	Nicotinate phosphoribosyltransferase	3.03665302617e-06	0.000109067745708	0.000106031092682
+UniRef50_UPI00047AB801	hypothetical protein	1.83305680202e-05	6.80403001619e-06	-1.1526538004e-05
+UniRef50_R9YSK0	Sugar  transporter family protein	0.0213252190984	0.00433367772277	-0.0169915413756
+UniRef50_UPI0002003470	hypothetical protein	4.42851679736e-06	9.77764035525e-06	5.34912355789e-06
+UniRef50_UPI000403F45D	hypothetical protein	8.5134660394e-06	0.000168966491453	0.000160453025414
+UniRef50_S5K798	Ethanolamine utilization protein EutJ	2.21989985356e-05	0.00294988300468	0.00292768400614
+UniRef50_V6AIC2		0.00012163107099	0.000376217510327	0.000254586439337
+UniRef50_O86793	tRNA N6 adenosine threonylcarbamoyltransferase	0.000256499189752	0.00957653322151	0.00932003403176
+UniRef50_I0KVQ6		1.56485924717e-05	5.42419030496e-05	3.85933105779e-05
+UniRef50_UPI00034BACF0	hypothetical protein	0.000100395209802	0.000138998740688	3.8603530886e-05
+UniRef50_P0AFY0	Sigma E factor regulatory protein RseB	0.00358964978852	0.000399850131071	-0.00318979965745
+UniRef50_P93345	Putative carbamoyl phosphate synthetase, large chain 	1.90631552941e-05	2.31294108423e-05	4.0662555482e-06
+UniRef50_UPI000465AFB9	D ribose transporter ATP binding protein	1.53792627001e-05	3.52925904415e-05	1.99133277414e-05
+UniRef50_A6X8A8	Endoribonuclease L PSP	0.000148642022207	3.93120157926e-05	-0.000109330006414
+UniRef50_Q46898	CRISPR system Cascade subunit CasD	0.00288141984952	0.00026367562964	-0.00261774421988
+UniRef50_Q9Z661	Diaminopimelate decarboxylase	0.00450554675364	0.00176108635576	-0.00274446039788
+UniRef50_Q6GDP8	Ferrous iron transport protein B	0.0209020726164	0.00639129503441	-0.014510777582
+UniRef50_Q42891	Lactoylglutathione lyase	2.3451899556e-05	2.45196745238e-05	1.0677749678e-06
+UniRef50_R7IF37		3.05259361323e-05	8.75890958238e-05	5.70631596915e-05
+UniRef50_B5GQH0		2.83136443545e-05	2.37817446124e-05	-4.5318997421e-06
+UniRef50_Q0APS4	Thioesterase superfamily protein	4.47766582417e-06	0.000170681726014	0.00016620406019
+UniRef50_Q9RVA0		0.000185953689091	0.0350571295756	0.0348711758865
+UniRef50_Q5HQK8	Putative peptidyl prolyl cis trans isomerase	0.022865317284	0.00924922384474	-0.0136160934393
+UniRef50_A5ULZ8		0.00457474481691	0.000637026600826	-0.00393771821608
+UniRef50_B1HUU8	Glucosamine 6 phosphate deaminase	9.28424862893e-06	2.26717866347e-05	1.33875380058e-05
+UniRef50_A6QDY0	Phage portal protein	0.0140110621464	0.00457572913938	-0.00943533300702
+UniRef50_A6LQB8		0.000473376866408	0.00209928865201	0.0016259117856
+UniRef50_R7U693		8.55581319638e-05	2.57614484477e-05	-5.97966835161e-05
+UniRef50_Q5HK21	YycI protein	0.0130570038066	0.00574225790973	-0.00731474589687
+UniRef50_W8YHT8		0.000557076405129	0.000210012952802	-0.000347063452327
+UniRef50_Q9JYB8	ComE operon protein 1 related protein	0.000855993139133	0.00366942864526	0.00281343550613
+UniRef50_Q0JKD0	Glutamate synthase 1 [NADH], chloroplastic	1.08568678439e-06	9.25828034407e-06	8.17259355968e-06
+UniRef50_P06720	Alpha galactosidase	0.00247666901049	0.000602410150965	-0.00187425885952
+UniRef50_Q9ZLY0	UDP N acetylmuramoylalanine  D glutamate ligase	0.000109416228655	0.00222430853286	0.0021148923042
+UniRef50_N6VE85		0.000151795370894	5.60086100893e-05	-9.57867608047e-05
+UniRef50_A0A011RZR4		7.92704098307e-05	0.000110618001118	3.13475912873e-05
+UniRef50_UPI000381C6B2	MULTISPECIES	0.00019537650557	0.000104944706081	-9.0431799489e-05
+UniRef50_UPI000471AF5A	hypothetical protein	5.82125789506e-05	6.51147693787e-06	-5.17011020127e-05
+UniRef50_UPI0003B2EAF3	DNA polymerase I	3.18457384774e-06	5.43108452778e-05	5.11262714301e-05
+UniRef50_A1VT86	Phosphate butyryltransferase	0.00233738756365	0.000448362190553	-0.0018890253731
+UniRef50_D8JIA1	DMT family permease	0.000657347096919	0.0081603201383	0.00750297304138
+UniRef50_UPI0003623153	hypothetical protein	2.24992414766e-05	1.46980204326e-05	-7.801221044e-06
+UniRef50_E7B1W7	Zinc ABC transporter, inner membrane permease protein ZnuB	0.000738122076317	0.00433553632714	0.00359741425082
+UniRef50_UPI0003AD1FFA	hypothetical protein	8.95711683243e-07	2.02657947538e-05	1.93700830706e-05
+UniRef50_R7PV41	Bacterial membrane flanked domain protein	0.00419024055796	0.000252767508006	-0.00393747304995
+UniRef50_C2L1L8		0.000278746967941	0.000340948018057	6.2201050116e-05
+UniRef50_K9NJK2	Putrescine transport system permease protein	0.00591478240338	0.00172187764801	-0.00419290475537
+UniRef50_Q187P1	LexA repressor	0.00012410876684	1.34111523212e-05	-0.000110697614519
+UniRef50_Q8Z3W5	UPF0149 protein YgfB	0.000602894181434	0.000899031594298	0.000296137412864
+UniRef50_A6LQ92	Transcriptional antiterminator, BglG	0.000195056752111	0.00290301448196	0.00270795772985
+UniRef50_J4SG21		8.16219549366e-06	1.10664444803e-05	2.90424898664e-06
+UniRef50_Q8XZ19	DNA polymerase IV	0.0001791883287	0.000408227522167	0.000229039193467
+UniRef50_Q8GAA6	Queuine tRNA ribosyltransferase	5.50097624621e-06	8.28509605048e-05	7.73499842586e-05
+UniRef50_A6LZ80	RNA polymerase, sigma 24 subunit, ECF subfamily	0.000797505610247	0.000463848228053	-0.000333657382194
+UniRef50_P55037	Ferredoxin dependent glutamate synthase 1	2.26505862282e-06	2.3035349926e-06	3.847636978e-08
+UniRef50_UPI000362A514	hypothetical protein	1.94988805121e-06	5.68135266534e-06	3.73146461413e-06
+UniRef50_Q5H330	Glutamine synthetase	0.0120301380891	0.00118324725498	-0.0108468908341
+UniRef50_UPI000381B208	amino acid ABC transporter ATPase	1.73748018419e-05	9.57705157626e-05	7.83957139207e-05
+UniRef50_UPI000344FAE6	hypothetical protein	2.03646341296e-05	3.91564974383e-06	-1.64489843858e-05
+UniRef50_Q5XA93		0.00115166531804	0.0013723860311	0.00022072071306
+UniRef50_Q6FDD7		0.000292624797564	0.00374707693971	0.00345445214215
+UniRef50_F0Y880		0.000688024426533	0.000778219039123	9.019461259e-05
+UniRef50_X2LK66	Penicillin binding protein 1C	0.00217106335617	0.000185246984181	-0.00198581637199
+UniRef50_G7U7D2	ABC transporter, permease protein	0.000143530794236	0.00684035888162	0.00669682808738
+UniRef50_Q2GDL7	Ribosomal RNA large subunit methyltransferase E	4.14432326013e-05	2.85099962365e-05	-1.29332363648e-05
+UniRef50_V5VAN9	Major facilitator superfamily permease	0.000109924050077	0.00694594145321	0.00683601740313
+UniRef50_Q9RYA2		1.753118713e-05	0.0342240586871	0.0342065275
+UniRef50_Q2C7C0		5.45179186972e-05	0.000634481228811	0.000579963310114
+UniRef50_UPI0003B42B48	hypothetical protein, partial	7.32559288431e-06	4.53704650804e-06	-2.78854637627e-06
+UniRef50_F3NYW4	3 carboxymuconate cyclase	6.08809614591e-06	1.08744785457e-05	4.78638239979e-06
+UniRef50_B1GZ76	DNA directed RNA polymerase subunit beta	1.10445918904e-06	1.72797468269e-06	6.2351549365e-07
+UniRef50_UPI000365AE70	hypothetical protein	6.97429563521e-06	6.25887114119e-05	5.56144157767e-05
+UniRef50_UPI000464E1A7	hypothetical protein	3.98951082257e-05	5.87058170866e-05	1.88107088609e-05
+UniRef50_UPI0004787718	hypothetical protein	2.38888173542e-05	4.07163749228e-06	-1.98171798619e-05
+UniRef50_K0RCG6		1.8467444704e-05	4.00912145008e-06	-1.44583232539e-05
+UniRef50_F0XXW5		0.000167278673357	5.92254492795e-05	-0.000108053224077
+UniRef50_C5WE22		0.000932585034739	0.000993389506473	6.0804471734e-05
+UniRef50_UPI000373B5E9	hypothetical protein	5.29360107224e-05	8.49958957022e-05	3.20598849798e-05
+UniRef50_R6N0L8	Transcriptional regulator PadR family	0.000160657664224	3.12974167876e-05	-0.000129360247436
+UniRef50_A3MAB2	Resolvase	0.00105592535631	0.0412507766369	0.0401948512806
+UniRef50_UPI00026C7388	bicyclomycin resistance protein	9.08346436372e-06	3.24934822947e-05	2.3410017931e-05
+UniRef50_A0ZZN9	Aspartate semialdehyde dehydrogenase	0.000254090324097	0.00083357061716	0.000579480293063
+UniRef50_Q8RE73	Transcriptional regulator, DeoR family	0.00549508542838	0.00208820290026	-0.00340688252812
+UniRef50_N0AI85		2.31676005021e-05	0.000146423512291	0.000123255911789
+UniRef50_UPI00029D989C	PREDICTED	2.17679963127e-05	4.93332494081e-05	2.75652530954e-05
+UniRef50_F8KPA7	Glutathione regulated potassium efflux system protein KefB	9.14747953543e-05	0.00350693449124	0.00341545969589
+UniRef50_Q3IV28	DNA binding HTH domain containing proteins	0.0130366038994	0.00676836190193	-0.00626824199747
+UniRef50_M8W9J3	Glycosyl hydrolase family 65 central catalytic domain protein	0.000215291091346	7.92796524076e-05	-0.000136011438938
+UniRef50_B3WXF3	Glycolate oxidase iron sulfur subunit	2.55866356295e-05	5.56840732904e-05	3.00974376609e-05
+UniRef50_UPI00024851F3	hemolysin type calcium binding protein	2.07228005402e-06	4.11353091572e-05	3.90630291032e-05
+UniRef50_UPI0003B6F611	aldehyde activating protein	0.000156920145125	3.91968327626e-05	-0.000117723312362
+UniRef50_UPI00029AFF26	30S ribosomal protein S15	8.03830162395e-05	2.41897538769e-05	-5.61932623626e-05
+UniRef50_Q96RP9	Elongation factor G, mitochondrial	1.15220608226e-05	7.19418740366e-06	-4.32787341894e-06
+UniRef50_D0LJQ7	Extracellular solute binding protein family 1	0.0110876281656	0.00183648778218	-0.00925114038342
+UniRef50_Q9RWX4		0.000482723819801	0.0196451101969	0.0191623863771
+UniRef50_P25740	Lipopolysaccharide core biosynthesis protein RfaG	0.00396643837659	0.00152439095337	-0.00244204742322
+UniRef50_T2L9X3		0.000180959195655	5.2507838966e-05	-0.000128451356689
+UniRef50_Q9RRP0	Transcriptional regulator, MerR family	0.000294680013299	0.0309331585454	0.0306384785321
+UniRef50_B9KNU8	Transcriptional regulator, MerR family	0.00617601716693	0.00105355235223	-0.0051224648147
+UniRef50_G7U539		5.08056512592e-05	0.00321032300084	0.00315951734958
+UniRef50_UPI00035E9032	MULTISPECIES	8.01458044706e-06	2.34611146232e-05	1.54465341761e-05
+UniRef50_UPI000411B532	hypothetical protein	0.000134436053524	7.2731883108e-05	-6.1704170416e-05
+UniRef50_UPI0004638A40	hypothetical protein	8.12777733285e-05	2.94846182109e-05	-5.17931551176e-05
+UniRef50_UPI000304092F	hypothetical protein	1.1240277524e-05	2.27595106865e-05	1.15192331625e-05
+UniRef50_UPI00047D1DA4	methyltransferase	3.02877527938e-05	2.60433689021e-05	-4.2443838917e-06
+UniRef50_B9E5C1		0.000227401198102	0.000442975057792	0.00021557385969
+UniRef50_U5MS98		0.000420570896694	0.0014263004297	0.00100572953301
+UniRef50_A3M1H8		7.75656232471e-05	0.00692520649548	0.00684764087223
+UniRef50_A4WTR8		0.00208684961886	0.00089040212621	-0.00119644749265
+UniRef50_F9YXU6		0.000154091083615	0.000651518130776	0.000497427047161
+UniRef50_B2V7W7	ATP dependent 6 phosphofructokinase	2.21733406052e-05	7.39473080604e-06	-1.47786097992e-05
+UniRef50_UPI00046226A0	histidine kinase, partial	0.000158164520469	0.000228043787796	6.9879267327e-05
+UniRef50_UPI000464D5F8	quercetin 2,3 dioxygenase	5.54654045468e-06	1.15753878975e-05	6.02884744282e-06
+UniRef50_Q89GJ0	ABC transporter permease protein	0.00101112772668	0.00048545211813	-0.00052567560855
+UniRef50_Q82SA8	Glucans biosynthesis glucosyltransferase H	0.00322620876065	0.000982470916933	-0.00224373784372
+UniRef50_M1Z980		1.57908939236e-05	5.36752964174e-05	3.78844024938e-05
+UniRef50_UPI0004704D11	translation initiation factor IF 3	0.000163534295685	0.000210350854973	4.6816559288e-05
+UniRef50_G0DSU9	S adenosylmethionine synthase	0.00019595176491	0.00378181688188	0.00358586511697
+UniRef50_Q2FFH9	Sodium dependent dicarboxylate transporter SdcS	0.0115303940844	0.00144442504443	-0.01008596904
+UniRef50_UPI000362FFAD	hypothetical protein, partial	1.20421391428e-05	3.58845595754e-05	2.38424204326e-05
+UniRef50_G0DRS5	Sugar binding protein	0.000228474222761	0.00811337326417	0.00788489904141
+UniRef50_UPI000223620B	PREDICTED	0.000118768533466	0.000185394721555	6.6626188089e-05
+UniRef50_UPI0003B6A033	ABC transporter	2.22087090568e-06	3.4907305443e-06	1.26985963862e-06
+UniRef50_Q96533	Alcohol dehydrogenase class 3	5.86393070053e-06	0.00317914242224	0.00317327849154
+UniRef50_W9EWM1		8.03232046339e-05	5.49111602742e-05	-2.54120443597e-05
+UniRef50_C1KYP9	Prolipoprotein diacylglyceryl transferase	1.04729237001e-05	0.000521147126817	0.000510674203117
+UniRef50_UPI000479DF45	hypothetical protein	1.97659534534e-05	1.03216520701e-05	-9.4443013833e-06
+UniRef50_M9M1D4		0.00097309487519	0.000216799876999	-0.000756294998191
+UniRef50_D5ATM2	Transcriptional regulator, LysR family	0.00465043345512	0.00171587947862	-0.0029345539765
+UniRef50_A0A024J7I0	Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA dependent ATPase and ssDNA annealing activities involved in maintenance of genome	3.25484789268e-06	1.69036836831e-05	1.36488357904e-05
+UniRef50_Q182G9	Uracil DNA glycosylase	0.00793373466344	0.00210595479533	-0.00582777986811
+UniRef50_UPI00037EDDB2	hypothetical protein	2.09756641805e-05	3.20341797078e-05	1.10585155273e-05
+UniRef50_D9WFC1	Allergen V5 Tpx 1 related protein	5.85849700527e-05	5.10745646213e-05	-7.5104054314e-06
+UniRef50_P0A911	Outer membrane protein A	0.00362566167161	0.00101563638109	-0.00261002529052
+UniRef50_UPI0003B56FE6	hypothetical protein	1.85993862493e-06	8.14728887017e-07	-1.04520973791e-06
+UniRef50_UPI000465FC10	oxidoreductase	8.1911951262e-06	1.22535146878e-05	4.0623195616e-06
+UniRef50_K9NBL7	Formate dehydrogenase family accessory protein FdhD	0.000196949211577	0.000228337658653	3.1388447076e-05
+UniRef50_C8RZ45	Entericidin EcnAB	0.000141183299524	0.000259390794772	0.000118207495248
+UniRef50_V9ZPI5	GntR family transcriptional regulator	0.000157067679132	0.000599275541181	0.000442207862049
+UniRef50_B8GVF8	Potassium transporting ATPase A chain	1.01130731999e-05	0.00124857913595	0.00123846606275
+UniRef50_Q4FR66	Possible tRNA io(6)a) hydroxylase	8.83975236542e-06	0.00356371275777	0.0035548730054
+UniRef50_V5XTH0	HIT family protein	0.00301580741199	0.00951262795234	0.00649682054035
+UniRef50_S5XKF8	Aminodeoxychorismate lyase	0.00183606468922	0.00060333333611	-0.00123273135311
+UniRef50_UPI00037864CC	hypothetical protein	5.6464639105e-05	2.57262109159e-05	-3.07384281891e-05
+UniRef50_A3M8R9		9.73963701246e-05	0.00748761566958	0.00739021929946
+UniRef50_D3CS21	Terminase	1.72422524725e-06	4.6478982698e-06	2.92367302255e-06
+UniRef50_D7CM96	Metallophosphoesterase	7.27848586041e-06	1.50496903043e-05	7.77120444389e-06
+UniRef50_A8U0I4		1.42041880074e-06	3.62886407675e-06	2.20844527601e-06
+UniRef50_Q28TH8	Protein L isoaspartate O methyltransferase	0.00211989791279	0.000694862835762	-0.00142503507703
+UniRef50_D7A8N8		0.00223793177468	0.00140481492064	-0.00083311685404
+UniRef50_UPI000361C4AD	hypothetical protein	0.000217337939078	1.66883101846e-05	-0.000200649628893
+UniRef50_P57028	DNA primase	0.000455340207854	0.00318368260169	0.00272834239384
+UniRef50_Q3AAI8	Adenine phosphoribosyltransferase	2.38630710129e-05	4.06513086556e-05	1.67882376427e-05
+UniRef50_G0MS24		1.89928228595e-05	2.23184584061e-05	3.3256355466e-06
+UniRef50_A5UL10		0.0058959180495	0.000477601140485	-0.00541831690901
+UniRef50_A6LT75	Ig domain protein, group 2 domain protein	0.00029455243046	0.00162078119211	0.00132622876165
+UniRef50_UPI0003735B5E	hypothetical protein	4.91138850543e-06	1.39821651909e-06	-3.51317198634e-06
+UniRef50_Q8FPF5	LexA repressor	6.25249684799e-05	1.56114780767e-05	-4.69134904032e-05
+UniRef50_C1AAF1	UDP glucose 6 dehydrogenase	0.00490943510961	0.00331580644179	-0.00159362866782
+UniRef50_UPI0003C1975D		2.31212779318e-05	3.53568746275e-05	1.22355966957e-05
+UniRef50_UPI00037D4B02	hypothetical protein	7.75701654001e-06	3.80178452906e-06	-3.95523201095e-06
+UniRef50_P45335		0.000204830812332	0.00252247365718	0.00231764284485
+UniRef50_Q47690	Homocysteine S methyltransferase	0.00167519669018	0.000376199624447	-0.00129899706573
+UniRef50_A6QBN8	ATP dependent zinc metalloprotease FtsH	6.04622512861e-05	0.0058378907646	0.00577742851331
+UniRef50_B2SDP9	3 dehydroquinate dehydratase	6.18834267726e-05	1.63361000428e-05	-4.55473267298e-05
+UniRef50_UPI0003BD59E0	PREDICTED	6.73408053123e-06	1.1513208162e-05	4.77912763077e-06
+UniRef50_G7M9Q4	SSS sodium solute transporter superfamily	0.000284017336483	0.00130927035157	0.00102525301509
+UniRef50_UPI00046850A9	membrane protein	3.69663463273e-05	4.75414985962e-06	-3.22121964677e-05
+UniRef50_Q1MIN0	Phosphate import ATP binding protein PstB 2	6.21180647702e-06	0.0001572358992	0.000151024092723
+UniRef50_A0A031W8S5		4.81562368441e-05	4.6812926905e-05	-1.3433099391e-06
+UniRef50_A6VAP8		0.000224697354869	0.000578158651396	0.000353461296527
+UniRef50_Q9I425	Cytochrome bo ubiquinol oxidase subunit 3	0.00448453814469	0.00260926823191	-0.00187526991278
+UniRef50_Q6A9N0	Hemin receptor	4.16778983442e-05	0.00753389953111	0.00749222163277
+UniRef50_Q63Q93	Phosphoribosyl AMP cyclohydrolase	2.37393536606e-05	5.94870099621e-05	3.57476563015e-05
+UniRef50_I2DKJ5	Urea ABC transporter, urea binding protein	0.0178486838905	0.00391405306036	-0.0139346308301
+UniRef50_F0RXH0	Ornithine decarboxylase	0.00143909360312	0.00580920910375	0.00437011550063
+UniRef50_K4RK14	Cysteine desulfurase	0.000115321585189	0.00284997237502	0.00273465078983
+UniRef50_UPI00045D877D	PREDICTED	7.2745867193e-05	8.07695811183e-05	8.0237139253e-06
+UniRef50_UPI000262B349	TonB like protein	0.000151484918653	0.000172868315237	2.1383396584e-05
+UniRef50_A0A024HEM4		0.000169162777717	0.000136404944659	-3.2757833058e-05
+UniRef50_UPI00032AF593	PREDICTED	4.33393104288e-06	1.59844688163e-05	1.16505377734e-05
+UniRef50_E3I3E7	Enoyl CoA hydratase isomerase	0.000531922390186	0.000192597851207	-0.000339324538979
+UniRef50_S3ZTJ7		0.000225140748821	2.69796864334e-05	-0.000198161062388
+UniRef50_C2V3W1	Flavodoxin	0.000331128060398	0.00114001973896	0.000808891678562
+UniRef50_I0EKX0		0.000126673150626	0.00571418335711	0.00558751020648
+UniRef50_I0EKX8		0.000237973923262	0.00272474654236	0.0024867726191
+UniRef50_UPI0003B5754D	30S ribosomal protein S2	2.10117484474e-05	0.000115285731913	9.42739834656e-05
+UniRef50_UPI000477AE59	GMP synthase	3.12373823975e-06	1.3286428388e-05	1.01626901482e-05
+UniRef50_UPI00036D316E	hypothetical protein	2.2212781002e-05	2.46660446637e-05	2.4532636617e-06
+UniRef50_X1RBN9	Marine sediment metagenome DNA, contig	0.000123893850246	0.00160080283871	0.00147690898846
+UniRef50_S1SGR9		0.000281678685418	4.48482495811e-05	-0.000236830435837
+UniRef50_G7ZV51		3.22760195962e-05	3.04050563091e-05	-1.8709632871e-06
+UniRef50_A6M2G9	Polysaccharide biosynthesis protein	0.000163189554473	0.00319644103373	0.00303325147926
+UniRef50_N0C5G3		0.00583284352253	0.00556745899574	-0.00026538452679
+UniRef50_A3VF16		0.000260954772703	4.05986804015e-05	-0.000220356092301
+UniRef50_A1WKV0	Succinate dehydrogenase	0.00327041598736	0.00113403931895	-0.00213637666841
+UniRef50_Q0SRW4	Phospho N acetylmuramoyl pentapeptide transferase	7.30710392256e-06	9.7699286379e-06	2.46282471534e-06
+UniRef50_UPI00046AE78D	type III secretion protein HrpI	6.03321920333e-06	5.61542458118e-06	-4.1779462215e-07
+UniRef50_U7DL84	TetR family transcriptional regulator	0.000446336597065	0.000285330149942	-0.000161006447123
+UniRef50_N6TVC0		0.000353630632388	2.18061715372e-05	-0.000331824460851
+UniRef50_V6QG29	Type III restriction enzyme, res subunit	0.0098841505013	0.00534783224654	-0.00453631825476
+UniRef50_Q8PG33	RNA polymerase sigma factor RpoD	0.000804082964542	0.0028458886189	0.00204180565436
+UniRef50_D5SSK6	Beta Ig H3 fasciclin	6.91947766764e-05	1.40332555597e-05	-5.51615211167e-05
+UniRef50_A5N5W0	3 methyl 2 oxobutanoate hydroxymethyltransferase	1.53294511175e-05	0.00212374664228	0.00210841719116
+UniRef50_S9QZ13		4.98589119372e-05	7.57493512734e-05	2.58904393362e-05
+UniRef50_D9UUH5	Predicted protein	2.27303077583e-05	0.000125404795578	0.00010267448782
+UniRef50_P0C8K1	D tagatose 1,6 bisphosphate aldolase subunit KbaZ	0.0045407407648	0.00193279716663	-0.00260794359817
+UniRef50_Q73Z69		2.59945604314e-06	2.11930838157e-06	-4.8014766157e-07
+UniRef50_UPI0003B6885A	hypothetical protein	0.000106908486396	3.12815155955e-05	-7.56269708005e-05
+UniRef50_UPI00047712DF	cystathionine beta lyase	8.58356784087e-05	1.92484643492e-05	-6.65872140595e-05
+UniRef50_M9VBT0	RpiR family transcriptional regulator	0.00048452050887	0.00581842192246	0.00533390141359
+UniRef50_A7ZUM9		0.011615942642	0.00272246400014	-0.00889347864186
+UniRef50_UPI0003B566EA	glycine betaine ABC transporter ATP binding protein	0.000172952101627	1.34709640893e-05	-0.000159481137538
+UniRef50_UPI0003682815	transcriptional regulator	3.36887347044e-05	7.96106693115e-05	4.59219346071e-05
+UniRef50_UPI0003C1848F		1.27091099107e-05	0.000136644285801	0.00012393517589
+UniRef50_H2A7K3	COG4478, integral membrane protein	0.000241472812415	1.86518256558e-05	-0.000222820986759
+UniRef50_UPI0002485ACF	sugar ABC transporter ATP binding protein	1.14597753175e-05	1.66444082555e-05	5.184632938e-06
+UniRef50_K8B0J3	Acetyl coenzyme A synthetase	0.00142914633767	0.000899005750461	-0.000530140587209
+UniRef50_UPI00045E771A	hypothetical protein	0.000578139924697	0.000348735440883	-0.000229404483814
+UniRef50_UPI00036DBE20	hypothetical protein	0.000249659097226	6.11217046404e-05	-0.000188537392586
+UniRef50_F0Y5J9	Expressed protein 	0.000134490739149	0.000288787895961	0.000154297156812
+UniRef50_Q9HZ17	FMN dependent NADH azoreductase 3	0.000267720559474	0.00316308162324	0.00289536106377
+UniRef50_UPI000379F901	hypothetical protein	1.50613992114e-05	1.18607171512e-05	-3.2006820602e-06
+UniRef50_A8Z481	Competence protein ComGD	0.00351526128724	0.00237611142112	-0.00113914986612
+UniRef50_Z8E4W9		0.000476012824855	1.71162602195e-05	-0.000458896564636
+UniRef50_A7Z3A7	N acetyl gamma glutamyl phosphate reductase	4.96997921935e-06	5.16366006545e-06	1.936808461e-07
+UniRef50_UPI00036800B9	hypothetical protein	0.000174790674043	0.0001428713354	-3.1919338643e-05
+UniRef50_K0DDY7	3 oxoacyl [acyl carrier protein] synthase 2	0.00820619844652	0.00179326603883	-0.00641293240769
+UniRef50_A0A023RSC6	D Ala D Ala carboxypeptidase	0.000270922958506	0.0084795181715	0.00820859521299
+UniRef50_Q9ZKG9	Methionine  tRNA ligase	6.44726582038e-05	0.00208569193564	0.00202121927744
+UniRef50_M4YY04	Ribosome biogenesis GTPase A	0.00568120929523	0.0028965674175	-0.00278464187773
+UniRef50_W6I1I5		2.26439125401e-06	3.6976552859e-06	1.43326403189e-06
+UniRef50_W1X1F9		0.00085636406403	0.000322829721041	-0.000533534342989
+UniRef50_B6IWY4		2.50266742009e-06	4.70144629967e-06	2.19877887958e-06
+UniRef50_R9SI06	Chorismate lyase	0.00306318153505	0.000315846743525	-0.00274733479152
+UniRef50_D0Z8H8		1.53513617329e-05	0.000971037898047	0.000955686536314
+UniRef50_G5LKX8	Potassium transporting ATPase B chain	1.88203351291e-05	0.00136688918081	0.00134806884568
+UniRef50_Q31N34	3 isopropylmalate dehydrogenase	5.25456489393e-05	6.20758076026e-05	9.5301586633e-06
+UniRef50_Q9LV03	Glutamate synthase 1 [NADH], chloroplastic	1.03833201265e-06	1.09541629013e-05	9.91583088865e-06
+UniRef50_P21599	Pyruvate kinase II	0.00272713402986	0.000796271081831	-0.00193086294803
+UniRef50_I0ZLD5	Cation acetate symporter ActP	0.000729757742592	0.000655754929427	-7.4002813165e-05
+UniRef50_F0N2E1	Antioxidant, AhpC TSA family	0.00174224302547	0.0116455577096	0.00990331468413
+UniRef50_R6LNJ5	Calcium translocating P type ATPase PMCA type	0.000452391273821	0.00122306857789	0.000770677304069
+UniRef50_V6IYX1	Sugar ABC transporter substrate binding protein	0.000143159730023	1.83939685458e-05	-0.000124765761477
+UniRef50_M9RA73		0.0327263496618	0.00037381861418	-0.0323525310476
+UniRef50_H1CG66	Inosine 5 monophosphate dehydrogenase	0.00360713766123	0.000555707614596	-0.00305143004663
+UniRef50_Q9FV81-2	Isoform 2 of Glutamyl tRNA amidotransferase subunit B, chloroplastic mitochondrial	2.81065472929e-05	2.01819405499e-05	-7.924606743e-06
+UniRef50_UPI00036930E8	hypothetical protein	2.78148761753e-05	6.41161053227e-07	-2.71737151221e-05
+UniRef50_C1DKH4	Tartrate transporter	0.0002529622901	0.00255069249602	0.00229773020592
+UniRef50_UPI0004798495	16S rRNA methyltransferase, partial	4.56538767165e-05	0.000196307537731	0.000150653661014
+UniRef50_UPI0004702790	hypothetical protein	6.97296660518e-05	2.15342069828e-05	-4.8195459069e-05
+UniRef50_I6RS84	Type 4 fimbrial biogenesis protein PilX	0.000687548156749	0.000301343576728	-0.000386204580021
+UniRef50_P39853	Capsular polysaccharide biosynthesis protein CapD	2.26011804391e-05	0.00109703689735	0.00107443571691
+UniRef50_D7HYR3	D alanyl D alanine carboxypeptidase	0.00060983822042	0.000376795021552	-0.000233043198868
+UniRef50_UPI0004678721	hypothetical protein	0.000223880535938	1.2644111223e-05	-0.000211236424715
+UniRef50_I6U2K4	Transcriptional regulator	0.00381352079595	0.00115905607187	-0.00265446472408
+UniRef50_A0A024JDH6	Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD dependent  butanediol dehydrogenase	5.92366936443e-06	2.76717582201e-05	2.17480888557e-05
+UniRef50_P23876	Ferric enterobactin transport system permease protein FepD	0.004472983898	0.00234787763293	-0.00212510626507
+UniRef50_L0Q6W3		9.70357819977e-07	0.000122930762834	0.000121960405014
+UniRef50_C5N3X1		0.00330275162702	0.00170330479738	-0.00159944682964
+UniRef50_UPI0001F85E2B	multiple sugar binding transporter like protein	1.44149256948e-05	2.57700423232e-05	1.13551166284e-05
+UniRef50_UPI0003090106	cyclase	9.95716216258e-06	0.000288604169593	0.00027864700743
+UniRef50_W6C5N4	Polyketide synthase domain protein	4.76123327522e-05	0.00025197336371	0.000204361030958
+UniRef50_P33770	Coproporphyrinogen III oxidase, anaerobic 1	0.0108854704053	0.00327250201761	-0.00761296838769
+UniRef50_E4L4M2	SNF2 family protein	0.000528156953586	0.000164396283177	-0.000363760670409
+UniRef50_C3I167	Collagen adhesion protein	3.59742425399e-05	0.000107845418814	7.18711762741e-05
+UniRef50_UPI00037939BE	hypothetical protein	7.95098310251e-06	6.13312270941e-06	-1.8178603931e-06
+UniRef50_UPI0003020997	hypothetical protein	3.15777251882e-05	8.01736272467e-05	4.85959020585e-05
+UniRef50_Q8ER36	Orotidine 5 phosphate decarboxylase	9.60224096871e-06	1.63491526927e-05	6.74691172399e-06
+UniRef50_U1EEA4		0.000839504551366	9.87769640377e-05	-0.000740727587328
+UniRef50_U5PCG2	ABC transporter ATP binding protein	0.00552725008652	0.0044889882581	-0.00103826182842
+UniRef50_T1XT07	BioX, putative	0.0131425871141	0.000606815147654	-0.0125357719664
+UniRef50_UPI00034AA460	hypothetical protein	0.000114739585902	5.59794423611e-06	-0.000109141641666
+UniRef50_K1E310	FAD dependent oxidoreductase	3.05825273444e-05	3.14466609142e-05	8.641335698e-07
+UniRef50_D2JAL6		0.00822902625585	0.00279886365124	-0.00543016260461
+UniRef50_UPI0004721ABE	2 hydroxy acid oxidase	8.53819721138e-06	1.27129561562e-05	4.17475894482e-06
+UniRef50_K0HFL9	MFS superfamily metabolite transporter	0.000105639735687	0.00583376253161	0.00572812279592
+UniRef50_P48728	Aminomethyltransferase, mitochondrial	5.32506301152e-06	6.92545911867e-06	1.60039610715e-06
+UniRef50_UPI0004779493	multidrug ABC transporter substrate binding protein	8.17822032878e-06	7.24349100422e-05	6.42566897134e-05
+UniRef50_A7FC02		0.0141068245209	0.00242436319857	-0.0116824613223
+UniRef50_Q92ID9	NADH quinone oxidoreductase subunit E	0.000300906119878	9.8706789506e-05	-0.000202199330372
+UniRef50_Q7U8U2	2,3 bisphosphoglycerate independent phosphoglycerate mutase	9.10692511038e-06	0.00211419670339	0.00210508977828
+UniRef50_A4WSV4	Integral membrane sensor hybrid histidine kinase	0.000666595996722	0.000510168072101	-0.000156427924621
+UniRef50_Q3J222	Prohead peptidase	0.041744510576	0.0070430691237	-0.0347014414523
+UniRef50_A6LU68		0.000195551255929	0.00121666916275	0.00102111790682
+UniRef50_P0ACU0		0.000762063535662	0.000527351259279	-0.000234712276383
+UniRef50_J4PCY6		5.85446639824e-06	1.79255691649e-05	1.20711027667e-05
+UniRef50_J9NX48		8.87022816825e-05	0.000123942982866	3.52407011835e-05
+UniRef50_Q7UKG6	Phosphopantetheine adenylyltransferase	2.48556342499e-05	1.80010471357e-05	-6.8545871142e-06
+UniRef50_Q6AL57	Transcription elongation factor GreA	0.0424748192723	0.00113664421205	-0.0413381750602
+UniRef50_Q47VJ8	Ribosomal RNA small subunit methyltransferase A	0.00377904592018	0.00149791803645	-0.00228112788373
+UniRef50_W4HH92	Flagellar protein FlgJ	4.50157599244e-05	1.97277047827e-05	-2.52880551417e-05
+UniRef50_Q9X1K5	Diaminopimelate decarboxylase	1.08975216127e-05	9.08471114237e-05	7.9949589811e-05
+UniRef50_A6L467		8.21812747825e-05	0.00394472516381	0.00386254388903
+UniRef50_UPI00047E3BE8	antibiotic ABC transporter ATP binding protein	2.9623144854e-05	1.78654303749e-05	-1.17577144791e-05
+UniRef50_UPI00036A881E	hypothetical protein	8.0357552537e-05	6.67203906117e-05	-1.36371619253e-05
+UniRef50_UPI000403EBB4	hypothetical protein	9.70183621895e-06	8.53820200852e-06	-1.16363421043e-06
+UniRef50_Q9BPL7	Enolase 2	8.38809970367e-06	4.30740755944e-05	3.46859758907e-05
+UniRef50_Q9RUW7		0.000170038733717	0.0289186642674	0.0287486255337
+UniRef50_A8LSK1	Methionine synthase	0.012184668792	0.00138735665121	-0.0107973121408
+UniRef50_UPI0003809DD9	hypothetical protein	2.10612319231e-05	5.44494481158e-05	3.33882161927e-05
+UniRef50_S9Q9U8		0.000834591893387	9.25449644757e-05	-0.000742046928911
+UniRef50_B0JXU3	Tryptophan synthase alpha chain	6.49564389585e-06	3.70669364265e-05	3.05712925307e-05
+UniRef50_E3D2G5	Histone deacetylase family protein	0.000222917906442	0.00258032085162	0.00235740294518
+UniRef50_UPI0003B5E34E	hypothetical protein	2.99272533724e-05	3.46818292249e-05	4.7545758525e-06
+UniRef50_R4K9U0	DNA binding domain containing protein, AraC type	0.000271087517886	0.00238800287816	0.00211691536027
+UniRef50_A1B0L9	DSBA oxidoreductase	0.00199578442658	0.000301343576728	-0.00169444084985
+UniRef50_F4M1U9		0.00301041584131	0.00035723794984	-0.00265317789147
+UniRef50_D9XYR1		0.00039875280513	0.000635089688595	0.000236336883465
+UniRef50_A1TVS9	DNA directed RNA polymerase subunit beta	0.000126277227183	0.00293098533946	0.00280470811228
+UniRef50_UPI00036C2011	hypothetical protein	7.47838627615e-06	2.54514868394e-05	1.79731005633e-05
+UniRef50_V4ZLE5		1.74412130954e-05	9.66926280407e-06	-7.77195029133e-06
+UniRef50_UPI00046E5BCC	hypothetical protein	6.55102502005e-05	6.36638103887e-05	-1.8464398118e-06
+UniRef50_H8H091	Protein tyrosine kinase	0.00044538609018	0.0545585207055	0.0541131346153
+UniRef50_Q9RRQ3	Methionyl tRNA formyltransferase	0.000209326796037	0.00570343623668	0.00549410944064
+UniRef50_UPI00040B88AD	UDP N acetylglucosamine 2 epimerase	4.05347440743e-06	4.90554424733e-05	4.50019680659e-05
+UniRef50_UPI00047E5ED7	methionyl tRNA synthetase	2.10297402489e-06	8.66949829182e-06	6.56652426693e-06
+UniRef50_UPI00029B3D72	methionine ABC transporter ATP binding protein	9.19939068838e-06	1.86256509507e-05	9.42626026232e-06
+UniRef50_I3TSH3		0.000188531238391	4.68510926259e-05	-0.000141680145765
+UniRef50_UPI0003659DC3	hypothetical protein	0.000350531002865	5.15543361463e-05	-0.000298976666719
+UniRef50_A9NFF0	3 oxoacyl [acyl carrier protein] synthase 3	0.000121767321402	1.92632414655e-05	-0.000102504079936
+UniRef50_UPI00039AD4F5	hypothetical protein	0.000332441010353	0.000189713694348	-0.000142727316005
+UniRef50_D8LEP5		0.000122216611348	7.77078933929e-05	-4.45087179551e-05
+UniRef50_UPI000371B6BB	hypothetical protein	5.29112489966e-06	5.27032488013e-06	-2.080001953e-08
+UniRef50_UPI0003730F41	hypothetical protein	1.40201020954e-06	8.85775344207e-06	7.45574323253e-06
+UniRef50_D9W6W3	Pyruvate dehydrogenase E1 component, beta subunit 	2.47599037503e-05	0.000374788992773	0.000350029089023
+UniRef50_F2A904		0.00141878477885	0.000153810783964	-0.00126497399489
+UniRef50_P66840	Putative 5 deoxyribonucleotidase	0.0177196171343	0.0050474372536	-0.0126721798807
+UniRef50_UPI000419C490	hypothetical protein	3.46984835007e-05	0.000427102615472	0.000392404131971
+UniRef50_T1XMS0		0.0039938364311	0.00661569203381	0.00262185560271
+UniRef50_E3HMU2	NLPA lipoprotein family protein 2	5.56157572879e-05	7.69588947928e-05	2.13431375049e-05
+UniRef50_F2MTP7	Permease protein	4.04792763964e-06	0.00102796593386	0.00102391800622
+UniRef50_A5G7C7	Cyclic pyranopterin monophosphate synthase accessory protein	1.25844989131e-05	3.74793595656e-05	2.48948606525e-05
+UniRef50_P37660	Inner membrane transport protein YhjV	0.00245190682832	0.000609342895392	-0.00184256393293
+UniRef50_M4R188	Alpha beta hydrolase	0.000281006939596	0.00551155654442	0.00523054960482
+UniRef50_Q9ZDG4	Enoyl [acyl carrier protein] reductase [NADH] FabI	2.08916828417e-05	3.39680460079e-05	1.30763631662e-05
+UniRef50_UPI000252B2C6	PREDICTED	2.09952197365e-05	6.40869817149e-05	4.30917619784e-05
+UniRef50_B4G025		0.000146841261068	5.45100947855e-05	-9.23311662825e-05
+UniRef50_N1MD27		4.47737094911e-05	0.000399577778152	0.000354804068661
+UniRef50_UPI00037C0828	hypothetical protein	1.41609120888e-05	6.74575120229e-05	5.32965999341e-05
+UniRef50_A6LR24	Binding protein dependent transport systems inner membrane component	0.000433451080824	0.000984986740368	0.000551535659544
+UniRef50_Q7VQF3	Chaperone protein ClpB	0.0035705687169	0.00117565948613	-0.00239490923077
+UniRef50_A6LUL9		0.000260935015331	0.00343546800525	0.00317453298992
+UniRef50_O34912	Histidine biosynthesis bifunctional protein HisIE	1.14887686762e-05	5.41589352388e-05	4.26701665626e-05
+UniRef50_A4WZN4		0.00487722060015	0.000265094120383	-0.00461212647977
+UniRef50_UPI000455DB27	general APC amino acid permease	2.90463622911e-06	1.46374330329e-05	1.17327968038e-05
+UniRef50_UPI0002B43AC6	PREDICTED	8.60918848724e-05	4.5009761955e-05	-4.10821229174e-05
+UniRef50_B2GAM0	Enolase	0.0286501256718	0.0794844618692	0.0508343361974
+UniRef50_UPI00047EF87F	adenine deaminase	3.35184571582e-05	6.53916915152e-06	-2.69792880067e-05
+UniRef50_P0AG16	Amidophosphoribosyltransferase	0.00384859536076	0.00218887038083	-0.00165972497993
+UniRef50_UPI000329AF58	PREDICTED	1.19165666318e-05	7.93251833153e-06	-3.98404830027e-06
+UniRef50_W5XCC8	Translation initiation factor IF 2	6.21549227664e-06	1.72147081658e-05	1.09992158892e-05
+UniRef50_B5GE97		6.21881242257e-05	0.000121763004674	5.95748804483e-05
+UniRef50_P14575	Cytochrome c oxidase subunit 3	6.55914734379e-05	1.14461067609e-05	-5.4145366677e-05
+UniRef50_E8S6A2	Cobyrinic acid ac diamide synthase	4.4303808345e-06	2.06567297751e-05	1.62263489406e-05
+UniRef50_P25798	Flagellar M ring protein	0.0034134737437	0.00186829663424	-0.00154517710946
+UniRef50_A5UP72	Predicted ATPase, AAA+ superfamily	0.00900112584029	0.00225262405115	-0.00674850178914
+UniRef50_Q71YD4	30S ribosomal protein S14	0.000352790643786	0.01197465751	0.0116218668662
+UniRef50_J9RWY1		1.93533091896e-05	1.8284568998e-05	-1.0687401916e-06
+UniRef50_P0AFU1	Inner membrane ABC transporter permease protein YejB	0.0112458799449	0.00282785097814	-0.00841802896676
+UniRef50_UPI00037FB943	hypothetical protein	1.62361831908e-05	6.18902403542e-06	-1.00471591554e-05
+UniRef50_Q0VSU8	Pyridoxine pyridoxamine 5 phosphate oxidase	1.02203536949e-05	1.5077204566e-05	4.8568508711e-06
+UniRef50_Q9ZM43		0.000124582834604	0.00777195086413	0.00764736802953
+UniRef50_H6SQR1		1.9269091371e-05	0.000197619685755	0.000178350594384
+UniRef50_F3YB73	ABC transporter, substrate binding protein	3.02290428433e-05	2.33459958245e-05	-6.8830470188e-06
+UniRef50_I0C1S7	Cystathionine beta lyase	0.0296191243874	0.00721835302993	-0.0224007713575
+UniRef50_R4LHW2		2.87512876844e-05	0.000382881563503	0.000354130275819
+UniRef50_B3DWK0	Potassium transporting ATPase A chain	3.60600399222e-06	0.00123864952253	0.00123504351854
+UniRef50_O34849	Glutamate synthase large subunit like protein YerD	0.0227681889695	0.00362687116443	-0.0191413178051
+UniRef50_UPI0002557A0F	siderophore interacting protein	6.59130498712e-06	0.00072864450845	0.000722053203463
+UniRef50_Q8E6D9		0.000310262456591	0.000798153257284	0.000487890800693
+UniRef50_O68826		0.000931733320452	0.000208950498955	-0.000722782821497
+UniRef50_U3TU21		6.38643809769e-05	8.63676481117e-05	2.25032671348e-05
+UniRef50_G7L9I0	Acyl coa ligase acetate coa synthetase like protein	3.9860053148e-05	8.94260459322e-05	4.95659927842e-05
+UniRef50_A5UN41	Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC	0.00641577670655	0.000204607416996	-0.00621116928955
+UniRef50_Q2RWR8	Light independent protochlorophyllide reductase subunit N	0.00279925995383	0.000247765632391	-0.00255149432144
+UniRef50_A0A038C8Y6	Cytochrome C 	0.00037308813651	0.000100241184142	-0.000272846952368
+UniRef50_E3PS54	Chemotaxis protein cheV	0.000260684454239	0.000394193599824	0.000133509145585
+UniRef50_E2PUY3		0.000394650836142	0.000493294214213	9.8643378071e-05
+UniRef50_Q4UTY2		1.87975087287e-05	0.00139275840481	0.00137396089608
+UniRef50_P59342	Signal transduction histidine protein kinase BarA	0.00255674962222	0.00111423204895	-0.00144251757327
+UniRef50_F4QP68	Con	0.000351724753556	0.000244870308802	-0.000106854444754
+UniRef50_Q8CTA4	Probable cysteine desulfurase	0.0116012133078	0.00334362107704	-0.00825759223076
+UniRef50_P0AEZ0	Multidrug transporter MdfA	0.00338887515633	0.000202966807698	-0.00318590834863
+UniRef50_UPI000472B3B4	citrate synthase	2.52264029814e-05	2.88395252757e-05	3.6131222943e-06
+UniRef50_H1QU98		3.32211935216e-05	4.05030751855e-05	7.2818816639e-06
+UniRef50_A6U5R2	CDP alcohol phosphatidyltransferase	0.00559283866341	0.00284050331352	-0.00275233534989
+UniRef50_UPI00037E82AA	hypothetical protein	4.07924383952e-06	9.35558676313e-05	8.94766237918e-05
+UniRef50_UPI000469723A	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	2.63540976938e-05	4.70010769993e-06	-2.16539899939e-05
+UniRef50_S2KTE6		5.79290312825e-05	4.80815273452e-05	-9.8475039373e-06
+UniRef50_Q89XM4	Probable malate	4.51833002291e-06	1.23823168975e-05	7.86398687459e-06
+UniRef50_X1HXX0	Marine sediment metagenome DNA, contig	8.3250523713e-06	1.85283957945e-05	1.02033434232e-05
+UniRef50_P31435	Inner membrane symporter YicJ	0.00231572115467	0.000128959259902	-0.00218676189477
+UniRef50_UPI000262EE20	dihydrodipicolinate synthase	0.000295215906576	1.84269865245e-05	-0.000276788920052
+UniRef50_G9ZDP3		0.000138369049228	0.000966936400493	0.000828567351265
+UniRef50_P39838	Phosphotransferase RcsD	0.00260629142624	0.000894692820875	-0.00171159860537
+UniRef50_A6QGC0	Serine threonine protein kinase PrkC	0.0200006900278	0.00628270961267	-0.0137179804151
+UniRef50_Q1D6P1	Adenylyl sulfate kinase	9.70175687895e-06	0.000283770433577	0.000274068676698
+UniRef50_I4W1C3		1.13760467093e-05	2.25652833288e-05	1.11892366195e-05
+UniRef50_UPI0002485EB3	hypothetical protein	1.60740062749e-05	2.07056127816e-05	4.6316065067e-06
+UniRef50_I0HUK7	Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	7.62172273348e-05	6.69296159532e-05	-9.2876113816e-06
+UniRef50_UPI0003958A44	PREDICTED	8.82774132372e-07	1.62064737223e-06	7.37873239858e-07
+UniRef50_UPI00036FE39E	hypothetical protein, partial	0.000483316287144	0.000243759331503	-0.000239556955641
+UniRef50_A3PQ32		0.00279762514892	0.000259809418055	-0.00253781573086
+UniRef50_R9ZF14	Amino acid permease	0.000283099100471	0.000275675246015	-7.423854456e-06
+UniRef50_A3PQ31		0.00229846696065	0.000172586821474	-0.00212588013918
+UniRef50_Q6GHV7	Iron regulated surface determinant protein B	0.00735749900875	0.00150770996298	-0.00584978904577
+UniRef50_UPI0003C39CE6	PREDICTED	8.80318725684e-06	0.000121115870208	0.000112312682951
+UniRef50_UPI000332F601	PREDICTED	5.89394213897e-06	1.07491112001e-05	4.85516906113e-06
+UniRef50_Q6A8F8	Prephenate dehydrogenase	0.000314285284399	0.00457819241861	0.00426390713421
+UniRef50_A7GYD5	Queuine tRNA ribosyltransferase	0.000157504585052	0.00338067109926	0.00322316651421
+UniRef50_UPI00021A56D6	PREDICTED	8.01070467196e-05	5.63002897271e-06	-7.44770177469e-05
+UniRef50_K9ZXB7	CBS domain containing protein	0.000328465724026	0.0539731037927	0.0536446380687
+UniRef50_H7D9R4		2.71412411866e-05	2.76477902219e-05	5.065490353e-07
+UniRef50_A4G4T2	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	8.41005303552e-06	2.34400621804e-05	1.50300091449e-05
+UniRef50_Q1ITV2	Uroporphyrinogen decarboxylase	8.42151379326e-06	3.02433779968e-05	2.18218642035e-05
+UniRef50_R7B6C4		1.69834659412e-05	0.00451752463745	0.00450054117151
+UniRef50_Q5GRY9	Bifunctional DNA directed RNA polymerase subunit beta beta	1.79792369786e-06	9.76987833366e-07	-8.20935864494e-07
+UniRef50_Q73CC8		4.3774950384e-05	0.000287402917485	0.000243627967101
+UniRef50_W2BNM9		0.000351477028217	0.000180254347023	-0.000171222681194
+UniRef50_L7VQV4	Chemotaxis signal transduction protein	0.00188742994426	0.000798153257284	-0.00108927668698
+UniRef50_Q5HR61	Lipoprotein, putative	0.00352892021664	0.000515087276506	-0.00301383294013
+UniRef50_Q8CNG1	Alkaline shock protein 23	0.00939906504637	0.00467786345862	-0.00472120158775
+UniRef50_A0A009JWB2	NMT1 like family protein	0.000219214033654	0.0045170019846	0.00429778795095
+UniRef50_UPI0004646F16	MULTISPECIES	5.32047382301e-05	4.96484554156e-06	-4.82398926885e-05
+UniRef50_Q10663	Bifunctional glyoxylate cycle protein	1.61892842561e-05	7.23137931487e-05	5.61245088926e-05
+UniRef50_UPI000479F146	membrane protein	0.000126899833684	2.54220062823e-05	-0.000101477827402
+UniRef50_UPI00047D9998	hypothetical protein	4.28445629851e-06	1.64898361668e-05	1.22053798683e-05
+UniRef50_UPI000463D3E1	hypothetical protein, partial	0.00028511064625	4.70778567852e-05	-0.000238032789465
+UniRef50_D7A1G5	CoA binding domain protein	0.0119510548909	0.00373121547901	-0.00821983941189
+UniRef50_B8D8U8	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.84864750408e-05	1.40563332668e-05	-3.4430141774e-05
+UniRef50_A6LSU4	NLP P60 protein	0.000797843429186	0.00146881804754	0.000670974618354
+UniRef50_D3VF61		0.000125076155752	0.00172894053548	0.00160386437973
+UniRef50_UPI000225EED0	hypothetical protein	0.000524182851017	5.77344291136e-05	-0.000466448421903
+UniRef50_Q0VLR3	2 isopropylmalate synthase	3.30115460854e-06	1.02117725323e-05	6.91061792376e-06
+UniRef50_D3E453		0.000281006939596	0.000448582337002	0.000167575397406
+UniRef50_A6LZX3	Integral membrane sensor signal transduction histidine kinase	0.000486333402586	0.000311497818071	-0.000174835584515
+UniRef50_P75955	Inner membrane protein YcfT	0.00241182691576	0.00262680601437	0.00021497909861
+UniRef50_Q47MV7	Glutamate 5 kinase	3.29849662778e-06	2.36970014462e-05	2.03985048184e-05
+UniRef50_S6AZQ2		0.00050005205796	0.000352266447552	-0.000147785610408
+UniRef50_UPI000462853E	hypothetical protein, partial	0.000112162495156	0.000367120772478	0.000254958277322
+UniRef50_M4U374		5.57805457311e-05	3.0362871688e-05	-2.54176740431e-05
+UniRef50_A0A016RSJ2		1.19382925661e-05	4.65045140085e-06	-7.28784116525e-06
+UniRef50_C4LD11	Lipoprotein signal peptidase	1.52633460013e-05	4.59392997355e-05	3.06759537342e-05
+UniRef50_UPI00034B23A9	short chain dehydrogenase	1.00200318349e-05	3.88574995336e-05	2.88374676987e-05
+UniRef50_Q5FKL1	ABC transporter permease protein	0.00547395882956	0.00459091603716	-0.0008830427924
+UniRef50_N9UUM3		0.000106368692312	3.63701127046e-05	-6.99985796074e-05
+UniRef50_UPI0003B52215	DNA binding protein	4.42376714408e-06	1.68870941609e-05	1.24633270168e-05
+UniRef50_UPI00035FA7D7	hypothetical protein, partial	0.000647238695935	0.000137016865797	-0.000510221830138
+UniRef50_Q62EE6		0.000208058327649	0.000133244660059	-7.481366759e-05
+UniRef50_A3U2E2	Conserved hypothetical membrane transport protein	2.41536815043e-05	5.09473578659e-06	-1.90589457177e-05
+UniRef50_W4YD04		4.03457436118e-05	3.43988386493e-06	-3.69058597469e-05
+UniRef50_P24058	Argininosuccinate lyase	1.08917128847e-05	1.51956498948e-05	4.3039370101e-06
+UniRef50_M1LMT5		0.000200183947922	0.000609794605777	0.000409610657855
+UniRef50_A6M2W5	PTS system, glucose subfamily, IIA subunit	0.000342317683734	0.00147436408563	0.0011320464019
+UniRef50_Q48KY0	ABC transporter, periplasmic substrate binding protein	0.000733202216425	0.00107055885817	0.000337356641745
+UniRef50_E3NWX2		1.35906150107e-05	2.00419922195e-05	6.4513772088e-06
+UniRef50_L7WTB5		0.0126853930021	0.00409309231191	-0.00859230069019
+UniRef50_UPI0003F8C100	hypothetical protein	2.50796875593e-05	8.60872697421e-05	6.10075821828e-05
+UniRef50_V1V9W3	CRISPR associated helicase Cas3	4.60609109534e-05	1.8084069521e-05	-2.79768414324e-05
+UniRef50_V9T452	Metabolite transporter	0.000453319643236	0.000691796571308	0.000238476928072
+UniRef50_UPI000365F8BA	hypothetical protein	3.65426245409e-05	2.21009095989e-05	-1.4441714942e-05
+UniRef50_UPI0003752AFD	hypothetical protein	4.11786268328e-06	3.70246650888e-06	-4.153961744e-07
+UniRef50_UPI00037D7BC7	hypothetical protein	8.26747672476e-06	1.01294357838e-05	1.86195905904e-06
+UniRef50_R7PV18		0.00254528818971	0.00153425705328	-0.00101103113643
+UniRef50_B2I366	AraC type DNA binding domain containing protein	0.000174224302552	0.0035624932681	0.00338826896555
+UniRef50_D9UQS5	Predicted protein	0.000153704938436	0.00288204546397	0.00272834052553
+UniRef50_A0A013KTF4	RND transporter, hydrophobe amphiphile efflux 1 family protein	0.000190155436503	0.00424562984796	0.00405547441146
+UniRef50_Q8CNB4	Suppressor protein suhB	0.0205363734508	0.00387997249331	-0.0166564009575
+UniRef50_W1JGD0	Chromosome partitioning protein ParA 	3.67464134888e-05	5.19238706528e-05	1.5177457164e-05
+UniRef50_A9W1N1	NADH quinone oxidoreductase subunit C	2.29895916313e-05	1.9370559757e-05	-3.6190318743e-06
+UniRef50_G2KMP2		7.48751664942e-05	1.14823989632e-05	-6.3392767531e-05
+UniRef50_B4RBF0		2.81039508838e-05	1.18978572786e-05	-1.62060936052e-05
+UniRef50_U7I221		1.00178593389e-05	0.00023545333027	0.000225435470931
+UniRef50_F7YAM4	40 residue YVTN family beta propeller repeat protein	8.35260083823e-06	1.37899573565e-05	5.43735651827e-06
+UniRef50_F3U494		0.00211103411265	0.000419881571359	-0.00169115254129
+UniRef50_A1WXI4	PUCC protein	6.21373522621e-05	1.37220155077e-05	-4.84153367544e-05
+UniRef50_W7Q5R4		0.000107365377118	5.74125272899e-05	-4.99528498281e-05
+UniRef50_Q6A6L3		0.000422202443506	0.00268888563384	0.00226668319033
+UniRef50_S6D6P3	WGR domain containing protein	1.27499681222e-05	3.15993610435e-05	1.88493929213e-05
+UniRef50_U5UEG4		0.0019194202823	0.000735228311697	-0.0011841919706
+UniRef50_J9P5M7		0.000136814236102	3.27126918155e-05	-0.000104101544287
+UniRef50_Q99UZ6	UPF0637 protein SA0957	0.0127713706438	0.00134852561107	-0.0114228450327
+UniRef50_UPI000255A9F7	hypothetical protein	8.83748543371e-06	5.41006802445e-06	-3.42741740926e-06
+UniRef50_UPI0003643826	hypothetical protein	0.000158139427465	0.000189548075737	3.1408648272e-05
+UniRef50_J2ESL9		4.93930104175e-05	0.000275731505796	0.000226338495379
+UniRef50_A1SQR8	MATE efflux family protein	8.47014185883e-05	0.0025880742242	0.00250337280561
+UniRef50_UPI0003B7A75E	30S ribosomal protein S3	0.000778606674529	0.0010117449914	0.000233138316871
+UniRef50_Q49XH5	Anthranilate phosphoribosyltransferase	0.0135250915562	0.00226916526297	-0.0112559262932
+UniRef50_L7VTP9	Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.0007691484078	0.00319424384842	0.00242509544062
+UniRef50_UPI00016AD049	hypothetical protein	5.83768591014e-05	0.000117344386165	5.89675270636e-05
+UniRef50_UPI0003B3A739	LysR family transcriptional regulator	5.86357539184e-06	7.64784512391e-06	1.78426973207e-06
+UniRef50_UPI000361DB5D	hypothetical protein	3.48987221364e-05	5.29513615232e-05	1.80526393868e-05
+UniRef50_N2K746	Carbon nitrogen hydrolase family protein	0.00212394063714	0.00173001133681	-0.00039392930033
+UniRef50_K9ZW90	ABC type dipeptide transport system, periplasmic component	0.000274144141253	0.0451789999792	0.0449048558379
+UniRef50_Q9K4A0	Peptide deformylase 4	9.87069931391e-06	4.760157762e-05	3.77308783061e-05
+UniRef50_S6AT93	Cell envelope biogenesis, outer membrane	0.00666171340015	0.00277307897506	-0.00388863442509
+UniRef50_Q1CUW5	UDP 3 O acylglucosamine N acyltransferase	0.00019259489227	0.00265767275438	0.00246507786211
+UniRef50_G0DWZ2	RNA polymerase sigma factor	0.000471006785139	0.00430168989131	0.00383068310617
+UniRef50_UPI000262CE6F	hypothetical protein	6.87885144361e-06	2.59154683061e-05	1.90366168625e-05
+UniRef50_UPI0003B63E94	ABC transporter ATP binding protein, partial	5.52649090923e-06	1.49318050023e-05	9.40531409307e-06
+UniRef50_H7CIC3	Transposase	1.98455668339e-05	0.000881542403566	0.000861696836732
+UniRef50_G5N518	Fatty acid oxidation complex subunit alpha	0.000318128658783	0.000163766609902	-0.000154362048881
+UniRef50_Q81E30	Isoleucine  tRNA ligase 2	1.01306427643e-05	0.0010777983624	0.00106766771964
+UniRef50_A0M554	Bifunctional protein FolD	5.50032623799e-06	0.00348817449062	0.00348267416438
+UniRef50_Q9HY42		0.000654521766087	0.000246782762008	-0.000407739004079
+UniRef50_UPI00046FBD60	zinc ABC transporter permease	8.90258036447e-05	7.00717408614e-05	-1.89540627833e-05
+UniRef50_UPI000454835D	PREDICTED	0.000115709365715	0.00013398452951	1.8275163795e-05
+UniRef50_D4HAD9	Transcriptional regulator, GntR family	0.000201147063333	0.00825319342539	0.00805204636206
+UniRef50_K8BR71		1.52221549152e-05	0.000152729341708	0.000137507186793
+UniRef50_F0IYA9	Fis family transcriptional regulator	0.000750339080106	0.000100107357691	-0.000650231722415
+UniRef50_UPI00035D0C93	hypothetical protein	3.4565128931e-06	0.000698399980968	0.000694943468075
+UniRef50_UPI0002555FCE	imidazole glycerol phosphate dehydratase histidinol phosphatase, partial	3.03751079853e-05	1.07909440812e-05	-1.95841639041e-05
+UniRef50_A8LPP5	Fasciclin domain protein	0.000136141074323	2.32521827794e-05	-0.000112888891544
+UniRef50_H0HUE0		9.3042639515e-05	0.000118906037747	2.5863398232e-05
+UniRef50_Q3JW66		6.12099358892e-05	0.000175555559619	0.00011434562373
+UniRef50_X9N9G2		2.41080840469e-05	2.4213514173e-05	1.054301261e-07
+UniRef50_R4ZLZ8	CRISPR associated protein, Csd1 family	0.00407796947547	0.00358852439641	-0.00048944507906
+UniRef50_T2G5V0	Alcohol dehydrogenase	0.00179821987898	0.0011505845657	-0.00064763531328
+UniRef50_R4K4U3	Acetyltransferase	0.000214075229968	0.0041299634809	0.00391588825093
+UniRef50_R5SMM9	Ribose 5 phosphate isomerase B	0.000292624797564	0.00269832289913	0.00240569810157
+UniRef50_P07767	Staphylocoagulase	0.000891101614873	0.000279670721547	-0.000611430893326
+UniRef50_I2DEZ6		0.000309414744966	0.010244307799	0.00993489305403
+UniRef50_Q08YM3		8.06019904975e-05	0.000141484359108	6.08823686105e-05
+UniRef50_P23686	S adenosylmethionine synthase 1	2.68634781478e-05	0.000143100081182	0.000116236603034
+UniRef50_Q2FUW5	Accessory Sec system protein Asp3	0.0180184349975	0.00118715602158	-0.0168312789759
+UniRef50_R9SJT9	GTP binding protein	0.0038798835156	0.000262503737955	-0.00361737977765
+UniRef50_D4HAU1	Protoporphyrinogen oxidase	0.000120859975083	0.00581960564746	0.00569874567238
+UniRef50_UPI00045FEC12	BACTERIOPHYTOCHROME	9.19910082896e-05	0.000136254213057	4.42632047674e-05
+UniRef50_L7U2C9	Acetyltransferase	0.00079031779135	0.00629367813348	0.00550336034213
+UniRef50_E2ZQ75	Transcriptional regulator MvfR	0.000471070856723	0.00031754484429	-0.000153526012433
+UniRef50_F6CTL5		6.8079414737e-05	4.38958042668e-05	-2.41836104702e-05
+UniRef50_UPI00037028AC	hypothetical protein	1.41825565881e-06	2.05269676918e-06	6.3444111037e-07
+UniRef50_A3IGB3		0.000106128809742	0.000130786162504	2.4657352762e-05
+UniRef50_W0BIN9	Type F conjugative transfer system protein TraU	7.72731483335e-05	6.17944928903e-06	-7.10936990445e-05
+UniRef50_I3U834	Class I fumarate hydratase	0.0124444202278	0.00253967620413	-0.00990474402367
+UniRef50_B0T5G6		7.13552987952e-05	2.18760238842e-05	-4.9479274911e-05
+UniRef50_A3RI32	InlD	8.96351454047e-06	0.00186182077585	0.00185285726131
+UniRef50_C8VZF1		0.000165648127513	0.00110664458971	0.000940996462197
+UniRef50_S6GJT1	Transposase IS4 family protein	8.00135581017e-05	2.26016569499e-05	-5.74119011518e-05
+UniRef50_A1VL02		3.79569549192e-06	1.37483009212e-05	9.95260542928e-06
+UniRef50_A3PSC3	Exopolysaccharide synthesis, ExoD	0.0179426048629	0.000307088428274	-0.0176355164346
+UniRef50_R9YTG8	2 dehydropantoate 2 reductase	0.0120323072358	0.0025850160321	-0.0094472912037
+UniRef50_A0A017HHJ1	GTA NlpC P60 family peptidase	2.17264650816e-06	1.60954727843e-05	1.39228262761e-05
+UniRef50_P0CN05	Sulfate adenylyltransferase	8.66673763086e-05	4.8258784417e-05	-3.84085918916e-05
+UniRef50_H3XP79	Polysaccharide lyase family 8, N terminal alpha helical domain protein	0.00148021225853	0.000147904860699	-0.00133230739783
+UniRef50_UPI000364E3EA	hypothetical protein	3.13583077314e-06	5.34240374384e-05	5.02882066653e-05
+UniRef50_A4WQ10		0.00957533188303	0.00482204096459	-0.00475329091844
+UniRef50_J9CA10	Heat shock protein 70 	9.34312941969e-05	2.73159324097e-05	-6.61153617872e-05
+UniRef50_UPI000360AA50	hypothetical protein	0.00042500984386	0.000129809540745	-0.000295200303115
+UniRef50_UPI00036E022C	hypothetical protein	4.40548697361e-06	1.61974918006e-05	1.1792004827e-05
+UniRef50_F0MD69	DNA polymerase III, subunits gamma and tau	6.85507243663e-05	0.00200319236008	0.00193464163571
+UniRef50_B1MWT1	ABC type dipeptide oligopeptide nickel transport system, permease component	0.00498890056194	0.00176785652579	-0.00322104403615
+UniRef50_A3PM79	Serine type D Ala D Ala carboxypeptidase	0.00243249388246	0.00126905425843	-0.00116343962403
+UniRef50_UPI00045E67CF	glycine cleavage system protein T	2.88806059134e-05	7.08638166951e-05	4.19832107817e-05
+UniRef50_P77395		0.00275595423458	0.000674553615773	-0.00208140061881
+UniRef50_P77396		0.00518909163125	0.000209692335056	-0.00497939929619
+UniRef50_Q9AAI4	Nitrate transporter, NarK NasA family	0.000187961899644	0.000149653735742	-3.8308163902e-05
+UniRef50_P77393		0.00303542744177	0.000454333392607	-0.00258109404916
+UniRef50_UPI0003B386AE	riboflavin biosynthesis protein RibD	3.95619473929e-06	2.17629826385e-05	1.78067878992e-05
+UniRef50_UPI00046F45E9	acetolactate synthase, partial	1.26145973697e-05	1.29499774205e-05	3.353800508e-07
+UniRef50_E0RYK6		0.000477064205795	0.000366095089089	-0.000110969116706
+UniRef50_Q1D2V0		0.000229270690754	6.96554779793e-05	-0.000159615212775
+UniRef50_A6LYQ9	MgtE intracellular region	0.000778783445918	0.00182375975708	0.00104497631116
+UniRef50_Q9ZJ66	Protein translocase subunit SecD	7.19477742357e-05	0.00430349867376	0.00423155089952
+UniRef50_Q9RY56		0.0012868840529	0.0856974139648	0.0844105299119
+UniRef50_F0Y593	Expressed protein 	6.79746678562e-05	0.000203621740952	0.000135647073096
+UniRef50_UPI00016C4E10	L lactate transport	6.40087889592e-06	2.37563049446e-05	1.73554260487e-05
+UniRef50_F7XJ23	Probabable oxidoreductase	0.00152973631894	0.000163610362995	-0.00136612595594
+UniRef50_A5UJA6	FO synthase subunit 2	0.0043849179996	0.000669869052369	-0.00371504894723
+UniRef50_G7M8E1	Methyl accepting chemotaxis sensory transducer	0.000315646709896	0.0010186938379	0.000703047128004
+UniRef50_A7HAH7		0.00122974048291	2.67046014032e-05	-0.00120303588151
+UniRef50_UPI0003C10094	PREDICTED	0.000148208300138	0.000272552474527	0.000124344174389
+UniRef50_X0W6C2	Marine sediment metagenome DNA, contig	1.40198881287e-05	2.29401031479e-05	8.9202150192e-06
+UniRef50_F0L9R1		0.00274742857058	0.000246782762008	-0.00250064580857
+UniRef50_Q3IVS2	DNA RNA helicase, superfamily I	0.0145698263695	0.00561308000246	-0.00895674636704
+UniRef50_L0GGN0	Sortase like acyltransferase	0.00289346571643	0.00218304703237	-0.00071041868406
+UniRef50_K0F249		0.00129513709669	0.000410730566622	-0.000884406530068
+UniRef50_G7M575	Glycosyl transferase family 2	0.000219044094112	0.00125029145194	0.00103124735783
+UniRef50_B5GAK8		0.000105658346524	5.86305601958e-06	-9.97952905044e-05
+UniRef50_P42630	L serine dehydratase TdcG	0.00247132578896	0.00207823377355	-0.00039309201541
+UniRef50_B8CN82	Membrane protein, putative	0.00021151823521	0.00475515729874	0.00454363906353
+UniRef50_UPI00037851B2	Cro Cl family transcriptional regulator	0.000223169118924	2.32010012462e-05	-0.000199968117678
+UniRef50_A0A009R342	SIR2 like domain protein	0.000174934374443	0.00447790858427	0.00430297420983
+UniRef50_B9IYZ4	Holliday junction ATP dependent DNA helicase RuvB	2.26009559294e-05	1.69288290383e-05	-5.6721268911e-06
+UniRef50_K0DBQ7	N acetylmuramidase	9.04519142585e-05	9.87614594499e-05	8.3095451914e-06
+UniRef50_F0YLQ9	Expressed protein 	7.70467574157e-05	0.000117269817374	4.02230599583e-05
+UniRef50_R6W776		4.1083078976e-06	1.4152027308e-05	1.00437194104e-05
+UniRef50_Q9Z507	UvrABC system protein A	0.00240516396843	0.00350956576135	0.00110440179292
+UniRef50_Q6Q6S9	Transposase	0.00328366531921	0.00112814533443	-0.00215551998478
+UniRef50_A3PMA4		0.00301625501939	0.000575142650046	-0.00244111236934
+UniRef50_UPI00047EB0D1	hypothetical protein	1.53697446174e-05	2.11723949313e-05	5.8026503139e-06
+UniRef50_UPI00046FEBC7	hypothetical protein, partial	0.000211218215929	3.13933268058e-05	-0.000179824889123
+UniRef50_A0CK68	Chromosome undetermined scaffold_2, whole genome shotgun sequence	5.06454839465e-06	4.77845779698e-06	-2.8609059767e-07
+UniRef50_P0ABG8	Rod shape determining protein RodA	0.00204996373829	0.000390389599975	-0.00165957413832
+UniRef50_P45302	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.67241204059e-05	0.000105627474753	8.89033543471e-05
+UniRef50_E8ZM45	Glycosyl transferase	0.00021502495634	0.000651366546483	0.000436341590143
+UniRef50_A7FBG3		0.000220752040266	0.00518396144049	0.00496320940022
+UniRef50_UPI00036C2B1F	hypothetical protein	1.89413571635e-05	7.995280597e-06	-1.09460765665e-05
+UniRef50_A5CER5	UDP N acetylglucosamine 1 carboxyvinyltransferase	4.26516018867e-06	2.81389213817e-05	2.3873761193e-05
+UniRef50_A7FBG6		0.000283824051773	0.0165990338495	0.0163152097977
+UniRef50_W5X953		7.5461739983e-06	2.20288306643e-05	1.4482656666e-05
+UniRef50_P64591	Inner membrane protein YhaH	0.000309414744966	0.000509166733097	0.000199751988131
+UniRef50_UPI000362EFC5	hypothetical protein	0.00045758375803	0.000129576420532	-0.000328007337498
+UniRef50_P65337	4 alpha glucanotransferase	0.000464388236668	0.0032671639809	0.00280277574423
+UniRef50_P57495	2 C methyl D erythritol 4 phosphate cytidylyltransferase	4.75384970703e-06	9.78780420531e-06	5.03395449828e-06
+UniRef50_A3QD67	Putative phosphoenolpyruvate synthase regulatory protein	4.8070327858e-05	4.1351098822e-05	-6.719229036e-06
+UniRef50_UPI0003825FE8	hypothetical protein	5.67729384766e-06	1.31512163646e-05	7.47392251694e-06
+UniRef50_UPI00042AFCA9	3 deoxy d arabino heptulosonate 7 phosphate synthase isoform 2	8.93999551072e-05	7.270313004e-06	-8.21296421032e-05
+UniRef50_B9QHN7	Fop carboxy terminal duplication domain protein	1.24604536009e-05	1.39347806097e-05	1.4743270088e-06
+UniRef50_F2K6Q0		0.00034883931899	0.000310219687605	-3.8619631385e-05
+UniRef50_A5UJV7	Predicted ATPase 	0.00138651162624	0.000555154535075	-0.000831357091165
+UniRef50_UPI0004638AC0	pseudouridylate synthase	3.79522823976e-06	1.59041197854e-05	1.21088915456e-05
+UniRef50_U3SSX9		0.00109920758824	0.00131074944342	0.00021154185518
+UniRef50_B6JNM2		0.000145373294809	0.00143427378236	0.00128890048755
+UniRef50_UPI0003B66BEF	hypothetical protein	2.80925328084e-06	7.10154014485e-06	4.29228686401e-06
+UniRef50_UPI00016A3D53	hypothetical protein	2.05957893886e-05	0.00011257307694	9.19772875514e-05
+UniRef50_L7ZK34		4.21954090877e-06	4.65013189178e-06	4.3059098301e-07
+UniRef50_UPI00016C4097	N acetylglucosamine 6 phosphate deacetylase	3.90915292231e-06	4.34025037695e-05	3.94933508472e-05
+UniRef50_W7WGN1	Conjugal transfer pilus assembly protein TraU	4.34282615706e-05	2.09811551215e-05	-2.24471064491e-05
+UniRef50_X1K791	Marine sediment metagenome DNA, contig	6.95458895387e-05	4.07912186597e-05	-2.8754670879e-05
+UniRef50_F5M3F1		0.0140979278469	0.00176340253976	-0.0123345253071
+UniRef50_Q28TC8	Poly hydroxyalkanoic acid synthase class I	0.0128254359661	0.0025555499169	-0.0102698860492
+UniRef50_K4RP34		2.42331580952e-05	3.99913894867e-05	1.57582313915e-05
+UniRef50_K0CEM4		1.78619122722e-05	2.99332135945e-05	1.20713013223e-05
+UniRef50_G3JJ51		0.00036464516813	0.000124316695035	-0.000240328473095
+UniRef50_B0VMS2	Glucose 6 phosphate isomerase	0.000140315632812	0.00541471397371	0.0052743983409
+UniRef50_M7N0E8		1.07805409696e-05	0.000175789264417	0.000165008723447
+UniRef50_A1AHM5	Protein CbrA	0.00270850118131	0.00103644776956	-0.00167205341175
+UniRef50_U5US29	Sugar binding domain containing protein	0.0238283979351	0.00430065906079	-0.0195277388743
+UniRef50_F9Y8V6	Sugar ABC transporter, permease protein	0.00499629151528	0.000561743921953	-0.00443454759333
+UniRef50_K4SRD4	Dipeptide transport system permease protein DppB 	0.00129624045077	0.00057177546971	-0.00072446498106
+UniRef50_Q9CGD4	Spermidine putrescine import ATP binding protein PotA	0.0220717240045	0.0117986208112	-0.0102731031933
+UniRef50_R7NLL0	DNA gyrase subunit A	0.000670232166133	0.00173053561961	0.00106030345348
+UniRef50_UPI00047067CD	glucosamine 6 phosphate deaminase, partial	8.22353266728e-06	3.18872935021e-05	2.36637608348e-05
+UniRef50_V7CWH6		3.02727971801e-05	0.00109113158883	0.00106085879165
+UniRef50_UPI0003B4DB15	cytidylate kinase, partial	3.79102273253e-06	2.15961074492e-05	1.78050847167e-05
+UniRef50_UPI0003671825	hypothetical protein	2.71097325595e-06	1.19476356439e-05	9.23666238795e-06
+UniRef50_B2TRK3		0.000327307629567	0.00128035550184	0.000953047872273
+UniRef50_Q9PJJ6	Uracil phosphoribosyltransferase	4.28211371521e-05	8.4011087215e-05	4.11899500629e-05
+UniRef50_Q9KPM0	Purine nucleoside phosphorylase DeoD type 1	4.48666169995e-05	0.000199162292457	0.000154295675458
+UniRef50_Q9T074	Phosphoenolpyruvate carboxykinase [ATP]	2.27931273648e-05	0.000100344595358	7.75514679932e-05
+UniRef50_D7FYR4		4.48323268177e-06	2.03353743523e-05	1.58521416705e-05
+UniRef50_N0AZY0	O succinylhomoserine sulfhydrylase	0.00675324090328	0.00119881111659	-0.00555442978669
+UniRef50_U3SUT1		0.00109731845795	0.000475040276462	-0.000622278181488
+UniRef50_Q5WLC5	DNA topology modulation protein	7.81215853437e-06	5.113833143e-05	4.33261728956e-05
+UniRef50_B8H4F1	30S ribosomal protein S5	0.000450396837036	0.00302886435331	0.00257846751627
+UniRef50_G7MCN9	Multi copper polyphenol oxidoreductase, laccase	0.000684347708219	0.00417265236202	0.0034883046538
+UniRef50_Q4L5J1	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0219691222633	0.00404841343878	-0.0179207088245
+UniRef50_H2A5L6	Methionine aminopeptidase	0.00767421224142	0.00563499588463	-0.00203921635679
+UniRef50_B2J1L7	GTP cyclohydrolase 1	4.8682242234e-05	7.07227873637e-05	2.20405451297e-05
+UniRef50_A3XAI3	YjeF family protein	0.000140951311241	0.000142949085815	1.997774574e-06
+UniRef50_B7H075	PAP2 superfamily protein	0.000249990721098	0.00695879246941	0.00670880174831
+UniRef50_Q2FHE2	DNA mismatch repair protein MutL	0.00952032784163	0.00216783625253	-0.0073524915891
+UniRef50_UPI000464DC75	single stranded DNA binding protein	3.14535636632e-05	1.98411718515e-05	-1.16123918117e-05
+UniRef50_Q3JR54	TGS domain protein	0.00010987338872	5.89633641674e-05	-5.09100245526e-05
+UniRef50_UPI0003AE8A89	PREDICTED	3.2236419172e-05	5.22552828144e-05	2.00188636424e-05
+UniRef50_Q0E488	Os02g0130900 protein 	2.47839761942e-05	0.000115159096259	9.03751200648e-05
+UniRef50_A6QIU2		0.0133631829497	0.00660254714741	-0.00676063580229
+UniRef50_Q81LI6	Histidine  tRNA ligase 2	6.05683659156e-06	0.000157923371754	0.000151866535162
+UniRef50_W8S4A4	Protein YicC	0.000136770285816	0.000306027673785	0.000169257387969
+UniRef50_V5SV57		0.000514559926055	0.000233302174728	-0.000281257751327
+UniRef50_Q8LJZ2		7.40195490323e-05	4.54619261406e-06	-6.94733564182e-05
+UniRef50_S9U807	Cysteine peptidase, Clan CA, family C2	3.81383318105e-05	0.000113510584958	7.53722531475e-05
+UniRef50_B9KLW3	Methyltransferase type 11	0.000181193274649	0.00033432079833	0.000153127523681
+UniRef50_Q8CR86		0.0130258184829	0.00416449475046	-0.00886132373244
+UniRef50_Q99TF2	Acetate kinase	0.0110429406593	0.00252228914876	-0.00852065151054
+UniRef50_C9X377	Transferrin binding protein like lipoprotein 	0.000235770934863	0.00332350705495	0.00308773612009
+UniRef50_I8D2T2		3.91736585175e-05	3.48437649235e-05	-4.329893594e-06
+UniRef50_H4F9I1		0.00020409186668	0.00028441761388	8.03257472e-05
+UniRef50_D3QE86		0.0149390681443	0.00380037664747	-0.0111386914968
+UniRef50_M0P490		8.47914995835e-06	3.91037367168e-05	3.06245867584e-05
+UniRef50_Q4L8R9	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0371536610459	0.00463115467488	-0.032522506371
+UniRef50_UPI00037720B7	hypothetical protein	4.27844974146e-06	5.11636622322e-06	8.3791648176e-07
+UniRef50_R2QE79		6.07454758073e-05	2.14500213981e-05	-3.92954544092e-05
+UniRef50_Q3J608		0.00241180997245	0.00113249892452	-0.00127931104793
+UniRef50_Q2FF48	Potassium transporting ATPase A chain	0.0121757605997	0.00308036059727	-0.00909540000243
+UniRef50_G8VKL1	Aminopeptidase	0.000228443951264	0.00501687071736	0.0047884267661
+UniRef50_T3IE94	Lantibiotic protection ABC transporter, ATP binding subunit	0.00491760168657	0.00459536472765	-0.00032223695892
+UniRef50_UPI0003C1083C		1.15636922085e-05	7.81096278804e-05	6.65459356719e-05
+UniRef50_UPI0004777ACC	cytochrome C oxidase assembly protein	1.24873401575e-05	3.43151508444e-05	2.18278106869e-05
+UniRef50_R5XYA5		1.88780176796e-05	0.000422464464533	0.000403586446853
+UniRef50_D9SWT5	Peptidase S8 and S53 subtilisin kexin sedolisin	0.000784146366399	0.0028236090099	0.0020394626435
+UniRef50_UPI00028A379D	elongation factor Ts	1.02046940209e-05	7.60011162895e-05	6.57964222686e-05
+UniRef50_J9FJB0	Saccharopine dehydrogenase 	0.000231153987785	0.00306225818797	0.00283110420018
+UniRef50_U3K301		1.32199103878e-05	1.25374028727e-05	-6.825075151e-07
+UniRef50_I4EDU8		0.000156642173136	8.08576556341e-05	-7.57845175019e-05
+UniRef50_UPI0003B69687	TetR family transcriptional regulator	0.000209714438257	1.16432028074e-05	-0.00019807123545
+UniRef50_D0W128		2.25521382485e-05	0.000239127205183	0.000216575066934
+UniRef50_UPI0001A43259	putative phosphotransferase	6.89634486948e-05	0.000192792871721	0.000123829423026
+UniRef50_I6GVM8	Sulfite reductase [NADPH] flavoprotein, alpha component	0.0021950314548	0.00142451398855	-0.00077051746625
+UniRef50_UPI00037830BD	hypothetical protein	1.5906559715e-05	7.43200530196e-05	5.84134933046e-05
+UniRef50_R6E4P6	Serine type site specific recombinase	1.3712473388e-05	0.00129618864504	0.00128247617165
+UniRef50_UPI00035FAB77	hypothetical protein	2.31886157963e-05	1.55446743371e-05	-7.6439414592e-06
+UniRef50_UPI000465FD2A	serine hydroxymethyltransferase, partial	6.53710428049e-06	2.2336452372e-05	1.57993480915e-05
+UniRef50_A7HI44	LigA	0.000420840921965	0.000494900115158	7.4059193193e-05
+UniRef50_Q92BC5	Probable thiol peroxidase	0.0035057383495	0.0115952506138	0.0080895122643
+UniRef50_B8ISV4	Trans aconitate 2 methyltransferase	1.14950461625e-05	1.58143801086e-05	4.3193339461e-06
+UniRef50_B8CXG6	Probable transcriptional regulatory protein Hore_12350	0.000520188784642	0.00213255541097	0.00161236662633
+UniRef50_A5WCE7	ppGpp synthetase I, SpoT RelA	0.000282235933671	0.00852296119669	0.00824072526302
+UniRef50_P34439	Probable 3 hydroxyacyl CoA dehydrogenase F54C8.1	4.79699846193e-06	0.000203934005924	0.000199137007462
+UniRef50_Q7UA36	ATP dependent Clp protease proteolytic subunit 1	0.0151744662169	0.00662953992431	-0.00854492629259
+UniRef50_Q49X60	Riboflavin kinase FAD synthase	0.0195883003266	0.00626948808107	-0.0133188122455
+UniRef50_Q7N8K6	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	3.9274915163e-05	0.000319303263761	0.000280028348598
+UniRef50_Q8CUA2	Mobilization protein	0.0218652473694	0.00875040557276	-0.0131148417966
+UniRef50_P95468	Aromatic amino acid aminotransferase	0.00274196332831	0.000237520138222	-0.00250444319009
+UniRef50_C0R0E0	Polyribonucleotide nucleotidyltransferase	7.64798160711e-06	3.80371496121e-06	-3.8442666459e-06
+UniRef50_UPI0003A14A99	MULTISPECIES	7.09286965793e-06	7.1966078548e-06	1.0373819687e-07
+UniRef50_X4ZKX4	Short chain dehydrogenase family protein	2.82573100517e-05	0.000146495961606	0.000118238651554
+UniRef50_B9K138	Aliphatic sulfonates import ATP binding protein SsuB	0.000143167884525	0.00823110031938	0.00808793243486
+UniRef50_Q8E7Y8	Peptidyl tRNA hydrolase	0.00870714843981	0.00198346027255	-0.00672368816726
+UniRef50_UPI000255A87B	molybdopterin guanine dinucleotide biosynthesis protein A	7.28757194439e-06	8.76743166058e-06	1.47985971619e-06
+UniRef50_W5XDK2	PTS family mannose porter, IIC component	0.00491100226207	0.0087842133876	0.00387321112553
+UniRef50_A5ULS3	Phosphoglycolate phosphatase	0.0072767734872	0.000254583366547	-0.00702219012065
+UniRef50_L4FKH2		4.51634131801e-05	5.22527054792e-05	7.0892922991e-06
+UniRef50_K4RIH9	Transporter	8.55330790492e-05	0.00254250391956	0.00245697084051
+UniRef50_UPI000289E54D	type III effector Hrp dependent outer protein	5.08948921857e-06	8.36154763084e-06	3.27205841227e-06
+UniRef50_A4WVU5		1.84443091994e-05	5.18069187171e-06	-1.32636173277e-05
+UniRef50_Q8CPJ9	Bifunctional protein PyrR	0.0291188033147	0.0128620895508	-0.0162567137639
+UniRef50_D3SY39	Phosphate ABC transporter permease	0.00992980646005	0.00185358413255	-0.0080762223275
+UniRef50_M4S0Q6	Terminase	6.80381581268e-05	8.51773331828e-06	-5.95204248085e-05
+UniRef50_W7WA58		0.000363623768165	8.16008857599e-05	-0.000282022882405
+UniRef50_UPI0002F5E3FA	hypothetical protein	2.85276503042e-05	4.37596678433e-05	1.52320175391e-05
+UniRef50_F0Y592	Expressed protein 	9.64991544013e-05	1.60507949224e-05	-8.04483594789e-05
+UniRef50_P38376	Protein translocase subunit SecY	0.000131681158905	0.0135813830618	0.0134497019029
+UniRef50_G7IR91		0.00104465973016	0.00124818201005	0.00020352227989
+UniRef50_Z7M6T4	Metallopeptidase M24 family protein	0.000489060365118	0.00021415374756	-0.000274906617558
+UniRef50_UPI0003814739	hypothetical protein	2.49613338224e-05	1.81011256377e-05	-6.8602081847e-06
+UniRef50_UPI00047A93E4	spermidine putrescine ABC transporter ATP binding protein	3.24504463327e-05	1.49239317408e-05	-1.75265145919e-05
+UniRef50_P45595	Phosphoenolpyruvate protein phosphotransferase	0.00712261071457	0.00764606899859	0.00052345828402
+UniRef50_Y0ZY08		0.00112537936997	0.000932579069031	-0.000192800300939
+UniRef50_A5ULH9	Predicted ATP utilizing enzyme	0.00457451444521	0.000164674742667	-0.00440983970254
+UniRef50_UPI0003F0B3EF	PREDICTED	2.72129061617e-06	4.87548917991e-06	2.15419856374e-06
+UniRef50_O27269	5 formaminoimidazole 4 carboxamide 1  D ribofuranosyl 5 monophosphate synthetase	0.00277832014223	0.00198739273996	-0.00079092740227
+UniRef50_UPI00047132A1	nitrogen regulatory protein P II 1	0.00104688960934	0.000444827548547	-0.000602062060793
+UniRef50_M1ZE43		0.000206427806697	0.000142242103311	-6.4185703386e-05
+UniRef50_Q16CU0		0.000124497710774	2.24648628146e-05	-0.000102032847959
+UniRef50_S6T1V4	Dihydrolipoamide acetyltransferase	0.000269977075502	0.000159630651457	-0.000110346424045
+UniRef50_A3U124	Replication protein C	0.000144395785653	3.70473243083e-05	-0.000107348461345
+UniRef50_V4L8B5		2.02828865414e-05	2.39629190012e-05	3.6800324598e-06
+UniRef50_UPI00036FD615	hypothetical protein	0.000316046122464	3.26561663377e-05	-0.000283389956126
+UniRef50_B1HU19	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.0127415276859	0.00398495056213	-0.00875657712377
+UniRef50_K1XG94	FeS assembly protein SufB 	4.55686335477e-06	2.47627585042e-05	2.02058951494e-05
+UniRef50_UPI000255B9CD	GntR family transcriptional regulator	2.47366677286e-05	3.71815409845e-05	1.24448732559e-05
+UniRef50_UPI0004014E85	hypothetical protein	0.000113418449329	0.000136921144716	2.3502695387e-05
+UniRef50_UPI0003780E79	hypothetical protein	1.66172407105e-05	4.69825289602e-05	3.03652882497e-05
+UniRef50_R4YWZ2		0.000171751546086	0.000236883181481	6.5131635395e-05
+UniRef50_G4LKC9	Large exoprotein	0.000633462824039	0.000509882369332	-0.000123580454707
+UniRef50_Q45NQ1	Putative nitrate reductase beta chain 	4.33214401288e-05	5.23194922086e-05	8.9980520798e-06
+UniRef50_UPI0003B3B541	diguanylate cyclase	1.21098794376e-05	6.74555408015e-05	5.53456613639e-05
+UniRef50_Q9K068	Tyrosine recombinase XerD	0.000129276023577	0.00720445303334	0.00707517700976
+UniRef50_F8H7Y3	Group II intron encoding maturase	6.4897322048e-06	1.34226116253e-05	6.9328794205e-06
+UniRef50_UPI00028A2BD8	hypothetical protein	0.000132007371169	3.55946220344e-05	-9.64127491346e-05
+UniRef50_A1WTR8	Electron transport complex subunit D	0.00303474203949	0.000788979475443	-0.00224576256405
+UniRef50_Q9ZBH3	UPF0264 protein SCO6440	0.00504759804874	0.00155008753881	-0.00349751050993
+UniRef50_Q9ZA63		3.36284749287e-05	0.0013595067137	0.00132587823877
+UniRef50_F2SDC0	Phosphoenolpyruvate carboxykinase AcuF	3.797216768e-06	0.000128243407336	0.000124446190568
+UniRef50_UPI000467C040	glycine betaine ABC transporter ATP binding protein	1.46720750883e-05	8.17481255838e-06	-6.49726252992e-06
+UniRef50_B2U2H8	Aldehyde ferredoxin oxidoreductase	0.00176280371618	0.000708755990927	-0.00105404772525
+UniRef50_UPI0004232642	polynucleotide phosphorylase	6.4225493511e-06	7.04006434985e-06	6.1751499875e-07
+UniRef50_P68893	Transcription termination antitermination protein NusG	0.00253920995688	0.00416391836106	0.00162470840418
+UniRef50_W5X8W1	Short chain dehydrogenase reductase SDR	8.15588739702e-06	1.93069870244e-05	1.11510996274e-05
+UniRef50_F9DQX8	Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein	3.59962830256e-05	2.27894610807e-05	-1.32068219449e-05
+UniRef50_Q2IIV4	Histidine ammonia lyase	4.24788743016e-06	0.000135289036428	0.000131041148998
+UniRef50_Q03QA4	S adenosylmethionine synthase	5.37626076578e-05	0.000524094490389	0.000470331882731
+UniRef50_P54901	Stationary phase inducible protein CsiE	0.00306428870178	0.00129228986543	-0.00177199883635
+UniRef50_UPI0004785809	hypothetical protein	4.83857648517e-05	3.69019282176e-05	-1.14838366341e-05
+UniRef50_P39912	Protein AroA	0.0144967239422	0.00381752784746	-0.0106791960947
+UniRef50_Q8RBK3	Aspartate ammonia lyase	0.000204290380606	0.000710844217325	0.000506553836719
+UniRef50_Q9I1W4	Alpha 1,4 glucan	0.000547145854924	0.000114242439148	-0.000432903415776
+UniRef50_U3SW26	LysR family transcriptional regulator	0.00620858638015	0.0014462985252	-0.00476228785495
+UniRef50_G7TAD9	D mannonate dehydratase	0.00143693770769	0.000474521661606	-0.000962416046084
+UniRef50_Q60356		0.0029049157066	0.000754154399494	-0.00215076130711
+UniRef50_UPI00016A34C2	riboflavin biosynthesis protein RibD, partial	0.000232243632318	0.000259442957549	2.7199325231e-05
+UniRef50_W1IMF3		0.0001074532841	0.000875224785573	0.000767771501473
+UniRef50_C5E0T6	ZYRO0G15466p	0.000183245625651	0.00743816864834	0.00725492302269
+UniRef50_F8H0W5	Cbb3 type cytochrome c oxidase subunit I	0.00346178947111	0.00187543937931	-0.0015863500918
+UniRef50_P46340	Probable ABC transporter permease protein YqgI	0.00552910019028	0.00584788196858	0.0003187817783
+UniRef50_UPI00046FE6B9	hypothetical protein	4.04509623426e-06	2.93432378485e-06	-1.11077244941e-06
+UniRef50_E1SCP3	MFS citrate proton symporter	0.00175413040368	0.000781799345993	-0.000972331057687
+UniRef50_UPI0003B6BBA6	glyoxalase	2.84206316335e-05	2.20377643726e-05	-6.3828672609e-06
+UniRef50_UPI00046F677B	hypothetical protein	2.11381125353e-05	2.10479716719e-05	-9.01408634e-08
+UniRef50_N5H245		0.000370335015456	6.65102731009e-05	-0.000303824742355
+UniRef50_I4CUW0		8.8953698268e-05	3.87665396731e-05	-5.01871585949e-05
+UniRef50_Q1LT01	Hydroxyacylglutathione hydrolase	0.00234897712933	0.00101547804472	-0.00133349908461
+UniRef50_UPI0002B4BA19	PREDICTED	0.000110690678879	8.30296091562e-05	-2.76610697228e-05
+UniRef50_W8F1J2	3 hydroxybutyryl CoA dehydratase	4.97623487979e-05	1.98369673094e-05	-2.99253814885e-05
+UniRef50_UPI00034525BD	hypothetical protein	5.60482751131e-06	1.61557599886e-05	1.05509324773e-05
+UniRef50_R7M168	GTP binding protein typA	1.14037781701e-05	1.61070925693e-05	4.7033143992e-06
+UniRef50_Q0VTE1	Peptide deformylase	0.0056791860911	0.00146845102931	-0.00421073506179
+UniRef50_UPI000466577D	hypothetical protein	1.11773476842e-05	8.96983799811e-05	7.85210322969e-05
+UniRef50_A0A017HLF1	Protein YqgE	8.80489980847e-05	0.000169457001208	8.14080031233e-05
+UniRef50_UPI0003347753		1.80412313516e-06	8.43093480092e-06	6.62681166576e-06
+UniRef50_Y4VDJ3		0.000333446211516	0.000708991421239	0.000375545209723
+UniRef50_UPI0004754608	hypothetical protein	9.74406113729e-06	0.00133808077568	0.00132833671454
+UniRef50_UPI0003AD1A5F	hypothetical protein	2.83727876173e-06	3.7167996012e-05	3.43307172503e-05
+UniRef50_I7DR67		2.2499228057e-05	2.23680381238e-05	-1.311899332e-07
+UniRef50_Q9WXX0	Ribose import ATP binding protein RbsA 1	0.000101291479085	1.37256263215e-05	-8.75658527635e-05
+UniRef50_Q7DC27		0.0080889854754	0.00047889195437	-0.00761009352103
+UniRef50_Q2NFJ6	Putative methylthioribose 1 phosphate isomerase	0.00277044648956	0.0010492868014	-0.00172115968816
+UniRef50_Q8CQM9	Ribosomal protein serine N acetyltransferase	0.0116905914398	0.00209544252398	-0.00959514891582
+UniRef50_UPI0003342D90	PREDICTED	3.35661875776e-05	1.1019179839e-05	-2.25470077386e-05
+UniRef50_A0A023XMZ3	Type VI secretion protein, ImpJ SciO VasE family	4.03206692032e-06	5.31217191876e-06	1.28010499844e-06
+UniRef50_D4DRQ8		0.000182578240891	0.00106107841111	0.000878500170219
+UniRef50_UPI0004664E29	hypothetical protein	7.73089215029e-06	8.43013971386e-06	6.9924756357e-07
+UniRef50_P74741	Bifunctional purine biosynthesis protein PurH	0.00742689055338	0.00241182707523	-0.00501506347815
+UniRef50_P50199	Gluconate 5 dehydrogenase	0.0033244252075	0.00103736999352	-0.00228705521398
+UniRef50_Q5HPR6	Ribonuclease J 2	0.0216662235562	0.00699340715506	-0.0146728164011
+UniRef50_D3EHQ7	ABC transporter related protein	0.0116195812861	0.0053760478519	-0.0062435334342
+UniRef50_R8BTP6		1.32414545965e-05	1.84136781362e-05	5.1722235397e-06
+UniRef50_Q08YP5		1.9045133743e-05	2.42395671664e-06	-1.66211770264e-05
+UniRef50_A6TKS3		0.00047415615755	0.00134987031606	0.00087571415851
+UniRef50_P76187	Oxidoreductase YdhF	0.00266784689748	0.000617393448592	-0.00205045344889
+UniRef50_UPI0003B3589F	ATP synthase subunit B	7.19098695313e-05	6.11393355263e-05	-1.0770534005e-05
+UniRef50_Q9FJP9	Succinate dehydrogenase [ubiquinone] iron sulfur subunit 3, mitochondrial	1.75007358789e-05	6.82334783952e-06	-1.06773880394e-05
+UniRef50_UPI0003B6819C	MFS transporter	1.01837021571e-05	9.15367991719e-06	-1.03002223991e-06
+UniRef50_UPI0003B502A9	ABC transporter ATP binding protein	8.66050955711e-05	1.34359606786e-05	-7.31691348925e-05
+UniRef50_R5GI81		1.91121306131e-05	0.0007822918272	0.000763179696587
+UniRef50_E1V871		7.00176116206e-05	3.23688548768e-05	-3.76487567438e-05
+UniRef50_Q67M06		7.21949267093e-06	4.89916358143e-05	4.17721431434e-05
+UniRef50_UPI0003C19124		0.000127359719021	1.38622409633e-05	-0.000113497478058
+UniRef50_A3V0X2	Beta Ig H3 Fasciclin	0.000111007596165	1.83191625327e-05	-9.26884336323e-05
+UniRef50_Q49WG6	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.0207265992396	0.00501562261932	-0.0157109766203
+UniRef50_Q0TKF3	Copper transporting P type ATPase	0.00302902176289	0.000710560228815	-0.00231846153408
+UniRef50_UPI000288A457	ectoine utilization protein EutE, partial	0.00054584682315	0.000370784368688	-0.000175062454462
+UniRef50_UPI0003A4755B	histidine kinase	1.95451411935e-06	0.000102831524842	0.000100877010723
+UniRef50_G0DU47	Myo inositol catabolism IolH protein	0.000235438246685	0.00557785662113	0.00534241837444
+UniRef50_Q7UQD2	UPF0365 protein RB6389	0.0244102325396	0.0106647313511	-0.0137455011885
+UniRef50_B0KCX0	Phosphotransferase system, lactose cellobiose specific IIB subunit	0.000464122117436	0.00115810472625	0.000693982608814
+UniRef50_G7ZS06	AraC family regulatory protein	0.0116901478072	0.00241100721425	-0.00927914059295
+UniRef50_P21693	ATP dependent RNA helicase DbpA	0.00254536012456	0.000887208417441	-0.00165815170712
+UniRef50_C0LZW6	Cross beta structure silk protein 1	1.10728395821e-06	3.61218661687e-05	3.50145822105e-05
+UniRef50_UPI0003B32CE6	multidrug transporter, partial	1.36319114721e-06	1.19251442764e-05	1.05619531292e-05
+UniRef50_E6MC83		0.0127045230683	0.00242863417382	-0.0102758888945
+UniRef50_UPI000374A1F2	hypothetical protein	7.0842375956e-05	6.27748345763e-05	-8.0675413797e-06
+UniRef50_F0KHS2	ABC1 family protein	9.59710141129e-05	0.00823798252577	0.00814201151166
+UniRef50_P0DMC8	Transcriptional regulatory protein RcsB	0.00177381126783	0.00343606866512	0.00166225739729
+UniRef50_Q5HQ65		0.0024653728858	0.00074998165468	-0.00171539123112
+UniRef50_X3PZA5	AraC family transcriptional regulator 	2.219143939e-05	7.6096116791e-05	5.3904677401e-05
+UniRef50_UPI0004434B3D	PREDICTED	5.81045080113e-05	9.00361004973e-06	-4.91008979616e-05
+UniRef50_U1R336		0.00898107341212	0.00314301472057	-0.00583805869155
+UniRef50_B9T9L5		0.000189660178773	7.92655588017e-05	-0.000110394619971
+UniRef50_Q9RZ19		0.000100484291618	0.00637578905013	0.00627530475851
+UniRef50_D3E128		0.00346310587719	0.000695547251841	-0.00276755862535
+UniRef50_J9PBA5		3.12860344905e-05	0.000110880380242	7.95943457515e-05
+UniRef50_G8LLE6		6.33484268762e-05	3.30393696901e-05	-3.03090571861e-05
+UniRef50_C0QJ00	Phosphomethylpyrimidine synthase	0.00302753996169	0.00137123869806	-0.00165630126363
+UniRef50_Q7AX67		9.70093629878e-05	0.00400058025321	0.00390357089022
+UniRef50_K0M6S7		0.025064170427	0.00165716908155	-0.0234070013455
+UniRef50_Q3HKJ7	ABC di oligopeptide transporter, periplasmic ligand binding protein	0.016754813031	0.00217750049971	-0.0145773125313
+UniRef50_U5MW97	HD GYP domain protein	0.00035111570859	0.00196486258453	0.00161374687594
+UniRef50_B9KR36	Two component transcriptional regulator, LuxR family	0.0044670858139	0.000342065681693	-0.00412502013221
+UniRef50_UPI00005103EC	tetracycline resistance protein	9.64877768565e-05	9.68963457492e-05	4.085688927e-07
+UniRef50_K7EFD4		1.09181530603e-05	7.82500401119e-05	6.73318870516e-05
+UniRef50_Q9JVD1	N anthranilate isomerase	1.03929423388e-05	0.00118273631672	0.00117234337438
+UniRef50_M9VF28	Cobalt precorrin 6x reductase	0.000806121274595	0.00859560470018	0.00778948342559
+UniRef50_H3VSI0	GA module	0.00967442385753	0.00182059788498	-0.00785382597255
+UniRef50_S4X8J4	IS1272 transposase	0.000829227583357	0.00227166696304	0.00144243937968
+UniRef50_G2JKN3		0.000451178472729	0.00176197361923	0.0013107951465
+UniRef50_P25534	2 octaprenyl 6 methoxyphenol hydroxylase	0.00350731782037	0.00164490386176	-0.00186241395861
+UniRef50_P77585	Aminopeptidase YpdE	0.00256261189357	0.0026804732928	0.00011786139923
+UniRef50_Q5FA21	Imidazole glycerol phosphate synthase subunit HisH	0.000191546712075	0.00182891408959	0.00163736737751
+UniRef50_UPI00029AB9CD	hypothetical protein	3.89249301608e-07	4.2446591201e-06	3.85540981849e-06
+UniRef50_U5LBL2	MFS transporter	2.32773817474e-05	0.00132462531955	0.0013013479378
+UniRef50_B5F2L4	Elongation factor P	0.00282536402785	0.00102737363235	-0.0017979903955
+UniRef50_S3BX82		4.69509936411e-05	0.000110192800452	6.32418068109e-05
+UniRef50_Q9KUY6	Alanine racemase 1	0.00338572327071	0.000523716562709	-0.002862006708
+UniRef50_A6M043	Transcriptional regulator, TetR family	0.000196949211577	0.000298299702217	0.00010135049064
+UniRef50_I6SUR3	Glucan binding protein D	0.00446754818519	0.00129649246414	-0.00317105572105
+UniRef50_A0A010QNG4	DnaJ domain protein	0.000114221874883	8.6486749079e-05	-2.7735125804e-05
+UniRef50_D6X5L6	Predicted protein	0.000179339606614	1.25392137016e-05	-0.000166800392912
+UniRef50_A4WVP5	Ribonuclease 3	0.000616646087665	0.000545728217174	-7.0917870491e-05
+UniRef50_UPI00045416B9	PREDICTED	3.2850053729e-05	3.37213561042e-05	8.713023752e-07
+UniRef50_UPI000380E1DF	hypothetical protein	1.88403687521e-05	2.15154016462e-05	2.6750328941e-06
+UniRef50_P50923	Fructose bisphosphate aldolase 2 	0.000211428874798	0.000315757315898	0.0001043284411
+UniRef50_Q4L800	Thymidine kinase	4.87080161507e-05	3.36217123202e-05	-1.50863038305e-05
+UniRef50_UPI00037BF977	MULTISPECIES	1.40931052054e-05	1.44150948679e-05	3.219896625e-07
+UniRef50_E1ZPF1		1.40696414917e-05	0.000124793257578	0.000110723616086
+UniRef50_D6ZZT0		0.000154802253334	3.63134704231e-05	-0.000118488782911
+UniRef50_UPI0003671796	hypothetical protein	0.000124184803828	8.45522069762e-05	-3.96325968518e-05
+UniRef50_P76237	Putative diguanylate cyclase YeaJ	0.00343423532584	0.001016608184	-0.00241762714184
+UniRef50_UPI00031C8415	hypothetical protein	3.2750058891e-05	1.81598822747e-06	-3.09340706635e-05
+UniRef50_UPI00036D4271	hypothetical protein	5.98224001006e-05	9.71176129956e-06	-5.0110638801e-05
+UniRef50_S5RLF1	MarR family transcriptional regulator	0.00109070545513	0.00246767410024	0.00137696864511
+UniRef50_E2Q1G7	Transcriptional regulator, LysR family	0.000568122725694	0.000592608772976	2.4486047282e-05
+UniRef50_P62421	Phosphoglycerate kinase	1.74719654898e-05	2.53114798946e-05	7.8395144048e-06
+UniRef50_Q46817	Guanine hypoxanthine permease GhxQ	0.00582714921277	0.00145283203827	-0.0043743171745
+UniRef50_P37292	Serine hydroxymethyltransferase, mitochondrial	7.70530386618e-06	2.24582444128e-05	1.47529405466e-05
+UniRef50_UPI0001BF6B4F	hypothetical protein SMAC_10997	7.57362920392e-05	0.0014715995772	0.00139586328516
+UniRef50_P0AAK2	Formate hydrogenlyase subunit 2	0.00179951463985	0.00607743906027	0.00427792442042
+UniRef50_Q96343	Myrosinase binding protein related protein 	5.96327785188e-06	0.000153895466939	0.000147932189087
+UniRef50_O83217	Elongation factor Tu	0.000918790977924	0.11576946479	0.114850673812
+UniRef50_UPI00046F7098	hypothetical protein	3.37421008915e-05	3.58360387631e-05	2.0939378716e-06
+UniRef50_UPI0003F07DB8	PREDICTED	3.2488642679e-06	8.1231689137e-06	4.8743046458e-06
+UniRef50_Q5HKG0	Conserved domain protein	0.0216113904356	0.00632706735449	-0.0152843230811
+UniRef50_P77625	Sugar phosphatase YfbT	0.00379654687476	0.00144078094161	-0.00235576593315
+UniRef50_A7ZRX6	Uronate isomerase	0.00349205351899	0.000961848082086	-0.0025302054369
+UniRef50_B9DZC4		0.00142395486747	0.00110980205093	-0.00031415281654
+UniRef50_UPI00044165DC	ribosomal protein L6	4.87485824258e-06	7.84735948814e-05	7.35987366388e-05
+UniRef50_Q9RSP5		0.000279619251005	0.0506729719604	0.0503933527094
+UniRef50_A3CNT6	ATP phosphoribosyltransferase regulatory subunit	0.00489396349765	0.00117500833881	-0.00371895515884
+UniRef50_Q9RSP7		0.000732859080189	0.0233764988878	0.0226436398076
+UniRef50_Q8CMY4	Probable malate	0.038808282829	0.0156758474657	-0.0231324353633
+UniRef50_UPI0001850D56	YvrB	1.53537226474e-05	0.000263618894315	0.000248265171668
+UniRef50_A6LGA2	Leucine  tRNA ligase	3.6709968534e-06	0.00479286587067	0.00478919487382
+UniRef50_Q0E079	Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic	9.04898211712e-06	4.16035026079e-05	3.25545204908e-05
+UniRef50_A5UMQ3		0.00248221534853	0.000209444471765	-0.00227277087676
+UniRef50_W8RY01		0.000307421441272	0.0001770810905	-0.000130340350772
+UniRef50_UPI00037FD000	hypothetical protein	1.91230581417e-06	0.000124549423481	0.000122637117667
+UniRef50_J7TAV9		0.000195926983831	0.00177420355993	0.0015782765761
+UniRef50_UPI000370BEF1	hypothetical protein	6.99891006209e-06	3.08541802505e-05	2.38552701884e-05
+UniRef50_UPI00047191F0	hypothetical protein, partial	0.000102372518171	7.59026178616e-05	-2.64699003094e-05
+UniRef50_A7I5Y0		0.00483912457585	0.000328929840496	-0.00451019473535
+UniRef50_T2A2T5		0.000636212340763	0.00149649568314	0.000860283342377
+UniRef50_UPI000372FA01	hypothetical protein, partial	3.91387592434e-05	0.000447010905452	0.000407872146209
+UniRef50_Q7NSL8		0.000200540943711	4.56137019227e-05	-0.000154927241788
+UniRef50_I6TSJ0		0.0087174462219	0.00125770715913	-0.00745973906277
+UniRef50_D6M601	Xanthine dehydrogenase, large subunit molybdenum cofactor binding domain containing protein	0.000361731678481	0.00119208049558	0.000830348817099
+UniRef50_U5MPL0	Protease YdeA	0.00405951299313	0.00100710898981	-0.00305240400332
+UniRef50_Q04L26	Xaa Pro dipeptidyl peptidase	0.000290027629119	0.00302703518969	0.00273700756057
+UniRef50_UPI000319F04C	hypothetical protein	9.66727109909e-06	1.61407180441e-05	6.47344694501e-06
+UniRef50_Q8XA27	Protein FixB	0.00400793294563	0.000379019994174	-0.00362891295146
+UniRef50_I0ES06	Methyl accepting chemotaxis protein	5.73686913185e-05	0.00455815540481	0.00450078671349
+UniRef50_UPI0002F687DE	hypothetical protein	8.88112558704e-05	2.65855498364e-05	-6.2225706034e-05
+UniRef50_G5PKT0	Formate transporter	4.79811294099e-05	0.000140735544572	9.27544151621e-05
+UniRef50_P22731	High affinity branched chain amino acid transport ATP binding protein LivF	0.00363357001503	0.0530235171263	0.0493899471113
+UniRef50_P0C0Q2	Glutamyl endopeptidase	0.00676333496186	0.00306930894782	-0.00369402601404
+UniRef50_UPI00047910E5	hypothetical protein	4.2493622664e-05	0.000114235298691	7.1741676027e-05
+UniRef50_A0PPL6	Riboflavin biosynthesis protein RibBA	1.19441321876e-05	9.16512766845e-06	-2.77900451915e-06
+UniRef50_Q3JPM4	3 octaprenyl 4 hydroxybenzoate carboxy lyase	7.63604668922e-06	6.44462028408e-05	5.68101561516e-05
+UniRef50_P09831	Glutamate synthase [NADPH] large chain	0.00205185280714	9.94704140617e-06	-0.00204190576573
+UniRef50_L0KED0	TRAP type C4 dicarboxylate transport system, small permease component	7.25597933415e-05	3.37848236568e-05	-3.87749696847e-05
+UniRef50_W3RDE1	Topology modulation protein	1.1504390628e-05	0.00043686615788	0.000425361767252
+UniRef50_UPI000371284B	hypothetical protein	3.85155743624e-05	0.000586845013447	0.000548329439085
+UniRef50_Q9KNX6	FKBP type peptidyl prolyl cis trans isomerase SlyD	0.00628316119511	0.00101286330318	-0.00527029789193
+UniRef50_UPI00037B0FBB	hypothetical protein	2.63798601725e-05	4.16603095343e-05	1.52804493618e-05
+UniRef50_G7U8F4		0.000319468064949	0.00578521362959	0.00546574556464
+UniRef50_UPI0002626037	large conductance mechanosensitive channel protein MscL	9.44066046179e-06	1.51802597009e-05	5.73959923911e-06
+UniRef50_UPI0003EF9C6D	hypothetical protein, partial	0.00031685493981	0.000201796071116	-0.000115058868694
+UniRef50_T1YDR0	Transcriptional regulator, MerR family protein	0.0112499855261	0.00307314930111	-0.00817683622499
+UniRef50_P69807	Mannose permease IID component	0.0039837282253	0.00492393232473	0.00094020409943
+UniRef50_P73860	KaiC like protein 1	0.00401608538091	0.00212751884619	-0.00188856653472
+UniRef50_A0A022GSW2	Sulfonate ABC transporter substrate binding protein	1.35811522259e-05	9.7415179896e-06	-3.8396342363e-06
+UniRef50_UPI000468B631	patatin	2.28857798777e-05	2.37782212419e-05	8.924413642e-07
+UniRef50_UPI0003C1000B	PREDICTED	1.63575980523e-05	6.55845274172e-06	-9.79914531058e-06
+UniRef50_F8FV37		0.00073239963812	0.000200214715383	-0.000532184922737
+UniRef50_U6PZV7	ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94	1.90527905971e-06	9.29972050125e-06	7.39444144154e-06
+UniRef50_V5T4P8	Fimbrial biogenesis outer membrane usher protein	9.73911569336e-05	0.000261700745498	0.000164309588564
+UniRef50_S2J745		8.21264177371e-06	6.20771604132e-06	-2.00492573239e-06
+UniRef50_P0AFR3	C4 dicarboxylic acid transporter DauA	0.00248270458825	0.000680639398058	-0.00180206519019
+UniRef50_UPI00047D2CC8	hypothetical protein	0.000123579790265	0.000186343702007	6.2763911742e-05
+UniRef50_E4U3H9		2.39984961348e-06	4.2968767187e-05	4.05689175735e-05
+UniRef50_S5ED07	Jag protein	0.00545480856881	0.001486558597	-0.00396824997181
+UniRef50_A6LS15	PHP C terminal domain protein	0.00028948879442	0.00149290968803	0.00120342089361
+UniRef50_A0A041VEI8		5.10838424916e-05	3.99641642221e-05	-1.11196782695e-05
+UniRef50_P9WHP0	Phosphate acetyltransferase	3.67559223194e-06	1.01420257019e-05	6.46643346996e-06
+UniRef50_Q98AP4	Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.00227445433735	0.00170073445714	-0.00057371988021
+UniRef50_Q5NQ45	50S ribosomal protein L15	0.00333051034397	0.000366853049924	-0.00296365729405
+UniRef50_UPI00047247B2	hypothetical protein	4.95291149235e-06	6.43111143543e-05	5.93582028619e-05
+UniRef50_UPI0003B31EFA	cold shock protein	1.72151775542e-05	2.67238492364e-05	9.5086716822e-06
+UniRef50_A0A037Y9B8	Transcription repair coupling factor	0.000807318361382	0.000161813835158	-0.000645504526224
+UniRef50_UPI0004707564	hypothetical protein	0.0001021091678	9.69575717417e-05	-5.1515960583e-06
+UniRef50_O24850		0.000280658727775	0.00425948412301	0.00397882539523
+UniRef50_W5X364	Binding protein dependent transport systems inner membrane component	5.65696246739e-06	7.06052269221e-06	1.40356022482e-06
+UniRef50_C8YZ36	WejK	0.0012597236144	0.000319707956312	-0.000940015658088
+UniRef50_Q981X2	D amino acid dehydrogenase 3 small subunit	0.000235687925627	0.0074347127147	0.00719902478907
+UniRef50_UPI0003A61917	hypothetical protein	1.3498145707e-05	5.33849852889e-06	-8.15964717811e-06
+UniRef50_P63206	Transcriptional regulator GadE	0.0030843316497	0.00135524173526	-0.00172908991444
+UniRef50_G7U9H2		0.000424198000405	0.00449412028707	0.00406992228666
+UniRef50_UPI00016C38BC	purine binding chemotaxis protein	2.13677875472e-05	6.68662127914e-05	4.54984252442e-05
+UniRef50_UPI000471A1E2	hypothetical protein	4.4915792254e-06	1.37603492935e-05	9.2687700681e-06
+UniRef50_L1Q181	Transcriptional regulator, PadR family	0.000121046833049	2.022596614e-05	-0.000100820866909
+UniRef50_P39766	Uracil permease	0.0248188749329	0.00413355643052	-0.0206853185024
+UniRef50_M4HU62	Degenerate transposase 	0.000144928409285	0.00123909107075	0.00109416266147
+UniRef50_UPI00046E9748	excinuclease ABC subunit C	3.08155630952e-06	6.52863412377e-06	3.44707781425e-06
+UniRef50_R7VY37		1.73980758575e-06	6.27593375723e-06	4.53612617148e-06
+UniRef50_B1YSV0	RNA pyrophosphohydrolase	8.16224121098e-06	0.000346751512944	0.000338589271733
+UniRef50_UPI0003665980	hypothetical protein	2.96904135255e-05	1.72706766645e-05	-1.2419736861e-05
+UniRef50_Q02W25	50S ribosomal protein L4	0.018965278998	0.0116631846706	-0.0073020943274
+UniRef50_A6LTI5	Pentapeptide repeat protein	0.00026123804592	0.00075707002913	0.00049583198321
+UniRef50_I3UGR0		5.23707044998e-06	3.82671195818e-06	-1.4103584918e-06
+UniRef50_B9CVK2		0.00374162679871	0.000241023242371	-0.00350060355634
+UniRef50_Q6B458	3 isopropylmalate dehydrogenase	3.42094115286e-05	3.28700295392e-05	-1.3393819894e-06
+UniRef50_B0TCA6	N acetyl gamma glutamyl phosphate reductase	1.44975802346e-05	1.1414441061e-05	-3.0831391736e-06
+UniRef50_A1SR02	Phosphopantetheine adenylyltransferase	1.00564096803e-05	2.74550178423e-05	1.7398608162e-05
+UniRef50_UPI0000EBCE17		0.000173223488792	0.000137319680817	-3.5903807975e-05
+UniRef50_Q4ZQC8	Response regulator receiver	0.000491097380771	0.000251945610402	-0.000239151770369
+UniRef50_B7I2N1	Protein YaaA	2.03653314859e-05	7.94927696569e-05	5.9127438171e-05
+UniRef50_B0TBM7	Light independent protochlorophyllide reductase subunit N	9.8496441775e-05	3.15801904828e-05	-6.69162512922e-05
+UniRef50_B7HCU0	Chaperone protein DnaK	0.0235189057069	0.0108706538395	-0.0126482518674
+UniRef50_UPI00035CF421	hypothetical protein	0.000129743356286	4.72193086969e-05	-8.25240475891e-05
+UniRef50_T2F9D3	Competence protein ComGB	1.2100300474e-05	0.00269757315558	0.00268547285511
+UniRef50_Q3J223	Putative phage major capsid protein, gp36	0.0178247308348	0.00401214769632	-0.0138125831385
+UniRef50_F0YS40		0.000233684193117	0.000525503796043	0.000291819602926
+UniRef50_F0LFC9	Spermidine putrescine ABC transporter inner membrane protein	0.00163687352949	0.000892356812781	-0.000744516716709
+UniRef50_A5UMP4	Cobalamin biosynthesis protein G, CbiG	0.00286231074676	0.000391619977445	-0.00247069076931
+UniRef50_W5X8L8	NifC like ABC type porter molybdate ABC transporter, permease protein	4.25740703717e-05	3.10839334636e-05	-1.14901369081e-05
+UniRef50_Q8CXJ8	Chloramphenicol resistance protein 	0.00977450808796	0.00304105728618	-0.00673345080178
+UniRef50_R7PU88	DNA helicase related protein	0.0036871480735	0.000436545389188	-0.00325060268431
+UniRef50_F8FUQ7	ApbE family lipoprotein	0.000770026640391	0.000327523148093	-0.000442503492298
+UniRef50_L0KF64	Cu responsive transcriptional regulator	0.00223962796545	0.0150229467589	0.0127833187935
+UniRef50_UPI0003B42D39	serine threonine phosphatase	9.32279511995e-06	1.24283668126e-05	3.10557169265e-06
+UniRef50_D7GDY6	Transporter	0.000131796108519	0.00409750496142	0.0039657088529
+UniRef50_P21112	Methyl coenzyme M reductase II subunit gamma	0.00225626521311	0.000473770115279	-0.00178249509783
+UniRef50_M1N2U9		0.000114159069206	0.00127470594847	0.00116054687926
+UniRef50_UPI00035E5F38	hypothetical protein	5.6248685973e-06	1.08653441697e-05	5.2404755724e-06
+UniRef50_B9DVZ2	Transcription antiterminator	0.00634927773585	0.00245800369442	-0.00389127404143
+UniRef50_P0A952	Spermidine N acetyltransferase	0.00345658209019	0.000346074263901	-0.00311050782629
+UniRef50_UPI000472AC52	spore coat protein	4.256339768e-06	6.30397223561e-06	2.04763246761e-06
+UniRef50_Q2CDQ9		0.000110629500544	0.000172220670765	6.1591170221e-05
+UniRef50_UPI0001F85CA4	biotin synthase like protein	2.23867605986e-05	0.000258641879789	0.00023625511919
+UniRef50_W6IE22	CreA protein	4.26844728381e-06	1.65191027138e-05	1.225065543e-05
+UniRef50_B7V9N9	Paraquat inducible protein A	0.000192922992602	0.000718420556123	0.000525497563521
+UniRef50_V6UC46		1.51742397239e-05	3.36289117989e-05	1.8454672075e-05
+UniRef50_Q2FD76	DMT family permease	0.000462868282251	0.00464583459179	0.00418296630954
+UniRef50_UPI000359EAD9	PREDICTED	1.15594344043e-05	0.000436324405871	0.000424764971467
+UniRef50_UPI0003627C1A	hypothetical protein	8.5870014387e-06	1.85488055868e-05	9.9618041481e-06
+UniRef50_G7I9Q9	ATP synthase subunit alpha	1.76660779241e-06	7.85285015334e-06	6.08624236093e-06
+UniRef50_C1CQV0	HAD superfamily subfamily IIA hydrolase	0.00431379423955	0.00473012759536	0.00041633335581
+UniRef50_W5XBH9	Protein kinase transcriptional regulator	4.66401047005e-05	6.81864771467e-06	-3.98214569858e-05
+UniRef50_E3A4M7		0.00137408347012	0.000477741842759	-0.000896341627361
+UniRef50_F4LPV2	Oligo 1,6 glucosidase	0.00030863655156	0.00145191779112	0.00114328123956
+UniRef50_Q9A1V9	50S ribosomal protein L6	0.00774107392977	0.00138438138682	-0.00635669254295
+UniRef50_Q1J3M1	Diguanylate cyclase with GAF sensor	1.25110416421e-05	0.00627203966506	0.00625952862342
+UniRef50_M1ZLS1		7.39725919232e-05	0.000684908528555	0.000610935936632
+UniRef50_Q4L8P5	PTS system sucrose specific IIBC component	0.00345156558358	0.00412351723323	0.00067195164965
+UniRef50_Q8CPS7	Transcription factor	0.0107864174889	0.00316675117994	-0.00761966630896
+UniRef50_UPI000308EC67	hypothetical protein	1.33953975691e-05	1.33162246622e-05	-7.91729069e-08
+UniRef50_D9RMZ4		0.00210883738145	0.000962989256073	-0.00114584812538
+UniRef50_UPI0003FCC1FE	hypothetical protein	7.82943915215e-06	9.76475245663e-06	1.93531330448e-06
+UniRef50_P05425	Copper exporting P type ATPase B	0.00528049996497	0.00163733544358	-0.00364316452139
+UniRef50_UPI0003F7499A	hypothetical protein	6.52848384058e-06	1.04256912122e-06	-5.48591471936e-06
+UniRef50_G4I6C2		1.02664530691e-06	3.37655566162e-05	3.27389113093e-05
+UniRef50_G8ATH1		2.65043528962e-05	1.74587905057e-05	-9.0455623905e-06
+UniRef50_L0M824		4.58774653671e-06	2.65571667765e-06	-1.93202985906e-06
+UniRef50_I4YHY8	DUF28 domain containing protein	5.67875563572e-06	2.54681105062e-05	1.97893548705e-05
+UniRef50_Q2IYS5	Phosphonates import ATP binding protein PhnC 1	9.4286980365e-06	1.99289242181e-05	1.05002261816e-05
+UniRef50_B5EPG1	PilT protein domain protein	0.00414276976552	0.00550799602651	0.00136522626099
+UniRef50_Q2YAA3	NADH quinone oxidoreductase subunit C D	0.0113402043212	0.00917382870069	-0.00216637562051
+UniRef50_Q8A1G1	TonB dependent receptor SusC	1.41220911466e-06	2.16178303966e-05	2.02056212819e-05
+UniRef50_B7V600		0.000987894514217	0.000371467553704	-0.000616426960513
+UniRef50_P75982		0.00176337947782	0.00170027341104	-6.310606678e-05
+UniRef50_UPI00035F8CE7	hypothetical protein	0.000173986584642	3.49730740916e-05	-0.00013901351055
+UniRef50_W0ILL7	Membrane protein	0.00975661458426	0.00319177774856	-0.0065648368357
+UniRef50_UPI0004650B13	hypothetical protein	2.91089309336e-06	1.3018886904e-05	1.01079938106e-05
+UniRef50_Q9ZJ96	Chromosomal replication initiator protein DnaA	9.548549465e-05	0.00222032851903	0.00212484302438
+UniRef50_B0VE30	Acetoacetyl CoA transferase, beta subunit	0.000957083569726	0.0113687619983	0.0104116784286
+UniRef50_Q8CPK2	Cell divisio initiation protein	0.0201319674034	0.00505664470798	-0.0150753226954
+UniRef50_UPI0002257056	PREDICTED	3.19801260639e-05	0.000510333018914	0.00047835289285
+UniRef50_F0RPV6	NLPA lipoprotein	0.000750138624118	0.0572126970414	0.0564625584173
+UniRef50_P42269	5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase	1.72413502659e-05	1.48641259263e-05	-2.3772243396e-06
+UniRef50_Q8KFL5	Isoleucine  tRNA ligase	1.41909781117e-06	2.12184831195e-06	7.0275050078e-07
+UniRef50_H1Y7F7	NAD dependent protein deacylase	0.000336047597323	0.00777923751283	0.00744318991551
+UniRef50_M9VFI4		0.00013183445478	0.00298585805511	0.00285402360033
+UniRef50_UPI00022CAAEE	PREDICTED	1.79824495354e-06	2.35061390333e-06	5.5236894979e-07
+UniRef50_UPI0003613834	hypothetical protein	0.000173950425021	0.000181067113069	7.116688048e-06
+UniRef50_Q5HKX5	Conserved domain protein	0.0050910459403	0.00559862653529	0.00050758059499
+UniRef50_D6K6B4	Membrane protein	0.000180597205172	0.000482200774443	0.000301603569271
+UniRef50_Q46888		0.00388241312794	0.00209705797622	-0.00178535515172
+UniRef50_UPI00037BC975	hypothetical protein	6.3947995105e-06	1.702219459e-05	1.06273950795e-05
+UniRef50_P67097	Phosphodiesterase YfcE	0.0020277725865	0.000336223952777	-0.00169154863372
+UniRef50_Q01464	Septum site determining protein MinD	0.000417676669498	0.0328186939356	0.0324010172661
+UniRef50_Q7NV70		2.04700640185e-05	3.827502394e-05	1.78049599215e-05
+UniRef50_E3DHU2	Copper homeostasis protein CutC	0.00179262147948	0.0014011612397	-0.00039146023978
+UniRef50_W9A1R1		4.8992425257e-05	0.000668714084441	0.000619721659184
+UniRef50_V5XRZ5	Iron sulfur  cluster formation protein IscU	0.00222277638252	0.00316565061885	0.00094287423633
+UniRef50_Q88AZ5	33 kDa chaperonin	0.000624942113372	0.000198421078525	-0.000426521034847
+UniRef50_Q038S0	Histidine  tRNA ligase	0.00769056039925	0.00781927531165	0.0001287149124
+UniRef50_I7ECV7	Peptidoglycan binding like protein	0.00863556432081	0.00174931666715	-0.00688624765366
+UniRef50_O82357	3 methyl 2 oxobutanoate hydroxymethyltransferase 1, mitochondrial	9.72161221918e-06	7.9729716289e-06	-1.74864059028e-06
+UniRef50_A6M083		0.000698474112219	0.00144301891136	0.000744544799141
+UniRef50_Q9RUA4	Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase	6.47488831609e-05	0.0299037189407	0.0298389700575
+UniRef50_Q1R133	Binding protein dependent transport systems inner membrane component	0.0087607889705	0.00370258506363	-0.00505820390687
+UniRef50_UPI00036278A6	hypothetical protein	2.62376669271e-05	7.26632620899e-05	4.64255951628e-05
+UniRef50_Q46897	CRISPR system Cascade subunit CasE	0.000617034080573	0.000651433908512	3.4399827939e-05
+UniRef50_Q5HK76	Type 1 restriction enzyme R protein	0.0136900575712	0.00266824228147	-0.0110218152897
+UniRef50_B8ETJ4	Exodeoxyribonuclease III Xth	0.00471640929746	0.00112539609278	-0.00359101320468
+UniRef50_Q2G1E0		0.0222947432011	0.00628311318205	-0.0160116300191
+UniRef50_UPI00037146D6	hypothetical protein	1.18453923054e-05	0.000173148644897	0.000161303252592
+UniRef50_C3BKF8	Glucose 6 phosphate 1 dehydrogenase	0.00969858678207	0.00466866331903	-0.00502992346304
+UniRef50_UPI0003770934	hypothetical protein, partial	2.1729149811e-05	5.39791895155e-05	3.22500397045e-05
+UniRef50_P25894	Metalloprotease LoiP	0.00493017241239	0.000469380838447	-0.00446079157394
+UniRef50_D5WIJ5		0.00383572031393	0.0019881862466	-0.00184753406733
+UniRef50_Q2FG30		0.0168787941101	0.00497717591496	-0.0119016181951
+UniRef50_UPI0003486BCB	hypothetical protein	2.87771395707e-05	1.08168123539e-05	-1.79603272168e-05
+UniRef50_A0A058ZKQ4		0.000121523931441	8.89771026182e-05	-3.25468288228e-05
+UniRef50_Q8ZGW9	ATP dependent dethiobiotin synthetase BioD 1	0.0030759846226	0.000530567313021	-0.00254541730958
+UniRef50_Q4T799	Chromosome undetermined SCAF8206, whole genome shotgun sequence. 	8.06559542486e-06	6.78036336496e-06	-1.2852320599e-06
+UniRef50_UPI000471EE06	cobyrinic acid a c diamide adenosyltransferase, partial	1.49181877615e-05	2.27416587031e-05	7.8234709416e-06
+UniRef50_A1B4D6	Glutathione S transferase, N terminal domain	0.00800627668805	0.00423926028254	-0.00376701640551
+UniRef50_Q08XU8	Cupin domain protein	0.000141852398023	9.24841724393e-05	-4.93682255837e-05
+UniRef50_UPI000363B7A3	hypothetical protein	5.80431917768e-06	4.25010454162e-06	-1.55421463606e-06
+UniRef50_UPI0003C11C7F	PREDICTED	6.12215409447e-06	7.49450367301e-06	1.37234957854e-06
+UniRef50_Q731B9	Arginine repressor	0.0218166278284	0.0126797083368	-0.0091369194916
+UniRef50_G8AXA5		2.91621116805e-05	7.4922148386e-06	-2.16698968419e-05
+UniRef50_Q83HH5	Tyrosine  tRNA ligase	4.76171256653e-06	7.42471970714e-05	6.94854845049e-05
+UniRef50_Q0AVU0	tRNA N6 adenosine threonylcarbamoyltransferase	1.19305216735e-05	2.09555511277e-05	9.0250294542e-06
+UniRef50_P0AE38	Arginine N succinyltransferase	0.00287075485404	0.0130608765108	0.0101901216568
+UniRef50_P04395	DNA 3 methyladenine glycosylase 2	0.00374228533493	0.00136447910301	-0.00237780623192
+UniRef50_F5J5S5		0.00017772548577	0.000193256287437	1.5530801667e-05
+UniRef50_UPI00046D4F30	hypothetical protein	1.57251818611e-05	3.61426025222e-05	2.04174206611e-05
+UniRef50_A9M0E5	Aminopeptidase	6.75287994386e-05	0.00389519881441	0.00382767001497
+UniRef50_I0C1S3	Phosphatidylglycerophosphatase B like protein	0.00797868131592	0.00527489367419	-0.00270378764173
+UniRef50_C7QKF9	YCII related protein	2.55600322554e-05	2.16222071142e-05	-3.9378251412e-06
+UniRef50_M9VHR6	Glycerophosphodiester phosphodiesterase family protein	0.000377485988848	0.00693370461968	0.00655621863083
+UniRef50_UPI00046FEF92	hypothetical protein	3.37331790253e-05	7.01902221953e-06	-2.67141568058e-05
+UniRef50_I4CSN5		0.00140162593151	0.000632418901693	-0.000769207029817
+UniRef50_F9Z0L2	Iron compound ABC transporter	0.000107749874196	0.00740240563125	0.00729465575705
+UniRef50_M5JV17	Phosphate ABC transporter substrate binding protein 	0.000231989994359	2.70898563501e-05	-0.000204900138009
+UniRef50_Q31GL4	Leucyl phenylalanyl tRNA  protein transferase	7.3705388953e-06	3.13081134835e-05	2.39375745882e-05
+UniRef50_K7TDT2	Putative transposase	2.41750561162e-05	6.58260801216e-06	-1.7592448104e-05
+UniRef50_F8B2H9	Molybdopterin guanine dinucleotide biosynthesis protein	4.58387003117e-06	1.89335242328e-05	1.43496542016e-05
+UniRef50_UPI0004432FDF	PREDICTED	1.27225090402e-05	3.27118837227e-05	1.99893746825e-05
+UniRef50_S5KCJ9	Membrane protein	3.46400417276e-05	0.0010509487984	0.00101630875667
+UniRef50_D4LGK2	Phosphate starvation inducible protein PhoH, predicted ATPase	0.00329981237393	0.00201655029881	-0.00128326207512
+UniRef50_UPI000377EEE9	hypothetical protein	4.05954613745e-06	0.00313657959448	0.00313252004834
+UniRef50_Q9RRI3	Medium chain fatty acid  CoA ligase	0.000336805123903	0.0357362648588	0.0353994597349
+UniRef50_B0VCS4		0.000137434219241	0.00664408001158	0.00650664579234
+UniRef50_P24203		0.00182285521896	0.000386099473648	-0.00143675574531
+UniRef50_UPI0003012608	hypothetical protein	4.10902224077e-06	6.27155953802e-06	2.16253729725e-06
+UniRef50_Q899J0	PUR operon repressor	0.000344449151545	0.00333640587569	0.00299195672414
+UniRef50_Q5XE79	Thioredoxin	0.00059603050871	0.000569742839604	-2.6287669106e-05
+UniRef50_P17330	Glyceraldehyde 3 phosphate dehydrogenase 3	1.12216060667e-05	9.96818648388e-06	-1.25341958282e-06
+UniRef50_M1P7F7	Cytoplasmic membrane protein	1.91190200118e-05	0.00305365020471	0.0030345311847
+UniRef50_Q9A0R7	Putative gluconeogenesis factor	0.00677759652053	0.00298372904513	-0.0037938674754
+UniRef50_J6CKR7	Transketolase 	0.000158772547921	6.45371934968e-05	-9.42353544242e-05
+UniRef50_UPI000478E5C6	hypothetical protein	1.03273291624e-05	0.000175103096212	0.00016477576705
+UniRef50_Q39K93	UDP N acetylglucosamine 1 carboxyvinyltransferase	3.65393807056e-05	7.47428814301e-05	3.82035007245e-05
+UniRef50_B6JM63	Polyamine aminopropyl transferase	0.000169783803081	0.00330963782393	0.00313985402085
+UniRef50_UPI0004742BB7	glucose 1 phosphate thymidylyltransferase	0.00021560237932	0.000142075918507	-7.3526460813e-05
+UniRef50_Q2L0H5	sn glycerol 3 phosphate import ATP binding protein UgpC	0.00480072726845	0.00129300445818	-0.00350772281027
+UniRef50_UPI00046FFCEC	ABC transporter ATP binding protein, partial	6.29182304652e-06	2.63032216502e-05	2.00113986037e-05
+UniRef50_Q5M1U2	D alanyl D alanine carboxypeptidase	0.00784593992108	0.00184091945706	-0.00600502046402
+UniRef50_Q6MHV9	Bifunctional protein GlmU	4.22081263642e-06	6.82482787235e-06	2.60401523593e-06
+UniRef50_B9KRH9	Glycosyl transferase, family 2	0.00311542428208	0.00124814614927	-0.00186727813281
+UniRef50_UPI0004785B9B	DNA directed RNA polymerase subunit beta	3.25383094543e-06	1.58504676033e-06	-1.6687841851e-06
+UniRef50_Q3JM24	Potassium efflux system protein	0.000227061636911	0.0092295274757	0.00900246583879
+UniRef50_UPI00036DE10D	hypothetical protein	0.000452827932954	7.85547781407e-05	-0.000374273154813
+UniRef50_A0A021WXJ4		1.54809588524e-05	2.59345571643e-05	1.04535983119e-05
+UniRef50_UPI000369982C	hypothetical protein	1.19239854999e-05	1.1585809878e-05	-3.381756219e-07
+UniRef50_UPI00045EC2D5	hypothetical protein	6.84942887198e-05	7.26341988685e-06	-6.1230868833e-05
+UniRef50_UPI000441EDB2	PREDICTED	7.4692537161e-06	2.22672187371e-05	1.4797965021e-05
+UniRef50_G8VLT1	Tryptophanase L cysteine desulfhydrase, PLP dependent	0.000332441248351	0.00558806556191	0.00525562431356
+UniRef50_B2VB13	TraW protein	8.43207081217e-05	2.98953532783e-05	-5.44253548434e-05
+UniRef50_UPI0002192F7F	molybdopterin biosynthesis protein MoeB, partial	8.10518595153e-06	2.08271782494e-05	1.27219922979e-05
+UniRef50_UPI0003803CF1	hypothetical protein	4.59949261723e-06	1.87177710338e-05	1.41182784166e-05
+UniRef50_C5N2S8		0.0201677760263	0.00989047471669	-0.0102773013096
+UniRef50_A9M1X9		0.000300386728529	0.0015111157669	0.00121072903837
+UniRef50_UPI0003622625	hypothetical protein	8.03838721625e-06	5.78172758859e-06	-2.25665962766e-06
+UniRef50_M4RDW5	Glycosyltransferase	0.00031632904094	0.00575967175538	0.00544334271444
+UniRef50_Q49ZP2		3.93217206925e-05	6.27008115306e-05	2.33790908381e-05
+UniRef50_G5P8G8	Peptide transport system permease protein sapB	0.000138163080354	0.000161712070374	2.354899002e-05
+UniRef50_UPI0003F6BA02	cysteinyl tRNA synthetase	2.97018692777e-06	6.57885778531e-06	3.60867085754e-06
+UniRef50_UPI00034C3E89	hypothetical protein	8.55928739509e-06	1.16634588696e-05	3.10417147451e-06
+UniRef50_F5YFX0	Polar amino acid ABC transporter, inner membrane subunit	0.000542471217641	0.00111728182699	0.000574810609349
+UniRef50_F2AIJ3		0.000706935002209	0.000506526527332	-0.000200408474877
+UniRef50_R6Z8P0		1.21604351698e-05	6.27948006139e-05	5.06343654441e-05
+UniRef50_UPI00036C444A	hypothetical protein	4.26933167686e-06	4.8833886478e-06	6.1405697094e-07
+UniRef50_A2SNL7	Essential for conjugative transfer protein	8.80703315204e-06	5.96376414866e-06	-2.84326900338e-06
+UniRef50_UPI000471BC8E	protease I	6.46407211153e-06	2.40343131672e-05	1.75702410557e-05
+UniRef50_Q5LSV7	Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein	0.00693969864512	0.00187100436971	-0.00506869427541
+UniRef50_U5URI8		0.0125376454674	0.00351300905302	-0.00902463641438
+UniRef50_B9KPC4		0.00087821285884	0.000691814432947	-0.000186398425893
+UniRef50_D3Q1B6		3.21442600597e-06	1.62603260229e-05	1.30459000169e-05
+UniRef50_M9VB10	LysR family transcriptional regulator	0.000409926333486	0.00408736463252	0.00367743829903
+UniRef50_N6DL92		4.78986197002e-05	9.62554032953e-05	4.83567835951e-05
+UniRef50_T1ATE5		0.00100685038387	8.61069163238e-05	-0.000920743467546
+UniRef50_Q91TH9	T121.1	4.57947330841e-06	6.45239662439e-05	5.99444929355e-05
+UniRef50_Z5XAD0	Aldehyde dehydrogenase	4.61808795981e-05	5.52692201143e-05	9.0883405162e-06
+UniRef50_K2I608	Flp pilus assembly protein, pilin Flp	6.10388052284e-05	4.91993938983e-05	-1.18394113301e-05
+UniRef50_UPI0003C13F57	PREDICTED	2.40038874048e-05	1.33115865362e-05	-1.06923008686e-05
+UniRef50_I6U0J6		0.00347990655782	0.00221683611563	-0.00126307044219
+UniRef50_Q8FHD1		0.00183686914013	0.0002590497414	-0.00157781939873
+UniRef50_Q9PMA7	NADH quinone oxidoreductase subunit L	0.000134199311951	0.00417688888495	0.004042689573
+UniRef50_A4QB30		0.000711093234097	0.00368305228797	0.00297195905387
+UniRef50_UPI000376F2DA	hypothetical protein	5.08046253202e-06	1.66458676634e-05	1.15654051314e-05
+UniRef50_H6PBU2	Nitroreductase	0.00542263006044	0.00104947157278	-0.00437315848766
+UniRef50_UPI00035E79DC	transcriptional regulator	6.25107013103e-06	1.03226073193e-05	4.07153718827e-06
+UniRef50_UPI00037CCCC7	hypothetical protein	0.000148393381764	3.37766509089e-05	-0.000114616730855
+UniRef50_M5E3Y3		5.0715559381e-05	3.22137325423e-05	-1.85018268387e-05
+UniRef50_A0B5U4	Glycine  tRNA ligase	0.00249789424029	0.000695418270102	-0.00180247597019
+UniRef50_A4EG79		2.20651283011e-05	5.39840861795e-05	3.19189578784e-05
+UniRef50_D1BHZ8	Ribonucleoside triphosphate reductase class III catalytic subunit	0.0178772329257	0.00945252018795	-0.00842471273775
+UniRef50_Q3IV40		0.0180353974429	0.00394939770027	-0.0140859997426
+UniRef50_UPI0003823B5A	hypothetical protein	0.000162208389222	5.25972924986e-05	-0.000109611096723
+UniRef50_UPI000466ECBC	2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	6.20964248235e-05	4.50018327546e-05	-1.70945920689e-05
+UniRef50_UPI0003F0E20A	PREDICTED	2.60919668781e-05	2.88660950613e-06	-2.3205357372e-05
+UniRef50_K0L2H6		0.00348731917626	0.00182388052857	-0.00166343864769
+UniRef50_O06997		0.000326367193234	0.00185325487027	0.00152688767704
+UniRef50_UPI00038F646F	Response regulator MprA	6.4631430147e-05	0.000259967892613	0.000195336462466
+UniRef50_W7SSQ1	GGDEF domain protein	1.97908183121e-05	0.000213362176081	0.000193571357769
+UniRef50_Q03Q51	Phosphopentomutase	1.32177393866e-05	0.00227975597455	0.00226653823516
+UniRef50_Q0BT08	Ribosomal RNA large subunit methyltransferase E	8.58114061088e-05	4.851893146e-05	-3.72924746488e-05
+UniRef50_A7ZVQ2	Primosomal protein 1	0.00112346754031	0.0053693946399	0.00424592709959
+UniRef50_A9GTV7		0.000239495960222	0.000354925767779	0.000115429807557
+UniRef50_Q4UU98	Probable chemoreceptor glutamine deamidase CheD	0.000303126252081	0.000157181386636	-0.000145944865445
+UniRef50_UPI0003781C90	hypothetical protein	0.000258853552028	3.6919614546e-05	-0.000221933937482
+UniRef50_UPI00037EAB74	hypothetical protein	1.81590546566e-05	2.73744602056e-05	9.215405549e-06
+UniRef50_V6FEQ6		0.000318009513062	0.000473178529513	0.000155169016451
+UniRef50_I6T6N0		0.00367469673017	0.00223414832775	-0.00144054840242
+UniRef50_UPI0003608CB6	MULTISPECIES	3.69775141068e-06	7.29794709932e-06	3.60019568864e-06
+UniRef50_K7RUR3	ABC 2 type transporter	0.00067957666549	0.00972553870458	0.00904596203909
+UniRef50_A3VVX3		4.47437526371e-06	2.40643469648e-06	-2.06794056723e-06
+UniRef50_UPI0001DEA90D	PREDICTED	7.61120464961e-05	0.000366215655028	0.000290103608532
+UniRef50_UPI00047E64E1	CreA	1.41969949062e-05	1.83563993704e-05	4.1594044642e-06
+UniRef50_UPI0003B67BBB	23S rRNA tRNA pseudouridine synthase A	0.000113436626706	3.72191998179e-05	-7.62174268881e-05
+UniRef50_U1T6A5		0.000171240474828	4.61076010919e-06	-0.000166629714719
+UniRef50_A6LRD1	Aldehyde dehydrogenase	0.000268525912586	0.00168832351465	0.00141979760206
+UniRef50_UPI000369B8F0	hypothetical protein	4.19299672821e-06	6.20294369383e-06	2.00994696562e-06
+UniRef50_UPI0003476644	hypothetical protein	6.06753103765e-06	6.52343398641e-06	4.5590294876e-07
+UniRef50_R9ZF26	TonB denpendent receptor	0.000260148305909	0.000638992454516	0.000378844148607
+UniRef50_Q7A363	Accessory Sec system protein translocase subunit SecY2	0.0107025730992	0.00320866134013	-0.00749391175907
+UniRef50_UPI000380209B	hypothetical protein	9.0739652157e-06	7.99926156069e-06	-1.07470365501e-06
+UniRef50_P0DF46	Ribosomal RNA small subunit methyltransferase I	0.00448546933394	0.00214544793178	-0.00234002140216
+UniRef50_A5W3B8	Peptidase S14, ClpP	0.000676360138888	0.00135736744886	0.000681007309972
+UniRef50_Q5FQ01		0.000274202897477	0.000871440366181	0.000597237468704
+UniRef50_Q92GB7	DNA polymerase I	4.22315376677e-06	4.59737825617e-05	4.17506287949e-05
+UniRef50_I6TNQ1	Aminotransferase	0.00515219495143	0.00141488660305	-0.00373730834838
+UniRef50_Q1QU75	tRNA pseudouridine synthase D	5.35700096481e-06	7.43303865114e-06	2.07603768633e-06
+UniRef50_A5UNR6	Heavy metal cation  efflux system protein, CzcD family	0.00261759245498	0.00121116054319	-0.00140643191179
+UniRef50_G7TK32	Transposase	8.81354951222e-05	5.98437280839e-05	-2.82917670383e-05
+UniRef50_Q7VR12	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	1.38796330284e-05	4.4122286499e-05	3.02426534706e-05
+UniRef50_S5XNV8		0.000661221835203	5.53493731199e-05	-0.000605872462083
+UniRef50_UPI00037F4A8F	hypothetical protein	1.75055290185e-06	1.37416490305e-05	1.19910961287e-05
+UniRef50_F9Z292		0.000308571653009	0.00766125039411	0.0073526787411
+UniRef50_A1AT66	Ribonuclease H	4.32874287242e-05	2.44220327035e-05	-1.88653960207e-05
+UniRef50_O64174	Ribonucleoside diphosphate reductase subunit beta	0.000268415998084	0.0305957264838	0.0303273104857
+UniRef50_UPI000470D991	hypothetical protein	8.4171636485e-06	0.000129691557244	0.000121274393596
+UniRef50_A0A037J8C0		0.000167180069528	6.07438984785e-05	-0.00010643617105
+UniRef50_UPI0003B5DFE1	ABC transporter	5.70795251979e-06	5.77510498744e-06	6.715246765e-08
+UniRef50_A5N2H8	FprA	9.87321679628e-05	0.000405566271772	0.000306834103809
+UniRef50_Q5HNZ9	5 formyltetrahydrofolate cyclo ligase family protein	0.00953598762576	0.00101669026154	-0.00851929736422
+UniRef50_A5F9H5	Glutaminase	0.0010432399595	0.00193212608989	0.00088888613039
+UniRef50_UPI00036F62C9	hypothetical protein	0.000113869069403	2.41150541602e-05	-8.97540152428e-05
+UniRef50_P33744	Aldehyde alcohol dehydrogenase	0.000785668334076	0.00201154903379	0.00122588069971
+UniRef50_Q2JPT8	GTP cyclohydrolase 1	3.78649620518e-05	5.55934811879e-05	1.77285191361e-05
+UniRef50_K4W2H2	Cyclic di GMP phosphodiesterase	0.00360044551279	0.000807352330822	-0.00279309318197
+UniRef50_B9TCQ2		5.116307668e-05	0.000565602267857	0.000514439191177
+UniRef50_UPI0003648E77	hypothetical protein	7.64492004097e-06	1.45186538781e-06	-6.19305465316e-06
+UniRef50_Q2Y7Q1		6.11820043457e-06	1.75842189288e-05	1.14660184942e-05
+UniRef50_A0A023PYQ4		9.50540892723e-06	0.000797864081147	0.00078835867222
+UniRef50_D3E0R6	Chaperone protein DnaJ	0.00434622944607	0.000175262139585	-0.00417096730648
+UniRef50_P27896	Nitrate nitrite sensor protein NarQ	0.00319346006189	0.00120516911142	-0.00198829095047
+UniRef50_A7ZS72	Phosphoglucosamine mutase	0.00383661085	0.00168063508078	-0.00215597576922
+UniRef50_UPI00035EC538	hypothetical protein	0.000111578469607	0.000141815483016	3.0237013409e-05
+UniRef50_P27756	Alpha galactosidase	0.00411525060023	0.00293537268932	-0.00117987791091
+UniRef50_Q6D3F5	Isopentenyl diphosphate Delta isomerase	5.6549084627e-05	1.44530011473e-05	-4.20960834797e-05
+UniRef50_UPI0003706CCB	hypothetical protein	8.68242173544e-06	3.58327583379e-05	2.71503366025e-05
+UniRef50_D3E1V5	CBS domain containing protein	0.00282302681276	0.000875435417395	-0.00194759139537
+UniRef50_F0QEA5	Sphingosine kinase	0.000126108904961	0.00413647106439	0.00401036215943
+UniRef50_Q8DTR9		0.00474861512093	0.00179310416651	-0.00295551095442
+UniRef50_Q1GIV4	UDP N acetylmuramoylalanine  D glutamate ligase	0.00309118556446	0.000276671673455	-0.00281451389101
+UniRef50_P46534	Orotate phosphoribosyltransferase	2.18888001338e-05	7.29022429163e-05	5.10134427825e-05
+UniRef50_F0YBU9	Expressed protein 	0.000314838525889	0.000745568273148	0.000430729747259
+UniRef50_C0W8D6	Rhamnan synthesis protein F	3.90861041832e-06	6.73469947604e-06	2.82608905772e-06
+UniRef50_UPI0003B75B95	50S ribosomal protein L5	0.000285079679051	0.00030907090492	2.3991225869e-05
+UniRef50_Q3KIW5	NH dependent NAD(+) synthetase	3.72762508221e-05	8.54712936459e-05	4.81950428238e-05
+UniRef50_J7P463		3.06995049524e-06	0.00147482838249	0.00147175843199
+UniRef50_Q9CM47	Macrolide export ATP binding permease protein MacB	4.92591917552e-06	5.45788115749e-06	5.3196198197e-07
+UniRef50_G9AIM1		1.80366662437e-05	0.000153524453604	0.00013548778736
+UniRef50_B5JD39		9.86043697982e-06	0.00044602812168	0.0004361676847
+UniRef50_Q9RSR2	WD repeat family protein	0.000170294431062	0.00224370664436	0.0020734122133
+UniRef50_X6XZ89		0.000335093665908	0.000476317266442	0.000141223600534
+UniRef50_A0A059LAV6		0.000254362452988	0.00104140303084	0.000787040577852
+UniRef50_B4U4I6	Holliday junction resolvase RecU	0.00523255317461	0.00374657647497	-0.00148597669964
+UniRef50_K1Y1K5		0.000268197404208	2.43707715944e-05	-0.000243826632614
+UniRef50_UPI00035C76C3	hypothetical protein	3.69101124056e-05	0.000115819582152	7.89094697464e-05
+UniRef50_A6VC61	Peptide chain release factor 1	0.000104857219123	0.000524727750822	0.000419870531699
+UniRef50_UPI0003B52326	histidinol dehydrogenase	4.25276531165e-06	6.79367154058e-06	2.54090622893e-06
+UniRef50_F2I852	Oxidoreductase, FAD FMN binding protein	0.0123860860977	0.00262569456892	-0.00976039152878
+UniRef50_P16145	Probable Ni Fe hydrogenase B type cytochrome subunit	0.0133509655413	0.00361854205527	-0.00973242348603
+UniRef50_A6LWU3		0.000164171288694	0.000695123701435	0.000530952412741
+UniRef50_D3A715		4.20715349579e-05	0.000373344124034	0.000331272589076
+UniRef50_A0L482	N acetyl gamma glutamyl phosphate reductase	1.80478029372e-05	4.57015280711e-05	2.76537251339e-05
+UniRef50_UPI000422BA91	hypothetical protein	4.89180370941e-06	2.23317412968e-05	1.74399375874e-05
+UniRef50_P76161	Antitermination protein Q homolog from lambdoid prophage Qin	0.00411988336238	0.000671401975318	-0.00344848138706
+UniRef50_U2ZTD9		3.64853280566e-07	1.02019073006e-06	6.55337449494e-07
+UniRef50_O85309	Excision nuclease UvrA 	0.000165397083937	0.000220896865529	5.5499781592e-05
+UniRef50_Q8DHS3	Acyl carrier protein	3.06587621384e-05	0.000410015961402	0.000379357199264
+UniRef50_Q8UJC5	Shikimate dehydrogenase	4.31228389481e-05	3.66856330652e-05	-6.4372058829e-06
+UniRef50_UPI00046D3AA4	hypothetical protein	3.11426395258e-05	3.33634067777e-05	2.2207672519e-06
+UniRef50_UPI0003B31446	peptide ABC transporter ATP binding protein	2.24321947669e-06	7.84466514374e-06	5.60144566705e-06
+UniRef50_D5ZSF1		0.000390903464139	0.00149262702056	0.00110172355642
+UniRef50_B2V197	Helix turn helix domain protein	0.000112235675575	0.000654633767157	0.000542398091582
+UniRef50_UPI000373CA50	hypothetical protein	3.03701598461e-05	0.000128539087464	9.81689276179e-05
+UniRef50_A7HRI8	UPF0260 protein Plav_0898	0.0168196798655	0.00235573535507	-0.0144639445104
+UniRef50_UPI0002F72AC7	hypothetical protein	1.02926004363e-05	0.000194158547558	0.000183865947122
+UniRef50_S5XR90	Aminotransferase	0.0127036950058	0.00375226913531	-0.00895142587049
+UniRef50_A1B4T6		0.000320802591739	0.000796650812189	0.00047584822045
+UniRef50_A0A058TF07	Periplasmic binding protein LacI transcriptionalregulator	0.000129417307607	2.58216515044e-05	-0.000103595656103
+UniRef50_B8J6J0		1.23483872819e-05	9.7951084547e-05	8.56026972651e-05
+UniRef50_UPI0003692945	hypothetical protein	2.10807954063e-05	2.62882541962e-05	5.2074587899e-06
+UniRef50_A7ZSA7	Monofunctional biosynthetic peptidoglycan transglycosylase	0.00712280325678	0.00042288788334	-0.00669991537344
+UniRef50_P0A6C2	Endonuclease 4	0.00320459178605	0.00528843867512	0.00208384688907
+UniRef50_G8ATW7		0.000124628748879	3.27827436784e-05	-9.18460052006e-05
+UniRef50_UPI000471B5FA	hypothetical protein, partial	4.3003955889e-05	0.000107944283316	6.4940327427e-05
+UniRef50_U6I1P7	Fibrillar collagen chain FAp1 alpha	8.39830604904e-06	5.24758030807e-06	-3.15072574097e-06
+UniRef50_F0KI43	Transcriptional regulator, LysR family	0.000173158710486	0.00672179916575	0.00654864045526
+UniRef50_UPI0004763F0C	GTP binding protein Era, partial	1.8388975208e-05	0.000153093910305	0.000134704935097
+UniRef50_W0YTS0	Periplasmic tail specific protease	0.000918601726542	0.000170656713888	-0.000747945012654
+UniRef50_P53652	Superoxide dismutase [Mn]	0.000229242503354	6.56831859363e-05	-0.000163559317418
+UniRef50_UPI000427CAFD	hypothetical protein	1.2400920263e-06	1.63439733752e-05	1.51038813489e-05
+UniRef50_B2FUP3		0.00012609140758	8.08936753714e-05	-4.51977322086e-05
+UniRef50_H0JKI3	DNA polymerase II large subunit	2.84570488317e-06	6.65832759929e-05	6.37375711097e-05
+UniRef50_V5S959	Dihydroorotate dehydrogenase	0.000336627398679	2.034295502e-05	-0.000316284443659
+UniRef50_Q9RSJ1		2.02236956248e-06	0.00150945756858	0.00150743519902
+UniRef50_Q2C7C2		3.25193248383e-05	3.15305420154e-05	-9.887828229e-07
+UniRef50_A8SBF8		2.68210129445e-05	1.96921715916e-05	-7.1288413529e-06
+UniRef50_P32129	Probable acyltransferase YihG	0.00285654272014	0.000209197193767	-0.00264734552637
+UniRef50_UPI00016A4C3D	hypothetical protein	0.000184144043637	7.97452775599e-05	-0.000104398766077
+UniRef50_B5Z3J3		8.52570495091e-05	1.28756323673e-05	-7.23814171418e-05
+UniRef50_Q1BAN7		0.00197988196541	0.00621022837143	0.00423034640602
+UniRef50_G0NRW8		2.22064278335e-06	2.62719878332e-05	2.40513450499e-05
+UniRef50_UPI00022CA8A0	PREDICTED	5.27460627209e-05	0.00808391205407	0.00803116599135
+UniRef50_C1F933	Aminomethyltransferase	2.21622872946e-05	1.48384872564e-05	-7.3238000382e-06
+UniRef50_R7ACY8	Dyp type peroxidase	0.000267089143052	0.00411570230027	0.00384861315722
+UniRef50_F0VQM4		6.46002187561e-06	1.01089698222e-05	3.64894794659e-06
+UniRef50_UPI0004710988	hypothetical protein	5.2294531821e-05	6.91296175571e-05	1.68350857361e-05
+UniRef50_Q8FHF8	Protein YdeP	0.0017293100796	0.000756766628069	-0.000972543451531
+UniRef50_R4ZTR9	Hydrolase, haloacid dehalogenase like family	0.0102276243361	0.000296800708731	-0.00993082362737
+UniRef50_UPI0003B58A15	hypothetical protein	5.80443599072e-06	8.726629228e-06	2.92219323728e-06
+UniRef50_UPI00046F911C	riboflavin biosynthesis protein RibF	1.00971532303e-05	1.28967646164e-05	2.7996113861e-06
+UniRef50_UPI0003B578C2	LuxR family transcriptional regulator	9.23911855955e-06	1.17084296089e-05	2.46931104935e-06
+UniRef50_D9W2E7	BldA regulated nucleotide binding protein 	0.000185918559711	0.000303465333238	0.000117546773527
+UniRef50_Q4PIL0	Catabolic 3 dehydroquinase	0.000115137153741	4.08506579921e-05	-7.42864957489e-05
+UniRef50_D2ZRP9	Conserved repeat protein 	0.000607759462445	0.000314926774661	-0.000292832687784
+UniRef50_K4Z6Z2	Lipoprotein, YaeC family	8.08844018573e-05	4.80546487882e-05	-3.28297530691e-05
+UniRef50_UPI0003730702	hypothetical protein	6.56974493527e-06	3.84611870077e-05	3.18914420724e-05
+UniRef50_UPI000237AA64	binding protein dependent transporter inner membrane component	5.12804946669e-05	1.11302818994e-05	-4.01502127675e-05
+UniRef50_P41338	Acetyl CoA acetyltransferase	4.83959499634e-06	6.12146257819e-06	1.28186758185e-06
+UniRef50_R4RQD5	Exodeoxyribonuclease I	0.000514829119411	0.000471844902017	-4.2984217394e-05
+UniRef50_B6JP11	L seryl tRNA selenium transferase	0.000125828662949	0.00298919840628	0.00286336974333
+UniRef50_B9KSR5	Acetyltransferase	0.00579538265564	0.00203620737595	-0.00375917527969
+UniRef50_A5WGD9	Endonuclease exonuclease phosphatase	0.000106835657221	0.00736630417068	0.00725946851346
+UniRef50_UPI0003B3F986	esterase, partial	2.71214784362e-05	2.51235417726e-05	-1.9979366636e-06
+UniRef50_B5F9P6	Isopentenyl diphosphate Delta isomerase	6.0617201478e-05	1.58329251885e-05	-4.47842762895e-05
+UniRef50_UPI00046D1DF4	hypothetical protein	8.38863447297e-06	0.000123517531901	0.000115128897428
+UniRef50_A0A059IPL7		0.000534735206893	0.00142895179933	0.000894216592437
+UniRef50_D7I1Z5	Protein involved in meta pathway of phenol degradation	0.000161779709512	0.003745383422	0.00358360371249
+UniRef50_UPI0003B7A9E3	methionine aminopeptidase	5.43914057364e-05	1.16668616977e-05	-4.27245440387e-05
+UniRef50_UPI00046D808E	hypothetical protein	2.91123084894e-06	0.00144467485761	0.00144176362676
+UniRef50_UPI0002898699	glycosyl transferase family protein	3.17717022939e-05	3.0717773612e-05	-1.0539286819e-06
+UniRef50_P33639	Sensor protein PilS	0.000515975548047	0.000697369982521	0.000181394434474
+UniRef50_P27250	Aldehyde reductase Ahr	0.00354454248924	0.00928659750962	0.00574205502038
+UniRef50_I0J9Y4		0.00650534735772	0.00104229425363	-0.00546305310409
+UniRef50_UPI00047854C4	hypothetical protein	5.98539522028e-06	7.8823458602e-06	1.89695063992e-06
+UniRef50_B9KRB9		0.00562887624012	0.000122483601538	-0.00550639263858
+UniRef50_C9TQ56	TRAP dicarboxylate transporter	2.98489511065e-05	3.89094289149e-05	9.0604778084e-06
+UniRef50_Q4V0C6	4 deoxy L threo 5 hexosulose uronate ketol isomerase	7.82223519066e-06	1.14161343066e-05	3.59389911594e-06
+UniRef50_Q9HTN0		0.00160643458038	0.00050384727275	-0.00110258730763
+UniRef50_E8QKR2	Zinc dependent alcohol dehydrogenase	0.000146123608583	0.00400907448043	0.00386295087185
+UniRef50_UPI000413BA09	sugar kinase	0.00011875082649	9.68496145918e-05	-2.19012118982e-05
+UniRef50_Q4LAB5	Protein ArsC 1	0.00814343949632	0.000835801995839	-0.00730763750048
+UniRef50_R8ZEH6	Putative major facilitator superfamily transporter	0.000344911741645	0.000687418122876	0.000342506381231
+UniRef50_UPI0002E5E41F	hypothetical protein	4.35266714093e-06	2.93482529109e-05	2.499558577e-05
+UniRef50_Q5LQC3	Putative arginyl tRNA  protein transferase	0.0092098333498	0.00185965957167	-0.00735017377813
+UniRef50_UPI000288DE5F	cation	0.000273441013945	0.00025927681651	-1.4164197435e-05
+UniRef50_UPI0004716842	hypothetical protein	1.12614959586e-05	1.61564020544e-05	4.8949060958e-06
+UniRef50_Q13T51	UPF0271 protein Bxeno_A4200	0.0054363477413	0.000591786387407	-0.00484456135389
+UniRef50_Q9RSD6	Aminopeptidase	0.000267149184478	0.0325248783089	0.0322577291244
+UniRef50_E6RJK7		7.76909041162e-05	2.99503847075e-05	-4.77405194087e-05
+UniRef50_Q3HKI4		0.0263919569899	0.00851841232426	-0.0178735446656
+UniRef50_Q3HKI5		0.052782319054	0.0105830691393	-0.0421992499147
+UniRef50_UPI00034472D6		3.26787048208e-05	8.96767271476e-05	5.69980223268e-05
+UniRef50_Q0SI65	Putative 3 methyladenine DNA glycosylase	7.1850293024e-06	2.37330304149e-05	1.65480011125e-05
+UniRef50_UPI000412412A	phosphohydrolase	4.15305453937e-05	0.000325038833951	0.000283508288557
+UniRef50_UPI00028909B3	Sua5 YciO YrdC YwlC family protein, partial	2.59489038596e-05	9.4729313822e-05	6.87804099624e-05
+UniRef50_E8RT81		0.000104126466159	3.74703858831e-05	-6.66560802759e-05
+UniRef50_P74839	Propionate catabolism operon regulatory protein	0.00639791717654	0.0026670868257	-0.00373083035084
+UniRef50_A4IR80	Alanine  tRNA ligase	0.0114864035546	0.00686248743583	-0.00462391611877
+UniRef50_B9G127		8.27822558884e-05	0.00010427503067	2.14927747816e-05
+UniRef50_UPI0003C17643		5.34516296268e-06	3.26701377001e-06	-2.07814919267e-06
+UniRef50_Q83EL0	Chaperone protein HtpG	0.00101411078308	0.00122586469392	0.00021175391084
+UniRef50_UPI0001FFFE99	hypothetical protein	8.16381786993e-05	9.03203561744e-06	-7.26061430819e-05
+UniRef50_Q5F551	Phosphopantetheine adenylyltransferase	6.60402272903e-05	0.00126831973152	0.00120227950423
+UniRef50_G4LM89		0.00118070589173	0.000350826816659	-0.000829879075071
+UniRef50_S0F055		2.93964992691e-06	5.5889742747e-06	2.64932434779e-06
+UniRef50_UPI0003458B5D	hypothetical protein	8.61247106387e-06	8.05708223206e-05	7.19583512567e-05
+UniRef50_UPI00038FF0AB	Ribonuclease H	1.44765806814e-05	9.29622841725e-05	7.84857034911e-05
+UniRef50_Q28TL6	Phosphatidylcholine synthase	0.00890816149968	0.00450534443628	-0.0044028170634
+UniRef50_P15531	Nucleoside diphosphate kinase A	1.27208491738e-05	1.81766861968e-05	5.455837023e-06
+UniRef50_Q4L8S8	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0130298642878	0.00316301830304	-0.00986684598476
+UniRef50_UPI00046D6A82	hypothetical protein	5.25579369349e-05	1.37847939152e-05	-3.87731430197e-05
+UniRef50_O35046	Putative carboxypeptidase YocD	9.39045459123e-06	0.00156859634034	0.00155920588575
+UniRef50_Q3S2Y2	Glycosyltransferase Gtf1	0.000110874356845	0.00312765459478	0.00301678023793
+UniRef50_F8WKF3		0.0195116928842	0.00236061479183	-0.0171510780924
+UniRef50_J4VP36	DNA polymerase III, alpha subunit	3.33370022518e-05	0.00679362194553	0.00676028494328
+UniRef50_M1LZD3		0.000275580846929	0.000331919299987	5.6338453058e-05
+UniRef50_D7W4Z4		2.07328842744e-05	1.62776448947e-05	-4.4552393797e-06
+UniRef50_F9Z273	Glycerol 3 phosphate dehydrogenase	0.00015428582651	0.00691240397387	0.00675811814736
+UniRef50_R7PG96		0.000250543797907	0.00126564302227	0.00101509922436
+UniRef50_A0A024DEK4	Lactoylglutathione lyase	0.00221796076653	0.00652768859602	0.00430972782949
+UniRef50_X1FSK7	Marine sediment metagenome DNA, contig	1.35953098304e-05	1.92455974855e-05	5.6502876551e-06
+UniRef50_E5QVT2	Riboflavin transporter RibU	0.00874963798593	0.000369145881487	-0.00838049210444
+UniRef50_W4RLM9	Transketolase	0.000157708015486	8.4563939649e-05	-7.3144075837e-05
+UniRef50_P45564		0.00351669937676	0.00109130256553	-0.00242539681123
+UniRef50_Q8CQW0		0.00939593818585	0.00409978365661	-0.00529615452924
+UniRef50_UPI0002FD0224	hypothetical protein	1.04280371092e-05	8.9150362921e-05	7.87223258118e-05
+UniRef50_U6I5L2	Propionyl coenzyme A carboxylase alpha chain	4.88410051516e-06	3.57671691119e-06	-1.30738360397e-06
+UniRef50_G2JJI4		0.000486358319742	0.00509848402169	0.00461212570195
+UniRef50_UPI0003694B5F	hypothetical protein	2.66912031495e-05	2.22280554895e-05	-4.46314766e-06
+UniRef50_I4YT79		2.81324974766e-05	2.10773274871e-05	-7.0551699895e-06
+UniRef50_O31038	FMN reductase 	0.000202586398316	0.000584785554841	0.000382199156525
+UniRef50_Q5HM43	Alcohol dehydrogenase, zinc containing	0.010941895819	0.00268490864115	-0.00825698717785
+UniRef50_Q8CY30	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00358513413841	0.0218297286986	0.0182445945602
+UniRef50_F0KMP6		0.000156850133866	0.00625977282899	0.00610292269512
+UniRef50_UPI0003500B2C	PREDICTED	2.52665832468e-05	0.000350876504993	0.000325609921746
+UniRef50_N2QIY6	RNA pseudouridylate synthase family protein	0.00154934087445	0.000700355822605	-0.000848985051845
+UniRef50_D0IT38	Sodium D alanine glycine symporter	0.000492090723093	0.00184740328571	0.00135531256262
+UniRef50_F0LF03	Oligopeptide ABC transporter membrane spanning protein	0.00252680484021	0.00141341384763	-0.00111339099258
+UniRef50_UPI000255B4D9	citryl CoA lyase	5.71887759999e-05	9.99928749691e-06	-4.7189488503e-05
+UniRef50_A8GL06	TRAP dicarboxylate transporter, DctM subunit	0.00412448432507	0.000941564521568	-0.0031829198035
+UniRef50_UPI00035EC92D	hypothetical protein	7.18523765202e-06	4.48221764235e-06	-2.70302000967e-06
+UniRef50_G0LSM2	Phage protein	0.00407882990441	0.0024976139356	-0.00158121596881
+UniRef50_Q1ISS4	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.58752471503e-05	1.2686922388e-05	-3.1883247623e-06
+UniRef50_B9DKA9	Teichoic acid biosynthesis protein B	0.00732376567237	0.00295544893095	-0.00436831674142
+UniRef50_UPI000462E9F8	hypothetical protein	6.23254076204e-05	2.84884634669e-05	-3.38369441535e-05
+UniRef50_Q8DSW4		0.004315714206	0.00152988630413	-0.00278582790187
+UniRef50_UPI0003071439	hypothetical protein	8.99014894395e-06	4.35195287432e-05	3.45293797993e-05
+UniRef50_P71067	L lactate permease	0.0073065777602	0.0454291398461	0.0381225620859
+UniRef50_U5MKH7	Short chain dehydrogenase reductase SDR	0.00117083215973	0.00158110023274	0.00041026807301
+UniRef50_UPI000371974E	hypothetical protein	2.49536545569e-06	7.55413752459e-06	5.0587720689e-06
+UniRef50_C9AA28	FeS assembly protein SufD	0.00866677828	0.00159370275064	-0.00707307552936
+UniRef50_M9VHT5	Primosome assembly protein PriA	0.000203715074394	0.00602311698012	0.00581940190573
+UniRef50_UPI00038C29BD	PREDICTED	1.78877359603e-06	4.72714023511e-06	2.93836663908e-06
+UniRef50_L7ETS7	D5 like N terminal domain protein 	9.04112640343e-06	1.77434146317e-05	8.70228822827e-06
+UniRef50_G7M7Y7	Transcriptional regulator, TetR family	0.000767876918728	0.00244342714415	0.00167555022542
+UniRef50_Q3J4U2		0.0129019035377	0.00288389260971	-0.010018010928
+UniRef50_UPI0003786C39	hypothetical protein	0.000239535022129	8.81242411625e-05	-0.000151410780967
+UniRef50_P26218	Cryptic outer membrane porin BglH	0.00471028844198	0.00119313119806	-0.00351715724392
+UniRef50_Q3IZ97	Transglutaminase like domain protein	0.00298869620373	0.000697168144763	-0.00229152805897
+UniRef50_B4EU40	UPF0234 protein PMI0103	0.00292071125052	0.00520958115688	0.00228886990636
+UniRef50_UPI0002627F9F	30S ribosomal protein S17	9.95257731363e-05	0.000426421138727	0.000326895365591
+UniRef50_F5ZJK9	Methyltransferase	0.00016508133623	0.0120228916284	0.0118578102922
+UniRef50_D9SQV1	Inner membrane translocator	0.000125828662949	0.0037853569928	0.00365952832985
+UniRef50_A6QIK5		0.00174974136927	0.0124033016182	0.0106535602489
+UniRef50_Q6F9V8	Pseudouridine synthase	0.000134977111625	0.00590089982846	0.00576592271683
+UniRef50_UPI000377859E	hypothetical protein	1.78626419942e-05	2.54639258093e-05	7.6012838151e-06
+UniRef50_UPI00025564DF	thioredoxin	0.000249463772597	0.000143962163713	-0.000105501608884
+UniRef50_I6U015		0.00363010004224	0.00174298982337	-0.00188711021887
+UniRef50_A6QJ17	Iron compound ABC transporter, permease protein	0.0172786390315	0.00313635667709	-0.0141422823544
+UniRef50_UPI0002559088	major facilitator transporter	0.000517782558451	0.000131251868968	-0.000386530689483
+UniRef50_W9T9W7	Lon protease	0.000570727039869	0.00025598649862	-0.000314740541249
+UniRef50_V8G2W5	Integrase	0.000128749190972	8.85918105145e-05	-4.01573804575e-05
+UniRef50_A0A023XXU1	Alanine dehydrogenase	0.000392620184869	0.00869380317236	0.00830118298749
+UniRef50_E6E9V0		0.000130087027394	0.00131794026067	0.00118785323328
+UniRef50_Q88KQ9	Membrane protein, putative	0.000370757938214	0.00614232502475	0.00577156708654
+UniRef50_A5UP71	Predicted tubulin like protein	0.00180544108894	0.000245415544476	-0.00156002554446
+UniRef50_Q2FJ09	Putative antiporter subunit mnhG2	0.0154441559366	0.000446322476372	-0.0149978334602
+UniRef50_A6LWW3	GCN5 related N acetyltransferase	0.000432235865095	0.000827990762236	0.000395754897141
+UniRef50_D3E4D7	Transcriptional regulator MarR family	0.00199474803725	0.000905817906907	-0.00108893013034
+UniRef50_F6A8J6	Flagellar hook basal body protein	0.00102556865495	0.000565346542769	-0.000460222112181
+UniRef50_B7V109	Adenylate kinase	7.79202111019e-06	2.81608597213e-05	2.03688386111e-05
+UniRef50_X0UW79	Marine sediment metagenome DNA, contig	3.02979048604e-05	0.00390856953861	0.00387827163375
+UniRef50_P0ABS6	DNA primase	0.0035856819892	0.00111745540535	-0.00246822658385
+UniRef50_Q7NM67	Ribose phosphate pyrophosphokinase	4.79180533923e-05	6.51786640479e-05	1.72606106556e-05
+UniRef50_D8PHS6		4.74284231752e-06	0.00044644563042	0.000441702788102
+UniRef50_UPI000299E436	putative oxidase	3.08064086561e-05	0.00019343485972	0.000162628451064
+UniRef50_L7VT93	Chemotaxis protein methyltransferase 2	0.000978407110204	0.00119610414582	0.000217697035616
+UniRef50_F9YAM3		0.000821758338519	8.23467551486e-05	-0.00073941158337
+UniRef50_J0MX42	ISSep1, transposase family protein	0.00116956693662	0.000212623548732	-0.000956943387888
+UniRef50_S5Y434	Sulfolipid biosynthesis protein	0.000840976058686	0.000217945907889	-0.000623030150797
+UniRef50_A3PLB3		0.0109125476458	0.00314947772749	-0.00776306991831
+UniRef50_B3JPS9		2.45764342125e-05	2.17978518278e-05	-2.7785823847e-06
+UniRef50_UPI0003B4FC9A	transcriptional regulator	0.000141727885356	5.38844088179e-05	-8.78434765381e-05
+UniRef50_Q7N475	UPF0259 membrane protein plu2479	0.00224444518027	0.00099620377663	-0.00124824140364
+UniRef50_I0C6V2	Acetyltransferase	0.0145504805201	0.00150239529729	-0.0130480852228
+UniRef50_Q64XQ0	Lipoyl synthase	5.32053171879e-06	3.37243015871e-05	2.84037698683e-05
+UniRef50_A0A059KIS0		1.18689501377e-05	4.00683429897e-05	2.8199392852e-05
+UniRef50_A5FPX2	Glutamate  tRNA ligase	4.85804950872e-06	5.7378424164e-05	5.25203746553e-05
+UniRef50_UPI0004765137	hypothetical protein	3.6435553358e-06	4.63673154192e-06	9.9317620612e-07
+UniRef50_UPI0004545C86	PREDICTED	1.045482162e-05	1.09778222878e-05	5.230006678e-07
+UniRef50_A5UMB6	Cell wall biosynthesis protein, MurD like peptide ligase family	0.00403136630546	0.000948192125586	-0.00308317417987
+UniRef50_M7DM48	Permease	0.00465703242077	0.00171617433912	-0.00294085808165
+UniRef50_Q01T92	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.59703192049e-05	2.06726420239e-05	4.702322819e-06
+UniRef50_UPI0002892E6E	extracellular solute binding protein	9.91785971057e-06	0.00051265670649	0.000502738846779
+UniRef50_Q5HS30		0.00355439322914	0.00324151543941	-0.00031287778973
+UniRef50_UPI0002D8B23E	acetyltransferase	0.000121707723196	0.000129111977662	7.404254466e-06
+UniRef50_UPI0003B5C533	PTS glucose transporter subunit IIA	1.12939753627e-05	6.93470540792e-06	-4.35926995478e-06
+UniRef50_E1RMJ4		2.6141688974e-05	4.090259074e-05	1.4760901766e-05
+UniRef50_Q9ZAH9	Bacterial PH domain protein	0.00491793474577	0.00150391192687	-0.0034140228189
+UniRef50_V9WPU7		0.000160055073261	0.000132033228208	-2.8021845053e-05
+UniRef50_D4HFD7		4.07927914051e-05	0.000355749293159	0.000314956501754
+UniRef50_U5NML8		0.00236501981175	0.000637374183882	-0.00172764562787
+UniRef50_Q9I082		3.60671742488e-05	0.000876906889179	0.00084083971493
+UniRef50_U5NML2		0.0096052396591	0.00304824766512	-0.00655699199398
+UniRef50_Q9I089		0.000435560756373	0.000578279453069	0.000142718696696
+UniRef50_Q9T0P4	Ferredoxin dependent glutamate synthase 2, chloroplastic	2.2043027059e-06	2.76034657124e-06	5.5604386534e-07
+UniRef50_P0A9G2	Transcriptional activator protein NhaR	0.00269825184057	0.000432848373346	-0.00226540346722
+UniRef50_Q4L7Y8	ATP synthase subunit b	0.028689000604	0.00603601213826	-0.0226529884657
+UniRef50_UPI00046E378F	electron transporter RnfB, partial	4.69633123263e-05	2.28598502957e-05	-2.41034620306e-05
+UniRef50_F3ZK40	Putative ABC transporter solute binding lipoprotein	5.3217053099e-05	8.32660562008e-05	3.00490031018e-05
+UniRef50_M4Z7B3	Putative membrane protein	3.94917804559e-05	0.000111859106646	7.23673261901e-05
+UniRef50_UPI0003804CCC	hypothetical protein	9.61335363832e-05	8.18933468588e-05	-1.42401895244e-05
+UniRef50_Q9HTF1	Low specificity L threonine aldolase	0.000547735871686	0.00108877547075	0.000541039599064
+UniRef50_Q9I1P2	HTH type transcriptional regulator VqsM	0.000549286809212	0.000216085394041	-0.000333201415171
+UniRef50_P25524	Cytosine deaminase	0.00293986125375	0.00203887727803	-0.00090098397572
+UniRef50_UPI00047C40EA	lysophospholipase	2.35864983119e-05	4.63655183047e-05	2.27790199928e-05
+UniRef50_E0IXH7	ShET2 enterotoxin domain protein	0.00319604708711	0.000562917894681	-0.00263312919243
+UniRef50_UPI00036ACAB2	hypothetical protein	9.25319813766e-06	1.72405633087e-05	7.98736517104e-06
+UniRef50_A7K3E5	Nucleoside diphosphate sugar epimerase dehydratase	7.6933285773e-05	0.00291488132792	0.00283794804215
+UniRef50_D4M7N5	Monosaccharide ABC transporter membrane protein, CUT2 family 	0.000545323508899	0.000367653718447	-0.000177669790452
+UniRef50_V5XTJ1		0.00156568770498	0.000948969425598	-0.000616718279382
+UniRef50_UPI00046F6DC9	hypothetical protein	9.42259609704e-05	4.13499985605e-05	-5.28759624099e-05
+UniRef50_W7SUS4	Non ribosomal peptide synthetase	3.66192767703e-05	1.91233476565e-05	-1.74959291138e-05
+UniRef50_Q8XPQ1	Probable remnant of a transposase protein	4.70934889244e-05	4.27787669631e-05	-4.3147219613e-06
+UniRef50_W1K3W6		2.21303591483e-05	1.03519971196e-05	-1.17783620287e-05
+UniRef50_I4DYX6	ABC transporter homolog	0.00647510067623	0.000214256376199	-0.00626084430003
+UniRef50_P24200	5 methylcytosine specific restriction enzyme A	0.00282313711647	0.00578825307607	0.0029651159596
+UniRef50_Q49XC4		0.0211849846689	0.00456685995472	-0.0166181247142
+UniRef50_A0A024TW04	Secondary thiamine phosphate synthase enzyme, variant	1.5965533313e-05	2.6701071707e-05	1.0735538394e-05
+UniRef50_G8VL07	Universal stress protein UspA	0.000132761778031	0.00617243139378	0.00603966961575
+UniRef50_UPI00006D0388	conserved hypothetical protein	5.31860992743e-05	1.68007818884e-05	-3.63853173859e-05
+UniRef50_Q795M6	Putative aminotransferase YugH	0.000220693214703	0.0013806425441	0.0011599493294
+UniRef50_I3TTH4		9.43560993708e-05	5.11235423888e-05	-4.3232556982e-05
+UniRef50_UPI0003B46BA7	hypothetical protein	0.000168082562019	1.98123795181e-05	-0.000148270182501
+UniRef50_I3TTH2		0.0150853829615	0.00350986064304	-0.0115755223185
+UniRef50_I3TTH3		0.000368796561965	8.30781764986e-05	-0.000285718385466
+UniRef50_J3XAF4	Membrane flanked domain containing protein	3.86906259438e-05	0.000342260255617	0.000303569629673
+UniRef50_Q9FFF4	Acetolactate synthase small subunit 1, chloroplastic	2.1690630046e-05	0.000165208476793	0.000143517846747
+UniRef50_Q49XL3		0.00866062858509	0.00523311632171	-0.00342751226338
+UniRef50_I1G1I4		3.64713277618e-05	6.49754156272e-06	-2.99737861991e-05
+UniRef50_UPI0003B53CAB	LolC E family lipoprotein releasing system, transmembrane protein	6.94733639748e-06	1.84101566972e-05	1.14628202997e-05
+UniRef50_UPI0003B4AD44	cytochrome C550	0.00043842693117	8.36313648316e-05	-0.000354795566338
+UniRef50_H1Z0J9	NADPH dependent FMN reductase	0.00129537751391	0.0033397006438	0.00204432312989
+UniRef50_M4QZZ1	Chloride channel protein	9.42929197787e-05	0.00451480551647	0.00442051259669
+UniRef50_U1RIR7		0.000126550057598	4.24569875954e-05	-8.40930700026e-05
+UniRef50_B2S8N8	Argininosuccinate lyase	0.00240599619993	0.000989815494563	-0.00141618070537
+UniRef50_P0A3S3	DNA entry nuclease	0.00646575110679	0.00268998530994	-0.00377576579685
+UniRef50_B4TBG4	UDP 4 amino 4 deoxy L arabinose  oxoglutarate aminotransferase	0.0029749323127	0.000369263391484	-0.00260566892122
+UniRef50_Q8CPC5	Nuclease SbcCD subunit C	0.00930050015102	0.00336481434269	-0.00593568580833
+UniRef50_Q8CQW1		0.00241949840593	0.00030853947811	-0.00211095892782
+UniRef50_A3QJF9	Ribosomal RNA large subunit methyltransferase F	0.000466750924797	0.00116991495242	0.000703164027623
+UniRef50_Q8CQW3		0.0101312948381	0.00471674221971	-0.00541455261839
+UniRef50_Q8CQW5		0.00499984721893	0.00357622625113	-0.0014236209678
+UniRef50_Q8CQW7		0.017322910438	0.000881542403566	-0.0164413680344
+UniRef50_H6P8E7	Pyridoxal phosphate enzyme, YggS family	0.00542658740054	0.0046973860078	-0.00072920139274
+UniRef50_A6LZ09		0.00128748175706	0.00210647097253	0.00081898921547
+UniRef50_G2SXD8	Aspartate aminotransferase	0.00039575677738	0.000859754110769	0.000463997333389
+UniRef50_A6M2G5	Phage infection protein, putative	0.000351590580038	0.0007821927186	0.000430602138562
+UniRef50_U5MXH4	DNA helicase, Rad3	0.000255406871656	0.000840464325227	0.000585057453571
+UniRef50_I0EP63		8.03731700836e-05	0.00215002115924	0.00206964798916
+UniRef50_UPI0003A9ADDB	hypothetical protein	0.00016440309413	0.000357350394256	0.000192947300126
+UniRef50_UPI0003B779BE	spermidine putrescine ABC transporter permease, partial	3.04269767458e-05	0.000215346823979	0.000184919847233
+UniRef50_A6M0M4	Respiratory chain NADH dehydrogenase domain, 51 kDa subunit	0.000840815573878	0.00272419067155	0.00188337509767
+UniRef50_UPI0002624FE5	Bcr CflA subfamily drug resistance transporter	9.52011697421e-06	8.52932413276e-06	-9.9079284145e-07
+UniRef50_UPI00037F95F5	hypothetical protein	8.1669980282e-05	0.000664535275814	0.000582865295532
+UniRef50_R5J671	Arabitol phosphate dehydrogenase	0.000119710144452	0.00197433174467	0.00185462160022
+UniRef50_P41006	Uracil permease	0.00473546390597	0.00304206396544	-0.00169339994053
+UniRef50_C4J3V7		0.000186800307713	0.000187548114652	7.47806939e-07
+UniRef50_E5ARK1	Transposase	9.4514906556e-06	1.44994245789e-05	5.0479339233e-06
+UniRef50_M4ZCC6	Acetylornithine deacetylase	0.00956568730844	0.00422832255539	-0.00533736475305
+UniRef50_A5UKP7		0.00259160533764	0.000233759924953	-0.00235784541269
+UniRef50_UPI00041293AC	membrane protein	0.00028893540153	0.000238199907919	-5.0735493611e-05
+UniRef50_D3DZ29	GTP binding protein	0.00302130446044	0.000960167684075	-0.00206113677636
+UniRef50_C7ZTN4	Acyl CoA dehydrogenase	0.0150278471013	0.00260501344824	-0.0124228336531
+UniRef50_E9WE17	LysR family bacterial regulatory helix turn helix protein	0.00016629338716	0.000630167165795	0.000463873778635
+UniRef50_Q8RG52	Lysine  tRNA ligase	1.48982537835e-05	4.33919008605e-06	-1.05590636974e-05
+UniRef50_A0A022NN79	Putative transcriptional regulator	6.2296976176e-05	0.000332100182845	0.000269803206669
+UniRef50_Q5F7E0	ATP phosphoribosyltransferase	3.88254468993e-05	0.001991412023	0.0019525865761
+UniRef50_B9DNZ7	UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.0174892627418	0.003845889404	-0.0136433733378
+UniRef50_A4J5C2	Methylenetetrahydrofolate reductase	0.000272012488274	0.00115860436454	0.000886591876266
+UniRef50_E4RJQ9	Cysteine desulfurase, SufS subfamily	0.000278235589752	0.000690406627596	0.000412171037844
+UniRef50_UPI0001E8958F	inosine uridine nucleoside hydrolase	1.12008384976e-05	7.75092426812e-06	-3.44991422948e-06
+UniRef50_P29849	Maltodextrin phosphorylase	0.00459365359943	0.00537675140239	0.00078309780296
+UniRef50_P76272		0.00338203376751	0.00118543516999	-0.00219659859752
+UniRef50_D3QGG7	Tributyrin esterase	0.039792210454	0.00738705035634	-0.0324051600977
+UniRef50_G4KXX3		0.000100573531661	0.0014600370791	0.00135946354744
+UniRef50_W7DIL1	Shikimate 5 dehydrogenase	3.31789155702e-05	2.76999942654e-05	-5.4789213048e-06
+UniRef50_A3PGM6	50S ribosomal protein L6	0.0269542735652	0.00459529538046	-0.0223589781847
+UniRef50_A6M2I8		0.000440024954543	0.000867287131708	0.000427262177165
+UniRef50_A0A024DHC4	MarR family transcriptional regulator	0.00154145689254	0.000880443303739	-0.000661013588801
+UniRef50_Q8VRM3	Type II secretion system protein L	0.0042201370393	0.000556873012072	-0.00366326402723
+UniRef50_Q5HRK2	Acetyltransferase, GNAT family	0.0213467308785	0.00148941191592	-0.0198573189626
+UniRef50_A9KMQ0	L lactate dehydrogenase	0.000282471710003	0.00102085761574	0.000738385905737
+UniRef50_Q73JJ6	50S ribosomal protein L7 L12	0.0306060120911	0.00372633536007	-0.026879676731
+UniRef50_D4HCK8		0.00068729941948	0.00519892218567	0.00451162276619
+UniRef50_Q8D2Y0	Polyribonucleotide nucleotidyltransferase	4.56349494935e-06	1.85124106852e-05	1.39489157359e-05
+UniRef50_Q9RTI8	MutT nudix family protein	0.000282408470458	0.0437800975533	0.0434976890828
+UniRef50_G7U580	Pyridine nucleotide disulfide oxidoreductase	0.000205155428724	0.00376148124089	0.00355632581217
+UniRef50_O08368	Glutathione peroxidase	0.00266660622481	0.00101602243346	-0.00165058379135
+UniRef50_A1JIE0	sn glycerol 3 phosphate import ATP binding protein UgpC	6.3587661951e-05	5.14939589649e-05	-1.20937029861e-05
+UniRef50_UPI0003FD6A90	sugar ABC transporter permease	6.17822081552e-05	0.000193125491769	0.000131343283614
+UniRef50_P0A9G4	HTH type transcriptional regulator CueR	0.00467817562702	0.0233820775185	0.0187039018915
+UniRef50_Q6G970	Segregation and condensation protein B	0.0163450291323	0.00168235266177	-0.0146626764705
+UniRef50_F6D4R4	Peptidase U32	0.00274039518634	0.00124288501598	-0.00149751017036
+UniRef50_Q99VJ4	Clumping factor A	0.0251381137507	0.00420200427075	-0.0209361094799
+UniRef50_Q9RVI9		0.000686338161548	0.0469049569648	0.0462186188033
+UniRef50_Q9RVI8		0.000108265579982	0.047548525461	0.047440259881
+UniRef50_P27669	Regulatory protein UhpC	0.0020414298206	0.00102347696792	-0.00101795285268
+UniRef50_C7DA27		2.76995036226e-05	1.91020987809e-05	-8.5974048417e-06
+UniRef50_UPI00036D28EF	hypothetical protein	0.000165717272362	2.0706756809e-05	-0.000145010515553
+UniRef50_U1KC82		7.78695067687e-06	1.14565344292e-05	3.66958375233e-06
+UniRef50_UPI0003B7607C	50S ribosomal protein L13	2.01445036772e-05	8.76840848259e-05	6.75395811487e-05
+UniRef50_Q46PS3	Pseudouridine 5 phosphate glycosidase	0.00313379370701	0.000843077797164	-0.00229071590985
+UniRef50_I0C2G5	Permease	0.00537189978128	0.00145665641492	-0.00391524336636
+UniRef50_UPI0003B4774F	coproporphyrinogen III oxidase	2.95770805295e-05	1.21472574101e-05	-1.74298231194e-05
+UniRef50_Q2YSR3	HTH type transcriptional regulator SarX	0.00646980990613	0.00288228180553	-0.0035875281006
+UniRef50_Q0DU63	Os03g0204900 protein 	0.000286580420309	0.000601363125089	0.00031478270478
+UniRef50_I6T4Q5	Transcriptional regulator	0.0117581380805	0.000515087276506	-0.011243050804
+UniRef50_UPI00035E2F93	hypothetical protein	4.51260818845e-06	0.000358965536761	0.000354452928573
+UniRef50_UPI000378F4AE	hypothetical protein	3.81157553097e-06	4.36387679719e-05	3.98271924409e-05
+UniRef50_UPI000424F3F7	2 hydroxyacid dehydrogenase	1.70942989117e-05	6.22645418748e-05	4.51702429631e-05
+UniRef50_B7MG07	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.00242674528026	0.000858582712558	-0.0015681625677
+UniRef50_N9PED4	Ferrous iron transporter B	0.000226680206122	0.00757456492926	0.00734788472314
+UniRef50_F2DIT6	Predicted protein 	0.000110435142015	0.00015710855739	4.6673415375e-05
+UniRef50_C5YL49		6.85905204115e-05	4.48919709712e-05	-2.36985494403e-05
+UniRef50_UPI00046D46EC	PTS sugar transporter subunit IIA	1.95535616753e-05	9.27513891516e-05	7.31978274763e-05
+UniRef50_UPI000466BC57	branched chain amino acid ABC transporter ATP binding protein	1.08751809236e-05	0.000347672104276	0.000336796923352
+UniRef50_Q5JN18		0.000249815525412	0.000327962805693	7.8147280281e-05
+UniRef50_A0A059ILG1		3.58062078039e-05	2.11364456803e-05	-1.46697621236e-05
+UniRef50_C4KRY7	Class II aldolase adducin family protein	0.000765258239834	0.00486031881027	0.00409506057044
+UniRef50_Q17Y79	ATP synthase gamma chain	0.00028574536304	0.00621061849578	0.00592487313274
+UniRef50_Q1GUM2	Valine  tRNA ligase	2.08212162336e-06	4.06325590807e-06	1.98113428471e-06
+UniRef50_E3A2F4		0.000667332534303	0.000286616227945	-0.000380716306358
+UniRef50_UPI00046731A3	hypothetical protein, partial	1.6445131153e-05	2.08546365369e-05	4.4095053839e-06
+UniRef50_A8NT37		7.00879236708e-05	8.52695010185e-05	1.51815773477e-05
+UniRef50_O95396	Adenylyltransferase and sulfurtransferase MOCS3	3.67437882588e-06	6.92430281201e-06	3.24992398613e-06
+UniRef50_G6X002	3 oxoacyl [acyl carrier protein] reductase	7.7942881778e-06	4.86746480723e-05	4.08803598945e-05
+UniRef50_A6LZM1	Cell wall associated hydrolase like protein	0.000417881168475	0.00188983880345	0.00147195763497
+UniRef50_J5HE89	Adenylosuccinate lyase	0.000287051380608	0.000141979185193	-0.000145072195415
+UniRef50_Q1C0H3	Chaperone SurA	0.00375298963505	0.000458743602547	-0.0032942460325
+UniRef50_F0VVV7	Two component sensor protein	0.00555297600271	0.000630179848313	-0.0049227961544
+UniRef50_G8VLG4	ErfK YbiS YcfS YnhG	0.000381099892006	0.00572559985553	0.00534449996352
+UniRef50_Q57625	Probable acetolactate synthase small subunit	4.42239433663e-05	0.000504575356638	0.000460351413272
+UniRef50_Q6FE82		0.000303608033935	0.00234112223242	0.00203751419848
+UniRef50_B1K4I6	Putative reductase Bcenmc03_4815	0.000490699864458	0.0002590497414	-0.000231650123058
+UniRef50_G8VKU4	Oxidoreductase	0.000224086283212	0.00443774209115	0.00421365580794
+UniRef50_UPI00036AEC25	sodium	6.510111881e-05	0.00609818877438	0.00603308765557
+UniRef50_UPI00035F3E55	hypothetical protein, partial	6.75795015523e-05	0.000323184168135	0.000255604666583
+UniRef50_UPI000345C0EA	acetyl CoA acetyltransferase	4.76058058419e-06	0.000120741072892	0.000115980492308
+UniRef50_Q9RYY7		4.80822460382e-05	0.0122430696456	0.0121949873996
+UniRef50_UPI000373C694	hypothetical protein	2.04888543159e-06	0.000130470098932	0.0001284212135
+UniRef50_Q8DW90		0.00614368875423	0.00156838304913	-0.0045753057051
+UniRef50_A6EWF4		1.98247538873e-05	0.00127873594207	0.00125891118818
+UniRef50_Q8FFV5	tRNA dihydrouridine synthase C	0.00477128604952	0.00166703114196	-0.00310425490756
+UniRef50_U5MMM3	D galactose binding periplasmic protein MglB	0.000134977111625	0.0001707032978	3.5726186175e-05
+UniRef50_F0RLL3	DEAD DEAH box helicase domain protein	0.000198556229644	0.0241900656545	0.0239915094249
+UniRef50_F8E027	Phage primase	6.06890657318e-05	0.00503696636669	0.00497627730096
+UniRef50_M5ADI0		1.01223703853e-05	1.18825014242e-05	1.7601310389e-06
+UniRef50_P20506	L Threonine dehydratase biosynthetic IlvA	0.0038204926019	0.0378869260907	0.0340664334888
+UniRef50_UPI00035D7F4D	hypothetical protein	4.50577313646e-06	6.48644736758e-05	6.03587005393e-05
+UniRef50_I0JFD7		0.00390014284455	0.000920894782945	-0.00297924806161
+UniRef50_UPI0003771410	hypothetical protein	0.000164712626692	3.89358831551e-05	-0.000125776743537
+UniRef50_X5FYX4		2.7314779204e-05	3.0160507853e-05	2.845728649e-06
+UniRef50_UPI00047310EB	hypothetical protein	2.92271743464e-05	0.000207697045711	0.000178469871365
+UniRef50_A9GJ97		6.94968456379e-05	1.39921322537e-05	-5.55047133842e-05
+UniRef50_X0QIZ7	Respiratory nitrate reductase beta chain	4.51914607553e-05	5.43761202395e-05	9.1846594842e-06
+UniRef50_A5UM16	Phosphoribosylformylglycinamidine cyclo ligase	0.0028471679797	0.00115247388795	-0.00169469409175
+UniRef50_UPI00037699BE	hypothetical protein	7.35060752184e-06	2.44860212302e-05	1.71354137084e-05
+UniRef50_O64903	Nucleoside diphosphate kinase II, chloroplastic	8.16670830468e-06	3.80956862676e-05	2.99289779629e-05
+UniRef50_Q8CRX7	Two component sensor histidine kinase like protein	0.0280098433614	0.00548567432829	-0.0225241690331
+UniRef50_Q6AB62	Thymidylate kinase	0.000416344840642	0.0148703929239	0.0144540480833
+UniRef50_A7X0T7		0.0109938934598	0.00588073305572	-0.00511316040408
+UniRef50_UPI00016C59FB	Hemolysin type calcium binding region	2.88337921734e-05	2.2231734291e-05	-6.6020578824e-06
+UniRef50_UPI0004654759	hypothetical protein, partial	2.10295561339e-05	1.78638541988e-05	-3.1657019351e-06
+UniRef50_F2LTP6	ABC type transporter, periplasmic subunit family 3	0.00245915481614	0.000527351259279	-0.00193180355686
+UniRef50_A0A011RSG6	NAD transhydrogenase subunit beta	6.73222358327e-06	5.61542929444e-06	-1.11679428883e-06
+UniRef50_A4W0M7	ATP dependent helicase nuclease subunit A	0.000396738966758	0.00380525990969	0.00340852094293
+UniRef50_F0J0R1		1.29254983483e-06	2.31000684049e-06	1.01745700566e-06
+UniRef50_I4JFC2		7.17728998954e-05	9.25072874803e-05	2.07343875849e-05
+UniRef50_UPI000466A8A4	hypothetical protein	9.92925711068e-05	0.00010906985457	9.7772834632e-06
+UniRef50_W4FWB3		1.38953207421e-05	2.69713275471e-05	1.3076006805e-05
+UniRef50_UPI000288F47D	AraC family transcriptional regulator	0.000273324948351	7.34887984343e-05	-0.000199836149917
+UniRef50_P51056	2 oxoglutarate dehydrogenase E1 component	1.54512024775e-06	3.65329671866e-05	3.49878469388e-05
+UniRef50_UPI0003834F1F	PREDICTED	1.8342475476e-05	4.37393413302e-05	2.53968658542e-05
+UniRef50_UPI000262CDFD	recombination and repair protein	2.73608127597e-06	5.71832129056e-06	2.98224001459e-06
+UniRef50_Q7N3E1	Multidrug resistance protein MdtC	3.69963399748e-05	0.00011769820902	8.07018690452e-05
+UniRef50_Q0FUB4	Replication initiator RepC	0.000499614958437	9.82180971187e-05	-0.000401396861318
+UniRef50_J3IXG8		0.000170038733717	0.000359613128836	0.000189574395119
+UniRef50_D3E2B7	Transporter CDF family	0.00265342289965	0.000695117961878	-0.00195830493777
+UniRef50_UPI000225A94B	Hsp33 like chaperonin	0.000779396375078	0.000255434602639	-0.000523961772439
+UniRef50_E3J1U8	DNA polymerase I	0.000101395470254	0.00633086625638	0.00622947078613
+UniRef50_UPI0003B712C5	DNA invertase	0.000223578042452	0.000230587298608	7.009256156e-06
+UniRef50_G8V5D6	Bacterial extracellular solute binding family protein	0.0138644302921	0.00240490301547	-0.0114595272766
+UniRef50_Q03UL2	Dihydroxy acid dehydratase	5.9740342955e-05	9.67298599527e-05	3.69895169977e-05
+UniRef50_UPI0004770CE7	hypothetical protein	3.76233949515e-05	5.62861832217e-05	1.86627882702e-05
+UniRef50_Q1ZXF1	Probable enoyl CoA hydratase, mitochondrial	1.11722743404e-05	1.72701200398e-05	6.0978456994e-06
+UniRef50_UPI000377CE34	hypothetical protein	2.37850172196e-05	5.39901299185e-05	3.02051126989e-05
+UniRef50_J9V4P4		0.00233306266731	0.000835801995839	-0.00149726067147
+UniRef50_UPI0003802583	PE family protein	6.08282753244e-06	0.000175040623174	0.000168957795642
+UniRef50_G8AVW9		7.2682884003e-05	0.000125366249979	5.2683365976e-05
+UniRef50_K4Q9Y1	ATP dependent RNA helicase DBP2	0.00412756262897	0.00389303732075	-0.00023452530822
+UniRef50_P30979		0.00540839498659	0.000459824699511	-0.00494857028708
+UniRef50_E1PKG3	Putative aliphatic sulfonates binding protein	1.85556602353e-05	5.61727967036e-05	3.76171364683e-05
+UniRef50_UPI000383147C	hypothetical protein M271_01890	1.05612347882e-05	7.75544796485e-06	-2.80578682335e-06
+UniRef50_Q0APX2		3.65529882866e-05	1.72398465042e-05	-1.93131417824e-05
+UniRef50_M7XX40		6.88539407456e-05	5.33094020849e-05	-1.55445386607e-05
+UniRef50_R9ZJZ3	TonB denpendent receptor	0.00118929246388	0.000532329678268	-0.000656962785612
+UniRef50_A6LV94		0.00068557575284	0.00472633868302	0.00404076293018
+UniRef50_V6VNG0	HTH like domain protein	0.000228989867768	8.49952681128e-05	-0.000143994599655
+UniRef50_C2ZZN3		8.82749090328e-06	0.000619985902531	0.000611158411628
+UniRef50_R9SHV7	Metallophosphoesterase	0.00234114998256	0.000421988593527	-0.00191916138903
+UniRef50_UPI0002DF27A4	hypothetical protein	6.97233916572e-05	1.44271334238e-05	-5.52962582334e-05
+UniRef50_UPI0003649624	hypothetical protein	4.93026556505e-05	1.16813941146e-05	-3.76212615359e-05
+UniRef50_UPI00047E508E	light independent protochlorophyllide reductase subunit B	0.000258127195561	1.65369861839e-05	-0.000241590209377
+UniRef50_UPI000363054E	hypothetical protein, partial	7.46707381039e-05	1.81557248829e-05	-5.6515013221e-05
+UniRef50_I5BWG8		9.39403967344e-05	1.78204294956e-05	-7.61199672388e-05
+UniRef50_UPI000308C935	hypothetical protein	1.3857867073e-05	4.51762083976e-05	3.13183413246e-05
+UniRef50_UPI0003B370F2	flagellin	1.36188348666e-06	1.32988448902e-05	1.19369614035e-05
+UniRef50_UPI00039E8E1C	hypothetical protein	0.000133678609704	4.91943275571e-05	-8.44842821469e-05
+UniRef50_P11160	Lipopolysaccharide export system ATP binding protein LptB 	2.96361027666e-05	0.00015508154327	0.000125445440503
+UniRef50_Q5LNW7	CpaB family protein	0.0057411477203	0.000848208924025	-0.00489293879627
+UniRef50_X5ERA2		8.15304511551e-05	0.000355758580433	0.000274228129278
+UniRef50_UPI00047E842D	DNA recombination protein RecO	1.81919628433e-05	6.44128974776e-05	4.62209346343e-05
+UniRef50_UPI000372993F	hypothetical protein	6.11863226911e-05	4.1243467418e-05	-1.99428552731e-05
+UniRef50_E3ZRD8		6.16076619219e-05	0.000362978813281	0.000301371151359
+UniRef50_O67291	Isoprenyl transferase	9.07479923701e-06	1.10673354271e-05	1.99253619009e-06
+UniRef50_B2RH63	3 oxoacyl [acyl carrier protein] synthase 3	1.2330106398e-05	4.54685968132e-05	3.31384904152e-05
+UniRef50_UPI000371500A	hypothetical protein	7.43504380413e-05	5.49434999341e-05	-1.94069381072e-05
+UniRef50_UPI0003B3003D	type I secretion protein	1.37053793429e-06	9.57996948663e-06	8.20943155234e-06
+UniRef50_UPI00037EBA03	hypothetical protein	6.85830631191e-06	1.32291926616e-05	6.37088634969e-06
+UniRef50_A8EVQ3	Uroporphyrinogen decarboxylase	5.63080529302e-06	0.00346356819282	0.00345793738753
+UniRef50_UPI0003B5001E	translation initiation factor IF 3	2.29158055057e-05	4.53818132684e-05	2.24660077627e-05
+UniRef50_UPI0004411670	hypothetical protein DICSQDRAFT_95428	7.12647788253e-05	0.000316164281707	0.000244899502882
+UniRef50_Q6Z707	Non ribosomal peptide synthetase modules and related proteins like	6.99501460941e-05	0.000198393877463	0.000128443731369
+UniRef50_A0A031HIT4	Flagellar FlaF family protein	4.57779304089e-05	2.22678073091e-05	-2.35101230998e-05
+UniRef50_UPI00047D2222	3 keto L gulonate 6 phosphate decarboxylase	2.85202572222e-05	6.90856471265e-05	4.05653899043e-05
+UniRef50_W7X754		0.000148175227134	7.07395874586e-06	-0.000141101268388
+UniRef50_Q5HL20	Lipoprotein, putative	0.00763066974425	0.00228203963559	-0.00534863010866
+UniRef50_Q89XX5	Cobalt insertion protein	0.01380695419	0.00197047802827	-0.0118364761617
+UniRef50_Q3SNY6	UPF0301 protein Nwi_2752	1.77837407826e-05	3.61706666577e-05	1.83869258751e-05
+UniRef50_P52215	Thioredoxin reductase	0.000443357276977	0.00521152425718	0.0047681669802
+UniRef50_A6M1X0	ThiW protein	0.000247802618498	0.00170529207169	0.00145748945319
+UniRef50_UPI00035CB3DD	hypothetical protein	1.00000008845e-05	4.01016605615e-05	3.0101659677e-05
+UniRef50_UPI0003B37751	translation initiation factor IF 3	0.000298270122633	0.000456584023284	0.000158313900651
+UniRef50_I2FHZ3	Glycosyl transferases group 1 family protein	0.00803664835769	0.00422010241172	-0.00381654594597
+UniRef50_UPI00037E157B	hypothetical protein	1.38134316873e-05	1.09336995977e-05	-2.8797320896e-06
+UniRef50_UPI00036B9069	hypothetical protein	0.000182861087103	0.000623706072522	0.000440844985419
+UniRef50_S1EU50	Trimethylamine N oxide reductase 2	0.002328174063	0.00326165762352	0.00093348356052
+UniRef50_UPI00036A682A	hypothetical protein, partial	0.000329294625389	0.000116877607045	-0.000212417018344
+UniRef50_P45482	Cell division protein FtsZ	0.0218687320212	0.00531121753436	-0.0165575144868
+UniRef50_A9AYE8	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.43346911045e-05	5.47769971981e-06	-8.85699138469e-06
+UniRef50_UPI0003B6D0DD	peptidase M24	3.10160420158e-06	6.47976396898e-05	6.16960354882e-05
+UniRef50_U5MLD2	Anti sigma factor N terminus	0.000118087379206	0.00150944749926	0.00139136012005
+UniRef50_P76079	1,2 phenylacetyl CoA epoxidase, subunit C	0.00254045564221	0.0089886404172	0.00644818477499
+UniRef50_G4LCX9	Transcriptional regulator	0.000215170033855	0.000348433791827	0.000133263757972
+UniRef50_Q57747		0.00195994796636	0.000956771484301	-0.00100317648206
+UniRef50_E3M3A4		7.76745941055e-06	0.000231120928599	0.000223353469188
+UniRef50_Q7VRR0	Ribonuclease 3	6.23469419994e-06	3.32882281163e-05	2.70535339164e-05
+UniRef50_A5FRK6	DNA directed RNA polymerase subunit beta	5.18634167827e-06	1.15591546513e-05	6.37281297303e-06
+UniRef50_A6M049	Alcohol dehydrogenase GroES domain protein	0.000315474160481	0.000201123749283	-0.000114350411198
+UniRef50_C5X103		3.91518366528e-05	0.000265411367142	0.000226259530489
+UniRef50_Q6F9W1	tRNA dimethylallyltransferase	0.000360272948004	0.00393948227439	0.00357920932639
+UniRef50_J0P427	Type III restriction modification system DNA endonuclease	8.37491901067e-05	0.00449107667134	0.00440732748123
+UniRef50_Q492E0	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.42565749954e-06	2.60074437664e-06	-1.8249131229e-06
+UniRef50_I2ZQB3	L lactate dehydrogenase 	0.00500150632283	0.000572327537919	-0.00442917878491
+UniRef50_Q5HLD9	Peptidase, M20 M25 M40 family	0.0131572385744	0.00438155773378	-0.00877568084062
+UniRef50_B5ERH7		1.89337661166e-05	2.20970767307e-05	3.1633106141e-06
+UniRef50_S5XXA0	Exodeoxyribonuclease III	0.00289726586772	0.00185673542679	-0.00104053044093
+UniRef50_B6GDZ1		0.000101492317696	5.52094119079e-06	-9.59713765052e-05
+UniRef50_Q3Y002		8.23121811592e-06	0.000213225057899	0.000204993839783
+UniRef50_X2HWL3	TonB dependent receptor	4.42366393186e-05	0.00427443641213	0.00423019977281
+UniRef50_A8LL44		0.000181776878108	0.000284913067946	0.000103136189838
+UniRef50_A6M0N1	Response regulator receiver protein	0.00011626878507	0.000666847955777	0.000550579170707
+UniRef50_UPI0003C14EB6		5.89214799713e-06	2.58420501692e-06	-3.30794298021e-06
+UniRef50_F4DM00	Glutamate dehydrogenase	0.000737372743047	0.000561721442847	-0.0001756513002
+UniRef50_L1K914		0.00144343637847	0.00031208044929	-0.00113135592918
+UniRef50_UPI00047DD927	damage inducible protein CinA	1.78436775247e-05	4.62040231184e-06	-1.32232752129e-05
+UniRef50_X6J8Z0		4.9705646752e-05	6.58109557836e-05	1.61053090316e-05
+UniRef50_UPI0001BF5AE1	hypothetical protein SMAC_10035	0.000182342335854	1.12392023253e-05	-0.000171103133529
+UniRef50_Q97WN9	NH dependent NAD(+) synthetase	0.000145935304967	1.43769547331e-05	-0.000131558350234
+UniRef50_A3PKG7	Two component transcriptional regulator, LuxR family	0.0133780028405	0.00378085122552	-0.00959715161498
+UniRef50_P11000	Wall associated protein	0.00501275968581	0.00100929105052	-0.00400346863529
+UniRef50_A8YV22	ATP dependent 6 phosphofructokinase	2.61918372251e-05	1.37534725664e-05	-1.24383646587e-05
+UniRef50_UPI0003B46133	PREDICTED	1.34491395397e-05	1.6240284839e-05	2.7911452993e-06
+UniRef50_A0A037Z3Z8		1.98459908036e-05	4.4983075206e-05	2.51370844024e-05
+UniRef50_P16683	Putative phosphonates transport system permease protein PhnE	0.00484596011886	0.000406399135599	-0.00443956098326
+UniRef50_M7A0E0		9.12422142401e-06	0.00060932809448	0.000600203873056
+UniRef50_P32670	Multiphosphoryl transfer protein 2	0.00328149266186	0.00072600247699	-0.00255549018487
+UniRef50_R9CAH0	Cobalt transporter	2.00183578594e-05	1.94187857959e-05	-5.995720635e-07
+UniRef50_K4RS80	Potassium efflux system KefA protein   Small conductance mechanosensitive channel	0.000190274961439	5.33704888947e-05	-0.000136904472544
+UniRef50_A0A017HSP4		7.1350756846e-05	3.60468051083e-05	-3.53039517377e-05
+UniRef50_A6LTV6	SEC C motif domain protein	0.000280706847759	0.00225456132015	0.00197385447239
+UniRef50_UPI0002652F6C	PREDICTED	1.42095731848e-06	1.15256404696e-05	1.01046831511e-05
+UniRef50_P50843	4 deoxy L threo 5 hexosulose uronate ketol isomerase	7.07508711214e-06	1.61342697802e-05	9.05918266806e-06
+UniRef50_W1IC39	Chromosome I, genome	0.000130105447887	7.60929564831e-05	-5.40124914039e-05
+UniRef50_T2ENN0	Rhs element Vgr family protein	5.88719949895e-05	9.71117083152e-06	-4.9160824158e-05
+UniRef50_Q8Y0Z5	Ubiquinone biosynthesis O methyltransferase	0.00632588714021	0.00252935979752	-0.00379652734269
+UniRef50_L7WZX4		0.00102862739793	0.000107184172829	-0.000921443225101
+UniRef50_W1ELN4	Formate dehydrogenase N alpha subunit @ selenocysteine containing	0.00182811565854	0.000469955787221	-0.00135815987132
+UniRef50_A0A017HCQ2		3.4983140185e-05	1.6863370614e-05	-1.8119769571e-05
+UniRef50_C6LQB4	Deoxyribose phosphate aldolase	0.000703390041336	0.00347454415185	0.00277115411051
+UniRef50_X0T0E9	Marine sediment metagenome DNA, contig	2.99540692409e-05	0.000259955724479	0.000230001655238
+UniRef50_P39376	HTH type transcriptional regulator YjiE	0.00145593584431	0.000399622420079	-0.00105631342423
+UniRef50_V1A381	Diguanylate cyclase domain protein	0.000801783565377	0.000474585543039	-0.000327198022338
+UniRef50_F8JJM3		2.98299933071e-06	8.37502234739e-06	5.39202301668e-06
+UniRef50_Z2DBM9	Oxoglutarate dehydrogenase , E1 component	0.000179321511895	0.000127981838255	-5.133967364e-05
+UniRef50_P44908		0.00386357924937	0.00408590375589	0.00022232450652
+UniRef50_E3F0C5		0.00326124338712	0.00090628582768	-0.00235495755944
+UniRef50_UPI0003620071	hypothetical protein	0.000130390419599	4.4109367663e-05	-8.6281051936e-05
+UniRef50_Q4KJ83	Chemotaxis protein MotB	0.000647927800583	0.00017897982133	-0.000468947979253
+UniRef50_Q9KN05	Tryptophanase	0.00202232319463	0.000427342839429	-0.0015949803552
+UniRef50_F3U1C5		0.00292540284984	0.00132231360536	-0.00160308924448
+UniRef50_X3ELX1	Chloride channel protein	0.00306700943729	0.000842754567673	-0.00222425486962
+UniRef50_B2TNE9	Biotin [acetyl CoA carboxylase] ligase	0.000555498754472	0.00125014055836	0.000694641803888
+UniRef50_UPI000380DD01	hypothetical protein, partial	1.17234603637e-05	1.41508968534e-05	2.4274364897e-06
+UniRef50_F4N161		0.00146298841641	0.000202964855242	-0.00126002356117
+UniRef50_UPI0003B799F9	ribonucleoside diphosphate reductase	6.77111049682e-05	1.59109061456e-05	-5.18001988226e-05
+UniRef50_K1T508	Excinuclease ABC, A subunit 	1.23183481096e-05	2.52506955659e-05	1.29323474563e-05
+UniRef50_A6M335	1,4 alpha glucan branching enzyme	0.000241258610414	0.000940232616997	0.000698974006583
+UniRef50_UPI00035EBE88	hypothetical protein	0.000803610696332	3.37284266417e-05	-0.00076988226969
+UniRef50_W5XAJ1	Ribosomal protein L25 L23	1.55945185437e-06	5.68907861104e-06	4.12962675667e-06
+UniRef50_Z4K4V4		0.000380912420951	0.00017423410001	-0.000206678320941
+UniRef50_X1YKP1		0.000183840578989	0.000286715247755	0.000102874668766
+UniRef50_UPI00037EB0E7	hypothetical protein	5.68451315394e-06	5.01663665263e-05	4.44818533724e-05
+UniRef50_Q2CDG7	Flagellar protein FlaF, putative	2.73616851826e-05	7.29541969626e-05	4.559251178e-05
+UniRef50_I6TW14	Alpha glucosidase	0.00673120494887	0.00166542436028	-0.00506578058859
+UniRef50_P33485	Probable nuclear antigen	3.76231801468e-05	2.89250173533e-05	-8.6981627935e-06
+UniRef50_Q4L9L8	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00828413820323	0.00219932175912	-0.00608481644411
+UniRef50_D9QKH6	NAD dependent epimerase dehydratase	0.0102313738529	0.00115401881988	-0.00907735503302
+UniRef50_Q8Z9U9	DNA replication and repair protein RecF	0.000751049695102	0.000486121877901	-0.000264927817201
+UniRef50_Q8ZES9	Long chain fatty acid  CoA ligase	0.00374516453351	0.00513407284004	0.00138890830653
+UniRef50_G8NWZ5	Sigma 54 interacting domain protein	8.02024055691e-05	0.0512552923016	0.051175089896
+UniRef50_D3DZ67	Met 10+ like protein	0.000657471857311	0.00149713603876	0.000839664181449
+UniRef50_I6TX91	Histidine kinase	0.0022214135967	0.000265578539903	-0.0019558350568
+UniRef50_C8N7Z4		4.25239937372e-05	1.11979969449e-05	-3.13259967923e-05
+UniRef50_UPI00047D1D69	hypothetical protein	4.57065981839e-06	3.53270964266e-06	-1.03795017573e-06
+UniRef50_UPI0001B4124B	hypothetical protein, partial	3.59331030031e-05	0.000143826239368	0.000107893136365
+UniRef50_Q88K39	Glutaminase asparaginase	0.000406069153273	0.000169397727654	-0.000236671425619
+UniRef50_L8DZR6	Internalin J	1.66938321836e-05	9.94603168881e-06	-6.74780049479e-06
+UniRef50_A3SID6	Cation transport protein ChaC, putative	1.74670463075e-05	2.16788182281e-05	4.2117719206e-06
+UniRef50_UPI0002375A77	extracellular solute binding protein	3.40710149843e-05	0.000118570169965	8.44991549807e-05
+UniRef50_Q49VQ7	7 cyano 7 deazaguanine synthase	0.00806521111542	0.0048059425412	-0.00325926857422
+UniRef50_L6MLX7	Nitrate reductase Z subunit beta	5.31724348327e-05	9.65891227545e-05	4.34166879218e-05
+UniRef50_R4GKP1		4.9299173365e-05	5.87200702166e-06	-4.34271663433e-05
+UniRef50_E4RQB3		9.97499405749e-05	4.37307969438e-05	-5.60191436311e-05
+UniRef50_B7GYT0	Ribonuclease 3	0.000172393362484	0.00721667229284	0.00704427893036
+UniRef50_F8DL52	Rhodanese like protein	1.33248896037e-05	4.92388941969e-05	3.59140045932e-05
+UniRef50_I6TRN9		0.00693633553132	0.00222237314395	-0.00471396238737
+UniRef50_A7B8Z2	Cell wall binding repeat protein	1.3932031632e-06	0.00270170017441	0.00270030697125
+UniRef50_UPI0003764F6C	hypothetical protein	1.22795300099e-05	4.83845410668e-05	3.61050110569e-05
+UniRef50_D7GE62	ATP dependent helicase	0.00025397269057	0.00568920690393	0.00543523421336
+UniRef50_U6KE00		6.91272852732e-06	2.06300261578e-05	1.37172976305e-05
+UniRef50_J2YGZ8	FAD dependent oxidoreductase	2.23039762679e-05	0.00228928990928	0.00226698593301
+UniRef50_UPI000365642F	hypothetical protein	0.000109000725988	4.04795181971e-05	-6.85212077909e-05
+UniRef50_P00148	Cytochrome c	0.00765824938661	0.000919082695981	-0.00673916669063
+UniRef50_Q5HRL1		0.0114621021255	0.00453243147221	-0.00692967065329
+UniRef50_E3A2F6		0.00245090097262	0.00223511229618	-0.00021578867644
+UniRef50_Q0C2D0	Peptidyl tRNA hydrolase	4.52633397422e-05	2.91375234034e-05	-1.61258163388e-05
+UniRef50_UPI00046FE521	hypothetical protein	4.3759171598e-06	6.2115372859e-06	1.8356201261e-06
+UniRef50_M1MYZ3	Methyl accepting chemotaxis protein TlpC	0.000324649418513	0.000493596486554	0.000168947068041
+UniRef50_C1CXQ2		0.000266593902716	0.0333236553237	0.033057061421
+UniRef50_F8KQA4	Phospholipid binding protein	0.00018874299443	0.00623784617623	0.0060491031818
+UniRef50_UPI00045DC843	PREDICTED	1.85653597038e-05	9.28641798507e-05	7.42988201469e-05
+UniRef50_UPI000375A3E4	hypothetical protein	1.79743523816e-05	6.30039292273e-05	4.50295768457e-05
+UniRef50_A0RBY1		8.07209506317e-05	0.0018079607547	0.00172723980407
+UniRef50_U3T289		0.000310056570229	0.00536462497939	0.00505456840916
+UniRef50_J0JAX6		6.51987325532e-05	3.00506865576e-05	-3.51480459956e-05
+UniRef50_B9TMP1		5.43559444234e-06	0.000222042635489	0.000216607041047
+UniRef50_F4ED07	Ribosomal protein L7Ae L30e S12e Gadd45	0.000425736077648	0.000661156802679	0.000235420725031
+UniRef50_A5UJE1		0.00275099529625	0.000167793582503	-0.00258320171375
+UniRef50_G0DRR1		0.000588148512511	0.00216699033911	0.0015788418266
+UniRef50_UPI0003DF491B	PREDICTED	2.90374386356e-06	2.37067446649e-05	2.08030008013e-05
+UniRef50_A3CLV1		0.00628972659019	0.00324213009939	-0.0030475964908
+UniRef50_UPI00037FE503	hypothetical protein	0.000390842627692	3.54248857044e-05	-0.000355417741988
+UniRef50_I6U158		0.00494516401457	0.000346751512944	-0.00459841250163
+UniRef50_UPI000373EEF8	MULTISPECIES	1.84981967927e-05	4.07988863808e-05	2.23006895881e-05
+UniRef50_UPI0003647A42	hypothetical protein	8.46230620889e-06	4.67913487571e-05	3.83290425482e-05
+UniRef50_J8V820		0.000322905958286	0.000168758027001	-0.000154147931285
+UniRef50_B7GVN1	Ribosomal RNA small subunit methyltransferase H	0.000190348590571	0.00703397757491	0.00684362898434
+UniRef50_S5ZQH2		4.56437616925e-05	0.00536708471361	0.00532144095192
+UniRef50_Q2RS21	Nickel import ATP binding protein NikD	0.00235669579698	0.000241732637264	-0.00211496315972
+UniRef50_B7JYJ9	Quinolinate synthase A	1.33474814719e-05	0.00173985370345	0.00172650622198
+UniRef50_U5RSM0		0.000521069616518	0.00119424906527	0.000673179448752
+UniRef50_R5FEK9		3.63194734268e-05	0.000884882185469	0.000848562712042
+UniRef50_A1VIU6	ATP synthase subunit a	0.000131071523907	0.000207725701201	7.6654177294e-05
+UniRef50_I8QU08		4.77851717485e-05	0.000202450957361	0.000154665785613
+UniRef50_UPI000329212D	PREDICTED	0.000189659863134	3.16783074381e-05	-0.000157981555696
+UniRef50_P15047	2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.00346408025147	0.000397664880272	-0.0030664153712
+UniRef50_UPI0001D2E7B0	Hemolysin type calcium binding region	1.11803027427e-05	5.60295394736e-06	-5.57734879534e-06
+UniRef50_P37439	PTS system glucose specific EIICB component	0.004142464285	0.00172404924137	-0.00241841504363
+UniRef50_A5UM83	Hydrogenase maturation factor, HypF	0.00234968631646	0.00152548570694	-0.00082420060952
+UniRef50_R6UTM8		1.35949819499e-05	2.59932886935e-05	1.23983067436e-05
+UniRef50_UPI0002ADB961		1.23235463975e-05	2.42462693968e-05	1.19227229993e-05
+UniRef50_Q5HQZ0		0.0131103479716	0.00310488144008	-0.0100054665315
+UniRef50_P32722	Porin D	0.000916558785393	0.00100090428843	8.4345503037e-05
+UniRef50_UPI0004661A11	3 5 exonuclease	7.10425737099e-05	0.00144890115476	0.00137785858105
+UniRef50_N0B552	HupH hydrogenase expression protein	0.000150600057615	3.2782478053e-05	-0.000117817579562
+UniRef50_UPI00035DB243	hypothetical protein	2.28332697156e-05	1.96762052644e-05	-3.1570644512e-06
+UniRef50_A0A030TPT1		0.000527371275902	0.000328091711381	-0.000199279564521
+UniRef50_A5UKE8	Type II secretion system protein F, GspF	0.002061537307	0.000325119308468	-0.00173641799853
+UniRef50_UPI000479F301	hypothetical protein	3.50860868992e-05	8.44838057622e-06	-2.6637706323e-05
+UniRef50_A6LUH2	Alanine racemase	0.000171066158086	0.000606425617678	0.000435359459592
+UniRef50_A5IVF9	Mg2+ transporter protein, CorA family protein	0.0220142577497	0.00418403523091	-0.0178302225188
+UniRef50_Q89XA0	3 isopropylmalate dehydrogenase 1	5.27731411045e-06	7.14496164088e-06	1.86764753043e-06
+UniRef50_B0VUU2		0.000172632652776	0.00848203621595	0.00830940356317
+UniRef50_Q8VVU3	Replication associated protein	0.0156344361669	0.00620062292766	-0.00943381323924
+UniRef50_E3A4C5		2.75693867163e-06	7.81516991353e-05	7.53947604637e-05
+UniRef50_A1SPT8	Phosphoribosylformylglycinamidine synthase 2	1.89351416906e-05	0.00217968614132	0.00216075099963
+UniRef50_S5RIW0		0.000229085035006	0.00233706388735	0.00210797885234
+UniRef50_UPI00036A417A	hypothetical protein	0.000317915608956	0.000248023991515	-6.9891617441e-05
+UniRef50_O33259	Methionine synthase	2.56379121598e-06	7.17471628083e-05	6.91833715923e-05
+UniRef50_UPI00047BB1A3	hypothetical protein	1.39638587177e-05	8.65137120671e-05	7.25498533494e-05
+UniRef50_A6LRU6		0.000136112736362	0.00234870030592	0.00221258756956
+UniRef50_A6LRU7		0.000473412696177	0.00203037814871	0.00155696545253
+UniRef50_A1SVB2		3.6137383823e-05	0.00370206705049	0.00366592966667
+UniRef50_B0V786		0.000216945970609	0.0182036185133	0.0179866725427
+UniRef50_UPI0003B5372C	TetR family transcriptional regulator	0.000356697056625	4.08908760697e-05	-0.000315806180555
+UniRef50_UPI0003B59C0B	dihydroorotase	2.00723904639e-05	5.22738711286e-06	-1.4845003351e-05
+UniRef50_UPI00037651B9	hypothetical protein	1.22315692599e-05	0.00119615242555	0.00118392085629
+UniRef50_A6FKW5		3.00780998878e-05	2.38624979909e-05	-6.2156018969e-06
+UniRef50_UPI0002899E1F	DNA mismatch repair protein MutS	3.97252134049e-06	5.50024096988e-05	5.10298883583e-05
+UniRef50_UPI00030D0981	hypothetical protein	5.31250666865e-06	0.000663296952683	0.000657984446014
+UniRef50_UPI00046F9613	hypothetical protein	5.36744908996e-06	5.00021355613e-06	-3.6723553383e-07
+UniRef50_Q73D76		4.30636082256e-05	0.000164216888892	0.000121153280666
+UniRef50_UPI00046CFC68	hypothetical protein	2.83228030063e-05	0.000207084000656	0.00017876119765
+UniRef50_Q0VN76	PhoH family protein	0.000997252693451	0.000295201448707	-0.000702051244744
+UniRef50_Q8H580		9.2087217049e-05	3.24395649477e-05	-5.96476521013e-05
+UniRef50_D7B233		1.68705425893e-05	1.65801358349e-05	-2.904067544e-07
+UniRef50_UPI000289E08F	glutathione ABC transporter substrate binding protein GsiB	2.27080401129e-05	2.41766017171e-05	1.4685616042e-06
+UniRef50_A6M367	Extracellular solute binding protein, family 1	0.000490017689378	0.000421720443767	-6.8297245611e-05
+UniRef50_M3DCH5	3 deoxy D manno octulosonic acid  8 phosphate synthase	2.94283067293e-05	5.30833351331e-05	2.36550284038e-05
+UniRef50_UPI0003B45A6F	MULTISPECIES	0.000155705562304	8.44071788382e-05	-7.12983834658e-05
+UniRef50_A6Q773	50S ribosomal protein L19	0.0236262437361	0.000735228311697	-0.0228910154244
+UniRef50_Q28MI3		0.000235525447874	2.40717833819e-05	-0.000211453664492
+UniRef50_Q28MI2		8.87149931269e-05	3.61383847973e-05	-5.25766083296e-05
+UniRef50_UPI0004696A5C	glyceraldehyde 3 phosphate dehydrogenase	9.18406024137e-05	4.96701491977e-05	-4.2170453216e-05
+UniRef50_Q03UP2	Aryl alcohol dehydrogenase family enzyme	0.00556827580353	0.00287911864757	-0.00268915715596
+UniRef50_D5ZLN9	Predicted protein	4.53374215072e-05	2.58598590777e-05	-1.94775624295e-05
+UniRef50_A5ULA0	Multidrug ABC transporter, ATPase component	0.00380683345404	0.00102260498507	-0.00278422846897
+UniRef50_F0YBG4		2.60529422634e-06	9.39380051857e-06	6.78850629223e-06
+UniRef50_P59495	Glutathione synthetase	6.14820115543e-05	1.09680640788e-05	-5.05139474755e-05
+UniRef50_UPI0003D30C55	sulfoxide reductase heme binding subunit yedz	5.63469727133e-05	1.63265863384e-05	-4.00203863749e-05
+UniRef50_N6Z631	Cytosine deaminase	0.000543536161781	0.000332660204175	-0.000210875957606
+UniRef50_Q9HZK8	Na translocating NADH quinone reductase subunit C	0.000948779344854	0.000322552694912	-0.000626226649942
+UniRef50_UPI0002B49D99	PREDICTED	1.02818443732e-05	2.63854480093e-05	1.61036036361e-05
+UniRef50_P0A8Z9	Esterase YqiA	0.00122407307144	0.000726425818614	-0.000497647252826
+UniRef50_UPI0003458FD8	hypothetical protein	1.8023635718e-05	4.63878449032e-05	2.83642091852e-05
+UniRef50_K0HFH6		0.000293382892887	0.00532954987164	0.00503616697875
+UniRef50_Q3J266		0.00401887937646	0.00147899144678	-0.00253988792968
+UniRef50_Q3J267		0.00233338886165	0.000342648156063	-0.00199074070559
+UniRef50_M9VDE3	ABC transporter	0.000142809746505	0.00567602304324	0.00553321329673
+UniRef50_Q8CU42	Carbamate kinase 2	0.0122333741852	0.00575793985231	-0.00647543433289
+UniRef50_F7YL25	Thiamine binding protein	0.00194503454444	0.000277727308957	-0.00166730723548
+UniRef50_E8QNM4		0.000111753251029	0.00348421551617	0.00337246226514
+UniRef50_H8L2K5	Phage tail sheath protein FI	0.00111117451391	0.00114957701733	3.840250342e-05
+UniRef50_A2RCF8	Ribonuclease P protein component	0.00186152913728	0.00104321338437	-0.00081831575291
+UniRef50_G7U4V3	Oxidoreductase, Gfo Idh MocA family protein	0.000138781613551	0.00637509469001	0.00623631307646
+UniRef50_P39365	Putative permease IIC component	0.00301314573935	0.000139629647843	-0.00287351609151
+UniRef50_UPI00034B692F	hypothetical protein	1.09266394512e-05	5.06024177953e-06	-5.86639767167e-06
+UniRef50_UPI00047130C0	hypothetical protein	6.32803965929e-05	5.64194487772e-05	-6.8609478157e-06
+UniRef50_X6KZ77		0.000562266550961	0.000260860702499	-0.000301405848462
+UniRef50_UPI0004651C83	hypothetical protein	2.60498876052e-05	2.59308762719e-05	-1.190113333e-07
+UniRef50_UPI0003B2E3F6	DNA polymerase III subunit alpha	7.28137946038e-06	2.8354446112e-06	-4.44593484918e-06
+UniRef50_C1DRR2	3 phosphoshikimate 1 carboxyvinyltransferase	0.000685481902221	0.000795735973312	0.000110254071091
+UniRef50_F0XXB3		0.000106792685367	0.000198210538999	9.1417853632e-05
+UniRef50_W0YJM1	Putative TonB dependent receptor	0.000328008067129	0.000405190701873	7.7182634744e-05
+UniRef50_E2XUN1	Iron containing alcohol dehydrogenase	0.00112123478886	0.000816680140779	-0.000304554648081
+UniRef50_D8MEB7	Serine rich repeat protein	2.59948188583e-06	6.53885502903e-06	3.9393731432e-06
+UniRef50_Q8H3H1		0.000294329214524	2.73132470593e-05	-0.000267015967465
+UniRef50_A1B945	Glutamate racemase	0.000113865216658	0.000100996588728	-1.286862793e-05
+UniRef50_Q1IXY0	DNA polymerase of the X family containing C terminal PHP hydrolase domain	6.80563681868e-05	0.00555368635114	0.00548562998295
+UniRef50_UPI000363D712	hypothetical protein	5.64554493897e-05	0.000276817518846	0.000220362069456
+UniRef50_A0A037W4W5		3.41352956428e-05	1.42529408535e-05	-1.98823547893e-05
+UniRef50_A6LQ35	Cyclase family protein	0.000775656141478	0.000921800269252	0.000146144127774
+UniRef50_W1HHP3	Ribose ABC transporter, periplasmic ribose binding protein RbsB 	0.00046375043112	7.0702896632e-05	-0.000393047534488
+UniRef50_B0UBE5	NAD dependent epimerase dehydratase	0.000299578219869	0.000188700770092	-0.000110877449777
+UniRef50_W0YRT6	Putative phosphatase	0.00033516374106	0.000190875411799	-0.000144288329261
+UniRef50_C9RRF6	von Willebrand factor type A	0.00790326671147	0.000703346168896	-0.00719992054257
+UniRef50_UPI00036F1B6D	hypothetical protein	5.2016679182e-05	2.12509484603e-05	-3.07657307217e-05
+UniRef50_Q4FRK9	N acetyl gamma glutamyl phosphate reductase	0.000550735507107	0.0100520141822	0.00950127867509
+UniRef50_B5F4E2	Fatty acid metabolism regulator protein	0.00225678985915	0.00274263208003	0.00048584222088
+UniRef50_A6QFE8		0.0199393980434	0.00840442294886	-0.0115349750945
+UniRef50_O29388	Probable amidophosphoribosyltransferase	0.000516832228728	0.000903138373516	0.000386306144788
+UniRef50_UPI0002192A6F	hypothetical protein, partial	4.63514613452e-05	6.41552819661e-05	1.78038206209e-05
+UniRef50_U5MW64	Diguanylate cyclase and metal dependent phosphohydrolase	0.00035747651459	0.000840571999087	0.000483095484497
+UniRef50_M7DL42	Type I restriction modification system, specificity determinant	0.00541487252299	0.00223062602793	-0.00318424649506
+UniRef50_B9KJA0	Acetyl CoA hydrolase	0.00946553154836	0.0014150338646	-0.00805049768376
+UniRef50_UPI0002003A9E	L serine ammonia lyase, partial	1.96088494963e-05	0.000202295259513	0.000182686410017
+UniRef50_UPI000469BD09	hypothetical protein	2.73897386692e-05	1.46430802207e-05	-1.27466584485e-05
+UniRef50_B5YJ32	Elongation factor P	9.87868361822e-06	3.56460190837e-05	2.57673354655e-05
+UniRef50_Q8P1D8		0.00588093440391	0.00116547973889	-0.00471545466502
+UniRef50_UPI0003B5C7ED	histidine kinase, partial	5.54160302854e-05	0.00516405219345	0.00510863616316
+UniRef50_Q8E7L9	Adapter protein MecA	0.000184439408233	0.000235312115686	5.0872707453e-05
+UniRef50_J0EKQ4		0.000544450945461	0.000443205038943	-0.000101245906518
+UniRef50_Q49YT7	Ferritin	0.0109082595338	0.00248498315549	-0.00842327637831
+UniRef50_R0ESP5	Replication initiation protein RepC 	0.00032405888911	4.00430322278e-05	-0.000284015856882
+UniRef50_Q2LUE0	Tryptophan synthase alpha chain	1.45735328541e-05	5.42814606691e-06	-9.14538678719e-06
+UniRef50_E8SIH2	Cysteine desulfurase	0.0289048267827	0.00639126715288	-0.0225135596298
+UniRef50_U6LM07	Transportin, putative	1.05499274558e-06	0.000358658140367	0.000357603147621
+UniRef50_Q4L4T7	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0213467713986	0.00482954677885	-0.0165172246198
+UniRef50_A8Z4C3		9.24953798595e-05	0.000545910648302	0.000453415268442
+UniRef50_Q8CNM7	Ser Asp rich fibrinogen binding protein	0.0128466320814	0.00327703494994	-0.00956959713146
+UniRef50_UPI000410849B	hypothetical protein	4.71534871703e-05	1.58472817266e-05	-3.13062054437e-05
+UniRef50_K8EKX2	DNA 3 methylpurine glycosylase	0.000134177484187	0.00155608945971	0.00142191197552
+UniRef50_UPI00031BCDF1	hypothetical protein	8.14589267407e-06	0.000494525980692	0.000486380088018
+UniRef50_B0V5G5		0.000725701070767	0.00702175553421	0.00629605446344
+UniRef50_Q98C73	Mll5269 protein	0.00233615701709	0.00112865405765	-0.00120750295944
+UniRef50_UPI0003AD207F	hypothetical protein	2.9460439771e-06	5.93182510478e-05	5.63722070707e-05
+UniRef50_M1N642	Transcriptional regulator, TetR family	0.000190009725932	0.00196949366017	0.00177948393424
+UniRef50_UPI00037F1905	hypothetical protein	1.72336501293e-05	6.85726130118e-06	-1.03763888281e-05
+UniRef50_G7M799	Signal transduction histidine kinase, LytS	0.00115930237388	0.0017832294396	0.00062392706572
+UniRef50_Q5FRT7	Peptidyl tRNA hydrolase	7.24277916288e-05	3.53587290098e-05	-3.7069062619e-05
+UniRef50_Q6ABX1	Replicative DNA helicase	9.08874772519e-05	0.00818994932366	0.00809906184641
+UniRef50_A0KZD8	Glucose 1 phosphate adenylyltransferase	1.0929205567e-05	2.37085077764e-05	1.27793022094e-05
+UniRef50_B9KTQ6	TRAP T family transporter, large  inner membrane subunit	0.00381999849935	0.000307463663354	-0.003512534836
+UniRef50_A1KKI2	Dihydroorotate dehydrogenase 	5.820659425e-06	6.96606713835e-06	1.14540771335e-06
+UniRef50_UPI00030DA7F9	thioredoxin	0.000339479509458	0.000207784924361	-0.000131694585097
+UniRef50_K9ERP2		6.51849752047e-06	2.14195184547e-05	1.49010209342e-05
+UniRef50_A0A023RSC8	Diaminohydroxyphosphoribosylaminopyrimidine deaminase	0.000211725075906	0.00344782874165	0.00323610366574
+UniRef50_J7N582		3.08504985742e-05	0.00309070888943	0.00305985839086
+UniRef50_Q6N6C1	Ribonuclease 3	1.58274438912e-05	1.30235498012e-05	-2.80389409e-06
+UniRef50_Q8CR64		0.0112002390839	0.00360771804439	-0.00759252103951
+UniRef50_D5BRY1	Trimethylamine methyltransferase MttB like protein	0.00465065265852	0.00165498210449	-0.00299567055403
+UniRef50_B9KX93	ParB like nuclease	3.86496640219e-05	0.000226875829852	0.00018822616583
+UniRef50_B6J667	Arginine  tRNA ligase	3.17083194595e-06	7.91840525252e-06	4.74757330657e-06
+UniRef50_A0RJK0	Malate dehydrogenase	0.0113140302627	0.00309514517328	-0.00821888508942
+UniRef50_P9WHH0	Thioredoxin reductase	7.24085468987e-05	0.000111937120171	3.95285732723e-05
+UniRef50_G8S3A0	Zonadhesin	6.51586862235e-05	1.55159507712e-05	-4.96427354523e-05
+UniRef50_UPI0003B45B4C	porphyrin biosynthesis protein HemD	3.7267613486e-06	1.05788362479e-05	6.8520748993e-06
+UniRef50_UPI0002D482D7	hypothetical protein	4.90027264004e-05	0.000332736312694	0.000283733586294
+UniRef50_F4MZ90		0.000106130995183	0.000117132006168	1.1001010985e-05
+UniRef50_Q3IWQ9		0.000591599765443	0.000643532891962	5.1933126519e-05
+UniRef50_B2TK25	Ribosomal protein alanine acetyltransferase	0.000522528263136	0.00220179936463	0.00167927110149
+UniRef50_UPI0002F7E60E	hypothetical protein	8.03853303153e-05	7.88351408466e-05	-1.5501894687e-06
+UniRef50_P37498		9.4766357036e-05	0.0021519156283	0.00205714927126
+UniRef50_P37497		0.000449726431648	0.000864936928866	0.000415210497218
+UniRef50_M8Y264	Inner membrane transporter ygjI	9.13272553671e-05	0.000150671788373	5.93445330059e-05
+UniRef50_A3M617		0.000267720559474	0.00223904450587	0.0019713239464
+UniRef50_Q3IXS5		0.00283033569829	0.00315322674608	0.00032289104779
+UniRef50_Q98DN4	Non canonical purine NTP pyrophosphatase	0.000126005386141	3.68436427288e-05	-8.91617434122e-05
+UniRef50_Q8RFX8	tRNA N6 adenosine threonylcarbamoyltransferase	1.11875605072e-05	3.24009683361e-06	-7.94746367359e-06
+UniRef50_UPI0003642424	hypothetical protein	0.00028420229073	5.67957048102e-05	-0.00022740658592
+UniRef50_P26208	Beta glucosidase A	3.21071776104e-06	8.54588592476e-06	5.33516816372e-06
+UniRef50_N0BCG1	Thioesterase superfamily protein	1.37161196875e-05	0.000540150306769	0.000526434187082
+UniRef50_UPI0003B6024A	amidohydrolase	1.16630095649e-05	1.99861919805e-05	8.3231824156e-06
+UniRef50_I0C5D3		0.00294346456335	0.000584785554841	-0.00235867900851
+UniRef50_P32444	MreB like protein	0.000388095115748	0.00939529103395	0.0090071959182
+UniRef50_UPI0003B44D54	hypothetical protein, partial	3.231654542e-06	1.55313984278e-05	1.22997438858e-05
+UniRef50_UPI00047E3099	antitermination protein NusG	3.19485371456e-05	0.000718119465745	0.000686170928599
+UniRef50_O54479	DNA topoisomerase 4 subunit B	4.06104526265e-06	7.73769783026e-06	3.67665256761e-06
+UniRef50_A0A033LNC5	Plasmid recombination enzyme type 3 	0.0010767727695	0.000303304278421	-0.000773468491079
+UniRef50_F9YWG0		0.000703390041336	0.00344074685892	0.00273735681758
+UniRef50_Q836B6	Membrane protein	1.94542757785e-05	0.00188197701013	0.00186252273435
+UniRef50_F6E617		1.93742648487e-05	8.8250253285e-06	-1.05492395202e-05
+UniRef50_Q9JXS4	Membrane protein insertase YidC	8.89597774156e-05	0.00239224766876	0.00230328789134
+UniRef50_S0ZBX9	FhuE receptor	0.00343515259148	0.00159065668768	-0.0018444959038
+UniRef50_V8FSB8	Chitinase	0.000143052151964	0.00186008668324	0.00171703453128
+UniRef50_F6BYP3	Soluble epoxide hydrolase	0.000332022841676	0.000298299702217	-3.3723139459e-05
+UniRef50_N6YQC2	NAD specific glutamate dehydrogenase	5.18265812319e-05	4.17822705968e-05	-1.00443106351e-05
+UniRef50_M5EIH7		0.000269597361079	0.000211517762764	-5.8079598315e-05
+UniRef50_Q9F1K0	DNA polymerase III subunit alpha	0.0118030692909	0.00234609896372	-0.00945697032718
+UniRef50_Q3Z7J2	DNA methylase	0.000402913677185	0.000872582720359	0.000469669043174
+UniRef50_UPI000463CA0D	hypothetical protein	0.000183518623069	2.58781360691e-05	-0.000157640487
+UniRef50_A6LXM6	1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000125968628095	0.00236280055991	0.00223683193182
+UniRef50_E6KS29		8.91168977822e-05	0.00645756586073	0.00636844896295
+UniRef50_D6UC71		0.00066629616825	3.24591100703e-05	-0.00063383705818
+UniRef50_B8JAU2	Peptide chain release factor 1	0.000319120933889	0.00521291326167	0.00489379232778
+UniRef50_UPI0003B32316	flagellar P ring protein FlgI	7.36970633485e-06	1.49242733809e-05	7.55456704605e-06
+UniRef50_P76594		0.00177605367585	0.000720319967982	-0.00105573370787
+UniRef50_B7GV54	Probable allantoicase	0.000167771550603	0.00504667208343	0.00487890053283
+UniRef50_K8E4H2	Transcription termination factor NusA	0.00157035508195	0.00354535485164	0.00197499976969
+UniRef50_Q8X958		0.0022824864527	0.00123949875793	-0.00104298769477
+UniRef50_M4D1J6		3.83473347309e-05	0.000415188416117	0.000376841081386
+UniRef50_W1W4W6	Fibrinogen binding protein	7.08146216309e-05	4.6848854273e-05	-2.39657673579e-05
+UniRef50_UPI0003B49B6A	aminoglycoside resistance protein	6.57446914222e-06	9.91654400867e-06	3.34207486645e-06
+UniRef50_M4IFW7		0.000236270519647	7.59540531662e-05	-0.000160316466481
+UniRef50_W1IYA0		2.66037451308e-06	7.86653808263e-06	5.20616356955e-06
+UniRef50_A0A011NJ23		3.80912136999e-06	1.41565822079e-05	1.03474608379e-05
+UniRef50_D7GGE9	Glyoxalase bleomycin resistance protein dioxygenase	0.000786429143437	0.0350020384246	0.0342156092812
+UniRef50_P94558	Non canonical purine NTP pyrophosphatase	8.57356079452e-05	2.12877795506e-05	-6.44478283946e-05
+UniRef50_C1DMW2	Apolipoprotein N acyltransferase	0.000658577891726	0.000428888196953	-0.000229689694773
+UniRef50_Q7U836	Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000275589461605	0.000429094424593	0.000153504962988
+UniRef50_UPI0002893D0F	integrase catalytic subunit	0.000630060806927	2.65757676359e-05	-0.000603485039291
+UniRef50_Q47HX8	BRO, N terminal	8.53595661837e-05	2.43852100651e-05	-6.09743561186e-05
+UniRef50_Q9I122		8.14717961515e-05	7.55648366401e-05	-5.9069595114e-06
+UniRef50_UPI000467C382	hypothetical protein, partial	1.7205564345e-05	2.8946862243e-05	1.1741297898e-05
+UniRef50_Q1QM99	Bifunctional enzyme IspD IspF	5.72157068923e-06	8.19997713861e-06	2.47840644938e-06
+UniRef50_H8GX99	Minor tail protein gp26 related protein	1.22357445078e-05	0.00237500198363	0.00236276623912
+UniRef50_UPI0003150799	hypothetical protein	7.16677369495e-06	0.0010623551574	0.00105518838371
+UniRef50_A5UK29	Predicted DNA modification methylase	0.0031050708363	0.000536718182534	-0.00256835265377
+UniRef50_U2FHG3		0.000221121022929	0.000301386404106	8.0265381177e-05
+UniRef50_A0A011QRD8		2.87540708244e-05	0.000458123897433	0.000429369826609
+UniRef50_UPI00036BFACB	hypothetical protein	2.12640813726e-05	1.89001960121e-06	-1.93740617714e-05
+UniRef50_X7YZZ8	Secretory lipase family protein	1.45302078434e-05	1.26563758911e-05	-1.8738319523e-06
+UniRef50_Q54800	UTP  glucose 1 phosphate uridylyltransferase	0.000311862247187	0.000117392733756	-0.000194469513431
+UniRef50_R9SMD3		0.00341750059888	0.000696166975294	-0.00272133362359
+UniRef50_UPI000470CD83	cell division protein FtsZ	1.20496486528e-05	1.5034923146e-05	2.9852744932e-06
+UniRef50_Q28RD6	Ribosomal RNA small subunit methyltransferase A	0.00289946658605	0.00268393358856	-0.00021553299749
+UniRef50_UPI0004750A2D	gas vesicle protein	4.41991053582e-05	9.4393944192e-05	5.01948388338e-05
+UniRef50_UPI0002BA7CDC	hypothetical protein, partial	0.000731463294014	0.000185035929831	-0.000546427364183
+UniRef50_UPI00047D5FC6	hypothetical protein	4.5162956086e-05	3.04948972678e-05	-1.46680588182e-05
+UniRef50_UPI0003AA219E	hypothetical protein	0.000120631958295	0.000177069892924	5.6437934629e-05
+UniRef50_P22939	Farnesyl diphosphate synthase	0.00312635788628	0.00285008169582	-0.00027627619046
+UniRef50_D3QDI5		0.0129653403119	0.0013258776586	-0.0116394626533
+UniRef50_Q2RSB2	NAD transhydrogenase subunit alpha part 1	0.000201236462023	0.0102328570823	0.0100316206203
+UniRef50_R6EN42	Selenium dependent molybdenum hydroxylase 1	0.000594656477845	0.00150534575444	0.000910689276595
+UniRef50_D4HEA1	Hydrolase, NUDIX family	0.000403539301834	0.00620362742993	0.0058000881281
+UniRef50_UPI00025560C0	dihydropyrimidine dehydrogenase subunit A	1.15072816461e-05	3.02805556708e-05	1.87732740247e-05
+UniRef50_Z6NTK4		4.74316208288e-05	0.00180806146039	0.00176062983956
+UniRef50_P31672	NifS IcsS protein homolog	0.00382850273939	0.0020865021916	-0.00174200054779
+UniRef50_Q8CQ61	Mercuric reductase like protein	0.0210919927057	0.00358806324045	-0.0175039294652
+UniRef50_Q1QE74	1 deoxy D xylulose 5 phosphate synthase	2.37149062373e-06	9.97685745486e-06	7.60536683113e-06
+UniRef50_UPI0002193BBE	ribonucleotide diphosphate reductase subunit alpha, partial	4.15251596048e-05	0.00781014792494	0.00776862276534
+UniRef50_C7MAW1	Ferritin like protein	0.000219044094112	0.00335669577408	0.00313765167997
+UniRef50_Q6GCR4	FMN dependent NADH azoreductase	0.0107569970558	0.00308064544506	-0.00767635161074
+UniRef50_UPI0002000E25	3 hydroxybutyrate dehydrogenase	9.74184696341e-05	4.87616428808e-05	-4.86568267533e-05
+UniRef50_Q5HRI8	Hydrolase, haloacid dehalogenase like family	0.0219191948775	0.00717344310014	-0.0147457517774
+UniRef50_UPI0003099509	hypothetical protein	1.32549338813e-05	9.60880601117e-06	-3.64612787013e-06
+UniRef50_U5MWZ3	HTH type transcriptional regulator GlvR	0.00029414691084	0.00024372767966	-5.041923118e-05
+UniRef50_UPI00037E3C64	hypothetical protein	0.000109251194106	0.0003534458039	0.000244194609794
+UniRef50_UPI0003634D70	glutathione synthetase	3.91675247402e-05	2.90444991552e-05	-1.0123025585e-05
+UniRef50_A0A038FYY7		0.000233091636094	2.27798263378e-05	-0.000210311809756
+UniRef50_C9SB93	Predicted protein	9.26689968771e-05	2.09375278016e-05	-7.17314690755e-05
+UniRef50_UPI000050F857	peptide ABC transporter ATPase	1.29348605029e-05	5.34676616222e-06	-7.58809434068e-06
+UniRef50_UPI000328D76F	PREDICTED	8.08509800443e-06	2.38466608707e-05	1.57615628663e-05
+UniRef50_S6BC90		0.00713667380605	0.0017176893057	-0.00541898450035
+UniRef50_L6YLT0	Pheromone autoinducer 2 transporter	0.000111981204558	2.47322297618e-05	-8.72489747962e-05
+UniRef50_UPI0004077040	hypothetical protein	1.32803496355e-05	2.69428624307e-05	1.36625127952e-05
+UniRef50_A0A028CJ48	Type IV fimbrial assembly protein PilC	0.00194067913801	0.000211949788416	-0.00172872934959
+UniRef50_Q6GJR0	UPF0355 protein MRSA252	0.00443737335821	0.000875012459831	-0.00356236089838
+UniRef50_G8RDK6		0.0154599776358	0.000423899576834	-0.015036078059
+UniRef50_Q14P38	Hypothetical glucose inhibited protein n terminal and c terminal truncated	1.41119440627e-05	2.31265807809e-05	9.0146367182e-06
+UniRef50_Q8CPD8	Cardiolipin synthase 1	0.0100857979182	0.00365707694915	-0.00642872096905
+UniRef50_F0PBS4	PTS system, IIC component	0.000136770285816	0.000326316801329	0.000189546515513
+UniRef50_D4HDK7		0.000180903828528	0.00778319479267	0.00760229096414
+UniRef50_Q8CN46	Para nitrobenzyl esterase chain A	0.0172311438625	0.00526992318813	-0.0119612206744
+UniRef50_A6LQ09		0.00066991763206	0.00123406324237	0.00056414561031
+UniRef50_Q50028	Amidophosphoribosyltransferase	8.05744746907e-06	9.35200774792e-05	8.54626300101e-05
+UniRef50_R4QJK7	MFS transporter	9.83036429352e-05	0.00319199577081	0.00309369212787
+UniRef50_Q87Q74	Imidazolonepropionase	0.000102857217666	0.00765379509256	0.00755093787489
+UniRef50_P0C7I7	Succinyl CoA	0.000212252091912	0.000118245936551	-9.4006155361e-05
+UniRef50_X1Y946	Translation factor GUF1 homolog, mitochondrial	1.21292830404e-05	4.90522478435e-06	-7.22405825605e-06
+UniRef50_Q985R7	Mlr7559 protein	2.83690946718e-06	3.98673524484e-06	1.14982577766e-06
+UniRef50_P47691	UTP  glucose 1 phosphate uridylyltransferase	0.000217607645211	8.03295264533e-05	-0.000137278118758
+UniRef50_D8K235	DNA gyrase subunit A	8.04138150306e-06	1.5984467948e-05	7.94308644494e-06
+UniRef50_Q5ZY07	Tyrosine  tRNA ligase	0.00150561129129	0.00516109050061	0.00365547920932
+UniRef50_Q8CP00	Truncated transposase	4.78012896264e-05	0.00182670126925	0.00177889997962
+UniRef50_UPI0003B60438	ABC transporter	7.11122879581e-05	3.24187566549e-05	-3.86935313032e-05
+UniRef50_UPI00047C8194	PTS fructose transporter subunit IIC, partial	0.000380747750328	0.00100627540486	0.000625527654532
+UniRef50_UPI000370B249	hypothetical protein	7.3371337306e-05	2.17347598294e-05	-5.16365774766e-05
+UniRef50_P47203	Cell division protein FtsA	0.000817907866714	0.00096279209358	0.000144884226866
+UniRef50_E2RPM1		1.77946294791e-05	0.000152618452293	0.000134823822814
+UniRef50_I0ETC3		0.000173689872173	0.00304514785587	0.0028714579837
+UniRef50_S3ASG0		0.000205678611677	0.000204843957368	-8.34654309e-07
+UniRef50_U7QZ50		2.97044685065e-05	1.41328971289e-05	-1.55715713776e-05
+UniRef50_A0NWG0		0.000492472452184	0.00133832246948	0.000845850017296
+UniRef50_D6SE59	Transcriptional regulator, GntR family	0.0121394162887	0.00212499713052	-0.0100144191582
+UniRef50_F4FR09	Succinate semialdehyde dehydrogenase (+))	0.00871020571909	0.00191572780956	-0.00679447790953
+UniRef50_Q8XNK5	Tagatose 6 phosphate kinase	0.0250734245553	0.0064086872466	-0.0186647373087
+UniRef50_UPI000407C5D8	acyl CoA dehydrogenase	1.74269428e-05	4.15848954229e-05	2.41579526229e-05
+UniRef50_UPI0003690E4C	ATPase, partial	0.0011266004134	7.83151932378e-05	-0.00104828522016
+UniRef50_B9AFH1		7.45618551809e-05	1.30355088166e-05	-6.15263463643e-05
+UniRef50_F6D286	Glycosyl transferase family 2	0.00228073329637	0.000699684090318	-0.00158104920605
+UniRef50_A6LXN5	Methyl accepting chemotaxis sensory transducer	0.000227945118015	0.00136200969454	0.00113406457652
+UniRef50_P77316		0.0117604719164	0.006644245834	-0.0051162260824
+UniRef50_P59626	Probable dihydroorotate dehydrogenase A 	0.00603590507505	0.00709525803535	0.0010593529603
+UniRef50_A6M2U8	Methyl accepting chemotaxis sensory transducer	0.000375640604108	0.00273822716372	0.00236258655961
+UniRef50_P77318		0.00148311792614	0.000377721279616	-0.00110539664652
+UniRef50_G2RMW8	Acetylxylan esterase enzyme	0.000382381826815	0.00144537080383	0.00106298897702
+UniRef50_P60480	Isoprenyl transferase 1	0.000273540571632	0.00752340909078	0.00724986851915
+UniRef50_UPI0003808BDF	hypothetical protein	2.96754254782e-06	0.000410890034081	0.000407922491533
+UniRef50_R4XZE6	Integral membrane protein	0.0001837331267	4.41403866548e-05	-0.000139592740045
+UniRef50_D7PDW2	RmlC	0.0218160111106	0.0054850596379	-0.0163309514727
+UniRef50_UPI00036788A9	hypothetical protein	4.25852773795e-05	2.19327890648e-05	-2.06524883147e-05
+UniRef50_Q2KZM3	Integration host factor subunit alpha	0.00102363426994	0.000611000079721	-0.000412634190219
+UniRef50_D1GN41		0.000177048591137	1.78116821735e-05	-0.000159236908963
+UniRef50_K1ZZ76		0.000129471578378	3.85052287397e-05	-9.09663496383e-05
+UniRef50_UPI0003B64AAF	hydrogenase nickel incorporation protein HypA	0.000833060908762	6.71011738496e-05	-0.000765959734912
+UniRef50_UPI0004693869	hypothetical protein	3.35859695798e-05	3.35039691245e-05	-8.20004553e-08
+UniRef50_D9SVX2	Ion transport 2 domain protein	0.000318654513624	0.0019960143724	0.00167735985878
+UniRef50_M5DTK5	FMN oxidoreductase	0.000106234330817	0.00858893494279	0.00848270061197
+UniRef50_D3E3M3	RNA binding protein	0.00105861423623	0.00296794882833	0.0019093345921
+UniRef50_A9KCU3	Aspartate aminotransferase	9.25967266145e-05	0.00556275901368	0.00547016228707
+UniRef50_Q02JU1	Protein phosphatase CheZ	0.00149114289821	0.00163570894843	0.00014456605022
+UniRef50_Q8CNS6	Secretory antigen SsaA like protein	0.011082962571	0.0052096720672	-0.0058732905038
+UniRef50_UPI000402B9E3	methionyl tRNA formyltransferase	4.78971947736e-05	1.15107410921e-05	-3.63864536815e-05
+UniRef50_P80046	Isocitrate dehydrogenase [NADP]	0.0132358594195	0.0042534766752	-0.0089823827443
+UniRef50_Q9HHK0	Vng6359h	2.4449883858e-05	0.000102530749951	7.8080866093e-05
+UniRef50_H6U1K2		0.000109484242337	5.62970908979e-05	-5.31871514391e-05
+UniRef50_UPI0004676D4F	hypothetical protein	4.04652937113e-06	0.000242242140974	0.000238195611603
+UniRef50_A6LX18		0.000399183219358	0.000789180981163	0.000389997761805
+UniRef50_Q8R9W1	Acyl carrier protein	4.82925544334e-05	0.000296622347216	0.000248329792783
+UniRef50_Q322I7	IS911 ORF2	3.891943817e-05	7.66018237618e-05	3.76823855918e-05
+UniRef50_W7WXB1		0.000182605614369	0.000885069547031	0.000702463932662
+UniRef50_G8WN72	Tetratricopeptide TPR_4	1.50219540583e-05	2.13185463301e-05	6.2965922718e-06
+UniRef50_UPI00046660B8	cobinamide adenolsyltransferase	0.000161230397139	0.00208486648215	0.00192363608501
+UniRef50_B5EZV0	Probable protein kinase UbiB	0.00320088833449	0.00149242452105	-0.00170846381344
+UniRef50_Q9RZR2		0.000287425879838	0.0187789073947	0.0184914815149
+UniRef50_UPI00047ADAC8	hypothetical protein	5.77294694377e-06	0.000161884680638	0.000156111733694
+UniRef50_P0ABR8	Putative dioxygenase subunit alpha YeaW	0.00288350644618	0.00679031030624	0.00390680386006
+UniRef50_G4LKP1	AraC family transcriptional regulator	0.00103952444466	0.000172531668084	-0.000866992776576
+UniRef50_Q9RZR8		0.00113303676326	0.158341167947	0.157208131184
+UniRef50_K0CFL0		2.72527822831e-05	3.61488997494e-05	8.8961174663e-06
+UniRef50_D4HCQ6		0.000390502747092	0.00326432554259	0.0028738227955
+UniRef50_A6M372	SH3, type 3 domain protein	0.000129128616484	0.00141398748134	0.00128485886486
+UniRef50_I1EBV8		2.38469521385e-05	0.00301175355727	0.00298790660513
+UniRef50_P0CE45	Glucuronide carrier protein	0.00271726228068	0.00163473681388	-0.0010825254668
+UniRef50_V7EQN7		5.61042367013e-05	1.56936735516e-05	-4.04105631497e-05
+UniRef50_A6W322	Transposase IS4 family protein	3.26690077532e-05	3.09878303438e-05	-1.6811774094e-06
+UniRef50_I6TWA3	Integral membrane protein	0.00670483481502	0.000740453155812	-0.00596438165921
+UniRef50_A0A022P2T6		0.000252946066768	7.94925630535e-05	-0.000173453503715
+UniRef50_P75728	2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.0029925394521	0.00265402550568	-0.00033851394642
+UniRef50_UPI0002FBC2B3	hypothetical protein	9.45348808271e-05	0.000135864749085	4.13298682579e-05
+UniRef50_U5MLY8	Periplasmic metal binding protein	0.000738162390631	0.00439164984525	0.00365348745462
+UniRef50_A4EN59		0.00139767420995	0.00050338074749	-0.00089429346246
+UniRef50_O30853	Pyruvate kinase I 	0.00114877359079	0.00188384634257	0.00073507275178
+UniRef50_M9RKI9	Multidrug resistance protein	0.00399278537596	0.00141512970503	-0.00257765567093
+UniRef50_UPI0003A400F2	diaminohydroxyphosphoribosylaminopyrimidine deaminase	4.36234148132e-05	0.00025418971329	0.000210566298477
+UniRef50_D9PYH9	tRNA pseudouridine synthase Pus10	0.00213657975183	0.000147045662343	-0.00198953408949
+UniRef50_UPI000444934A	hypothetical protein STEHIDRAFT_148098	1.71341464609e-05	2.18146737348e-05	4.6805272739e-06
+UniRef50_D1DJ22		2.46820239252e-05	0.000115362268151	9.06802442258e-05
+UniRef50_F0K4V5	Proline glycine betaine ABC type transport system, ATPase component	0.000695669353697	0.000491215608188	-0.000204453745509
+UniRef50_UPI00016C406D	methylcitrate synthase	2.29927847324e-05	4.95925860547e-05	2.65998013223e-05
+UniRef50_UPI0003B5D4F6	hypothetical protein	1.31665866566e-05	2.06532255058e-05	7.4866388492e-06
+UniRef50_UPI00036DB78E	hypothetical protein	0.000159089249315	3.94591102498e-05	-0.000119630139065
+UniRef50_Q2NAA1		4.28897515685e-06	6.71800854796e-06	2.42903339111e-06
+UniRef50_UPI00035ED814	hypothetical protein, partial	1.39391620064e-05	0.000160799853503	0.000146860691497
+UniRef50_UPI000373BE23	glyceraldehyde 3 phosphate dehydrogenase, partial	0.000183222535819	5.28532042217e-05	-0.000130369331597
+UniRef50_M9VD52	Efflux ABC transporter permease	5.18762238404e-05	0.0069319656701	0.00688008944626
+UniRef50_UPI00037FDD41	hypothetical protein	8.19069551971e-06	1.37281173828e-05	5.53742186309e-06
+UniRef50_I0GDF4		1.64033268748e-05	3.0410020518e-05	1.40066936432e-05
+UniRef50_S0AE89	Allophanate hydrolase AtzF	0.000337611916097	0.00729824214236	0.00696063022626
+UniRef50_D1NC80		0.000143575956807	5.44984247138e-05	-8.90775320932e-05
+UniRef50_UPI000442239B	PREDICTED	1.6915460085e-05	0.000680029183118	0.000663113723033
+UniRef50_UPI0003FC0AD6	hypothetical protein	0.000151788253939	3.87734223892e-05	-0.00011301483155
+UniRef50_A7FNV8	Pimeloyl [acyl carrier protein] methyl ester esterase	0.00327254034239	0.00130909069981	-0.00196344964258
+UniRef50_A3JZS3		0.00019766040074	0.000313688679274	0.000116028278534
+UniRef50_E5CPU2		0.00177697564769	0.000390758585583	-0.00138621706211
+UniRef50_Q6GER3	Arginase	0.0125076170316	0.00141810767885	-0.0110895093528
+UniRef50_UPI000375E276	hypothetical protein	5.50145364519e-06	0.000138115146792	0.000132613693147
+UniRef50_D4HA59	Precorrin 6A synthase 	0.000707502677738	0.00582490901771	0.00511740633997
+UniRef50_Q8CMZ3	2 dehydropantoate 2 reductase	0.00830883951017	0.00240740348744	-0.00590143602273
+UniRef50_UPI000361337E	30S ribosomal protein S5	1.2134212494e-05	1.81763538415e-05	6.0421413475e-06
+UniRef50_Q7NFC3	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00517132403331	0.00626246737375	0.00109114334044
+UniRef50_O34997		0.0183054763861	0.0053761287071	-0.012929347679
+UniRef50_G9WGT8	dTDP 4 dehydrorhamnose reductase	0.00907222853237	0.00292478934515	-0.00614743918722
+UniRef50_A7FAW9		0.000286255250654	0.00746640847699	0.00718015322634
+UniRef50_Q2FUW4	Accessory Sec system protein Asp2	0.0215119186918	0.00767607657642	-0.0138358421154
+UniRef50_A7FAW6		0.00014842175184	0.0137011994221	0.0135527776703
+UniRef50_A7FAW0		0.000582358090914	0.0136350344581	0.0130526763672
+UniRef50_A7FAW2		0.000373313578779	0.00872122293026	0.00834790935148
+UniRef50_R9SHN0	ABC transporter ATP binding protein	0.00278389426139	0.000337506030452	-0.00244638823094
+UniRef50_UPI00046352F2	hypothetical protein	1.45136677172e-05	1.84512413226e-05	3.9375736054e-06
+UniRef50_U3SSP8		0.00539114000969	0.00078162964425	-0.00460951036544
+UniRef50_UPI000366C569	hypothetical protein	0.000166569049624	3.54394713138e-05	-0.00013112957831
+UniRef50_UPI0003C16BB8	PREDICTED	1.61029536785e-05	2.73006163166e-05	1.11976626381e-05
+UniRef50_UPI000376CC75	hypothetical protein	0.000458270968608	0.000254982075216	-0.000203288893392
+UniRef50_A6UV64	30S ribosomal protein S19	0.00192898075128	0.000433227440392	-0.00149575331089
+UniRef50_Q9K0Q4	Beta hexosaminidase	5.00383185329e-06	0.00874156825064	0.00873656441879
+UniRef50_P37669	Inner membrane protein YiaH	0.00152577712655	0.000275996920751	-0.0012497802058
+UniRef50_U3SSP7		0.00638318592068	0.00507242298452	-0.00131076293616
+UniRef50_Q08QR2	ABC D methionine uptake transporter, substrate binding protein	3.76411238867e-05	2.08963529864e-05	-1.67447709003e-05
+UniRef50_X7F6B4	Membrane protein	9.75095939175e-06	2.02717284401e-05	1.05207690484e-05
+UniRef50_Q9RS79	Dipeptidyl peptidase IV related protein	0.000240627612955	0.0433269637271	0.0430863361141
+UniRef50_UPI000369B201	NADH	2.79896104986e-06	1.15976244304e-05	8.79866338054e-06
+UniRef50_UPI00036BA5B6	hypothetical protein	7.77735127234e-06	2.12370083188e-05	1.34596570465e-05
+UniRef50_A4A467	Type IV pilus biogenesis stability protein PilW	8.36324678114e-06	1.55344313008e-05	7.17118451966e-06
+UniRef50_D6SDK6		0.000244859079133	0.000177723192699	-6.7135886434e-05
+UniRef50_UPI00045E77FA	MarR family transcriptional regulator	2.83046098879e-05	0.000184591410704	0.000156286800816
+UniRef50_R7PVC1	DNA helicase UvrD REP helicase family	0.00258092133347	0.00112856014145	-0.00145236119202
+UniRef50_P57527		0.00250056053256	0.000275139787458	-0.0022254207451
+UniRef50_P76219	TVP38 TMEM64 family membrane protein YdjX	0.0033828227249	0.000517120838683	-0.00286570188622
+UniRef50_G8V0Z4		0.00877412993885	0.00515987979217	-0.00361425014668
+UniRef50_UPI000383F1E5	PREDICTED	3.15361001781e-05	3.19561047692e-05	4.200045911e-07
+UniRef50_UPI000328DEDF	PREDICTED	9.04831890783e-05	0.000160063254856	6.95800657777e-05
+UniRef50_B3EH06	Polyribonucleotide nucleotidyltransferase	7.78843028982e-06	6.37613110064e-06	-1.41229918918e-06
+UniRef50_K7RKE8	Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR	0.00018832569052	0.00630946895641	0.00612114326589
+UniRef50_Q57766	Formylmethanofuran  tetrahydromethanopterin formyltransferase	0.00264523642331	0.000206034910605	-0.0024392015127
+UniRef50_A6M1R7	Methyl accepting chemotaxis sensory transducer	0.000863901800333	0.00179298914907	0.000929087348737
+UniRef50_Q5HPB5	Glucose specific phosphotransferase enzyme IIA component	0.0254539302591	0.00040920415787	-0.0250447261012
+UniRef50_A3SND6	ArsC family protein	0.000132792131607	9.15015893171e-05	-4.12905422899e-05
+UniRef50_A3PMB5	Large conductance mechanosensitive channel	0.0201084386923	0.00375054136981	-0.0163578973225
+UniRef50_B6AX96		0.000313884603069	9.19852653131e-05	-0.000221899337756
+UniRef50_A1KU06	Sulfite reductase [NADPH] flavoprotein alpha component	0.000127731434113	0.0033734789105	0.00324574747639
+UniRef50_M7E309	MDR permease	0.00460302035819	0.00150254674536	-0.00310047361283
+UniRef50_Q6F6V8		0.000498880161478	0.00878332463362	0.00828444447214
+UniRef50_UPI000344EB03	hypothetical protein	3.00953045403e-06	1.06341754032e-05	7.62464494917e-06
+UniRef50_M4S586	Beta lactamase domain containing protein	8.24029015742e-06	2.76703350653e-05	1.94300449079e-05
+UniRef50_H6LL43		0.000290185129516	7.36758633105e-05	-0.000216509266206
+UniRef50_F5XF11	Two component histidine kinase SenX3	0.000171066158086	0.00438125706264	0.00421019090455
+UniRef50_Q8CU74		0.00715247381234	0.00275936863705	-0.00439310517529
+UniRef50_F5WYS0	ICESt1 ORFD ATP GTP binding protein	0.000660051449838	8.84181752067e-05	-0.000571633274631
+UniRef50_UPI000360AFBD	hypothetical protein	2.81811938373e-05	7.60395207207e-06	-2.05772417652e-05
+UniRef50_K7RZE6	Transcription termination antitermination protein NusG	0.000281006939596	0.00781113212247	0.00753012518287
+UniRef50_H8I846	Formate nitrite transporter	0.00462186480245	0.000221211015129	-0.00440065378732
+UniRef50_B9KPG8		1.79712611338e-05	2.77095231551e-06	-1.52003088183e-05
+UniRef50_J9D1K7		0.000324128190113	0.00252053617521	0.0021964079851
+UniRef50_A5VTC2	D isomer specific 2 hydroxyacid dehydrogenases family protein	0.00195032563519	0.000251333366122	-0.00169899226907
+UniRef50_P52046	3 hydroxybutyryl CoA dehydratase	0.000887650654886	0.00659054324976	0.00570289259487
+UniRef50_Q0VRV2	Acetyl CoA C acetyltransferase	0.000562472016648	0.012347988704	0.0117855166874
+UniRef50_Q9RR73		0.00100078876231	0.0502645881787	0.0492637994164
+UniRef50_A5VNQ2		0.000565182321255	5.65472888275e-05	-0.000508635032428
+UniRef50_A9M492	Adhesin MafA 3	0.000123227199839	0.011298120541	0.0111748933412
+UniRef50_A6DYV3	Flagellar scaffolding protein FlgD	9.9206446965e-06	1.36952560755e-05	3.774611379e-06
+UniRef50_W4U0B3		0.000163143287358	0.000141822583322	-2.1320704036e-05
+UniRef50_Z5JZC3		6.01971740866e-05	0.000336153457143	0.000275956283056
+UniRef50_K7RUT9		0.000167771550603	0.0063029752548	0.0061352037042
+UniRef50_UPI00046E091D	PilS cassette	6.33796658764e-05	0.000164624242536	0.00010124457666
+UniRef50_M9R624	Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme	0.000749810928391	0.000480447284148	-0.000269363644243
+UniRef50_O07020	Lactate utilization protein A	0.00330081361737	0.000625536701782	-0.00267527691559
+UniRef50_UPI0003759AA3	purine nucleoside phosphorylase	4.7543742004e-05	0.000194131173471	0.000146587431467
+UniRef50_T1Y5U5	ABC transporter permease protein	0.0178999304822	0.00309685030896	-0.0148030801732
+UniRef50_C5BUP0	Urease subunit beta	7.22728688083e-05	3.12071793663e-05	-4.1065689442e-05
+UniRef50_D4W6Z6	Membrane family protein	6.2199946917e-06	2.99726827608e-05	2.37526880691e-05
+UniRef50_UPI0003C179AB	PREDICTED	2.55770629397e-05	2.84526028641e-05	2.8755399244e-06
+UniRef50_Q5HGK2	3 oxoacyl [acyl carrier protein] reductase FabG	0.0309970729355	0.0134952954547	-0.0175017774808
+UniRef50_U6KAI1		2.54745231289e-05	3.36412184966e-05	8.1666953677e-06
+UniRef50_UPI0003B35B8E	cupin	8.08235397045e-05	2.4469623906e-05	-5.63539157985e-05
+UniRef50_Q9EUS8	Polyphosphate kinase 	1.17880767505e-05	0.000524350687989	0.000512562611238
+UniRef50_G8VFL4	Cystathionine beta synthase	0.000239020447962	0.00736416276298	0.00712514231502
+UniRef50_Q99YM5	Guanylate kinase	0.0346915167994	0.0140835460324	-0.020607970767
+UniRef50_Q9CJJ1	DNA polymerase III subunit beta	0.00898002172417	0.0086717461674	-0.00030827555677
+UniRef50_D8GNU7	Cell shape determining protein MreC	0.000798831241898	0.00247413493888	0.00167530369698
+UniRef50_UPI0001A44424	betaine aldehyde dehydrogenase, partial	6.54044397151e-05	0.000292765031581	0.000227360591866
+UniRef50_UPI0003F82984	damage inducible protein CinA	2.43914407826e-05	7.59169964777e-06	-1.67997411348e-05
+UniRef50_H5Y5I7	ABC type multidrug transport system, ATPase and permease component	0.000269060549412	0.000821297541102	0.00055223699169
+UniRef50_B4TGE4	Succinylglutamate desuccinylase	0.00209478361568	0.000599826634225	-0.00149495698145
+UniRef50_Q65RE8	7 cyano 7 deazaguanine synthase	4.03911714157e-05	0.00326241652494	0.00322202535352
+UniRef50_Q3JJR8		9.95305699112e-06	0.000195985852983	0.000186032795992
+UniRef50_A5UMJ4	Type II restriction endonuclease	0.00272281622131	0.0013599855927	-0.00136283062861
+UniRef50_Q3JU21		2.18634165189e-05	2.98486573284e-06	-1.88785507861e-05
+UniRef50_UPI00047AABBE	fucose isomerase	0.000148872981473	0.000677948946537	0.000529075965064
+UniRef50_B7UNN6	ATP dependent 6 phosphofructokinase isozyme 1	0.034993714843	0.00849376788707	-0.0264999469559
+UniRef50_P46392	Acetyl  propionyl coenzyme A carboxylase alpha chain	8.87369493691e-05	0.00653772305711	0.00644898610774
+UniRef50_T0YVF7	Pyridine nucleotide transhydrogenase subunit alpha	7.75725682494e-06	1.41895951367e-05	6.43233831176e-06
+UniRef50_UPI00045E62A3	hypothetical protein	8.80963342274e-06	9.08741216152e-05	8.20644881925e-05
+UniRef50_I2RL58	PF09994 domain protein	4.04924392951e-06	2.51497573201e-05	2.11005133906e-05
+UniRef50_UPI000472C37E	PTS fructose transporter subunit IIC, partial	6.0311729084e-06	0.000153809705904	0.000147778532996
+UniRef50_C6SPS1		0.00192246950163	0.000905358373282	-0.00101711112835
+UniRef50_UPI00037FA03F	hypothetical protein	8.46849092423e-06	2.8140379124e-06	-5.65445301183e-06
+UniRef50_V4L8J8		0.000140764764599	2.94050790979e-05	-0.000111359685501
+UniRef50_A1SWY4	Leucyl phenylalanyl tRNA  protein transferase	5.9329126449e-06	1.03524407857e-05	4.4195281408e-06
+UniRef50_I4Y4D8	Thioesterase family protein	0.000147072463189	0.000102045193119	-4.502727007e-05
+UniRef50_UPI000464BB09	glycine betaine ABC transporter ATP binding protein	8.82756527973e-05	7.70220340832e-06	-8.0573449389e-05
+UniRef50_T5X6I4	Colicin I receptor	0.00364837481422	0.00222825857959	-0.00142011623463
+UniRef50_K9ZX93	Threonine  tRNA ligase	0.000137622107211	0.0420964261582	0.041958804051
+UniRef50_D4Z4T4	Aminomethyltransferase	0.000967034568974	0.000674196757176	-0.000292837811798
+UniRef50_T0VCJ2		1.95432764089e-05	0.00561807633148	0.00559853305507
+UniRef50_D7GTN9	Predicted phosphatase homologous to the C terminal domain of histone macroH2A1	1.38637711087e-05	0.000156109150731	0.000142245379622
+UniRef50_P11502	Lactose specific phosphotransferase enzyme IIA component	4.81078295433e-05	0.00166687811773	0.00161877028819
+UniRef50_UPI0004209A5E	hypothetical protein	9.4096064599e-06	0.000115076435093	0.000105666828633
+UniRef50_UPI0001FFECE5	modular polyketide synthase, partial	1.58923174253e-05	8.92442581824e-05	7.33519407571e-05
+UniRef50_UPI00017449FD	LuxR family transcriptional regulator	4.20695383552e-05	5.78168787499e-05	1.57473403947e-05
+UniRef50_UPI000378F680	hypothetical protein	1.72182927649e-05	2.04383980537e-05	3.2201052888e-06
+UniRef50_Q8XA81		0.00320240401711	0.000816114675605	-0.0023862893415
+UniRef50_A6LQJ4	Integral membrane sensor signal transduction histidine kinase	0.00030068195338	0.00107831884218	0.0007776368888
+UniRef50_Q6A662	Chaperone protein DnaJ 2	0.000515760254413	0.00496195432916	0.00444619407475
+UniRef50_Q88RZ3	Putative ribose uptake protein RbsU	0.0273427435426	0.00867479699412	-0.0186679465485
+UniRef50_A0A023RQK0		0.000227401198102	0.00552252863506	0.00529512743696
+UniRef50_A6V0G0		0.000214847805227	0.000144056929367	-7.079087586e-05
+UniRef50_Q9KD29	Manganese transport system membrane protein MntC	0.0184274774468	0.00738252906251	-0.0110449483843
+UniRef50_Q2RX27	Dihydroorotate dehydrogenase 	0.000112547909083	7.13944362462e-06	-0.000105408465458
+UniRef50_M7D5Z8	Glucosyltransferase SI	0.00180152405111	0.000160935534159	-0.00164058851695
+UniRef50_H6VUW6	Universal stress protein	1.2077110532e-05	0.000231670922108	0.000219593811576
+UniRef50_O07641	Nitrogenase iron protein	0.0134032232764	0.00834483981311	-0.00505838346329
+UniRef50_X1BTL4	Marine sediment metagenome DNA, contig	0.00018301282492	3.56922694185e-05	-0.000147320555501
+UniRef50_UPI0003B672DD	serine threonine protein phosphatase	6.01750873852e-06	1.65059218846e-05	1.04884131461e-05
+UniRef50_UPI0004764F09	hypothetical protein	1.25049829354e-05	6.37591113694e-06	-6.12907179846e-06
+UniRef50_S9SME8		0.00142380156698	0.000624224374848	-0.000799577192132
+UniRef50_B7N3G5	Putative aminoacrylate hydrolase RutD	0.00223532897472	0.00158416517713	-0.00065116379759
+UniRef50_C1E2L9	Serine pyruvate aminotransferase and or alanine glyoxylate transaminase	0.000156416846208	0.000175088955651	1.8672109443e-05
+UniRef50_UPI00034AE262	hypothetical protein	1.89565847143e-05	4.19644071805e-06	-1.47601439963e-05
+UniRef50_R0WMM8	Dehydrogenase E1 component family protein	8.91395623543e-05	0.00347903591988	0.00338989635753
+UniRef50_A0A025BQD1	Peptide ABC transporter permease	0.000444101163361	0.000551993841485	0.000107892678124
+UniRef50_Q89AJ6	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.5119010553e-05	4.19928780027e-05	2.68738674497e-05
+UniRef50_UPI00037341E7	hypothetical protein	3.05648755069e-05	7.42368384363e-05	4.36719629294e-05
+UniRef50_UPI0003699727	hypothetical protein	2.95001406898e-06	1.03926800907e-05	7.44266602172e-06
+UniRef50_S2VYA1		0.00161203981004	0.000630569477283	-0.000981470332757
+UniRef50_Q98GP9	Phosphoadenosine phosphosulfate reductase	8.84548647801e-05	1.45326902693e-05	-7.39221745108e-05
+UniRef50_UPI0003737277	hypothetical protein	1.24347800654e-05	8.61100334685e-06	-3.82377671855e-06
+UniRef50_UPI00016C406B	hypothetical protein	2.06782893365e-05	0.00336119132743	0.00334051303809
+UniRef50_K9ZZM6		9.08594968655e-05	0.00129011517711	0.00119925568024
+UniRef50_Q8ZNB8	UPF0226 protein YfcJ	0.00151599417384	0.000407635758131	-0.00110835841571
+UniRef50_UPI0003C17609	PREDICTED	1.24720416017e-05	1.58288043865e-05	3.3567627848e-06
+UniRef50_UPI000366A6AC	molybdenum ABC transporter permease, partial	6.96715264752e-05	0.000169556098307	9.98845718318e-05
+UniRef50_UPI000361A0EC	hypothetical protein	7.81388499599e-05	4.51565414392e-05	-3.29823085207e-05
+UniRef50_A1TJX6	Respiratory nitrate reductase alpha subunit apoprotein	0.00347904978328	0.000998907020898	-0.00248014276238
+UniRef50_A6LQT2	Transcriptional antiterminator, BglG	0.000585535498806	0.000854432450413	0.000268896951607
+UniRef50_Q7W5I7	Acyl carrier protein	4.43742718615e-05	0.000135375276389	9.10010045275e-05
+UniRef50_P42592	Glucosidase YgjK	0.00267833676706	0.0018147854047	-0.00086355136236
+UniRef50_Q8DSD7	30S ribosomal protein S6	0.0053352614749	0.0030092323109	-0.002326029164
+UniRef50_F5XFZ9		0.00011626878507	0.00502198955515	0.00490572077008
+UniRef50_L7VWI6		0.0002965222684	0.00215381935616	0.00185729708776
+UniRef50_Q3JWK6		0.000111061051714	6.16077896587e-05	-4.94532620553e-05
+UniRef50_Q2SVL7	Amino acid ABC transporter, permease protein	0.000920828364241	0.00936874807574	0.0084479197115
+UniRef50_A8HTG7	Glycine rich protein	3.75818057951e-05	8.35102338868e-05	4.59284280917e-05
+UniRef50_V9WKD4		1.66865494709e-05	2.71903574682e-05	1.05038079973e-05
+UniRef50_UPI0002654825	PREDICTED	0.000218779327025	0.000125590932598	-9.3188394427e-05
+UniRef50_R9ZLH4	 binding protein	0.000276271495287	0.000372247947718	9.5976452431e-05
+UniRef50_A7X4S8	Thiamine phosphate synthase	0.0162512165071	0.00532096088876	-0.0109302556183
+UniRef50_S9TII9		2.75742172611e-05	5.61566310732e-05	2.85824138121e-05
+UniRef50_UPI00037C37FD	hypothetical protein	1.49964699717e-05	4.36028973401e-05	2.86064273684e-05
+UniRef50_D2PYN9		1.34243047478e-06	3.62960602276e-05	3.49536297528e-05
+UniRef50_A3PMH2	Chromosomal replication initiator, DnaA	0.00025369362184	0.00030361581695	4.992219511e-05
+UniRef50_Q9VC54	CG6695, isoform A	2.26051916846e-05	9.81732509088e-06	-1.27878665937e-05
+UniRef50_Q9KXR1	Bifunctional protein PyrR	3.79477537662e-05	7.92772366519e-05	4.13294828857e-05
+UniRef50_R1HQL9	Putative thioesterase	1.87746586939e-06	0.00104193686432	0.00104005939845
+UniRef50_UPI0003B6B26D	heme ABC transporter ATP binding protein	3.69274342109e-06	4.48568236291e-06	7.9293894182e-07
+UniRef50_U5VKS0	6 pyruvoyl tetrahydropterin synthase	0.00106924502244	0.000603519713684	-0.000465725308756
+UniRef50_G2PZY4		1.9551527407e-05	8.31430732305e-05	6.35915458235e-05
+UniRef50_UPI000380DC6B	50S ribosomal protein L6	0.000223111110249	0.000382306720477	0.000159195610228
+UniRef50_UPI00037713A6	hypothetical protein	3.0419894852e-06	1.05508197765e-05	7.5088302913e-06
+UniRef50_UPI00016C3B98	serine threonine protein kinase	3.44119985311e-06	4.47586506109e-06	1.03466520798e-06
+UniRef50_B9KTH1	Transcriptional regulator, TetR family	0.00155322168978	0.00192006140307	0.00036683971329
+UniRef50_G2JGS2	ABC type dipeptide transport system, periplasmic component	0.000318071736837	0.0043397590703	0.00402168733346
+UniRef50_P0A349	GTP sensing transcriptional pleiotropic repressor CodY	0.00621486404786	0.00274243345645	-0.00347243059141
+UniRef50_Q9CPL9	Probable uracil permease	0.00133975908274	0.00400057022574	0.002660811143
+UniRef50_I0DAK7	UDP glucose GDP mannose dehydrogenase family protein	0.0108976994247	0.00230629229535	-0.00859140712935
+UniRef50_B3WA65	Probable potassium transport system protein kup	0.000129792056282	9.45517732816e-05	-3.52402830004e-05
+UniRef50_D2Q0P5		1.15145700096e-05	5.85915982714e-05	4.70770282618e-05
+UniRef50_K2FFC0		0.000131455139547	0.000557404254872	0.000425949115325
+UniRef50_H0B2B9		0.0109977344134	0.00309004981378	-0.00790768459962
+UniRef50_Q117D2	Formamidopyrimidine DNA glycosylase	4.80485102739e-06	1.09680837115e-05	6.16323268411e-06
+UniRef50_UPI00039DBFBF	MULTISPECIES	1.15303042107e-05	6.014540962e-06	-5.5157632487e-06
+UniRef50_G2T8N1		0.00410414141744	0.000810929493278	-0.00329321192416
+UniRef50_UPI0002557290	2,3 dihydroxybenzoate 2,3 dehydrogenase	1.6664444401e-05	2.52742763686e-05	8.6098319676e-06
+UniRef50_M9TV63		0.000294144926378	0.000460233826278	0.0001660888999
+UniRef50_A4EKM3		5.98588638428e-05	5.55798901992e-05	-4.2789736436e-06
+UniRef50_Q3JMQ9		5.02290349863e-05	0.000135798517315	8.55694823287e-05
+UniRef50_U3T560		0.000218412983181	0.00559418576684	0.00537577278366
+UniRef50_G6Y004		0.00029103906	6.44738758116e-05	-0.000226565184188
+UniRef50_A6LWZ4	Transcriptional regulator, XRE family	0.000111134245983	0.00233306378487	0.00222192953889
+UniRef50_A8ALR8	Carnitine operon protein CaiE	0.00835468738804	0.0105478625622	0.00219317517416
+UniRef50_UPI0001FFE0D7	large conductance mechanosensitive channel protein	1.05354747894e-05	2.46353667449e-05	1.40998919555e-05
+UniRef50_UPI000262A240	polar amino acid ABC transporter permease	7.11716380304e-06	3.06577852564e-05	2.35406214534e-05
+UniRef50_P57011	Signal recognition particle receptor FtsY	0.000232896301478	0.00267137741287	0.00243848111139
+UniRef50_J3XF98	Response regulator aspartate phosphatase	1.57214837176e-05	0.000177013010107	0.000161291526389
+UniRef50_UPI00036D551C	hypothetical protein	4.24201385311e-05	0.000474332582522	0.000431912443991
+UniRef50_P20925	Frd operon probable iron sulfur subunit A 	0.000240436935571	0.00116572383629	0.000925286900719
+UniRef50_B0V8H4	Outer membrane lipoprotein	0.000654599980668	0.00229743613671	0.00164283615604
+UniRef50_UPI0002F817F3	hypothetical protein	1.34716177885e-05	1.87569456925e-05	5.285327904e-06
+UniRef50_UPI0003D0DACE		2.66191742024e-05	8.26985916499e-06	-1.83493150374e-05
+UniRef50_UPI0002628372	ABC transporter permease	7.01591137044e-06	9.1167597641e-05	8.41516862706e-05
+UniRef50_UPI00046E6C82	hypothetical protein	0.00018876178714	2.53766985984e-05	-0.000163385088542
+UniRef50_Q8TMA8		0.000571027154808	0.00345213122577	0.00288110407096
+UniRef50_UPI00030EAE4B	hypothetical protein	9.31604913579e-06	5.92884746189e-05	4.99724254831e-05
+UniRef50_Q5HNQ0		0.0230934674574	0.00860544904211	-0.0144880184153
+UniRef50_C5N6Q3		0.00756979456186	0.000864341576184	-0.00670545298568
+UniRef50_B9KQJ6	Flagellar hook capping protein	0.0055570871755	0.00275216540885	-0.00280492176665
+UniRef50_C5N6Q5		0.000712237714815	0.000322779077901	-0.000389458636914
+UniRef50_UPI0002FA4ABF	hypothetical protein	1.63812690171e-05	9.94876450826e-06	-6.43250450884e-06
+UniRef50_UPI0004628FA4	hypothetical protein	7.83942943586e-05	5.5462092872e-05	-2.29322014866e-05
+UniRef50_P32718	D allose kinase	0.00422505255531	0.000762029008334	-0.00346302354698
+UniRef50_L7MJF8		5.05872473975e-05	4.73908548811e-05	-3.1963925164e-06
+UniRef50_UPI0003639553	hypothetical protein, partial	3.05847426813e-06	2.39833486033e-05	2.09248743352e-05
+UniRef50_G8B073		0.000774391466711	0.00129855481407	0.000524163347359
+UniRef50_P0A8Y3	Alpha D glucose 1 phosphate phosphatase YihX	0.00622026159926	0.000295809721398	-0.00592445187786
+UniRef50_R9SMW4	Transporter ExbD Tol family	0.00239157124303	0.000466289534524	-0.00192528170851
+UniRef50_V8G3J5		0.000436309142546	0.000282599717884	-0.000153709424662
+UniRef50_D4LWG1	ATPase components of various ABC type transport systems, contain duplicated ATPase	0.00350717226372	0.000594922189873	-0.00291225007385
+UniRef50_Q07UN5	Leucine  tRNA ligase	1.56642599484e-06	2.10485024268e-06	5.3842424784e-07
+UniRef50_P41441	Putative type II secretion system protein F	0.00168466941769	0.0016544779646	-3.019145309e-05
+UniRef50_Q8EPE6	Formamidopyrimidine DNA glycosylase	7.11819513252e-06	9.37007812337e-06	2.25188299085e-06
+UniRef50_Q87MG2	Ribonuclease HI	4.7919820593e-05	2.4437233428e-05	-2.3482587165e-05
+UniRef50_P0A2J8	Spermidine putrescine transport system permease protein PotB	0.0025142441585	0.000828959172479	-0.00168528498602
+UniRef50_F3WY50		2.35959591489e-05	2.1645342408e-05	-1.9506167409e-06
+UniRef50_X7TVE6		0.000169561674168	8.01204318782e-05	-8.94412422898e-05
+UniRef50_A0A023WMY2	Amino acid transporter	0.00211417757871	0.00138376435324	-0.00073041322547
+UniRef50_B2SB84	Zinc containing alcohol dehydrogenase superfamily	0.00091854574269	0.000417987402093	-0.000500558340597
+UniRef50_UPI000471E251	hypothetical protein	6.72164099799e-05	6.87707667232e-05	1.5543567433e-06
+UniRef50_UPI0004742581	hypothetical protein, partial	7.34301894932e-05	1.69442846507e-05	-5.64859048425e-05
+UniRef50_UPI000371C1F0	hypothetical protein	7.08006868148e-06	2.69391720763e-05	1.98591033948e-05
+UniRef50_L1JWK7		1.70422559791e-05	2.72199399273e-05	1.01776839482e-05
+UniRef50_M1X9S4		0.00136171667226	0.000302521418897	-0.00105919525336
+UniRef50_Q98D52	Peptide deformylase	6.06404125177e-05	7.8806581022e-05	1.81661685043e-05
+UniRef50_B0VM85		0.00011796437152	0.00487379042999	0.00475582605847
+UniRef50_Q9L0Q7	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.000297233062088	0.00327866215539	0.0029814290933
+UniRef50_A6LWL7	Glycosyl transferase, family 2	0.000210103733117	0.000608542521751	0.000398438788634
+UniRef50_Q98DM9	Ribosomal RNA small subunit methyltransferase I	4.01160229619e-05	1.5082016923e-05	-2.50340060389e-05
+UniRef50_Q3J1K3	Cellulose synthase like protein	0.00446604179901	0.000394399866942	-0.00407164193207
+UniRef50_A7IBU8	LigA	0.000196793621444	4.46584471011e-05	-0.000152135174343
+UniRef50_P0AGM1	UPF0118 inner membrane protein YhhT	0.00258692665867	0.00101684159176	-0.00157008506691
+UniRef50_I6WV66	Transcriptional regulator	0.000122560385996	0.00033432079833	0.000211760412334
+UniRef50_C1DCM4	Hydroxyethylthiazole kinase	1.12570303711e-05	9.41087477955e-06	-1.84615559155e-06
+UniRef50_UPI00046F396F	hypothetical protein	0.000295356594739	0.000195190639787	-0.000100165954952
+UniRef50_S3L5X6		4.34331037458e-05	0.000197774059711	0.000154340955965
+UniRef50_K8EUS8		6.02973776707e-06	0.00160194392297	0.0015959141852
+UniRef50_Q8K7S6	Ribonuclease J 2	0.000519571685317	0.00473855465759	0.00421898297227
+UniRef50_P45848		0.00287596320364	0.00109582558109	-0.00178013762255
+UniRef50_Q59650	UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000111572213456	0.000125134197123	1.3561983667e-05
+UniRef50_UPI000382C69D	hypothetical protein	4.93171770119e-05	0.000163079356461	0.000113762179449
+UniRef50_Q9Z515	Sporulation transcription regulator WhiA	0.000173689872173	0.00671002286067	0.0065363329885
+UniRef50_Q8X8Q3		0.00203545767749	0.000353836440799	-0.00168162123669
+UniRef50_R6XPV2		0.000209522808884	0.000293934127809	8.4411318925e-05
+UniRef50_G7QNB5	ABC transporter permease protein	0.014729546539	0.00196490360154	-0.0127646429375
+UniRef50_A7Z7M0	Argininosuccinate synthase	0.0212370251456	0.00584811491052	-0.0153889102351
+UniRef50_B2W926	Predicted protein	2.93586788875e-05	0.000227166696312	0.000197808017424
+UniRef50_W8N413	Lytic transglycosylase	0.000613600488153	0.000248550477328	-0.000365050010825
+UniRef50_A4CBF5		1.32776770007e-05	1.95166864731e-05	6.2390094724e-06
+UniRef50_UPI000237DF5D	cobalamin adenosyltransferase family protein	3.14085390483e-05	1.59405553876e-05	-1.54679836607e-05
+UniRef50_P62221	Protein RecA	0.0249784217034	0.0070800593789	-0.0178983623245
+UniRef50_C8RX55		2.65600949801e-05	8.08480424375e-06	-1.84752907364e-05
+UniRef50_T1JH80		1.22257321865e-06	9.74880742766e-07	-2.47692475884e-07
+UniRef50_A3DJK3	Energy coupling factor transporter ATP binding protein EcfA1	2.42264085212e-05	1.00705557871e-05	-1.41558527341e-05
+UniRef50_P0A9P7	ATP dependent RNA helicase DeaD	0.00784208772218	0.00156345348448	-0.0062786342377
+UniRef50_D6EHT9	Nitrate reductase subunit beta NarH2	2.1620539244e-05	1.01530060791e-05	-1.14675331649e-05
+UniRef50_M1MQI8	Monosaccharide ABC transporter substrate binding protein, CUT2 family	0.00108386420635	0.0012867077159	0.00020284350955
+UniRef50_Q9CLL7	Bifunctional protein PyrR	8.96691382823e-06	8.59545839347e-05	7.69876701065e-05
+UniRef50_S5CVX5		0.000108442606287	0.00411327509227	0.00400483248598
+UniRef50_D9SR17	GCN5 related N acetyltransferase	0.0017813189581	0.00218181243891	0.00040049348081
+UniRef50_C5MZ73		0.00975885037427	0.00281695741394	-0.00694189296033
+UniRef50_M9VQH6	MarR family transcriptional regulator	0.000330162672461	0.00439814740684	0.00406798473438
+UniRef50_O25001	Beta lactamase HcpA	0.000363260863075	0.00673722934297	0.00637396847989
+UniRef50_Q8FL94	DnaJ like protein DjlA	0.00386936121043	0.00123333728707	-0.00263602392336
+UniRef50_UPI0003B6B2AB	nickel ABC transporter permease	4.60357662078e-05	6.93050738469e-05	2.32693076391e-05
+UniRef50_A6WVV0	AMP dependent synthetase and ligase	0.000407168992871	0.00583266953428	0.00542550054141
+UniRef50_Q7VGP6	tRNA 2 methylthio N dimethylallyladenosine synthase	0.000103990630532	0.00468624729504	0.00458225666451
+UniRef50_C5Y6L8		0.000334753322404	4.29683419841e-05	-0.00029178498042
+UniRef50_D8LGM3		1.99146489782e-06	1.24146286499e-05	1.04231637521e-05
+UniRef50_F0P516	Replication initiation protein, truncated	0.219429720121	0.0852047566562	-0.134224963465
+UniRef50_Q895N8	Phosphopantetheine adenylyltransferase	8.71225288318e-05	1.573147295e-05	-7.13910558818e-05
+UniRef50_E3EY08	Glutathionylspermidine synthase	0.00696088495222	0.00079392691396	-0.00616695803826
+UniRef50_E2XT92	Long chain fatty acid transporter	0.000883718489308	0.000802132812382	-8.1585676926e-05
+UniRef50_P37338	HTH type transcriptional repressor CsiR	0.00359283916966	0.000952634532885	-0.00264020463678
+UniRef50_Q52881	Chemotaxis protein CheW	0.0181141240439	0.00535184842335	-0.0127622756206
+UniRef50_A8LLG1		1.92225614363e-05	1.53880859677e-05	-3.8344754686e-06
+UniRef50_UPI00047C9DA6	hypothetical protein	8.32481204106e-06	1.16471279208e-05	3.32231587974e-06
+UniRef50_P51057	Succinate dehydrogenase hydrophobic membrane anchor subunit	3.96101928542e-05	0.000155482499379	0.000115872306525
+UniRef50_D9PYS7	Predicted single stranded DNA specific exonuclease	0.00391804148773	0.000181919941603	-0.00373612154613
+UniRef50_S9SJ05		0.000745797889687	0.000130438261925	-0.000615359627762
+UniRef50_E8TFR7	TRAP transporter, 4TM 12TM fusion protein	0.00625654657014	0.00169769241938	-0.00455885415076
+UniRef50_A6M215	ATPase, BadF BadG BcrA BcrD type	0.000474958740952	0.00119896792092	0.000724009179968
+UniRef50_J9P613		2.02585331461e-05	2.94931492196e-05	9.2346160735e-06
+UniRef50_K5P2M6		4.73633612113e-05	0.00077228955095	0.000724926189739
+UniRef50_D8GSG1	Predicted transcriptional regulator, AraC family	0.000302796247737	0.00162635393454	0.0013235576868
+UniRef50_UPI0002F0964C	hypothetical protein	3.42915877634e-05	5.14111931861e-05	1.71196054227e-05
+UniRef50_F2QGL2	Competence protein	1.19670167055e-05	0.000788495367634	0.000776528350928
+UniRef50_F5X6K5	ABC transport system ATP binding protein	0.000625577626837	0.000899658995962	0.000274081369125
+UniRef50_Q1Q9B8	Single stranded DNA binding protein	0.000390502747092	0.0103297203555	0.00993921760841
+UniRef50_A4WVV8	Ferrochelatase	0.0142166060705	0.00243006482229	-0.0117865412482
+UniRef50_Q9RSX3		0.000725934593951	0.0151140807316	0.0143881461376
+UniRef50_Q9RSX2		0.000161779709512	0.0465547427678	0.0463929630583
+UniRef50_UPI000376B804	hypothetical protein	0.000379449078029	0.000126359388452	-0.000253089689577
+UniRef50_A0A023X2K9	Nitroreductase family	0.000397353672473	0.0387526127649	0.0383552590924
+UniRef50_UPI00036A2930	hypothetical protein	0.000216786443294	9.3647601387e-05	-0.000123138841907
+UniRef50_Q8Y213	Glycine  tRNA ligase beta subunit	0.000190792034906	0.0016507512256	0.00145995919069
+UniRef50_UPI000470A4B9	5 methyltetrahydrofolate  homocysteine methyltransferase	0.00164355857136	0.000150269598844	-0.00149328897252
+UniRef50_E3HK42	Lysine specific permease 2	0.00895196411539	0.0153483084517	0.00639634433631
+UniRef50_UPI0003B67722	30S ribosomal protein S15	0.000109369899132	5.34020438687e-05	-5.59678552633e-05
+UniRef50_A6LS13	Sugar isomerase 	0.00115527821766	0.000684977584469	-0.000470300633191
+UniRef50_B8JF24	Cupin 2 conserved barrel domain protein	0.000106706368685	3.33916215777e-05	-7.33147471073e-05
+UniRef50_A5UL58	Putative DNA helicase II, UvrD	0.000884829174592	0.000826856766784	-5.7972407808e-05
+UniRef50_I6SXV6	Transmembrane protein	0.00677777313624	0.00197745414317	-0.00480031899307
+UniRef50_Q7R6Y8		0.00011095544113	0.00216664253068	0.00205568708955
+UniRef50_J0I3X2	Cag pathogenicity island protein Cagb	0.000106658669702	0.00338849253255	0.00328183386285
+UniRef50_A3LE40	Glycerol kinase 	0.000578120848726	0.000117034361371	-0.000461086487355
+UniRef50_M1CWM3		3.0930972113e-06	8.62684289458e-06	5.53374568328e-06
+UniRef50_A5UP04	Multimeric flavodoxin	0.00942140029875	0.00925054564337	-0.00017085465538
+UniRef50_A6LYF1		0.000558779583827	0.000224007614567	-0.00033477196926
+UniRef50_B2TS40	Protein MurJ homolog	0.00034134121422	0.000814935255896	0.000473594041676
+UniRef50_A0A031I8F2		3.77092415845e-05	3.39168486341e-05	-3.7923929504e-06
+UniRef50_UPI0003B74B63	aldolase	2.93763442465e-05	4.56357029522e-06	-2.48127739513e-05
+UniRef50_UPI00047054F2	hypothetical protein, partial	1.24095323454e-05	9.56799856411e-06	-2.84153378129e-06
+UniRef50_B1Y0J8	Non canonical purine NTP pyrophosphatase	6.39526934465e-05	1.4219636323e-05	-4.97330571235e-05
+UniRef50_Q8K9W5	Phosphate acetyltransferase	3.33175437022e-06	6.37894867006e-06	3.04719429984e-06
+UniRef50_UPI0002486152	MerR family transcriptional regulator	0.000517453224534	6.24837777437e-05	-0.00045496944679
+UniRef50_B9KUZ2	Phage portal protein, lambda family	0.00365716099605	0.000128212751885	-0.00352894824416
+UniRef50_UPI0004745B47	RNA directed DNA polymerase, partial	1.15141999224e-05	5.97308129621e-05	4.82166130397e-05
+UniRef50_UPI000387178C	PREDICTED	1.08822213128e-05	1.41920044072e-05	3.3097830944e-06
+UniRef50_UPI000410CB45	chemotaxis protein	0.000141618129636	7.77385847604e-05	-6.38795448756e-05
+UniRef50_R4U7U8	Phosphoribosylglycinamide formyltransferase	0.000398598357149	0.00502328840371	0.00462469004656
+UniRef50_V4I3S7	Integral membrane protein	2.22021392152e-05	0.000100088149566	7.78860103508e-05
+UniRef50_L8XYT3		5.8561959107e-06	9.46652545255e-06	3.61032954185e-06
+UniRef50_UPI000265943A	PREDICTED	6.73521922903e-06	6.22339174143e-06	-5.118274876e-07
+UniRef50_A5VYM5	Outer membrane porin	0.000712052542299	0.000135259559627	-0.000576792982672
+UniRef50_P45867	Acyl CoA dehydrogenase	0.000321602418365	0.00639429722542	0.00607269480705
+UniRef50_I1E8F4		0.000935297887875	0.000253518831711	-0.000681779056164
+UniRef50_P49323	Non heme chloroperoxidase	2.15748109197e-05	0.00568611399293	0.00566453918201
+UniRef50_UPI00046F109B	isoleucyl tRNA synthase	3.30833019063e-06	8.14625551568e-06	4.83792532505e-06
+UniRef50_B1IIB8	Sensor histidine kinase	0.000167029198609	0.00160599260059	0.00143896340198
+UniRef50_B9KWJ6	Transcriptional regulator, GntR family	0.00780084468892	0.00050194971513	-0.00729889497379
+UniRef50_D1APR3	Deoxyribose phosphate aldolase	0.000236421287378	0.00111057233113	0.000874151043752
+UniRef50_A9ANN8	AMP nucleosidase	0.00924485626481	0.00295668899393	-0.00628816727088
+UniRef50_S5RJR0		0.000900629909451	0.000174228144654	-0.000726401764797
+UniRef50_UPI00037E9476	hypothetical protein	2.74504301606e-06	3.2550825026e-06	5.1003948654e-07
+UniRef50_D5ALJ5	Phage integrase	0.00955352880636	0.00347152709262	-0.00608200171374
+UniRef50_A6LVF9	Response regulator receiver and SARP domain protein	0.00101801246464	0.000663093745618	-0.000354918719022
+UniRef50_A5UM43	Energy converting hydrogenase B, subunit K, EhbK	0.00447485495977	0.000645790574129	-0.00382906438564
+UniRef50_UPI00046FBB36	hypothetical protein, partial	8.61911705199e-05	9.58202374981e-05	9.6290669782e-06
+UniRef50_X1UX68	Marine sediment metagenome DNA, contig	0.000109323446385	3.03563092429e-05	-7.89671371421e-05
+UniRef50_Q8CNT2	Phage phi PVL amidase like protein	0.00127206490012	0.00716227120475	0.00589020630463
+UniRef50_O05100	Peptide deformylase 1	1.02396419002e-05	1.35541607587e-05	3.3145188585e-06
+UniRef50_UPI0004622CC9	hypothetical protein TRAVEDRAFT_74361	7.58527652731e-05	7.22163702643e-06	-6.86311282467e-05
+UniRef50_UPI00047DE100	hypothetical protein	1.65016345996e-05	3.44549679833e-05	1.79533333837e-05
+UniRef50_UPI00037530DA	hypothetical protein	3.02183990295e-05	3.05098368141e-05	2.914377846e-07
+UniRef50_D5AMF4	ABC transporter, periplasmic substrate binding protein	0.00740140719947	0.00179561635316	-0.00560579084631
+UniRef50_A6LZL2		0.000580937019762	0.00151826894179	0.000937331922028
+UniRef50_UPI000475B6F2	4 alpha glucanotransferase	1.09153834079e-05	0.000605308000484	0.000594392617076
+UniRef50_I4B854	Pirin domain protein	0.00032713973769	0.000861831578614	0.000534691840924
+UniRef50_B9KW74	DMSO membrane protein	0.000496973199177	0.000243351804232	-0.000253621394945
+UniRef50_UPI00036F9198	DNA invertase, partial	0.000219688036698	0.000217341483536	-2.346553162e-06
+UniRef50_O66849	Anthranilate synthase component 1	2.71614728087e-05	2.26486541938e-05	-4.5128186149e-06
+UniRef50_G2I7Y6	Transposase	0.000105079604605	3.70826446056e-05	-6.79969599994e-05
+UniRef50_UPI0003B53587	GntR family transcriptional regulator	6.60938519156e-05	2.30752970623e-05	-4.30185548533e-05
+UniRef50_F3SV61		4.38530721135e-05	5.29308980956e-05	9.0778259821e-06
+UniRef50_F7YWV7	Phosphoribosylformylglycinamidine synthase, purS	2.62768944782e-05	2.76469710546e-05	1.3700765764e-06
+UniRef50_P63459	Malonyl CoA acyl carrier protein transacylase	2.29576325689e-05	6.49321669801e-05	4.19745344112e-05
+UniRef50_UPI000359C10F	PREDICTED	8.81385521473e-06	2.11432831952e-05	1.23294279805e-05
+UniRef50_Q1IZN6	Membrane associated PIN like nuclease	0.000111025290843	0.0196895551073	0.0195785298165
+UniRef50_A3X2R1		0.000171462759804	1.17956751058e-05	-0.000159667084698
+UniRef50_D9RH26	Site specific DNA methyltransferase 	0.0186619635287	0.00359423619915	-0.0150677273296
+UniRef50_UPI000226002C	hypothetical protein	0.000339514536961	4.1210001379e-05	-0.000298304535582
+UniRef50_Q1WSV7	Redox sensing transcriptional repressor Rex	0.013285517983	0.00918448931643	-0.00410102866657
+UniRef50_R5MZ93		7.78036730234e-07	0.000184692765612	0.000183914728882
+UniRef50_A4XV16	TRAP dicarboxylate transporter, DctP subunit	0.00113644968715	0.000472027018757	-0.000664422668393
+UniRef50_A6LTW4		0.000275537218136	0.00043007287164	0.000154535653504
+UniRef50_A6LTW3		0.000500744598622	0.000574929415443	7.4184816821e-05
+UniRef50_S2TB06	Protein chain release factor B 	0.000994069041706	0.000120016208388	-0.000874052833318
+UniRef50_Q06801	4 alpha glucanotransferase, chloroplastic amyloplastic	7.78501768437e-06	0.000479983725298	0.000472198707614
+UniRef50_A6LTW8		0.000636445321137	0.00311681033554	0.0024803650144
+UniRef50_B9E4P1		0.00030045898646	0.00032752979006	2.70708036e-05
+UniRef50_F4DT19	Integral membrane sensor hybrid histidine kinase	0.000477945694102	0.000305104535311	-0.000172841158791
+UniRef50_UPI0001B469EF	DNA recombination protein RecA, partial	0.000172406829549	0.000278371352803	0.000105964523254
+UniRef50_P03030	Transcriptional activator protein LysR	0.00234564869706	0.00111818786032	-0.00122746083674
+UniRef50_P98008	Nitric oxide reductase subunit B	0.0115524648824	0.00197562615567	-0.00957683872673
+UniRef50_UPI000468BEB6	hypothetical protein	6.48858194459e-06	2.87618385071e-05	2.22732565625e-05
+UniRef50_P63353	Sulfate thiosulfate import ATP binding protein CysA	0.000105477001375	2.93885309673e-05	-7.60884704077e-05
+UniRef50_UPI000376EAD9	resolvase	3.45469618252e-05	1.92979332521e-05	-1.52490285731e-05
+UniRef50_Q7UE67		3.88231862867e-06	4.84508997405e-05	4.45685811118e-05
+UniRef50_UPI00016C4079	sodium hydrogen exchanger family protein	8.28076051333e-06	6.47461040956e-06	-1.80615010377e-06
+UniRef50_P39356		0.00277116509995	0.00147919686197	-0.00129196823798
+UniRef50_P39357		0.0340379965054	0.00565478683134	-0.0283832096741
+UniRef50_Q8D1Y6	Nucleoside diphosphate kinase	6.00934656132e-05	2.03257832336e-05	-3.97676823796e-05
+UniRef50_Q9USZ1	Elongation factor G, mitochondrial	9.01198402455e-06	3.88156926285e-06	-5.1304147617e-06
+UniRef50_P39353		0.00224877196048	0.00914534370761	0.00689657174713
+UniRef50_P39351		0.00155212226196	0.000575292282856	-0.000976829979104
+UniRef50_D5ARH0	Biotin transport ATP binding protein BioM	0.000225140748821	2.47771374569e-05	-0.000200363611364
+UniRef50_C5WG38		0.000856232715292	0.000305577555117	-0.000550655160175
+UniRef50_Q8CU46	Alginate lyase	0.0101048716863	0.00498971374503	-0.00511515794127
+UniRef50_UPI0001912A18	adenylosuccinate lyase, partial	2.68019224664e-05	2.58574382721e-05	-9.444841943e-07
+UniRef50_Q8DVI5		0.00173211342997	0.00322153078716	0.00148941735719
+UniRef50_P53597	Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	4.3035404292e-05	8.06553301431e-05	3.76199258511e-05
+UniRef50_Q8RCX1	K insensitive pyrophosphate energized proton pump	0.000431607138667	0.00130398187341	0.000872374734743
+UniRef50_A9DEP6		9.31808403366e-05	9.85185169912e-05	5.3376766546e-06
+UniRef50_UPI0003AD3579	hypothetical protein	1.88580987405e-05	2.45772717178e-05	5.7191729773e-06
+UniRef50_F8JJ47		1.43529559755e-05	5.88230709542e-06	-8.47064888008e-06
+UniRef50_C3L318	Precorrin 2 C methyltransferase	0.000479855070575	0.0020546533804	0.00157479830983
+UniRef50_P44421	Methionine aminopeptidase	4.3842782238e-05	0.00721671165618	0.00717286887394
+UniRef50_E6MUY1	Amino acid carrier family protein	0.00019649594095	0.00359311770453	0.00339662176358
+UniRef50_UPI0003B5FC66	ABC transporter ATP binding protein	0.000194517563835	3.37717805397e-05	-0.000160745783295
+UniRef50_UPI00047BD4E4	hypothetical protein	2.43668381673e-06	2.1902132905e-06	-2.4647052623e-07
+UniRef50_A0A059MR78	Nitrogen fixation protein NifU	0.000891699186261	0.00324111206341	0.00234941287715
+UniRef50_UPI0002E2A0B8	hypothetical protein	6.69394705665e-05	4.21525309445e-05	-2.4786939622e-05
+UniRef50_S5S0J3	DnaJ family heat shock protein	8.24717421085e-06	1.28142056539e-05	4.56703144305e-06
+UniRef50_B1IK08	Argininosuccinate synthase	0.000316564767207	0.00173881625666	0.00142225148945
+UniRef50_O33407	Esterase EstA	0.000717375093178	0.00020794297274	-0.000509432120438
+UniRef50_UPI00047D5868	hypothetical protein	3.75638531654e-06	7.44710947036e-06	3.69072415382e-06
+UniRef50_UPI0004763C22	CREA protein	0.000237057051715	0.000130104305279	-0.000106952746436
+UniRef50_R7PWQ3	Minor teichoic acid biosynthesis protein GgaB	0.00358427962013	0.000283616829334	-0.0033006627908
+UniRef50_K0WKW0	Putrescine binding periplasmic protein	0.00204970957042	0.00026565220857	-0.00178405736185
+UniRef50_D4HAV0		0.000490241543964	0.00133225581291	0.000842014268946
+UniRef50_I0C5C5	Peptidoglycan endo beta N acetylglucosaminidase	0.01416976684	0.00399622705984	-0.0101735397802
+UniRef50_X1M7F5	Marine sediment metagenome DNA, contig	1.26461843855e-05	2.16754146203e-05	9.0292302348e-06
+UniRef50_F9L838	Phenol soluble modulin beta 1 family protein 	0.00149007627177	0.00370760454945	0.00221752827768
+UniRef50_E3ZCM1	Internalin A	5.98127674244e-06	3.43789790143e-06	-2.54337884101e-06
+UniRef50_R7AAF8		9.74116746711e-05	6.81435219618e-05	-2.92681527093e-05
+UniRef50_F7QQI7	N acetylneuraminate synthase	0.00352067091798	0.00162313600065	-0.00189753491733
+UniRef50_Q1YUP9		5.66670185165e-05	1.07169596983e-05	-4.59500588182e-05
+UniRef50_UPI000471DB3E	hypothetical protein	1.3612593653e-05	1.47388679423e-05	1.1262742893e-06
+UniRef50_V4JMQ3		7.59982990658e-05	6.87441037177e-05	-7.2541953481e-06
+UniRef50_G7MAU3	Cobalt ABC transporter, inner membrane subunit CbiQ	0.000127816926252	0.000414873607316	0.000287056681064
+UniRef50_UPI000306B7B0	hypothetical protein	0.000136462009784	8.90809707896e-06	-0.000127553912705
+UniRef50_F2ABZ8		0.000355498851954	8.283445715e-05	-0.000272664394804
+UniRef50_R5XW73	Glycerol 3 phosphate cytidyltransferase	0.00855074222465	0.000646678916486	-0.00790406330816
+UniRef50_Q039P7	tRNA specific 2 thiouridylase MnmA	0.00732019289523	0.0124862816118	0.00516608871657
+UniRef50_UPI0003AD23FF	hypothetical protein	4.06983453619e-05	0.000787746183197	0.000747047837835
+UniRef50_Q0VM47	Type II secretion system protein, putative	0.000233718436937	0.0088389869067	0.00860526846976
+UniRef50_Q47BQ9	Tripartite ATP independent periplasmic transporter, DctQ component	0.00764418838133	0.00291980844924	-0.00472437993209
+UniRef50_P76630	Inner membrane protein YgaZ	0.00355843919074	0.001808541622	-0.00174989756874
+UniRef50_Z5X8T7	Pyridine nucleotide transhydrogenase	8.1405552264e-05	6.31343540901e-05	-1.82711981739e-05
+UniRef50_G8RA57	Tandem lipo protein within Pathogenicity island	1.41899657622e-05	2.80650802923e-05	1.38751145301e-05
+UniRef50_E6JNN1		0.00166646925468	0.000563644714229	-0.00110282454045
+UniRef50_B7GZW3	Glycerol 3 phosphate dehydrogenase [NAD+]	0.000116208749974	0.00833815779723	0.00822194904726
+UniRef50_UPI0003B3F639	thioredoxin	1.76473952329e-05	6.50077638984e-05	4.73603686655e-05
+UniRef50_B6ZQQ2	Inner membrane protein YicO	0.000114044105391	0.000244063392719	0.000130019287328
+UniRef50_T1U7S9	TrbL VirB6 plasmid conjugal transfer family protein	0.00019525137354	0.0029708647117	0.00277561333816
+UniRef50_P74309	Fructose bisphosphate aldolase class 1	0.0251530955936	0.0131061484868	-0.0120469471068
+UniRef50_Q5P706	Arginine biosynthesis bifunctional protein ArgJ	5.65379877053e-05	0.00453907614432	0.00448253815661
+UniRef50_G8VD08	Amino acid carrier protein	0.000179029881523	0.00672715510309	0.00654812522157
+UniRef50_Q88PJ9	Type IV pili biogenesis protein PilF	1.3149674167e-05	0.000649540969014	0.000636391294847
+UniRef50_B9KMF9		0.0017508937293	2.1564357708e-05	-0.00172932937159
+UniRef50_UPI0004572EA5	PREDICTED	3.5391665733e-05	9.42746626859e-06	-2.59641994644e-05
+UniRef50_F5XQJ4		0.000775656141478	0.00223027598747	0.00145461984599
+UniRef50_C1D2J4	Putative Diguanylate cyclase  with GAF sensor	4.82616860866e-06	0.00282720723132	0.00282238106271
+UniRef50_B9KMF2		3.33930059447e-06	0.000501954739708	0.000498615439114
+UniRef50_Q73WQ0		0.000244901483682	0.000339874548272	9.497306459e-05
+UniRef50_O31605	Oligoendopeptidase F homolog	0.0238633223081	0.00545540402824	-0.0184079182799
+UniRef50_Q04F01	Adenine phosphoribosyltransferase	0.0352800527814	0.00613083508048	-0.0291492177009
+UniRef50_UPI0003346C39	PREDICTED	9.34383507123e-05	3.29543263994e-06	-9.01429180724e-05
+UniRef50_UPI00034AF933	glycogen debranching protein	9.29581018675e-06	1.66210552484e-05	7.32524506165e-06
+UniRef50_Q9LAM9	Peptide methionine sulfoxide reductase MsrA MsrB	4.20241421468e-06	0.00216399217451	0.0021597897603
+UniRef50_Q3Z6G6	Anthranilate phosphoribosyltransferase	6.31159246716e-06	7.89124547717e-06	1.57965301001e-06
+UniRef50_P40510	D 3 phosphoglycerate dehydrogenase 2	2.38637578147e-05	2.45644127012e-05	7.006548865e-07
+UniRef50_X1MDH4	Marine sediment metagenome DNA, contig	1.17311309431e-05	3.73967078264e-05	2.56655768833e-05
+UniRef50_K7SNQ8	RfbX family protein involved in the export of O antigen and teichoic acid	9.59710141129e-05	0.00647120080121	0.0063752297871
+UniRef50_A4EKV5		0.000130886118624	4.63296112428e-05	-8.45565073812e-05
+UniRef50_UPI0002E79C21	hypothetical protein	0.000115895761955	0.000211795479862	9.5899717907e-05
+UniRef50_R8XI05	Taurine binding periplasmic protein	0.000672489310732	0.000754000098364	8.1510787632e-05
+UniRef50_Q9RYQ5	Resolvase, putative	0.000674082122953	0.361753596131	0.361079514008
+UniRef50_Q3JXV9		0.000196687193883	1.89265081635e-05	-0.00017776068572
+UniRef50_X1MF22	Marine sediment metagenome DNA, contig	5.44671356808e-05	0.000754669389664	0.000700202253983
+UniRef50_V6EZW5	Putative chromosomal replication initiator, DnaA homolog protein	5.91905164251e-05	1.02598448589e-05	-4.89306715662e-05
+UniRef50_UPI0004701EC5	transcriptional regulator	0.000111709601932	1.35579980213e-05	-9.81516039107e-05
+UniRef50_UPI000370F20A	DNA polymerase I, partial	3.06884607693e-06	0.000114981045429	0.000111912199352
+UniRef50_UPI00039553CA	PREDICTED	4.08219086886e-06	3.44167776329e-05	3.0334586764e-05
+UniRef50_UPI000364FAD7	hypothetical protein	4.76555787286e-06	3.60160714458e-05	3.12505135729e-05
+UniRef50_A0RGP9	DNA mismatch repair protein	0.000527639869078	0.00117328730425	0.000645647435172
+UniRef50_Q9P6J4		0.00165767830291	0.000461925744776	-0.00119575255813
+UniRef50_UPI000369C449	aminotransferase, partial	0.000264024772165	1.21541360509e-05	-0.000251870636114
+UniRef50_M9R9X0		0.00199934724674	0.000318044784504	-0.00168130246224
+UniRef50_Q9PB92		0.000107434141846	4.14186265777e-05	-6.60155152683e-05
+UniRef50_Q9RYT4	Homoprotocatechuate 2,3 dioxygenase, putative	0.000312398971088	0.0580886041364	0.0577762051653
+UniRef50_UPI00047C50D0	hypothetical protein	1.16764988606e-05	7.65849700846e-06	-4.01800185214e-06
+UniRef50_A0KKD3	Adenine phosphoribosyltransferase	4.94830160703e-05	3.75798315712e-05	-1.19031844991e-05
+UniRef50_P22255	3,5 bisphosphate nucleotidase CysQ	0.00394678988047	0.000360875810829	-0.00358591406964
+UniRef50_UPI000288FCAE	MULTISPECIES	9.33792368141e-05	3.64279342212e-05	-5.69513025929e-05
+UniRef50_UPI0003795D58	hypothetical protein	0.000171996264047	3.42776244782e-05	-0.000137718639569
+UniRef50_S1U9Z1	NrdI protein	3.82323857287e-05	3.70071570311e-05	-1.2252286976e-06
+UniRef50_C1L2U0	UPF0176 protein Lm4b_01393	0.0160934807047	0.0186977141859	0.0026042334812
+UniRef50_X1HZW5	Marine sediment metagenome DNA, contig	1.46499965405e-05	3.34288917627e-05	1.87788952222e-05
+UniRef50_Q5E530	Permease	1.14683465747e-05	1.62295239117e-05	4.761177337e-06
+UniRef50_L7WWR2	Anaerobic ribonucleoside triphosphate reductase activating protein	0.0289332005253	0.00499952525389	-0.0239336752714
+UniRef50_UPI0003662A30	hypothetical protein	5.59472645169e-05	3.41806576102e-05	-2.17666069067e-05
+UniRef50_F0MTV5	MafB family protein	6.90944457927e-05	0.000938519785064	0.000869425339271
+UniRef50_P0AC49	Fumarate reductase iron sulfur subunit	0.00198322470253	0.00136893867733	-0.0006142860252
+UniRef50_UPI00041436A6	hypothetical protein	3.1459580401e-05	3.81786826413e-05	6.7191022403e-06
+UniRef50_A3K301		6.26924712324e-06	4.65342608468e-06	-1.61582103856e-06
+UniRef50_A7ZIA3	S formylglutathione hydrolase FrmB	0.0148527493421	0.00419113373722	-0.0106616156049
+UniRef50_S9E849	Neutral zinc metallopeptidase	0.000343032573815	1.09237650138e-05	-0.000332108808801
+UniRef50_UPI00035E2411	hypothetical protein	1.00096892549e-05	4.11394191861e-05	3.11297299312e-05
+UniRef50_H8GZZ4	Peptide ABC transporter, permease protein	0.00232330927841	0.054070602717	0.0517472934386
+UniRef50_UPI00047D0EF5	alcohol dehydrogenase, partial	1.34056451246e-05	0.000106093545024	9.26878998994e-05
+UniRef50_A4W0T4	GMP reductase	0.0212390512543	0.0159234121013	-0.005315639153
+UniRef50_F2LNV1		2.03235849065e-05	2.00423680751e-05	-2.812168314e-07
+UniRef50_B5Z6V3		0.000128981545165	0.00368880240914	0.00355982086397
+UniRef50_D3QCT2		0.0129106470757	0.00772308498336	-0.00518756209234
+UniRef50_P16679	Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL	0.00803274304733	0.00101251441781	-0.00702022862952
+UniRef50_M5RF79	Magnesium protoporphyrin chelatase	8.81582568252e-05	0.00111955898243	0.0010314007256
+UniRef50_UPI0004069A6C	hypothetical protein	3.21403157652e-05	4.38143704256e-05	1.16740546604e-05
+UniRef50_D7CRR2	Cytochrome c assembly protein	0.000128971280521	0.0194379270854	0.0193089558049
+UniRef50_P76502	Phosphohistidine phosphatase SixA	0.00196427812318	0.000366095089089	-0.00159818303409
+UniRef50_Q3IUV8	TrbC, sex pilus assembly and mating pair formation protein	0.00109267956391	0.000409214833994	-0.000683464729916
+UniRef50_A0A023LBQ7		2.28571859482e-05	7.93910154335e-06	-1.49180844048e-05
+UniRef50_A5MYM8		0.000332092538599	0.00154678452539	0.00121469198679
+UniRef50_L1L1V6		6.65317925159e-05	9.74409957735e-06	-5.67876929385e-05
+UniRef50_UPI0003A7F275	xanthine dehydrogenase	4.61465257156e-06	0.000143135179761	0.000138520527189
+UniRef50_UPI000470BD2F	hypothetical protein	1.06356088972e-05	0.000139429508718	0.000128793899821
+UniRef50_I0I1B3		1.26664865258e-05	9.23978562686e-05	7.97313697428e-05
+UniRef50_Q5HP11	Shikimate kinase	0.0169750629144	0.00146750453051	-0.0155075583839
+UniRef50_K0LNC6	Na+transporting ATP synthase	0.0159233560347	0.00468866960147	-0.0112346864332
+UniRef50_F0YGA0	Expressed protein 	0.000418446480179	0.000266414579294	-0.000152031900885
+UniRef50_UPI0004262E77	hypothetical protein	1.71552724417e-05	0.00061546409844	0.000598308825998
+UniRef50_K3ZIS6		2.7226186519e-05	0.000214301174639	0.00018707498812
+UniRef50_UPI0003B62EF2	hypothetical protein	6.6164229807e-05	8.5782127543e-05	1.9617897736e-05
+UniRef50_G2JE35	Lipid A core O antigen ligase	0.000173705695169	0.00418384410855	0.00401013841338
+UniRef50_Q98LT6	Glycine dehydrogenase 	3.30524962184e-06	6.83476247395e-06	3.52951285211e-06
+UniRef50_B7KTM9	Phage cell wall peptidase, NlpC P60 family	0.0022693786963	0.000516588988672	-0.00175278970763
+UniRef50_A5UMD8		0.00301238810486	0.000894927932988	-0.00211746017187
+UniRef50_K0LRB0	Ferrous iron transport protein B	0.000227401198102	0.000612055347554	0.000384654149452
+UniRef50_UPI0004421582	PREDICTED	7.87289520971e-05	4.88455515706e-05	-2.98834005265e-05
+UniRef50_C4J1N8		0.000137592833116	3.40814210265e-05	-0.00010351141209
+UniRef50_Q8XWR3	Prolipoprotein diacylglyceryl transferase	0.00142173060169	0.00386976263432	0.00244803203263
+UniRef50_C6SPD3	Putative potassium uptake system protein	0.00619511255583	0.00225667419769	-0.00393843835814
+UniRef50_UPI0003A9FA54	amino acid transporter	7.46754994442e-06	0.000608960482025	0.000601492932081
+UniRef50_UPI000469E754	DNA repair protein RadA	1.02825922711e-05	7.77657507373e-05	6.74831584662e-05
+UniRef50_P36938	Phosphoglucomutase	0.00180423843021	0.00687662661879	0.00507238818858
+UniRef50_UPI00046E8175	hypothetical protein	1.65285557188e-06	2.42990330773e-05	2.26461775054e-05
+UniRef50_P32382	NADH oxidase	7.60559641199e-06	8.20577479618e-06	6.0017838419e-07
+UniRef50_B9KJE4	Flagellar biosynthetic protein FlhB	0.00260108961525	0.00095933242503	-0.00164175719022
+UniRef50_J9P7D1		1.9775680871e-06	1.93370355109e-06	-4.386453601e-08
+UniRef50_D7GE04		8.74916503464e-05	0.000399775173314	0.000312283522968
+UniRef50_Q9I6M4	5 aminovalerate aminotransferase DavT	0.00105157280429	0.0115695824996	0.0105180096953
+UniRef50_UPI000262CACD	citrate lyase subunit beta	8.62709919896e-05	3.43895831461e-05	-5.18814088435e-05
+UniRef50_Q48KB0	Acyl homoserine lactone acylase PvdQ	0.000354011428865	7.83260111316e-05	-0.000275685417733
+UniRef50_UPI0002657863	PREDICTED	6.21849165951e-06	1.74328109222e-05	1.12143192627e-05
+UniRef50_UPI0003B7969B	LysR family transcriptional regulator	5.97281562804e-06	0.000176413365332	0.000170440549704
+UniRef50_C5X3K1		2.81949398159e-05	0.000294702936378	0.000266507996562
+UniRef50_UPI0003EDCB7F	PREDICTED	5.31620110893e-06	7.66185301585e-05	7.13023290496e-05
+UniRef50_P76053	Probable DNA endonuclease SmrA	0.00269784452705	0.00148899179089	-0.00120885273616
+UniRef50_V4IVP0		0.00177829349423	0.00170803701125	-7.025648298e-05
+UniRef50_A2RNI8	Arginine  tRNA ligase	6.38924935664e-06	0.00582469574036	0.005818306491
+UniRef50_A6LY18	Small acid soluble spore protein, alpha beta type	0.00984746057875	0.000860145743281	-0.00898731483547
+UniRef50_F8G289	Cro CI family transcriptional regulator	0.000681162479595	0.000677390310903	-3.772168692e-06
+UniRef50_K6M6J3	Transporter, major facilitator family protein	9.64614963009e-05	0.00191596772533	0.00181950622903
+UniRef50_F6CLL2	PSP1 domain protein	0.0133542522397	0.00140780158883	-0.0119464506509
+UniRef50_J2DHS3		1.91775867741e-05	5.77166199039e-05	3.85390331298e-05
+UniRef50_P77297		0.00450739102959	0.00238103988529	-0.0021263511443
+UniRef50_P77296		0.00703524920178	0.000506257208899	-0.00652899199288
+UniRef50_L1K9E2		0.0131018993676	0.00615426256831	-0.00694763679929
+UniRef50_R9SJS7	Adenylate cyclase CyaA	0.00252224647012	0.000710691241489	-0.00181155522863
+UniRef50_E3J3H5		8.16196415514e-06	3.00656690371e-06	-5.15539725143e-06
+UniRef50_UPI0003B2F361	ribose phosphate pyrophosphokinase	9.03460841929e-05	3.52785804517e-05	-5.50675037412e-05
+UniRef50_D4HCR1	Hydrolase, alpha beta domain protein	0.000176120990128	0.00544634586267	0.00527022487254
+UniRef50_UPI000410CB72	hypothetical protein	9.19159344349e-06	3.14569551052e-05	2.22653616617e-05
+UniRef50_UPI0003B62778	2 deoxy D gluconate 3 dehydrogenase	7.550303427e-06	1.12947808465e-05	3.7444774195e-06
+UniRef50_D8JEW7		0.000413524934136	0.00701216898307	0.00659864404893
+UniRef50_A1B817	Transposase IS66	1.05705553249e-05	6.62005042576e-06	-3.95050489914e-06
+UniRef50_A5UNB4		0.00188646291916	0.00115112143082	-0.00073534148834
+UniRef50_A0A024C317		0.00514753621162	0.000703135012379	-0.00444440119924
+UniRef50_UPI000370F732	hypothetical protein	6.35417219591e-06	5.06502337633e-06	-1.28914881958e-06
+UniRef50_L8M031	NAD dependent epimerase dehydratase family protein 	0.00323683029269	0.000277634711436	-0.00295919558125
+UniRef50_A7Q0V4	S adenosylmethionine synthase 5	4.32143854799e-05	0.000107647867442	6.44334819621e-05
+UniRef50_Q1IZH8	tRNA N6 adenosine threonylcarbamoyltransferase	0.00041504516033	0.0165747970024	0.0161597518421
+UniRef50_E3G1M3	Ribose 1,5 bisphosphate phosphokinase PhnN	0.0037971304474	0.000318114942752	-0.00347901550465
+UniRef50_UPI00046961B9	hypothetical protein	3.86524198017e-05	2.58504101894e-05	-1.28020096123e-05
+UniRef50_D3E3F0	4Fe 4S binding domain containing protein	0.00363322800798	0.0013357832772	-0.00229744473078
+UniRef50_Q6FYD4	Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00268170694242	0.0116761971744	0.00899449023198
+UniRef50_UPI000477D162	iron ABC transporter permease	9.79089316643e-06	8.75591517729e-05	7.77682586065e-05
+UniRef50_D7AQD0	NADH	0.000279458722235	0.00123120035496	0.000951741632725
+UniRef50_I7EMW2		0.00639179441936	0.000238800570243	-0.00615299384912
+UniRef50_P28246	Bicyclomycin resistance protein	0.00283663273053	0.0014592590558	-0.00137737367473
+UniRef50_UPI00047BE7E7	hypothetical protein	4.3539261556e-05	1.44264680044e-05	-2.91127935516e-05
+UniRef50_Q02H49		0.0010801395194	0.00065379243675	-0.00042634708265
+UniRef50_K2F5A0		0.000506914449864	0.00218019681134	0.00167328236148
+UniRef50_S4B4H2	Accessory colonization factor AcfD	0.00035689939649	0.000229215558903	-0.000127683837587
+UniRef50_A6LYR9	Peptidoglycan binding domain 1 protein	0.000218199993555	0.00109020191915	0.000872001925595
+UniRef50_B9KM18	Pyruvate kinase	0.00053675768345	0.000263506281125	-0.000273251402325
+UniRef50_UPI000366947C	hypothetical protein	0.000466531931967	2.74680952811e-05	-0.000439063836686
+UniRef50_F9SJR5	Putative sulfate permease 	0.000954491242982	0.000410703117443	-0.000543788125539
+UniRef50_Q4L4H7		0.0380724844609	0.0133869550201	-0.0246855294408
+UniRef50_D1FMX0	InlA	1.41077967412e-05	4.50083205673e-06	-9.60696468447e-06
+UniRef50_Q1C1V0	Regulator of sigma D	0.0071784323343	0.014097614816	0.0069191824817
+UniRef50_A9B5I3	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.96654231779e-05	5.56442114355e-05	3.59787882576e-05
+UniRef50_P30363	L asparaginase	5.31448501724e-05	0.00295247749418	0.00289933264401
+UniRef50_Q92Q90	Bifunctional enzyme IspD IspF	5.59309950482e-06	7.35606071364e-06	1.76296120882e-06
+UniRef50_D0K261	Cbb3 type cytochrome c oxidase subunit CcoP	0.000440202340584	0.003679862354	0.00323966001342
+UniRef50_A0A011TPN1		0.000110318566055	2.91757436635e-05	-8.11428223915e-05
+UniRef50_UPI0004663F53	hypothetical protein	1.57197096882e-05	1.11189821549e-05	-4.6007275333e-06
+UniRef50_P46118	HTH type transcriptional regulator HexR	0.00481614900316	0.00295865574251	-0.00185749326065
+UniRef50_X7ED55		8.57880058693e-05	7.71018679163e-05	-8.686137953e-06
+UniRef50_UPI0004674A11	hypothetical protein, partial	1.02318610646e-05	3.91001985156e-05	2.8868337451e-05
+UniRef50_A0A022FVN3	Calcium transporter ChaC	2.46138505784e-06	2.10305054135e-06	-3.5833451649e-07
+UniRef50_G3XDA3	Methyl accepting chemotaxis protein CtpH	7.01646819436e-05	0.00010661252895	3.64478470064e-05
+UniRef50_F1YSU2	Folylpolyglutamate Synthase	1.05345260388e-05	8.16512993868e-06	-2.36939610012e-06
+UniRef50_S5SLF3	sn glycerol 3 phosphate ABC transporter substrate binding protein UgpB 1	1.49400390137e-05	5.57662040911e-06	-9.36341860459e-06
+UniRef50_D8UC33		6.57701548528e-06	2.07342768294e-06	-4.50358780234e-06
+UniRef50_UPI0002628085	PTS system sucrose specific transporter subunit IIABC	8.84991987881e-06	1.22508995579e-05	3.40097967909e-06
+UniRef50_R6G0R0	Glutamine ABC transporter permease substrate binding protein	0.00485225236123	0.00112778825551	-0.00372446410572
+UniRef50_Q6F6W5	Two component sensor	0.000206916889359	0.00692757814205	0.00672066125269
+UniRef50_UPI0001AF2CE2	aldehyde dehydrogenase	3.01992502523e-06	0.000355132392361	0.000352112467336
+UniRef50_B8DVI9	Uracil phosphoribosyltransferase	1.77830714206e-05	0.00970130110951	0.00968351803809
+UniRef50_Q0SAY4	Proline  tRNA ligase 2	4.83060766271e-06	0.0424797862746	0.0424749556669
+UniRef50_Q3IX83		0.00200164334153	0.000497397827948	-0.00150424551358
+UniRef50_Q8Z7H3	Virulence sensor histidine kinase PhoQ	0.00320474905523	0.000338845567286	-0.00286590348794
+UniRef50_Q6MS86	Uracil phosphoribosyltransferase	3.67235518238e-05	0.00338156044231	0.00334483689049
+UniRef50_UPI000362A0E4	hypothetical protein	5.73965021646e-05	1.78473294218e-05	-3.95491727428e-05
+UniRef50_R1CV54		2.08432337532e-05	9.78987662691e-05	7.70555325159e-05
+UniRef50_UPI000273CDF3		0.0005618634754	0.000142026709046	-0.000419836766354
+UniRef50_UPI0002F1A5E0	hypothetical protein	4.92002978257e-06	1.26248816403e-06	-3.65754161854e-06
+UniRef50_I6CNQ8	Tail protein	0.000102284336647	0.000111425695703	9.141359056e-06
+UniRef50_F9Z2A5		0.000247810571456	0.00183884168898	0.00159103111752
+UniRef50_D2NS08	6 pyruvoyl tetrahydropterin synthase	0.000124105167333	0.00137175954301	0.00124765437568
+UniRef50_UPI00022CA8F3	PREDICTED	7.33091784889e-06	5.80434141213e-06	-1.52657643676e-06
+UniRef50_UPI0003B40293	hypothetical protein	1.76939269228e-05	1.28395651609e-05	-4.8543617619e-06
+UniRef50_D2ZQZ2		0.00124195771905	0.000619545535373	-0.000622412183677
+UniRef50_F5ZJC0	PpGpp synthetase	0.00442178227922	0.00296005296257	-0.00146172931665
+UniRef50_Q8DUK3	Probable thiol peroxidase	0.0132764082642	0.00396168975493	-0.00931471850927
+UniRef50_UPI0003EAABA8	PREDICTED	3.04499093141e-05	2.30839478692e-05	-7.3659614449e-06
+UniRef50_C4L7S9	30S ribosomal protein S10	0.00183051427246	0.0301069628024	0.0282764485299
+UniRef50_B5YGX0	Phosphoglucosamine mutase	4.01942056969e-06	4.88869548899e-06	8.692749193e-07
+UniRef50_UPI00047DE500	ABC transporter ATP binding protein	4.19774035681e-06	7.97986228311e-06	3.7821219263e-06
+UniRef50_UPI000466389B	hypothetical protein	6.51287080114e-06	1.7961927778e-05	1.14490569769e-05
+UniRef50_Q92PK6	Anhydro N acetylmuramic acid kinase	5.95729418181e-06	3.02656637883e-05	2.43083696065e-05
+UniRef50_UPI00035E7A12	hypothetical protein, partial	6.50548491029e-06	9.91944172116e-06	3.41395681087e-06
+UniRef50_Q5LKT8	Branched chain amino acid aminotransferase, putative	0.0100355162323	0.00201462623339	-0.00802088999891
+UniRef50_P0AF42	Inner membrane protein YijD	0.00106122453314	0.000777149224201	-0.000284075308939
+UniRef50_V4QDE8		6.61748464419e-05	0.000293759826162	0.00022758497972
+UniRef50_U8EUK5		0.00236554099546	0.000921188697658	-0.0014443522978
+UniRef50_F6BNG0	Mov34 MPN PAD 1 family protein	0.000480777368385	0.000326931133971	-0.000153846234414
+UniRef50_UPI0003820CC8	hypothetical protein	1.31987820968e-05	1.88003025141e-05	5.6015204173e-06
+UniRef50_UPI0003C7BE7D	MerR family transcriptional regulator	5.15843506585e-05	9.00199368689e-06	-4.25823569716e-05
+UniRef50_J3L9G7		0.00144053926662	0.000372639375648	-0.00106789989097
+UniRef50_K7RLI9	Myo inositol catabolism protein	0.000749056148611	0.00479571949045	0.00404666334184
+UniRef50_A7I8B8	Proteasome activating nucleotidase	0.00208487388978	0.000145000018924	-0.00193987387086
+UniRef50_U7JTW3		1.0092564522e-05	6.32702863908e-05	5.31777218688e-05
+UniRef50_UPI00036B2583	MULTISPECIES	1.39920720054e-05	3.100750804e-05	1.70154360346e-05
+UniRef50_A0A022SAV9	Glucose   Sorbosone dehydrogenase family protein	0.00039276103946	0.00389324109081	0.00350048005135
+UniRef50_UPI00034D4ECA	hypothetical protein	9.29005714967e-05	5.21233971085e-06	-8.76882317858e-05
+UniRef50_D3HHR2		0.00233307915385	0.00151761138162	-0.00081546777223
+UniRef50_UPI00036B57D3	hypothetical protein, partial	4.48650145262e-05	1.71174512554e-05	-2.77475632708e-05
+UniRef50_W8YGK7		9.16362016213e-05	8.21340861547e-05	-9.5021154666e-06
+UniRef50_J0D235		4.06239303486e-06	7.95638042336e-06	3.8939873885e-06
+UniRef50_UPI000464FCC9	resolvase, partial	0.000142984079293	5.12961252941e-05	-9.16879539989e-05
+UniRef50_A9WEB9	Thioesterase superfamily protein	8.25199620555e-06	0.000629068314867	0.000620816318661
+UniRef50_B7LPQ4	N acetyl D glucosamine kinase	0.00616413128626	0.000223442652099	-0.00594068863416
+UniRef50_Q8KWX4	DNA directed RNA polymerase subunit beta	3.93210529726e-06	2.11245015313e-06	-1.81965514413e-06
+UniRef50_D4JIJ4	Saccharopine dehydrogenase and related proteins	0.000298749486303	0.00597277926776	0.00567402978146
+UniRef50_F2CTX8	Predicted protein 	0.000149932759589	0.000240747314022	9.0814554433e-05
+UniRef50_A7A5J4		3.90513767709e-05	4.33379377629e-05	4.286560992e-06
+UniRef50_UPI0003609C50	MULTISPECIES	1.95878741325e-05	1.9527613959e-05	-6.02601735e-08
+UniRef50_UPI00042A54EF	2,5 diketo D gluconic acid reductase	2.40433167827e-05	8.6415045362e-06	-1.54018122465e-05
+UniRef50_Q5KX02	Deoxyribose phosphate aldolase	0.0508528279081	0.0400455472515	-0.0108072806566
+UniRef50_UPI0003657039	flagellar P ring protein FlgI	3.01610381989e-05	3.24171446688e-05	2.2561064699e-06
+UniRef50_S5YTM5	Acetamidase formamidase	0.00142646230667	0.00079870498931	-0.00062775731736
+UniRef50_UPI0004704B80	hypothetical protein, partial	1.18179146397e-05	7.39476584358e-05	6.21297437961e-05
+UniRef50_Q9FFE6	Probable acyl activating enzyme 5, peroxisomal	0.0128671048739	0.00183563832995	-0.0110314665439
+UniRef50_I0B601		0.000462891497923	0.0319668995254	0.0315040080275
+UniRef50_P36843	Arginine biosynthesis bifunctional protein ArgJ	0.00998622489401	0.00289275356942	-0.00709347132459
+UniRef50_P00644	Thermonuclease	0.00854510824123	0.000663214998362	-0.00788189324287
+UniRef50_M1LU25	Ferredoxin  NADP+ reductase	0.000177501248674	0.0063475597419	0.00617005849323
+UniRef50_UPI00039B2C8B	hypothetical protein, partial	5.4923098772e-05	0.000644922595971	0.000589999497199
+UniRef50_Q21E72	Phosphate import ATP binding protein PstB	0.0120518066965	0.00436244992538	-0.00768935677112
+UniRef50_A4WXS2		0.00159506452928	0.000355803259269	-0.00123926127001
+UniRef50_A6QDJ4		0.0114607069271	0.0018364580597	-0.0096242488674
+UniRef50_Q6LLL9	3 octaprenyl 4 hydroxybenzoate carboxy lyase	1.02789871251e-05	0.00290687069189	0.00289659170476
+UniRef50_F6F2F7	Sodium hydrogen exchanger	0.00121380345087	0.000426177426962	-0.000787626023908
+UniRef50_W9TLX8	Cytochrome C type biogenesis protein CcmF	0.000126255393394	0.000104056579505	-2.2198813889e-05
+UniRef50_U7J4M5		8.50193668641e-05	0.00647734652608	0.00639232715922
+UniRef50_B8ENG6	Peptide deformylase	8.19476024657e-05	4.98654364176e-05	-3.20821660481e-05
+UniRef50_UPI00046F07FD	chromosome partitioning protein ParB	6.56309060546e-05	0.000869496830371	0.000803865924316
+UniRef50_E0VHF0		1.12645075267e-06	3.3141491512e-06	2.18769839853e-06
+UniRef50_L4XF07	D galactonate transporter	0.000457707913475	0.00053693946399	7.9231550515e-05
+UniRef50_B2TRD7	Peptidase, M23 M37 family	4.44450038838e-06	9.28820811107e-06	4.84370772269e-06
+UniRef50_UPI00040D222C	hypothetical protein	0.000139715267809	3.88486708281e-05	-0.000100866596981
+UniRef50_M2LUA1	Myosin cross reactive antigen	0.00249459351656	0.000309772767695	-0.00218482074887
+UniRef50_A8GM77	NADH quinone oxidoreductase subunit F	0.00941043928249	0.00115221776751	-0.00825822151498
+UniRef50_A3JRD5		0.000119319330955	0.000240736907866	0.000121417576911
+UniRef50_UPI0003684E03	hypothetical protein	6.76028254867e-05	3.67686959915e-05	-3.08341294952e-05
+UniRef50_Q2YVA6		0.000737788945268	0.000396595223403	-0.000341193721865
+UniRef50_A4WT37	Flagellin domain protein	0.0102634184283	0.00329895712411	-0.00696446130419
+UniRef50_A3CMD6	Cobalamin independent methionine synthase II, putative	0.00419311024892	0.00191845933426	-0.00227465091466
+UniRef50_UPI00037F264A	hypothetical protein	5.67475642836e-06	1.16666072528e-05	5.99185082444e-06
+UniRef50_A3M7T3		0.000372858440026	0.0090595612816	0.00868670284157
+UniRef50_Q3IVA4	DNA binding protein, H NS family	0.0024991030916	0.000608900423076	-0.00189020266852
+UniRef50_A7C736	Cell shape determining protein	0.000207621189872	5.26987626334e-05	-0.000154922427239
+UniRef50_P21639	Precorrin 2 C methyltransferase	7.50677087757e-05	3.24921963736e-05	-4.25755124021e-05
+UniRef50_UPI000370964C	hypothetical protein	0.00022785701659	0.000162375754193	-6.5481262397e-05
+UniRef50_Q3IYL4		0.00806789015315	0.000232017692675	-0.00783587246048
+UniRef50_I4D0J0	DNA repair protein radA	0.000884305702589	0.000744845875768	-0.000139459826821
+UniRef50_W7WR28	Lactate utilization protein A	1.07442457145e-05	7.18754806513e-05	6.11312349368e-05
+UniRef50_C5CNW9	Alkanesulfonate monooxygenase	0.000341977887354	0.00375965410765	0.0034176762203
+UniRef50_Q182W3	Stage IV sporulation protein A	0.00017560537547	0.00084958646112	0.00067398108565
+UniRef50_V5BSI8		7.39796990369e-06	8.11245863088e-05	7.37266164051e-05
+UniRef50_L7WY01		0.0235516526839	0.00458101272811	-0.0189706399558
+UniRef50_UPI00035E8B7E	hypothetical protein	1.79704080645e-05	1.34367887939e-05	-4.5336192706e-06
+UniRef50_UPI00035057EC	PREDICTED	0.000146683648299	0.000229508553963	8.2824905664e-05
+UniRef50_F5M5C7	XRE family transcriptional regulator	0.00566962244404	0.000572528021041	-0.005097094423
+UniRef50_UPI000381892F	hypothetical protein	1.3085769077e-05	1.32518457505e-05	1.660766735e-07
+UniRef50_Q5LN51	RmuC domain protein	0.00557481358019	0.00106066614965	-0.00451414743054
+UniRef50_Q7MT83	Ribose phosphate pyrophosphokinase	5.31376958578e-06	0.00390926662888	0.00390395285929
+UniRef50_UPI00046FE313	hypothetical protein, partial	6.30764648533e-06	5.13486245894e-05	4.50409781041e-05
+UniRef50_UPI0003610E12	hypothetical protein	4.44040307618e-06	1.25774356981e-05	8.13703262192e-06
+UniRef50_R9SMA2	Radical SAM domain containing protein	0.0046907940812	0.000356820562545	-0.00433397351865
+UniRef50_F5XLU5	NADH quinone oxidoreductase subunit M	8.37616839153e-05	0.00469347864328	0.00460971695936
+UniRef50_Q8X582	Laminin binding fimbrial subunit ElfA	0.00391702566762	0.00353407048578	-0.00038295518184
+UniRef50_UPI0003943B89	PREDICTED	3.13016932926e-05	7.11250804251e-05	3.98233871325e-05
+UniRef50_R9YQF0	Alpha acetolactate decarboxylase	0.0158262965387	0.00382500466219	-0.0120012918765
+UniRef50_P77416	Hydrogenase 4 component D	0.00330967145201	0.00109671905878	-0.00221295239323
+UniRef50_UPI000477B336	ABC transporter	2.47088178354e-05	7.16676652111e-06	-1.75420513143e-05
+UniRef50_Q02F98	NH dependent NAD(+) synthetase	7.97629574974e-05	7.88879228307e-05	-8.750346667e-07
+UniRef50_G2IZ95	FIST domain protein	3.31182700567e-06	4.83924754767e-06	1.527420542e-06
+UniRef50_P77333	HTH type transcriptional regulator PgrR	0.0025749633512	0.00268400702123	0.00010904367003
+UniRef50_I4CYH2	Epoxide hydrolase	0.000252780796101	0.00146700395093	0.00121422315483
+UniRef50_A3PI48	Glucose 1 phosphate adenylyltransferase	0.000887401536012	0.000140404138754	-0.000746997397258
+UniRef50_Q0ALN8	MotA TolQ ExbB proton channel	0.00886136565012	0.0071162089237	-0.00174515672642
+UniRef50_C3AI25		1.639984699e-05	0.000436744134342	0.000420344287352
+UniRef50_UPI00036C9A3E	hypothetical protein	1.4810252468e-05	1.61597839032e-05	1.3495314352e-06
+UniRef50_UPI000474F64C	hypothetical protein	8.49267190284e-06	1.11269107706e-05	2.63423886776e-06
+UniRef50_UPI0004778BE4	hypothetical protein	2.44373119892e-05	1.1803962921e-05	-1.26333490682e-05
+UniRef50_A0A023RZD3		7.90822602291e-05	0.00766419433836	0.00758511207813
+UniRef50_D9SU99	Glycosyl transferase group 1	0.000181774954504	0.000326178306595	0.000144403352091
+UniRef50_UPI00037EBCF0	hypothetical protein	1.46522514342e-05	5.33448000093e-06	-9.31777143327e-06
+UniRef50_UPI00030C6615	ATPase AAA	1.71232694626e-05	3.72552006136e-05	2.0131931151e-05
+UniRef50_A3S801		0.000408457936484	1.15595843902e-05	-0.000396898352094
+UniRef50_P49938	Iron hydroxamate import ATP binding protein FhuC	7.42215529435e-05	0.000984724077882	0.000910502524939
+UniRef50_A4WQH4		0.00729226865601	0.000898718987384	-0.00639354966863
+UniRef50_UPI0003B6A5DD	serine threonine phosphatase	5.46071425124e-06	1.07893241568e-05	5.32860990556e-06
+UniRef50_C9D174	Recombinase	9.98298423132e-06	1.72516716525e-05	7.26868742118e-06
+UniRef50_UPI000464FB82	hypothetical protein	8.58951548407e-06	8.46273051401e-05	7.6037789656e-05
+UniRef50_Q887Q9	Alginate biosynthesis protein AlgA	2.5141855572e-05	2.9724820054e-05	4.582964482e-06
+UniRef50_W8S5E9	ATP synthase protein I2	3.07669181821e-05	5.63896783551e-05	2.5622760173e-05
+UniRef50_Q8DSN0	Trans 2 decenoyl [acyl carrier protein] isomerase	0.00830792710601	0.00873288127745	0.00042495417144
+UniRef50_X1B5W7	Marine sediment metagenome DNA, contig	3.17998647229e-05	1.97600604251e-05	-1.20398042978e-05
+UniRef50_P0ACV2	Protein Ddg	0.00543324024235	0.00168206461126	-0.00375117563109
+UniRef50_X2I2X2	Type I restriction enzyme, S subunit	0.000487620538287	0.00163614093352	0.00114852039523
+UniRef50_UPI0003743283	hypothetical protein	7.97343472719e-06	3.35799047064e-05	2.56064699792e-05
+UniRef50_UPI000376D2EE	hypothetical protein	0.0001269026374	0.000134860043275	7.957405875e-06
+UniRef50_H8H3X9		8.15177148986e-06	0.000301835713761	0.000293683942271
+UniRef50_UPI00016C4EB2	CoA transferase	1.01505351359e-05	0.000348845601499	0.000338695066363
+UniRef50_R4KIZ1		6.11390627853e-06	0.000160063254856	0.000153949348577
+UniRef50_UPI00046550E0	ABC transporter permease	1.17369052217e-05	1.14269056527e-05	-3.09999569e-07
+UniRef50_P41443	Putative type II secretion system protein H	0.00322546607497	0.000390286394531	-0.00283517968044
+UniRef50_Q6LUZ6	Glutamate ammonia ligase adenylyltransferase	0.000360306724402	0.000142715668596	-0.000217591055806
+UniRef50_A5UN96	Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA	0.00239991180861	0.000307088428274	-0.00209282338034
+UniRef50_R1GH14	6 pyruvoyl tetrahydropterin synthase	0.000100925695388	0.000610351192916	0.000509425497528
+UniRef50_Q2FME4	Transport system permease protein	0.00437976746225	0.000706722931278	-0.00367304453097
+UniRef50_UPI000255A6BC	hypothetical protein	0.000100694496065	3.04524302059e-05	-7.02420658591e-05
+UniRef50_D6SDT2	PTS system, glucose subfamily, IIA component	0.0113602376407	0.00223398084898	-0.00912625679172
+UniRef50_G0LQ60		0.0166362182491	0.0024564233749	-0.0141797948742
+UniRef50_X2MMA8		0.000674396850982	2.30687264842e-05	-0.000651328124498
+UniRef50_V5IK03	Putative thyroid hormone receptor associated protein complex subunit 	5.08071213708e-06	9.97158431522e-05	9.46351310151e-05
+UniRef50_B8FK17	Putative flagellar rod assembly protein muramidase FlgJ	5.37513920886e-05	8.69758197847e-05	3.32244276961e-05
+UniRef50_R0J3J3		1.14163449089e-05	5.4219283804e-06	-5.9944165285e-06
+UniRef50_I1ZKX0	UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00441891616026	0.00434231544878	-7.660071148e-05
+UniRef50_UPI0004059FEB	methionine aminopeptidase	5.29558507064e-05	1.88071700096e-05	-3.41486806968e-05
+UniRef50_UPI0003C3A0E4	PREDICTED	1.06134224488e-06	2.68380106598e-07	-7.92962138282e-07
+UniRef50_UPI000366D9A0	hypothetical protein, partial	1.53450681884e-05	0.0002283977417	0.000213052673512
+UniRef50_UPI0003B4B64F	hypothetical protein	0.000124976474321	4.48242286738e-05	-8.01522456472e-05
+UniRef50_L1N290	TRAP transporter, DctM subunit	8.57371853798e-05	3.38266379331e-05	-5.19105474467e-05
+UniRef50_A5ULG2	Shikimate kinase	0.00235423511663	0.00119908770842	-0.00115514740821
+UniRef50_UPI0004202308	hypothetical protein	3.84937293502e-06	1.04701711882e-05	6.62079825318e-06
+UniRef50_UPI00040D932D	DNA processing protein DprA	5.37955974041e-05	6.09627153994e-05	7.1671179953e-06
+UniRef50_Q1CWT2	ATP synthase subunit alpha	4.85062844372e-06	1.9238707664e-05	1.43880792203e-05
+UniRef50_T0U356	ABC transporter, ATP binding permease protein	0.00704849539221	0.00158954306946	-0.00545895232275
+UniRef50_U2YP81	L proline glycine betaine binding ABC transporter protein ProX	0.00302279062866	0.000873463451147	-0.00214932717751
+UniRef50_Q4L675	Anthranilate synthase component II	0.0159380057571	0.0056253479845	-0.0103126577726
+UniRef50_P06770	FeMo cofactor biosynthesis protein NifB	0.000673450979859	0.000135259559627	-0.000538191420232
+UniRef50_G7LYR7	Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000311067123082	0.00158535467558	0.0012742875525
+UniRef50_A0A059ECE9		3.25825728876e-05	3.46915907829e-05	2.1090178953e-06
+UniRef50_UPI0002625F09	monosaccharide transporting ATPase	0.000180946036086	3.47152703867e-05	-0.000146230765699
+UniRef50_A5UKX5	Phosphomannomutase, ManB	0.00266061919226	0.000936704149232	-0.00172391504303
+UniRef50_UPI00036BA739	hypothetical protein	5.95164408854e-06	6.368226193e-06	4.1658210446e-07
+UniRef50_Q8XXJ7	5 hydroxyisourate hydrolase	4.77681442691e-05	5.71751069759e-05	9.4069627068e-06
+UniRef50_Q5HKE5	Serine protease	0.00974384965142	0.0032848677284	-0.00645898192302
+UniRef50_Q99335	Transposase for insertion sequence element IS232	0.000461368338436	0.00100010437559	0.000538736037154
+UniRef50_UPI0003EC0F26	PREDICTED	6.90617549135e-06	4.65020657738e-06	-2.25596891397e-06
+UniRef50_X8EYS2		8.47011057242e-05	0.000437602860485	0.000352901754761
+UniRef50_F6D6R1	Polymorphic outer membrane protein	1.00857377483e-05	4.42481601298e-07	-9.643256147e-06
+UniRef50_UPI0003B67906	glycine cleavage system protein H	8.82755565383e-05	2.96688322415e-05	-5.86067242968e-05
+UniRef50_Q02000	Anthranilate phosphoribosyltransferase	0.00629780606486	0.00448887046593	-0.00180893559893
+UniRef50_Q2T960	Transposase	4.77975386085e-05	1.44435619335e-05	-3.3353976675e-05
+UniRef50_O05393	O acetylserine dependent cystathionine beta synthase	1.17113361781e-05	0.00517569080136	0.00516397946518
+UniRef50_Q3JHP8		3.68666959603e-06	1.09853862995e-05	7.29871670347e-06
+UniRef50_Q3I510	EaeH	0.000108494650488	8.96414333579e-05	-1.88532171301e-05
+UniRef50_Q5HRF6	Octanoyl [GcvH]	0.0214411729638	0.00652189713856	-0.0149192758252
+UniRef50_E6MUI1	Transposase for insertion sequence element IS4351	0.000524674184769	0.0286007485361	0.0280760743513
+UniRef50_F0P3X1	Membrane protein, putative	0.00632371041829	0.00144815043485	-0.00487555998344
+UniRef50_A0A011PV93	NADH quinone oxidoreductase subunit M	2.22330913299e-05	9.31644300459e-06	-1.29166483253e-05
+UniRef50_M9VNY9	Trehalose 6 phosphate phosphatase	0.000324855730792	0.00197213275456	0.00164727702377
+UniRef50_Q7VRS0	Probable malate	4.63596837488e-06	1.2737354106e-05	8.10138573112e-06
+UniRef50_S0AB89	FAD dependent pyridine nucleotide disulfide oxidoreductase	0.000256634365371	0.000220111829952	-3.6522535419e-05
+UniRef50_Q725Q3	5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.38544440489e-05	3.24318867546e-06	-1.06112553734e-05
+UniRef50_K5Z1T4		8.26457386128e-06	1.28724154824e-05	4.60784162112e-06
+UniRef50_E6UA31	IstB domain protein ATP binding protein	0.000537835630213	0.000851840697171	0.000314005066958
+UniRef50_Q5HP08		0.00664782325246	0.00324875898239	-0.00339906427007
+UniRef50_UPI000262C9F7	malonyl CoA ACP transacylase	1.04632654191e-05	2.639056469e-05	1.59272992709e-05
+UniRef50_D3E006		0.00319549904747	0.00151444464203	-0.00168105440544
+UniRef50_Z6ILY0		0.226654902022	0.0411737778722	-0.18548112415
+UniRef50_UPI000365DBB0	hypothetical protein	2.56461183579e-05	1.94489192451e-05	-6.1971991128e-06
+UniRef50_B1ZNE5	50S ribosomal protein L2	0.00202072289189	0.0498711478545	0.0478504249626
+UniRef50_H0J5U8	Beta lactamase like protein	6.96761715234e-05	1.75200021458e-05	-5.21561693776e-05
+UniRef50_Q9CD72	ATP dependent DNA helicase UvrD1	1.93192650571e-05	1.24664089258e-05	-6.8528561313e-06
+UniRef50_Q2IQ01	Polyribonucleotide nucleotidyltransferase	7.40046492376e-06	1.58790309362e-05	8.47856601244e-06
+UniRef50_P13458	Nuclease SbcCD subunit C	0.00268512304215	0.0019846916723	-0.00070043136985
+UniRef50_A6LTD7	Regulatory protein, LacI	0.000515861012312	0.000848543808525	0.000332682796213
+UniRef50_UPI000471A07E	hypothetical protein	5.02070021107e-06	7.35647215596e-05	6.85440213485e-05
+UniRef50_Q9ZFV2	Ethanolamine utilization protein EutA	0.00320409139833	0.00056465813467	-0.00263943326366
+UniRef50_Q5HHC7	NAD specific glutamate dehydrogenase	0.0248217825334	0.00714889696559	-0.0176728855678
+UniRef50_Q8ZQZ8	Nicotinate nucleotide adenylyltransferase	0.00110496810652	0.00233932127486	0.00123435316834
+UniRef50_UPI00016C532F	competence protein	1.74057420092e-05	7.02930914578e-06	-1.03764328634e-05
+UniRef50_W8ESZ0	MFS transporter	0.000168771679067	0.0068281039657	0.00665933228663
+UniRef50_Q18GT4	Ketol acid reductoisomerase	0.0159798551999	0.0170780799244	0.0010982247245
+UniRef50_B2UX29	Probable tRNA sulfurtransferase	0.000176946557275	0.00149699501733	0.00132004846006
+UniRef50_L8P9Y5		4.53929195576e-05	3.13175768306e-05	-1.4075342727e-05
+UniRef50_UPI0003782695	hypothetical protein	2.50134773737e-05	0.000163637526545	0.000138624049171
+UniRef50_UPI0004687CD1	hypothetical protein	6.89609248198e-06	2.88948601074e-05	2.19987676254e-05
+UniRef50_D4FA45		0.000446110900423	5.79864769071e-05	-0.000388124423516
+UniRef50_P77161	2 hydroxy 3 oxopropionate reductase	0.00389204218141	0.000674366264168	-0.00321767591724
+UniRef50_P0AG22	GTP pyrophosphokinase	0.00455354363415	0.00105659819438	-0.00349694543977
+UniRef50_UPI000376960F	hypothetical protein	1.32689773114e-05	1.78053790282e-05	4.5364017168e-06
+UniRef50_R6GAB3		1.30609916553e-05	0.000385889205454	0.000372828213799
+UniRef50_V5TWY7	PTS system glucose specific transporter subunit IICBA	0.0117664701107	0.00412166415741	-0.00764480595329
+UniRef50_P0AAY8		0.0033763923461	0.00037381861418	-0.00300257373192
+UniRef50_B9DPU7	SpoU rRNA Methylase family protein	0.017012111595	0.00279649005363	-0.0142156215414
+UniRef50_Q9KT08	Phosphate acetyltransferase	4.00843983823e-06	4.23201108894e-05	3.83116710512e-05
+UniRef50_E8RV78	Thioesterase superfamily protein	1.08181752544e-05	2.64311388665e-05	1.56129636121e-05
+UniRef50_R5QLK2	UPF0301 protein BN820_01713	1.89509260256e-05	2.82676538848e-05	9.3167278592e-06
+UniRef50_A6LR77		0.000604442779257	0.000395869853358	-0.000208572925899
+UniRef50_I0C756	Phage infection protein	0.00964486780758	0.00222376163346	-0.00742110617412
+UniRef50_UPI0003B7187B	hypothetical protein	3.12724277815e-06	5.39258776798e-06	2.26534498983e-06
+UniRef50_Q8X5K0	2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase	0.00207556511661	0.000929020796484	-0.00114654432013
+UniRef50_A3M2F6	TraB protein	0.000321587976525	0.0139663629227	0.0136447749462
+UniRef50_W9R3M0	F box LRR repeat protein 20	2.67066679275e-05	3.74101057663e-05	1.07034378388e-05
+UniRef50_P0A042	Penicillinase repressor	0.102743611817	0.00946449512329	-0.0932791166937
+UniRef50_UPI000477F667	oligo 1,6 glucosidase	4.85469934699e-06	2.55836396239e-05	2.07289402769e-05
+UniRef50_D0Z4T1	Sex pilus assembly and synthesis protein TraW	0.000110133046984	2.11818667481e-05	-8.89511802359e-05
+UniRef50_UPI0003B35337	metallophosphatase	2.20994136925e-05	0.000157609166976	0.000135509753283
+UniRef50_E5AMJ1	5 methyltetrahydrofolate  homocysteine methyltransferase  homocysteine binding subunit	0.00123840239869	0.000164521841338	-0.00107388055735
+UniRef50_A7N2P9	Oxygen dependent choline dehydrogenase	0.00288520093223	0.000630939344942	-0.00225426158729
+UniRef50_Q02443	Protein PucC	0.00282622137911	0.000587102980539	-0.00223911839857
+UniRef50_UPI0003654508	hypothetical protein	1.9634204879e-05	0.000100444086032	8.0809881153e-05
+UniRef50_A5ULF0	Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA	0.00237091503971	0.000205473280904	-0.00216544175881
+UniRef50_A3M7N4	Chaperone protein	0.000179541746759	0.0074079265746	0.00722838482784
+UniRef50_UPI00034630B7	hypothetical protein	4.96103621917e-05	7.67689218563e-06	-4.19334700061e-05
+UniRef50_UPI0004666EB5	peptide ABC transporter permease	1.26140567229e-05	2.08310111708e-05	8.2169544479e-06
+UniRef50_E4RBH8	FolC	0.000211718678311	0.000140627002483	-7.1091675828e-05
+UniRef50_Q2YSR2	Probable transcriptional regulatory protein SAB0618	0.024892059746	0.00451488566039	-0.0203771740856
+UniRef50_G7M175	Regulatory protein MerR	0.000411862138822	0.00633557074342	0.0059237086046
+UniRef50_C6A2X9	Protein TSIB_0916	0.00139391642619	0.000775553708256	-0.000618362717934
+UniRef50_A6LR78		0.000248346045292	0.00042903153298	0.000180685487688
+UniRef50_H6P8H2		0.0047483481857	0.00582404369511	0.00107569550941
+UniRef50_F7S8I9	Integral membrane protein MviN 	0.000339951426538	0.000296463095397	-4.3488331141e-05
+UniRef50_S9S8H7	Enoyl [acyl carrier protein] reductase 	7.50879790259e-05	0.000133694097981	5.86061189551e-05
+UniRef50_K8BPK1	TRAP type C4 dicarboxylate transport system,large permease component	5.38096767783e-05	3.42863122114e-05	-1.95233645669e-05
+UniRef50_A1AYY0	Phage portal protein, HK97 family	0.0118287700269	0.00373650347458	-0.00809226655232
+UniRef50_UPI00035D2BA5	hypothetical protein	0.00332808398622	0.000630558278289	-0.00269752570793
+UniRef50_UPI0003B75FCC	SpeB arginase agmatinase formimionoglutamate hydrolase SpeB	5.31753949305e-06	1.99802208185e-05	1.46626813254e-05
+UniRef50_Q72ZS2		4.56636276892e-05	0.00021883532944	0.000173171701751
+UniRef50_Q5HKE8	Accumulation associated protein	0.00469941004339	0.00199446713919	-0.0027049429042
+UniRef50_UPI0004726693	hypothetical protein	2.72384181748e-06	0.000234744223097	0.00023202038128
+UniRef50_Q9HWU3	Chaperone CupB2	0.00119165504671	0.000531199922635	-0.000660455124075
+UniRef50_B2FQX2	tRNA specific 2 thiouridylase MnmA	0.000848508938512	1.0976850808e-05	-0.000837532087704
+UniRef50_I0E539	Integral membrane protein	0.000159247779219	0.00283844938843	0.00267920160921
+UniRef50_D9WMQ1	Linear gramicidin synthetase LgrC	2.61840860033e-05	4.51626827214e-05	1.89785967181e-05
+UniRef50_Q8CUF5		0.0134756277929	0.00364147086919	-0.00983415692371
+UniRef50_B2IUI4	S adenosylmethionine synthase	0.00280797324293	0.00532278314709	0.00251480990416
+UniRef50_C1CSL1	Transposase	0.000498864703879	6.32538489508e-05	-0.000435610854928
+UniRef50_UPI000288C7BA	30S ribosomal protein S4	4.15653772414e-05	2.84579714207e-05	-1.31074058207e-05
+UniRef50_S2E7R7	GMP synthase , N terminal domain protein (Fragment)	0.00011558767407	0.00010599065434	-9.59701973e-06
+UniRef50_UPI0003787C04	hypothetical protein	1.29711857342e-05	4.45244240939e-05	3.15532383597e-05
+UniRef50_Q8CUF8		0.0407873277028	0.0133660968503	-0.0274212308525
+UniRef50_P39434	Soluble lytic murein transglycosylase	0.00351587897532	0.000324226819846	-0.00319165215547
+UniRef50_T1YBP6		0.00412326218797	0.0022963030733	-0.00182695911467
+UniRef50_D8LEF1		9.07709684701e-06	3.31295799127e-05	2.40524830657e-05
+UniRef50_UPI0001912679	hypothetical protein, partial	0.000105609823837	0.000365477262384	0.000259867438547
+UniRef50_C7RGN8	NusA antitermination factor	0.000218158599058	0.000646189081135	0.000428030482077
+UniRef50_UPI0004715BAF	hypothetical protein	1.99921429523e-05	0.000663640337699	0.000643648194747
+UniRef50_F0KKH9		6.94887207843e-05	0.00351622771526	0.00344673899448
+UniRef50_A1KR53	Truncated pilin	0.000416344840642	0.000513594269898	9.7249429256e-05
+UniRef50_C1FK14	Transcriptional regulator, PadR family	0.000342132316185	0.000573430495526	0.000231298179341
+UniRef50_C6DIM2	p hydroxybenzoic acid efflux pump subunit AaeA	0.00266710302094	0.00177452980835	-0.00089257321259
+UniRef50_UPI0003B3D425	hypothetical protein	1.35848518416e-05	5.61264042979e-06	-7.97221141181e-06
+UniRef50_W9UYG1		0.000113929372892	4.63803771412e-05	-6.75489957508e-05
+UniRef50_UPI00046605A2	ABC transporter permease, partial	9.86204550387e-05	1.5208704671e-05	-8.34117503677e-05
+UniRef50_UPI0003634E25	hypothetical protein	0.000101104543546	3.66176712293e-05	-6.44868723167e-05
+UniRef50_UPI0004779514	ABC transporter ATP binding protein	4.34915219524e-06	1.22987128859e-05	7.94956069066e-06
+UniRef50_UPI0002881118	ribosome biogenesis GTPase ObgE	1.59775341625e-05	0.00103421837341	0.00101824083925
+UniRef50_UPI0003FA120A	hypothetical protein	1.58689415224e-05	2.76042739469e-05	1.17353324245e-05
+UniRef50_A5UL98	Cobalt ABC transporter, permease component, CbiQ	0.00253568526927	0.000495290313477	-0.00204039495579
+UniRef50_A4IK74	Phosphomethylpyrimidine synthase	2.60596728008e-06	9.66913450079e-06	7.06316722071e-06
+UniRef50_A9XTE3	Jhp0563 like glycosyltransferase	0.000387356403882	0.000575298332566	0.000187941928684
+UniRef50_W7X9E0		4.34368587273e-05	0.000249305229591	0.000205868370864
+UniRef50_UPI00016A4104	Succinate semialdehyde dehydrogenase (+))	1.24268124649e-05	1.84423515042e-05	6.0155390393e-06
+UniRef50_A6LY03	ABC transporter related	0.000232625774347	0.00132706855048	0.00109444277613
+UniRef50_X1JM57	Marine sediment metagenome DNA, contig	2.99629469866e-05	1.64638928718e-05	-1.34990541148e-05
+UniRef50_UPI00046E044E		7.48804682208e-06	4.62227673421e-06	-2.86577008787e-06
+UniRef50_C5YVS6		1.9807607126e-06	1.27037929336e-05	1.0723032221e-05
+UniRef50_UPI00047E12F0	hypothetical protein	3.74879285403e-06	4.82506144331e-05	4.45018215791e-05
+UniRef50_A7FM33	Polyamine aminopropyl transferase	0.00376831176294	0.000753665078294	-0.00301464668465
+UniRef50_D3D5C3		2.45874977153e-05	2.66737712782e-06	-2.19201205875e-05
+UniRef50_F7Q1E0	Carbonic anhydrase Gamma family Zn dependent enzyme protein	1.6452639757e-05	1.48339560468e-05	-1.6186837102e-06
+UniRef50_D5BS21	Surface presentation of antigens  protein	0.0110688456128	0.00207929368858	-0.00898955192422
+UniRef50_UPI000363FFD6	hypothetical protein	9.27389603794e-06	2.44196351808e-05	1.51457391429e-05
+UniRef50_A0A017HJR6	Uracil DNA glycosylase, family 4	6.67122256848e-06	0.000149401368563	0.000142730145995
+UniRef50_UPI000363A8BB	hypothetical protein	1.63555119175e-05	0.000233811113467	0.00021745560155
+UniRef50_W0F5U5	Spermidine putrescine ABC transporter permease protein	0.0189661852469	0.0133830857683	-0.0055830994786
+UniRef50_D9RGW2	SWIM zinc finger domain protein	0.0146069619984	0.00159961517614	-0.0130073468223
+UniRef50_N8ZPV3		7.68164587931e-06	0.00142624545122	0.00141856380534
+UniRef50_P28306	UPF0755 protein YceG	0.00373805359765	0.000557007659957	-0.00318104593769
+UniRef50_UPI0003B40484	ABC transporter substrate binding protein	4.16479467449e-06	1.02418607803e-05	6.07706610581e-06
+UniRef50_A0A023LG84		0.000729966895211	0.000641992837382	-8.7974057829e-05
+UniRef50_T2A0U3		0.00644175557497	0.00291901259026	-0.00352274298471
+UniRef50_M7DV55	ATP binding protein	0.00528052208862	0.00150175179625	-0.00377877029237
+UniRef50_O67260	Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	6.7183587158e-05	2.13268607061e-05	-4.58567264519e-05
+UniRef50_T2SKF0		5.41069262592e-05	0.000945032115242	0.000890925188983
+UniRef50_R4MC14	Poly polymerase	0.000180486374365	0.00357467742193	0.00339419104757
+UniRef50_N0C862	Histidine kinase	0.00457806341145	0.0070485833319	0.00247051992045
+UniRef50_Q4SDM4	Chromosome 10 SCAF14634, whole genome shotgun sequence	8.88202326721e-05	0.000138321641777	4.95014091049e-05
+UniRef50_UPI00047BEAD1	carnitine dehydratase	9.43135891636e-06	0.000180250783341	0.000170819424425
+UniRef50_A4VS16	Predicted esterase of the alpha beta hydrolase superfamily	0.000105051759422	0.000161081839199	5.6030079777e-05
+UniRef50_R5N6D2	DNA repair protein radA	7.1041348413e-05	0.000502203814538	0.000431162466125
+UniRef50_A0LT91	 S malonyltransferase like protein	0.000287425879838	0.00725903193647	0.00697160605663
+UniRef50_UPI00047DAB1B	3 ketoacyl ACP reductase	9.36161069431e-06	7.88780938876e-05	6.95164831933e-05
+UniRef50_UPI000350AD27	PREDICTED	2.42238996511e-05	9.72645983213e-06	-1.4497439819e-05
+UniRef50_UPI0003689445	hypothetical protein	0.000106552373166	2.56273932271e-05	-8.09249799389e-05
+UniRef50_A3XF72		8.200264802e-05	2.9407621757e-05	-5.2595026263e-05
+UniRef50_UPI0003767FF8	MULTISPECIES	3.94504180628e-06	0.000485169128244	0.000481224086438
+UniRef50_A6M2A6		0.000646321432094	0.00215613081364	0.00150980938155
+UniRef50_UPI0001AF2BB8	hypothetical protein	3.13933506579e-05	2.98851871602e-05	-1.5081634977e-06
+UniRef50_UPI00046AF737	iron transporter FeoB	2.02745698268e-06	1.75810874318e-05	1.55536304491e-05
+UniRef50_UPI0003B74184	pyridine nucleotide disulfide oxidoreductase	6.93318721851e-06	5.84914695182e-05	5.15582822997e-05
+UniRef50_Q1C306	Serine threonine transporter SstT	0.00151173674236	0.0174023159613	0.0158905792189
+UniRef50_UPI0004728704	dihydrofolate reductase	9.39461044018e-06	1.67579754899e-05	7.36336504972e-06
+UniRef50_O06745	Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase	0.000204579640357	0.0003430472397	0.000138467599343
+UniRef50_Q1BQE2	Oxygen dependent choline dehydrogenase	0.00199009862921	0.00883979572834	0.00684969709913
+UniRef50_Q17WJ2	Lipid A disaccharide synthase	0.000113814871007	0.00480051968337	0.00468670481236
+UniRef50_Q8R9S4	Diaminopimelate epimerase	6.99981141936e-06	1.2596920151e-05	5.59710873164e-06
+UniRef50_Q67Q92	Queuine tRNA ribosyltransferase	0.00715441280628	0.00749925503936	0.00034484223308
+UniRef50_UPI0001A64225	ubiquitin activating enzyme E1C	7.26104725343e-06	5.80967837562e-06	-1.45136887781e-06
+UniRef50_UPI0001B43C5C	hypothetical protein	0.000359370354861	0.000448340793706	8.8970438845e-05
+UniRef50_I6DSS5	Inner membrane transport YhaO domain protein	6.64039115119e-06	5.33471461469e-05	4.67067549957e-05
+UniRef50_UPI000328C4DC	PREDICTED	5.27424085961e-05	6.42183268496e-05	1.14759182535e-05
+UniRef50_B2SSQ5	MazG family protein	1.23772007498e-05	8.22109049933e-06	-4.15611025047e-06
+UniRef50_P56468	Adenylosuccinate lyase	2.19245649797e-05	0.00389146945085	0.00386954488587
+UniRef50_A4W496	Glutamate  tRNA ligase	0.0306025236873	0.0143672193783	-0.016235304309
+UniRef50_A3M472	Putative VGR related protein	0.000218687245022	0.00613097234509	0.00591228510007
+UniRef50_L1ENB1	4Fe 4S binding domain protein	0.000239690393573	0.000498665076251	0.000258974682678
+UniRef50_UPI00035C121E	hypothetical protein	5.05027168959e-06	3.85313244358e-06	-1.19713924601e-06
+UniRef50_A7ZV28	Elongation factor P   beta lysine ligase	0.00260751095839	0.000813093308337	-0.00179441765005
+UniRef50_D9WVR9	Putative PE PGRS family protein	1.67315728401e-05	0.000159818499389	0.000143086926549
+UniRef50_P62410	Phosphoglycerate kinase	3.89912285422e-05	3.51353345263e-05	-3.8558940159e-06
+UniRef50_F2QFE8	ABC transporter, membrane spanning permease amino acid transport	0.00392621463373	0.00166205695057	-0.00226415768316
+UniRef50_UPI00038138EB	hypothetical protein	9.74520957538e-05	6.70327217113e-05	-3.04193740425e-05
+UniRef50_A0A009ENE3		0.000843973069637	0.00168582303174	0.000841849962103
+UniRef50_R4YI13	Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	2.18983818154e-05	8.19958858392e-05	6.00975040238e-05
+UniRef50_B2JNG5	Response regulator receiver modulated diguanylate cyclase	0.000308517570146	0.000672437675137	0.000363920104991
+UniRef50_N6UYM2		0.000922155916471	0.00186240189643	0.000940245979959
+UniRef50_Q5HKC3	Membrane protein, putative	0.00726108399416	0.00309896527255	-0.00416211872161
+UniRef50_Q6F9M2		0.000151804016961	0.0028152436106	0.00266343959364
+UniRef50_UPI0002F008CE	hypothetical protein	3.05510220014e-05	2.92928165668e-05	-1.2582054346e-06
+UniRef50_D6SFU4		0.0104844913194	0.000760127631047	-0.00972436368835
+UniRef50_UPI00036F8D63	acriflavine resistance protein B, partial	0.00106048843486	0.000499540787336	-0.000560947647524
+UniRef50_E1SCF3	Protein CreA	2.11541297717e-05	1.45553518633e-05	-6.5987779084e-06
+UniRef50_Q09CY9	Glycerophosphoryl diester phosphodiesterase family protein	0.000204599451951	0.00422326132078	0.00401866186883
+UniRef50_UPI0003B43E42	ferredoxin	4.46274154567e-06	3.92315621134e-05	3.47688205677e-05
+UniRef50_Q5F9U6	Ferrochelatase	0.000122353727569	0.00366894321078	0.00354658948321
+UniRef50_B2UCS2	MJ0042 family finger like protein	0.000436415527039	2.88660891432e-05	-0.000407549437896
+UniRef50_Q2SQX2	Methionyl tRNA formyltransferase	7.03321240642e-06	8.12177811378e-06	1.08856570736e-06
+UniRef50_M2P9Q5		7.17253100933e-06	1.38216466581e-05	6.64911564877e-06
+UniRef50_Q0DG35	Glutamate synthase 2 [NADH], chloroplastic	1.1608916872e-06	7.63134752787e-06	6.47045584067e-06
+UniRef50_S5N4L1	Phosphodiesterase	1.11725266408e-05	1.40569125541e-05	2.8843859133e-06
+UniRef50_E2CN00	RNA binding region RNP 1	0.000396145670546	7.73765875453e-05	-0.000318769083001
+UniRef50_M1LU43	ABC type multidrug transport system, permease component	0.000240268655239	0.00135462214449	0.00111435348925
+UniRef50_Q73UD7	Uracil phosphoribosyltransferase	6.27443715546e-06	3.12001698176e-05	2.49257326621e-05
+UniRef50_G3VFK2		0.000230091468406	0.000109538040348	-0.000120553428058
+UniRef50_UPI00046F72B6	hypothetical protein	6.2197453924e-06	8.59113495867e-06	2.37138956627e-06
+UniRef50_M1MME7	Diguanylate cyclase with GAF sensor	0.000381712520228	0.000671718341601	0.000290005821373
+UniRef50_Q9RXG2		0.000387828070733	0.00530660967886	0.00491878160813
+UniRef50_Q492H7	NADH quinone oxidoreductase subunit B	0.00404767099453	0.00502923563427	0.00098156463974
+UniRef50_Q9RU97	NADH quinone oxidoreductase subunit K	1.34522316482e-05	0.00418202630395	0.0041685740723
+UniRef50_M4JWD8	Peptidase, M48 family protein	0.000162141165429	0.000127842729522	-3.4298435907e-05
+UniRef50_A7ZV66	3 keto L gulonate 6 phosphate decarboxylase UlaD	0.000103341699514	7.2991824593e-05	-3.0349874921e-05
+UniRef50_E0S0B7	HD domain containing protein	0.000468041431179	0.000295883924982	-0.000172157506197
+UniRef50_UPI00037812FE	hypothetical protein	3.35813047136e-06	0.000287064064529	0.000283705934058
+UniRef50_A0A016QQ81	Ferripyochelin binding protein	6.54836586944e-05	2.78214091041e-05	-3.76622495903e-05
+UniRef50_UPI0002481AAE	ATP dependent DNA helicase	2.42694999284e-05	7.7027657563e-06	-1.65667341721e-05
+UniRef50_Q9HVI1	Cyclic diguanosine monophosphate binding protein PA4608	0.00105837193136	0.00466289534518	0.00360452341382
+UniRef50_C7NJL3		0.000109848409144	0.000906500687807	0.000796652278663
+UniRef50_Q6GCB8	Probable acetyl CoA acyltransferase	0.0203482312237	0.00454040359876	-0.0158078276249
+UniRef50_UPI0001744E0A	heme oxygenase BphO	7.89527497315e-05	0.00023252591904	0.000153573169309
+UniRef50_U3T6D3		2.72456884078e-05	0.000584785554841	0.000557539866433
+UniRef50_Q9I5S3		0.000501945955988	0.000806210423977	0.000304264467989
+UniRef50_Q9I5S0		0.00174343484166	0.000180806146044	-0.00156262869562
+UniRef50_G7ZR16	6 phospho beta glucosidase	0.00467654438836	0.000567947675405	-0.00410859671295
+UniRef50_D9W5N7	Modular polyketide synthase 	0.000410239963179	0.000593776310854	0.000183536347675
+UniRef50_A6LR15	Heavy metal transport detoxification protein	0.000316180921983	0.000512459086671	0.000196278164688
+UniRef50_F8TV67		3.46312723582e-05	1.03103551076e-05	-2.43209172506e-05
+UniRef50_UPI00039592BB	PREDICTED	7.9666718241e-05	0.000268347866217	0.000188681147976
+UniRef50_C5C3V4	Dihydrodipicolinate synthetase	0.000246186514471	0.00753736372692	0.00729117721245
+UniRef50_Q8VPM9	Putative minor silk ampullate protein	4.7304008625e-05	3.87749774621e-05	-8.5290311629e-06
+UniRef50_Q6A9K7	UvrABC system protein B	0.00270230565789	0.00831561808501	0.00561331242712
+UniRef50_M9VGK7	AsnC family transcriptional regulator	0.000143530794236	0.00551264336394	0.0053691125697
+UniRef50_F0BGS2		8.07267186025e-06	4.23917160179e-05	3.43190441576e-05
+UniRef50_A7X1H8	Probable dual specificity RNA methyltransferase RlmN	0.0173155908513	0.00438866654436	-0.0129269243069
+UniRef50_I0C1J1	ABC transporter ATP binding protein	0.0261910592652	0.0105394015222	-0.015651657743
+UniRef50_Q6A6A0	Putative N acetylmannosamine 6 phosphate 2 epimerase	0.000281006939596	0.0013911193257	0.0011101123861
+UniRef50_B9KJF4	Flagellar protein FlgJ	0.000715610509157	0.00112698588731	0.000411375378153
+UniRef50_Q9KZ75	Urocanate hydratase	0.0182166153492	0.0681099405334	0.0498933251842
+UniRef50_A6LXE4		0.000149203948168	0.000738619916081	0.000589415967913
+UniRef50_Q4L666	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0145257566457	0.00476950824406	-0.00975624840164
+UniRef50_C4Z005	Sex pilus assembly	8.8555487215e-05	6.91722850034e-06	-8.16382587147e-05
+UniRef50_R6X9T8	HAD hydrolase family IIA	0.000278930533636	0.0011980488161	0.000919118282464
+UniRef50_UPI0002B45CA4	PREDICTED	2.98187693916e-05	1.34323196185e-05	-1.63864497731e-05
+UniRef50_X5A6R4	NMT1 THI5 like domain containing protein	0.000221225350812	0.00152028612435	0.00129906077354
+UniRef50_UPI00036E0775	hypothetical protein	6.32796426477e-06	4.37819395129e-06	-1.94977031348e-06
+UniRef50_A6LY63	Restriction modification system DNA specificity domain	0.000631529146184	0.000962204258572	0.000330675112388
+UniRef50_A0A016QUC8	UvrABC system protein B	0.000162050388312	0.0521461707026	0.0519841203143
+UniRef50_P64625		0.00346788922668	0.000372247947718	-0.00309564127896
+UniRef50_A6M107	AzlC family protein	0.000478643582965	0.000829265443732	0.000350621860767
+UniRef50_UPI0003C16A5C	PREDICTED	0.000251337971586	9.19579373135e-05	-0.000159380034272
+UniRef50_UPI0002E46BCB	hypothetical protein	5.50110513577e-05	0.000450612827147	0.000395601775789
+UniRef50_A9FT06	Succinate dehydrogenase	0.00779650447133	0.0030815218532	-0.00471498261813
+UniRef50_B4EW02	Exoribonuclease 2	0.00326555404829	0.000878606472084	-0.00238694757621
+UniRef50_D3QD55	Hydrolase 	0.0231365541319	0.0076293262034	-0.0155072279285
+UniRef50_T0U7I8		7.23954326956e-06	1.65422229641e-05	9.30267969454e-06
+UniRef50_UPI0003B4922D	aliphatic sulfonate ABC transporter ATP binding protein	2.23952646445e-05	1.33864378036e-05	-9.0088268409e-06
+UniRef50_UPI0002C44C85		9.46637939872e-05	9.77869884769e-05	3.1231944897e-06
+UniRef50_UPI000479BB48	MerR family transcriptional regulator	0.000215980572717	0.000155763447928	-6.0217124789e-05
+UniRef50_L7X2B6		0.00944755731629	0.001823243788	-0.00762431352829
+UniRef50_E1HW74		0.000244259788288	0.000138828911316	-0.000105430876972
+UniRef50_Q6GGX3	Extracellular matrix binding protein ebh	0.003334960755	4.60832309785e-05	-0.00328887752402
+UniRef50_M1VHC0	2 desacetyl 2 hydroxyethyl bacteriochlorophyllide a dehydrogenase 	0.000293814387718	0.000159090209926	-0.000134724177792
+UniRef50_A0A011PNT7	N acetylmuramoyl L alanine amidase AmiC	1.31242779817e-05	8.68316240677e-06	-4.44111557493e-06
+UniRef50_UPI00042B1EB5	Urease isoform 3	1.12520559249e-05	1.84403915345e-05	7.1883356096e-06
+UniRef50_B9JSW9	Altronate oxidoreductase	0.000334571641719	0.000131641919103	-0.000202929722616
+UniRef50_D4TSX0		8.82751808228e-06	0.0017486384547	0.00173981093662
+UniRef50_UPI00022CADD1	PREDICTED	1.6286251196e-05	4.72618973113e-05	3.09756461153e-05
+UniRef50_U6HVE2	NADH dehydrogenase  iron sulfur	1.49300869617e-05	2.99851778646e-05	1.50550909029e-05
+UniRef50_H4AYY9		0.000271572653853	0.000424916122588	0.000153343468735
+UniRef50_UPI000467CE02	hypothetical protein	1.16220723644e-05	8.99413266923e-06	-2.62793969517e-06
+UniRef50_F4QVG8	ABC transporter ATP binding protein	4.76204554315e-05	0.000146436949921	9.88164944895e-05
+UniRef50_C4LBT6	CreA family protein	3.36022263197e-05	1.89467968641e-05	-1.46554294556e-05
+UniRef50_P75713		0.00323162144966	0.00268839973059	-0.00054322171907
+UniRef50_Q9A5B6	Histidinol phosphate aminotransferase 2	2.27177554584e-05	3.28487897182e-05	1.01310342598e-05
+UniRef50_UPI00046D93F6	30S ribosomal protein S2	1.41273048132e-05	7.10809810176e-05	5.69536762044e-05
+UniRef50_UPI00046FBC18	ribonucleoside diphosphate reductase, partial	2.52582639161e-05	6.91638117411e-05	4.3905547825e-05
+UniRef50_E5QQY5	Magnesium transporter	0.017965537466	0.00240778700589	-0.0155577504601
+UniRef50_E8SE09		0.00472048239387	0.00187938577467	-0.0028410966192
+UniRef50_B4V430	Secreted protein	3.40701929331e-05	1.29466452027e-05	-2.11235477304e-05
+UniRef50_UPI0001BF7CE0	hypothetical protein SMAC_11079	0.000128207828784	0.000414173488835	0.000285965660051
+UniRef50_Q04677	Acetyl CoA acetyltransferase IB	1.21298909665e-05	4.07787402473e-05	2.86488492808e-05
+UniRef50_G8VNQ8	L lactate dehydrogenase	0.000446262692631	0.00571270550924	0.00526644281661
+UniRef50_UPI00037C43AF	hypothetical protein	2.00906876099e-05	3.70002381506e-05	1.69095505407e-05
+UniRef50_UPI00037D4375	hypothetical protein	2.13910017578e-05	5.40325035305e-05	3.26415017727e-05
+UniRef50_Q88J90	Ribose import ATP binding protein RbsA	0.00440773607674	0.000307383772219	-0.00410035230452
+UniRef50_U2ZG68		7.98678786862e-05	1.57130771881e-05	-6.41548014981e-05
+UniRef50_Q896G3	Glutamate 5 kinase	7.47678913671e-06	0.0024131528176	0.00240567602846
+UniRef50_G7VUW1		2.1019726512e-05	2.11359497786e-05	1.162232666e-07
+UniRef50_D6XC51	Transcriptional regulator	1.36787110789e-05	9.94961436477e-06	-3.72909671413e-06
+UniRef50_P33655	DNA primase	8.35762336971e-05	0.000530095324728	0.000446519091031
+UniRef50_A1SJN3	Putative spermidine synthase	7.89399475999e-06	4.33104682062e-05	3.54164734462e-05
+UniRef50_A5ULC4	Archaeosine tRNA ribosyltransferase	0.00192138966956	0.00240659929951	0.00048520962995
+UniRef50_UPI00037F7E70	hypothetical protein	7.29407301526e-05	0.000288014754741	0.000215074024588
+UniRef50_UPI000155436C	hypothetical protein ORF028	6.20073369599e-05	1.49679770166e-05	-4.70393599433e-05
+UniRef50_D6TC11		2.05278831548e-05	4.74473247922e-05	2.69194416374e-05
+UniRef50_H6MGY8		0.0008644717302	0.00144056929363	0.00057609756343
+UniRef50_UPI00029A30E6	DEAD DEAH box helicase	1.17690045276e-05	4.14982408194e-05	2.97292362918e-05
+UniRef50_D2AI68		0.000679051253281	7.64917025722e-06	-0.000671402083024
+UniRef50_Q5HM66		0.0188302815262	0.00564301100836	-0.0131872705178
+UniRef50_C1L1N4	Protease HtpX homolog	0.00319280056892	0.00528929293076	0.00209649236184
+UniRef50_R7IC53		4.71667980926e-06	1.14380848547e-05	6.72140504544e-06
+UniRef50_Q2LSL3	Chemotaxis response regulator protein glutamate methylesterase 2	8.44274447877e-05	9.1517727501e-06	-7.52756720376e-05
+UniRef50_UPI0004659E7D	hypothetical protein	6.88292749957e-06	7.5503558979e-05	6.86206314794e-05
+UniRef50_P48372	DNA gyrase subunit A	0.000930594521004	0.00364226957599	0.00271167505499
+UniRef50_Q89AT7	NADH quinone oxidoreductase subunit K	4.0262775166e-05	5.81517340679e-05	1.78889589019e-05
+UniRef50_UPI00041970DE	hypothetical protein	6.13008733624e-06	4.52171149826e-05	3.90870276464e-05
+UniRef50_UPI00016C51C4	hypothetical protein	0.000154749066346	6.04312757241e-05	-9.43177906219e-05
+UniRef50_M5Q8W3	Opacity protein	0.00366758055408	0.000600644146164	-0.00306693640792
+UniRef50_UPI00046AB508	ABC transporter permease	5.60732507828e-05	4.31860228865e-05	-1.28872278963e-05
+UniRef50_C6S5R7		0.00060237125881	0.00448312547227	0.00388075421346
+UniRef50_Q28TI8	Chromosomal replication initiator DnaA	8.29777069447e-05	1.35544832623e-05	-6.94232236824e-05
+UniRef50_Q9I633		0.00110122422018	0.00112976333564	2.853911546e-05
+UniRef50_S5UJA4		0.000563272726229	0.000215762773233	-0.000347509952996
+UniRef50_UPI0003612EB0	hypothetical protein	1.236221516e-05	1.34671040401e-05	1.1048888801e-06
+UniRef50_A6QI12		0.0179601373816	0.00728077508766	-0.0106793622939
+UniRef50_UPI0003C17432	PREDICTED	5.79010549164e-05	5.03991597532e-06	-5.28611389411e-05
+UniRef50_F3ZDJ3		2.35894280487e-05	6.04648472623e-06	-1.75429433225e-05
+UniRef50_U5NMQ2	Phage major tail protein 2	0.0102943503063	0.000987839050157	-0.00930651125614
+UniRef50_C6D5Z2	Inosine uridine preferring nucleoside hydrolase	0.01789529746	0.00573741625865	-0.0121578812014
+UniRef50_A0A032VXU1		0.00013212252015	2.93015154984e-05	-0.000102821004652
+UniRef50_J4TL27		5.00051400286e-05	2.65842247385e-05	-2.34209152901e-05
+UniRef50_P33517	Cytochrome c oxidase subunit 1	0.0136412285444	0.00313674057469	-0.0105044879697
+UniRef50_UPI000363849B	hypothetical protein	1.01937742949e-05	1.12750633357e-05	1.0812890408e-06
+UniRef50_R7B083		0.000699377019834	0.00201040717165	0.00131103015182
+UniRef50_P05101	Modification methylase EcoRII	0.00277558740306	0.00180407385009	-0.00097151355297
+UniRef50_Q83EC8	Lipoprotein signal peptidase	1.53027344975e-05	2.2156846363e-05	6.8541118655e-06
+UniRef50_Q5PK75	N acetyl gamma glutamyl phosphate reductase	0.00187205310246	0.000545553657893	-0.00132649944457
+UniRef50_E7HD27	EAL domain protein	0.00288123176201	0.00150581795258	-0.00137541380943
+UniRef50_F3U4M2	TRAP dicarboxylate family transporter DctQ subunit	0.0208209957479	0.00031754484429	-0.0205034509036
+UniRef50_B3Q9Q6	Polyphosphate kinase	2.36701005378e-06	0.000307542962394	0.00030517595234
+UniRef50_W5YF86		4.9834501953e-05	3.10333472713e-05	-1.88011546817e-05
+UniRef50_P30866		0.00516235348174	0.000350871332905	-0.00481148214884
+UniRef50_M1FJM0		0.000121777348094	4.70100154563e-05	-7.47673326377e-05
+UniRef50_Q6F7D3	Septum formation, penicillin binding protein 3, peptidoglycan synthetase	6.90523150384e-05	0.00740593690898	0.00733688459394
+UniRef50_UPI000382D7E4	hypothetical protein	5.45345376878e-06	9.18193274234e-06	3.72847897356e-06
+UniRef50_P37755	Phosphomannomutase	0.00303176942356	0.00613549440538	0.00310372498182
+UniRef50_F2J6H9	Bacteriophage related protein	0.00501063747204	0.000252407440337	-0.0047582300317
+UniRef50_F4DMU6		0.00190827878082	0.000597588102367	-0.00131069067845
+UniRef50_UPI00036D9AC5	hypothetical protein	4.26343589344e-05	5.13812084703e-05	8.7468495359e-06
+UniRef50_Q2RYZ8	Glyoxalase family protein	1.18913295002e-05	2.83455037213e-05	1.64541742211e-05
+UniRef50_P39400	Putative L galactonate oxidoreductase	0.00242366681941	0.00124901404606	-0.00117465277335
+UniRef50_K6KS82	Thiamine biosynthesis protein ThiH	0.000537631260744	0.00022323218345	-0.000314399077294
+UniRef50_B8GCI5	SAF domain protein	0.00481591578526	0.00175863145623	-0.00305728432903
+UniRef50_F9YY04	N acetylgalactosaminoglycan deacetylase	0.000892585745973	0.00489596295345	0.00400337720748
+UniRef50_P23842		0.00278058507856	0.000965219277847	-0.00181536580071
+UniRef50_UPI0003781C48	hypothetical protein	4.13030439537e-05	2.47627958913e-05	-1.65402480624e-05
+UniRef50_Q7WJ90	Isoprenyl transferase	0.000159053085188	0.00236730761292	0.00220825452773
+UniRef50_P21883	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.011853523903	0.00201255846901	-0.00984096543399
+UniRef50_P11512	DNA directed RNA polymerase subunit A	0.00362178105971	0.000415063051819	-0.00320671800789
+UniRef50_U5MVJ3	Isochorismatase hydrolase	0.000236421287378	0.000326316801329	8.9895513951e-05
+UniRef50_UPI000462F18D	hypothetical protein	7.98109725941e-05	2.04315075058e-05	-5.93794650883e-05
+UniRef50_Q8KLH5	Cbb3 type cytochrome c oxidase subunit FixP	5.85796773065e-05	3.70552172911e-05	-2.15244600154e-05
+UniRef50_Q49YW6		0.0240410890848	0.00369208288584	-0.020349006199
+UniRef50_UPI0002880B99	putative tartrate dehydrogenase	5.16879667234e-05	7.2030985309e-05	2.03430185856e-05
+UniRef50_M1MKH3	Xylose transport system permease protein XylH	0.000458041194981	0.000839849003335	0.000381807808354
+UniRef50_W6IFL4	ABC transporter ATP binding protein uup	0.0023587129122	0.000659668875454	-0.00169904403675
+UniRef50_Q2RPU1	UPF0301 protein Rru_A3059	3.09504684075e-05	4.27170627701e-05	1.17665943626e-05
+UniRef50_R5BPH7		0.000158830009337	0.00313271613378	0.00297388612444
+UniRef50_V2PEB0	Virulence factor MviN 	2.1484164896e-05	2.20039700713e-05	5.198051753e-07
+UniRef50_M1XJR0		6.63581375609e-06	1.20984357469e-05	5.46262199081e-06
+UniRef50_UPI0003B68FE0	MerR family transcriptional regulator	5.31846975178e-05	8.94839451467e-05	3.62992476289e-05
+UniRef50_Q9RVH4	Aspartate  tRNA ligase	0.000201469908573	0.0414308882991	0.0412294183905
+UniRef50_UPI000468F8E2	cystathionine beta lyase	1.23996303595e-05	4.8227116963e-05	3.58274866035e-05
+UniRef50_R9U1S9	RNA polymerase sigma factor	0.00129483588609	0.00023625336415	-0.00105858252194
+UniRef50_UPI0004687562	MerR family transcriptional regulator	0.000290881013318	0.000129877749424	-0.000161003263894
+UniRef50_O25534	Plasminogen binding protein PgbB	8.72463764734e-05	0.00320398865443	0.00311674227796
+UniRef50_G7M904	Protein FdhD homolog	0.00103937441773	0.00157398702709	0.00053461260936
+UniRef50_K2EJ34	NADH dehydrogenase  1 alpha subcomplex subunit 9	7.29156488472e-05	7.48647990631e-06	-6.54291689409e-05
+UniRef50_UPI00036C5DD6	hypothetical protein	1.98068723647e-05	8.00193321237e-05	6.0212459759e-05
+UniRef50_M2IF34		0.00310512668249	0.00196877803463	-0.00113634864786
+UniRef50_Q163W1	Ferredoxin flavodoxin oxidoreductase family protein, putative	0.0065292919727	0.00229630977559	-0.00423298219711
+UniRef50_C5XYX3		0.000306057379469	5.84501891865e-05	-0.000247607190282
+UniRef50_A3MMR3	6,7 dimethyl 8 ribityllumazine synthase	1.93804017857e-05	0.00790566518263	0.00788628478084
+UniRef50_C6A0C0		0.000586072951818	0.00193065899772	0.0013445860459
+UniRef50_G8VCJ9	Thioredoxin	0.000419629596194	0.00385010181324	0.00343047221705
+UniRef50_T3IDK7	Pyridoxal phosphate dependent enzyme family protein	0.000746352796944	0.00518364784753	0.00443729505059
+UniRef50_UPI0003AA60F6	hypothetical protein	0.000140200449436	5.66717307982e-05	-8.35287186378e-05
+UniRef50_Q8XHI3	Probable cytosol aminopeptidase	0.000583662719966	0.00259482982871	0.00201116710874
+UniRef50_UPI000382BCA5	hypothetical protein	1.39573917259e-05	1.41648661781e-05	2.074744522e-07
+UniRef50_D4HCP3		0.00010342081886	0.00209105665189	0.00198763583303
+UniRef50_W5XBB1	Histidine ammonia lyase	3.61367647422e-06	9.26555519941e-05	8.90418755199e-05
+UniRef50_C9ADA6		0.00198676836238	0.000560727921252	-0.00142604044113
+UniRef50_C9ADA5		0.00308347474601	0.00222782084296	-0.00085565390305
+UniRef50_Q46858		0.002701613847	0.000938775529307	-0.00176283831769
+UniRef50_P77622	Probable D,D dipeptide transport ATP binding protein DdpF	0.00244855463794	0.0021873905373	-0.00026116410064
+UniRef50_UPI00036F0C0F	MULTISPECIES	4.84202910377e-05	9.34398274799e-05	4.50195364422e-05
+UniRef50_Q5HF07	Riboflavin biosynthesis protein RibBA	0.0190624057742	0.00555824631039	-0.0135041594638
+UniRef50_C4ZZR6	Phosphoadenosine phosphosulfate reductase	0.00328279120666	0.000818494850332	-0.00246429635633
+UniRef50_B2VEQ1	Electron transport complex subunit A	0.0170314075983	0.00126680153349	-0.0157646060648
+UniRef50_A8J087	Vasa intronic gene	0.000152141560531	0.000228901958219	7.6760397688e-05
+UniRef50_Q2RXH9	S methyl 5 thioadenosine phosphorylase	0.000730391775106	0.000238479169743	-0.000491912605363
+UniRef50_UPI0002626AF6	binding protein dependent transport systems inner membrane component	6.71206543511e-06	2.71629193096e-05	2.04508538745e-05
+UniRef50_P05165	Propionyl CoA carboxylase alpha chain, mitochondrial	1.61935911975e-05	3.24110961633e-06	-1.29524815812e-05
+UniRef50_UPI0001CBB1BB	PREDICTED	8.53039829045e-06	5.21788023025e-06	-3.3125180602e-06
+UniRef50_W4TUT3	Transglutaminase like enzymes	2.5862456118e-05	0.000107251474331	8.1389018213e-05
+UniRef50_K2BIT5		0.000129059078639	0.000287330651315	0.000158271572676
+UniRef50_A8IAB0	Amino acid ABC transporter permease protein	0.00281637280679	0.000841597151491	-0.0019747756553
+UniRef50_UPI0004708F04	hypothetical protein	6.2257393452e-06	2.43093788484e-05	1.80836395032e-05
+UniRef50_E2XPH3		0.000290564872999	0.000345399655201	5.4834782202e-05
+UniRef50_Q39XE0	8 amino 7 oxononanoate synthase	1.25556389014e-05	5.04897623632e-05	3.79341234618e-05
+UniRef50_C6S4Z8		1.45198687173e-05	0.00119479420507	0.00118027433635
+UniRef50_U7DLP3	Glutathione S transferase	0.000390104399963	0.000331816522686	-5.8287877277e-05
+UniRef50_B7MUC3	Orotidine 5 phosphate decarboxylase	0.00388374367237	0.00119287884832	-0.00269086482405
+UniRef50_Q837G9	Probable potassium transport system protein kup	0.000443530771157	0.00180347286273	0.00135994209157
+UniRef50_Q3IW67		0.00229514943092	0.00230880025573	1.365082481e-05
+UniRef50_C4ZAX1	Chorismate synthase	5.7795286649e-06	1.45660469822e-05	8.7865183173e-06
+UniRef50_UPI00046B80C4	PREDICTED	4.18902954676e-06	2.9089235791e-05	2.49002062442e-05
+UniRef50_H4FA07	Pirin domain protein 	2.01974655201e-05	1.76610919166e-05	-2.5363736035e-06
+UniRef50_F3MX46		0.000875973587294	0.00127482698404	0.000398853396746
+UniRef50_UPI0003B5EAE0	oxidoreductase	1.39866628539e-05	1.10941363218e-05	-2.8925265321e-06
+UniRef50_C6SS05		0.00598815968907	0.000194287306055	-0.00579387238301
+UniRef50_C6SS04		0.00587935260479	0.00225630437445	-0.00362304823034
+UniRef50_S9QXJ6	CRISPR associated helicase Cas3 	0.000377661764705	2.18823682261e-05	-0.000355779396479
+UniRef50_I6FFI0		0.000191584057255	3.06088970939e-05	-0.000160975160161
+UniRef50_F3ZKC2	Putative ADP ribosylation Crystallin J1	8.55179844037e-05	0.000270957744136	0.000185439759732
+UniRef50_Q9RX93	Trans aconitate 2 methyltransferase	0.000152007780746	0.0243229490084	0.0241709412277
+UniRef50_A5UKU5	pH regulator (Monovalent cation	0.00252867423531	0.00252135717113	-7.31706418e-06
+UniRef50_S6GN96	Transporting ATPase	6.22803714885e-05	2.56353706763e-05	-3.66450008122e-05
+UniRef50_X8L2K3	Putative aldehyde alcohol dehydrogenase 	0.00282206543533	0.000672122116716	-0.00214994331861
+UniRef50_P55604		0.000658665929235	4.46762366605e-05	-0.000613989692575
+UniRef50_D4H9L5	Cyclic nucleotide binding domain protein	0.000507828684551	0.00602888510839	0.00552105642384
+UniRef50_A5EBW8	ATP synthase subunit a 2	0.00449838640915	0.00150499976281	-0.00299338664634
+UniRef50_Z9WHX3		0.0002209039276	7.44130526917e-05	-0.000146490874908
+UniRef50_UPI000466F07F	phosphogluconate dehydratase	1.05947354315e-05	4.83108469034e-05	3.77161114719e-05
+UniRef50_UPI0004768B65	3 oxoacyl ACP synthase	1.1281742801e-05	7.64733761624e-06	-3.63440518476e-06
+UniRef50_A6LU78	RNA polymerase, sigma 24 subunit, ECF subfamily	0.000703390041336	0.00115209973879	0.000448709697454
+UniRef50_D7GFP5	Iron sulfur protein	0.000172660699175	0.00414534096087	0.0039726802617
+UniRef50_UPI00047E8C5B	hypothetical protein	1.79336051512e-05	1.26032279032e-05	-5.330377248e-06
+UniRef50_UPI00036C9333	hypothetical protein	0.000397152344639	0.000486348309227	8.9195964588e-05
+UniRef50_F0YDM5		1.5176269066e-05	0.000284353565144	0.000269177296078
+UniRef50_B4S8V9	3 methyl 2 oxobutanoate hydroxymethyltransferase	7.20326931592e-06	1.10056351147e-05	3.80236579878e-06
+UniRef50_UPI0002631405	anaerobic dehydrogenase iron sulfur binding subunit 1, partial	1.19232248618e-05	1.87243630519e-05	6.8011381901e-06
+UniRef50_F8KPC2	Arginase	0.000230583183354	0.00397294523244	0.00374236204909
+UniRef50_UPI00040E124F	sodium	1.33710768226e-05	0.00303005492361	0.00301668384679
+UniRef50_H3VVP7	Gram positive signal peptide protein, YSIRK family	0.0103226323892	0.00261871323479	-0.00770391915441
+UniRef50_UPI00037B942A	hypothetical protein	9.43495658811e-06	9.06567190075e-05	8.12217624194e-05
+UniRef50_X1YQR0		6.13492178685e-05	1.7436954316e-05	-4.39122635525e-05
+UniRef50_A6UIR4	Tripartite ATP independent periplasmic transporter DctQ component	7.83111358524e-05	2.30901302771e-05	-5.52210055753e-05
+UniRef50_X1TSL9	Marine sediment metagenome DNA, contig	8.16098982228e-06	1.53847382988e-05	7.22374847652e-06
+UniRef50_G4LLH9		0.00107510097027	0.000938402286798	-0.000136698683472
+UniRef50_UPI0002376205	rtx family calcium binding cytotoxins and bacteriocins protein, partial	1.10250642722e-05	2.78836809785e-05	1.68586167063e-05
+UniRef50_UPI000263050C	tryptophan synthase subunit alpha, partial	1.29998909956e-05	1.22609418911e-05	-7.389491045e-07
+UniRef50_E0TAZ2	Plasma membrane H+ transporting two sector ATPase, C subunit	0.000146007179933	6.08014709546e-05	-8.52057089784e-05
+UniRef50_U5MY05	SH3, type 3 domain protein	0.00022469404098	0.000535790788628	0.000311096747648
+UniRef50_H7CVA1	Iron chelate ABC transporter permease protein	0.000234441534824	0.000961314176563	0.000726872641739
+UniRef50_E3I0H1	L carnitine dehydratase bile acid inducible protein F	0.000879268488435	0.000331278904589	-0.000547989583846
+UniRef50_A0A037XJM6		3.23587209859e-06	1.73340412166e-06	-1.50246797693e-06
+UniRef50_V8HAI2		2.1256264004e-05	1.59266287479e-05	-5.3296352561e-06
+UniRef50_K2HT96		0.000273963012405	1.8895318272e-05	-0.000255067694133
+UniRef50_U4TIA1	Phage portal protein, HK97 family	3.7623194529e-06	6.75123771946e-06	2.98891826656e-06
+UniRef50_H5TPA6	Putative uracil permease 	6.24446444935e-05	3.06187918985e-05	-3.1825852595e-05
+UniRef50_Q6FER0	Sec independent protein translocase protein TatB	0.000529185965684	0.00206979674078	0.0015406107751
+UniRef50_B7RPE0		0.000386673330433	0.000368378426439	-1.8294903994e-05
+UniRef50_Q65I16	Glycerol 3 phosphate dehydrogenase [NAD+]	0.000601175682778	0.00390136299412	0.00330018731134
+UniRef50_V4IFH3		8.36475922404e-06	2.58604758054e-05	1.74957165814e-05
+UniRef50_UPI000367658B	hypothetical protein	2.17704235779e-05	3.81355705191e-06	-1.7956866526e-05
+UniRef50_UPI00044077DF	carboxymuconolactone decarboxylase	2.55063761025e-05	6.22334868425e-05	3.672711074e-05
+UniRef50_UPI0003B3D63E	DEAD DEAH box helicase	2.61441615261e-06	9.81634331638e-06	7.20192716377e-06
+UniRef50_C5N0Y3		0.0116853212466	0.00232857505071	-0.00935674619589
+UniRef50_UPI0003B528A9	ribonuclease D	5.87504737223e-05	1.08728215709e-05	-4.78776521514e-05
+UniRef50_C5N0Y1		0.00949016883411	0.0038952447552	-0.00559492407891
+UniRef50_B4U5D1	Pyruvate formate lyase activating enzyme	0.00576430219594	0.00422583836511	-0.00153846383083
+UniRef50_UPI0003B42040	phosphoenolpyruvate synthase	2.07058458325e-06	9.04947398264e-05	8.84241552432e-05
+UniRef50_UPI00041405D4	hypothetical protein	9.54553442703e-06	1.86528030537e-05	9.10726862667e-06
+UniRef50_K0LAR2	APC family amino acid polyamine organocation transporter	0.0128754117271	0.00680745298341	-0.00606795874369
+UniRef50_UPI0003696CB7	hypothetical protein	0.00106841111076	0.000188171055716	-0.000880240055044
+UniRef50_P51362	Anthranilate synthase component 2	1.16010562662e-05	1.71166158398e-05	5.5155595736e-06
+UniRef50_L0KYG3	Methanol cobalamin methyltransferase B subunit	0.00268090451571	0.000311464309399	-0.00236944020631
+UniRef50_UPI000476424B	glycerol 3 phosphate ABC transporter ATPase	3.52149775234e-05	4.31231558842e-05	7.9081783608e-06
+UniRef50_UPI000190A758	pyrroline 5 carboxylate reductase, partial	3.14170453931e-05	8.42404785176e-05	5.28234331245e-05
+UniRef50_P68898	HPr kinase phosphorylase	0.00497873466573	0.00629147406749	0.00131273940176
+UniRef50_B9KZY0	50S ribosomal protein L16	0.0261491624965	0.0244104387282	-0.0017387237683
+UniRef50_UPI000366C8A8	calcium binding protein	1.64669888487e-06	3.14233362043e-06	1.49563473556e-06
+UniRef50_Q47QB9		0.00112843414284	0.0745696251234	0.0734411909806
+UniRef50_UPI000364349F	hypothetical protein	2.15885116566e-05	7.04746708322e-06	-1.45410445734e-05
+UniRef50_D0K393	Lipoprotein	0.00821212528409	0.00185166752122	-0.00636045776287
+UniRef50_P0AE07	Multidrug efflux pump subunit AcrA	0.00307260862145	0.000634719588446	-0.002437889033
+UniRef50_K1QDX5		0.000170367404275	1.90086793457e-05	-0.000151358724929
+UniRef50_UPI0003EF0A28	hypothetical protein	0.000101113144247	8.30030510118e-05	-1.81100932352e-05
+UniRef50_U5LCP0		1.29815170349e-05	0.000872513739769	0.000859532222734
+UniRef50_M9VES2		0.000443826550027	0.00186232437716	0.00141849782713
+UniRef50_UPI0003677933	hypothetical protein	0.00012614892914	3.93480271489e-05	-8.68009019911e-05
+UniRef50_UPI000333F6F9	PREDICTED	8.82159566685e-06	0.000330305502409	0.000321483906742
+UniRef50_D3DZ41	Arginase agmatinase family protein	0.00226449580392	0.00050225715194	-0.00176223865198
+UniRef50_E4U2W7		3.99549222094e-05	3.13019215606e-05	-8.6530006488e-06
+UniRef50_UPI00047C1003	30S ribosomal protein S2	1.42201355636e-05	0.000143951690365	0.000129731554801
+UniRef50_Q57657	Probable amidophosphoribosyltransferase	7.83462283127e-06	6.39014213947e-05	5.60667985634e-05
+UniRef50_UPI000373F66D	hypothetical protein	0.000204905612754	7.13502236322e-05	-0.000133555389122
+UniRef50_X1H0M2	Marine sediment metagenome DNA, contig	4.95879619353e-05	0.000159663677551	0.000110075715616
+UniRef50_G2JLL9		0.00013291760171	0.00448864269382	0.00435572509211
+UniRef50_P71362	L 2,4 diaminobutyrate decarboxylase	0.000104760218922	0.00482345320867	0.00471869298975
+UniRef50_A0A008Q9S3		7.56481722007e-05	0.000137537026618	6.18888544173e-05
+UniRef50_P0ACP3	Catabolite repressor activator	0.00234896333666	0.00105020469483	-0.00129875864183
+UniRef50_B7V6Q1		0.000642555301206	0.000735228311697	9.2673010491e-05
+UniRef50_K0DWJ8		9.15736378938e-05	7.34684501446e-05	-1.81051877492e-05
+UniRef50_UPI000377E049	hypothetical protein	3.90093367829e-06	1.87471346809e-05	1.48462010026e-05
+UniRef50_UPI00037626C6	peptidase	3.71102718145e-05	3.36700446023e-05	-3.4402272122e-06
+UniRef50_H4F7M3		1.13485180716e-05	3.72372914155e-05	2.58887733439e-05
+UniRef50_P75747	Protein AbrB	0.00225633196586	0.00158806502216	-0.0006682669437
+UniRef50_T1JYL1		8.0231088521e-06	1.17260441222e-05	3.7029352701e-06
+UniRef50_F3ZCA1	Putative glutamate binding periplasmic protein	0.000120705753764	9.04845510458e-05	-3.02212027182e-05
+UniRef50_Q9RYQ0	Catalase	0.000401590909646	0.0475205488625	0.0471189579529
+UniRef50_Q97M68	Prolipoprotein diacylglyceryl transferase	0.000334390924066	0.00469245024513	0.00435805932106
+UniRef50_P38021	Ornithine aminotransferase	0.0363448777619	0.0038629155494	-0.0324819622125
+UniRef50_A4Y017	Transcriptional regulator, TetR family	0.00162511351231	0.000864341576184	-0.000760771936126
+UniRef50_W4U293		0.000629143314759	0.00262827018416	0.0019991268694
+UniRef50_A3PNI0		0.0198044188252	0.00435366330203	-0.0154507555232
+UniRef50_UPI00037C3547	hypothetical protein	8.41604956353e-05	0.000153301484076	6.91409884407e-05
+UniRef50_A0A023S1T5	Mutlidrug resistance protein	0.000102577714356	0.00462696631728	0.00452438860292
+UniRef50_G5M3D2	Glucan biosynthesis protein MdoG	6.79525928643e-05	0.000291965305604	0.00022401271274
+UniRef50_UPI0003793B75	hypothetical protein, partial	8.66730654038e-05	7.07040147895e-06	-7.96026639248e-05
+UniRef50_G7U887		0.00127044430963	0.006285730969	0.00501528665937
+UniRef50_F4A797	Transferase hexapeptide repeat containing protein	0.000469819556092	0.00335385138297	0.00288403182688
+UniRef50_UPI00047EC165	hypothetical protein	1.79678737142e-05	1.02221188172e-05	-7.745754897e-06
+UniRef50_UPI000225ABB3	Glycine cleavage system T protein	2.01638269094e-05	7.60073896135e-06	-1.2563087948e-05
+UniRef50_Q1AT13	Lipoyl synthase	5.5855448211e-06	3.91666730715e-05	3.35811282504e-05
+UniRef50_UPI000252BB02	PREDICTED	1.38727294061e-05	1.26269232769e-05	-1.2458061292e-06
+UniRef50_M4MFI8	Oxidoreductase,likely required for utilization of stachydrine	0.00633455674473	0.00202261065394	-0.00431194609079
+UniRef50_A5URF1	Spermidine putrescine ABC transporter ATPase subunit	0.00113433524055	0.000828419672073	-0.000305915568477
+UniRef50_Q8KCS2	3 methyl 2 oxobutanoate hydroxymethyltransferase	6.65282901631e-06	0.00196488159383	0.00195822876481
+UniRef50_A0A035ZUD7		4.08331425698e-05	7.855590716e-06	-3.29775518538e-05
+UniRef50_R6DSS9	Dihydroorotate dehydrogenase	0.00357087758517	0.000191764094291	-0.00337911349088
+UniRef50_A3TG55		0.000106409529527	0.000149731011855	4.3321482328e-05
+UniRef50_UPI0003B6DC28	taurine  pyruvate aminotransferase, partial	0.000405768803778	9.90501091207e-05	-0.000306718694657
+UniRef50_I1ZMS2	Oxidoreductase, short chain dehydrogenase	0.00803246549993	0.00646922075891	-0.00156324474102
+UniRef50_F3U214	Binding protein dependent transport systems inner membrane component	0.012168571997	0.001255647078	-0.010912924919
+UniRef50_D5D972	Small heat shock protein	0.000867783882414	0.00423626721934	0.00336848333693
+UniRef50_A6LYN9	D galactose binding periplasmic protein	0.00090570956882	0.00264022433003	0.00173451476121
+UniRef50_UPI0003B622F4	transcriptional regulator	0.000166659418173	6.35450722712e-05	-0.000103114345902
+UniRef50_W4SPZ4		1.8858534114e-05	9.3676222342e-06	-9.4909118798e-06
+UniRef50_UPI0004709FDA	molybdenum ABC transporter permease, partial	1.2366956433e-05	3.623277736e-05	2.3865820927e-05
+UniRef50_Q92L73	Argininosuccinate synthase	4.67005755664e-06	0.000189802026764	0.000185131969207
+UniRef50_UPI000425B71D	hypothetical protein	5.80497949466e-05	1.35475765192e-05	-4.45022184274e-05
+UniRef50_A4WTW6		0.0137101381369	0.00234596779109	-0.0113641703458
+UniRef50_G5SIY2		0.000160474594636	0.00153002624741	0.00136955165277
+UniRef50_K7SJ66	von Willebrand factor type A domain containing protein	0.000664998357309	0.00926626598169	0.00860126762438
+UniRef50_P45419	CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	1.6277332444e-05	6.13007848381e-05	4.50234523941e-05
+UniRef50_Q8XAR3	Poly beta 1,6 N acetyl D glucosamine N deacetylase	0.00330013676025	0.000943144675865	-0.00235699208439
+UniRef50_W4TPM5	Phosphoglycerate mutase family protein	0.000216945970609	0.00667100905552	0.00645406308491
+UniRef50_V5VCE3	Outer membrane protein assembly factor BamA	9.78018025449e-05	0.00266655611519	0.00256875431265
+UniRef50_W4TKT8	Molybdopterin guanine dinucleotide biosynthesis protein	9.21476590258e-05	0.000446279081066	0.00035413142204
+UniRef50_UPI0003787FA8	hypothetical protein	0.00023980166999	4.76333997079e-05	-0.000192168270282
+UniRef50_P18080	5 aminolevulinate synthase, erythroid specific, mitochondrial	7.33743180374e-06	3.50860214266e-06	-3.82882966108e-06
+UniRef50_UPI00046369B9	MULTISPECIES	1.10939165388e-05	1.58155976344e-05	4.7216810956e-06
+UniRef50_UPI0003B333D6	AsnC family transcriptional regulator, partial	0.000198299294229	9.76501286571e-05	-0.000100649165572
+UniRef50_F0KP66	Outer membrane usher protein	0.00014365236857	0.00966348105333	0.00951982868476
+UniRef50_Q2IL11	NADH quinone oxidoreductase subunit A	1.9229155422e-05	7.20028541249e-05	5.27736987029e-05
+UniRef50_UPI0003B77D72	serine dehydratase subunit beta	1.1138583195e-05	0.000168171352961	0.000157032769766
+UniRef50_Q92375	Thioredoxin reductase	5.97150396427e-05	1.71529286139e-05	-4.25621110288e-05
+UniRef50_S3BAZ0		2.48229769934e-05	0.000666157861379	0.000641334884386
+UniRef50_K5JB68	Bacterial extracellular solute binding s, 3 family protein	0.000394388856035	9.29155863266e-05	-0.000301473269708
+UniRef50_UPI000474C9A9	hypothetical protein	1.11335927472e-05	9.86498908306e-06	-1.26860366414e-06
+UniRef50_UPI0002628E30	Sua5 YciO YrdC YwlC family protein	2.45053473685e-05	2.45530355425e-05	4.7688174e-08
+UniRef50_A6LYF6	Rubrerythrin	0.000146312398781	0.00151286287989	0.00136655048111
+UniRef50_W0HD99		0.000282637119679	0.000177723192699	-0.00010491392698
+UniRef50_D9RK78	Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter	0.0210254084466	0.00424839052006	-0.0167770179265
+UniRef50_UPI00037C2AEE	hypothetical protein	2.9989791008e-05	4.26299618248e-05	1.26401708168e-05
+UniRef50_P26280	Reaction center protein L chain	0.0162234028551	0.0024262788167	-0.0137971240384
+UniRef50_UPI0004686580	hypothetical protein	3.20446510048e-05	5.01386596235e-05	1.80940086187e-05
+UniRef50_UPI00037303BE	hypothetical protein, partial	6.76016295205e-06	7.77020633451e-06	1.01004338246e-06
+UniRef50_W8XZ85		0.000184261935083	0.000478812194975	0.000294550259892
+UniRef50_O22854	Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	5.61031719189e-06	1.54845813153e-05	9.87426412341e-06
+UniRef50_P08401	Sensor protein CreC	0.00200194553282	0.000445482219259	-0.00155646331356
+UniRef50_T2EES2	3 beta hydroxysteroid dehydrogenase isomerase family protein	0.000498029375613	0.000184572940753	-0.00031345643486
+UniRef50_A6LY79	Lysine exporter protein 	0.00100013271503	0.000581904837826	-0.000418227877204
+UniRef50_UPI0003946175	PREDICTED	2.06571140033e-05	2.10283417814e-05	3.712277781e-07
+UniRef50_Q7UIA7	3 isopropylmalate dehydratase large subunit	0.00542823582668	0.0195604947191	0.0141322588924
+UniRef50_Q8Y8Q5	Calcium transporting ATPase lmo0841	1.38360603378e-05	0.00166581633166	0.00165198027132
+UniRef50_K0YSF4		6.74878785343e-06	3.15992659455e-05	2.48504780921e-05
+UniRef50_G7M906	Molybdenum cofactor synthesis domain protein	0.000321493711482	0.000974327058143	0.000652833346661
+UniRef50_UPI00046F0789	multidrug MFS transporter	1.68228922347e-05	7.92689848418e-06	-8.89599375052e-06
+UniRef50_Q8XBQ1	Rare lipoprotein A	0.0024712615255	0.00031754484429	-0.00215371668121
+UniRef50_A6M2G0	Methyl accepting chemotaxis sensory transducer	0.000274075114113	0.000888881501153	0.00061480638704
+UniRef50_A6LWZ6	Response regulator receiver sensor signal transduction histidine kinase	8.92401864878e-05	0.000994924280792	0.000905684094304
+UniRef50_UPI0000057DE0	50S ribosomal protein L4	2.56734370151e-05	0.000125390682676	9.97172456609e-05
+UniRef50_A9H7F9		0.000121118499099	0.000205693106709	8.457460761e-05
+UniRef50_UPI00037D5622	hypothetical protein	1.46995381452e-05	1.09329641528e-05	-3.7665739924e-06
+UniRef50_R9SK92	Energy converting hydrogenase A subunit Q EhaQ	0.00405870528582	0.000715390932757	-0.00334331435306
+UniRef50_UPI00036E2295	hypothetical protein, partial	5.78408004857e-05	0.000105255598858	4.74147983723e-05
+UniRef50_Q9RZL8	Protein NrdI	0.000278245200628	0.0101826758014	0.00990443060077
+UniRef50_K1X086		0.00029875766889	0.000225723155117	-7.3034513773e-05
+UniRef50_G7MBG6	Glucokinase	0.000266160989946	0.00240744600086	0.00214128501091
+UniRef50_UPI00037CC8E0	hypothetical protein	1.23954220777e-05	6.62348816027e-06	-5.77193391743e-06
+UniRef50_H8LBR4	Zeta toxin	0.00191510734549	0.00341394391089	0.0014988365654
+UniRef50_F2PQ83		1.91187153239e-05	1.70566806412e-05	-2.0620346827e-06
+UniRef50_I6TQY8	Gramicidin S synthetase	0.00516329398556	0.00130933774444	-0.00385395624112
+UniRef50_U1FPP9	Serine dehydratase alpha chain domain protein	2.19768768144e-05	1.99568423137e-05	-2.0200345007e-06
+UniRef50_UPI0002FF8C25	hypothetical protein	5.18060364965e-06	2.91863915789e-05	2.40057879293e-05
+UniRef50_O34900	L cystine import ATP binding protein TcyN	0.00920332650164	0.0267580495836	0.017554723082
+UniRef50_A5UJG8	Dephospho CoA kinase, CoaE	0.000905531718019	0.00215119755502	0.001245665837
+UniRef50_UPI000376DDCE	hypothetical protein, partial	4.37904073141e-05	0.000126496198145	8.27057908309e-05
+UniRef50_Q9KE44	BH1014 protein	8.26588420574e-06	8.50737326924e-05	7.68078484867e-05
+UniRef50_Q9RXS7	Endoglucanase, putative	0.00011301975714	0.0316685225141	0.031555502757
+UniRef50_D5AV16	Cobalamin biosynthesis protein CobD	3.0888789141e-05	0.00012038008543	8.9491296289e-05
+UniRef50_UPI0003B61FEB	amino acid transporter	7.07188653678e-06	2.03446260814e-05	1.32727395446e-05
+UniRef50_B5XSL3		5.44891854867e-05	8.28115556762e-05	2.83223701895e-05
+UniRef50_P50511	RNA polymerase sigma factor RpoH	0.000604457946096	0.00499983723944	0.00439537929334
+UniRef50_W5X4I3	Tyrosine recombinase XerC	4.61731604475e-06	9.4382950065e-06	4.82097896175e-06
+UniRef50_A0R8M9	Gluconate kinase, FGGY family	0.00988890244243	0.00350907738141	-0.00637982506102
+UniRef50_UPI000255F256	hypothetical protein	1.04914179958e-06	7.77307564342e-06	6.72393384384e-06
+UniRef50_Q6GEF9	Molybdenum cofactor biosynthesis protein B	0.0211021224292	0.0138333145366	-0.0072688078926
+UniRef50_Q828A3	Acetylornithine aminotransferase	0.000479505048972	0.00615153820326	0.00567203315429
+UniRef50_UPI0004418616	P loop containing nucleoside triphosphate hydrolase protein	8.16108710042e-07	3.61456324717e-07	-4.54652385325e-07
+UniRef50_Q47456	Transcriptional regulatory protein PcoR	0.000168520530738	0.000333063953224	0.000164543422486
+UniRef50_G0DX35	Beta D glucuronidase	0.000313215449466	0.00455608773225	0.00424287228278
+UniRef50_Q822W9	Tryptophan synthase beta chain 1	2.05611663096e-05	1.63249310823e-05	-4.2362352273e-06
+UniRef50_B7UNM8	L rhamnose proton symporter	0.00313025659774	0.0012857160748	-0.00184454052294
+UniRef50_W7NL02		0.0322735090222	0.000121814230132	-0.0321516947921
+UniRef50_P44431	DNA adenine methylase	0.00443627168968	0.00117020474367	-0.00326606694601
+UniRef50_UPI0004656CA8	ATPase AAA	9.78529869158e-05	1.23736926869e-05	-8.54792942289e-05
+UniRef50_Q2KX38	Cysteine  tRNA ligase	2.75913620631e-06	1.09322295052e-05	8.17309329889e-06
+UniRef50_UPI0003304FE8	ABC transporter	1.25909622698e-05	0.00038373369304	0.00037114273077
+UniRef50_B9DSF8	Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex	0.00814614715665	0.00242390601841	-0.00572224113824
+UniRef50_W5VLQ9	ABC transporter ATP binding protein	0.00124312127399	0.000196659293133	-0.00104646198086
+UniRef50_UPI0003B78B56	acetolactate synthase	1.7002649666e-05	0.000167465970217	0.000150463320551
+UniRef50_Q4ZMZ5		0.00161866315074	0.000325281081862	-0.00129338206888
+UniRef50_UPI00046F9C6C	hypothetical protein, partial	4.45136224903e-05	7.88859333588e-05	3.43723108685e-05
+UniRef50_F0KJU7	Siderophore interacting protein	0.000502292002391	0.00803342513719	0.0075311331348
+UniRef50_B4U3Z1		0.000127072047585	8.41813353406e-05	-4.28907122444e-05
+UniRef50_B0VQL7		0.000186566386584	0.00438317843742	0.00419661205084
+UniRef50_Q83LB6	Gamma glutamyl gamma aminobutyrate hydrolase	0.0060048065699	0.00361292493342	-0.00239188163648
+UniRef50_J8UT53	Multidrug transport protein, mfs family	3.79377457142e-05	0.000647393139862	0.000609455394148
+UniRef50_X5A2G4	Epoxide hydrolase domain containing protein	0.000233649238274	0.00191517651442	0.00168152727615
+UniRef50_Q9I163	Putative quercetin 2,3 dioxygenase PA2418	0.000147343870432	0.000425020189921	0.000277676319489
+UniRef50_D0W9Q2	Translation initiation factor IF 2	0.000173507682131	0.00329846500267	0.00312495732054
+UniRef50_A3M0R3	RND type efflux pump	0.00113288269163	0.0119147136524	0.0107818309608
+UniRef50_UPI00047675B7	iron ABC transporter	1.32370888919e-05	0.000965568362127	0.000952331273235
+UniRef50_S9QHG5	ABC type dipeptide transport system, periplasmic component	1.36807721072e-05	2.07009942528e-05	7.0202221456e-06
+UniRef50_P42371	Formamidopyrimidine DNA glycosylase	1.01617983137e-05	1.01465294293e-05	-1.52688844e-08
+UniRef50_UPI0003F5623F	hypothetical protein	2.19120802761e-05	6.56053275946e-05	4.36932473185e-05
+UniRef50_Q8DTP8		0.00785950500436	0.000606815147654	-0.00725268985671
+UniRef50_Q5HKT3	Transcriptional antiterminator, BglG family	0.0080330598484	0.00338442272027	-0.00464863712813
+UniRef50_Q9VDT6	Putative ribosomal RNA methyltransferase CG11447	3.4203571375e-05	3.47570760337e-05	5.535046587e-07
+UniRef50_Q1WV73	Ribosomal RNA small subunit methyltransferase A	0.0127550352222	0.00793547853733	-0.00481955668487
+UniRef50_Q79VG7	ATP synthase subunit alpha	0.000661884294734	0.00426824127388	0.00360635697915
+UniRef50_M8LWS9	Amidohydrolase family protein 	0.000359510465573	0.00148228462067	0.0011227741551
+UniRef50_B2VBD6		7.33966667669e-05	7.23261155984e-05	-1.0705511685e-06
+UniRef50_B6AY70		0.000167320852626	0.000115783081663	-5.1537770963e-05
+UniRef50_Q9ZCH1	3 oxoacyl [acyl carrier protein] synthase 3	0.000116176713701	1.02103949507e-05	-0.00010596631875
+UniRef50_UPI00042C6A1E	PREDICTED	1.07785186262e-06	5.81138049842e-06	4.7335286358e-06
+UniRef50_A0LUZ1	LexA repressor	3.00909365593e-05	1.14742367934e-05	-1.86166997659e-05
+UniRef50_C9A6P4		0.00311794085032	0.023964964783	0.0208470239327
+UniRef50_X8DM60		1.26927740234e-05	0.000224920061928	0.000212227287905
+UniRef50_W5X752	Aldo keto reductase	2.39150912737e-05	0.000184566515081	0.000160651423807
+UniRef50_A0A058ZFV0		2.06101103276e-06	4.88508471071e-06	2.82407367795e-06
+UniRef50_UPI0003B55097	ABC transporter	7.8177563681e-05	5.6982733203e-06	-7.24792903607e-05
+UniRef50_UPI000466B8BE	ATP dependent DNA helicase RecQ	1.87579726053e-05	5.65353682624e-06	-1.31044357791e-05
+UniRef50_X0Z3F5	Marine sediment metagenome DNA, contig	8.21597430873e-05	2.71646853979e-05	-5.49950576894e-05
+UniRef50_UPI0003AB2F70	zinc transporter	1.98773376251e-05	5.15238626873e-05	3.16465250622e-05
+UniRef50_A8EWF0	3 oxoacyl [acyl carrier protein] synthase 2	9.17713100965e-05	0.00260283090423	0.00251105959413
+UniRef50_P0ADP3		0.000336040939626	0.00120178510303	0.000865744163404
+UniRef50_R9SKB3		0.00385526461448	0.000248513356408	-0.00360675125807
+UniRef50_I6L8Z7		0.00601876726467	0.00256756463594	-0.00345120262873
+UniRef50_UPI000377F0F1	50S ribosomal protein L15	6.13261178776e-05	0.000145989328959	8.46632110814e-05
+UniRef50_P00911	Indole 3 glycerol phosphate synthase	1.22512000564e-05	0.00905962278299	0.00904737158293
+UniRef50_UPI00037E35A9	hypothetical protein	6.94091127264e-06	1.05712898489e-05	3.63037857626e-06
+UniRef50_J9QWN8		3.48788335131e-05	0.000121300039977	8.64212064639e-05
+UniRef50_UPI0003C13804	PREDICTED	2.78452660133e-05	4.61999413689e-06	-2.32252718764e-05
+UniRef50_A5IXT6	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	7.03409129573e-06	5.12989326396e-06	-1.90419803177e-06
+UniRef50_M9RBK8		0.000113559130255	2.03588949812e-05	-9.32002352738e-05
+UniRef50_P75969	Prophage lambda integrase	0.00396475513483	0.00125177959805	-0.00271297553678
+UniRef50_UPI000299D232	arginyl tRNA ligase	0.00018030618242	5.24788616285e-05	-0.000127827320792
+UniRef50_Q9KD27	Polyphosphate kinase	9.34569674946e-06	0.00040192648549	0.000392580788741
+UniRef50_Q5HLU4	Putative 2 hydroxyacid dehydrogenase SERP1888	0.0201636215518	0.00742616435466	-0.0127374571971
+UniRef50_UPI00047D602E	membrane protein	4.01897727128e-05	2.81449598051e-05	-1.20448129077e-05
+UniRef50_UPI00040C0EAB	dipeptidase PepV	6.97615980824e-06	7.93343298644e-06	9.572731782e-07
+UniRef50_A3SGM5		2.4354311642e-05	4.91453191356e-05	2.47910074936e-05
+UniRef50_X5RWX0		0.000615435794799	0.000163047421043	-0.000452388373756
+UniRef50_B0V917		0.00039875280513	0.000942500122969	0.000543747317839
+UniRef50_L8NGN8	Sulfite oxidoreductase, molibdopterin binding subunit	0.00196451818634	0.00066212885384	-0.0013023893325
+UniRef50_Q5HM71	Lytic regulatory protein, putative	0.0106591044736	0.00304269334014	-0.00761641113346
+UniRef50_Q2SS11	S adenosylmethionine synthase	4.22719497926e-05	0.000231242044482	0.000188970094689
+UniRef50_D2BQV2	NTPase, KAP P loop domain containing family	3.64612774804e-06	1.1282990835e-05	7.63686308696e-06
+UniRef50_UPI00046D1EDA	hypothetical protein	5.77388519766e-05	6.34105973761e-06	-5.1397792239e-05
+UniRef50_M4VPY4		3.40716538266e-05	3.02978667462e-05	-3.7737870804e-06
+UniRef50_O27101	Putative biopolymer transport protein ExbB homolog	0.00376786834011	0.000975301049817	-0.00279256729029
+UniRef50_UPI000470CC65	hypothetical protein, partial	8.86593165557e-05	0.000357899152787	0.000269239836231
+UniRef50_UPI000362B8D4	hypothetical protein	1.04342017914e-05	1.95364356833e-05	9.1022338919e-06
+UniRef50_Q6FF14		0.000403089064699	0.0054382963575	0.0050352072928
+UniRef50_F9Y8H3		2.56310598718e-05	6.78628471887e-06	-1.88447751529e-05
+UniRef50_UPI00047C7174	GTPase CgtA	8.37016453651e-06	0.000406645514871	0.000398275350334
+UniRef50_D0Z2G0		6.13247720305e-05	3.14402685538e-05	-2.98845034767e-05
+UniRef50_UPI00047E6697	hypothetical protein	6.81435544836e-06	6.69073885102e-05	6.00930330618e-05
+UniRef50_O34374	Putative cytochrome P450 YjiB	8.59152279979e-06	8.06218856681e-05	7.20303628683e-05
+UniRef50_A6M3B7	Phage minor structural protein	0.000352234460215	0.00253464274132	0.0021824082811
+UniRef50_Q94IN5	Pyruvate dehydrogenase [NADP], mitochondrial	0.000596731744541	0.00149681627909	0.000900084534549
+UniRef50_B4RAW2		0.0102067713539	0.00234980091651	-0.00785697043739
+UniRef50_B5SGS2	Phosphoribosylaminoimidazole carboxylase atpase subunit protein	0.000139465266818	0.00214557730186	0.00200611203504
+UniRef50_O32219	Cadmium, zinc and cobalt transporting ATPase	5.23737610038e-06	0.00157417235599	0.00156893497989
+UniRef50_UPI0002DD1873	multidrug transporter	0.00016275042563	0.00010664661744	-5.610380819e-05
+UniRef50_UPI000372E87D	hypothetical protein	2.62099004393e-05	5.43407215181e-05	2.81308210788e-05
+UniRef50_Q5HPN2	Glutamine synthetase	0.0102613150723	0.00456067526779	-0.00570063980451
+UniRef50_A6M2W7	Helix turn helix domain containing protein, AraC type	0.000479247809865	0.0024504709217	0.00197122311183
+UniRef50_A6LZ11	Transcriptional regulator, LysR family	0.000134656119687	0.00131707722284	0.00118242110315
+UniRef50_F4A8L7		0.000371297693954	0.000606736994061	0.000235439300107
+UniRef50_UPI0004746BAC	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial	5.18097135648e-05	5.28324483951e-05	1.0227348303e-06
+UniRef50_UPI0003B6272C	30S ribosomal protein S2, partial	1.40725504025e-05	4.22369177815e-05	2.8164367379e-05
+UniRef50_G0LQ11	ABC transport system, ATP binding protein	0.0112223281127	0.0033863795942	-0.0078359485185
+UniRef50_Q1GE51	Cytochrome c oxidase assembly protein CtaG	0.00341928785143	0.000337504805945	-0.00308178304548
+UniRef50_A6LSR5	Cell divisionFtsK SpoIIIE	0.000161336404174	0.00091888573031	0.000757549326136
+UniRef50_UPI0003946AEB	PREDICTED	3.54119356436e-05	8.72393522557e-05	5.18274166121e-05
+UniRef50_W1V573		0.000259933944651	0.00212518216721	0.00186524822256
+UniRef50_A2WHS9		0.000263864555761	0.000113878716332	-0.000149985839429
+UniRef50_Q89W19	Partitioning protein	0.0111071938086	0.00770964164969	-0.00339755215891
+UniRef50_UPI00036C0568	hypothetical protein	1.69707125734e-05	1.77359228603e-05	7.652102869e-07
+UniRef50_Q28JJ0	Flagellar protein FlgJ putative	0.000107128364311	5.93790608919e-05	-4.77493034191e-05
+UniRef50_V9TVW8	Signal transduction histidine kinase CheA	0.000293100271592	0.000248775317081	-4.4324954511e-05
+UniRef50_UPI00022CAC9E	PREDICTED	5.30579222346e-06	3.97601370512e-05	3.44543448277e-05
+UniRef50_V5VGK2	Universal bacterial protein YeaZ	0.000170808139747	0.00356547527068	0.00339466713093
+UniRef50_UPI000380AFF0	hypothetical protein	1.66656978508e-05	5.08469811353e-06	-1.15809997373e-05
+UniRef50_Q5M3F8	Polysaccharide biosynthesis protein	0.00549775011829	0.00121997095475	-0.00427777916354
+UniRef50_L0LMR9	ABC transporter, ATP binding protein	0.00658143586887	0.00200426881728	-0.00457716705159
+UniRef50_Q8DVD7	Cell division protein SepF	0.0037044273976	0.00306231074306	-0.00064211665454
+UniRef50_UPI0003B704ED	hypothetical protein	3.48028651978e-05	5.64344277132e-06	-2.91594224265e-05
+UniRef50_UPI00036F3039	hypothetical protein	0.000149608177669	3.79962076068e-05	-0.000111611970062
+UniRef50_C5WTK0		5.89371531896e-05	8.96203735086e-05	3.0683220319e-05
+UniRef50_T1B3T8	Virulence factor MviN 	0.00012264531826	0.000148901838437	2.6256520177e-05
+UniRef50_Q11IP6	Phosphate transporter	0.00342110329637	0.000557443864461	-0.00286365943191
+UniRef50_A1URR2	sn glycerol 3 phosphate import ATP binding protein UgpC	0.000103514073048	4.81610057707e-05	-5.53530672773e-05
+UniRef50_P0A4S1	Fructose bisphosphate aldolase	8.37627983898e-05	0.00393775090089	0.0038539881025
+UniRef50_Q48460	UDP glucose	0.0024706186238	0.00108779160929	-0.00138282701451
+UniRef50_F0QG73	SAM dependent methyltransferase	0.000188812356745	0.0145240795621	0.0143352672054
+UniRef50_UPI0003A87FEF	hypothetical protein	6.31376195086e-06	2.32078735436e-05	1.68941115927e-05
+UniRef50_Q12R52	Hemin import ATP binding protein HmuV	7.02972441324e-06	0.000431572149605	0.000424542425192
+UniRef50_UPI000376155F	hypothetical protein	2.75090985045e-05	1.30446929653e-05	-1.44644055392e-05
+UniRef50_Y1HNL2	PTS system maltose and glucose specific EIICB component	9.45995589328e-05	4.15230617395e-05	-5.30764971933e-05
+UniRef50_A1AC10	Phosphoribosylglycinamide formyltransferase 2	0.00209067197729	0.000855692277837	-0.00123497969945
+UniRef50_A0A011NL09		3.98316651332e-06	0.00163957371157	0.00163559054506
+UniRef50_UPI000467180A	aldehyde activating protein	1.41404095602e-05	2.66801214851e-05	1.25397119249e-05
+UniRef50_B9KWD4	Periplasmic sensor diguanylate cyclase phosphodiesterase	0.00342251007916	0.000970801575124	-0.00245170850404
+UniRef50_Q8RTQ0	Putative 1 deoxy D xylulose 5 phosphate synthase 	0.000123703418686	7.55808518896e-05	-4.81225667964e-05
+UniRef50_D9WU07	Putative vgr related protein	4.79723715915e-05	4.51060092898e-05	-2.8663623017e-06
+UniRef50_UPI00042AFC27	D aminoacid aminotransferase like PLP dependent enzymes superfamily protein isoform 3	9.17567555769e-06	2.74262788609e-05	1.82506033032e-05
+UniRef50_P58224	Putative outer membrane protein YiaT	0.00138908439056	0.000274287961482	-0.00111479642908
+UniRef50_D4H950	YD repeat protein 	0.000147833050033	0.00602378263988	0.00587594958985
+UniRef50_P31078	HTH type transcriptional regulator PetP	0.00840860761431	0.000348113994329	-0.00806049361998
+UniRef50_A6U9L1		0.000118841560449	4.76696931327e-05	-7.11718673163e-05
+UniRef50_G0DWF3		0.00015141640003	0.00318388821914	0.00303247181911
+UniRef50_Q6GJE0	Serine acetyltransferase	0.0263765257778	0.00813626238588	-0.0182402633919
+UniRef50_B1K1C0	Recombinase	0.0109288769219	0.00266357594883	-0.00826530097307
+UniRef50_UPI0004795AC6	hypothetical protein	2.81983729982e-05	3.29087854625e-05	4.7104124643e-06
+UniRef50_D0D0I6	GumN family protein	1.15946197148e-05	9.68905498281e-06	-1.90556473199e-06
+UniRef50_UPI000362BAED	hypothetical protein, partial	7.36698666684e-05	2.88024204799e-05	-4.48674461885e-05
+UniRef50_Q6A8I8	Alanine  tRNA ligase	5.14052640274e-05	0.00451194116323	0.0044605358992
+UniRef50_UPI00035CA936	hypothetical protein	0.000246027875671	9.37832296474e-05	-0.000152244646024
+UniRef50_UPI0004759D2E	magnesium transporter	4.65908818374e-05	0.000504982730728	0.000458391848891
+UniRef50_UPI00036009B3	hypothetical protein	1.62787238837e-05	1.53580791207e-05	-9.20644763e-07
+UniRef50_C1MWX1	Predicted protein	0.000138104630066	0.0123825617926	0.0122444571625
+UniRef50_B6SHE9	Insect intestinal mucin IIM22	0.000506809100946	0.00013633849615	-0.000370470604796
+UniRef50_Q9R9Y4	Cell division protein FtsX	0.000359212890386	0.000999925282614	0.000640712392228
+UniRef50_UPI000420B7BC	O acetylhomoserine aminocarboxypropyltransferase	1.87359997725e-05	7.41706087748e-06	-1.1318938895e-05
+UniRef50_Q47147	Putative glutamine amidotransferase YafJ	0.00256523373906	0.00133607621753	-0.00122915752153
+UniRef50_P0A9M3	Hypoxanthine phosphoribosyltransferase	0.00256931430375	0.00637384421507	0.00380452991132
+UniRef50_UPI00041235F6	lysine transporter LysE	7.57858179594e-05	5.91965958154e-05	-1.6589222144e-05
+UniRef50_UPI00029AB95D	phenylacetate CoA oxygenase reductase subunit PaaK	1.15980606543e-05	1.54913002901e-05	3.8932396358e-06
+UniRef50_A8JGS9	DnaJ like protein 	4.59788049763e-05	7.1649827385e-05	2.56710224087e-05
+UniRef50_D5ARW9	Nif specific regulatory protein	0.00220134471261	0.00122444967874	-0.00097689503387
+UniRef50_U0B3S9		0.000219035091853	0.000208953584437	-1.0081507416e-05
+UniRef50_P72525	DNA topoisomerase 4 subunit A	0.00500858121419	0.00718753218222	0.00217895096803
+UniRef50_Q9Z3R6	Alpha glucoside transport system permease protein AglF	0.0122473902765	0.00324814999465	-0.00899924028185
+UniRef50_Q0TPM3	ATP dependent DNA helicase RecG	0.000178086788681	0.000937600943891	0.00075951415521
+UniRef50_Q7N9D9	PTS system N acetylmuramic acid specific EIIBC component	0.00184996480888	0.000846242392495	-0.00100372241639
+UniRef50_D8QID1		0.000132209443208	9.72004629573e-05	-3.50089802507e-05
+UniRef50_X7XPI4		0.000147118098131	0.00027113589694	0.000124017798809
+UniRef50_B9KT83	Transport system permease protein	0.00039010580463	0.000222321233524	-0.000167784571106
+UniRef50_Q9SRW7	Adenylyl sulfate kinase 3	1.05498967662e-05	0.000473997824286	0.00046344792752
+UniRef50_UPI000381376E	hypothetical protein	0.00023976791245	7.04552706155e-05	-0.000169312641835
+UniRef50_D3P3D0	D xylose transport system substrate binding protein	0.00892024616867	0.00284149075135	-0.00607875541732
+UniRef50_D9VWR6	Septum site determining protein 	8.79308911103e-05	0.000305076678753	0.000217145787643
+UniRef50_E3A1I4		0.00195719318858	0.000821814941568	-0.00113537824701
+UniRef50_A9WDZ1	Imidazoleglycerol phosphate dehydratase	0.000128447008822	1.32021008741e-05	-0.000115244907948
+UniRef50_A6LUX7	Regulatory protein, LysR	0.000122163750441	0.00143743726056	0.00131527351012
+UniRef50_F4A4S9	Transcriptional regulator, GntR family, putative	0.000739387693764	0.00263156061344	0.00189217291968
+UniRef50_B9KKN4	Transcriptional regulator, GntR family	0.00114077658589	0.00249926348355	0.00135848689766
+UniRef50_C7M5H1		0.00805404203975	0.000704141888288	-0.00734990015146
+UniRef50_F9EIQ5		0.000130234882555	0.000768316637908	0.000638081755353
+UniRef50_B2UFB1	Cyclohexanone monooxygenase	0.000446765503447	0.000718890373892	0.000272124870445
+UniRef50_V4ITY3	Sodium	0.000312662486085	0.000282664608751	-2.9997877334e-05
+UniRef50_X4ZS10	Bacterial regulatory s, gntR family protein	0.000837128535452	0.00506646704298	0.00422933850753
+UniRef50_R0MDF2	DNA mismatch repair protein MutS	0.00824262772619	0.00260586914204	-0.00563675858415
+UniRef50_Q0VTE2	Methionyl tRNA formyltransferase	5.29504113183e-06	3.45748586689e-05	2.92798175371e-05
+UniRef50_S1PI08		0.00356082596515	0.00288609757052	-0.00067472839463
+UniRef50_A6LZ46	Response regulator receiver protein	0.000263634949602	0.001041490288	0.000777855338398
+UniRef50_R5I1Z2		0.000159501122048	0.00390617697768	0.00374667585563
+UniRef50_M3NMQ8	TonB dependent receptor plug domain protein	4.75223653651e-05	0.00464695047785	0.00459942811248
+UniRef50_F0MSR5		0.000205155428724	0.0055229370175	0.00531778158878
+UniRef50_D0IYV6		0.000131625844663	3.38751255575e-05	-9.77507191055e-05
+UniRef50_I1XGF6	Stringent starvation protein A	7.55455320202e-06	0.00010226350363	9.4708950428e-05
+UniRef50_B7UY15		0.000312703089435	0.000881320525776	0.000568617436341
+UniRef50_A6LX91		0.000308624183919	0.00121686861632	0.000908244432401
+UniRef50_P0A0K1		0.0086698967236	0.00363051842324	-0.00503937830036
+UniRef50_UPI0003B6C3E5	6 phosphofructokinase	1.67033405045e-05	6.43430380783e-06	-1.02690366967e-05
+UniRef50_G7M347	ABC transporter related protein	0.00030220313273	0.00234322816515	0.00204102503242
+UniRef50_M9VKH9	Extracellular solute binding protein	0.000552035673073	0.010488586884	0.00993655121093
+UniRef50_K2FKB3		4.02524532308e-05	0.000376860886875	0.000336608433644
+UniRef50_K4JSU1		0.000154929083008	9.18053031875e-05	-6.31237798205e-05
+UniRef50_U6BC07	Aconitate hydratase	0.0172458521589	0.00513364833695	-0.0121122038219
+UniRef50_P16923	N anthranilate isomerase	1.15740233055e-05	0.00552730526878	0.00551573124547
+UniRef50_I6SU46	Cell division protein DivIB	0.00367299644346	0.00181595875336	-0.0018570376901
+UniRef50_UPI00036BA80E	hypothetical protein	5.60114658805e-05	7.29454143619e-05	1.69339484814e-05
+UniRef50_A6LX65		0.000394994349159	0.00119919758711	0.000804203237951
+UniRef50_D3SBH0	Riboflavin synthase, alpha subunit	0.00621272484125	0.00061738684013	-0.00559533800112
+UniRef50_U2YCQ7		4.4013913601e-05	0.000162321060825	0.000118307147224
+UniRef50_R7PTH2		0.000403566941078	0.000244063392719	-0.000159503548359
+UniRef50_Q2SCI9		1.66852351515e-05	2.16654082745e-05	4.980173123e-06
+UniRef50_UPI0003691CE3	hypothetical protein	4.72107510513e-06	1.03587452776e-05	5.63767017247e-06
+UniRef50_F4FSV5	RelA SpoT domain protein	0.0102423799544	0.0062712501834	-0.003971129771
+UniRef50_B9DZ64		9.78788216567e-05	0.000204843957368	0.000106965135711
+UniRef50_A7FBW9		0.00188425779309	0.0139652676252	0.0120810098321
+UniRef50_A7FBW8		0.00157000498395	0.00833218854948	0.00676218356553
+UniRef50_P76046		0.0029985575029	0.000564877565235	-0.00243367993767
+UniRef50_P76044		0.00326001518145	0.0014471150023	-0.00181290017915
+UniRef50_C5N0D9	Glyoxalase family protein	0.0179814613733	0.00207460814254	-0.0159068532308
+UniRef50_P03880	Intron encoded DNA endonuclease I AniI	0.000196302400859	7.40190271575e-05	-0.000122283373701
+UniRef50_Q2K6L3	sn glycerol 3 phosphate import ATP binding protein UgpC 1	1.90749312261e-05	4.13584427284e-05	2.22835115023e-05
+UniRef50_C6STT6		0.00236050906249	0.000877955758006	-0.00148255330448
+UniRef50_D2NPJ7	Protein containing PAS PAC domain	2.89985479906e-06	0.000221211015129	0.00021831116033
+UniRef50_A5CPE6	Thymidine kinase	0.000194580406623	0.00475722127357	0.00456264086695
+UniRef50_A5UK48	Glutamine amidotransferase subunit PdxT	0.00151583333931	0.00243427355675	0.00091844021744
+UniRef50_UPI000361F456	hypothetical protein	0.000291252555585	4.9840392167e-05	-0.000241412163418
+UniRef50_A6LQV8	Phosphomannomutase	0.00100809362922	0.00442312223232	0.0034150286031
+UniRef50_O50236	Carbamoyl phosphate synthase large chain	1.94991240811e-05	1.5481229961e-05	-4.0178941201e-06
+UniRef50_J8V402		6.17805349938e-05	7.320990373e-05	1.14293687362e-05
+UniRef50_UPI000382615E	hypothetical protein	3.56567611084e-06	4.69986108862e-05	4.34329347754e-05
+UniRef50_D8TJQ5		1.01875783796e-05	3.5862244884e-05	2.56746665044e-05
+UniRef50_H3VMS8		0.000240948503526	3.97181061602e-05	-0.000201230397366
+UniRef50_UPI0002484D08	glycerophosphoryl diester phosphodiesterase	1.12113579903e-06	0.000602957402776	0.000601836266977
+UniRef50_R1FE37		0.000122663424213	3.06796173529e-05	-9.19838068601e-05
+UniRef50_UPI00039572EC	molybdopterin guanine dinucleotide biosynthesis protein A	6.84918709221e-06	8.27068875096e-06	1.42150165875e-06
+UniRef50_P31434	Alpha xylosidase	0.00710594607545	0.00124080422324	-0.00586514185221
+UniRef50_J8V5R5		0.000117750627813	2.12403397037e-05	-9.65102881093e-05
+UniRef50_UPI00016C54C0	histidinol dehydrogenase	1.7086051979e-05	5.65303843146e-05	3.94443323356e-05
+UniRef50_Q4DRG1	MaoC like dehydratase, putative	2.02092077729e-05	1.13155281681e-05	-8.8936796048e-06
+UniRef50_B3QY47	NADH quinone oxidoreductase subunit B 2	6.25436198249e-06	0.00162873018128	0.0016224758193
+UniRef50_A3M2E1	DNA polymerase V component	0.00151678867335	0.0132586826657	0.0117418939923
+UniRef50_Q47CM9	Phenylalanine  tRNA ligase beta subunit	0.000118528752683	0.00306482708079	0.00294629832811
+UniRef50_P44704	CDP diacylglycerol  serine O phosphatidyltransferase	0.00367129718611	0.000453412403041	-0.00321788478307
+UniRef50_Q1CA93	Leucyl phenylalanyl tRNA  protein transferase	0.00170733670721	0.000799414180825	-0.000907922526385
+UniRef50_UPI00037210F0	hypothetical protein, partial	6.78244562533e-06	7.81107243145e-06	1.02862680612e-06
+UniRef50_UPI0003114778	hypothetical protein	1.05833445011e-05	1.13717107124e-05	7.883662113e-07
+UniRef50_Q3BY50		3.66750891684e-06	2.55397815315e-05	2.18722726147e-05
+UniRef50_N6D480		0.00923996744515	0.00233829655505	-0.0069016708901
+UniRef50_P0ADQ4		0.00407021694859	0.00207743922445	-0.00199277772414
+UniRef50_A3M418		0.000383234506454	0.00512967614181	0.00474644163536
+UniRef50_UPI000255A3BD	acetyl CoA acetyltransferase, partial	0.000118948978912	0.000372416874894	0.000253467895982
+UniRef50_D3QHV4	Transcription repressor of sporulation, septation and degradation PaiA	0.0124538539675	0.0103939553095	-0.002059898658
+UniRef50_F8I0C3		3.68724254049e-06	6.79816775513e-06	3.11092521464e-06
+UniRef50_UPI0002886B91	NAD dependent malic enzyme 1	2.57107897143e-05	2.2080164244e-05	-3.6306254703e-06
+UniRef50_Q6CEK4	YALI0B14971p	1.27921083893e-06	3.9761792892e-05	3.84825820531e-05
+UniRef50_S5XJ53		0.000163309455408	0.000161935132449	-1.374322959e-06
+UniRef50_G8VB45	Exonuclease V subunit alpha	7.0208181432e-05	0.00503767104597	0.00496746286454
+UniRef50_A3L1C1		0.000440128622474	0.00100351627844	0.000563387655966
+UniRef50_UPI000477E357	hypothetical protein	5.33023002087e-06	8.92884565857e-06	3.5986156377e-06
+UniRef50_UPI0003DE7F24	PREDICTED	4.84549121802e-06	5.82588949084e-06	9.8039827282e-07
+UniRef50_D2ZNL5		0.0070553989254	0.000732234273367	-0.00632316465203
+UniRef50_R3B8E7		3.5481001118e-05	5.7087317789e-05	2.1606316671e-05
+UniRef50_UPI0003731F30	hypothetical protein	3.09230035725e-06	0.000214689072251	0.000211596771894
+UniRef50_UPI00046581AB	peptide ABC transporter permease	4.68831999283e-06	9.57363031865e-06	4.88531032582e-06
+UniRef50_UPI000470EA3B	orotidine 5 phosphate decarboxylase, partial	2.31907387926e-05	1.75210819596e-05	-5.669656833e-06
+UniRef50_UPI0003779D2C	hypothetical protein	4.59421782733e-05	1.02500716242e-05	-3.56921066491e-05
+UniRef50_W1XGP9	Branched chain amino acid transport system 	5.00924052576e-05	0.000119876242002	6.97838367444e-05
+UniRef50_H0PS77		0.000179797593136	0.000307967615435	0.000128170022299
+UniRef50_Q4L3C5	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0192114288008	0.00283572001439	-0.0163757087864
+UniRef50_G0A952	Inner membrane translocator	0.000251754082824	0.00286032303523	0.00260856895241
+UniRef50_A4XYG1	Protein RnfH	3.67391132005e-05	4.16432394374e-05	4.9041262369e-06
+UniRef50_Q59801	Hyaluronate lyase	0.0183602992503	0.00365940401754	-0.0147008952328
+UniRef50_P21507	ATP dependent RNA helicase SrmB	0.00233325991696	0.000358059855331	-0.00197520006163
+UniRef50_UPI00046D65C0	hypothetical protein	4.20213290307e-05	3.20806108295e-05	-9.9407182012e-06
+UniRef50_D6U054	Short chain dehydrogenase reductase SDR	4.93134509874e-06	1.73094039184e-05	1.23780588197e-05
+UniRef50_P50205	Acetoacetyl CoA reductase	0.0152883076888	0.00683420031243	-0.00845410737637
+UniRef50_P28721	Protein GltF	0.00364575528263	0.001195018539	-0.00245073674363
+UniRef50_F2UKD5		7.36915143044e-06	2.19470278957e-05	1.45778764653e-05
+UniRef50_D3QJ79	Multimodular transpeptidase transglycosylase	0.020232266713	0.00457664506267	-0.0156556216503
+UniRef50_P72158	N5 carboxyaminoimidazole ribonucleotide synthase	0.000957598683487	6.1988622634e-06	-0.000951399821224
+UniRef50_S3DKH9		0.000130580479645	4.2622482067e-06	-0.000126318231438
+UniRef50_O85674	Anthranilate 1,2 dioxygenase small subunit	0.0053477181754	0.00953068634601	0.00418296817061
+UniRef50_Q7MYS8	Oligoribonuclease	8.16328159899e-05	7.82972890187e-05	-3.3355269712e-06
+UniRef50_UPI000369E32A	single stranded DNA binding protein	1.70068572342e-05	8.67826352611e-05	6.97757780269e-05
+UniRef50_Q168P4	GTP cyclohydrolase FolE2	0.0116537868542	0.00277842197801	-0.00887536487619
+UniRef50_E3I2H2	NADH ubiquinone oxidoreductase 20 kDa subunit	0.00162846859475	0.000448274859085	-0.00118019373567
+UniRef50_A3M2G1		0.000500521725877	0.00626723211893	0.00576671039305
+UniRef50_W9T9K1	Sulfate transporter	0.00117179153738	0.000515654955492	-0.000656136581888
+UniRef50_UPI000468F97A	adenosylcobinamide kinase	6.21623501958e-05	2.98840681696e-05	-3.22782820262e-05
+UniRef50_H6VX70	Tyrosine recombinase XerC	0.000258046204092	0.00540768208926	0.00514963588517
+UniRef50_K1E1R3	Exodeoxyribonuclease V subunit gamma	1.88493849747e-05	0.000102497995773	8.36486107983e-05
+UniRef50_Q5GWV2		0.00201416007059	1.02298592394e-05	-0.00200393021135
+UniRef50_Q1HTP5	X2R	4.98852190603e-05	2.54160464958e-05	-2.44691725645e-05
+UniRef50_A0A018ZXW4	Molybdopterin guanine dinucleotide biosynthesis protein MobA	1.6314008624e-05	1.9308756249e-05	2.994747625e-06
+UniRef50_C6BD53	MscS Mechanosensitive ion channel	0.000698807652753	0.000208213893202	-0.000490593759551
+UniRef50_Q9HZ76	UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase	0.000782575120573	0.00932760165831	0.00854502653774
+UniRef50_UPI00036DC1D7	MULTISPECIES	1.05941589764e-05	8.30658682949e-06	-2.28757214691e-06
+UniRef50_P43505	Membrane fusion protein MtrC	0.000509278897222	0.00120404363229	0.000694764735068
+UniRef50_A1B1U3	Magnesium transporter	0.00707307148112	0.0022687688197	-0.00480430266142
+UniRef50_Q8DUY3	Putative two component membrane permease complex subunit SMU_747c	0.00387047323499	0.0059095452334	0.00203907199841
+UniRef50_O85786	Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	6.94937636196e-06	7.70800290866e-06	7.586265467e-07
+UniRef50_A0A020CZ26		0.0210461784723	0.00555299514891	-0.0154931833234
+UniRef50_Q2CIE7		2.54243507904e-05	3.95407679884e-05	1.4116417198e-05
+UniRef50_UPI0003C88714	PREDICTED	5.82509846771e-06	1.38944004386e-05	8.06930197089e-06
+UniRef50_UPI00041F5BCB	inositol monophosphatase	1.69274544343e-05	6.35805586309e-05	4.66531041966e-05
+UniRef50_T1BV79	Potassium transporting ATPase subunit B 	2.37188003866e-05	0.00245986548492	0.00243614668453
+UniRef50_F5M3E9		0.0020153994224	0.00089040212621	-0.00112499729619
+UniRef50_UPI0004725E16	hypothetical protein	1.0976794078e-05	4.08059186099e-06	-6.89620221701e-06
+UniRef50_E3IHD0	Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein	0.000109099996778	0.000788430457683	0.000679330460905
+UniRef50_A4FA42		2.15557500101e-05	1.12897904313e-05	-1.02659595788e-05
+UniRef50_T6N9U5		0.000853968258333	0.000177013010107	-0.000676955248226
+UniRef50_M4YYU6	A G specific adenine glycosylase	0.00397771338546	0.00125144344785	-0.00272626993761
+UniRef50_B5R8Z8	D amino acid dehydrogenase Alanine racemase fusion protein	0.00309300441818	0.000879730768933	-0.00221327364925
+UniRef50_G7ZH30		7.60806220332e-06	5.25966197436e-06	-2.34840022896e-06
+UniRef50_A4VT18	Mevalonate kinase	0.00400837697981	0.00153019205453	-0.00247818492528
+UniRef50_P0AF19	N acetylglucosamine 6 phosphate deacetylase	0.00283087753654	0.000235312115686	-0.00259556542085
+UniRef50_B9KUF9		2.26617868603e-05	1.96387671742e-05	-3.0230196861e-06
+UniRef50_Q7UFS3	GMP synthase [glutamine hydrolyzing]	0.0412571411158	0.0610338261949	0.0197766850791
+UniRef50_H8FW24		2.3042972393e-05	1.75590035836e-05	-5.4839688094e-06
+UniRef50_A6LW90		0.000123630782379	0.000876527289091	0.000752896506712
+UniRef50_M5ABS1	Antiholin like protein LrgB	0.00549715953097	0.00255176966193	-0.00294538986904
+UniRef50_G3Z6Q7	UPF0125 protein HMPREF1028_02272	1.97795416353e-05	9.65123544505e-05	7.67328128152e-05
+UniRef50_B0VLI0		0.000331128060398	0.00749117790417	0.00716004984377
+UniRef50_N6W8Z6	Putative oxidoreductase	0.000151383310707	0.00135550477381	0.0012041214631
+UniRef50_A6WEM4		2.8436482489e-06	3.31287153493e-05	3.02850671004e-05
+UniRef50_A5N6U5	Transcriptional regulator	0.000486033462046	0.000383528188565	-0.000102505273481
+UniRef50_Q8PNB5	Adenylosuccinate synthetase	0.00200103022677	0.000769906449362	-0.00123112377741
+UniRef50_UPI00035FCD7D	hypothetical protein	4.85293926949e-06	2.96587232849e-05	2.48057840154e-05
+UniRef50_Q16D47	3,5 bisphosphate nucleotidase	0.00661194819128	0.00151661303362	-0.00509533515766
+UniRef50_G0DW29	Penicillin binding protein 	0.000189057975903	0.0049596214952	0.0047705635193
+UniRef50_Q5HNL5	Formamidopyrimidine DNA glycosylase	0.0180271665343	0.00358042415733	-0.014446742377
+UniRef50_C6E3P1		3.13611472904e-05	6.77750222451e-06	-2.45836450659e-05
+UniRef50_E1S7F7	Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase	6.785248452e-05	0.00214070425634	0.00207285177182
+UniRef50_UPI000379B136	hypothetical protein	6.06515050908e-06	7.8108707715e-06	1.74572026242e-06
+UniRef50_E5QW86		0.00107782489575	0.000831878042813	-0.000245946852937
+UniRef50_Q3IV65	Capsular polysaccharide biosynthesis protein, putative	0.00657103657571	0.00130880822469	-0.00526222835102
+UniRef50_T0K2V4		3.90142498159e-05	3.40263642946e-05	-4.9878855213e-06
+UniRef50_Q56734	Aspartate semialdehyde dehydrogenase	0.0138164559658	0.00220703876686	-0.0116094171989
+UniRef50_A0RKK5	Cell wall surface anchor family protein	3.03612921906e-06	0.000223276804629	0.00022024067541
+UniRef50_T1ZLK9	DNA repair protein radA	0.00686882455541	0.00326756133696	-0.00360126321845
+UniRef50_UPI0004660A11	hypothetical protein	1.12856037578e-05	4.229914993e-05	3.10135461722e-05
+UniRef50_Q2NI31	Methionine  tRNA ligase	0.00307220756712	0.000715195859351	-0.00235701170777
+UniRef50_UPI00036BF67A	hypothetical protein	0.000395323398558	4.96013099524e-05	-0.000345722088606
+UniRef50_UPI0004249615	fructose 1,6 bisphosphatase	1.64181957988e-05	0.000310426781458	0.000294008585659
+UniRef50_Q2RKK1	Xanthine phosphoribosyltransferase	4.86394466476e-05	6.64478940087e-05	1.78084473611e-05
+UniRef50_B8FB52	Sulfate adenylyltransferase	6.88008286142e-05	4.3482667566e-05	-2.53181610482e-05
+UniRef50_H9U2W8	Transposase	0.000702229395936	0.0123859094175	0.0116836800216
+UniRef50_W5XCI5	N acetyl gamma glutamyl phosphate reductase	1.01003334328e-05	1.16240872642e-05	1.5237538314e-06
+UniRef50_U6ECP8		0.000178982268597	4.02756036838e-05	-0.000138706664913
+UniRef50_Q3JPC5		4.76455084367e-05	0.00369719291179	0.00364954740335
+UniRef50_UPI0004752042	formyltetrahydrofolate deformylase, partial	5.20083847201e-05	1.58032021469e-05	-3.62051825732e-05
+UniRef50_Q4ZWM4	DNA polymerase IV	4.26798686037e-06	1.40088563695e-05	9.74086950913e-06
+UniRef50_Q6A6W0		0.000119457591412	0.00540956641899	0.00529010882758
+UniRef50_Q0BQG5	Nucleoside diphosphate kinase	0.000187483359791	0.000190110559529	2.627199738e-06
+UniRef50_J9QTZ5	Prophage antirepressor	8.41461234527e-06	1.53268392262e-05	6.91222688093e-06
+UniRef50_G8RG67		0.0146805635927	0.00374089903989	-0.0109396645528
+UniRef50_A5UJT9	Desulfoferrodoxin 	0.0133420144443	0.00181733357043	-0.0115246808739
+UniRef50_I1F5H5		1.35354130867e-05	2.23027702495e-05	8.7673571628e-06
+UniRef50_D2VS44	Predicted protein	1.5557643085e-05	1.12936181256e-05	-4.2640249594e-06
+UniRef50_UPI0002002642	GAF domain GGDEF domain EAL domain containing protein	3.03044404226e-06	7.44145217387e-05	7.13840776964e-05
+UniRef50_Q6A9G3	Conjugal transfer protein 	0.000304424184557	0.000583610289954	0.000279186105397
+UniRef50_C4LJM5	Peptide chain release factor 1	0.000441195532936	0.00749346034408	0.00705226481114
+UniRef50_P56259		0.00031632904094	0.000453171414615	0.000136842373675
+UniRef50_W9H1I0		0.000111691703264	8.05677432011e-05	-3.11239600629e-05
+UniRef50_E3A0A4	2,4 dienoyl CoA reductase FadH2	8.1354738977e-05	0.000278616464193	0.000197261725216
+UniRef50_UPI0002EF5C1B	accessory secretory protein Asp2	4.1773836899e-05	0.000115734828939	7.396099204e-05
+UniRef50_H4F217		7.70793398961e-05	8.49963256006e-06	-6.8579707336e-05
+UniRef50_UPI00030A8FAF	membrane protein	0.000142639908964	6.21053009884e-05	-8.05346079756e-05
+UniRef50_A9WDI1	Dihydroorotate dehydrogenase 	4.41362597166e-06	1.54882662299e-05	1.10746402582e-05
+UniRef50_P37464	Serine  tRNA ligase	0.032221307589	0.017607073002	-0.014614234587
+UniRef50_UPI0003622EE4	hypothetical protein	1.31106623149e-05	7.30551405241e-06	-5.80514826249e-06
+UniRef50_UPI00047159CC	hypothetical protein	0.000103443648182	3.07649440946e-05	-7.26787040874e-05
+UniRef50_A8WTI8	Elongation factor G, mitochondrial	5.12331633824e-06	9.13898021517e-06	4.01566387693e-06
+UniRef50_B0C079	Pyridoxine pyridoxamine 5 phosphate oxidase	9.71765560356e-06	0.00044750773437	0.000437790078766
+UniRef50_UPI0002DCCC59	hypothetical protein	0.000141796347298	2.77973911559e-05	-0.000113998956142
+UniRef50_UPI000477E15D	hypothetical protein	4.22602557826e-05	0.000135597867936	9.33376121534e-05
+UniRef50_F2RAT0	UDP galactose lipid carrier transferase	0.000214075229968	0.000869444584582	0.000655369354614
+UniRef50_Q2YYV8	Imidazolonepropionase	0.0151904070268	0.00433615085942	-0.0108542561674
+UniRef50_M1MXQ5	Amylopullulanase AmyB	0.000243656894405	0.00150982077313	0.00126616387872
+UniRef50_Q9RRU0	Na+ H+ antiporter, putative	0.000205246765242	0.0217040660457	0.0214988192805
+UniRef50_B9KNM4	Urea amidolyase related protein	0.0122818941539	0.000784326980384	-0.0114975671735
+UniRef50_Q72NX7	Polyribonucleotide nucleotidyltransferase	2.362651744e-06	5.65294447998e-05	5.41667930558e-05
+UniRef50_B6ISK5	Acyl CoA dehydrogenase, putative	0.00040931767137	0.051379674755	0.0509703570836
+UniRef50_E3A0N8	Protease subunit HflC	0.000308571653009	0.000220385600888	-8.8186052121e-05
+UniRef50_A6LU25		0.000615466286172	0.000902457376142	0.00028699108997
+UniRef50_UPI00036B07DE	hypothetical protein, partial	3.03854375534e-06	3.42147649177e-05	3.11762211624e-05
+UniRef50_O25758	Probable chromosome partitioning protein ParB	0.000138104630066	0.00294753368337	0.0028094290533
+UniRef50_UPI00024850D8	hemolysin type calcium binding protein, partial	3.03287245114e-06	2.7039357176e-06	-3.2893673354e-07
+UniRef50_UPI000466B878	potassium transporter KefB	2.1823675817e-05	6.24224584607e-05	4.05987826437e-05
+UniRef50_B0K1N2	N acetylmuramic acid 6 phosphate etherase	8.47771690075e-06	1.08135324425e-05	2.33581554175e-06
+UniRef50_UPI0003A7C1AD	30S ribosomal protein S15	0.000268621455664	6.81394152462e-05	-0.000200482040418
+UniRef50_A1B7K4	TRAP dicarboxylate transporter DctP subunit	0.0125587248754	0.00243415027228	-0.0101245746031
+UniRef50_X2MU03	Glutamate ammonia ligase adenylyltransferase	0.000569363059183	6.36687111458e-05	-0.000505694348037
+UniRef50_A7HA47	LigA	3.83410873907e-05	0.000417899137682	0.000379558050291
+UniRef50_M9S6C0		0.00071500184404	0.000973849677425	0.000258847833385
+UniRef50_Q3JNY9		4.17877728475e-05	6.3191877006e-05	2.14041041585e-05
+UniRef50_UPI0003725615	hypothetical protein	7.5418105732e-05	4.14632317031e-05	-3.39548740289e-05
+UniRef50_P77588		0.00321753592959	0.00101233745279	-0.0022051984768
+UniRef50_B2TL20	[Fe] hydrogenase	0.000653821901209	0.000135570025341	-0.000518251875868
+UniRef50_UPI00047C43F4	hypothetical protein	0.00412212797885	0.00632698803512	0.00220486005627
+UniRef50_UPI0004719EA1	aminotransferase, partial	3.53565899653e-05	4.99914290137e-05	1.46348390484e-05
+UniRef50_UPI00038F9F8C	Spermidine putrescine binding periplasmic protein 2	9.42697870372e-05	0.000164791741151	7.05219541138e-05
+UniRef50_B6IYF9	NAD dependent epimerase	0.0108325900845	0.00254087885557	-0.00829171122893
+UniRef50_P57260	NADH quinone oxidoreductase subunit J	5.38774265065e-05	0.000115264928635	6.13875021285e-05
+UniRef50_UPI00036191C4	hypothetical protein	1.87487897527e-05	2.15882252395e-05	2.8394354868e-06
+UniRef50_J9P5P7		1.73669516433e-05	1.32026735168e-05	-4.1642781265e-06
+UniRef50_UPI0002D709E2	hypothetical protein	2.3756107776e-06	4.47033358192e-05	4.23277250416e-05
+UniRef50_UPI00035DB1EC	50S ribosomal protein L3, partial	2.95061011445e-05	6.16587413941e-05	3.21526402496e-05
+UniRef50_F2MUA2	Metallo beta lactamase	0.00573624024849	0.00208747442115	-0.00364876582734
+UniRef50_UPI0004708144	hypothetical protein, partial	2.36668896684e-05	0.000242044837703	0.000218377948035
+UniRef50_UPI0003AF4F98	PREDICTED	1.08085086159e-05	5.84974476085e-06	-4.95876385505e-06
+UniRef50_Q0HP98	Shikimate dehydrogenase	0.00247599250204	0.000619849234165	-0.00185614326788
+UniRef50_UPI00026CDAF4	flagellar biosynthetic protein FliQ	0.00169861907655	9.58487216093e-05	-0.00160277035494
+UniRef50_A3TWT0		0.000760769161291	0.000225618165918	-0.000535150995373
+UniRef50_B5E1P6	Aspartyl glutamyl tRNA amidotransferase subunit B	0.00774318969066	0.00467991271449	-0.00306327697617
+UniRef50_D5MJP7		0.000367495176206	0.000662740410904	0.000295245234698
+UniRef50_UPI00047D5D86	hypothetical protein	4.53740360476e-05	0.00011708792494	7.17138888924e-05
+UniRef50_A5FEC6	N acetyl gamma glutamyl phosphate reductase	2.6316477576e-05	0.00280311982482	0.00277680334724
+UniRef50_UPI0003777642	hypothetical protein	4.33339445031e-06	1.81372341649e-05	1.38038397146e-05
+UniRef50_UPI0003B4B360	cation	8.30870661117e-05	0.000160297229232	7.72101631203e-05
+UniRef50_U3SQI4	Putative glutathione reductase	0.00705520332116	0.0014877919812	-0.00556741133996
+UniRef50_V8N2X3	Gar1 	6.3128562812e-05	0.000233363571585	0.000170235008773
+UniRef50_Q8CR31	N succinyldiaminopimelate aminotransferase	0.0250390556123	0.00866522052559	-0.0163738350867
+UniRef50_UPI0003B58990	tRNA  methyltransferase	8.91109431823e-06	6.3789094402e-06	-2.53218487803e-06
+UniRef50_UPI00042BDC6C	PREDICTED	2.72115544825e-05	0.000396644874722	0.00036943332024
+UniRef50_Q65U21	Lipid A export ATP binding permease protein MsbA	0.00291514674987	0.000491303313492	-0.00242384343638
+UniRef50_C4UBB8	sn glycerol 3 phosphate binding periplasmic protein ugpB	3.35470966465e-05	1.73339725023e-05	-1.62131241442e-05
+UniRef50_M4X3Z5	Nitrous oxide reductase	0.000814688529057	0.000435432614899	-0.000379255914158
+UniRef50_Q9RXJ6	30S ribosomal protein S3	0.000151398123869	0.0101164858475	0.00996508772363
+UniRef50_X1GQT1	Marine sediment metagenome DNA, contig	3.59423430675e-05	2.68583301737e-05	-9.0840128938e-06
+UniRef50_Q97KH7	Phosphoribosyl AMP cyclohydrolase	2.6292623538e-05	1.81208014558e-05	-8.1718220822e-06
+UniRef50_Q7URW6	DNA directed RNA polymerase subunit beta	4.31090170609e-06	4.23388298992e-06	-7.701871617e-08
+UniRef50_D9VIN0	Predicted protein	0.000122152884961	8.5310555185e-05	-3.6842329776e-05
+UniRef50_M8UUK1		0.000130018136227	0.000146409034395	1.6390898168e-05
+UniRef50_UPI00042BD38E	PREDICTED	2.48287255425e-05	1.79204354384e-05	-6.9082901041e-06
+UniRef50_Q9K005	Orotidine 5 phosphate decarboxylase	0.000626876905465	0.00389737484814	0.00327049794267
+UniRef50_B4RNK3	TspB3	0.000124995360549	0.0056296372884	0.00550464192785
+UniRef50_UPI00040ED66A	riboflavin biosynthesis protein RibD	4.14196120762e-06	3.30863421451e-05	2.89443809375e-05
+UniRef50_B0TFC9	Bifunctional protein FolD	5.98370234284e-06	4.95828400011e-06	-1.02541834273e-06
+UniRef50_A5UMF6	Shikimate dehydrogenase	0.00392696061352	0.00233615403594	-0.00159080657758
+UniRef50_UPI0003457810	hypothetical protein	4.16954027244e-05	1.69769539017e-05	-2.47184488227e-05
+UniRef50_UPI00016B2503	excinuclease ABC, B subunit, partial	0.000181333147499	3.80083682114e-05	-0.000143324779288
+UniRef50_W4UC70		8.95941775374e-05	0.000752451400967	0.00066285722343
+UniRef50_W1GWA4	GTP binding protein TypA BipA	2.24634476511e-05	2.4377617384e-05	1.9141697329e-06
+UniRef50_UPI000372735A	hypothetical protein, partial	6.96153010697e-05	0.000137299685561	6.76843844913e-05
+UniRef50_A0A059LBF3		0.000288405505015	0.000166658928276	-0.000121746576739
+UniRef50_B7V938		0.000440433163965	0.000292392777421	-0.000148040386544
+UniRef50_UPI00036DDC82	hypothetical protein	1.62964196266e-05	6.67797237896e-05	5.0483304163e-05
+UniRef50_P76542	Putative prophage CPZ 55 integrase	0.00360295403007	0.000174399629052	-0.00342855440102
+UniRef50_A4WCP1	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	6.38327903825e-05	5.68908654031e-05	-6.9419249794e-06
+UniRef50_A3SZC0		0.00116471448102	0.000296774096314	-0.000867940384706
+UniRef50_C4LEY6	Beta hexosaminidase	2.53338068237e-05	3.43735801228e-05	9.0397732991e-06
+UniRef50_UPI000366F960	hypothetical protein	0.00028388464448	0.000456541799664	0.000172657155184
+UniRef50_S2XRA0	Heme A synthase	0.00779347380956	0.00256761225037	-0.00522586155919
+UniRef50_A8HVZ9	Predicted protein	6.82698715631e-06	1.82982920464e-05	1.14713048901e-05
+UniRef50_X1CFP7	Marine sediment metagenome DNA, contig	6.61209206847e-06	1.07737059726e-05	4.16161390413e-06
+UniRef50_UPI0004778F7D	hypothetical protein	6.36857025517e-06	3.40418260908e-06	-2.96438764609e-06
+UniRef50_Q3JR20		2.82542739658e-06	8.4325648074e-06	5.60713741082e-06
+UniRef50_UPI00041694C7	Rrf2 family transcriptional regulator	2.44891098578e-05	4.51420239594e-05	2.06529141016e-05
+UniRef50_A5FHP3	Malate dehydrogenase	1.71895566326e-05	2.77028828526e-05	1.051332622e-05
+UniRef50_Q69PS6	Thioredoxin reductase NTRA	5.36994816989e-05	2.05194235429e-05	-3.3180058156e-05
+UniRef50_UPI0002628AE7	methionyl tRNA synthetase	2.53490138657e-06	1.47520354114e-05	1.22171340248e-05
+UniRef50_B0VUW8	Membrane bound lytic murein transglycosylase B	0.000113132663991	0.00719134187582	0.00707820921183
+UniRef50_K9EE72		9.98553725587e-06	5.21859029268e-05	4.22003656709e-05
+UniRef50_G1L4H7		2.44881488766e-05	2.7374238541e-05	2.8860896644e-06
+UniRef50_K7RS07	Iojap like protein	0.000413305827211	0.0091109141766	0.00869760834939
+UniRef50_UPI000466C5B8	hypothetical protein, partial	0.000819284072046	0.000144484648222	-0.000674799423824
+UniRef50_F3U4V8		0.0015165396145	0.000974442904323	-0.000542096710177
+UniRef50_UPI000474972D	hypothetical protein, partial	2.42452542185e-05	8.49097927619e-05	6.06645385434e-05
+UniRef50_I6ST97	Transcriptional regulator	0.00413539053031	0.00218142416353	-0.00195396636678
+UniRef50_UPI00037FD271	hypothetical protein	5.32169847099e-05	7.50401192001e-06	-4.57129727899e-05
+UniRef50_UPI0002378711	hypothetical protein	1.59430938622e-05	3.17697038061e-05	1.58266099439e-05
+UniRef50_O27273	L sulfolactate dehydrogenase	0.00184100770609	0.000536565705238	-0.00130444200085
+UniRef50_G2MPZ1		3.56813724097e-05	7.6070867585e-06	-2.80742856512e-05
+UniRef50_R0LYS9	Excinuclease ABC subunit C	5.41931538964e-05	2.98715491098e-05	-2.43216047866e-05
+UniRef50_A6LX48	Beta lactamase domain protein	0.000151398123869	0.000444085270977	0.000292687147108
+UniRef50_Q4L686	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00976213551725	0.00111453922216	-0.00864759629509
+UniRef50_M1MPJ0		0.000167029198609	0.000592774535802	0.000425745337193
+UniRef50_V1IJP0	Anaerobic C4 dicarboxylate transporter	0.000416395654823	0.000206515178457	-0.000209880476366
+UniRef50_B1I0S9	Bifunctional enzyme IspD IspF	5.08863326154e-06	1.76924978559e-05	1.26038645944e-05
+UniRef50_UPI000376EAF4	hypothetical protein	5.76886044655e-06	1.17422421785e-05	5.97338173195e-06
+UniRef50_Q6MQ03	Aminomethyltransferase	4.14340012683e-05	2.09009880117e-05	-2.05330132566e-05
+UniRef50_X5KCP0	DNA binding response regulator VncR	0.000820621714897	0.00436262695167	0.00354200523677
+UniRef50_M4EC72		1.06049596924e-05	2.84454720289e-05	1.78405123365e-05
+UniRef50_D0LWP0	ABC transporter related protein	0.00063254472526	0.000915520564698	0.000282975839438
+UniRef50_G7M0T0	NADPH dependent FMN reductase	0.00600958204098	0.00734483669639	0.00133525465541
+UniRef50_A0A024E7D7	Peptidase M42	0.000436857647962	0.000454467678334	1.7610030372e-05
+UniRef50_UPI0003B54765	enoyl CoA hydratase	7.19413366425e-06	1.8051375552e-05	1.08572418878e-05
+UniRef50_D5ALC3		4.98816405951e-05	0.000117670762799	6.77891222039e-05
+UniRef50_A0A059LAL0		0.000227943356578	3.36297561803e-05	-0.000194313600398
+UniRef50_G5JVU3	GBS Bsp like repeat protein	0.0011433681447	0.00128448740433	0.00014111925963
+UniRef50_A1WZ50	4 hydroxy tetrahydrodipicolinate synthase	0.00181250372922	2.60895492644e-05	-0.00178641417996
+UniRef50_Q8R7Y4	Energy coupling factor transporter ATP binding protein EcfA1	0.000154438136513	0.00193935043895	0.00178491230244
+UniRef50_B4RP36	CadB	0.0601506131513	0.0122786966974	-0.0478719164539
+UniRef50_UPI00031DDA32	hypothetical protein	1.44664281278e-06	0.000392809243585	0.000391362600772
+UniRef50_R9ZL92		0.000490907633022	0.000553918706303	6.3011073281e-05
+UniRef50_D3QDJ7	Predicted ring cleavage extradiol dioxygenase	0.0227593006241	0.00593385838246	-0.0168254422416
+UniRef50_F6CD95	Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific	0.0100075344918	0.00345170927419	-0.00655582521761
+UniRef50_D7CSB0	ABC transporter related protein	6.65368958018e-05	0.00955728395314	0.00949074705734
+UniRef50_P52143		0.00299116675964	0.000759502413463	-0.00223166434618
+UniRef50_UPI00036FBDE9	helicase SNF2	4.01061715854e-06	0.000382990457936	0.000378979840777
+UniRef50_A0QX20	Aconitate hydratase	1.53353377698e-05	0.000104779051713	8.94437139432e-05
+UniRef50_O59439	30S ribosomal protein S5	0.0030588302176	0.000525786418738	-0.00253304379886
+UniRef50_UPI00036C31D6	succinylarginine dihydrolase, partial	3.34293500994e-05	0.000110365601957	7.69362518576e-05
+UniRef50_Q59086	Quinate shikimate dehydrogenase 	0.000106972992731	0.00591891734488	0.00581194435215
+UniRef50_UPI0003B4E02A	HNH endonuclease	0.000589296819748	9.66429109124e-05	-0.000492653908836
+UniRef50_V4ZHB5		1.9544232849e-06	1.9442325331e-05	1.74879020461e-05
+UniRef50_Q9RZD4		0.000377343172071	0.00705571253511	0.00667836936304
+UniRef50_V2VFK5	Methionine biosynthesis protein MetW	0.000193914035367	0.00688358372877	0.0066896696934
+UniRef50_F6DMK6		4.51885396252e-05	6.79195222504e-05	2.27309826252e-05
+UniRef50_Q2G2M4	Mini ribonuclease 3	0.00480663734947	0.00471820927473	-8.842807474e-05
+UniRef50_A3JQ23		1.29608316484e-05	1.96164124734e-05	6.655580825e-06
+UniRef50_C5AYY6	ABC family transporter, periplasmic protein	0.000568360251346	0.000299188066121	-0.000269172185225
+UniRef50_J1K243		1.16659721542e-05	1.8035559039e-05	6.3695868848e-06
+UniRef50_UPI000287B619	UBA THIF type NAD FAD binding protein	6.68116794457e-05	1.72557420262e-05	-4.95559374195e-05
+UniRef50_C5WHW2	Arginine repressor	0.00416717736112	0.000767895536374	-0.00339928182475
+UniRef50_UPI0003F95C37	PTS system cellobiose specific transporter subunit IIA	3.88116023515e-05	2.90294954126e-05	-9.7821069389e-06
+UniRef50_U5MQ56	Serine threonine protein phosphatase	0.000128650114592	0.00183399075822	0.00170534064363
+UniRef50_B0YLW6	Cysteine desulfurase, mitosomal	0.00121077993915	0.0132257090831	0.012014929144
+UniRef50_UPI000476C43C	cell division protein FtsZ	1.34343999424e-05	3.01403834785e-05	1.67059835361e-05
+UniRef50_D3HAC9	Single stranded DNA specific exonuclease	0.00357539021211	0.00363865811261	6.32679005e-05
+UniRef50_U6HVX7	Heat shock 70 kDa protein, mitochondrial, putative	8.06800389116e-06	2.53330721822e-06	-5.53469667294e-06
+UniRef50_W5N2Q1		3.01489705002e-05	0.000374161376496	0.000344012405996
+UniRef50_UPI00047E91BA	ferredoxin	3.95305467569e-05	0.000377678613216	0.000338148066459
+UniRef50_G7MC40	Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000401476229602	0.00132896834504	0.000927492115438
+UniRef50_P15038	Helicase IV	0.00347264656256	0.000755643951553	-0.00271700261101
+UniRef50_UPI0003787F1C	hypothetical protein	8.38464440454e-06	0.000100402503308	9.20178589035e-05
+UniRef50_O26663	Succinyl CoA ligase [ADP forming] subunit alpha	2.50018353435e-05	5.31228835388e-05	2.81210481953e-05
+UniRef50_G0DVB6	Alpha galactosidase	0.000140046063163	0.00654373297158	0.00640368690842
+UniRef50_UPI000472DA74	membrane protein	0.000144429780783	0.000152293026922	7.863246139e-06
+UniRef50_K0HCK8	ComE operon protein 3	0.000357633900494	0.00691330143899	0.0065556675385
+UniRef50_UPI0003B6E09E	ABC transporter	3.05554356883e-05	1.685337575e-05	-1.37020599383e-05
+UniRef50_Q5P3C5	Crossover junction endodeoxyribonuclease RuvC	0.00672973679377	0.00324440790271	-0.00348532889106
+UniRef50_Q27580	Adenosylhomocysteinase	0.00147056985734	0.00878137630401	0.00731080644667
+UniRef50_I5C553	Bacteriophage replication gene A protein 	0.00014377790448	0.000231459564019	8.7681659539e-05
+UniRef50_UPI000248C2C2	electron transfer flavoprotein, alpha subunit FixB family protein	7.92925169843e-06	6.58521061466e-06	-1.34404108377e-06
+UniRef50_UPI0002E17ECF	hypothetical protein	1.80025876165e-05	1.2444170816e-05	-5.5584168005e-06
+UniRef50_X7YY04		1.26007477712e-05	0.000178320725581	0.00016571997781
+UniRef50_F3SAU0		0.000369781082124	0.000160367720189	-0.000209413361935
+UniRef50_Q44472	Putative hydroxypyruvate reductase	0.000221723287586	0.000358481974484	0.000136758686898
+UniRef50_Z4XCQ6	Putative cross wall targeting lipoprotein signal 	0.0011687222984	0.000399058474063	-0.000769663824337
+UniRef50_A3PHP4	Putative ECF RNA polymerase sigma factor protein	0.00209271500155	0.002041949508	-5.076549355e-05
+UniRef50_Q6F2A0	Serine  tRNA ligase	4.55409117694e-06	5.01428674969e-06	4.6019557275e-07
+UniRef50_Q029K6	Queuine tRNA ribosyltransferase	5.11012980515e-06	2.66600471668e-05	2.15499173616e-05
+UniRef50_A5UM57	Predicted deacylase	0.00262030114659	0.0031753989484	0.00055509780181
+UniRef50_A6QBY0	3 oxoacyl [acyl carrier protein] synthase 3	0.00023313351618	0.00525262503571	0.00501949151953
+UniRef50_A6LXB6	Methyl accepting chemotaxis sensory transducer	0.000388869115435	0.00182248306777	0.00143361395234
+UniRef50_R7MK20	PTS system fructose specific IIABC component	3.28898923433e-05	0.00322523933261	0.00319234944027
+UniRef50_Q5L925	GTP cyclohydrolase 1	4.14401765163e-05	5.01032910244e-05	8.6631145081e-06
+UniRef50_P0AAE6	Putative arginine ornithine antiporter	0.00321731849906	0.00118887122218	-0.00202844727688
+UniRef50_A3PM57	OmpA domain protein	0.00205159269046	0.000506257208899	-0.00154533548156
+UniRef50_N8JY23		0.000814371038283	0.000195905694112	-0.000618465344171
+UniRef50_P0A201	Curli production assembly transport component CsgE	0.000294910928794	0.000457855356899	0.000162944428105
+UniRef50_UPI00047B3E5B	hypothetical protein	2.88526552427e-06	3.8645633795e-06	9.7929785523e-07
+UniRef50_UPI00035D0534	hypothetical protein	1.38642134921e-05	9.04969157907e-05	7.66327022986e-05
+UniRef50_A5UYT7	PUCC protein	2.52927104903e-05	7.46671855865e-06	-1.78259919317e-05
+UniRef50_Q8XJR2	Putative zinc metalloprotease CPE1693	0.000115674971054	0.00190739236163	0.00179171739058
+UniRef50_Q9SEY5	Probable acyl activating enzyme 2	2.74732972388e-05	2.49179190056e-05	-2.5553782332e-06
+UniRef50_W4SG00		2.22444323188e-05	3.56667229583e-05	1.34222906395e-05
+UniRef50_A5UNX6	Predicted universal stress protein, UspA	0.000267720559474	0.000418888943548	0.000151168384074
+UniRef50_D6EFB5	Regulatory protein	0.000178666647148	1.77787487498e-05	-0.000160887898398
+UniRef50_Q94522	Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	3.58557555352e-05	3.31760241465e-05	-2.6797313887e-06
+UniRef50_Q8DX72	Transcriptional regulator, Cro CI family	0.000316034781363	0.000176133223777	-0.000139901557586
+UniRef50_Q53599	Protein map	0.000410859895788	7.51760810916e-05	-0.000335683814696
+UniRef50_P06576	ATP synthase subunit beta, mitochondrial	2.10459577151e-05	6.5573744164e-06	-1.44885832987e-05
+UniRef50_UPI00021A56D7	PREDICTED	0.000160165382243	5.30646424894e-05	-0.000107100739754
+UniRef50_P44910	GTP binding protein TypA BipA homolog	0.00277243939937	0.00862394085157	0.0058515014522
+UniRef50_T0IMD9		1.22010289975e-05	1.61676746888e-05	3.9666456913e-06
+UniRef50_A7HYI4	50S ribosomal protein L9	0.0084537481466	0.00312428523868	-0.00532946290792
+UniRef50_B9L2J1	Acetaldehyde dehydrogenase	0.003183070885	0.00085277936566	-0.00233029151934
+UniRef50_UPI0003B61C67	50S ribosomal protein L4	1.53808126387e-05	8.25228664921e-05	6.71420538534e-05
+UniRef50_A6LZH7	Transcriptional regulator, MarR family	0.000501087595826	0.00199220938814	0.00149112179231
+UniRef50_Q2FF13	Low molecular weight protein tyrosine phosphatase PtpB	0.00282003811312	0.00146321569137	-0.00135682242175
+UniRef50_Q5HHD1	Putative peptidyl prolyl cis trans isomerase	7.82183758467e-06	0.000244340854826	0.000236519017241
+UniRef50_UPI00040BC9E5	butanediol dehydrogenase	3.31628385514e-05	3.9065104171e-05	5.9022656196e-06
+UniRef50_A1R669	Oxidoreductase family, NAD binding Rossmann fold domain protein	0.000100040456404	0.00555578241785	0.00545574196145
+UniRef50_UPI00039B5846	hypothetical protein	1.99663654005e-05	2.87625972349e-05	8.7962318344e-06
+UniRef50_F2MM74	Cytidine deaminase	0.00218789767709	0.00412203269675	0.00193413501966
+UniRef50_UPI00022CE1AC		1.44801159207e-06	1.4950238736e-05	1.35022271439e-05
+UniRef50_N9Z7F0	YhgE Pip domain containing protein	0.000202627359004	0.000846011625188	0.000643384266184
+UniRef50_F5YEL5	Nitrogenase	0.000172041329329	0.00027447804323	0.000102436713901
+UniRef50_F0RQS6		4.07036361602e-05	0.000175951169409	0.000135247533249
+UniRef50_P45799	ADP compounds hydrolase NudE	0.00505668406772	0.000328738447346	-0.00472794562037
+UniRef50_O26664		0.00442429830978	0.00117420219928	-0.0032500961105
+UniRef50_UPI0000164CEE	putative transposase	7.43361581767e-05	0.124709122894	0.124634786736
+UniRef50_UPI0004415ED9	GTP binding protein Obg CgtA	3.32974925147e-06	0.000162329367688	0.000158999618437
+UniRef50_UPI00038219EB	hypothetical protein	0.000255697695808	0.000473665301161	0.000217967605353
+UniRef50_A0A023UVB3	MFS transporter	0.000222866963081	0.000151186026547	-7.1680936534e-05
+UniRef50_Q93PN3	Ferric hydroxamate receptor 1	0.00587358546412	0.00119907596136	-0.00467450950276
+UniRef50_UPI000466770B	BCCT transporter	7.18521343554e-05	2.38078511347e-05	-4.80442832207e-05
+UniRef50_L2ZQX2	Melibiose carrier protein	0.0027949020284	0.00112097381491	-0.00167392821349
+UniRef50_P37746	Putative O antigen transporter	0.0036819077642	0.000518282303339	-0.00316362546086
+UniRef50_UPI0004718772	30S ribosomal protein S2	2.26820062065e-05	1.81507737684e-05	-4.5312324381e-06
+UniRef50_L1KZ53		1.89982943189e-05	0.000441975583678	0.000422977289359
+UniRef50_E1M0K4	N acetyl glucosamine matabolism	2.15832256713e-05	1.64239543469e-05	-5.1592713244e-06
+UniRef50_H8XGR9		0.0120099486241	0.00163145268247	-0.0103784959416
+UniRef50_UPI0002064BBF	PREDICTED	4.39544944375e-06	8.51102350421e-06	4.11557406046e-06
+UniRef50_U5UMZ1	N acetylglucosamine 6 phosphate deacetylase	0.0253303677845	0.00391479829046	-0.021415569494
+UniRef50_Q6A9W9	Cation transporting P type ATPase A	0.000131223579037	0.00646341304687	0.00633218946783
+UniRef50_F4M600		0.00195046875892	0.000849499201307	-0.00110096955761
+UniRef50_UPI00046BAD61	PREDICTED	3.55781656944e-06	3.84097047477e-06	2.8315390533e-07
+UniRef50_UPI0003A27C90	hypothetical protein	8.11993465715e-05	1.3815079482e-05	-6.73842670895e-05
+UniRef50_UPI00037AE98E	hypothetical protein	2.62055422881e-05	7.08113241508e-05	4.46057818627e-05
+UniRef50_P42778	Aminopeptidase T	0.000104374006137	6.03549396929e-05	-4.40190664441e-05
+UniRef50_M4YX89	Stage 0 sporulation protein	0.00549170061236	0.00416064540081	-0.00133105521155
+UniRef50_R9ZFL5	ABC transporter permease	0.00081882291189	0.00117060013925	0.00035177722736
+UniRef50_UPI000428106D	hypothetical protein	5.37267293737e-06	3.62345242764e-06	-1.74922050973e-06
+UniRef50_A0A029PSG2		2.72482044463e-05	4.64456117212e-05	1.91974072749e-05
+UniRef50_A0A024IS11	Plasmid partitioning protein	0.000155161686285	2.61026807106e-05	-0.000129059005574
+UniRef50_P9WQK2		0.00291735582738	0.0178384257432	0.0149210699158
+UniRef50_Q7M8H7	Valine  tRNA ligase	9.74505257933e-05	0.00339688354859	0.0032994330228
+UniRef50_A6LZT7		0.000976256867724	0.00150291410778	0.000526657240056
+UniRef50_W7G027		8.65801201392e-05	3.67742887112e-05	-4.9805831428e-05
+UniRef50_D5AM27	Pseudouridine synthase	0.00736051960925	0.00213257429764	-0.00522794531161
+UniRef50_P76561	Esterase YpfH	0.00225488975585	0.00118454319802	-0.00107034655783
+UniRef50_UPI00021974F8	DeoR family transcriptional regulator	1.34285385325e-05	3.15364545099e-05	1.81079159774e-05
+UniRef50_D2QMM0		2.44558858853e-05	0.000156756003057	0.000132300117172
+UniRef50_UPI00016C4288	CheA Signal Transduction Histidine Kinases , partial	3.47015662212e-06	1.88282300538e-05	1.53580734317e-05
+UniRef50_UPI00046451D1	polyamine ABC transporter ATPase	7.70399117753e-05	1.91074257509e-05	-5.79324860244e-05
+UniRef50_R5ELQ2	Topology modulation protein	1.84657547031e-05	3.22028087596e-05	1.37370540565e-05
+UniRef50_P25857	Glyceraldehyde 3 phosphate dehydrogenase GAPB, chloroplastic	3.95322378677e-05	1.66939328316e-05	-2.28383050361e-05
+UniRef50_Q67TG7		4.67716271118e-06	1.03796425551e-05	5.70247984392e-06
+UniRef50_W4UAM7		3.51049601379e-05	0.000342681357451	0.000307576397313
+UniRef50_UPI0003B31F76	hypothetical protein	1.83619984512e-05	3.53820842673e-05	1.70200858161e-05
+UniRef50_E3CUZ5	NLPA lipoprotein	3.80733402177e-05	7.63512111011e-05	3.82778708834e-05
+UniRef50_UPI0004758E9D	hypothetical protein, partial	0.000456925779047	0.000203392862809	-0.000253532916238
+UniRef50_G8V940	MutT Nudix family protein	0.00124906335495	0.00967047615812	0.00842141280317
+UniRef50_UPI00045E611A	cytidine deaminase	3.52740427485e-05	3.12633425969e-05	-4.0107001516e-06
+UniRef50_UPI000349A3D9	hypothetical protein	4.99171129157e-06	2.22797850888e-05	1.72880737972e-05
+UniRef50_UPI0003B40D78	sugar ABC transporter, partial	2.90286549519e-05	5.67016168015e-06	-2.33584932718e-05
+UniRef50_G2SQ27	Glycosyltransferase	0.0049933749049	0.00222203034387	-0.00277134456103
+UniRef50_X6L644		7.68364419879e-05	4.75555776371e-05	-2.92808643508e-05
+UniRef50_A5UHD3	Bifunctional protein GlmU	2.40471064061e-05	6.26200091589e-06	-1.77851054902e-05
+UniRef50_UPI00046B76DF	PREDICTED	5.04899414111e-06	0.000249563412836	0.000244514418695
+UniRef50_A7X6P6	Holin like protein CidA	0.00937027488317	0.00362824018862	-0.00574203469455
+UniRef50_P0A1J8	Flagella synthesis protein FlgN	0.00119810770375	0.00179099540274	0.00059288769899
+UniRef50_Q39NK6	Endoribonuclease L PSP	2.84660207752e-05	5.63131650807e-05	2.78471443055e-05
+UniRef50_UPI0001B44150	hypothetical protein	0.000199443979412	0.00048018976455	0.000280745785138
+UniRef50_P00490	Maltodextrin phosphorylase	0.00417851816225	0.0014514079557	-0.00272711020655
+UniRef50_A5UJI7	Asparagine synthetase, AsnB	0.00277802607671	0.000444286616466	-0.00233373946024
+UniRef50_K2DSG6		9.47148534366e-05	7.57196065083e-05	-1.89952469283e-05
+UniRef50_UPI00046C2950	cytochrome b 	0.000182421291978	7.00135235024e-05	-0.000112407768476
+UniRef50_UPI0003B5555F	MFS transporter	2.5915732082e-05	0.000146975885355	0.000121060153273
+UniRef50_A6QHT5		0.0121458381922	0.000432170788082	-0.0117136674041
+UniRef50_Q8DV31		0.000890941918006	0.00428434342103	0.00339340150302
+UniRef50_P0A3T3	31 kDa immunogenic protein	9.48415684732e-06	3.55014442685e-05	2.60172874212e-05
+UniRef50_D3NZU9		0.00762712272573	0.000671757737056	-0.00695536498867
+UniRef50_Q9KPB3	GTPase Era	0.00118255818439	0.00603129469943	0.00484873651504
+UniRef50_UPI00046411BA	diaminopimelate decarboxylase, partial	8.60334502678e-06	1.05949688857e-05	1.99162385892e-06
+UniRef50_UPI00037DE21F	multidrug transporter	0.000164501174775	0.000155239578183	-9.261596592e-06
+UniRef50_Q839Y4	Adenylosuccinate synthetase	0.0347473135737	0.0140876365168	-0.0206596770569
+UniRef50_M9VFY2		0.000108785587569	0.00431494178593	0.00420615619836
+UniRef50_W0E3L8	Flagellar hook capping protein	7.32679813667e-06	1.00367653662e-05	2.70996722953e-06
+UniRef50_Q5HKD7	Oxidoreductase, short chain dehydrogenase reductase family	0.0132319131403	0.00499700710651	-0.00823490603379
+UniRef50_UPI00036E9589	hypothetical protein, partial	6.63350689618e-05	2.75294293418e-05	-3.880563962e-05
+UniRef50_M3F475		1.49444886109e-05	0.00102414303003	0.00100919854142
+UniRef50_UPI000463B4EA	carnitine dehydratase	1.05141878525e-05	0.000181113420105	0.000170599232252
+UniRef50_D6EJW5	Predicted protein	1.28993004054e-06	0.000216715425948	0.000215425495907
+UniRef50_H4XQD7	Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein	0.00112624474485	0.000297298696507	-0.000828946048343
+UniRef50_UPI0003A6E25E	serine dehydratase	7.84921346501e-06	1.15845442806e-05	3.73533081559e-06
+UniRef50_UPI00039D719D	DNA binding protein	1.646249897e-05	7.62296948745e-06	-8.83952948255e-06
+UniRef50_G5RJ22		0.000297856595278	0.000458721991281	0.000160865396003
+UniRef50_W0YK09		0.00188742994426	0.000522684433979	-0.00136474551028
+UniRef50_I6B1F5		0.000143154764953	7.05798232947e-05	-7.25749416583e-05
+UniRef50_B9KLE9	Transcriptional regulator, AraC family	0.00220524596689	0.000723224584158	-0.00148202138273
+UniRef50_UPI0004764017	peptide ABC transporter permease	5.79321490638e-06	1.88023816264e-06	-3.91297674374e-06
+UniRef50_UPI00037A033B	hypothetical protein	5.52278806612e-06	2.41599996676e-05	1.86372116015e-05
+UniRef50_Q0K7G7	Acyl CoA synthetase	0.00146380294672	0.000799607146322	-0.000664195800398
+UniRef50_C2ZQ18	ABC transporter ATP binding protein yxdL	0.0142986704227	0.00118600761412	-0.0131126628086
+UniRef50_Q6FDY0	Cell shape determining protein MreC	0.00116538673977	0.00465542170944	0.00349003496967
+UniRef50_C6CXW7	LmbE family protein	5.88736323765e-06	1.7798412076e-05	1.19110488383e-05
+UniRef50_I0C3E8	Myo inositol 1 monophosphatase	0.0125863151521	0.0065766851731	-0.006009629979
+UniRef50_Q3AHV1	Glutamyl Q tRNA synthetase	5.46980659771e-06	9.86217989472e-06	4.39237329701e-06
+UniRef50_A3M2F5	Conjugal transfer protein	0.000138781613551	0.0105792594756	0.010440477862
+UniRef50_UPI00046744B6	ABC transporter permease, partial	0.000255394058913	0.000129835462706	-0.000125558596207
+UniRef50_UPI000362E5AE	hypothetical protein	4.99055866453e-06	8.32020359926e-06	3.32964493473e-06
+UniRef50_D3SBY0	Ribonuclease, Rne Rng family	0.00087350077108	0.000568480292046	-0.000305020479034
+UniRef50_B1LM32	Fatty acid oxidation complex subunit alpha	0.00219675556078	0.00898546085097	0.00678870529019
+UniRef50_UPI0003FCFBC7	GTP binding protein Era	1.4978195305e-05	7.17873565932e-05	5.68091612882e-05
+UniRef50_UPI00036244E1	MULTISPECIES	2.32920935315e-05	3.91430741955e-05	1.5850980664e-05
+UniRef50_F4EDN7	Ribulose phosphate 3 epimerase	0.00399043971041	0.002485363064	-0.00150507664641
+UniRef50_Q8CQF2	Capsular polysaccharide synthesis enzyme Cap5B	0.00917460579185	0.00283808374536	-0.00633652204649
+UniRef50_P08997	Malate synthase A	0.00330262831587	0.000239826397051	-0.00306280191882
+UniRef50_A0A036W4K8		0.000175972960421	1.05574901127e-05	-0.000165415470308
+UniRef50_UPI00047C7627	glutathione synthetase	6.76957271516e-06	1.3231054911e-05	6.46148219584e-06
+UniRef50_P32167		0.00631360126312	0.00387100126126	-0.00244260000186
+UniRef50_F7X4C7	Delta aminolevulinic acid dehydratase	0.00032238132368	0.000516274360376	0.000193893036696
+UniRef50_P65897	Phosphoribosylglycinamide formyltransferase	0.00460402110486	0.00135545998455	-0.00324856112031
+UniRef50_UPI000287C995	membrane protein	2.47886402903e-05	0.00013213731124	0.00010734867095
+UniRef50_M5DTI1		1.32813830827e-05	1.86778831321e-05	5.3965000494e-06
+UniRef50_B6ERK3	L allo threonine aldolase	0.00353744798453	0.000502783432462	-0.00303466455207
+UniRef50_V8CW46		0.0021583852341	0.000604621637068	-0.00155376359703
+UniRef50_H0UKG1	Urocanate hydratase	5.67079602693e-05	0.00831233597702	0.00825562801675
+UniRef50_M7AG58		5.65768941141e-05	2.65313754221e-05	-3.0045518692e-05
+UniRef50_P37643	Inner membrane metabolite transport protein YhjE	0.00290675726449	0.00735094201163	0.00444418474714
+UniRef50_UPI000466C516	flagellar biosynthesis protein FlhB	0.000152961130101	2.0631210496e-05	-0.000132329919605
+UniRef50_UPI0003648093	hypothetical protein	4.65536964476e-06	7.53183002715e-06	2.87646038239e-06
+UniRef50_P43669	Tail specific protease	0.00313247374606	0.00120983697504	-0.00192263677102
+UniRef50_E6S4X2	Outer membrane protein	5.83741219845e-05	0.00927612093405	0.00921774681207
+UniRef50_G4R850	Molybdopterin guanine dinucleotide biosynthesis protein MobA	7.40469363506e-06	1.96668148133e-05	1.22621211782e-05
+UniRef50_B7H1A9	DNA polymerase III, subunits gamma and tau	0.000122424811164	0.00431159539542	0.00418917058426
+UniRef50_K4L2S2	Flagellar motor rotation protein MotA	0.000159951690188	0.000645185269355	0.000485233579167
+UniRef50_G5M6M8		0.000230069696257	0.00175435666453	0.00152428696827
+UniRef50_N6UCJ2		7.76268620214e-06	0.000119857349329	0.000112094663127
+UniRef50_C5N315		0.0152296120901	0.000619545535373	-0.0146100665547
+UniRef50_UPI000465C017	ferredoxin	1.93723789665e-05	0.000167761450846	0.000148389071879
+UniRef50_A0A022H1C7	DNA binding protein	3.43926884354e-05	4.61142098899e-05	1.17215214545e-05
+UniRef50_A1AZ02		1.7016476536e-05	8.81937904438e-06	-8.19709749162e-06
+UniRef50_UPI0002484134	hemolysin type calcium binding protein	3.84764336707e-05	1.72492509887e-05	-2.1227182682e-05
+UniRef50_A0A023S0A7	DcaP like protein	0.000259409943429	0.00820890118734	0.00794949124391
+UniRef50_V4A4N8		3.99879225442e-05	7.17293110198e-05	3.17413884756e-05
+UniRef50_Q59977	Citrate synthase	1.64762271917e-05	8.97766192279e-05	7.33003920362e-05
+UniRef50_V4YV07		0.000456636276836	0.000714475899663	0.000257839622827
+UniRef50_F3U350		0.00743902633541	0.00224180998752	-0.00519721634789
+UniRef50_R7BMM6	Glycerol 3 phosphate cytidyltransferase TagD	0.00379100297471	0.000765336638399	-0.00302566633631
+UniRef50_UPI0002B41A80	PREDICTED	1.31749187047e-06	2.08007236196e-06	7.6258049149e-07
+UniRef50_UPI0004762A43	iron ABC transporter	8.82551747071e-06	4.00482074699e-05	3.12226899992e-05
+UniRef50_P39142	Pyrimidine nucleoside phosphorylase	0.0101609472363	0.0082711488146	-0.0018897984217
+UniRef50_Q1R031	Uridylate kinase	0.000503713269936	0.0067419351698	0.00623822189986
+UniRef50_A9NG27	Thymidylate synthase	3.66256855311e-05	0.000352304721448	0.000315679035917
+UniRef50_A6UJH5		5.44900500844e-05	0.000216878853269	0.000162388803185
+UniRef50_H5LJB5		0.00159869564113	0.000242394012474	-0.00135630162866
+UniRef50_D6K6K4		0.00016643821842	0.000163292597318	-3.145621102e-06
+UniRef50_B1TED8		6.22426323493e-05	0.000100004406744	3.77617743947e-05
+UniRef50_P0A5T7	Formyltetrahydrofolate deformylase	1.9670168743e-05	2.60927527183e-05	6.4225839753e-06
+UniRef50_X2GNK8	Arsenic transporter ATPase	0.000158764481514	0.00579713249654	0.00563836801503
+UniRef50_G7M542	Two component transcriptional regulator, winged helix family	0.000172368031437	0.00281842012135	0.00264605208991
+UniRef50_P55910	L lactate permease	0.0104828072799	0.00125029396343	-0.00923251331647
+UniRef50_A6LWU2	ABC transporter related	0.000244264005313	0.00110788236617	0.000863618360857
+UniRef50_B8ZUC1	Phosphoglucosamine mutase	4.12083920184e-06	4.34954885932e-05	3.93746493914e-05
+UniRef50_A0A024HWF4		7.19532428526e-06	0.000129565183052	0.000122369858767
+UniRef50_G8V8M1	Membrane spanning protein	0.000332099110422	0.00630498737476	0.00597288826434
+UniRef50_A8HYX7	ABC type branched chain amino acid transport ATPase component	0.0123506018978	0.00223487074113	-0.0101157311567
+UniRef50_A6LZK9	Methyl accepting chemotaxis sensory transducer	0.00032748132922	0.000845520705842	0.000518039376622
+UniRef50_K2KCN1		2.36104821523e-05	1.75743252226e-05	-6.0361569297e-06
+UniRef50_P54933	ATP binding transport protein SmoK	0.00193713174033	0.00155532118149	-0.00038181055884
+UniRef50_UPI0004698811	DNA topoisomerase I	1.96474976141e-06	9.49962261751e-06	7.5348728561e-06
+UniRef50_P0AA51		0.00334585969751	0.00292305487312	-0.00042280482439
+UniRef50_F8KLF6		0.0161395852245	0.00122485690681	-0.0149147283177
+UniRef50_Q6B945	3 oxoacyl [acyl carrier protein] synthase 3	4.10706383138e-05	1.24820701495e-05	-2.85885681643e-05
+UniRef50_A0A024L5K6	Amino acid ABC transporter permease	0.000359510465573	0.0011483803807	0.000788869915127
+UniRef50_UPI000262D62D	glucose 6 phosphate 1 dehydrogenase, partial	1.05059878376e-05	1.03288499718e-05	-1.771378658e-07
+UniRef50_Q9JZ77	3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000268190343332	0.00488176321812	0.00461357287479
+UniRef50_Q08WZ7		0.000167211316105	6.34923387838e-05	-0.000103718977321
+UniRef50_UPI0003B3DE24	multidrug ABC transporter ATP binding protein	1.69221278616e-05	7.77250975164e-06	-9.14961810996e-06
+UniRef50_UPI0004737AC7	hypothetical protein	0.000103062271139	0.000383389254612	0.000280326983473
+UniRef50_UPI0003B6AFA9	glycerol 3 phosphate dehydrogenase	1.86023845111e-05	5.93021304059e-06	-1.26721714705e-05
+UniRef50_Q9AF05		1.86027704527e-05	9.35565678686e-06	-9.24711366584e-06
+UniRef50_B6ITD9		2.43993609106e-05	6.75563235453e-05	4.31569626347e-05
+UniRef50_P69424	Sec independent protein translocase protein TatC	0.00245849186491	0.00132319596881	-0.0011352958961
+UniRef50_F0KHC4	Cell division protein ftsA	0.000306533843866	0.00473524918581	0.00442871534194
+UniRef50_Q9RTP9		1.083114388e-05	0.102880427759	0.102869596615
+UniRef50_R0PW25		0.000168270128756	0.00256412201142	0.00239585188266
+UniRef50_Q6A6H1	NADH quinone oxidoreductase subunit N	0.000103997588196	0.00625544529755	0.00615144770935
+UniRef50_UPI00029A832E	aspartyl glutamyl tRNA amidotransferase subunit B	9.36553079156e-05	2.36942158064e-05	-6.99610921092e-05
+UniRef50_Q9HA92	Radical S adenosyl methionine domain containing protein 1, mitochondrial	2.53181032556e-05	9.99153284642e-06	-1.53265704092e-05
+UniRef50_UPI00045EA718	hypothetical protein	8.91871129846e-06	4.0771068876e-06	-4.84160441086e-06
+UniRef50_UPI00037A936B	hypothetical protein	1.7297532389e-05	3.72679047838e-05	1.99703723948e-05
+UniRef50_A5CSI8	Argininosuccinate lyase	4.7338225616e-06	0.00627576491785	0.00627103109529
+UniRef50_Q82Z40	DNA directed RNA polymerase subunit beta	0.0072572200655	0.005897493267	-0.0013597267985
+UniRef50_I4YRS4	Replication protein C	8.03090426695e-05	1.43582989626e-05	-6.59507437069e-05
+UniRef50_A5HY11	Spore coat protein	0.000331365286798	0.00154988058338	0.00121851529658
+UniRef50_UPI0003680468	hypothetical protein	7.78512611721e-05	2.78911788629e-05	-4.99600823092e-05
+UniRef50_UPI000392E29D	PREDICTED	2.18805900061e-05	1.37838425997e-05	-8.0967474064e-06
+UniRef50_P37487	Manganese dependent inorganic pyrophosphatase	0.00493600771547	0.00921295754804	0.00427694983257
+UniRef50_Q2NFD4	Flap endonuclease 1	0.00190689529131	0.000185928670631	-0.00172096662068
+UniRef50_P43010	NAD transhydrogenase subunit beta	0.000247026354042	0.00874579628668	0.00849876993264
+UniRef50_A0A037XJH2	Membrane protein	4.92629381754e-05	7.2392851173e-06	-4.20236530581e-05
+UniRef50_UPI000237ADAF	branched chain amino acid ABC transporter ATP binding protein	6.88760517269e-05	8.37878857449e-06	-6.04972631524e-05
+UniRef50_R7PX51	Peptidase M50	0.00558849007108	0.00144300766143	-0.00414548240965
+UniRef50_UPI0003D2B83C	catalase	0.000120029996956	0.000144385632098	2.4355635142e-05
+UniRef50_Q9AC07	NifU like domain protein	0.00409168324117	0.000866501500009	-0.00322518174116
+UniRef50_UPI0004785B50	hypothetical protein	5.22529040024e-05	1.46463247118e-05	-3.76065792906e-05
+UniRef50_I7EPM1	Gamma glutamyltranspeptidase Ggt	0.00136020741089	0.00088002878136	-0.00048017862953
+UniRef50_UPI0004785B1F	LuxR family transcriptional regulator	4.22536934038e-05	0.000995542231388	0.000953288537984
+UniRef50_C9JF41	Transcription cofactor HES 6 	1.55468564229e-05	0.000137167252976	0.000121620396553
+UniRef50_P62423	Phosphoglycerate kinase	0.00179555853644	0.00299905857252	0.00120350003608
+UniRef50_L7WTC3	Lipoprotein	0.00994670720227	0.000675427690666	-0.0092712795116
+UniRef50_G7MAA3		0.000189691451679	0.00313423375231	0.00294454230063
+UniRef50_UPI0003AE3085	PREDICTED	0.000145969244132	4.4634705658e-05	-0.000101334538474
+UniRef50_F7MME9	Radical SAM family protein	3.62424329115e-05	3.30274587994e-05	-3.2149741121e-06
+UniRef50_UPI000367D5BE	hypothetical protein	8.68124865621e-06	1.82511209614e-05	9.56987230519e-06
+UniRef50_T2K0U5	Plasmid replication protein	3.77228265956e-05	6.70767184903e-06	-3.10151547466e-05
+UniRef50_D9QK96	FAD dependent oxidoreductase	1.40727113362e-05	3.7128363778e-06	-1.03598749584e-05
+UniRef50_O67262	Diaminopimelate decarboxylase	1.54228866344e-05	9.96394916168e-05	8.42166049824e-05
+UniRef50_Q9XJJ6	Spanin, inner membrane subunit	0.000838857753003	0.00653054548712	0.00569168773412
+UniRef50_C5IBJ2	RhsA	0.000761381634286	0.000389300886958	-0.000372080747328
+UniRef50_A5VCY9	Polyribonucleotide nucleotidyltransferase	1.45816899375e-05	2.96065127916e-05	1.50248228541e-05
+UniRef50_T1XSM0	Cell shape determinant MreD	0.0115770177727	0.00803400690555	-0.00354301086715
+UniRef50_Q07T82	Protease HtpX homolog	0.00252656485065	0.00108266774844	-0.00144389710221
+UniRef50_Q12A19	Histone deacetylase superfamily	0.00294968877164	0.000600541100723	-0.00234914767092
+UniRef50_F2MQQ8	Tagatose 6 phosphate kinase	0.00763103817039	0.00339285856977	-0.00423817960062
+UniRef50_Q9K1M6		9.04771327611e-05	0.0029869506689	0.00289647353614
+UniRef50_G9P654		0.000211992637469	0.000250870066872	3.8877429403e-05
+UniRef50_A6LY61	AAA ATPase	0.000329615525915	0.000826180358046	0.000496564832131
+UniRef50_P77216		0.00324359650427	0.00158361671743	-0.00165997978684
+UniRef50_P22983	Pyruvate, phosphate dikinase	0.00100711043243	0.00623050255463	0.0052233921222
+UniRef50_UPI000289D44B	AMP dependent synthetase ligase	3.11363157333e-05	2.73178130336e-05	-3.8185026997e-06
+UniRef50_P43712	Malonyl CoA acyl carrier protein transacylase	0.000606724884815	0.0009322051588	0.000325480273985
+UniRef50_R3W3Z9	Regulatory protein BlaR1	0.000423383718283	0.000154347329742	-0.000269036388541
+UniRef50_G7M658		0.000817523306876	0.000385684116258	-0.000431839190618
+UniRef50_B9NM77		0.000917851048195	0.000393339400741	-0.000524511647454
+UniRef50_G9L997	GMP synthase 	0.000126979662922	9.81998749854e-05	-2.87797879366e-05
+UniRef50_U5UNZ2	Cell division protein DivIB	0.00883444999799	0.00343873603891	-0.00539571395908
+UniRef50_UPI0003BCFABD	PREDICTED	1.37276829101e-05	1.20484130898e-05	-1.6792698203e-06
+UniRef50_H8GRZ1		0.000184538064811	0.00441625287451	0.0042317148097
+UniRef50_UPI000252B988	PREDICTED	7.52495179263e-06	6.129126153e-06	-1.39582563963e-06
+UniRef50_P0A9Q3	Aerobic respiration control protein ArcA	0.00209069326909	0.00312937584048	0.00103868257139
+UniRef50_Q62CS2	Conserved domain protein	0.000122481085786	6.6379520224e-05	-5.6101565562e-05
+UniRef50_I7BX60		0.000692922191886	0.000439246632237	-0.000253675559649
+UniRef50_N8WA96		0.000258967631858	0.00706703195947	0.00680806432761
+UniRef50_Q9ZIG2	Thymidine kinase	1.79794644102e-05	1.08213928046e-05	-7.1580716056e-06
+UniRef50_H8GUV3	GTPase, G3E family	0.000166537936259	0.0192423497852	0.0190758118489
+UniRef50_K9BES8	Type I secretion C terminal target domain protein, VC_A0849 subclass family	8.91442553166e-05	0.00255416038734	0.00246501613202
+UniRef50_U6H4I5		2.7705225072e-05	0.00018278765798	0.000155082432908
+UniRef50_Q8L7B5	Chaperonin CPN60 like 1, mitochondrial	0.0330292442193	0.0614562438329	0.0284269996136
+UniRef50_P37725	Uroporphyrinogen III C methyltransferase	2.24046064489e-05	2.63905492569e-05	3.985942808e-06
+UniRef50_UPI00037CF2DE	hypothetical protein	3.21744569382e-06	0.000439102108772	0.000435884663078
+UniRef50_P76641	Guanine deaminase	0.000680806716102	0.00668236540545	0.00600155868935
+UniRef50_U3TW22	Glycine betaine ABC transporter substrate binding protein	0.00181643860444	0.000558141041216	-0.00125829756322
+UniRef50_UPI000368C576	hypothetical protein	0.000691926137349	0.000116396359191	-0.000575529778158
+UniRef50_Q8AAB1	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.26910642384e-05	4.11822586129e-05	2.84911943745e-05
+UniRef50_Q4L7J6	Sensor protein VraS	0.0172759452698	0.00346547147105	-0.0138104737987
+UniRef50_P39366	Putative aminopeptidase SgcX	0.00314707647034	0.00311622320841	-3.085326193e-05
+UniRef50_UPI00036B883D	hypothetical protein	6.01140992804e-05	3.87656002647e-05	-2.13484990157e-05
+UniRef50_Q9ZE99	Prolipoprotein diacylglyceryl transferase	1.55172015048e-05	1.33995511588e-05	-2.117650346e-06
+UniRef50_P48632	Ferripyoverdine receptor	0.0011528000235	0.000565769953355	-0.000587030070145
+UniRef50_UPI00037AF8F5	50S ribosomal protein L10	0.000197079205272	0.000133012450425	-6.4066754847e-05
+UniRef50_UPI00035D9CD4	hypothetical protein	1.04867074349e-05	2.20535250532e-05	1.15668176183e-05
+UniRef50_Q73DE0	Quinol oxidase subunit 2	5.8386679675e-05	0.000347431417872	0.000289044738197
+UniRef50_G6XJ67		6.98003965453e-06	2.49942494553e-05	1.80142098008e-05
+UniRef50_UPI00016C3B3C	autotransporter associated beta strand repeat protein, partial	4.05438320609e-05	4.23918719097e-06	-3.63046448699e-05
+UniRef50_P56453	Glycine  tRNA ligase alpha subunit	0.0011651247949	0.00370800724976	0.00254288245486
+UniRef50_A6M1U7	Transcriptional regulator, GntR family	0.000642529342721	0.00160126541707	0.000958736074349
+UniRef50_X5DX47	Bacterial regulatory s, tetR family protein	0.00940476762368	0.00142347219139	-0.00798129543229
+UniRef50_F8HGF9		0.00822854273072	0.0236089422457	0.015380399515
+UniRef50_UPI0004719644	phosphoenolpyruvate carboxykinase	2.72049244395e-05	0.0001159383943	8.87334698605e-05
+UniRef50_UPI000255D4C6	ferredoxin NADP reductase subunit alpha	9.04421235478e-05	0.00017960068757	8.91585640222e-05
+UniRef50_UPI000262CC71	mannose 1 phosphate guanyltransferase	2.66215683657e-05	1.18020487549e-05	-1.48195196108e-05
+UniRef50_A4X0F9		0.00169373056156	0.000671174329992	-0.00102255623157
+UniRef50_G7U4K0	Hydrolase, NUDIX family protein	0.000256212209626	0.00550827275118	0.00525206054155
+UniRef50_W0T788		7.92680359609e-06	6.59641250591e-05	5.8037321463e-05
+UniRef50_K1ER07	Major facilitator transporter	0.000176768395805	3.61346748635e-05	-0.000140633720942
+UniRef50_A7X202	Nuclease SbcCD subunit D	0.0246215119242	0.00570094479188	-0.0189205671323
+UniRef50_U6AXU2	ABC transporter, periplasmic spermidine putrescine binding protein PotD	0.00181530426283	0.00122363040151	-0.00059167386132
+UniRef50_Q1MRB9	ATP synthase subunit alpha	0.000601431102195	0.00588077105119	0.00527933994899
+UniRef50_Q4L700	UPF0758 protein SH1266	0.0162152868427	0.00220835798357	-0.0140069288591
+UniRef50_G7U594	Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	9.66261063593e-05	0.00576842997014	0.00567180386378
+UniRef50_UPI000479001A	uridine kinase	9.89054462057e-06	0.000256250654091	0.00024636010947
+UniRef50_F3KRZ8		7.5192958706e-05	2.62319045263e-05	-4.89610541797e-05
+UniRef50_R5Q800		0.0026269996782	0.000794912925284	-0.00183208675292
+UniRef50_K0HYU5		0.000671378910635	0.0114090895128	0.0107377106022
+UniRef50_T9BKY3	Xanthine dehydrogenase accessory factor	0.000167955557231	3.0107772009e-05	-0.000137847785222
+UniRef50_A4WZ55	Heme A synthase	0.00596508311088	0.000570587245925	-0.00539449586496
+UniRef50_F7XW34	30S ribosomal protein S1	0.0119959516228	0.00464029319678	-0.00735565842602
+UniRef50_V5WF15	Oligopeptide transport system permease protein OppB	0.000765516270981	0.00116422200583	0.000398705734849
+UniRef50_N3GRF4	Type VII secretion system , usher family protein	0.00109103283534	0.000556554468458	-0.000534478366882
+UniRef50_D0WC80		2.55406071133e-05	0.000349879066668	0.000324338459555
+UniRef50_P0ACI5	Xylose operon regulatory protein	0.00393616738578	0.000305238942662	-0.00363092844312
+UniRef50_Q60151	Glutathione reductase	0.00601246333006	0.00593158841279	-8.087491727e-05
+UniRef50_P20370	4 carboxymuconolactone decarboxylase	3.76687772533e-05	0.000275436083939	0.000237767306686
+UniRef50_A4XU74	Elongation factor P	0.00127242468152	9.74772781063e-05	-0.00117494740341
+UniRef50_S5Y8U0	Glyoxalase bleomycin resistance protein dioxygenase	0.0003380471542	0.000831878042813	0.000493830888613
+UniRef50_A5FMG2	Leucine  tRNA ligase	6.00887002074e-06	2.15704384974e-06	-3.851826171e-06
+UniRef50_D4HCU9	Cysteine rich domain protein	0.000577784676811	0.00635551188357	0.00577772720676
+UniRef50_Q75AN4	ADL112Wp	0.000287009044144	0.00014151430695	-0.000145494737194
+UniRef50_UPI00047A0692	hypothetical protein	3.33296290105e-05	5.88666255555e-05	2.5536996545e-05
+UniRef50_Q0TLW2	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	7.96110222257e-05	5.46533636745e-05	-2.49576585512e-05
+UniRef50_Q21Y74	Penicillin amidase	0.000445437462131	8.43762014861e-05	-0.000361061260645
+UniRef50_A4WV32		0.000827774426284	0.000980244008616	0.000152469582332
+UniRef50_UPI0002489B60	hemolysin type calcium binding region	2.20736930467e-05	3.08847668455e-05	8.8110737988e-06
+UniRef50_I6SV43		0.00270985826164	0.00488969432594	0.0021798360643
+UniRef50_UPI00037DDE2A	hypothetical protein	1.31876817892e-05	2.35911233374e-05	1.04034415482e-05
+UniRef50_A6M0W1		0.00036734713342	0.00117287919229	0.00080553205887
+UniRef50_Q9CHL8	Multidrug resistance ABC transporter ATP binding and permease protein	3.79380803442e-05	3.45257736482e-05	-3.412306696e-06
+UniRef50_A3M5M9	Aldehyde dehydrogenase	0.00161779709507	0.000892788613137	-0.000725008481933
+UniRef50_B7MT79	Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor]	0.0039868811774	0.00216231605159	-0.00182456512581
+UniRef50_Q8A2T6	S adenosylmethionine synthase	4.6309620919e-05	0.00418181746631	0.00413550784539
+UniRef50_Q87ZG4	Non homologous end joining protein Ku	0.000463098809869	0.000811031327626	0.000347932517757
+UniRef50_A0A023S0C8	Long chain fatty acid transporter	0.000438197115076	0.0180022572371	0.017564060122
+UniRef50_Q1MPL2	Porphobilinogen deaminase	9.6689147599e-06	9.77905084099e-06	1.1013608109e-07
+UniRef50_C2RB76	Glyoxalase	8.86165257367e-06	0.000237838957205	0.000228977304631
+UniRef50_A6LTD1		0.000435560756373	0.000434289272355	-1.271484018e-06
+UniRef50_Q5HFS5	Tyrosine recombinase XerD	0.00872999922707	0.00152204699815	-0.00720795222892
+UniRef50_K8NEW5		9.11216619719e-05	0.000150873625599	5.97519636271e-05
+UniRef50_H6NGS7	Glutamine ABC transporter substrate binding protein	0.000335140754847	0.000285330149942	-4.9810604905e-05
+UniRef50_Q5HKU1	Arginine repressor	0.0125086002255	0.00740974031135	-0.00509885991415
+UniRef50_E8QXQ6	Magnesium protoporphyrin chelatase, putative	2.25699950721e-05	0.000313866754202	0.00029129675913
+UniRef50_D3D6E8		5.46359858431e-05	9.98706445071e-06	-4.46489213924e-05
+UniRef50_P12011	Gluconokinase	0.0141270022645	0.00249369216922	-0.0116333100953
+UniRef50_UPI0004111510	hypothetical protein	3.64522810078e-06	9.41683890714e-06	5.77161080636e-06
+UniRef50_G7M433	Transglutaminase domain containing protein	0.00110825846102	0.00134472761166	0.00023646915064
+UniRef50_UPI00042062D8	hypothetical protein	5.58610110711e-06	3.26864189117e-05	2.71003178046e-05
+UniRef50_B0UDK8	Light independent protochlorophyllide reductase iron sulfur ATP binding protein	0.0127444497704	0.00104203776195	-0.0117024120084
+UniRef50_C2ZDZ0		9.33091993623e-05	0.000183616604275	9.03074049127e-05
+UniRef50_Q8CWX8	Signal recognition particle receptor FtsY	0.00453225023052	0.00248380827919	-0.00204844195133
+UniRef50_Q6F9W0	DNA mismatch repair protein MutL	5.81045647247e-05	0.0086032855284	0.00854518096368
+UniRef50_UPI000255B291	ribosomal large subunit pseudouridine synthase A	4.39709536948e-06	4.57035153459e-06	1.7325616511e-07
+UniRef50_E6SIA9	5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase	0.000370977058843	0.0443345427276	0.0439635656688
+UniRef50_UPI00037DBD2E	hypothetical protein	0.00194805508597	0.000456675317307	-0.00149137976866
+UniRef50_UPI0002EC1AE8	hypothetical protein	3.36831035119e-06	0.000110842792958	0.000107474482607
+UniRef50_UPI0003A0F247	30S ribosomal protein S13	4.29788998148e-05	0.000257430416149	0.000214451516334
+UniRef50_G2ZGH2	Gyrase B 	4.84374055578e-05	8.62020229093e-06	-3.98172032669e-05
+UniRef50_UPI000465F37A	ABC transporter	1.63858586201e-05	4.28736713038e-05	2.64878126837e-05
+UniRef50_Q8DV69		0.0159086476172	0.000363839883189	-0.015544807734
+UniRef50_D2N5G1	LysM domain protein	0.0103363034143	0.00315116686925	-0.00718513654505
+UniRef50_F9NYN4	Conserved domain protein	1.42849738216e-05	2.87807051516e-05	1.449573133e-05
+UniRef50_Q219F8	Peptidyl tRNA hydrolase	7.23210324156e-05	3.35713450462e-05	-3.87496873694e-05
+UniRef50_A9LZL8	Type II restriction endonuclease	0.000117474892792	0.0022743775068	0.00215690261401
+UniRef50_S4AF74		4.46418878164e-05	1.12982766285e-05	-3.33436111879e-05
+UniRef50_F4FDU4		3.04192586597e-05	0.000197821328162	0.000167402069502
+UniRef50_Q932N6		0.000754306752964	0.000220760383266	-0.000533546369698
+UniRef50_D2NSF8		3.07909073336e-05	0.000426455262018	0.000395664354684
+UniRef50_M0TB60		8.67765209201e-05	0.000416504302426	0.000329727781506
+UniRef50_B4RCU4	Ribonuclease 3	1.56741382206e-05	1.17962455336e-05	-3.877892687e-06
+UniRef50_A0A017HMU6	Secreted hemolysin type calcium binding protein bacteriocin, putative	1.19910626612e-06	2.75352645637e-06	1.55442019025e-06
+UniRef50_R1DNP7		5.59780954246e-05	4.25736197387e-05	-1.34044756859e-05
+UniRef50_UPI0003B5DB85	hypothetical protein, partial	6.99021298875e-06	8.66887360839e-06	1.67866061964e-06
+UniRef50_W6IYR1	Auxin binding protein	7.0033383238e-06	3.17342072226e-05	2.47308688988e-05
+UniRef50_Q0TMI0	tRNA lysidine synthase	0.000442540974491	0.000714828076404	0.000272287101913
+UniRef50_B8GQB0	Flagellar hook capping protein	7.84049383311e-06	1.22582275171e-05	4.41773368399e-06
+UniRef50_UPI00039DC1E4	3 oxoadipate enol lactonase	9.83179082138e-06	3.81141198949e-05	2.82823290735e-05
+UniRef50_U5MQD6	TIGR03943 family protein	0.000833451241271	0.00141981968315	0.000586368441879
+UniRef50_P0A913	Peptidoglycan associated lipoprotein	0.00203267977688	0.00110657623782	-0.00092610353906
+UniRef50_B4TF25	Nitric oxide reductase FlRd NAD reductase	0.00421109277935	0.00116223282026	-0.00304885995909
+UniRef50_R9BBW4	HAE1 family hydrophobic amphiphilic exporter 1 	0.000234597045345	0.00730659950531	0.00707200245997
+UniRef50_L7WTZ4		0.0134312978767	0.00331779071393	-0.0101135071628
+UniRef50_B4R909		0.000114209820231	4.5341666563e-05	-6.8868153668e-05
+UniRef50_UPI0003B6B13E	ABC transporter permease	0.000122793294573	1.87966287625e-05	-0.00010399666581
+UniRef50_V1XPG8		0.000460879377242	0.000179924051069	-0.000280955326173
+UniRef50_B9DXX3		0.000424355854593	0.00372440498799	0.0033000491334
+UniRef50_P0A1Q3	Lactoylglutathione lyase	0.00010092957212	3.19574935491e-05	-6.89720785709e-05
+UniRef50_Q3HKI1	Possible replication protein C	0.0399137244924	0.00949697881737	-0.030416745675
+UniRef50_K9YB57	PUCC protein	2.71051295482e-05	1.07896829135e-05	-1.63154466347e-05
+UniRef50_UPI00036A764A	hypothetical protein	3.0617160072e-05	3.25853016508e-05	1.9681415788e-06
+UniRef50_W4KF41		7.81686305015e-05	6.11403854125e-05	-1.7028245089e-05
+UniRef50_Q13BG6	NADH quinone oxidoreductase subunit K	0.000126163005581	2.94459071699e-05	-9.67170984111e-05
+UniRef50_UPI00029CB7E1	hypothetical protein, partial	0.000852323929784	0.00231825727847	0.00146593334869
+UniRef50_UPI00037A794A	hypothetical protein	1.14358175463e-05	1.80487944072e-05	6.6129768609e-06
+UniRef50_W4KF45		6.09956871518e-06	1.06557100331e-05	4.55614131792e-06
+UniRef50_UPI00037E1072	hypothetical protein	5.08539077618e-05	9.81698492146e-06	-4.10369228403e-05
+UniRef50_D8NYU1		3.12001958753e-05	2.79900684554e-05	-3.2101274199e-06
+UniRef50_V6L4N0		1.05994254609e-05	1.46478400054e-05	4.0484145445e-06
+UniRef50_O27710	Phosphosulfolactate synthase	0.00333280018207	0.00108925824294	-0.00224354193913
+UniRef50_A1BCD3		0.00240814851133	0.000352968173539	-0.00205518033779
+UniRef50_UPI00047DD048	glucose 6 phosphate dehydrogenase	3.38520627299e-06	5.29182485174e-06	1.90661857875e-06
+UniRef50_G2TC10	ChaC like protein	1.10700891022e-05	1.97799130966e-05	8.7098239944e-06
+UniRef50_G8S496	Replication associated recombination protein A	8.17069239939e-05	0.00643759371496	0.00635588679097
+UniRef50_D6YPZ0	47 kDa protein	8.60285291717e-06	1.00515693978e-05	1.44871648063e-06
+UniRef50_UPI0004784B81	phosphoesterase	1.3258339726e-05	1.48909011993e-05	1.6325614733e-06
+UniRef50_Q1IYN8		0.000536111567746	0.00980643409211	0.00927032252436
+UniRef50_UPI00025577F3	hydrogenase nickel insertion protein HypA	0.000209432980981	4.6966614284e-05	-0.000162466366697
+UniRef50_UPI0003B54717	hydantoinase	3.88075202029e-06	6.94634257532e-06	3.06559055503e-06
+UniRef50_UPI000463C9AE	carboxypeptidase	1.13171730167e-05	5.38259837921e-06	-5.93457463749e-06
+UniRef50_O43895	Xaa Pro aminopeptidase 2	4.72134874094e-06	2.81932979345e-05	2.34719491936e-05
+UniRef50_UPI00036806EE	hypothetical protein	4.96339050416e-05	0.000199211097749	0.000149577192707
+UniRef50_UPI000262636B	DNA gyrase subunit A	2.58771086859e-06	3.40799692556e-06	8.2028605697e-07
+UniRef50_F4FTG4	Galactonate dehydratase	0.000108890189088	0.00151581581718	0.00140692562809
+UniRef50_S5GEI0	Catecholate siderophore receptor CirA	0.00054048556745	0.000108705535652	-0.000431780031798
+UniRef50_A6LR14	Heavy metal translocating P type ATPase	0.000399984267679	0.0012763435474	0.000876359279721
+UniRef50_C4J951		4.39847392415e-05	0.00183861138937	0.00179462665013
+UniRef50_D2Q478	Spermidine synthase like protein	8.58804900762e-06	3.33284292898e-05	2.47403802822e-05
+UniRef50_C6DEY0	RNA polymerase associated protein RapA	0.00150987729449	0.000199485169109	-0.00131039212538
+UniRef50_UPI0004692C05	hydrogenase	0.000138993631686	8.93476370612e-05	-4.96459946248e-05
+UniRef50_Q3JT43		0.000138310262633	3.09381373665e-05	-0.000107372125267
+UniRef50_B9KVR7	Transcriptional regulator, MerR family	0.0226956087143	0.00560804043464	-0.0170875682797
+UniRef50_B2KEK1	Adenylate kinase	9.98002542441e-06	2.25091531795e-05	1.25291277551e-05
+UniRef50_Q46855		0.00279434620188	0.00180938255289	-0.00098496364899
+UniRef50_UPI0003A592DF	transcriptional regulator	0.000191478620933	3.37712280436e-05	-0.000157707392889
+UniRef50_P04816	Leucine specific binding protein	0.00456776130769	0.00159741202639	-0.0029703492813
+UniRef50_M3G6K7	Mg transport ATPase protein C	0.00049347560123	0.00412996962068	0.00363649401945
+UniRef50_S6DCW1		0.000183327125707	0.000216796944823	3.3469819116e-05
+UniRef50_B9KL47	Protein tyrosine phosphatase	0.0214966044989	0.00248772224485	-0.0190088822541
+UniRef50_Q7VZ05	Tryptophan  tRNA ligase	0.00139914842629	0.000455783882222	-0.000943364544068
+UniRef50_Q5HEB2	Cardiolipin synthase 2	0.0239397309071	0.00816247351671	-0.0157772573904
+UniRef50_X5K4N5	Membrane protein, putative	8.65793552431e-05	0.000130382651297	4.38032960539e-05
+UniRef50_W4TSQ7		0.000251754755085	0.000310320057551	5.8565302466e-05
+UniRef50_W4TSQ5		0.000340756501337	0.00531958090506	0.00497882440372
+UniRef50_Q9I048	tRNA dihydrouridine synthase A	0.000841950817805	0.000245950323951	-0.000596000493854
+UniRef50_E0Q484		0.000242521057489	2.86299041271e-06	-0.000239658067076
+UniRef50_UPI000375D23B	hypothetical protein, partial	5.50613882311e-05	0.000212718448872	0.000157657060641
+UniRef50_Q83J60	HTH type transcriptional regulator DctR	0.00109287248752	0.000855990449842	-0.000236882037678
+UniRef50_B4EY85	DnaA regulatory inactivator Hda	0.00442248171812	0.000772455356727	-0.00365002636139
+UniRef50_UPI000471D4BC	hypothetical protein, partial	8.57598592947e-06	7.18395561893e-06	-1.39203031054e-06
+UniRef50_M1MLW2	dTDP glucose 4,6 dehydratase 2	0.000242514144524	0.00153846359622	0.0012959494517
+UniRef50_UPI00047D17AA	hypothetical protein	1.4157799109e-05	8.12347972273e-06	-6.03431938627e-06
+UniRef50_H8GSQ0	VanW like protein	8.55330790492e-05	0.0171574523692	0.0170719192902
+UniRef50_A5EY11	Ribosomal RNA small subunit methyltransferase H	1.5825019865e-05	9.33228205619e-06	-6.49273780881e-06
+UniRef50_UPI000470B3CF	ribosome binding factor A	2.11426364671e-05	6.80882719153e-05	4.69456354482e-05
+UniRef50_A3PR72	Binding protein dependent transport systems inner membrane component	0.00308811386997	0.000800360338922	-0.00228775353105
+UniRef50_Q1INX8	DGPFAETKE domain protein	2.77849700215e-05	2.41196122496e-05	-3.6653577719e-06
+UniRef50_UPI000365E142	hypothetical protein	9.86995092907e-06	1.96945478338e-05	9.82459690473e-06
+UniRef50_UPI00037A3857	helicase	2.71397631932e-06	6.1906767045e-06	3.47670038518e-06
+UniRef50_UPI0003B7A6B2	branched chain amino acid ABC transporter ATP binding protein	9.71799392539e-06	1.28538573967e-05	3.13586347131e-06
+UniRef50_K0C423	MaoC like dehydratase	4.10710811275e-05	2.44621592625e-05	-1.6608921865e-05
+UniRef50_G8LZB4		4.68915684868e-05	4.76521239978e-05	7.60555511e-07
+UniRef50_A0A009XXP0	RecF RecN SMC N terminal domain protein	3.28534367999e-05	0.000492552110271	0.000459698673471
+UniRef50_P26266	Ferric enterobactin transport protein FepE	0.00199100890319	0.00161339547218	-0.00037761343101
+UniRef50_E9AEN0	Proteophosphoglycan ppg1	1.80671612417e-06	2.43313345527e-05	2.25246184285e-05
+UniRef50_B2KCN5	Dihydroorotase	1.8650369405e-05	6.00951168899e-06	-1.2640857716e-05
+UniRef50_UPI00024929D9	putative N acylamino acid racemase	1.47927670904e-05	0.000536841179644	0.000522048412554
+UniRef50_G4U7X4		1.33251904412e-06	1.38176042095e-06	4.924137683e-08
+UniRef50_UPI00039427DC	phosphatase	8.28397872105e-06	1.98525445273e-05	1.15685658062e-05
+UniRef50_UPI0003B3863F	carboxynorspermidine decarboxylase	3.09783952287e-05	3.88751230482e-05	7.8967278195e-06
+UniRef50_UPI00047C82E1	hypothetical protein	1.44520122436e-05	0.00344715948779	0.00343270747555
+UniRef50_X1KVA0	Marine sediment metagenome DNA, contig	8.86410354113e-06	3.61719251499e-05	2.73078216088e-05
+UniRef50_E3E7X0	Formate dehydrogenase, alpha subunit	0.000391748896025	0.00193325895473	0.0015415100587
+UniRef50_N6V3N6	Sulfate transporter	0.000233868521761	7.22879104881e-05	-0.000161580611273
+UniRef50_R6HNH6		8.60836599321e-05	4.46689868421e-05	-4.141467309e-05
+UniRef50_D3QF31	Phosphohydrolase, Icc family	0.0136169009713	0.00220175929637	-0.0114151416749
+UniRef50_UPI0004163F11	quinone oxidoreductase	6.62639838732e-06	6.93976101315e-05	6.27712117442e-05
+UniRef50_B1ZSZ2	Phosphate transporter	0.000902655575258	0.0748742055766	0.0739715500013
+UniRef50_Q6A8L4	Histidinol phosphate aminotransferase	0.000100662930362	0.0064710586767	0.00637039574634
+UniRef50_G9ZDV2		5.34013212348e-05	5.15260477059e-05	-1.8752735289e-06
+UniRef50_V4I6Z5	Phenylacetate CoA oxygenase subunit PaaA	0.000144815596745	0.00575190871803	0.00560709312128
+UniRef50_UPI00037394E3	hypothetical protein	2.44302591315e-05	7.14735209376e-06	-1.72829070377e-05
+UniRef50_UPI00037AD4AC	hypothetical protein	5.84966394976e-06	3.05808327101e-05	2.47311687603e-05
+UniRef50_U5MNP0		0.000236279194446	0.00169861027446	0.00146233108001
+UniRef50_R9SMA4	Cell wall biosynthesis protein Mur ligase family	0.00186229519288	0.000131251868968	-0.00173104332391
+UniRef50_UPI000376DBC0	hypothetical protein	0.000139560472831	2.93584994025e-05	-0.000110201973428
+UniRef50_Q47083	HTH type transcriptional regulator cbl	0.00312781552367	0.00095501936351	-0.00217279616016
+UniRef50_U4TH79		0.00418600848012	0.000476317266442	-0.00370969121368
+UniRef50_F4DVS4	Periplasmic binding protein	0.000150994395537	0.000847619051331	0.000696624655794
+UniRef50_P0ABX0	Flagellar basal body rod protein FlgB	0.000822618361401	0.000427995224921	-0.00039462313648
+UniRef50_A0A059DWP9		2.75809257042e-05	1.79851733549e-05	-9.5957523493e-06
+UniRef50_Z8B9P7		0.0144565389511	0.0028962080146	-0.0115603309365
+UniRef50_UPI00037E3FD0	hypothetical protein	1.70123333366e-05	2.15335157468e-05	4.5211824102e-06
+UniRef50_A4GAA6	ABC transporter, permease component	0.00953114606574	0.0017456209993	-0.00778552506644
+UniRef50_P52642	UDP N acetylglucosamine 2 epimerase	0.00034076456275	0.00612892928251	0.00578816471976
+UniRef50_UPI0004703E7C	hypothetical protein, partial	5.75760551305e-06	4.85529950903e-05	4.27953895773e-05
+UniRef50_UPI00029A41E2	hypothetical protein	1.1891837283e-05	1.37626696677e-05	1.8708323847e-06
+UniRef50_UPI000375C1B4	hypothetical protein	1.40226852773e-05	3.81888269298e-05	2.41661416525e-05
+UniRef50_B5E972	NADH quinone oxidoreductase subunit B C D	9.75325627698e-06	3.47281700506e-05	2.49749137736e-05
+UniRef50_I3R6R8	Branched chain amino acids ABC transporter permease,azaleucine resistance protein	5.2676726555e-05	8.01865116547e-05	2.75097850997e-05
+UniRef50_N6UXN6	Putative secreted adhesin	1.07169251094e-05	5.47112903536e-06	-5.24579607404e-06
+UniRef50_Q28MM7	Phosphorylase	0.0106124843879	0.00228406714962	-0.00832841723828
+UniRef50_A3M6U7	CsuD	0.000186701138799	0.00411483172854	0.00392813058974
+UniRef50_Q0FEW4	Cation transport protein ChaC, putative	6.16379579696e-06	2.7587423158e-05	2.1423627361e-05
+UniRef50_UPI0002C30275	PREDICTED	7.11700882617e-06	5.88617774061e-06	-1.23083108556e-06
+UniRef50_F3G839		1.43903178701e-05	1.21358788339e-05	-2.2544390362e-06
+UniRef50_B9J7K1		7.82720989392e-05	4.7223456485e-05	-3.10486424542e-05
+UniRef50_M4R0D2	Glycosyltransferase	0.000191942028225	0.00674051719041	0.00654857516218
+UniRef50_U3TVU1		0.000137248050342	0.00121795579043	0.00108070774009
+UniRef50_X3W353	Enterobactin synthase subunit F	0.00320173908992	0.00101765042506	-0.00218408866486
+UniRef50_U6BEE8	Cytochrome D ubiquinol oxidase subunit I	0.0237706751042	0.00645331091147	-0.0173173641927
+UniRef50_Q15RL2	Electron transport complex subunit D	0.00348986666908	0.000179888348343	-0.00330997832074
+UniRef50_R4ZIA7	Cell surface protein	0.000241904160026	7.6705637713e-05	-0.000165198522313
+UniRef50_A5ULR0	Cobalamin synthase	0.00334042009846	0.000495172963909	-0.00284524713455
+UniRef50_B9DY53	Transcription repair coupling factor	0.000762288352078	0.00127080506178	0.000508516709702
+UniRef50_Q48K36	Potassium transporting ATPase B chain	0.000239370461106	0.000201415116304	-3.7955344802e-05
+UniRef50_Q2NG20	Predicted multimeric flavodoxin	0.00439068691512	0.000370690424931	-0.00401999649019
+UniRef50_D2ZS60		0.00298471826539	0.000368664155221	-0.00261605411017
+UniRef50_A5UM77		0.00189017537927	0.00150589104918	-0.00038428433009
+UniRef50_UPI0003B68375	50S ribosomal protein L22	1.13117758353e-05	3.31207577631e-05	2.18089819278e-05
+UniRef50_Q11H35		0.000334548449671	7.5148268371e-05	-0.0002594001813
+UniRef50_Q1QC36	Urease subunit alpha 2	5.43904531355e-06	1.67095423867e-05	1.12704970732e-05
+UniRef50_J9NYD9		1.26550674652e-05	2.83646142146e-05	1.57095467494e-05
+UniRef50_L0A4U7	Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED	0.000178903312256	0.0407501413074	0.0405712379951
+UniRef50_UPI00035D30E0	hypothetical protein	0.000153109085598	4.88253577022e-05	-0.000104283727896
+UniRef50_Q8YNJ3	Phosphate import ATP binding protein PstB 3	2.3217171075e-05	0.000200226041529	0.000177008870454
+UniRef50_UPI0003B49864	transporter	3.32651286779e-06	0.000401553268179	0.000398226755311
+UniRef50_A9WS29		1.96216499744e-05	9.10210365788e-05	7.13993866044e-05
+UniRef50_UPI000363E420	hypothetical protein	0.000157147688443	0.0002182730407	6.1125352257e-05
+UniRef50_A0RKD1	Possible membrane protein	0.00021049404583	0.000731758892311	0.000521264846481
+UniRef50_Q9HX91		0.00121256810956	0.000883428226811	-0.000329139882749
+UniRef50_D9UD16	Predicted protein	5.59763855716e-05	0.000801297103416	0.000745320717844
+UniRef50_P45428	Putative cryptic C4 dicarboxylate transporter DcuD	0.00239335129304	0.00110588297413	-0.00128746831891
+UniRef50_X6M7B3		9.85296333479e-07	1.9042138687e-06	9.18917535221e-07
+UniRef50_A1TZP8	Type IV pilus biogenesis stability protein PilW	5.09730254437e-06	9.2477889228e-06	4.15048637843e-06
+UniRef50_T1VWL4	Oligopeptide dipeptide ABC transporter ATPase subunit	0.000564404081815	0.00473751438551	0.00417311030369
+UniRef50_Q2YW86	D specific D 2 hydroxyacid dehydrogenase	0.00779483233244	0.000235625030732	-0.00755920730171
+UniRef50_T1Z3D7		0.00633034572464	0.00546534763075	-0.00086499809389
+UniRef50_H2HHM8		0.000109235507514	0.00526814967935	0.00515891417184
+UniRef50_UPI00040D05AB	hypothetical protein	8.21528884891e-06	8.8296773994e-06	6.1438855049e-07
+UniRef50_UPI0003A7F193	sulfate	2.95718148604e-06	5.01938378018e-06	2.06220229414e-06
+UniRef50_UPI000465E42E	hypothetical protein	1.11607215592e-05	0.000115486902692	0.000104326181133
+UniRef50_K9NK52	Putrescine binding periplasmic protein	0.000761787438696	0.000350939072136	-0.00041084836656
+UniRef50_T3GIH5	AAA domain family protein	0.000333344154562	0.000333680751748	3.36597186e-07
+UniRef50_UPI00040C7D51	hypothetical protein	4.19618720203e-05	7.79637473166e-06	-3.41654972886e-05
+UniRef50_UPI0003634400	hypothetical protein	0.000123344510752	1.27924486504e-05	-0.000110552062102
+UniRef50_Q1Q8K4	Phosphate import ATP binding protein PstB	1.86412917012e-05	0.000237219767078	0.000218578475377
+UniRef50_A6LUQ8	Phosphotransferase system, EIIC	8.3391602835e-05	0.00133180116422	0.00124840956139
+UniRef50_Q01244	Yop proteins translocation protein C	0.000546498721004	0.000117969389561	-0.000428529331443
+UniRef50_X2HA66	Macrolide specific efflux protein MacA	0.000141028389365	0.0059816485191	0.00584062012974
+UniRef50_D7JTM0	Predicted protein	0.000118614241335	0.000305157177599	0.000186542936264
+UniRef50_V9G8C1	Transketolase	3.37823824328e-05	3.04965106184e-05	-3.2858718144e-06
+UniRef50_D1BYT2	Succinyl diaminopimelate desuccinylase	0.000153657797359	0.00473699729004	0.00458333949268
+UniRef50_UPI0003803CC2	hypothetical protein	3.25841139817e-06	0.000663188510564	0.000659930099166
+UniRef50_U7PWZ9		1.31086609446e-05	3.81991450591e-05	2.50904841145e-05
+UniRef50_I6F1W3		7.74994548266e-05	7.58064904667e-05	-1.6929643599e-06
+UniRef50_L1J0A5		1.80092600248e-06	1.54888823019e-06	-2.5203777229e-07
+UniRef50_K8F0R0	Internalin J	4.96092509334e-06	3.08413378543e-05	2.5880412761e-05
+UniRef50_B9E249		0.000782305421019	0.000685955355659	-9.635006536e-05
+UniRef50_D2UPM2	SdrD protein 	0.000530444391198	0.000405739173213	-0.000124705217985
+UniRef50_Q9I2W4	Uroporphyrinogen III C methyltransferase	0.000863346591525	3.61568103094e-05	-0.000827189781216
+UniRef50_E4QDT6		0.000176120990128	0.000656002864533	0.000479881874405
+UniRef50_P52086	Alpha ribazole phosphatase	0.00191958373824	0.000754223859081	-0.00116535987916
+UniRef50_UPI00047E8AFF	hypothetical protein	5.93958941323e-06	2.37004531963e-05	1.77608637831e-05
+UniRef50_T0NEN1	Seg	5.89943200075e-05	0.000113229994581	5.42356745735e-05
+UniRef50_Q8Y4A9	Release factor glutamine methyltransferase	9.20958647924e-06	0.00212814190296	0.00211893231648
+UniRef50_UPI0004711AD3	type II secretion system protein F	3.43188022232e-06	5.94428875025e-06	2.51240852793e-06
+UniRef50_C6XQ34	Prephenate dehydratase	0.00121129334836	0.0023370329872	0.00112573963884
+UniRef50_P27128	Lipopolysaccharide 1,3 galactosyltransferase	0.0013450564653	0.00044835808033	-0.00089669838497
+UniRef50_W0YR49	Acetoacetyl CoA synthetase	0.000260600540258	9.15237722678e-05	-0.00016907676799
+UniRef50_UPI0004675627	molybdopterin guanine dinucleotide biosynthesis protein A	7.22964941464e-06	2.09672965228e-05	1.37376471082e-05
+UniRef50_UPI00046465E7	hypothetical protein	0.00017279702682	2.20393258775e-05	-0.000150757700943
+UniRef50_S6AM82		0.000534272929636	0.000666127906449	0.000131854976813
+UniRef50_Q54TC2	Alcohol dehydrogenase class 3	0.000525474010647	0.00609316128661	0.00556768727596
+UniRef50_UPI0003B589A1	cell wall hydrolase	2.00265351458e-05	1.22273679964e-05	-7.7991671494e-06
+UniRef50_C1DMM9	Transcriptional regulator, LysR family	0.000548832102549	0.000578583137367	2.9751034818e-05
+UniRef50_D3PTH4		0.000152007780746	0.00047567791441	0.000323670133664
+UniRef50_Q98457		1.24108099618e-05	2.24871120341e-05	1.00763020723e-05
+UniRef50_S9R6B1	Transcriptional regulator, LysR family	3.63046046953e-05	5.93796545671e-05	2.30750498718e-05
+UniRef50_UPI00047D5268	hypothetical protein	2.33026941308e-05	1.81431292769e-05	-5.1595648539e-06
+UniRef50_A7ZXV0		8.8271932537e-05	9.68592979732e-05	8.5873654362e-06
+UniRef50_A2C536	Bifunctional pantoate ligase cytidylate kinase	3.73425144824e-06	1.6094218651e-05	1.23599672028e-05
+UniRef50_Q83RZ7	Anaerobic dimethyl sulfoxide reductase chain B	0.00461856062089	0.000738291762994	-0.0038802688579
+UniRef50_UPI0004785D8D	hypothetical protein	1.56296548754e-05	1.80036624782e-05	2.3740076028e-06
+UniRef50_UPI0003827A64	hypothetical protein	3.09298301424e-06	5.978815945e-06	2.88583293076e-06
+UniRef50_Q9L646	Anaerobic ribonucleoside triphosphate reductase	0.00326720389651	0.00231418762758	-0.00095301626893
+UniRef50_V7ZGN6	Phosphatidylserine synthase	0.00030606972069	0.000475040276462	0.000168970555772
+UniRef50_UPI000315C43C	hypothetical protein	0.000121239080211	4.45210210708e-05	-7.67180591402e-05
+UniRef50_S9SA83		2.20698226112e-05	0.00011843926272	9.63694401088e-05
+UniRef50_UPI000467D8F5	hypothetical protein, partial	7.08474948132e-06	1.75652842789e-05	1.04805347976e-05
+UniRef50_UPI00037A985E	hypothetical protein	2.51799753303e-05	1.58438342998e-05	-9.3361410305e-06
+UniRef50_UPI00035D529A	hypothetical protein	3.96247719595e-05	1.44225781518e-05	-2.52021938077e-05
+UniRef50_S9SA88		0.000154011607261	0.00037577033466	0.000221758727399
+UniRef50_UPI0004661BBA	hypothetical protein, partial	3.15173760049e-05	1.28135299397e-05	-1.87038460652e-05
+UniRef50_Q38854	1 deoxy D xylulose 5 phosphate synthase, chloroplastic	1.94815225927e-05	8.92550025601e-05	6.97734799674e-05
+UniRef50_Q6GI66	UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.0253182517682	0.00533237024999	-0.0199858815182
+UniRef50_G2IIB3	UPF0301 protein SLG_23610	1.2507684244e-05	1.8413571521e-05	5.905887277e-06
+UniRef50_P23905	D galactose binding periplasmic protein	0.00346274129006	0.000405546712688	-0.00305719457737
+UniRef50_Q022D1		1.74468395316e-05	1.3679974322e-05	-3.7668652096e-06
+UniRef50_Q1J9N5	Para aminobenzoate synthetase component I   4 amino 4 deoxychorismate lyase	0.000134351964319	0.00501592486069	0.00488157289637
+UniRef50_E6TY02	Binding protein dependent transport systems inner membrane component	0.0118491495563	0.0025400799286	-0.0093090696277
+UniRef50_V9UQ05		3.21896031218e-05	1.12221994542e-05	-2.09674036676e-05
+UniRef50_C8NMF6		0.000247477620977	0.000455318714892	0.000207841093915
+UniRef50_A3PKK7		0.000614146619484	0.000514757296004	-9.938932348e-05
+UniRef50_UPI00016C558B	DNA gyrase subunit A	3.408732803e-05	0.000102573196371	6.8485868341e-05
+UniRef50_Q5YWD4	NADH quinone oxidoreductase subunits H I	2.23639858044e-06	3.20873879936e-05	2.98509894132e-05
+UniRef50_UPI00036E3130	hypothetical protein	5.64032516502e-06	1.77651688001e-05	1.21248436351e-05
+UniRef50_UPI0002558195	ABC transporter ATP binding protein, partial	0.000108526225885	1.37063456903e-05	-9.48198801947e-05
+UniRef50_H9JRN0		9.82216877676e-05	0.000320355447479	0.000222133759711
+UniRef50_P52276	Asparagine  tRNA ligase	0.00229198608535	0.00126289788874	-0.00102908819661
+UniRef50_UPI00037E9004	hypothetical protein	4.36198360535e-05	0.000708053883612	0.000664434047558
+UniRef50_X6F5A2	ABC transporter permease	4.58466101908e-06	7.71129394756e-06	3.12663292848e-06
+UniRef50_A9M1A6	Ribosomal RNA small subunit methyltransferase J	0.000452179490217	0.0016001640409	0.00114798455068
+UniRef50_W5HYZ3		8.29032186386e-05	0.000131935981468	4.90327628294e-05
+UniRef50_J9YT00		0.000204046480461	0.000173375756472	-3.0670723989e-05
+UniRef50_P77790	D alanyl D alanine dipeptidase	0.00655190302961	0.000311406016025	-0.00624049701358
+UniRef50_E3GEX1	Glyoxalase	0.000242496352579	0.000381053813154	0.000138557460575
+UniRef50_UPI0003723E28	hypothetical protein	1.41675297315e-05	2.03189561906e-05	6.1514264591e-06
+UniRef50_W6RE07		0.000371618233475	0.000117267073799	-0.000254351159676
+UniRef50_UPI0001913E60	hypothetical protein, partial	0.000534102705541	0.00058528226382	5.1179558279e-05
+UniRef50_Q1Q8J3	Trigger factor	8.49555863898e-05	0.00805462955226	0.00796967396587
+UniRef50_P19066	Nitrogenase molybdenum iron protein alpha chain	0.0144885354579	0.00154395360669	-0.0129445818512
+UniRef50_UPI0002F6860E	hypothetical protein	1.93890810907e-05	0.00116786842418	0.00114847934309
+UniRef50_A6TT61	Biotin synthase	0.000139809625497	0.000846201930427	0.00070639230493
+UniRef50_C1CRY7	S1 RNA binding domain protein	0.00425992736669	0.00559193946457	0.00133201209788
+UniRef50_X1MW22	Marine sediment metagenome DNA, contig	0.000298357384804	7.68121571965e-05	-0.000221545227607
+UniRef50_UPI000470373F	amidophosphoribosyltransferase, partial	1.8198806015e-05	0.000106780516308	8.8581710293e-05
+UniRef50_J8WK23	Type III restriction modification system EcoPI enzyme, subunit res	7.84118886106e-05	0.00314278181702	0.00306436992841
+UniRef50_E3F2Y8	Arsenate reductase like protein	0.000124805804095	7.33712978296e-05	-5.14345062654e-05
+UniRef50_UPI0003B7001D	hypothetical protein	5.73180080942e-05	3.87182781961e-05	-1.85997298981e-05
+UniRef50_B9KXJ4	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	7.66775953251e-06	1.97727214673e-05	1.21049619348e-05
+UniRef50_UPI000379C639	hypothetical protein	1.66630372767e-05	2.95135632112e-05	1.28505259345e-05
+UniRef50_Q6FDX8	Maf like protein ACIAD0829	0.000219044094112	0.0104349213209	0.0102158772268
+UniRef50_B1IMR8	Transposase C for	0.000304424184557	0.00192741751511	0.00162299333055
+UniRef50_UPI0003716807	hypothetical protein	1.20722191403e-05	4.89677230817e-05	3.68955039414e-05
+UniRef50_A1B4U8	Rhs element Vgr protein	0.00305110867345	0.000571627003944	-0.00247948166951
+UniRef50_F0RMF0	Aminomethyltransferase	0.000211064491351	0.046324697242	0.0461136327506
+UniRef50_G5JYJ7	Phosphatidate cytidylyltransferase like protein	0.00448395932219	0.000333691192315	-0.00415026812988
+UniRef50_Q9I4X6	Chaperone CupC2	0.0002066529136	0.00053050905124	0.00032385613764
+UniRef50_UPI0004781EE1	NADH dehydrogenase	3.03663793051e-06	5.73246184821e-05	5.42879805516e-05
+UniRef50_UPI00047C938B	cold shock protein	3.37886871772e-05	2.09617821213e-05	-1.28269050559e-05
+UniRef50_UPI0003B3943C	xanthine CO dehydrogenase maturation protein	3.67234948385e-06	1.56522615145e-05	1.19799120306e-05
+UniRef50_Q13LM2	ABC putrescine transporter, inner membrane subunit PotI	0.000143167884525	0.00310453657663	0.0029613686921
+UniRef50_UPI000289739C	amino acid carrier protein, partial	1.64955637756e-05	0.00092876876301	0.000912273199234
+UniRef50_Q4FMW6	3 methyl 2 oxobutanoate hydroxymethyltransferase	2.88313139591e-05	9.30230463347e-05	6.41917323756e-05
+UniRef50_I4F4V3		6.73437744018e-05	1.8383107134e-05	-4.89606672678e-05
+UniRef50_A0A059ABD6		4.27008770127e-05	3.55776615116e-05	-7.1232155011e-06
+UniRef50_UPI00047AED65	hypothetical protein	1.44619946454e-05	9.36617646108e-05	7.91997699654e-05
+UniRef50_F3ZC19	Putative 3 oxoacyl ACP synthase II	1.75296749475e-06	0.000247177834149	0.000245424866654
+UniRef50_H3F275		0.000198328890814	0.000630033363477	0.000431704472663
+UniRef50_D9SKB5		0.000374986081636	0.000500932806491	0.000125946724855
+UniRef50_A0A023RVI8	Magnesium transporter	0.000301185629405	0.00918823414902	0.00888704851962
+UniRef50_F5M3S4		0.00856842380994	0.000114250158396	-0.00845417365154
+UniRef50_B5F621	Mannonate dehydratase	0.00209359949345	0.00050543648718	-0.00158816300627
+UniRef50_M9VAU8		0.000246722868534	0.00563197060303	0.0053852477345
+UniRef50_UPI000408DFD9	hypothetical protein	3.44769909732e-06	0.000301681764831	0.000298234065734
+UniRef50_P0A130		0.00133204368662	0.000706947747623	-0.000625095938997
+UniRef50_Q3IZJ1		0.00391797543566	0.000214256376199	-0.00370371905946
+UniRef50_B8EFC6	Lipoprotein signal peptidase	1.09586699489e-05	3.61799090311e-05	2.52212390822e-05
+UniRef50_Q8CPS1	Glucose 6 phosphate 1 dehydrogenase	0.00766633030792	0.00100442060216	-0.00666190970576
+UniRef50_UPI0004659DA3	glutamyl tRNA synthetase	7.02323465901e-06	4.23636132906e-06	-2.78687332995e-06
+UniRef50_A6QDY9		0.0114495888984	0.00192582947912	-0.00952375941928
+UniRef50_Q5HLX2	Molybdenum ABC transporter, ATP binding protein ModC	0.0304860752542	0.00623789802915	-0.024248177225
+UniRef50_F4T4M6		0.000405623910255	1.18624748408e-05	-0.000393761435414
+UniRef50_M4YZ38	Mutator protein	0.00254381906842	0.00197047055441	-0.00057334851401
+UniRef50_UPI000473A889	hypothetical protein, partial	2.19733420959e-05	0.000227223392726	0.00020525005063
+UniRef50_M9VKV2	Efflux ABC transporter permease	0.000264238813255	0.0066006347032	0.00633639588995
+UniRef50_UPI000288B881	ABC transporter ATP binding protein	2.73946790058e-05	4.0037731358e-05	1.26430523522e-05
+UniRef50_M7A534	Tex like N terminal domain protein	6.50154837314e-06	0.000321953948561	0.000315452400188
+UniRef50_UPI0002376558	ribose galactose ABC transporterpermease, partial	0.000481395714206	0.00047353849886	-7.857215346e-06
+UniRef50_Q02N09		0.000227401198102	0.0003565191612	0.000129117963098
+UniRef50_Q0K9Q9	Cation multidrug efflux pump	0.000480478171689	0.000427814023884	-5.2664147805e-05
+UniRef50_F0SEF6	Transcriptional regulator, BadM Rrf2 family	3.07672933767e-05	4.82817918505e-05	1.75144984738e-05
+UniRef50_UPI0004788904	glucose 6 phosphate dehydrogenase	4.00982226365e-06	6.27362188813e-06	2.26379962448e-06
+UniRef50_UPI0004434C05	PREDICTED	2.89876910028e-06	7.70846661495e-06	4.80969751467e-06
+UniRef50_UPI0002DB754C	hypothetical protein	1.48669932552e-05	2.31199342946e-05	8.2529410394e-06
+UniRef50_M4MUD1		3.93715181761e-05	0.000366739167718	0.000327367649542
+UniRef50_Q4L9F7	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0113744248511	0.00363708004323	-0.00773734480787
+UniRef50_G8V7N9		0.00022356095159	0.00613739302249	0.0059138320709
+UniRef50_Q023V7	Chorismate synthase	1.31826381159e-05	0.000125872165644	0.000112689527528
+UniRef50_A7BEJ6	LPXTG motif cell wall anchor domain protein	0.000244788292356	0.00229374617795	0.00204895788559
+UniRef50_UPI0003B44F1F	transcriptional regulator	0.000292909441915	6.97460678316e-05	-0.000223163374083
+UniRef50_Q9HTE2		0.000748118971379	0.000353672700827	-0.000394446270552
+UniRef50_Q989G8	Deoxyguanosinetriphosphate triphosphohydrolase like protein 2	0.0152931653212	0.00111396529743	-0.0141792000238
+UniRef50_UPI0004715D8D	alkane 1 monooxygenase	4.88503086336e-06	1.57246154303e-05	1.08395845669e-05
+UniRef50_UPI000289EDA6	GAF sensor hybrid histidine kinase	5.36278806284e-06	0.000247100604107	0.000241737816044
+UniRef50_Q6FCV5	Lipoprotein	0.000781278586898	0.0115673418346	0.0107860632477
+UniRef50_UPI0003F7499C	3 oxoacyl ACP reductase	8.65916829654e-06	4.06237063481e-05	3.19645380516e-05
+UniRef50_UPI0003B3ACCD	ABC transporter permease	0.000148837292117	9.29802496461e-05	-5.58570424709e-05
+UniRef50_P69799	PTS system mannose specific EIIAB component	0.00453439695357	0.000273864023365	-0.00426053293021
+UniRef50_I7DNJ2	Pyruvate carboxylase	0.00631582210675	0.00211157548887	-0.00420424661788
+UniRef50_Q8FHG0	HTH type transcriptional regulator YdeO	0.00259678317979	0.00023815863322	-0.00235862454657
+UniRef50_Q8FBT8	Phosphate specific transport system accessory protein PhoU	0.00336421687162	0.0017583751909	-0.00160584168072
+UniRef50_Q8E4M4		0.0074888439944	0.00157853883591	-0.00591030515849
+UniRef50_UPI0003B6CE98	gas vesicle protein	0.000327849446176	0.000198514041641	-0.000129335404535
+UniRef50_Q9RVY3		0.000817831775596	0.0437856768564	0.0429678450808
+UniRef50_P27238		0.000667859826427	0.000700355822605	3.2495996178e-05
+UniRef50_F0XVM8	Expressed protein 	0.000183035479424	1.61661083112e-05	-0.000166869371113
+UniRef50_UPI00046666B3	maltooligosyl trehalose synthase	3.00394124171e-06	1.99795068666e-06	-1.00599055505e-06
+UniRef50_P11959	Dihydrolipoyl dehydrogenase	0.0120707170418	0.00357307212383	-0.00849764491797
+UniRef50_Q9ZH99	Isocitrate dehydrogenase [NADP]	0.0177947085274	0.0505071278369	0.0327124193095
+UniRef50_D4HEQ0	Phosphofructokinase	0.000321442448304	0.00524117010157	0.00491972765327
+UniRef50_N6YIN7		2.92471219367e-05	1.40525406206e-05	-1.51945813161e-05
+UniRef50_D6M4Q7		7.6348343069e-05	0.000576013143876	0.000499664800807
+UniRef50_E1V3L9		0.000248578436584	0.000174239613579	-7.4338823005e-05
+UniRef50_C6STB9		0.00623048199751	0.00393991603926	-0.00229056595825
+UniRef50_UPI000474260B	DNA gyrase subunit B	2.10075203363e-05	2.83705726897e-05	7.3630523534e-06
+UniRef50_UPI00036EEE9D	hypothetical protein	1.2125159659e-05	1.48645824741e-05	2.7394228151e-06
+UniRef50_G7LZP2	SMC domain protein	0.000100976296509	0.000837118377555	0.000736142081046
+UniRef50_M1WSJ3	Protein CreA	1.25914867791e-05	1.44075415584e-05	1.8160547793e-06
+UniRef50_A6LR21	Binding protein dependent transport systems inner membrane component	0.000149203948168	0.00149618833866	0.00134698439049
+UniRef50_Q9WYT7	Probable transcriptional regulatory protein TM_0466	0.0126217631373	0.00119873009354	-0.0114230330438
+UniRef50_J9P642		1.22827108352e-05	1.58829650154e-05	3.6002541802e-06
+UniRef50_O65396	Aminomethyltransferase, mitochondrial	1.61649018132e-05	6.08946753519e-06	-1.0075434278e-05
+UniRef50_I6U214	Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system	0.00528532609915	0.00209060148228	-0.00319472461687
+UniRef50_U6A7W2	Extracellular Matrix protein PelB	6.35676657784e-06	7.88961355707e-06	1.53284697923e-06
+UniRef50_UPI0003652A76	hypothetical protein, partial	3.47208997701e-05	2.43194607304e-05	-1.04014390397e-05
+UniRef50_UPI0001FFEBC1	alpha dehydro beta deoxy D glucarate aldolase	5.66794851686e-05	0.000387442773627	0.000330763288458
+UniRef50_UPI00047E6581	hypothetical protein	2.78169934413e-06	4.07028030531e-06	1.28858096118e-06
+UniRef50_A7MK41	Ribosomal RNA large subunit methyltransferase H	0.00284209371122	0.00156950570598	-0.00127258800524
+UniRef50_UPI00003793A9	hypothetical protein	0.0158119949092	0.00289894976593	-0.0129130451433
+UniRef50_D9ST52		0.000567908745949	0.000921853242513	0.000353944496564
+UniRef50_R0XB61		0.00868509441421	0.00136832650265	-0.00731676791156
+UniRef50_Q4KEY4	Chitinase	0.000242373475001	0.000790942824762	0.000548569349761
+UniRef50_UPI00035CFB31	hypothetical protein	3.22622799594e-06	1.14221783469e-05	8.19595035096e-06
+UniRef50_A1BBC0	Dihydrodipicolinate synthetase	0.0015038378906	0.000618743774582	-0.000885094116018
+UniRef50_UPI0003606737	hypothetical protein, partial	7.84895808442e-06	7.27858325265e-05	6.49368744421e-05
+UniRef50_P77555	Ureidoglycolate dehydrogenase )	0.00202580429175	0.00139285310958	-0.00063295118217
+UniRef50_B0KQI9	Mammalian cell entry related domain protein	0.00162148323626	6.08574197497e-05	-0.00156062581651
+UniRef50_Q5N7D3		0.00010612648894	2.33360722439e-05	-8.27904166961e-05
+UniRef50_Q6A5B4		0.000269632849186	0.00188150082771	0.00161186797852
+UniRef50_UPI0004729581	aminotransferase	6.15799168942e-06	7.13631583799e-05	6.52051666905e-05
+UniRef50_Q1WSM8	1,4 alpha glucan branching enzyme GlgB	0.000405253999462	0.00222668756542	0.00182143356596
+UniRef50_UPI0002196E5D	biotin biosynthesis protein BioY	1.32949176993e-05	4.57623178041e-05	3.24674001048e-05
+UniRef50_O27236	Methyl coenzyme M reductase I subunit beta	0.00486698395396	0.00243579822391	-0.00243118573005
+UniRef50_A5VZ70	Permease YjgP YjgQ family protein	0.00123493442736	0.000960869232393	-0.000274065194967
+UniRef50_K2AI23		0.000106211860257	3.45863517985e-05	-7.16255084585e-05
+UniRef50_UPI0004758DC8	hypothetical protein	1.25772857788e-05	7.41964046299e-06	-5.15764531581e-06
+UniRef50_C8XBK0	Transcriptional regulator, Fis family	3.86754475757e-05	0.000288314795161	0.000249639347585
+UniRef50_X1DSN1	Marine sediment metagenome DNA, contig	2.65336766156e-05	8.48440293581e-05	5.83103527425e-05
+UniRef50_A6LQD7	2 alkenal reductase	9.35142829476e-05	0.00165442969298	0.00156091541003
+UniRef50_P75828		0.00439320652914	0.00158271498759	-0.00281049154155
+UniRef50_Q96397	LRG5	1.59805106584e-05	1.12312682522e-05	-4.7492424062e-06
+UniRef50_Q979N7	Peroxiredoxin	8.97950839155e-06	0.000574016101235	0.000565036592843
+UniRef50_UPI0002F0BE06	hypothetical protein	2.05065009442e-05	9.39769623437e-05	7.34704613995e-05
+UniRef50_UPI00045492E4	PREDICTED	3.81407449199e-06	2.91352151312e-05	2.53211406392e-05
+UniRef50_UPI00042548B2	hypothetical protein	4.2928636857e-05	6.06703456241e-05	1.77417087671e-05
+UniRef50_B8CXX9	Predicted nucleotide kinase	0.000234463347108	0.000355803259269	0.000121339912161
+UniRef50_F0C0C2	TRAP type C4 dicarboxylate transport system, large permease component	0.00048581506978	0.000191399145994	-0.000294415923786
+UniRef50_A5UMP3	Probable cobalamin biosynthesis protein CobD	0.00210044954735	0.000209692335056	-0.00189075721229
+UniRef50_A0A015CJF0	DnaJ domain protein	3.43760850162e-05	0.000109628869531	7.52527845148e-05
+UniRef50_A6LQC6	Polysaccharide deacetylase	0.000146123608583	0.00384767221542	0.00370154860684
+UniRef50_U2W2Q1	TIGR01906 family protein	3.53827307983e-05	2.582116448e-05	-9.5615663183e-06
+UniRef50_U5MRU9		0.000210886027289	0.00110803352691	0.000897147499621
+UniRef50_UPI0003B6A7C9	flagellar biosynthesis protein FlhA, partial	1.57274318512e-06	1.46080846596e-05	1.30353414745e-05
+UniRef50_B4WWC7		9.46072664305e-06	0.00112480450166	0.00111534377502
+UniRef50_I8QJJ6		0.000158348065441	0.000172637998293	1.4289932852e-05
+UniRef50_UPI0001D61AB0		1.85766623704e-05	6.3396049898e-06	-1.22370573806e-05
+UniRef50_B9KKZ2		0.000971793574354	0.000760472202226	-0.000211321372128
+UniRef50_P39165		0.00337734796223	0.00163202158092	-0.00174532638131
+UniRef50_Q6GJA0	Glucosamine 6 phosphate deaminase	0.0202986336909	0.0070823497383	-0.0132162839526
+UniRef50_C1EN33	CCA adding enzyme	9.76621801715e-06	0.00032583937137	0.000316073153353
+UniRef50_P37621	UPF0226 protein YhhS	0.00262132005974	0.000467241607633	-0.00215407845211
+UniRef50_D2JDV7	Replication initiator protein	0.00157057708253	0.000130508168705	-0.00144006891383
+UniRef50_M8L412	Bacterial regulatory helix turn helix , lysR family protein	0.000194580406623	0.000860145743281	0.000665565336658
+UniRef50_UPI00037BFAD6	hypothetical protein	1.22954391191e-05	9.90281165785e-06	-2.39262746125e-06
+UniRef50_Q088F4	Drug resistance transporter, EmrB QacA subfamily	0.00124781442938	0.00074042245952	-0.00050739196986
+UniRef50_UPI0003B6C95A	isoleucyl tRNA synthase	1.42603758153e-06	2.86211815939e-06	1.43608057786e-06
+UniRef50_P0AC99	Succinate acetate proton symporter SatP	0.00149840670868	0.00510153832381	0.00360313161513
+UniRef50_UPI00036D3FBE	hypothetical protein	2.6321064597e-06	0.000260428755943	0.000257796649483
+UniRef50_P0ACP6	HTH type transcriptional regulator GntR	0.00201005529766	0.000239122838212	-0.00177093245945
+UniRef50_Q2NGT2	UvrABC system protein C	0.0024010658379	0.00118837878991	-0.00121268704799
+UniRef50_UPI00029AE452	hypothetical protein	2.88057995679e-06	1.89391482973e-05	1.60585683405e-05
+UniRef50_Q9JUD9	Sulfite reductase [NADPH] hemoprotein beta component	0.00451982864619	0.003800083113	-0.00071974553319
+UniRef50_B9E1W5	Arginine  tRNA ligase	0.000598467216048	0.000827577271651	0.000229110055603
+UniRef50_UPI000426EB18	hypothetical protein	0.000133733353107	1.0266025052e-05	-0.000123467328055
+UniRef50_Q9X1B8	Isoprenyl transferase	9.95319935242e-06	1.50295297829e-05	5.07633043048e-06
+UniRef50_G7M3S8	Dihydropyrimidinase	0.000134018694272	0.00060098254429	0.000466963850018
+UniRef50_H0YAA0		0.000318149953669	2.16834004861e-05	-0.000296466553183
+UniRef50_X5ENC8	Fructose bisphosphate aldolase	0.000129128616484	0.00521952377765	0.00509039516117
+UniRef50_A0A023LEN6		0.000333179824425	0.00114115354466	0.000807973720235
+UniRef50_UPI000368781F	ferredoxin	2.31249364166e-05	8.78298635762e-05	6.47049271596e-05
+UniRef50_A6LQ12	Male sterility C terminal domain	0.000334566672732	0.00213499511305	0.00180042844032
+UniRef50_UPI00046FDE0E	hypothetical protein	2.6406486128e-06	7.12157110488e-06	4.48092249208e-06
+UniRef50_P14294	DNA topoisomerase 3	0.00256902142559	0.00130756232685	-0.00126145909874
+UniRef50_UPI000379CA00	hypothetical protein	0.000121181810849	9.77046815494e-05	-2.34771292996e-05
+UniRef50_A6QIC9	Aspartyl glutamyl tRNA amidotransferase subunit C	0.00643061121219	0.000656259344878	-0.00577435186731
+UniRef50_L7WTC7		0.0141131368465	0.00207341700487	-0.0120397198416
+UniRef50_UPI00037FDD54	hypothetical protein	0.000196252436814	0.000120833246362	-7.5419190452e-05
+UniRef50_P37648	Protein YhjJ	0.00370946003206	0.00065039344471	-0.00305906658735
+UniRef50_D4MIN1	Phage portal protein, HK97 family	1.13082847392e-05	2.33988867451e-05	1.20906020059e-05
+UniRef50_A7MLE5	Glucans biosynthesis protein D	0.00312058113402	0.000555438491655	-0.00256514264237
+UniRef50_N6VC63		1.83304830633e-05	8.94310258223e-05	7.1100542759e-05
+UniRef50_UPI0002D4E509	diacylglyceryl transferase	3.7695062803e-06	1.22668116473e-05	8.497305367e-06
+UniRef50_Q1QSC0	Ribosomal RNA small subunit methyltransferase G	4.23181801808e-05	4.27671122008e-05	4.4893202e-07
+UniRef50_P75791		0.0031443388624	0.00101190376258	-0.00213243509982
+UniRef50_UPI0004785E92	hypothetical protein	4.84213461261e-06	7.51860702676e-06	2.67647241415e-06
+UniRef50_Q3J6L2		0.0133665133121	0.00340248274179	-0.00996403057031
+UniRef50_Q5HQ32	Bacteriocin production protein, putative	0.00664213673359	0.00253352190475	-0.00410861482884
+UniRef50_B7RN53		0.000215345364451	3.05768799197e-05	-0.000184768484531
+UniRef50_B2S1L1	Holliday junction ATP dependent DNA helicase RuvB	1.18510462944e-05	9.82946776368e-06	-2.02157853072e-06
+UniRef50_O32090	Nicotinate phosphoribosyltransferase	0.0178360404444	0.0075607708909	-0.0102752695535
+UniRef50_M5VMV2		1.00634205237e-05	1.90530917592e-05	8.9896712355e-06
+UniRef50_A5W827	2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.000177779900556	1.05942893619e-05	-0.000167185611194
+UniRef50_F0XWS4	Expressed protein 	0.000104095888582	7.5512280715e-05	-2.8583607867e-05
+UniRef50_UPI0002ECD2DE	hypothetical protein	4.61217208092e-06	0.000101438606145	9.68264340641e-05
+UniRef50_Q5FP95	Siroheme synthase	1.07557063363e-05	1.14006352649e-05	6.449289286e-07
+UniRef50_Q0SPB0	Triosephosphate isomerase	7.01049886686e-06	1.05086785847e-05	3.49817971784e-06
+UniRef50_UPI0004651951	chemotaxis protein CheY	0.000149129767041	0.000144602834871	-4.52693217e-06
+UniRef50_P74892	Sucrose operon repressor	0.0240869588049	0.00440291493836	-0.0196840438665
+UniRef50_G8V9H7	Amino acid permease	0.000100752488128	0.0059431305216	0.00584237803347
+UniRef50_Q7VN08	Cytochrome c type biogenesis protein CcmE	0.00179808786101	0.000441870381833	-0.00135621747918
+UniRef50_UPI00035F3E28	hypothetical protein	1.33631278623e-05	0.000106559701747	9.31965738847e-05
+UniRef50_C6SQA7		0.00395246756188	0.000243059016624	-0.00370940854526
+UniRef50_Q12V31	NH dependent NAD(+) synthetase	2.9797804152e-05	7.65573468689e-06	-2.21420694651e-05
+UniRef50_UPI0004752D4B	hypothetical protein	2.58875730278e-05	5.69140067745e-05	3.10264337467e-05
+UniRef50_Q6GI89	Tryptophan  tRNA ligase	0.0109333146344	0.00113014502294	-0.00980316961146
+UniRef50_UPI000368C1C4	hypothetical protein	1.55716083415e-05	9.1018956368e-06	-6.4697127047e-06
+UniRef50_H5YKA6	ABC type metal ion transport system, periplasmic component surface antigen	4.08522627183e-05	1.81465921016e-05	-2.27056706167e-05
+UniRef50_F7CCI5		3.116824508e-05	6.5003732542e-06	-2.46678718258e-05
+UniRef50_O02604	Bifunctional dihydrofolate reductase thymidylate synthase	7.93608516497e-06	3.96615543874e-06	-3.96992972623e-06
+UniRef50_F0QJF6		0.000471857486069	0.00277689329651	0.00230503581044
+UniRef50_UPI0003725CB2	hypothetical protein	1.04217873342e-05	1.55481626594e-05	5.1263753252e-06
+UniRef50_B9E8W4		0.0256654013309	0.00422908758093	-0.02143631375
+UniRef50_UPI000374716A	hypothetical protein	2.50054354727e-05	4.18729287735e-05	1.68674933008e-05
+UniRef50_UPI000364771D	hypothetical protein	6.98819719093e-06	1.06245334663e-05	3.63633627537e-06
+UniRef50_K2JZV8		0.000190693909314	0.000116707012549	-7.3986896765e-05
+UniRef50_UPI0003F9070E	hypothetical protein	3.62920662566e-05	2.48770715314e-05	-1.14149947252e-05
+UniRef50_C0Q1R0	Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	0.00233425917312	0.000340914024259	-0.00199334514886
+UniRef50_F0RPF4	Protoporphyrinogen oxidase	0.000608234299602	0.0317714930706	0.031163258771
+UniRef50_Q8K9C8	GTP binding protein TypA BipA homolog	0.000210644617408	0.00900850071806	0.00879785610065
+UniRef50_F0GD65	Putative binding protein dependent transport system protein 	7.15512481104e-05	0.000269931663895	0.000198380415785
+UniRef50_R6FYV1		0.00122986344501	0.00407297720698	0.00284311376197
+UniRef50_S5YQ77	YGGT family protein	0.0137530770647	0.000673726323636	-0.0130793507411
+UniRef50_UPI000403B702	helicase UvrD	5.20635737455e-06	2.57846564603e-05	2.05782990858e-05
+UniRef50_UPI00036F2F3A	hypothetical protein, partial	3.63651196026e-05	5.60019036418e-05	1.96367840392e-05
+UniRef50_UPI0001BF7409	hypothetical protein SMAC_09879, partial	3.3998007537e-05	4.12073585897e-05	7.2093510527e-06
+UniRef50_F4VSV6	Putative ribosomal protein 	0.000781005494173	0.00122200015942	0.000440994665247
+UniRef50_G7ZRG1	AraC family transcriptional regulator, putative	0.011698448521	0.00189312447431	-0.00980532404669
+UniRef50_UPI0003B76C42	hypothetical protein, partial	1.94481730646e-05	2.87641334546e-05	9.31596039e-06
+UniRef50_UPI000299D763	L serine dehydratase, beta subunit	1.08169863321e-05	0.000258667918695	0.000247850932363
+UniRef50_Q031Z8	UPF0397 protein LACR_0367	0.0212358444449	0.00994222922908	-0.0112936152158
+UniRef50_P57178	Flagellum specific ATP synthase	0.000382467245661	0.000343079672703	-3.9387572958e-05
+UniRef50_U3SZ43	Acyl CoA thioesterase	0.0002881572434	0.0073306351108	0.0070424778674
+UniRef50_UPI0004666EB7	sulfate ABC transporter ATP binding protein	0.000122388281795	0.000170641703146	4.8253421351e-05
+UniRef50_D4HA77		0.000234463347108	0.0147060945156	0.0144716311685
+UniRef50_E6IF75		0.00207177487215	0.00108042697022	-0.00099134790193
+UniRef50_Q74D60	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	5.96663777539e-06	1.51969689682e-05	9.23033119281e-06
+UniRef50_UPI0000557724	COG1620	1.75235532535e-05	2.6521977848e-05	8.9984245945e-06
+UniRef50_O25515	Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000144630647073	0.00100819142047	0.000863560773397
+UniRef50_UPI0001DCFDB5	200 kDa antigen p200, putative	0.000675759143863	0.00105541305319	0.000379653909327
+UniRef50_P69832	Galactitol permease IIC component	0.0022981789217	0.000655256825911	-0.00164292209579
+UniRef50_J5ICW8	Putative lysophospholipase	2.71684416606e-05	2.11684601435e-05	-5.9999815171e-06
+UniRef50_I6TY61	ABC transporter ATP binding protein	0.00450230988964	0.000620774206503	-0.00388153568314
+UniRef50_UPI000475C521	deaminase reductase, partial	4.53696528916e-05	0.000442474356264	0.000397104703372
+UniRef50_A5UM23	Pre mRNA splicing ribonucleoprotein PRP31	0.00220931194104	0.000237838957205	-0.00197147298384
+UniRef50_J2X7R8		0.000646116202093	0.000186223068576	-0.000459893133517
+UniRef50_UPI000440E4B2	PREDICTED	5.81413082748e-06	0.000148482965794	0.000142668834967
+UniRef50_G7M114	Stage III sporulation protein AF	0.000189374241902	0.00148201825466	0.00129264401276
+UniRef50_UPI00034B4D85	phosphoenolpyruvate synthase	1.99062207731e-06	0.000561983870749	0.000559993248672
+UniRef50_X7UI62	PPE family protein	1.99959931282e-05	5.40012751533e-05	3.40052820251e-05
+UniRef50_F8KL74		0.00977436275283	0.00270292832158	-0.00707143443125
+UniRef50_Q8TZ14	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.49597359468e-05	3.38465102549e-05	8.8867743081e-06
+UniRef50_Q4KFA5	Glycerophosphodiester phosphodiesterase family protein	0.00109767267228	0.000614283862328	-0.000483388809952
+UniRef50_UPI00047B798B	glycine cleavage system potein H	2.11491785069e-05	3.30937755676e-05	1.19445970607e-05
+UniRef50_E1SRN0	Type IV pilus biogenesis stability protein PilW	6.48411070611e-06	1.56604531864e-05	9.17634248029e-06
+UniRef50_J9NUS4		0.000213380003615	3.73359149747e-05	-0.00017604408864
+UniRef50_J9NUS2		3.45555450412e-05	9.67128867077e-05	6.21573416665e-05
+UniRef50_UPI00034A41B8	hypothetical protein	2.25359465795e-05	0.00631021569517	0.00628767974859
+UniRef50_UPI0003C7E91A	GntR family transcriptional regulator, partial	2.3991121863e-05	3.75377061492e-05	1.35465842862e-05
+UniRef50_Q49174	Methyl coenzyme M reductase II subunit alpha	0.00294859230613	0.00194905370055	-0.00099953860558
+UniRef50_Q1JM47	Transporter	0.0057880553415	0.00151525078939	-0.00427280455211
+UniRef50_N3KST8	Trehalose 6 phosphate phosphatase 	0.0086909620675	0.00410886328969	-0.00458209877781
+UniRef50_UPI000287F633	D amino acid dehydrogenase	2.09000273695e-05	1.10942734315e-05	-9.805753938e-06
+UniRef50_A0A023LC15		0.000688396038288	0.000964807604116	0.000276411565828
+UniRef50_A5N1N7	Acyl protein synthetase related protein	0.00021189380417	0.00146048479544	0.00124859099127
+UniRef50_W0YM34	Protein YqjC	0.000686338161548	0.000456675317307	-0.000229662844241
+UniRef50_Q3J8Q5	50S ribosomal protein L10	0.0140700515183	0.00043007287164	-0.0136399786467
+UniRef50_UPI00037516DE	O acetylhomoserine  lyase, partial	1.76495236422e-05	1.44173451457e-05	-3.2321784965e-06
+UniRef50_Q8CRJ8		0.0182927710192	0.0105527874228	-0.0077399835964
+UniRef50_A6LQ15	BAAT Acyl CoA thioester hydrolase like protein	0.000146881707723	0.0013322924822	0.00118541077448
+UniRef50_UPI00022CA5D6		4.34105410157e-06	5.81796254078e-06	1.47690843921e-06
+UniRef50_UPI00036E56FD	hypothetical protein	4.58424089983e-06	4.89660714756e-06	3.1236624773e-07
+UniRef50_UPI0002D738C7	hypothetical protein	2.1801144637e-05	2.49374435035e-05	3.1362988665e-06
+UniRef50_B9TD78	Circumsporozoite protein, putative 	7.70119206871e-05	0.000102412649186	2.54007284989e-05
+UniRef50_Q9I1W8	Catalase HPII	0.00876617686367	0.00211350414225	-0.00665267272142
+UniRef50_K7U318		6.75967944459e-05	0.000325174686853	0.000257577892407
+UniRef50_Q9JWJ3	Cysteine  tRNA ligase	5.72623314325e-06	0.000353169547732	0.000347443314589
+UniRef50_UPI00047AB713	ferredoxin	4.29483646938e-05	7.0244730666e-05	2.72963659722e-05
+UniRef50_E0S112	Iron ABC transporter permease protein	0.000634842803854	0.00199531177304	0.00136046896919
+UniRef50_UPI000477640E	PTS mannose transporter subunit IIA	1.01073529622e-05	3.85738088801e-05	2.84664559179e-05
+UniRef50_A5UKG0		0.000608848369114	0.000649047703726	4.0199334612e-05
+UniRef50_A5IRE1	SNARE associated Golgi protein	0.0114950751302	0.00656497924798	-0.00493009588222
+UniRef50_A8LR27		8.1983488224e-05	0.000560727921252	0.000478744433028
+UniRef50_UPI000381B84D	hypothetical protein	5.08342949261e-05	4.09768897416e-05	-9.8574051845e-06
+UniRef50_D8GPH6	Conserved protein with a HD domain	0.000157504585052	0.000806703602053	0.000649199017001
+UniRef50_Q5PJX5	Ribose import ATP binding protein RbsA	0.00305614885899	0.00117288146481	-0.00188326739418
+UniRef50_Q44532	Ferredoxin  NADP reductase	0.0136533612924	0.00375399056117	-0.00989937073123
+UniRef50_C7IYC6	Os02g0235900 protein 	0.000245218609646	0.00047279892046	0.000227580310814
+UniRef50_B9DTQ1	Replication initiation and membrane attachment protein	0.00638270324875	0.00258071224544	-0.00380199100331
+UniRef50_UPI0004754009	flagellar biosynthesis protein FliQ	0.000567263248362	0.000107060932472	-0.00046020231589
+UniRef50_Q42601	Carbamoyl phosphate synthase large chain, chloroplastic	0.000123454295123	0.00431263341502	0.0041891791199
+UniRef50_UPI000476D67D	peptide ABC transporter permease	3.11754917464e-05	9.38404971617e-06	-2.17914420302e-05
+UniRef50_O33525	Malate dehydrogenase	8.66209450564e-05	2.53539615393e-05	-6.12669835171e-05
+UniRef50_Q0FSC8	Replication initiator RepC	4.76618007924e-06	1.50810307365e-05	1.03148506573e-05
+UniRef50_G8VEZ7	Long chain fatty acid  CoA ligase synthetase	0.000182054112119	0.00467357938346	0.00449152527134
+UniRef50_A4QEG9	Riboflavin biosynthesis protein RibBA	0.00042503120067	0.0176430629816	0.0172180317809
+UniRef50_UPI00047D89FD	hypothetical protein	6.02961556353e-06	1.83051267617e-05	1.22755111982e-05
+UniRef50_Q0A4L8	Ribosomal RNA small subunit methyltransferase G	3.8442205593e-05	3.16942279971e-05	-6.7479775959e-06
+UniRef50_UPI0003782025	hypothetical protein	0.000472151979452	0.000162683215526	-0.000309468763926
+UniRef50_H0A863		1.3739936094e-05	4.70609164091e-05	3.33209803151e-05
+UniRef50_T1BAH6	Glutaredoxin family protein 	6.59318775172e-05	0.000176460548997	0.00011052867148
+UniRef50_M4ZG23	Transcriptional regulator, MarR family	0.000301988791085	0.00216550340304	0.00186351461195
+UniRef50_Q7N8S4	Amino acid acetyltransferase	0.00338193026959	0.000926804756968	-0.00245512551262
+UniRef50_I5BUN0	NAD dependent dehydrogenase	0.00276611621106	0.000706889539336	-0.00205922667172
+UniRef50_UPI00047AB05A	ABC transporter substrate binding protein, partial	1.66464539699e-05	7.94879623323e-05	6.28415083624e-05
+UniRef50_Q4ZVS4	Glycosyl hydrolase, BNR repeat protein	0.00046437059817	0.000283051155147	-0.000181319443023
+UniRef50_Q8CQX8		0.00594310377868	0.00451227493297	-0.00143082884571
+UniRef50_P44428	2Fe 2S ferredoxin	0.00310217006879	0.0032880902994	0.00018592023061
+UniRef50_P0ACK8	L fucose operon activator	0.00307520693864	0.00183493591065	-0.00124027102799
+UniRef50_UPI000310B4FE	hypothetical protein	4.33549600919e-06	5.86138257498e-05	5.42783297406e-05
+UniRef50_UPI00040DEDFB	glycine cleavage system protein H	8.06376412934e-05	3.06482543468e-05	-4.99893869466e-05
+UniRef50_K0CDY8		0.000197001942772	0.00118921699665	0.000992215053878
+UniRef50_D5HAF9	CobW P47K family protein	5.1219642627e-06	1.00019236592e-05	4.8799593965e-06
+UniRef50_X1PT48	Marine sediment metagenome DNA, contig	4.64186968129e-06	2.32413128802e-05	1.85994431989e-05
+UniRef50_Q5F569	UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00108674433531	0.00261092456822	0.00152418023291
+UniRef50_G8V1X3	Citrate transporter family protein	0.015747758559	0.00661122042263	-0.00913653813637
+UniRef50_R6M017		0.000141478480163	9.25089029219e-05	-4.89695772411e-05
+UniRef50_G5JW97	Competence specific sigma factor ComX	0.0112295571732	0.00325395258503	-0.00797560458817
+UniRef50_T9NAD2		0.00375133364687	0.000630040348308	-0.00312129329856
+UniRef50_M9RZ40	Transport protein	0.00106849269852	0.00046506567747	-0.00060342702105
+UniRef50_F0KLI1	Phosphoribosyl dephospho CoA transferase	0.00069475948869	0.0143329141269	0.0136381546382
+UniRef50_B9KSK9	Mammalian cell entry related domain protein	0.000357886933336	0.000375005339931	1.7118406595e-05
+UniRef50_Q46WX7	AMP dependent synthetase and ligase	0.000170749215151	0.0153451446618	0.0151743954466
+UniRef50_Q892J3	Chorismate synthase	1.30750893188e-05	8.52223895935e-05	7.21473002747e-05
+UniRef50_F0A5S1		2.29463251347e-06	0.00196980995407	0.00196751532156
+UniRef50_G4LSM0		0.00133295779697	0.000828259604455	-0.000504698192515
+UniRef50_Q06173	Periplasmic [NiFe] hydrogenase small subunit 1	6.85440469864e-05	1.74750579851e-05	-5.10689890013e-05
+UniRef50_Q1II76	Bifunctional protein FolD	2.23029168195e-05	3.16991803165e-06	-1.91329987878e-05
+UniRef50_Q8ZM40	tRNA  ) methyltransferase	0.00199051628087	0.00208864760108	9.813132021e-05
+UniRef50_Q8CNS2	Protoporphyrinogen oxidase	0.0231678697017	0.00374872006018	-0.0194191496415
+UniRef50_X0UVH5	Marine sediment metagenome DNA, contig	4.01001471582e-05	0.000803456767446	0.000763356620288
+UniRef50_I3V422	LysR family transcriptional regulator	0.000154075913818	0.000641323746361	0.000487247832543
+UniRef50_R9SK04	Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2	0.00131020889286	0.000268063575066	-0.00104214531779
+UniRef50_UPI0003A45EE2	alkyl hydroperoxide reductase	1.28324102355e-05	0.000960719036631	0.000947886626395
+UniRef50_UPI0003B56E34	dihydrolipoyllysine succinyltransferase	1.2347089168e-05	1.34345761335e-05	1.0874869655e-06
+UniRef50_E8SI43	ABC transporter ATP binding protein	0.0639937988302	0.0130824058303	-0.0509113929999
+UniRef50_P69814	Galactitol specific phosphotransferase enzyme IIA component	0.00390452283234	0.000787511213846	-0.00311701161849
+UniRef50_P19576	Maltose binding periplasmic protein	0.00234061946529	0.00160938696811	-0.00073123249718
+UniRef50_UPI0002002889	hypothetical protein	1.80381855945e-05	5.29800647831e-05	3.49418791886e-05
+UniRef50_A6LUN8	Mg2+ transporter protein, CorA family protein	0.000392424296107	0.000923911364415	0.000531487068308
+UniRef50_A5IRS3	DoxX family protein	0.00397828644654	0.00236171905481	-0.00161656739173
+UniRef50_W5V4L7	Membrane protein	0.000799323643602	0.000626562891387	-0.000172760752215
+UniRef50_U3SVR2		0.0059717229701	0.00233717582009	-0.00363454715001
+UniRef50_UPI0002378562	queuine tRNA ribosyltransferase, partial	5.8684450064e-06	5.37921963833e-05	4.79237513769e-05
+UniRef50_UPI000473FB58	helicase DnaB, partial	8.34678641399e-06	0.000342245150645	0.000333898364231
+UniRef50_B7VMX2	Methionyl tRNA formyltransferase	8.21849574338e-06	1.56413115431e-05	7.42281579972e-06
+UniRef50_F4DWI2	Regulatory protein, LuxR	0.000385392888794	0.000279835768189	-0.000105557120605
+UniRef50_Q2GUA3		1.31138389048e-06	2.18667363629e-06	8.7528974581e-07
+UniRef50_UPI0002EEDC88	hypothetical protein	7.74915325016e-06	1.15922477231e-05	3.84309447294e-06
+UniRef50_Q8Y7N5	Non canonical purine NTP pyrophosphatase	5.10247432929e-05	0.000575292282856	0.000524267539563
+UniRef50_R1D6J3		2.5894043904e-05	1.20846599668e-05	-1.38093839372e-05
+UniRef50_A2SNI4	Sex pilus assembly protein	5.87130928703e-05	4.99822888612e-06	-5.37148639842e-05
+UniRef50_I3X709	Extracellular solute binding protein family 3	0.0021259061298	0.000840334111646	-0.00128557201815
+UniRef50_UPI0001CE27CE	PREDICTED	3.55027344812e-06	0.00019492851828	0.000191378244832
+UniRef50_Q9I4D3	Putative quercetin 2,3 dioxygenase PA1205	0.000175394533608	0.000191143498515	1.5748964907e-05
+UniRef50_H6MX85	Peptide methionine sulfoxide reductase MsrA	0.0388578222829	0.010084061677	-0.0287737606059
+UniRef50_G2JLT4		1.68582102353e-05	0.01649300103	0.0164761428198
+UniRef50_X6G7G7		5.50035310102e-05	2.04393714295e-05	-3.45641595807e-05
+UniRef50_P44123	6 carboxy 5,6,7,8 tetrahydropterin synthase	2.16456536964e-05	0.00223023737812	0.00220859172442
+UniRef50_UPI000349B87B	hypothetical protein	6.72640854751e-06	1.23771956628e-05	5.65078711529e-06
+UniRef50_P69829	Nitrogen regulatory protein	0.000247515499001	0.00222773292896	0.00198021742996
+UniRef50_A8F8I3	Phosphoribosylformylglycinamidine synthase 2	1.52471762569e-05	3.64482455666e-06	-1.16023517002e-05
+UniRef50_Q1NB30		0.000184104728343	4.75683352301e-05	-0.000136536393113
+UniRef50_U3T7G4	Oligopeptide transport system permease protein	0.000375048866284	0.00767821631672	0.00730316745044
+UniRef50_A0Q4T9	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.62598784966e-05	5.25013161228e-05	-3.7585623738e-06
+UniRef50_G8V7H1	ABC transporter ATP binding protein	0.000185528854924	0.0043520856322	0.00416655677728
+UniRef50_F7TW27	Nickel transport system permease protein NikB	9.14017480104e-06	2.61672345976e-05	1.70270597966e-05
+UniRef50_F2I8E8	Branched chain amino acid ABC transporter, permease protein	0.00797411816463	0.00483739634805	-0.00313672181658
+UniRef50_UPI000328BD8B	PREDICTED	7.22892610694e-05	0.000214775785594	0.000142486524525
+UniRef50_R9PHP0	Membrane protein related to purine degradation	0.000166354274214	3.03338644409e-05	-0.000136020409773
+UniRef50_UPI0000E10DEA	Mg chelatase, subunit ChlI	2.51206953912e-06	6.13881015478e-06	3.62674061566e-06
+UniRef50_D4GS06	Citrate synthase	2.32584276399e-05	5.41970175741e-05	3.09385899342e-05
+UniRef50_B2URB8	Ketol acid reductoisomerase	2.22470787145e-05	3.82707957609e-05	1.60237170464e-05
+UniRef50_A0A017HSW8	Cation transport protein chaC	1.15982875084e-05	1.08713229509e-05	-7.269645575e-07
+UniRef50_UPI00021979C2	oligo 1,6 glucosidase	3.5274192233e-06	5.78638646359e-06	2.25896724029e-06
+UniRef50_UPI0003507592	PREDICTED	2.5460167367e-05	5.67874949761e-05	3.13273276091e-05
+UniRef50_UPI0003AA57B2	sodium	1.36897052753e-05	0.00360154819851	0.00358785849323
+UniRef50_UPI0003B38D86	chemotaxis protein CheR	9.66713981777e-05	2.44111729396e-05	-7.22602252381e-05
+UniRef50_C1C8T6	Alanine racemase	0.00576830142862	0.003166047133	-0.00260225429562
+UniRef50_UPI00034AEEE6	hypothetical protein	0.00173278246411	0.00143441051275	-0.00029837195136
+UniRef50_Q6X7U6	2,3 diaminopropionate biosynthesis protein SbnB	0.0139060159203	0.00200661648535	-0.011899399435
+UniRef50_UPI00046E80FA	hypothetical protein	3.77990207457e-06	9.671988784e-06	5.89208670943e-06
+UniRef50_R6AVV6		5.14333897648e-06	3.67568203441e-05	3.16134813676e-05
+UniRef50_I6TPH6	N acetylmuramoyl L alanine amidase	0.00214288541827	0.000201810960268	-0.001941074458
+UniRef50_A5VKT1	Peptide methionine sulfoxide reductase MsrA	0.0260769476688	0.0018263270428	-0.024250620626
+UniRef50_G8VNH2	Cysteine synthase ornithine cyclodeaminase	0.000117353157162	0.00495137234234	0.00483401918518
+UniRef50_B9KN38	UvrB protein	0.0198485892128	0.0102377783882	-0.0096108108246
+UniRef50_Q54XM6	Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	8.52052509155e-06	1.66929649665e-05	8.17243987495e-06
+UniRef50_UPI0001FFDC47	5 nucleotidase ;exopolyphosphatase ;3 nucleotidase	6.07959572842e-05	0.000278040026756	0.000217244069472
+UniRef50_UPI00036C2D64	hypothetical protein	1.04431833722e-05	3.05179150314e-06	-7.39139186906e-06
+UniRef50_F7YPH9	ABC transporter ATP binding protein	0.00056831105291	0.0110292115999	0.010460900547
+UniRef50_Q2CFL1		4.39711490438e-06	6.87994534513e-06	2.48283044075e-06
+UniRef50_H5YAU5	Spermidine putrescine binding periplasmic protein	0.0136950160159	0.00257365827797	-0.0111213577379
+UniRef50_Q7WJI7	Argininosuccinate lyase	0.000342624921585	0.00321252954467	0.00286990462309
+UniRef50_Q8E0X1	Prophage LambdaSa1, pblA protein, internal deletion	0.000121737379666	0.000208700704506	8.696332484e-05
+UniRef50_R4WZZ5		0.00814857330499	0.00236691857474	-0.00578165473025
+UniRef50_UPI0004135EFA	ATP dependent DNA helicase RecQ	1.74792101858e-05	9.53229261273e-06	-7.94691757307e-06
+UniRef50_UPI00047C6850	hypothetical protein	3.74920263848e-05	0.000276249073565	0.00023875704718
+UniRef50_A6QGQ2		0.000175784765011	0.000116336382583	-5.9448382428e-05
+UniRef50_UPI000379AA44	hypothetical protein	3.62742611183e-05	5.15634302116e-06	-3.11179180971e-05
+UniRef50_UPI00034B0709	hypothetical protein	0.0015816474433	0.000209629725795	-0.0013720177175
+UniRef50_A6V155		0.000552257736994	0.000239445977193	-0.000312811759801
+UniRef50_UPI000416D15E	hypothetical protein	5.88035396834e-06	9.38108295273e-06	3.50072898439e-06
+UniRef50_C1KVB2	Endoribonuclease YbeY	0.0118816058363	0.00202371685621	-0.00985788898009
+UniRef50_P0ABV8	Protein TolR	0.00405291947666	0.000414964925331	-0.00363795455133
+UniRef50_J9NZ26		0.000113245796655	0.000336331460735	0.00022308566408
+UniRef50_UPI0004637A95	MULTISPECIES	9.15488519108e-05	9.61392715899e-05	4.5904196791e-06
+UniRef50_Q1R1E5	1 deoxy D xylulose 5 phosphate synthase	6.74651421758e-06	7.41970937218e-06	6.731951546e-07
+UniRef50_UPI00035C7334	hypothetical protein	0.000599514009231	0.000141677645391	-0.00045783636384
+UniRef50_UPI000367B022	hypothetical protein	2.26822633197e-05	3.6274889918e-05	1.35926265983e-05
+UniRef50_P32157	Protein YiiM	0.00399161709896	0.0011303700054	-0.00286124709356
+UniRef50_Q5LR99	Peptidase, M23 M37 family	0.00234259958688	0.00039631795236	-0.00194628163452
+UniRef50_UPI0001DD0925	bile acid	0.000253977178749	0.000146638628562	-0.000107338550187
+UniRef50_Q1IW67	PPC, peptidase containing PKD repeats	7.93789774321e-06	0.00127980353978	0.00127186564204
+UniRef50_L0A6E5	Phytoene desaturase	7.06461613625e-05	0.0385141613059	0.0384435151445
+UniRef50_Q7VA47	Fumarate hydratase class II	5.36259246469e-06	4.05765998134e-06	-1.30493248335e-06
+UniRef50_Q9ZKW2	Probable iron chelatin transport system permease protein jhp_0822	0.000125133476969	0.00179791040875	0.00167277693178
+UniRef50_R5AM14	Transketolase	0.00143201188526	0.00488682913879	0.00345481725353
+UniRef50_Q9HXC0		0.000751656975743	9.49571399342e-05	-0.000656699835809
+UniRef50_UPI0004785DA5	hypothetical protein	1.01680207739e-05	0.000656611577274	0.0006464435565
+UniRef50_UPI0001C4F400	sulfate ABC transporter permease	9.62878022308e-06	9.49572744923e-06	-1.3305277385e-07
+UniRef50_W3MN34		8.15399645607e-05	0.00144526035913	0.00136372039457
+UniRef50_U2YW33	CRISPR associated protein, Cas5h family	0.000321816075461	6.31375525294e-05	-0.000258678522932
+UniRef50_Q9RT77		0.000271572653853	0.00241511090729	0.00214353825344
+UniRef50_Q9RT76		0.0033887333048	0.0397589987529	0.0363702654481
+UniRef50_W8TN29	ACT domain containing protein	0.000292624797564	0.0140372066139	0.0137445818163
+UniRef50_P52986	Homoserine dehydrogenase	4.02740615366e-06	6.25441730872e-05	5.85167669335e-05
+UniRef50_B2S5S6	Threonine  tRNA ligase	0.0124345707482	0.00725875749814	-0.00517581325006
+UniRef50_D5AQ72	Glycine betaine L proline ABC transporter, permease protein ProW 1	0.0127347731774	0.00108488013118	-0.0116498930462
+UniRef50_A3JTA0	Arsenate reductase	0.000404919655234	0.000221786797212	-0.000183132858022
+UniRef50_G4LDX4		0.000141601051163	0.000249471483268	0.000107870432105
+UniRef50_G2JZ44	Carnitine transport ATP binding protein OpuCA	0.0347290092841	0.0131295798624	-0.0215994294217
+UniRef50_A5USV3	Queuine tRNA ribosyltransferase	5.19715643669e-06	3.19758409382e-05	2.67786845015e-05
+UniRef50_O52788	Tyrosine protein kinase ptk	0.000355909480386	0.0065052323679	0.00614932288751
+UniRef50_E5QV38		0.0104953728179	0.00118297732925	-0.00931239548865
+UniRef50_UPI000472FBDB	S formylglutathione hydrolase	2.83168861965e-05	3.82243209264e-05	9.9074347299e-06
+UniRef50_P52613	Flagellar FliJ protein	0.00141130233383	0.00122593107804	-0.00018537125579
+UniRef50_UPI00035FA621	hypothetical protein	5.29796777693e-06	1.96857333744e-05	1.43877655975e-05
+UniRef50_UPI0002891631	HAD family hydrolase	7.91027594963e-05	0.000245118627756	0.00016601586826
+UniRef50_C1KVA9	GTPase Era	0.0236719701152	0.0119461568689	-0.0117258132463
+UniRef50_UPI00047412C9	hypothetical protein, partial	4.21815344166e-05	5.74483338498e-05	1.52667994332e-05
+UniRef50_T7XDH6	Cytochrome bd II oxidase subunit 2	0.000768093580892	0.000387889518544	-0.000380204062348
+UniRef50_A0A010ITK8		1.86632233352e-05	4.17804104913e-05	2.31171871561e-05
+UniRef50_Q5LVP8	Xanthine dehydrogenase accessory factor	6.71868334959e-06	4.3690587779e-05	3.69719044294e-05
+UniRef50_F3U4A0	RND family efflux transporter MFP subunit	0.000255485527578	0.000491118925637	0.000235633398059
+UniRef50_B9DZY6		0.000283342373642	0.00496713285668	0.00468379048304
+UniRef50_UPI0004701B61	hypothetical protein	6.25599781802e-06	8.14137681872e-06	1.8853790007e-06
+UniRef50_Q839H4	2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.0049189487464	0.0121219237083	0.0072029749619
+UniRef50_UPI000362C020	hypothetical protein	3.11903779177e-06	0.000377434580452	0.00037431554266
+UniRef50_UPI000455F0CE	hypothetical protein CONPUDRAFT_85381	8.53092037622e-06	9.37901574761e-07	-7.59301880146e-06
+UniRef50_UPI000417B443	hypothetical protein	1.13260124627e-05	2.37311884538e-05	1.24051759911e-05
+UniRef50_A8FY28	Ribonuclease HII	0.000595790580038	0.000643231907845	4.7441327807e-05
+UniRef50_F9ECL7		6.73848948113e-05	0.00324199064956	0.00317460575475
+UniRef50_A3M1W3		0.000205901448467	0.00380607907314	0.00360017762467
+UniRef50_UPI0004168D45	DEAD DEAH box helicase	3.35799902697e-06	1.90921731628e-05	1.57341741358e-05
+UniRef50_Q87DC2	Fumarate hydratase class II	0.000952430105442	0.00068039294302	-0.000272037162422
+UniRef50_X1CXM9	Marine sediment metagenome DNA, contig	1.44821891795e-05	8.33833166245e-06	-6.14385751705e-06
+UniRef50_Q5VQ95	PE PGRS FAMILY PROTEIN like	5.41901981131e-05	2.18721494118e-05	-3.23180487013e-05
+UniRef50_Q0MQH9	NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.28347282207e-05	2.89022101445e-05	-3.9325180762e-06
+UniRef50_P05448	Putative L,D transpeptidase in ATP synthase subunits region ORF 5	0.012404094123	0.00495968904425	-0.00744440507875
+UniRef50_UPI000364300D	hypothetical protein	3.49162223831e-06	5.54494374112e-06	2.05332150281e-06
+UniRef50_UPI00046AFE1E	fimbrial protein, partial	7.80354965687e-06	7.99769463389e-06	1.9414497702e-07
+UniRef50_C1C8M1	Threonine  tRNA ligase	0.0127555711153	0.00433481805511	-0.00842075306019
+UniRef50_Q9WY54	Aminomethyltransferase	3.8555108957e-05	3.18539284437e-05	-6.7011805133e-06
+UniRef50_UPI000478F558	hypothetical protein	1.81335620539e-05	0.00020806905574	0.000189935493686
+UniRef50_Z2DM67		0.000406030234906	0.000203832524573	-0.000202197710333
+UniRef50_Q59935	Mannose 6 phosphate isomerase	0.028466988923	0.010110724363	-0.01835626456
+UniRef50_E0MU16	Putative replication protein A 	0.000782900747004	0.000252649811376	-0.000530250935628
+UniRef50_A6LPF8	Transcriptional regulator, TrmB	0.00220666947375	0.000423899576834	-0.00178276989692
+UniRef50_F1AX13	PP177	0.000407412710497	0.000185733256082	-0.000221679454415
+UniRef50_UPI0003771110	hypothetical protein	0.000197215145787	0.00329601488918	0.00309879974339
+UniRef50_P52560	GTP pyrophosphokinase	0.000175001246301	0.00661396813026	0.00643896688396
+UniRef50_P72871	S adenosylmethionine synthase	8.67734417895e-06	0.000311232407899	0.00030255506372
+UniRef50_UPI000380FDEA	hypothetical protein	7.4055781187e-06	4.42270073442e-05	3.68214292255e-05
+UniRef50_A7BLF8	Serine threonine protein phosphatase	4.34916835541e-06	0.000116369495057	0.000112020326702
+UniRef50_Q74NK6		0.000126634813833	0.00201264223045	0.00188600741662
+UniRef50_P43319		0.003001642598	0.000164369223673	-0.00283727337433
+UniRef50_M8E6M3		5.18836542369e-05	0.000916856693408	0.000864973039171
+UniRef50_A1B1I1	Leucyl phenylalanyl tRNA  protein transferase	1.63040435828e-05	0.000119106719942	0.000102802676359
+UniRef50_Q57847		0.00291361999475	0.000473770115279	-0.00243984987947
+UniRef50_Q745F5		4.93242201077e-05	0.000113656204698	6.43319845903e-05
+UniRef50_UPI0003628FC3	hypothetical protein, partial	5.1714812704e-06	0.000134319236006	0.000129147754736
+UniRef50_UPI000158478A	hypothetical protein BC1G_06634	4.44073690214e-06	3.37066668032e-05	2.92659299011e-05
+UniRef50_G9EQ58		4.11888742638e-05	0.000166729575426	0.000125540701162
+UniRef50_F3YMS0	Permease	0.00484423132479	0.00506488682277	0.00022065549798
+UniRef50_UPI0003651736	hypothetical protein, partial	9.88434426598e-06	1.54371702619e-05	5.55282599592e-06
+UniRef50_Q7VR76	Ribose phosphate pyrophosphokinase	3.61466314181e-05	7.74923634178e-05	4.13457319997e-05
+UniRef50_UPI0003B40518	ABC transporter ATP binding protein	6.07183430997e-07	4.92400882273e-06	4.31682539173e-06
+UniRef50_UPI0004708F5B	ABC transporter substrate binding protein, partial	1.59398045474e-05	0.000568516621707	0.00055257681716
+UniRef50_Q9K107	L aspartate oxidase	0.000322734424493	0.00331094834525	0.00298821392076
+UniRef50_Q6A6B1	BadF BadG BcrA BcrD ATPase family protein	0.000212070780251	0.00953832485507	0.00932625407482
+UniRef50_UPI0001CBF5BB	macrolide ABC transporter ATP binding protein	5.7914471395e-06	2.2992336605e-05	1.72008894655e-05
+UniRef50_D8JDP8	Protein visC	9.20697533807e-05	0.00669928486401	0.00660721511063
+UniRef50_UPI0003B5F778	iron ABC transporter	4.85694526029e-06	2.82073012087e-05	2.33503559484e-05
+UniRef50_UPI000382A943	hypothetical protein	1.10087946562e-05	1.71522656751e-05	6.1434710189e-06
+UniRef50_U3T3A9		3.44216046284e-05	0.00104743294192	0.00101301133729
+UniRef50_UPI000455D09C	lamb YcsF family protein	0.000112239228912	2.70073731009e-05	-8.52318558111e-05
+UniRef50_Q9RWW8		0.000187478528205	0.0481271771429	0.0479396986147
+UniRef50_C6ZBM7		4.09421260664e-05	5.05283847915e-05	9.5862587251e-06
+UniRef50_A6LRH1	Response regulator receiver protein	0.000261537636621	0.000476637802963	0.000215100166342
+UniRef50_B3QI42	Phosphoribosylformylglycinamidine synthase, purS	3.63675254415e-05	7.64707369879e-05	4.01032115464e-05
+UniRef50_UPI0004712E3C	hypothetical protein	6.18921543543e-06	4.83015211799e-06	-1.35906331744e-06
+UniRef50_C1N8X0	Predicted protein	2.13355405122e-05	5.77388870196e-06	-1.55616518102e-05
+UniRef50_A5UNU8	Large terminase subunit	0.00398758493451	0.000131154717327	-0.00385643021718
+UniRef50_N8WPF6		0.000250543797907	0.0095014668419	0.00925092304399
+UniRef50_Q8TYX3	HSP70 class molecular chaperones involved in cell morphogenesis	0.00416940365777	0.000389379600506	-0.00378002405726
+UniRef50_P94544	DNA polymerase 3 5 exonuclease PolX	0.0194270517834	0.00734696994585	-0.0120800818375
+UniRef50_UPI0001745B7C	iron sulfur cluster assembly accessory protein	0.000829585364471	0.000138146755862	-0.000691438608609
+UniRef50_Q13SP0	tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0172264453457	0.0123561935057	-0.00487025184
+UniRef50_K0S5W4		7.33932577173e-05	0.00013484035594	6.14470982227e-05
+UniRef50_UPI0002FE110D	Fosmidomycin resistance protein	0.000116565489397	0.000125985484617	9.41999522e-06
+UniRef50_A8A6H8	Inner membrane protein CbrB	0.0011177014855	0.00053050905124	-0.00058719243426
+UniRef50_B4G1R8		0.000433062319907	0.00033879545529	-9.4266864617e-05
+UniRef50_Q21TR5	Putative ribose galactose methyl galactoside import ATP binding protein	0.000256469145597	0.00553008744338	0.00527361829778
+UniRef50_N0CFH5	L cystine ABC transporter substrate binding component	0.00400655896638	0.0039472097551	-5.934921128e-05
+UniRef50_M9VK56	Membrane associated protein	0.000217856681064	0.00480952172692	0.00459166504586
+UniRef50_U5UTH9		0.000174705665644	0.000142727768354	-3.197789729e-05
+UniRef50_K0S8Y4		7.41622767867e-05	5.47047881885e-05	-1.94574885982e-05
+UniRef50_F7Z9W9	Transposase	8.96458704271e-05	2.2205186778e-05	-6.74406836491e-05
+UniRef50_UPI00041D675E	DNA primase	3.35866750559e-06	3.93695014633e-06	5.7828264074e-07
+UniRef50_Q6Z5U8		0.000680313186504	0.000521914648349	-0.000158398538155
+UniRef50_I3TMV8	Phosphoribosylformylglycinamidine synthase protein	0.000109734009961	5.63056938811e-05	-5.34283160799e-05
+UniRef50_UPI000406D548	hypothetical protein	7.69833893033e-05	5.50344431742e-05	-2.19489461291e-05
+UniRef50_Q8CNT0	Abortive phage resistance protein	0.0098942135046	0.00411971861189	-0.00577449489271
+UniRef50_UPI0003610508	hypothetical protein	9.21608645163e-05	2.93963939164e-05	-6.27644705999e-05
+UniRef50_A0A024IFX7		5.2348506908e-05	0.00379439805762	0.00374204955071
+UniRef50_S4X548	O acetylserine dependent cystathionine beta synthase	0.0246360035439	0.00777237761742	-0.0168636259265
+UniRef50_P0DC76	N utilization substance protein B homolog	0.00110334866358	0.00774683621263	0.00664348754905
+UniRef50_A4X990	Cobalamin synthesis protein, P47K	5.43176844442e-06	1.18232927224e-05	6.39152427798e-06
+UniRef50_S9TDP6	Proteophosphoglycan ppg3	7.6541798406e-05	0.000465274564787	0.000388732766381
+UniRef50_A9M1F1	Ferric enterobactin transporter binding protein	1.5285507377e-05	0.00162534217049	0.00161005666311
+UniRef50_UPI0003B45A90	cytochrome C oxidase	2.86529933905e-06	2.6050401202e-05	2.31851018629e-05
+UniRef50_B0VKG9		3.61731445806e-05	0.000103321865681	6.71487211004e-05
+UniRef50_A6M1U3	Response regulator receiver protein	0.000573514395093	0.00065631404195	8.2799646857e-05
+UniRef50_M9R1A8		0.00010607212978	7.10948993649e-05	-3.49772304151e-05
+UniRef50_R4K891	rRNA methylase	0.000167771550603	0.000256425503788	8.8653953185e-05
+UniRef50_S9QSU8	DNA polymerase III, beta subunit	0.00704671175177	0.00310655056767	-0.0039401611841
+UniRef50_UPI0003825004	hypothetical protein	0.000205302863325	6.72658797193e-05	-0.000138036983606
+UniRef50_A5VZZ2	Cyclic pyranopterin monophosphate synthase	0.000236911298339	0.000317266707001	8.0355408662e-05
+UniRef50_H3XB68	YhgE Pip C terminal domain protein	0.0162104351988	0.00337409065168	-0.0128363445471
+UniRef50_D8HBY6		0.00990628747066	0.000805343386522	-0.00910094408414
+UniRef50_A0A032VR07		0.00952389555968	0.000806062850735	-0.00871783270894
+UniRef50_Q5HR98	UDP N acetyl D mannosamine transferase	0.0101178003165	0.0024694031881	-0.0076483971284
+UniRef50_M2I9S9		0.000563411923659	0.000711606518538	0.000148194594879
+UniRef50_R1D153		0.000954834283356	4.43976776073e-05	-0.000910436605749
+UniRef50_Q07417	Short chain specific acyl CoA dehydrogenase, mitochondrial	1.18623500481e-05	4.52552076834e-05	3.33928576353e-05
+UniRef50_W4TL26		0.000139205042914	0.000329647337439	0.000190442294525
+UniRef50_A3NXX0	Cytidylate kinase	9.21545642789e-06	0.00491395256901	0.00490473711258
+UniRef50_R7D247	Oxidoreductase short chain dehydrogenase reductase family protein	0.00311868194033	0.00096247304246	-0.00215620889787
+UniRef50_A8MH33	Phospho N acetylmuramoyl pentapeptide transferase	7.50793313504e-06	1.52173379182e-05	7.70940478316e-06
+UniRef50_UPI000464379E	DNA mismatch repair protein Vsr	1.0541421145e-05	6.5803724269e-05	5.5262303124e-05
+UniRef50_UPI00035EB80A	hypothetical protein	1.42600425103e-05	1.16230705833e-05	-2.636971927e-06
+UniRef50_K6EM35	DEAD DEAH box helicase	1.08439223771e-06	3.27575224684e-05	3.16731302307e-05
+UniRef50_UPI00028A299B	deoxyribonucleotide triphosphate pyrophosphatase	6.55068632452e-06	1.24763887995e-05	5.92570247498e-06
+UniRef50_I7HG53	Penicillin binding protein	0.000141560784841	0.00434561570214	0.0042040549173
+UniRef50_E2X4D1		0.000320907874997	0.000852014557138	0.000531106682141
+UniRef50_Q02IQ8		0.00018571363304	0.000144522502443	-4.1191130597e-05
+UniRef50_R4RFT5	3 oxoacyl [acyl carrier protein] synthase 3	0.000405422601424	0.00640143485144	0.00599601225002
+UniRef50_M0SUV4		2.01841312353e-05	5.09695283423e-05	3.0785397107e-05
+UniRef50_O31776	L threonine 3 dehydrogenase	5.64158826333e-06	4.68237030175e-05	4.11821147542e-05
+UniRef50_A8AW17	Cell division protein ftsA	0.00796597623952	0.00333844878707	-0.00462752745245
+UniRef50_UPI0003754678	hypothetical protein, partial	5.33893601912e-05	2.8768124341e-05	-2.46212358502e-05
+UniRef50_O86018	GroESL operon, partial sequence. 	4.46003321695e-05	0.00026496189759	0.000220361565421
+UniRef50_P9WGZ8	Ribonuclease J	0.000326626648787	0.00542626754707	0.00509964089828
+UniRef50_X1R855	Marine sediment metagenome DNA, contig	1.63500340257e-05	3.96915548909e-05	2.33415208652e-05
+UniRef50_P33362	Putative osmoprotectant uptake system substrate binding protein OsmF	0.00123993949482	0.00061897148499	-0.00062096800983
+UniRef50_P50107	Lactoylglutathione lyase	7.2768919145e-06	1.60619398382e-05	8.7850479237e-06
+UniRef50_D4H934	DNA binding helix turn helix protein	0.000265949721148	0.00882892694115	0.00856297722
+UniRef50_UPI0004786584	hypothetical protein	6.23613550185e-07	8.93333448607e-05	8.87097313105e-05
+UniRef50_P77319	Chaperone protein HscC	0.0022052610613	0.000755929562201	-0.0014493314991
+UniRef50_A8EWD3	UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000202949456367	0.00240083105717	0.0021978816008
+UniRef50_Q87VD5	Glutamate ammonia ligase adenylyltransferase	0.000556645922626	0.000123520421499	-0.000433125501127
+UniRef50_Q02ID7	7 carboxy 7 deazaguanine synthase	0.00118059889226	0.00646815487788	0.00528755598562
+UniRef50_A9I0G7	Orotate phosphoribosyltransferase	0.0037843849584	0.000419307505292	-0.00336507745311
+UniRef50_F8FNN8	YbaR	0.0292391920903	0.0364224380777	0.0071832459874
+UniRef50_A6LZF6	Transcriptional regulator, XRE family	0.00040735898078	0.00151164968918	0.0011042907084
+UniRef50_H0HX43	Transposase	1.48775538787e-05	4.90979575359e-05	3.42204036572e-05
+UniRef50_V9AHX5	PF12266 family protein	4.8701666323e-05	0.00100682866465	0.000958126998327
+UniRef50_B9DW70	DNA mismatch repair protein MutL	0.00594288439686	0.00262201802624	-0.00332086637062
+UniRef50_M8SYD2		3.92585912343e-05	8.3244671013e-05	4.39860797787e-05
+UniRef50_UPI00045E6B47	Fis family transcriptional regulator	2.40798265933e-05	3.80250706568e-05	1.39452440635e-05
+UniRef50_A5UMR0	Thiamine monphosphate kinase, ThiL	0.00157722361694	0.000534201632247	-0.00104302198469
+UniRef50_C1FHC6	Predicted protein	2.01109125958e-05	0.000963300793573	0.000943189880977
+UniRef50_L7WU68	Precorrin 2 dehydrogenase	0.0116835812124	0.0116723705241	-1.12106883e-05
+UniRef50_UPI00037FCE7E	hypothetical protein, partial	1.42571754891e-06	4.76052131163e-06	3.33480376272e-06
+UniRef50_J6MTI6		0.00879421180364	0.00164756192873	-0.00714664987491
+UniRef50_Q9KV18	Putative ribosome biogenesis GTPase RsgA	0.00206445193545	0.0040782409254	0.00201378898995
+UniRef50_UPI0003760B8C	hypothetical protein	8.22771995326e-05	4.57790021053e-05	-3.64981974273e-05
+UniRef50_UPI0003FB1D7B	hypothetical protein	4.3997779812e-06	0.000196860050102	0.000192460272121
+UniRef50_UPI00047AC70D	hypothetical protein	2.44721652517e-06	7.73612441828e-06	5.28890789311e-06
+UniRef50_A4XP48	Glutamate  putrescine ligase	0.00133240539279	0.000725164600672	-0.000607240792118
+UniRef50_L1KHU2		0.00132027117581	0.000530192149453	-0.000790079026357
+UniRef50_UPI0004280637	5 nucleotidase	2.09467522568e-06	0.000186577618849	0.000184482943623
+UniRef50_A1TL07	Phosphoribosyl AMP cyclohydrolase	2.42246028509e-05	2.16911203011e-05	-2.5334825498e-06
+UniRef50_A0ALI9	NLP P60 family protein	3.02842799869e-05	0.00106018823997	0.00102990395998
+UniRef50_Q6A964	Glycine  tRNA ligase	0.000369458045884	0.00620760084721	0.00583814280133
+UniRef50_P75030	Urease subunit gamma	0.000228775385315	0.000278430288296	4.9654902981e-05
+UniRef50_G0DXU0		0.00063712318923	0.00717982706466	0.00654270387543
+UniRef50_UPI00036F5C26	hypothetical protein, partial	0.000150962244195	5.37267459149e-05	-9.72354982801e-05
+UniRef50_A0A017HQ29		3.3840152443e-06	1.72669400636e-06	-1.65732123794e-06
+UniRef50_R6TVK2	Aldehyde dehydrogenase A	0.00238425112088	0.000520546726894	-0.00186370439399
+UniRef50_P77522	FeS cluster assembly protein SufB	0.002194884004	0.00489967365281	0.00270478964881
+UniRef50_UPI00029A24D2	acyl CoA dehydrogenase	4.309022075e-06	6.86808408551e-06	2.55906201051e-06
+UniRef50_Q8ERS7	Bis tetraphosphatase PrpE [asymmetrical]	3.28643635132e-05	0.000796766116559	0.000763901753046
+UniRef50_Q55738	DNA gyrase subunit A	5.6300028786e-06	1.28834540842e-05	7.2534512056e-06
+UniRef50_UPI00046F2BB5	chromosomal replication initiation protein, partial	6.24353061092e-06	2.12836954623e-05	1.50401648514e-05
+UniRef50_A3PFT2	Sulfoxide reductase heme binding subunit YedZ	0.0102911880121	0.00160284365739	-0.00868834435471
+UniRef50_UPI00047E1D32	iron transporter FeoB	7.30384168488e-06	3.77573686919e-06	-3.52810481569e-06
+UniRef50_Q5X1A0	Ribosomal RNA large subunit methyltransferase E	0.00501580223808	0.00878000365372	0.00376420141564
+UniRef50_UPI0003113A1C	hypothetical protein	4.93465890176e-05	8.76729481496e-05	3.8326359132e-05
+UniRef50_UPI000424F2DF	hypothetical protein	1.57351742057e-05	8.87868259603e-06	-6.85649160967e-06
+UniRef50_P45527		0.0127285823465	0.00367660677636	-0.00905197557014
+UniRef50_UPI000344EADE	thioredoxin	0.00027198151641	0.000536984920001	0.000265003403591
+UniRef50_E2ZZT1	Type I ferripyoverdine receptor, FpvB	0.00062425813578	0.0001680055727	-0.00045625256308
+UniRef50_UPI0004630EAC	hypothetical protein	5.94956593079e-05	3.52127009707e-05	-2.42829583372e-05
+UniRef50_P46125	Inner membrane protein YedI	0.00431975865781	0.00151175354775	-0.00280800511006
+UniRef50_D4DXV5	Type III restriction enzyme, res subunit	0.00159672408566	0.000446443165814	-0.00115028091985
+UniRef50_UPI00037CF6F9	nitrate ABC transporter ATP binding protein	4.3460363266e-05	1.287005905e-05	-3.0590304216e-05
+UniRef50_M9VF54	5 formyltetrahydrofolate cyclo ligase	0.000446728980886	0.00339413890867	0.00294740992778
+UniRef50_UPI00026CD1F6	transposase IS3 IS911 family protein	4.20943527516e-05	6.41314270505e-05	2.20370742989e-05
+UniRef50_B7GKM4	NADH dehydrogenase, FAD containing subunit	0.00395064786358	0.000891817979781	-0.0030588298838
+UniRef50_C6HWC8	Glutamate dehydrogenase	8.45171261952e-07	6.19806783192e-06	5.35289656997e-06
+UniRef50_UPI00047D654A	8 amino 7 oxononanoate synthase	3.33820943951e-05	5.17454296682e-05	1.83633352731e-05
+UniRef50_A5UKW4	Dihydrolipoamide dehydrogenase	0.00224504898119	0.000332407356562	-0.00191264162463
+UniRef50_Q832Z5	Ribose phosphate pyrophosphokinase 2	0.00594965991736	0.00139032658826	-0.0045593333291
+UniRef50_Q9RUT4		9.76256867702e-05	0.0349363729666	0.0348387472798
+UniRef50_UPI00038FBDD6	UPF0135 protein BH1380	1.48526971285e-05	1.09039070798e-05	-3.9487900487e-06
+UniRef50_Q5L3C1	Heptaprenylglyceryl phosphate synthase	0.0137927109517	0.00485487033369	-0.00893784061801
+UniRef50_I4F0A8		0.000220565278525	7.76581089855e-05	-0.00014290716954
+UniRef50_J9YQH5	PTS system transporter subunit IIBC	0.000279484325444	0.000129524870691	-0.000149959454753
+UniRef50_D3V6J7		0.000171907562261	0.00234371663499	0.00217180907273
+UniRef50_A1SKT2		3.22159987012e-05	9.4674236784e-05	6.24582380828e-05
+UniRef50_UPI00047E9906	methionine aminopeptidase	2.30407798864e-05	1.27104351497e-05	-1.03303447367e-05
+UniRef50_UPI00021A445D	PREDICTED	8.64995647575e-06	3.88653152084e-05	3.02153587326e-05
+UniRef50_A6M169	Transmembrane protein	0.000211087783962	0.000818432552111	0.000607344768149
+UniRef50_P58696	Asparagine  tRNA ligase	3.02253144633e-05	0.00595329403583	0.00592306872137
+UniRef50_F0PD68	Fructokinase	0.000737291825313	0.00393238749438	0.00319509566907
+UniRef50_P24242	HTH type transcriptional regulator AscG	0.00460157237382	0.000526254894912	-0.00407531747891
+UniRef50_G4E3T8	Putative solute symporter protein	1.90333193413e-05	5.37310786893e-05	3.4697759348e-05
+UniRef50_UPI00036ED55B	hypothetical protein	0.000135862715917	1.9327338592e-05	-0.000116535377325
+UniRef50_I6SVK1	Putative transcriptional regulator	0.00184419286763	0.000214256376199	-0.00162993649143
+UniRef50_UPI00032A2B8F		6.87453639372e-05	0.00112799947878	0.00105925411484
+UniRef50_A5UMS2	Predicted DNA binding protein	0.00255817467002	0.00156406705021	-0.00099410761981
+UniRef50_L7WZG7	BirA bifunctional protein	0.0180208431651	0.00740753401297	-0.0106133091521
+UniRef50_Q9RZR4		5.54582745574e-05	0.0302559043963	0.0302004461217
+UniRef50_UPI0003780887	hypothetical protein	5.31543062983e-06	1.02129340483e-05	4.89750341847e-06
+UniRef50_Q6F0T3	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO 2	1.26833734559e-05	1.01867889339e-05	-2.496584522e-06
+UniRef50_A2RF77	UPF0342 protein SpyM51181	0.000695866054262	6.14075150183e-05	-0.000634458539244
+UniRef50_F1Z1C1	TIGR01906 family protein	2.25774079495e-05	1.72364044285e-05	-5.341003521e-06
+UniRef50_P37426	Ribonucleoside diphosphate reductase 1 subunit alpha	0.00253085217977	0.000809567738229	-0.00172128444154
+UniRef50_D3QGY3		0.00603252463098	0.000705763054916	-0.00532676157606
+UniRef50_UPI0003B78806	dihydrolipoamide dehydrogenase	2.81910875676e-06	6.04358031595e-06	3.22447155919e-06
+UniRef50_UPI00047995E8	potassium transporter	1.33189599745e-05	2.42800537047e-05	1.09610937302e-05
+UniRef50_UPI0000379B08	hypothetical protein	0.000788561535673	0.00124311861241	0.000454557076737
+UniRef50_W1UDI4		0.00177640465342	0.000711606518538	-0.00106479813488
+UniRef50_Q88ZS6	Glucosamine 6 phosphate deaminase	0.00786569421299	0.00975855637412	0.00189286216113
+UniRef50_A7HHV0		0.00063658958353	0.000330154796252	-0.000306434787278
+UniRef50_X0XC51	Marine sediment metagenome DNA, contig	1.79999834953e-06	8.43793196406e-06	6.63793361453e-06
+UniRef50_P0AEK2	3 oxoacyl [acyl carrier protein] reductase FabG	0.000331598992002	0.00362724289278	0.00329564390078
+UniRef50_V8FZY5	Histidine kinase	0.000129571849717	0.00189074750183	0.00176117565211
+UniRef50_Q9XAR5	NADH quinone oxidoreductase subunit L	0.000201701098746	0.0101841890695	0.00998248797075
+UniRef50_Q53178	Cytochrome c type protein NapC	0.0168376407817	0.00481472865397	-0.0120229121277
+UniRef50_U6I176	Nucleoside diphosphate kinase	8.90647370853e-06	1.51968441378e-05	6.29037042927e-06
+UniRef50_UPI0004726D5E	amino acid permease	3.31078158842e-06	2.07785460556e-05	1.74677644672e-05
+UniRef50_U3T2J2	S8 S53 family peptidase	0.000236205835381	0.00138802323788	0.0011518174025
+UniRef50_B1IMN8	Exodeoxyribonuclease 7 large subunit	0.000486634798018	0.00181646193523	0.00132982713721
+UniRef50_C4TE51	Non ribosomal peptide synthetase 	0.000322161316393	0.000129899549467	-0.000192261766926
+UniRef50_A6M093		0.000635705284803	0.000909771765783	0.00027406648098
+UniRef50_B9E104	1 deoxy D xylulose 5 phosphate synthase	0.000282209324565	0.00188268109063	0.00160047176607
+UniRef50_UPI000425BC50	tartrate dehydrogenase	6.71102796659e-05	5.54985291652e-05	-1.16117505007e-05
+UniRef50_D8JLT1	Cyanide insensitive terminal oxidase	0.000103138248322	0.00520480541534	0.00510166716702
+UniRef50_UPI00044067F2	PREDICTED	6.91579781683e-06	2.40413670135e-06	-4.51166111548e-06
+UniRef50_V4RP20		1.63603309111e-05	8.48396015568e-06	-7.87637075542e-06
+UniRef50_Q3A9L0	3 methyl 2 oxobutanoate hydroxymethyltransferase	2.25492943861e-05	2.23974399198e-05	-1.518544663e-07
+UniRef50_P35450	Elongation factor G, chloroplastic 	2.81349798471e-05	9.46761059615e-05	6.65411261144e-05
+UniRef50_Q75JD5	Phosphoenolpyruvate carboxykinase [ATP]	1.02740654968e-05	0.000133142198032	0.000122868132535
+UniRef50_Q2NBQ3	Acyl carrier protein	0.000600574589762	0.000723224584158	0.000122649994396
+UniRef50_N9WEN9		1.638328862e-05	1.22819883803e-05	-4.1013002397e-06
+UniRef50_R1DJF2		6.02867697897e-05	4.94710712632e-05	-1.08156985265e-05
+UniRef50_Q5QU71		1.9843216055e-05	1.33051948491e-05	-6.5380212059e-06
+UniRef50_B6IQY7	Potassium transporting ATPase C chain	1.93222982665e-06	0.000305885613509	0.000303953383682
+UniRef50_Q5LMZ8	Lipoprotein, putative	0.00669305513444	0.00669106970626	-1.98542818e-06
+UniRef50_P76938	Elongation factor P hydroxylase	0.00331194357482	0.00057158071973	-0.00274036285509
+UniRef50_UPI0003801D4F	hypothetical protein	5.4750036738e-06	3.94985385028e-05	3.4023534829e-05
+UniRef50_F4A6Q6	Homoserine dehydrogenase	0.000464628869536	0.000327546700935	-0.000137082168601
+UniRef50_A3PR64	Transcriptional regulator, TetR family	0.00639075890412	0.000604684459685	-0.00578607444443
+UniRef50_I6TVX8		0.00769598861689	0.00294558827978	-0.00475040033711
+UniRef50_UPI000174552F	ribonuclease III	1.23602613189e-05	1.37482742541e-05	1.3880129352e-06
+UniRef50_S1SWX2	Serine phosphatase RsbU, regulator of sigma subunit	0.000166006318407	0.000102776497683	-6.3229820724e-05
+UniRef50_A6LVE7	Multi sensor hybrid histidine kinase	0.000377015750433	0.000755862401371	0.000378846650938
+UniRef50_F7WGV5		2.68025521131e-05	0.000197536257659	0.000170733705546
+UniRef50_E1VBD1	Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00111140344635	0.000208950498955	-0.000902452947395
+UniRef50_P45148	Carbonic anhydrase 2	0.00379259477021	8.28325376683e-05	-0.00370976223254
+UniRef50_P26410	Hydrogenase nickel incorporation protein HypB	0.0105157348383	0.00187217868679	-0.00864355615151
+UniRef50_Q8FD60	N acetylmannosamine kinase	0.00363085074547	0.000202966807698	-0.00342788393777
+UniRef50_UPI0003945864	PREDICTED	3.08064589258e-06	2.92379467526e-06	-1.5685121732e-07
+UniRef50_UPI0002D3C2A9	MULTISPECIES	1.71413965814e-05	1.90291582421e-05	1.8877616607e-06
+UniRef50_UPI0004009643	triosephosphate isomerase	1.41242434395e-05	3.46680699944e-05	2.05438265549e-05
+UniRef50_U6HBJ2	2 amino 3 ketobutyrate coenzyme A ligase	8.8164978824e-05	1.06969564153e-05	-7.74680224087e-05
+UniRef50_F1ZDB1		3.43451518249e-05	1.59729804885e-05	-1.83721713364e-05
+UniRef50_Q5HFW6	CCA adding enzyme	0.0202562764823	0.00552434820371	-0.0147319282786
+UniRef50_I0C1Q8	Membrane lipoprotein	0.000226105212186	5.0534525294e-05	-0.000175570686892
+UniRef50_M9VIA3		0.00014334910969	0.00910784166428	0.00896449255459
+UniRef50_P0A957	KHG KDPG aldolase	0.00369856599315	0.000368759639664	-0.00332980635349
+UniRef50_I0EP41	Outer membrane protein P1	0.00014152966364	0.0029398597359	0.00279833007226
+UniRef50_UPI00036E82C7	hypothetical protein	9.26864831832e-06	0.000322827463534	0.000313558815216
+UniRef50_O07603	Putative aminopeptidase YhfE	0.00857580652702	0.00593408679096	-0.00264171973606
+UniRef50_D8TJY5		1.19851500528e-05	7.49333306713e-06	-4.49181698567e-06
+UniRef50_UPI0003AF1724	PREDICTED	5.77795349287e-05	0.000186287283038	0.000128507748109
+UniRef50_Q1QU74	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.72652167609e-05	0.000358156489471	0.00034089127271
+UniRef50_Q6FCN6	tRNA  ) methyltransferase	0.000256212209626	0.00849171418077	0.00823550197114
+UniRef50_UPI00047DEB0D	hypothetical protein	4.52367962977e-06	0.000617534076128	0.000613010396498
+UniRef50_UPI0004785335	hypothetical protein	1.82122398656e-05	4.0466542554e-05	2.22543026884e-05
+UniRef50_UPI0003690A51	hypothetical protein	1.37397559538e-05	1.59597392021e-05	2.2199832483e-06
+UniRef50_A0A035VZY3		0.000585156271758	0.000307131509617	-0.000278024762141
+UniRef50_A8FBX4	3 oxoacyl [acyl carrier protein] synthase 3	0.000122094595367	3.53406750296e-05	-8.67539203374e-05
+UniRef50_UPI00037C1BAA	hypothetical protein	5.34376118582e-05	5.86476080023e-06	-4.7572851058e-05
+UniRef50_B1M613	GntR domain protein	0.00263808013418	0.00106454292821	-0.00157353720597
+UniRef50_R7PTP8		0.00199189146274	0.000248165298485	-0.00174372616425
+UniRef50_P0A0T2	Lactoylglutathione lyase	0.00013613610624	0.00275124955612	0.00261511344988
+UniRef50_Q0FYC5		8.26531849996e-05	0.000340338832007	0.000257685647007
+UniRef50_UPI00036FE1F3	hypothetical protein	5.83821530933e-06	3.42435388057e-05	2.84053234964e-05
+UniRef50_A3PL07	Isopentenyl diphosphate Delta isomerase	0.0111087583992	0.00641128999484	-0.00469746840436
+UniRef50_A3PRG0		0.00083672077002	0.000985325696855	0.000148604926835
+UniRef50_A7ZM51	Voltage gated ClC type chloride channel ClcB	0.000926872944512	0.000808875892042	-0.00011799705247
+UniRef50_O07631	GTP binding protein TypA BipA homolog	0.0226456624636	0.00692764458553	-0.0157180178781
+UniRef50_V0KMQ9	Pyruvate	0.00257194294777	0.000921906527381	-0.00165003642039
+UniRef50_M4NGZ8	ATP dependent zinc metalloprotease FtsH	0.000693778316813	0.00366050917015	0.00296673085334
+UniRef50_Q7VFS3	NADH quinone oxidoreductase subunit B	2.71711053829e-05	0.000189596656067	0.000162425550684
+UniRef50_UPI0002F2BA6C	phosphoglyceromutase	1.65574222083e-05	1.65738181424e-05	1.63959341e-08
+UniRef50_X1FPD3	Marine sediment metagenome DNA, contig	6.87964836561e-06	7.59979584973e-06	7.2014748412e-07
+UniRef50_O27906	CoB  CoM heterodisulfide reductase iron sulfur subunit C	0.00202701179436	0.000173206278698	-0.00185380551566
+UniRef50_K2AN26		1.73297512937e-05	3.21869275367e-05	1.4857176243e-05
+UniRef50_I4GV48		2.48062101151e-06	3.33649226382e-06	8.5587125231e-07
+UniRef50_F0RC69		2.00433523731e-06	2.46233829052e-05	2.26190476679e-05
+UniRef50_X5EHY0	Sodium hydrogen exchanger family protein	0.0210619565628	0.00733053838988	-0.0137314181729
+UniRef50_A6LVZ4	Glycerol 1 phosphate dehydrogenase (+))	0.00066279883438	0.000678200889273	1.5402054893e-05
+UniRef50_A8ZUH7	Holliday junction ATP dependent DNA helicase RuvB	1.55527721116e-05	9.46713363959e-06	-6.08563847201e-06
+UniRef50_B9NXF6	Plasmid partitioning protein RepA	0.000333308458276	0.000106249749494	-0.000227058708782
+UniRef50_UPI0003F56407	hypothetical protein	5.17218252234e-06	1.075876593e-05	5.58658340766e-06
+UniRef50_B9KYR9	Polyribonucleotide nucleotidyltransferase	0.000527091752672	0.00326769737766	0.00274060562499
+UniRef50_Q7U9I1	Ribonuclease PH	7.65695853346e-06	2.11686589682e-05	1.35117004347e-05
+UniRef50_U5UJE9		0.0180600207159	0.00389625051803	-0.0141637701979
+UniRef50_A6LVF8	Signal transduction histidine kinase, LytS	0.000210856006213	0.000729932545394	0.000519076539181
+UniRef50_C0Z7Z0	Formamidopyrimidine DNA glycosylase	6.30584853844e-06	0.000435971349292	0.000429665500754
+UniRef50_W7Z395	Cold shock DEAD box protein A	8.90717327312e-06	1.138993359e-05	2.48276031688e-06
+UniRef50_Q3ZXC2	1 deoxy D xylulose 5 phosphate synthase	2.78982478667e-06	9.67666088446e-05	9.39767840579e-05
+UniRef50_I0KD42		8.63919048438e-05	2.80825071437e-05	-5.83093977001e-05
+UniRef50_Y3FJT1		0.004216438889	0.000300322073074	-0.00391611681593
+UniRef50_V4VCN9		0.00016508133623	3.27259672642e-06	-0.000161808739504
+UniRef50_Q6AHE8	Glutamate 1 semialdehyde 2,1 aminomutase	7.1248763967e-06	3.65273912647e-05	2.9402514868e-05
+UniRef50_S1HH61	Cyclic di GMP binding protein	0.00547941209687	0.00142553044142	-0.00405388165545
+UniRef50_L5QQP7	Type I restriction modification DNA specificity domain protein	0.000396974130375	0.00355308990285	0.00315611577247
+UniRef50_P55222	Cyclic AMP receptor like protein	0.000593084818241	0.000431119277652	-0.000161965540589
+UniRef50_C6SU58	Bacteriocin operon protein ScnE homolog	0.0051498495613	0.000696238046426	-0.00445361151487
+UniRef50_Q1Q2Q1		2.23583800242e-05	3.06716228936e-05	8.3132428694e-06
+UniRef50_Q7VIT0	1 deoxy D xylulose 5 phosphate reductoisomerase	0.000445958476869	0.00655205534562	0.00610609686875
+UniRef50_UPI0003AD0F18	hypothetical protein	1.51962883634e-05	3.04422987284e-05	1.5246010365e-05
+UniRef50_H2K2L5	Anti sigma factor	2.87028174756e-05	0.00140606938378	0.0013773665663
+UniRef50_B9E8P7		0.0117585639058	0.00363372371757	-0.00812484018823
+UniRef50_UPI00045E98AE	hypothetical protein	2.17673155582e-06	4.38527923101e-06	2.20854767519e-06
+UniRef50_Q3IUW6	Putative conjugative transfer factor, TraB	0.00586413496936	0.00138521226105	-0.00447892270831
+UniRef50_A3JQQ6		9.05133237508e-06	5.71553800739e-06	-3.33579436769e-06
+UniRef50_B1JLB8		0.00129331771088	0.00158343711284	0.00029011940196
+UniRef50_A1B1W2		0.000308728681172	4.12145865429e-05	-0.000267514094629
+UniRef50_P64543		0.000828479400653	0.000851875111142	2.3395710489e-05
+UniRef50_B0KJ12	KAP P loop domain protein	9.15918502187e-06	0.00130775344652	0.0012985942615
+UniRef50_J7MB46	Quinolone resistance protein	0.000809880982916	0.0015087873687	0.000698906385784
+UniRef50_A0A058ZI44		5.48959453517e-05	5.39378129694e-05	-9.581323823e-07
+UniRef50_UPI0004756747	6,7 dimethyl 8 ribityllumazine synthase	1.8030550393e-05	2.82858879607e-05	1.02553375677e-05
+UniRef50_E6MX89		0.000748941698309	0.0412613346166	0.0405123929183
+UniRef50_Q38V64	Alanine racemase	1.29249195263e-05	0.00219934897039	0.00218642405086
+UniRef50_Q8XV10	Elongation factor G 1	0.000258038355446	0.0135612186774	0.013303180322
+UniRef50_E7IEY2		0.000138415488225	2.67370526219e-05	-0.000111678435603
+UniRef50_K7SMY3	Phosphoglycerate mutase family protein	0.000794707344946	0.009442226434	0.00864751908905
+UniRef50_A5IPM4		0.0160587725539	0.00557751520879	-0.0104812573451
+UniRef50_UPI00039C12F7	hypothetical protein	9.40642543756e-05	2.29309603022e-05	-7.11332940734e-05
+UniRef50_UPI000373BCBB	hypothetical protein	5.46306918626e-06	7.76895718027e-06	2.30588799401e-06
+UniRef50_H5M601	Beta galactosidase small chain family protein	0.00211102532133	0.000338502154399	-0.00177252316693
+UniRef50_UPI0002374DEC	ABC transporter, permease ATP binding protein	6.04482510819e-06	1.16327372381e-05	5.58791212991e-06
+UniRef50_B3CQC3	Phosphoglycerate kinase	2.60933511721e-05	2.65253410208e-05	4.319898487e-07
+UniRef50_Q2K5Z5	Leucine responsive transcriptional regulator protein, AsnC family	0.0186330557244	0.00178918484814	-0.0168438708763
+UniRef50_Q2YZ71	Imidazole glycerol phosphate synthase subunit HisF	0.0288196427476	0.00322805593995	-0.0255915868076
+UniRef50_B2SII2	Glycine  tRNA ligase alpha subunit	0.0123748733341	0.0147236726277	0.0023487992936
+UniRef50_UPI00039E6CDE	50S ribosomal protein L17	1.11967442657e-05	7.20993760686e-05	6.09026318029e-05
+UniRef50_UPI0003F05D85	PREDICTED	1.78195132838e-05	0.000345589255063	0.000327769741779
+UniRef50_Q28RK4	Orotate phosphoribosyltransferase	0.000111220159952	5.91975211019e-05	-5.20226388501e-05
+UniRef50_Q5HM44	Zinc type alcohol dehydrogenase like protein SERP1785	0.0234720409477	0.00754857999409	-0.0159234609536
+UniRef50_A3PRI0	Forkhead associated protein	0.000768581913618	0.000145955537989	-0.000622626375629
+UniRef50_UPI00047CBFD0	hypothetical protein	0.00038753355487	0.000146293075096	-0.000241240479774
+UniRef50_B5F731	Non specific ribonucleoside hydrolase RihC	0.00313533492155	0.000407333386473	-0.00272800153508
+UniRef50_P0AFI1	Probable oxalyl CoA decarboxylase	0.0021352762228	0.000797929980985	-0.00133734624181
+UniRef50_B4EX96	HTH type transcriptional regulator BetI	0.0119489730753	0.00139318247705	-0.0105557905983
+UniRef50_B4RQ09	PglB	9.28244234828e-05	0.00232654876292	0.00223372433944
+UniRef50_A0A023KRT9		0.00233754801327	0.0003565191612	-0.00198102885207
+UniRef50_A0A046SJ38	PE PGRS family protein PE_PGRS54	5.01645641543e-07	2.14054200114e-06	1.6388963596e-06
+UniRef50_UPI000360B5E8	hypothetical protein	4.64195982495e-06	7.58066416452e-06	2.93870433957e-06
+UniRef50_UPI0003C15BBB		8.84322945304e-06	2.70551086603e-06	-6.13771858701e-06
+UniRef50_A6LRJ1	Amino acid permease associated region	0.000432414948181	0.00134089189795	0.000908476949769
+UniRef50_UPI0004791D16	hypothetical protein	2.29303341488e-05	5.45545329802e-05	3.16241988314e-05
+UniRef50_Q49YA1	Uroporphyrinogen III synthase	0.00739001850706	0.00113501117807	-0.00625500732899
+UniRef50_Q89EB1	Bll7176 protein	0.00767217901022	0.00224520260367	-0.00542697640655
+UniRef50_Q6F885		0.000294910928794	0.00647658193312	0.00618167100433
+UniRef50_R9YS82	tRNA threonylcarbamoyl adenosine modification protein YeaZ	0.0240280820458	0.00855779619975	-0.015470285846
+UniRef50_X1ABS4	Marine sediment metagenome DNA, contig	3.99884952848e-05	3.63689403977e-05	-3.6195548871e-06
+UniRef50_Q5HL89		0.00947641034654	0.00353413568556	-0.00594227466098
+UniRef50_W0NHL6	Branched chain amino acid ABC transporter ATP binding protein	0.00997378282825	0.00274964161527	-0.00722414121298
+UniRef50_Q9ZKU5	Acetate kinase	0.00095828622276	0.00456224764565	0.00360396142289
+UniRef50_A3PP96	TonB dependent siderophore receptor	0.0109029725924	0.00201798695158	-0.00888498564082
+UniRef50_UPI000349F59B	hypothetical protein	9.82989582285e-06	2.24207230432e-05	1.25908272204e-05
+UniRef50_B0KMS2		1.04417019246e-05	8.29103858392e-05	7.24686839146e-05
+UniRef50_UPI000369906D	hypothetical protein	0.000462492093701	0.000101742789409	-0.000360749304292
+UniRef50_X0ZTS5	Marine sediment metagenome DNA, contig	0.000446719007521	0.000342676011522	-0.000104042995999
+UniRef50_UPI00016A7F76	branched chain amino acid ABC transporter, ATP binding protein, putative, partial	0.000172634369719	5.79557177821e-05	-0.000114678651937
+UniRef50_Q28Q04	Phosphate ABC transporter membrane protein 2, PhoT family	0.00359254093474	0.000440137395082	-0.00315240353966
+UniRef50_A5ULX2	Adhesin like protein	0.00450304950556	0.0011305085534	-0.00337254095216
+UniRef50_M9VA38	Anchored repeat type ABC transporter, ATP binding subunit	0.000794399234004	0.00214980360775	0.00135540437375
+UniRef50_UPI000350B839	PREDICTED	0.0010021312947	0.00050641974357	-0.00049571155113
+UniRef50_UPI000377C272	hypothetical protein	7.02417672814e-06	2.13400455753e-06	-4.89017217061e-06
+UniRef50_G0DVM2	ABC transporter ATP binding protein	0.000371996109852	0.00559158482614	0.00521958871629
+UniRef50_UPI0003B35C64	MerR family transcriptional regulator	0.000179094947032	2.84034325442e-05	-0.000150691514488
+UniRef50_Q8FMG3	GTP cyclohydrolase 1	0.0068051226662	0.0043980082463	-0.0024071144199
+UniRef50_UPI0002D62563	hypothetical protein	0.000431990838211	5.9146847785e-05	-0.000372843990426
+UniRef50_A5ULL0	PyrE like protein	0.00365881650461	0.00134674446517	-0.00231207203944
+UniRef50_F2AIM9		0.00245026320497	0.0012905598376	-0.00115970336737
+UniRef50_A5UNK0	N acetyltransferase, GNAT family	0.00273621213779	0.00104158181736	-0.00169463032043
+UniRef50_G2SIS1	Gamma glutamyltransferase	0.000148645555952	0.00535202403857	0.00520337848262
+UniRef50_A6V4P3	Trans aconitate 2 methyltransferase	0.000421259974083	0.000938933079941	0.000517673105858
+UniRef50_UPI0002736FFE	GntR family transcriptional regulator	5.01361488927e-05	0.000122067286509	7.19311376163e-05
+UniRef50_R4K9K7		0.000268217239288	0.00154533666847	0.00127711942918
+UniRef50_B7A6L8		4.41067028242e-05	0.000699786618047	0.000655679915223
+UniRef50_A6UW73	Argininosuccinate lyase	0.00295695614437	0.00138190100552	-0.00157505513885
+UniRef50_B0VLA1		0.000171712260249	0.0059044610884	0.00573274882815
+UniRef50_Q46RL8	Trans feruloyl CoA synthase	7.10450418114e-05	0.00809788957508	0.00802684453327
+UniRef50_UPI00037F929E	hypothetical protein	7.52991739432e-06	2.5397030622e-05	1.78671132277e-05
+UniRef50_K5YBM6		6.0082264109e-05	7.0117833249e-05	1.003556914e-05
+UniRef50_R5ZXT3		7.84129352962e-06	1.27651696617e-05	4.92387613208e-06
+UniRef50_UPI0003F68FC8	hypothetical protein	4.98293520664e-06	2.79970255203e-05	2.30140903137e-05
+UniRef50_A5UKD8	Adhesin like protein	0.00221644117185	0.0007231065879	-0.00149333458395
+UniRef50_G7M5R9		0.000458179202255	0.00127204744013	0.000813868237875
+UniRef50_R5VLQ7	Predicted acyltransferase	0.000279619251005	0.00337504805937	0.00309542880837
+UniRef50_B0TI92	S adenosylmethionine decarboxylase proenzyme	0.0040729586849	0.00562030481807	0.00154734613317
+UniRef50_P37251	Acetolactate synthase large subunit	1.42796143058e-05	3.74434981121e-05	2.31638838063e-05
+UniRef50_M1PXL5	Sensor histidine kinase	0.000347352227904	0.00110573844036	0.000758386212456
+UniRef50_C2Z7L9		6.22343944084e-05	0.000739338656704	0.000677104262296
+UniRef50_E8SFE6		0.00780593506899	0.00356521842326	-0.00424071664573
+UniRef50_M4R5V1		0.000341631850066	0.00379064368286	0.00344901183279
+UniRef50_Q9Z8R3	DNA gyrase subunit B	6.09051204113e-06	1.75457671522e-05	1.14552551111e-05
+UniRef50_Q8FCZ8		0.00130033358621	0.000697598516207	-0.000602735070003
+UniRef50_Q8FIB4		0.00322946452092	0.000661381253552	-0.00256808326737
+UniRef50_W8T781	Enterobactin synthase	7.64199186819e-05	0.000138450791829	6.20308731471e-05
+UniRef50_A9GRJ8		1.21864883278e-05	0.000626409934916	0.000614223446588
+UniRef50_Q9KD39	Putative GTP cyclohydrolase 1 type 2	9.29101982161e-06	0.000220660053703	0.000211369033881
+UniRef50_UPI0002FB4076	hypothetical protein	3.89553160012e-05	5.86104233824e-05	1.96551073812e-05
+UniRef50_B9KTP9	Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.00087481225201	0.000493470210772	-0.000381342041238
+UniRef50_UPI000350BA5C		5.29900924189e-06	7.26721007003e-06	1.96820082814e-06
+UniRef50_A8IG02	Phosphate starvation inducible protein	0.00812923575682	0.00348297700341	-0.00464625875341
+UniRef50_P77503		0.00347480436562	0.00494073766593	0.00146593330031
+UniRef50_Q8FK36	Cation efflux system protein CusA	0.000421167021005	0.000123514856297	-0.000297652164708
+UniRef50_K0C7J8	Glutathione S transferase domain protein	0.00223435732697	0.000370690424931	-0.00186366690204
+UniRef50_UPI0003C7F072	DNA binding protein	0.000162006688492	0.00111269118695	0.000950684498458
+UniRef50_Q9CJR2		0.000119987176185	0.00141222290873	0.00129223573255
+UniRef50_P77509		0.000543104811486	0.0005755298106	3.2424999114e-05
+UniRef50_B9KPE8		0.0100933085386	0.000574905051763	-0.00951840348684
+UniRef50_J9P5H2		4.84595718711e-05	0.000137250211555	8.87906396839e-05
+UniRef50_Q6FD84	Urease subunit beta	0.00153612540492	0.000579052363126	-0.000957073041794
+UniRef50_B9JTR3	ATP synthase gamma chain	0.00776772345897	0.000750842177285	-0.00701688128168
+UniRef50_UPI00040C67E8	hypothetical protein	5.20270139255e-05	7.73221387876e-05	2.52951248621e-05
+UniRef50_UPI00047E5667	PTS fructose transporter subunit IIBC	5.09837372503e-06	0.000378278982343	0.000373180608618
+UniRef50_A5UL83	30S ribosomal protein S3	0.00236489475572	0.00121828693992	-0.0011466078158
+UniRef50_C7N8H5	Lipoyltransferase and lipoate protein ligase	0.00573633539	0.00179093935162	-0.00394539603838
+UniRef50_UPI00047C1EB1	hypothetical protein	1.37364212615e-06	2.92557476167e-06	1.55193263552e-06
+UniRef50_M1BG02		8.73615990094e-07	1.70063429579e-05	1.61327269678e-05
+UniRef50_Q21Y67	ATP dependent Clp protease proteolytic subunit	8.63984350154e-06	0.000160692457284	0.000152052613782
+UniRef50_UPI0003C19464	PREDICTED	7.82982570874e-05	1.74076596667e-05	-6.08905974207e-05
+UniRef50_A5WGE7	1 deoxy D xylulose 5 phosphate reductoisomerase	0.000271778695192	0.00539467744712	0.00512289875193
+UniRef50_UPI0004407D87	hypothetical protein FOMMEDRAFT_83654	9.26572566966e-05	0.000343726909496	0.000251069652799
+UniRef50_G8W4V0	Aromatic amino acid transporter	0.00175660869402	0.000212203620496	-0.00154440507352
+UniRef50_Q04IT2	Segregation and condensation protein A	0.00321624152886	0.00267591608365	-0.00054032544521
+UniRef50_Q73YR0	FtsQ	2.31021089177e-05	2.69962151971e-05	3.8941062794e-06
+UniRef50_UPI0003818A60	hypothetical protein	1.47632401516e-05	1.60566958286e-05	1.293455677e-06
+UniRef50_A0RRT8	Imidazole glycerol phosphate synthase subunit HisF	0.00682627689427	0.00338360232196	-0.00344267457231
+UniRef50_UPI000255E8B6	molybdopterin molybdochelatase	7.92298501578e-06	1.5978580845e-05	8.05559582922e-06
+UniRef50_A9W3A9		5.63597684238e-05	1.22996209139e-05	-4.40601475099e-05
+UniRef50_H4PDP4	Integrase core domain protein	0.00301412334254	0.00180806146039	-0.00120606188215
+UniRef50_I6TUC0	UDP glucose 6 dehydrogenase	0.000608950878337	0.00131685031215	0.000707899433813
+UniRef50_Q9JWJ7	Ribosomal RNA small subunit methyltransferase I	0.00040555503329	0.00116852640315	0.00076297136986
+UniRef50_UPI00046E904F	allantoinase, partial	6.46328634424e-06	1.37995389956e-05	7.33625265136e-06
+UniRef50_Q0FVS1		3.70773414769e-05	1.57193413515e-05	-2.13580001254e-05
+UniRef50_D7GCL3	Cation transport protein	0.000747907192158	0.0035194524375	0.00277154524534
+UniRef50_F4BLG0		8.07432540743e-06	3.01031027507e-05	2.20287773433e-05
+UniRef50_D5C7M7	6 phospho alpha glucosidase	0.000613401120288	0.00294017768569	0.0023267765654
+UniRef50_X1Y8J9		6.99299033059e-06	1.39728562473e-05	6.97986591671e-06
+UniRef50_C1KVE4	Uridine kinase	0.0225478616875	0.0161253363425	-0.006422525345
+UniRef50_W8RU50	GTA host specificity protein	8.41663061186e-06	7.9391185713e-06	-4.7751204056e-07
+UniRef50_UPI0003EFB0C6	hypothetical protein, partial	8.03299795863e-05	4.08349777735e-06	-7.62464818089e-05
+UniRef50_O34436	Probable low affinity inorganic phosphate transporter	0.0265132166772	0.00727277337269	-0.0192404433045
+UniRef50_R0ZXH9		3.1244887706e-05	9.3936415809e-05	6.2691528103e-05
+UniRef50_Q9L7S0	3 sulfolactaldehyde reductase	0.00419477277585	0.00146917406662	-0.00272559870923
+UniRef50_Q9CMC7	tRNA dimethylallyltransferase	0.00442254404504	0.00095941948423	-0.00346312456081
+UniRef50_A3PLQ2	Glycoside hydrolase, family 16	0.00171565394798	0.000373031627616	-0.00134262232036
+UniRef50_Q9PMT4	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000250647684992	0.00459216815504	0.00434152047005
+UniRef50_UPI0002DDE806	hypothetical protein	4.88277720631e-05	1.73249803567e-05	-3.15027917064e-05
+UniRef50_A0A033NL01		0.000103362779302	1.7964420062e-05	-8.539835924e-05
+UniRef50_Q5HRE0	UPF0272 protein SERP0253	0.0121644600107	0.00300921628803	-0.00915524372267
+UniRef50_Q5HNA8		0.00879492359642	0.00184692369288	-0.00694799990354
+UniRef50_R4REY2		9.35959437895e-05	0.000207830890927	0.000114234947137
+UniRef50_A6M2K2	Methyl accepting chemotaxis sensory transducer	0.000215597116244	0.00137921739413	0.00116362027789
+UniRef50_Q89XS8	Branched chain amino acid transaminase	0.00786612504329	0.00231936364357	-0.00554676139972
+UniRef50_P0C2L2	Glutathione transport system permease protein GsiD	0.00197209305265	0.000233451940873	-0.00173864111178
+UniRef50_I4F571		0.000344983293	0.000144062992721	-0.000200920300279
+UniRef50_G7M5T5		0.000509441935021	0.000560459658694	5.1017723673e-05
+UniRef50_E8XP36	Outer membrane protein assembly factor BamC	0.00205858621324	0.000275996920751	-0.00178258929249
+UniRef50_UPI0003B65F02	3 hydroxyacyl CoA dehydrogenase	1.26027651884e-05	2.69618085624e-05	1.4359043374e-05
+UniRef50_UPI0003651249	hypothetical protein	0.000104693635558	5.58823125138e-05	-4.88113230442e-05
+UniRef50_D8JEK9	Phage related protein  family protein	0.00035201879381	0.00783711567608	0.00748509688227
+UniRef50_Q2W276		0.000132714905255	0.000110493452284	-2.2221452971e-05
+UniRef50_A6LX89	Elongation factor G, domain IV	0.000773205535494	0.000648277767855	-0.000124927767639
+UniRef50_UPI0001FFE2B2	MarR family transcriptional regulator	1.50351838174e-05	0.000117080923471	0.000102045739654
+UniRef50_UPI0003B50DDF	transposase	0.000188613600258	0.000170101437937	-1.8512162321e-05
+UniRef50_P39396	Inner membrane protein YjiY	0.00301120479254	0.00167419231318	-0.00133701247936
+UniRef50_UPI00047720D7	mannitol ABC transporter permease	0.000387679761388	0.000178484901848	-0.00020919485954
+UniRef50_UPI0004059D26	hypothetical protein	1.14764978599e-05	5.3870103275e-05	4.23936054151e-05
+UniRef50_I2NDA2	PF06738 domain protein	6.07945638739e-05	4.71042512946e-05	-1.36903125793e-05
+UniRef50_H8HC20	Rhodanese like domain protein	0.00300114682395	0.00110181953877	-0.00189932728518
+UniRef50_A7MGP9		0.000299592054644	0.000686783035329	0.000387190980685
+UniRef50_W5X3Y6	50S ribosomal protein L1	3.42040678106e-05	0.000302036460737	0.000267832392926
+UniRef50_Q46814	Probable hypoxanthine oxidase XdhD	0.00245513973548	0.000804560244025	-0.00165057949146
+UniRef50_UPI0003AF618D	PREDICTED	1.40825318871e-05	0.000129639478793	0.000115556946906
+UniRef50_B9T9T8		0.000200416346621	4.82091617308e-05	-0.00015220718489
+UniRef50_P76369		0.00278244392301	0.000299307471484	-0.00248313645153
+UniRef50_A0A023B4Y6		1.44340266822e-05	1.65926709305e-05	2.1586442483e-06
+UniRef50_Q88PG8	Dipeptide ABC transporter, periplasmic dipeptide binding protein	0.00147125311932	0.000742504450425	-0.000728748668895
+UniRef50_A5F3J8	30S ribosomal protein S7	0.0551593175362	0.0557451758787	0.0005858583425
+UniRef50_D4KTJ1	ABC type Fe3+ hydroxamate transport system, periplasmic component	0.000243459729101	0.00182230372662	0.00157884399752
+UniRef50_UPI0002F2DA04	hypothetical protein	2.07721582677e-05	8.40478702869e-06	-1.2367371239e-05
+UniRef50_P10346	Glutamine transport ATP binding protein GlnQ	0.00763480675589	0.00276649053952	-0.00486831621637
+UniRef50_A0RA50	Alcohol dehydrogenase, zinc containing protein	0.00100611995971	0.000179160791827	-0.000826959167883
+UniRef50_Z4CKX6		0.000238277775142	6.1503483509e-05	-0.000176774291633
+UniRef50_A8Y0M2	Protein CBG21728	0.000376653230877	0.000407252046241	3.0598815364e-05
+UniRef50_UPI00026573D2	PREDICTED	2.42271584122e-05	1.0628956714e-05	-1.35982016982e-05
+UniRef50_P27833	dTDP 4 amino 4,6 dideoxygalactose transaminase	0.002802401752	0.00046452078599	-0.00233788096601
+UniRef50_D3E2C7	RNA binding protein	0.00210425562608	0.000628310334557	-0.00147594529152
+UniRef50_UPI0003DEB96B	PREDICTED	5.11596203503e-05	6.93134371095e-05	1.81538167592e-05
+UniRef50_UPI00027F4AD8		0.000561400445783	0.000717068506854	0.000155668061071
+UniRef50_N1M8P2		0.000581519728681	0.000299865272711	-0.00028165445597
+UniRef50_D3ZUH5	Protein RGD1566084	1.93227575235e-05	9.168420621e-06	-1.01543369025e-05
+UniRef50_Q63NI4	Methionine import ATP binding protein MetN 2	0.000219608050819	8.84523200785e-06	-0.000210762818811
+UniRef50_UPI000367D0D4	hypothetical protein	4.00211803659e-05	6.30263613247e-05	2.30051809588e-05
+UniRef50_C0DRQ8		7.96543573264e-05	3.43539445801e-05	-4.53004127463e-05
+UniRef50_UPI0003B3FD89	ribonuclease E	7.87893460917e-06	3.23299969984e-06	-4.64593490933e-06
+UniRef50_Q8CMU9	Protein translocase subunit SecA 2	0.0256575032881	0.00545343430768	-0.0202040689804
+UniRef50_D5ALK5		0.00153500836213	0.000563990854904	-0.000971017507226
+UniRef50_P33234	HTH type transcriptional regulator AdiY	0.00654895919509	0.00298291729603	-0.00356604189906
+UniRef50_UPI0003B59851	alpha amylase	3.27064237454e-06	4.53503308009e-06	1.26439070555e-06
+UniRef50_UPI00037EDB2C	hypothetical protein	1.07268040385e-05	6.98923856825e-05	5.9165581644e-05
+UniRef50_Q8KE45	UPF0324 membrane protein CT0845	0.000300655877108	0.00147110814645	0.00117045226934
+UniRef50_G0DSM5	Phosphotransferase enzyme family protein	0.000335744749695	0.00469595653126	0.00436021178156
+UniRef50_UPI00037A1055	hypothetical protein	1.17830562925e-05	7.76230358328e-05	6.58399795403e-05
+UniRef50_A0A059DM35		1.34959902318e-05	7.0976116436e-05	5.74801262042e-05
+UniRef50_O86810	DNA translocase FtsK	0.000221840760214	0.00580795293583	0.00558611217562
+UniRef50_Q03PU9	DNA directed RNA polymerase subunit beta	0.000215529640536	0.000156615034484	-5.8914606052e-05
+UniRef50_UPI0003C10113		2.39757844185e-05	4.56746563182e-05	2.16988718997e-05
+UniRef50_W7WPQ3		0.00123012413117	0.00293242250447	0.0017022983733
+UniRef50_A7ZTX6	Ketol acid reductoisomerase	0.00262761631757	0.00122262686577	-0.0014049894518
+UniRef50_J4SMJ9		0.000101280545124	6.10338767555e-05	-4.02466683685e-05
+UniRef50_Q0SIB7	Hemin import ATP binding protein HmuV	6.2887668822e-06	4.16240961109e-05	3.53353292287e-05
+UniRef50_O32176	Probable acyl CoA dehydrogenase	0.000178909383646	0.000466944115205	0.000288034731559
+UniRef50_A7ZKS4	Phosphatase NudJ	0.00502338986561	0.00119605812642	-0.00382733173919
+UniRef50_Q6GCC9	Efem EfeO family lipoprotein	0.0119688526748	0.00273928442559	-0.00922956824921
+UniRef50_A0A017HGM4	Putative outer membrane lipoprotein	1.14911380274e-05	7.07627926185e-06	-4.41485876555e-06
+UniRef50_UPI000476B824	CpxR	1.38566080968e-05	2.92956886931e-05	1.54390805963e-05
+UniRef50_UPI00046D7612	hypothetical protein	3.63242282101e-06	0.000262616567884	0.000258984145063
+UniRef50_L8UE55	PTS system, galactitol specific IIC component	0.0017309970547	0.000388574612093	-0.00134242244261
+UniRef50_Q9RTN2	Putative phosphoenolpyruvate synthase regulatory protein	0.000408502003005	0.0270017661622	0.0265932641592
+UniRef50_UPI00036E3FCF	phospholipase C, partial	4.94717838992e-06	1.49713180762e-05	1.00241396863e-05
+UniRef50_Q6XQN6	Nicotinate phosphoribosyltransferase	3.11684037033e-06	7.58539051349e-06	4.46855014316e-06
+UniRef50_G8T537	Transposase IS66	2.81387596293e-06	4.44976321649e-06	1.63588725356e-06
+UniRef50_A0A022H366	Transposase	5.13472494063e-05	0.00268484778297	0.00263350053356
+UniRef50_D7DUK5	Tryptophan  tRNA ligase	0.00241132256863	0.000333961071697	-0.00207736149693
+UniRef50_A5UJH1		0.00266266408825	0.000733240097973	-0.00192942399028
+UniRef50_UPI000365D184	hypothetical protein	3.18876760572e-05	0.000207832948651	0.000175945272594
+UniRef50_A0A031Z188	Replication initiation protein 	0.000245440372718	0.000165475243496	-7.9965129222e-05
+UniRef50_G8R9I8	Secretory antigen SsaA	0.0121556998458	0.000577713106287	-0.0115779867395
+UniRef50_D3QGA7	Luciferase like monooxygenase	0.0213540442619	0.00610190014142	-0.0152521441205
+UniRef50_H5IJ08	Putative phosphotransferase ydiA domain protein	0.00130167582364	0.000437506229925	-0.000864169593715
+UniRef50_UPI0002B461E9	PREDICTED	0.000199899698526	0.000341226561394	0.000141326862868
+UniRef50_UPI0003724D90	hypothetical protein, partial	4.04813725308e-05	6.07076929753e-05	2.02263204445e-05
+UniRef50_P07962	Methyl coenzyme M reductase subunit alpha	0.00467328378824	0.000245986392399	-0.00442729739584
+UniRef50_A1SJB1	Adenine phosphoribosyltransferase	0.000213268920259	0.0129652779239	0.0127520090036
+UniRef50_UPI00036946A1	MULTISPECIES	9.17883611198e-05	8.59461812826e-05	-5.8421798372e-06
+UniRef50_UPI0003C7ADB6	hypothetical protein, partial	1.64130390382e-05	0.000284851560469	0.000268438521431
+UniRef50_E6M7L3		0.000521870030673	0.00012431477853	-0.000397555252143
+UniRef50_B8ID11	Dihydroorotate dehydrogenase 	6.5998345586e-06	8.49687964727e-06	1.89704508867e-06
+UniRef50_A0A058Z181		3.89781183141e-07	8.42553071784e-06	8.0357495347e-06
+UniRef50_UPI000378D9D6	MULTISPECIES	0.000121566238292	0.000114130524423	-7.435713869e-06
+UniRef50_A1V5P8	Nitrite extrusion protein	0.0002059468112	0.000507635054785	0.000301688243585
+UniRef50_A0A059MV07	3D  trihydroxycyclohexane 1,2 dione hydrolase	7.89169314675e-05	0.00562200671941	0.00554308978794
+UniRef50_Q2RS22	Nickel import ATP binding protein NikE	0.00172865639535	0.000343391517665	-0.00138526487768
+UniRef50_UPI000475FACA	phage tail protein	2.17647527493e-05	3.38772112259e-05	1.21124584766e-05
+UniRef50_I6U0Z2	Transcriptional regulator	0.00534926201181	0.0022149155666	-0.00313434644521
+UniRef50_B9KX94	ATPase, ParA type	0.0196446599325	0.00458150337815	-0.0150631565543
+UniRef50_G0HAA3	Putative membrane protein	3.27737682008e-05	0.000313172873074	0.000280399104873
+UniRef50_B1XW26	Lipoprotein signal peptidase	1.13026914727e-05	2.87216727006e-05	1.74189812279e-05
+UniRef50_B1KEG2	40 residue YVTN family beta propeller repeat protein	0.000107976115006	1.1364668986e-05	-9.661144602e-05
+UniRef50_K7RRX2	Lipoprotein signal peptidase	0.00044150408053	0.0047975496827	0.00435604560217
+UniRef50_G7M388	CoA disulfide reductase	4.59414996592e-05	0.00127761251622	0.00123167101656
+UniRef50_E7C400	Fe S oxidoreductase	5.49645143113e-06	1.17585981643e-05	6.26214673317e-06
+UniRef50_D9SNP1	OmpA MotB domain protein	0.0027159816135	0.00187080877618	-0.00084517283732
+UniRef50_F2AJ88		0.000402185676218	0.000156094570083	-0.000246091106135
+UniRef50_UPI00046577D3	dihydroxy acid dehydratase	4.67397024988e-05	3.10562978799e-05	-1.56834046189e-05
+UniRef50_E3GX46	Triphosphoribosyl dephospho CoA protein	0.0036065429991	0.0015770722748	-0.0020294707243
+UniRef50_E6CES2		2.16840228218e-06	0.00649775330824	0.00649558490596
+UniRef50_U3P882		0.000114274265039	0.00573424167317	0.00561996740813
+UniRef50_L0WHQ4	Short chain dehydrogenase reductase SDR	0.000308845282678	0.00633977153008	0.0060309262474
+UniRef50_Q0FGF7	Fe S metabolism associated family protein	0.000207408041022	2.62907580684e-05	-0.000181117282954
+UniRef50_UPI0003B39369	hypothetical protein	0.000216455590433	4.52497292161e-05	-0.000171205861217
+UniRef50_UPI0003840079	PREDICTED	1.3903645837e-05	6.56049110031e-05	5.17012651661e-05
+UniRef50_UPI00037D595A	hypothetical protein	2.97089594838e-06	2.59681137122e-05	2.29972177638e-05
+UniRef50_UPI0003B59F3E	iron ABC transporter substrate binding protein	3.34235057783e-05	3.60612104801e-05	2.6377047018e-06
+UniRef50_I1B3N6		0.00109098768827	0.000471597269197	-0.000619390419073
+UniRef50_A3CTF1	Nucleoside diphosphate kinase	1.56121172689e-05	1.79321490278e-05	2.3200317589e-06
+UniRef50_O27714	Transcription elongation factor Spt5	0.000241462252992	0.000755607774488	0.000514145521496
+UniRef50_UPI00047C566A	macrolide ABC transporter ATP binding protein	4.11000424037e-06	0.000620222673958	0.000616112669718
+UniRef50_A3CMZ5	Dihydrolipoamide acetyl transferase, E2 component, putative	0.00544956103083	0.0021517964312	-0.00329776459963
+UniRef50_R7KL80		0.000484204971575	0.00441158866774	0.00392738369616
+UniRef50_D0ZSY8	Anti sigma E factor RseA	0.00272039707059	0.00137272082355	-0.00134767624704
+UniRef50_UPI00026C6BF8	6 pyruvoyl tetrahydropterin synthase	9.84517308623e-05	0.000220109919488	0.000121658188626
+UniRef50_G2I067	DNA gyrase modulator	0.00239704322997	0.000728326609419	-0.00166871662055
+UniRef50_O33406	Uptake hydrogenase large subunit	0.0100702773329	0.00212717096976	-0.00794310636314
+UniRef50_S4MZL0		0.000143336645087	0.000151696611984	8.359966897e-06
+UniRef50_Q7A7M5	UPF0324 membrane protein SA0329	0.0217176533114	0.0101676502468	-0.0115500030646
+UniRef50_UPI0004778F57	hypothetical protein	2.24821107509e-05	0.000200138698081	0.00017765658733
+UniRef50_R7PUY3		0.00239415561391	0.000972995717799	-0.00142115989611
+UniRef50_P0A960	Glutamate pyruvate aminotransferase AlaA	0.00290092267126	0.00107226908642	-0.00182865358484
+UniRef50_B9KJF9	Flagellar hook protein FlgE	0.000788725468533	0.000302850801117	-0.000485874667416
+UniRef50_B4F105	UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000881023632128	0.00817040286877	0.00728937923664
+UniRef50_R0XQP3		1.67798834742e-05	2.68246152003e-05	1.00447317261e-05
+UniRef50_A8IEX2		2.31765666474e-05	9.26347065269e-05	6.94581398795e-05
+UniRef50_Q8DUY4	Putative two component membrane permease complex subunit SMU_746c	0.00742575607476	0.00182493819015	-0.00560081788461
+UniRef50_Q6FB27	Nitrate reductase, large subunit	9.94325010105e-05	0.00739611194907	0.00729667944806
+UniRef50_P74104	Riboflavin biosynthesis protein RibBA	2.87757048937e-05	8.48763930982e-05	5.61006882045e-05
+UniRef50_UPI000262CBE2	tRNA 2 selenouridine synthase	3.04451991156e-05	2.28536840298e-05	-7.5915150858e-06
+UniRef50_K0HTN3		0.000319472344066	0.00636900174076	0.00604952939669
+UniRef50_Q8XJE0	Geranyltranstransferase	0.000831550474524	0.000433977193254	-0.00039757328127
+UniRef50_UPI0002E69439	hypothetical protein	1.77358706065e-05	8.30491888664e-06	-9.43095171986e-06
+UniRef50_UPI0003B34D8A	ribonuclease PH	2.72227797231e-05	6.69047162367e-06	-2.05323080994e-05
+UniRef50_UPI00046F223A	hypothetical protein, partial	3.52851272132e-05	0.000159034388654	0.000123749261441
+UniRef50_P30860	ABC transporter arginine binding protein 1	0.00406067731075	0.000474638795622	-0.00358603851513
+UniRef50_W7VJ75	Fatty acid binding protein 	0.000183480753267	0.000157340680608	-2.6140072659e-05
+UniRef50_D1B150	CreA family protein	1.01616129983e-05	1.71288733495e-05	6.9672603512e-06
+UniRef50_B9KJQ4		0.00364493649149	0.000409626445797	-0.00323531004569
+UniRef50_UPI00040C080C	hypothetical protein	1.95684440754e-05	9.57558559283e-06	-9.99285848257e-06
+UniRef50_UPI0004448111	PREDICTED	4.89139670403e-06	5.95014580189e-06	1.05874909786e-06
+UniRef50_P32141	Sulfofructosephosphate aldolase	0.00377029824083	0.0011508679836	-0.00261943025723
+UniRef50_UPI000248C1C0	acyl CoA dehydrogenase domain containing protein	5.14947900503e-06	1.1427533118e-05	6.27805411297e-06
+UniRef50_B0V590		0.000510693947458	0.00754407083579	0.00703337688833
+UniRef50_W0W629		0.00033839678925	0.000469318901815	0.000130922112565
+UniRef50_P96611	Thioredoxin like protein YdbP	0.00297999794683	0.00127474836775	-0.00170524957908
+UniRef50_C5N3Y4	XkdX family protein	0.000775656141478	0.00141752018494	0.000641864043462
+UniRef50_Q9RDF2	GTPase Era	0.000342251190037	0.00687982472135	0.00653757353131
+UniRef50_B9KJN1		0.000317307645012	0.000295688183394	-2.1619461618e-05
+UniRef50_A9BIZ6	Glutamate synthase, NADH NADPH, small subunit	0.0274640610088	0.00878213327488	-0.0186819277339
+UniRef50_UPI000479919E	phosphoribosylaminoimidazolecarboxamide formyltransferase	2.94591333676e-06	3.16372912258e-05	2.8691377889e-05
+UniRef50_UPI00037E9975	30S ribosomal protein S2	2.05255626578e-05	2.71068196902e-05	6.5812570324e-06
+UniRef50_UPI00037F5062	hypothetical protein	0.00014989529959	3.71726637111e-05	-0.000112722635879
+UniRef50_A3M5J5		0.000455529371447	0.00786880308308	0.00741327371163
+UniRef50_A0A058ZCQ6		0.000104422126926	8.1692034629e-05	-2.2730092297e-05
+UniRef50_A0NWH9		0.000857712349539	0.00064117767888	-0.000216534670659
+UniRef50_E1VQ88	Transcriptional regulator	0.000521844591342	0.00129579706428	0.000773952472938
+UniRef50_H5YDF6		8.63204288759e-05	0.000120547869604	3.42274407281e-05
+UniRef50_UPI00037EF636	hypothetical protein	4.24156623778e-05	0.000101588713435	5.91730510572e-05
+UniRef50_UPI00025582F7	aldehyde dehydrogenase	4.13492953149e-05	1.94162164875e-05	-2.19330788274e-05
+UniRef50_C5Q4V1		0.0085010914948	0.00115810472625	-0.00734298676855
+UniRef50_UPI000474476C	hypothetical protein	2.8642377673e-05	1.34936514644e-05	-1.51487262086e-05
+UniRef50_F0JCL8		0.000136650160722	1.32994108175e-05	-0.000123350749904
+UniRef50_B7V9P7	RNA binding protein, putative	0.000807625501377	0.000381995238133	-0.000425630263244
+UniRef50_C3TQZ2	Thiamine import ATP binding protein ThiQ	0.00267146684242	0.000632387253784	-0.00203907958864
+UniRef50_K9AHZ4	6 pyruvoyl tetrahydropterin synthase	3.03659412023e-05	0.000143730540932	0.00011336459973
+UniRef50_P26239	Magnesium chelatase 38 kDa subunit	0.00160119057009	0.000394357039049	-0.00120683353104
+UniRef50_L7WEC7	ATG13 multi domain protein	0.000147974074888	1.94054226737e-05	-0.000128568652214
+UniRef50_L7WZ17		0.00703156611742	0.00446446055689	-0.00256710556053
+UniRef50_H6RCQ6		3.72708499602e-05	4.49166958368e-05	7.6458458766e-06
+UniRef50_UPI0003C42A4B	PREDICTED	1.21048607915e-05	0.00119135674826	0.00117925188747
+UniRef50_UPI0002D92AB4	excinuclease ABC subunit A	1.12336526902e-06	1.17277901881e-05	1.06044249191e-05
+UniRef50_C5N6A8	Primosomal protein DnaI	0.0125825112181	0.00359176041581	-0.00899075080229
+UniRef50_UPI0001D2E559	AraC family transcriptional regulator	0.000498413298512	0.000130111790902	-0.00036830150761
+UniRef50_I6XQ31	Major ampullate silk protein 1 	7.49712955625e-05	2.91066961843e-05	-4.58645993782e-05
+UniRef50_UPI000466460D	hypothetical protein	2.92983877879e-05	0.000129589420485	0.000100291032697
+UniRef50_UPI00046FD040	TetR family transcriptional regulator	2.76536573302e-05	7.93912806693e-05	5.17376233391e-05
+UniRef50_R7PSI9	Adhesin like protein	0.00419591326205	0.000431876156779	-0.00376403710527
+UniRef50_Q99R75	Dehydrosqualene synthase	0.0124457164121	0.0031388646772	-0.0093068517349
+UniRef50_Q58730	Putative UTP  glucose 1 phosphate uridylyltransferase	0.000197650782571	0.000101780333973	-9.5870448598e-05
+UniRef50_U7IYF3		0.000440645123179	0.00105160987611	0.000610964752931
+UniRef50_X0XJV9	Marine sediment metagenome DNA, contig	0.000487124451429	0.00021535575781	-0.000271768693619
+UniRef50_UPI0003753443	hypothetical protein	5.9234878654e-06	4.09400099948e-06	-1.82948686592e-06
+UniRef50_UPI000362D291	hypothetical protein	1.98247170144e-05	0.000149364125737	0.000129539408723
+UniRef50_Q8P0D4	Superoxide dismutase [Mn]	1.0760164393e-05	3.43225837357e-05	2.35624193427e-05
+UniRef50_Q2YX92	High affinity heme uptake system protein IsdE	0.00945460577931	0.00128149805755	-0.00817310772176
+UniRef50_A0A059ITV9		3.2647470543e-05	0.000178830144151	0.000146182673608
+UniRef50_O26254	Methyl coenzyme M reductase system, component A2 homolog	0.00244655021471	0.000830909189524	-0.00161564102519
+UniRef50_UPI00047B06F8	glyoxylate reductase	1.40047515937e-05	9.20334966499e-06	-4.80140192871e-06
+UniRef50_UPI00023753A7	FAD dependent oxidoreductase, partial	4.09417910627e-05	2.0344674525e-05	-2.05971165377e-05
+UniRef50_T1XU32	Lipoprotein, putative	3.31923274171e-05	6.64203869765e-05	3.32280595594e-05
+UniRef50_L7TP46		5.67569622804e-05	4.209882153e-05	-1.46581407504e-05
+UniRef50_UPI00037C0C48	hypothetical protein	4.02294012448e-06	0.000751431919193	0.000747408979069
+UniRef50_UPI000466A942	hypothetical protein	6.19738943776e-06	1.97472116324e-06	-4.22266827452e-06
+UniRef50_X1XR73		8.19424930871e-06	3.40148926758e-06	-4.79276004113e-06
+UniRef50_UPI000382799A	hypothetical protein, partial	3.02858159622e-05	2.21170516455e-06	-2.80741107977e-05
+UniRef50_W1MW06		7.58326625022e-05	7.41787279937e-05	-1.6539345085e-06
+UniRef50_E8SHT5		8.36408920982e-05	9.93180775617e-05	1.56771854635e-05
+UniRef50_W0A6S5		2.4732936121e-05	1.50521049613e-05	-9.6808311597e-06
+UniRef50_D3QYX7	Leucine  tRNA ligase	0.000478640917691	0.00100100136565	0.000522360447959
+UniRef50_Q9RXI9	Serine cycle enzyme, putative	0.000176395321898	0.036435498939	0.0362591036171
+UniRef50_UPI000469863D	transcriptional regulator	0.00113370293364	0.000372560645709	-0.000761142287931
+UniRef50_X5DRL9	Nitroreductase family protein	0.00788957150914	0.00230825328073	-0.00558131822841
+UniRef50_S5E3S7	ABC transport protein permease component	0.00492901755771	0.000670635845474	-0.00425838171224
+UniRef50_O27918	Phosphopantetheine adenylyltransferase	0.00227029796111	0.0112875923052	0.00901729434409
+UniRef50_R5TNC8		0.000784342483387	0.0010411170146	0.000256774531213
+UniRef50_UPI00036F39E5	hypothetical protein	3.72269442025e-06	1.78175480315e-05	1.40948536113e-05
+UniRef50_C8S4K0		2.91383894493e-05	3.63018564145e-05	7.1634669652e-06
+UniRef50_Q96RQ3	Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial	2.51743658583e-06	8.27836749323e-06	5.7609309074e-06
+UniRef50_UPI00046231D8	hypothetical protein, partial	4.47373488591e-05	3.63930832826e-05	-8.3442655765e-06
+UniRef50_H3V6W0	Ornithine cyclodeaminase domain protein	0.000802447279365	0.000308927216958	-0.000493520062407
+UniRef50_UPI000471846E	hypothetical protein	0.000808383915555	0.000278164153082	-0.000530219762473
+UniRef50_UPI000372055F	50S ribosomal protein L6, partial	0.000229646599554	4.01649805326e-05	-0.000189481619021
+UniRef50_D4GJK9	Protein CreA	2.11603448256e-05	1.66001093677e-05	-4.5602354579e-06
+UniRef50_F7XFL7		0.00351030479105	0.000506228361158	-0.00300407642989
+UniRef50_Q2RZH4	Thymidine kinase	1.63990413481e-05	1.27587419518e-05	-3.6402993963e-06
+UniRef50_C6XKW1	Cytochrome c type biogenesis protein CcmB	0.000524761460416	0.00144178507883	0.000917023618414
+UniRef50_UPI0003503A2D	PREDICTED	0.000101293199152	4.26478368962e-05	-5.86453622558e-05
+UniRef50_Q99707	Methionine synthase	1.75343293271e-05	3.65250306683e-05	1.89907013412e-05
+UniRef50_B0JUG8	Bifunctional protein PyrR	4.19995227598e-05	9.26584859952e-05	5.06589632354e-05
+UniRef50_Q81G11	3 isopropylmalate dehydrogenase	4.06080723244e-05	0.00375632999248	0.00371572192016
+UniRef50_UPI0004730E10	50S ribosomal protein L22, partial	6.11187045318e-05	1.9772129883e-05	-4.13465746488e-05
+UniRef50_A0A050BZL5	PE PGRS family protein PE_PGRS6 	9.90555305202e-06	8.87609487572e-05	7.88553957052e-05
+UniRef50_A7ZRN9	UPF0114 protein YqhA	0.00114947692097	0.000719554135001	-0.000429922785969
+UniRef50_UPI000345BBD3	hypothetical protein	1.5878632622e-05	3.04966947543e-06	-1.28289631466e-05
+UniRef50_UPI00036781FF	hypothetical protein	5.40088668938e-06	5.55655161902e-06	1.5566492964e-07
+UniRef50_UPI000470525C	spore coat protein	7.15587442686e-05	1.18755178693e-05	-5.96832263993e-05
+UniRef50_U5L7I3	Topology modulation protein	9.81988046651e-06	9.7325116865e-05	8.75052363985e-05
+UniRef50_UPI000475A3D2	dehydrogenase	3.3322310886e-05	2.61722457796e-05	-7.1500651064e-06
+UniRef50_R9VB07		0.000481015811204	0.000361871881834	-0.00011914392937
+UniRef50_UPI0003336D92	PREDICTED	5.76799049574e-05	0.000178613785405	0.000120933880448
+UniRef50_A0A017HNY0	Dipeptide transport system permease protein DppC	1.54081792102e-05	2.46237879085e-05	9.2156086983e-06
+UniRef50_UPI0003771DAE	hypothetical protein	1.38375321028e-05	3.25235487128e-05	1.868601661e-05
+UniRef50_UPI00047A9CE7	luciferase	4.79947006276e-05	2.65037645741e-05	-2.14909360535e-05
+UniRef50_G7M9S8	UvrD REP helicase	0.000342980682439	0.000505095641597	0.000162114959158
+UniRef50_P06864	Evolved beta galactosidase subunit alpha	0.000558951884317	0.000135792327377	-0.00042315955694
+UniRef50_B7V1N9	Arylamine N acetyltransferase	0.000609376081685	0.000993901661408	0.000384525579723
+UniRef50_E8U3M5		0.000146371138664	0.00223672922498	0.00209035808632
+UniRef50_C9XJX6	DeoR family transcriptional regulator	0.000381265006881	0.000926405262164	0.000545140255283
+UniRef50_P38105	Starvation sensing protein RspB	0.00092003925548	0.000239445977193	-0.000680593278287
+UniRef50_A4XE82		0.000223954181186	8.16530038662e-05	-0.00014230117732
+UniRef50_A6DYV9		0.000454725954148	6.14241866327e-05	-0.000393301767515
+UniRef50_W3E224		0.000471875732651	0.0119228382227	0.01145096249
+UniRef50_P24270	Catalase	1.84643067649e-05	4.42845313411e-05	2.58202245762e-05
+UniRef50_UPI0003B51789	ABC transporter	5.41035393606e-06	9.90539939411e-06	4.49504545805e-06
+UniRef50_A3CNT7	Histidinol phosphate aminotransferase	0.00471494331624	0.000470108519721	-0.00424483479652
+UniRef50_Q8EKI8	L seryl tRNA selenium transferase	0.00236470531243	0.000815652915127	-0.0015490523973
+UniRef50_Q5KBM9	Chaperone, putative	4.78670042144e-06	5.54404161357e-06	7.5734119213e-07
+UniRef50_A0PXA5	Glutamate 5 kinase	9.99925997383e-06	1.28847315179e-05	2.88547154407e-06
+UniRef50_B0S912	DNA gyrase subunit A	2.10379307511e-06	2.56744734136e-06	4.6365426625e-07
+UniRef50_UPI0003B5B207	oxidoreductase	6.56698444893e-05	0.000163746378186	9.80765336967e-05
+UniRef50_UPI00037350A3	hypothetical protein	4.78316257745e-06	1.21223713726e-05	7.33920879515e-06
+UniRef50_UPI000225FBCC	resolvase domain containing protein	7.58755049498e-05	4.54064440993e-05	-3.04690608505e-05
+UniRef50_Q9HZQ2	Protein CobW	0.00114708357177	0.000160063254856	-0.000987020316914
+UniRef50_I9CAP4	3 oxoadipate enol lactonase	3.24882497161e-06	3.01667808584e-05	2.69179558868e-05
+UniRef50_S5CZX0	Site specific DNA methylase	9.5244572462e-05	0.0061648714253	0.00606962685284
+UniRef50_A1U4W5		5.30977397964e-06	1.62822857141e-05	1.09725117345e-05
+UniRef50_P76577	Penicillin binding protein 1C	0.00180664128352	0.000317607508622	-0.0014890337749
+UniRef50_L7WU63		0.0116410636345	0.00675195025273	-0.00488911338177
+UniRef50_F0MRE3	Di  tripeptide transporter	0.000159326034159	0.005186442751	0.00502711671684
+UniRef50_UPI000262D0B4	flagellin FliC	6.13210018968e-06	2.74781586998e-06	-3.3842843197e-06
+UniRef50_W5X9X7	Transcriptional regulator, LacI family	2.83040555723e-06	9.71265952894e-06	6.88225397171e-06
+UniRef50_P24395	Ribulose bisphosphate carboxylase small chain	0.000558864572034	7.55699860657e-05	-0.000483294585968
+UniRef50_UPI0003346733	PREDICTED	0.000121085031761	9.32579069084e-05	-2.78271248526e-05
+UniRef50_Q3IW03	Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.0107570601971	0.00246356419112	-0.00829349600598
+UniRef50_P45946	Arsenite resistance protein ArsB	0.000223781255477	0.00116460884001	0.000940827584533
+UniRef50_U6N0Z9		1.8112517712e-05	1.40591220251e-05	-4.0533956869e-06
+UniRef50_A0A059II46		0.000122713958859	4.04595479601e-05	-8.22544108989e-05
+UniRef50_K0K2V8		1.64040255787e-05	0.000650945692359	0.00063454166678
+UniRef50_B9J7R7	Biphenyl 2,3 diol 1,2 dioxygenase protein	0.000758523593186	0.000955646635363	0.000197123042177
+UniRef50_B6IN07	DNA directed RNA polymerase subunit omega	0.0117925885861	0.000504814880674	-0.0112877737054
+UniRef50_Q2Y5B3	Transposase	0.000114814081331	3.85161526286e-05	-7.62979287024e-05
+UniRef50_P37682		0.00170879567553	0.00153979637747	-0.00016899929806
+UniRef50_V5VC89	Phospho 2 dehydro 3 deoxyheptonate aldolase	0.00011069970347	0.00689038510508	0.00677968540161
+UniRef50_UPI00047A404B	hypothetical protein	7.19443627514e-05	8.73330694941e-05	1.53887067427e-05
+UniRef50_A5UP62		0.00398338138838	0.000205081045272	-0.00377830034311
+UniRef50_A5UP68		0.00425861482496	0.00110824643173	-0.00315036839323
+UniRef50_C0F8A8		1.04771205441e-05	3.33111398848e-05	2.28340193407e-05
+UniRef50_Q9K0Y0	D alanine  D alanine ligase	0.000180041012167	0.00316280294963	0.00298276193746
+UniRef50_C6CBJ2	Oligogalacturonide transporter	0.000679211324629	0.000517283158157	-0.000161928166472
+UniRef50_UPI00036B05F9	3 oxoacyl ACP synthase, partial	2.46719458646e-05	2.77174566258e-05	3.0455107612e-06
+UniRef50_A5UND0	Glycosyltransferase, GT2 family	0.00122484785614	0.000211191922662	-0.00101365593348
+UniRef50_E6MVK2		0.00020760016828	0.00349054217588	0.0032829420076
+UniRef50_Q9JX72	Glutamate ammonia ligase adenylyltransferase	0.000250119878552	0.00533423663274	0.00508411675419
+UniRef50_K4NHA2		1.16589878896e-05	0.00243052574325	0.00241886675536
+UniRef50_A0A011QY25	Efflux pump membrane transporter BepE	2.25934219017e-06	1.27492102803e-05	1.04898680901e-05
+UniRef50_P09738	Superoxide dismutase [Mn Fe]	0.00440846237805	0.000295809721398	-0.00411265265665
+UniRef50_UPI0003B50A76	amino acid ABC transporter substrate binding protein	1.66894735227e-05	0.000335954684364	0.000319265210841
+UniRef50_UPI0004771768	hypothetical protein	0.000309560423554	8.40756064081e-05	-0.000225484817146
+UniRef50_UPI0004678EBB	deoxyguanosinetriphosphate triphosphohydrolase	0.000525484613408	0.000179797292587	-0.000345687320821
+UniRef50_Q4L427	Transcriptional regulator, MerR family	0.00923102738949	0.00369732422525	-0.00553370316424
+UniRef50_X6LEJ6	TRAP transporter solute receptor TAXI family 	7.26158795454e-05	8.13822762045e-06	-6.44776519249e-05
+UniRef50_E1HGR2		0.000117080946541	0.00016150196213	4.4421015589e-05
+UniRef50_UPI0004630420	hypothetical protein	0.000397912864204	6.92754584126e-05	-0.000328637405791
+UniRef50_L7ZH95	23S rRNA  C(5)) methyltransferase RlmD	0.00169059228849	0.000139409931648	-0.00155118235684
+UniRef50_Q3JXF7		0.000517711979141	0.000450912390201	-6.679958894e-05
+UniRef50_L0DDS9		4.45388448999e-05	1.97688750795e-05	-2.47699698204e-05
+UniRef50_UPI00036A6475	hypothetical protein	3.32216469351e-06	1.1489147511e-05	8.16698281749e-06
+UniRef50_Q6FMA3	FK506 binding protein 1	2.56242208789e-05	2.54615525616e-05	-1.626683173e-07
+UniRef50_Q8XIA9	4 diphosphocytidyl 2 C methyl D erythritol kinase	7.00229050575e-06	0.00185288478188	0.00184588249137
+UniRef50_S6NZ74	Glutamate synthase subunit alpha	0.000832536924097	0.000171712920262	-0.000660824003835
+UniRef50_Q9A311	UPF0301 protein CC_3395	2.99959277185e-05	4.42806576127e-05	1.42847298942e-05
+UniRef50_UPI0000E0EE96	pilus modification protein PilQ	3.72083720051e-06	5.95912215987e-06	2.23828495936e-06
+UniRef50_U5MRW2	NADP reducing hydrogenase subunit HndC	0.000623306056286	0.00111669668042	0.000493390624134
+UniRef50_R7YUC0		3.43544959394e-06	0.000664092128154	0.00066065667856
+UniRef50_A7C4B4	Short chain dehydrogenase reductase SDR	8.70939128307e-05	0.000293626980776	0.000206533067945
+UniRef50_Q88VE3	Probable GTP binding protein EngB	0.0116139307511	0.00660061792373	-0.00501331282737
+UniRef50_I1W617	Metallo beta lactamase superfamily domain protein 	0.00201748141082	0.00041760732602	-0.0015998740848
+UniRef50_UPI000414FA05	zinc iron permease	3.77930202926e-05	3.1825321008e-06	-3.46104881918e-05
+UniRef50_UPI00036EBE75	hypothetical protein	1.88452011993e-06	6.61182397139e-05	6.4233719594e-05
+UniRef50_X1Y0Y0		4.84327477355e-05	1.40307477007e-05	-3.44020000348e-05
+UniRef50_V2HBE7	Cupin	0.000102347497237	4.19141480811e-05	-6.04333491559e-05
+UniRef50_Q92CE4	Glutamate 5 kinase	0.00339997043709	0.00320433582191	-0.00019563461518
+UniRef50_UPI00039CB03A	acyltransferase	0.000408737690532	1.90287745902e-05	-0.000389708915942
+UniRef50_D6AF37		0.000205663650323	0.000191320549107	-1.4343101216e-05
+UniRef50_A6LRK6	Dephospho CoA kinase	0.000797261735345	0.000596599404435	-0.00020066233091
+UniRef50_C5YML5		0.000405931280309	0.000825486054037	0.000419554773728
+UniRef50_R7A629	Cell division ATP binding protein FtsE	0.0033693416474	0.000744495895456	-0.00262484575194
+UniRef50_UPI00037DADC1	hypothetical protein	2.3292794874e-05	2.43865324165e-05	1.0937375425e-06
+UniRef50_P29131	Cell division protein FtsN	0.00324220939089	0.000191556781752	-0.00305065260914
+UniRef50_Q4KEZ9	N anthranilate isomerase	1.02601007952e-05	0.000153595595735	0.00014333549494
+UniRef50_D2UBU1		1.35609470921e-05	2.05937536237e-05	7.0328065316e-06
+UniRef50_UPI000376D12A	hypothetical protein	1.35131977267e-05	5.98374563722e-06	-7.52945208948e-06
+UniRef50_D3QIX9		0.0177761571934	0.0058410180758	-0.0119351391176
+UniRef50_UPI00039B183B	helicase	4.84121768405e-06	0.000595745423049	0.000590904205365
+UniRef50_UPI000374642A	hypothetical protein	1.40557262107e-05	2.68987008473e-05	1.28429746366e-05
+UniRef50_R7YU19		0.0193059569459	0.00171026331519	-0.0175956936307
+UniRef50_A0A028ILN1		0.00014334910969	0.00390258783748	0.00375923872779
+UniRef50_F0RMH9	Thioredoxin reductase	0.00025679318969	0.0541254570811	0.0538686638914
+UniRef50_Z1D1L3	Serine aspartate repeat containing protein D	0.000711333053306	4.42311590482e-05	-0.000667101894258
+UniRef50_UPI0003B4CF71	30S ribosomal protein S3	0.00119208161134	0.00240161280902	0.00120953119768
+UniRef50_P43850	N5 carboxyaminoimidazole ribonucleotide synthase	0.00459312406955	0.00231689491927	-0.00227622915028
+UniRef50_P0AEB8	RutC family protein YoaB	0.00164124342979	0.000504814880674	-0.00113642854912
+UniRef50_G8QQ16	Aminoacyl histidine dipeptidase	0.000273872777893	0.00773616953062	0.00746229675273
+UniRef50_K0F919	Phosphate transporter	0.000104181965648	0.0040015074312	0.00389732546555
+UniRef50_Q9RSU4		0.000216117932552	0.0656287083932	0.0654125904606
+UniRef50_R7NVL6	AICARFT IMPCHase bienzyme	0.000421321216007	0.00715609365736	0.00673477244135
+UniRef50_E6N0K4		0.000252062366568	0.0114387395791	0.0111866772125
+UniRef50_Q4L628	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00892515031597	0.00127224663586	-0.00765290368011
+UniRef50_K1YQK0		3.42969770403e-06	1.77146092217e-05	1.42849115177e-05
+UniRef50_A4XID9	Type II secretion system protein E	0.000333745068237	0.00117734964386	0.000843604575623
+UniRef50_B9DL96	SirB protein	0.0097181349086	0.00476879152068	-0.00494934338792
+UniRef50_UPI0003B65A97	hypothetical protein	5.39663444561e-06	9.23655686496e-06	3.83992241935e-06
+UniRef50_A6LWV9	Transcription activator, effector binding	0.000144815596745	0.000665487067368	0.000520671470623
+UniRef50_UPI0003AD00EB	ABC transporter permease	3.92971143175e-05	5.26471030416e-05	1.33499887241e-05
+UniRef50_UPI00029A0867	HNH endonuclease	5.87356667664e-05	4.1660811939e-05	-1.70748548274e-05
+UniRef50_A4WUM0	HAD superfamily hydrolase, subfamily IIA	0.00449822119752	0.000302372053093	-0.00419584914443
+UniRef50_Q0JN66	Os01g0323600 protein 	3.17616105306e-05	4.20974276115e-05	1.03358170809e-05
+UniRef50_UPI000425885C	ABC transporter	3.09085322094e-05	2.66990219196e-05	-4.2095102898e-06
+UniRef50_A6LPJ7	PpiC type peptidyl prolyl cis trans isomerase	0.000323461863408	0.00278205206636	0.00245859020295
+UniRef50_UPI000376B01F	hypothetical protein	6.6838362273e-05	1.18580684616e-05	-5.49802938114e-05
+UniRef50_P62904	Transposase from transposon Tn1545	0.00532791552797	0.000814460075612	-0.00451345545236
+UniRef50_UPI00036D74AB	hypothetical protein	9.88637148125e-05	3.22523867407e-05	-6.66113280718e-05
+UniRef50_P03740	Tail fiber assembly protein	0.00206508142092	0.000576033462575	-0.00148904795834
+UniRef50_UPI00036AE08D	hypothetical protein	9.23186072931e-05	1.23849710268e-05	-7.99336362663e-05
+UniRef50_UPI000349BBCB	transcription factor WhiB	2.5334135078e-05	5.19309771244e-05	2.65968420464e-05
+UniRef50_UPI0003B720CE	peptide ABC transporter permease	2.2812624769e-05	5.79208003795e-05	3.51081756105e-05
+UniRef50_Q8Z8G7	Apolipoprotein N acyltransferase	0.00243975478069	0.000702461648296	-0.00173729313239
+UniRef50_A6LY96		0.000898789562983	0.00237157264769	0.00147278308471
+UniRef50_UPI00037F0E4A	hypothetical protein	3.51002513324e-06	0.00127236295714	0.00126885293201
+UniRef50_Q0FWM3		0.000293846080516	7.5679153973e-05	-0.000218166926543
+UniRef50_UPI000372A004	30S ribosomal protein S11	0.000174453712998	0.000705832061959	0.000531378348961
+UniRef50_UPI000406AC71	hypothetical protein	9.85958385394e-06	4.69188527309e-05	3.7059268877e-05
+UniRef50_P44931	tRNA specific adenosine deaminase	1.28912553334e-05	4.2527082994e-05	2.96358276606e-05
+UniRef50_UPI00047200C5	hypothetical protein	0.000155033439847	3.11189660221e-05	-0.000123914473825
+UniRef50_C5A6Q6	tRNA binding protein, putative	0.002692523666	0.000680971069289	-0.00201155259671
+UniRef50_UPI000476F5C1	hypothetical protein	9.6427293307e-06	1.22285426599e-05	2.5858133292e-06
+UniRef50_F3SBC7		0.000979394828674	0.000706552584989	-0.000272842243685
+UniRef50_UPI000467C7DA	hypothetical protein	0.000373442604188	7.80074132817e-05	-0.000295435190906
+UniRef50_UPI000348A11C	hypothetical protein	1.3152696482e-05	9.59639051888e-06	-3.55630596312e-06
+UniRef50_Q8Y3E7	Acetylglutamate kinase	4.15455675846e-05	1.55582899729e-05	-2.59872776117e-05
+UniRef50_P76162		0.00357079995732	0.00202340442568	-0.00154739553164
+UniRef50_UPI000316A923	hypothetical protein	7.09646976444e-06	5.05677696507e-05	4.34712998863e-05
+UniRef50_T5D7P0	1 pyrroline 5 carboxylate dehydrogenase 	0.000161736894571	0.00404711962454	0.00388538272997
+UniRef50_D9SWK1	MmpL domain containing protein	0.000346577486773	0.000998418597716	0.000651841110943
+UniRef50_F3ZHY8	Putative lipoyl synthase	1.46141785711e-05	0.000256734126088	0.000242119947517
+UniRef50_Q2P1U6	Lysine  tRNA ligase	0.00388062588244	0.0111181477765	0.00723752189406
+UniRef50_UPI0001D2F0AE	putrescine spermidine ABC transporter substrate binding protein	4.94423994687e-05	0.000156918570774	0.000107476171305
+UniRef50_S5XYD0	Type I secretion outer membrane protein, TolC	0.00184104795783	0.000285970248103	-0.00155507770973
+UniRef50_P71242	Colanic acid biosynthesis protein WcaK	0.00403863322402	0.00280416529586	-0.00123446792816
+UniRef50_A6LXV6	Xylan 1,4 beta xylosidase	0.000281514035724	0.000435633401281	0.000154119365557
+UniRef50_K2CIP8		0.000287434078471	0.000272519277143	-1.4914801328e-05
+UniRef50_F3Z911	Putative LysR family transcriptional regulator	6.46449363503e-06	8.63963822913e-06	2.1751445941e-06
+UniRef50_K0H1B5		0.000199026004668	0.00477943069043	0.00458040468576
+UniRef50_UPI0003A37396	spermidine putrescine ABC transporter substrate binding protein	2.1858112165e-05	0.000140247148855	0.00011838903669
+UniRef50_UPI0003F726C9	5 methyltetrahydrofolate  homocysteine methyltransferase	2.5703228032e-06	9.44013082095e-05	9.18309854063e-05
+UniRef50_UPI00036FE7ED	hypothetical protein	3.82274812346e-06	7.5605265184e-06	3.73777839494e-06
+UniRef50_P07738	Bisphosphoglycerate mutase	6.93865428391e-06	1.08268953876e-05	3.88824110369e-06
+UniRef50_UPI000365C798	Cro Cl family transcriptional regulator	0.000149950899505	1.89136212394e-05	-0.000131037278266
+UniRef50_A7X393	Glutamyl tRNA reductase	0.0224842324256	0.00773057805568	-0.0147536543699
+UniRef50_Q5JFN5	Phosphoribosylaminoimidazole succinocarboxamide synthase	1.43601521343e-05	1.41923253337e-05	-1.678268006e-07
+UniRef50_UPI0003B3B62E	iron ABC transporter permease	2.72473713082e-05	3.73991359144e-05	1.01517646062e-05
+UniRef50_Q55498	N5 carboxyaminoimidazole ribonucleotide mutase	6.79865379295e-05	0.00128191708905	0.00121393055112
+UniRef50_UPI000479DC3A	hypothetical protein	1.23714420198e-05	1.91842564612e-05	6.8128144414e-06
+UniRef50_Q4K8R5	ErfK YbiS YcfS YnhG family protein	0.000162709477954	0.000256425503788	9.3716025834e-05
+UniRef50_UPI00047C9C40	hypothetical protein	2.92911779603e-05	9.24224415084e-06	-2.00489338095e-05
+UniRef50_P13061	Periplasmic [NiFe] hydrogenase small subunit	7.69108722329e-05	1.8856320254e-05	-5.80545519789e-05
+UniRef50_B1J449	Peptidase M23B	0.000162943592314	0.000575097842339	0.000412154250025
+UniRef50_B9DQ98	Processive diacylglycerol beta glucosyltransferase	0.0198464767666	0.00675950586718	-0.0130869708994
+UniRef50_R5FWD3	Ribokinase family Sugar kinase	0.000134496195558	0.0034156083976	0.00328111220204
+UniRef50_A8YNI5	Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328	0.0105982934744	0.00114121458492	-0.00945707888948
+UniRef50_M7DS31	Surfactin synthetase	0.00450390897081	0.00161306756	-0.00289084141081
+UniRef50_P0AFE2	NADH quinone oxidoreductase subunit J	0.00137227545386	0.000921880746498	-0.000450394707362
+UniRef50_P21649	Protein MrkE	0.00217848286038	0.000242062873115	-0.00193641998727
+UniRef50_F1B2P1		8.58316077885e-05	0.000184389507422	9.85578996335e-05
+UniRef50_UPI00047188E0	hypothetical protein	1.89694365947e-06	8.47390249912e-05	8.28420813317e-05
+UniRef50_Q59679	Superoxide dismutase [Mn]	8.98493947876e-06	0.000101625309855	9.26403703762e-05
+UniRef50_UPI000466807B	hypothetical protein	3.08554171336e-05	9.31008585714e-05	6.22454414378e-05
+UniRef50_E6NJW8	Poly E rich protein	9.72902033113e-05	0.0016157725006	0.00151848229729
+UniRef50_Q9RRU7	Lipoprotein signal peptidase	0.000210886027289	0.0589720930584	0.0587612070311
+UniRef50_I4CUQ3		1.19451267234e-05	2.52492187934e-05	1.330409207e-05
+UniRef50_UPI00046AEF9B	ABC transporter ATP binding protein	3.94553123196e-06	1.06847874475e-05	6.73925621554e-06
+UniRef50_E1ZBZ0		2.86716874178e-05	1.71968047086e-05	-1.14748827092e-05
+UniRef50_Q6BX45	FK506 binding protein 1	2.33589223222e-05	3.98636179738e-05	1.65046956516e-05
+UniRef50_A6LTL3		0.00065137301791	0.00190684295112	0.00125546993321
+UniRef50_F0YG09	Expressed protein 	7.80565758921e-05	0.000157820203341	7.97636274489e-05
+UniRef50_UPI0001744DA7	translation initiation factor IF 3	0.000105004466992	0.000159689471882	5.468500489e-05
+UniRef50_P76010	Flagellar brake protein YcgR	0.00241238935191	0.00105097769196	-0.00136141165995
+UniRef50_V4JQ05		0.00420718582365	0.00155030985672	-0.00265687596693
+UniRef50_Q5LX99	TPR domain protein	0.00430307842293	0.00109205905205	-0.00321101937088
+UniRef50_X5EHV6		0.0101430927956	0.00457866986304	-0.00556442293256
+UniRef50_E8QKL2		0.000227368276202	0.00251283127724	0.00228546300104
+UniRef50_UPI000329FDA5		6.54716222631e-05	7.12910084452e-05	5.8193861821e-06
+UniRef50_B9TMP8		1.30933047694e-05	2.87360192984e-05	1.5642714529e-05
+UniRef50_X2LS39	Ribonuclease E	0.00274999332299	0.00138714312318	-0.00136285019981
+UniRef50_W4HN66		5.19164956879e-05	6.44240431552e-06	-4.54740913724e-05
+UniRef50_Q8DKV8	Tlr0743 protein	4.3262647894e-05	5.04287455258e-05	7.1660976318e-06
+UniRef50_UPI0004795C04	hypothetical protein	6.7156382041e-06	1.66941434042e-05	9.9785052001e-06
+UniRef50_UPI00046D9877	hemolysin, partial	4.51711379703e-06	6.18913240484e-05	5.73742102514e-05
+UniRef50_E6V9U6		3.22811072996e-07	2.8967950797e-06	2.5739840067e-06
+UniRef50_Q6FFH7		0.000321496728861	0.00978488556199	0.00946338883313
+UniRef50_A6LW46	Ppx GppA phosphatase	0.000290597391961	0.000496017377705	0.000205419985744
+UniRef50_C4Z2C3		0.000933193774585	0.00320042020036	0.00226722642578
+UniRef50_UPI000471C2D7	hypothetical protein	8.11991646648e-06	7.91676388818e-06	-2.031525783e-07
+UniRef50_F0RP65	Peptidase S41	8.4574904144e-05	0.0229642203728	0.0228796454687
+UniRef50_S4XIK9	Iron ABC transport system substrate binding protein	1.01346881533e-05	3.39299526337e-05	2.37952644804e-05
+UniRef50_UPI0003013893	hypothetical protein	1.40359868907e-05	2.16174082945e-05	7.5814214038e-06
+UniRef50_A3PJZ0	LPS assembly protein LptD	0.00356102265516	0.00172213444474	-0.00183888821042
+UniRef50_UPI00036BEF36	hypothetical protein	3.54152569162e-05	0.000235044337973	0.000199629081057
+UniRef50_Q8X7J5	Multidrug resistance protein MdtA	0.00266231431142	0.00160990403123	-0.00105241028019
+UniRef50_I3THN2	Dehydrogenase	0.0022161951311	0.00132104325577	-0.00089515187533
+UniRef50_P42463	Acetolactate synthase large subunit	1.69097736512e-05	0.00230555534205	0.0022886455684
+UniRef50_UPI00047BA501	hypothetical protein	4.02117844229e-05	5.56810994926e-05	1.54693150697e-05
+UniRef50_UPI000328B2BB	PREDICTED	4.248480136e-06	4.92893816057e-06	6.8045802457e-07
+UniRef50_UPI0003799127	hypothetical protein	0.000732633833179	5.45869184791e-05	-0.0006780469147
+UniRef50_A5UMH3	Predicted ATPase, AAA+ superfamily	0.00213266956327	0.000781683078755	-0.00135098648451
+UniRef50_UPI0000164CF9	ferredoxin, putative, partial	0.000187493040823	0.0468189019154	0.0466314088746
+UniRef50_UPI0003668456	hypothetical protein	4.24703662581e-06	1.22141981353e-05	7.96716150949e-06
+UniRef50_Q818I1	Superoxide dismutase [Mn] 1	2.02637594056e-05	8.74674783861e-05	6.72037189805e-05
+UniRef50_UPI00046F3B88	hypothetical protein	4.25430876693e-05	3.23861634539e-05	-1.01569242154e-05
+UniRef50_UPI00047E80CF	hypothetical protein	0.000108843291093	6.88861501375e-05	-3.99571409555e-05
+UniRef50_P0AEN0	Cystine binding periplasmic protein	0.00191394142	0.000454046998212	-0.00145989442179
+UniRef50_B1JXE0		6.66348875595e-05	0.000173290188611	0.000106655301051
+UniRef50_A4WSN3	Transcriptional regulator, TetR family	0.0105358659897	0.00224653346222	-0.00828933252748
+UniRef50_D9REU8	Poly  alpha glucosyltransferase	0.0079873345677	0.00342822467136	-0.00455910989634
+UniRef50_R9ZGV6	ABC transporter substrate binding protein	0.000676826074404	0.000371851407592	-0.000304974666812
+UniRef50_O25046	Adenosine deaminase	0.000205867189564	0.00310145812432	0.00289559093476
+UniRef50_P0AFU3		0.00381426467027	0.000577873072428	-0.00323639159784
+UniRef50_G7M452	Integral membrane sensor signal transduction histidine kinase	0.000266786014426	0.000639492970865	0.000372706956439
+UniRef50_Q02LE1		0.0002066529136	1.30307797212e-05	-0.000193622133879
+UniRef50_D4KM36	Dihydroxyacid dehydratase phosphogluconate dehydratase	0.000176811119401	0.00218247055578	0.00200565943638
+UniRef50_Q17XN9	Aspartate carbamoyltransferase	0.000265418137248	0.00284269616841	0.00257727803116
+UniRef50_G8NMF7	Oligopeptide ABC transporter, permease protein	0.00873258730521	0.00163441828101	-0.0070981690242
+UniRef50_B2UX24	Histidinol phosphate aminotransferase	0.000541329825509	0.00258933431853	0.00204800449302
+UniRef50_UPI00037E9746	hypothetical protein, partial	2.69602660008e-07	6.08557227832e-06	5.81596961831e-06
+UniRef50_G8QIK2	Cysteine synthase	0.000373664887828	0.000486087065181	0.000112422177353
+UniRef50_W8S4A8		2.83022467878e-05	0.000186553295655	0.000158251048867
+UniRef50_N2L427	CSS motif domain associated with EAL family protein	0.000367681157978	0.000379421891038	1.174073306e-05
+UniRef50_UPI0003B5F916	ABC transporter ATP binding protein	6.22119388654e-05	2.25546934608e-05	-3.96572454046e-05
+UniRef50_A7X5Y6	Heme sensor protein HssS	0.020711942119	0.00680491665805	-0.013907025461
+UniRef50_M1VXV3	Related to ECM4 protein 	0.000100020510852	1.49171220093e-05	-8.51033888427e-05
+UniRef50_H8H0N8	Diguanylate cyclase with GAF sensor	5.15596817037e-06	0.00148609462042	0.00148093865225
+UniRef50_D5UF49	Zn dependent hydrolase, glyoxylase	0.000345789498071	0.00602446012333	0.00567867062526
+UniRef50_Q1C8A9	N succinylglutamate 5 semialdehyde dehydrogenase	0.000212715512557	0.00725039413563	0.00703767862307
+UniRef50_O67078	3 isopropylmalate dehydratase large subunit	0.00300386851349	0.00329882926347	0.00029496074998
+UniRef50_A5WE51	Inner membrane peptidase, Serine peptidase, MEROPS family S49	0.000998820398352	0.00849768141504	0.00749886101669
+UniRef50_Q8CP91	ABC transporter protein	0.00555704034401	0.00213595798967	-0.00342108235434
+UniRef50_Q2S5G4	Phosphoadenosine phosphosulfate reductase	3.9666519241e-06	6.17905155058e-06	2.21239962648e-06
+UniRef50_UPI000471DE1F	indole 3 glycerol phosphate synthase	7.13455546964e-06	1.26556823339e-05	5.52112686426e-06
+UniRef50_Q9RUK2	Transcriptional regulator, TetR family	0.000216117932552	0.0368675735952	0.0366514556626
+UniRef50_UPI00036055AD	GTP cyclohydrolase I	2.55656355782e-05	9.84271622627e-05	7.28615266845e-05
+UniRef50_Q5HKY3	ABC transporter, ATP binding protein	0.0103189522032	0.00222667898673	-0.00809227321647
+UniRef50_G7M5B9	Type II secretion system protein E	0.000168020469813	0.00179333160157	0.00162531113176
+UniRef50_W4K0D8		0.000122470552319	1.58772825845e-05	-0.000106593269735
+UniRef50_C3BHS6	Aldehyde dehydrogenase	7.88070957963e-05	0.000320705924188	0.000241898828392
+UniRef50_K2D6N5		2.51673317541e-05	1.37062155265e-05	-1.14611162276e-05
+UniRef50_UPI00031C1838	hypothetical protein	0.000257251664199	2.43583553933e-05	-0.000232893308806
+UniRef50_UPI000475EE77	histidine kinase	2.83204896551e-05	7.27693870242e-05	4.44488973691e-05
+UniRef50_P39156	Putative sugar phosphate isomerase YwlF	0.000259143699447	0.0230945126387	0.0228353689393
+UniRef50_G7U731		0.00103746350656	0.0110051348113	0.00996767130474
+UniRef50_B9J3P1		0.000376050029429	5.34275165115e-05	-0.000322622512917
+UniRef50_P32153	Putative aminopeptidase FrvX	0.00263847019278	0.00111739504775	-0.00152107514503
+UniRef50_Q03WF6	Pseudouridine synthase	0.00622973340576	0.00159720051878	-0.00463253288698
+UniRef50_C7CLY8	Pirin like protein	1.07691096558e-05	1.62733079208e-05	5.504198265e-06
+UniRef50_W9H6Y5	Anti sigma regulatory factor	2.49108787771e-05	0.00196427302199	0.00193936214321
+UniRef50_Q744M7		8.2278572502e-05	0.00041010340218	0.000327824829678
+UniRef50_A6FZQ4		1.17721964737e-06	1.90281984392e-06	7.2560019655e-07
+UniRef50_B9KU19	Proline racemase	0.00671027587605	0.000987401770517	-0.00572287410553
+UniRef50_UPI000376B5E0	hypothetical protein	3.45512211015e-06	2.05776696778e-05	1.71225475676e-05
+UniRef50_X0NIS7		0.000251657325899	6.48520454435e-05	-0.000186805280456
+UniRef50_P0AEQ0	Glycolate oxidase subunit GlcD	0.010533790776	0.00268810835807	-0.00784568241793
+UniRef50_Q4ZLN0		9.62974461409e-05	0.000213739472998	0.000117442026857
+UniRef50_UPI0003C1B110		4.42669354004e-06	3.22239022395e-05	2.77972086995e-05
+UniRef50_Q6A8L2	Imidazole glycerol phosphate synthase subunit HisH	0.000456636276836	0.00308746143726	0.00263082516042
+UniRef50_Q1Q8B0	UvrABC system protein C	9.14747953543e-05	0.00870733995616	0.00861586516081
+UniRef50_UPI00036C8E2B	hypothetical protein	0.000241861192974	0.000109549949697	-0.000132311243277
+UniRef50_UPI0003C12083	PREDICTED	0.000253758691267	7.30402197775e-05	-0.00018071847149
+UniRef50_J9YQK1	Cobyric acid synthase	0.00650470710924	0.00223013663677	-0.00427457047247
+UniRef50_A8AVW5	Competence protein ComFC	0.00675505114439	0.000801764810481	-0.00595328633391
+UniRef50_D4J129		9.50234955805e-06	1.52845018673e-05	5.78215230925e-06
+UniRef50_A5VGR7	Type F conjugative transfer system protein TraW	0.000339730411081	0.000131072656658	-0.000208657754423
+UniRef50_F5ZGN4	Membrane protein	0.000189691451679	0.000369920168561	0.000180228716882
+UniRef50_J0VQZ8		8.44407444647e-05	0.000109289535097	2.48487906323e-05
+UniRef50_UPI00036E2511	hypothetical protein	1.57539346744e-05	1.47464640963e-05	-1.0074705781e-06
+UniRef50_UPI000372ECF2	hypothetical protein	7.90877581427e-05	7.07682426647e-05	-8.319515478e-06
+UniRef50_UPI00036BAEE5	hypothetical protein, partial	1.07418130249e-05	6.64488281368e-05	5.57070151119e-05
+UniRef50_B9DKX8	Glutamine amidotransferase subunit PdxT	0.0135433070421	0.00233047565188	-0.0112128313902
+UniRef50_J9YPK5	SorC family transcriptional regulator	0.000117719123342	0.00456610404785	0.00444838492451
+UniRef50_R6U1L8	Glycosyltransferases involved in cell wall biogenesis	0.00214650030179	0.00199769355328	-0.00014880674851
+UniRef50_U4VDJ5	Threonine dehydratase	7.80101255919e-05	0.000118362641484	4.03525158921e-05
+UniRef50_UPI0003BB97B6	PREDICTED	3.11763471032e-05	1.20789275329e-05	-1.90974195703e-05
+UniRef50_UPI00038069E1	hypothetical protein	2.97388836664e-06	1.87239576766e-05	1.575006931e-05
+UniRef50_V4I3L2	DNA polymerase II large subunit	5.20884945589e-05	0.000103192264344	5.11037697851e-05
+UniRef50_D1AIE5	Selenate reductase YgfK	0.000234992315178	0.00129197734883	0.00105698503365
+UniRef50_D3EVZ5	Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated	0.00385591040675	0.00050770780263	-0.00334820260412
+UniRef50_UPI000361B549	hypothetical protein	0.000240524230697	6.21544949988e-06	-0.000234308781197
+UniRef50_G4B724	Transporting ATPase	0.00014674982724	6.30975081868e-05	-8.36523190532e-05
+UniRef50_K9ZWQ1		1.8977846103e-05	0.00115138430546	0.00113240645936
+UniRef50_UPI0002000114	hypothetical protein	8.99262839273e-05	6.39903477161e-06	-8.35272491557e-05
+UniRef50_Q3JRN2		5.66217485885e-05	0.000135466378533	7.88446299445e-05
+UniRef50_K9ZWQ8		0.000463826619528	0.0590811091549	0.0586172825354
+UniRef50_P94462	Peptide deformylase 1	5.11030596013e-05	0.00050770780263	0.000456604743029
+UniRef50_Q164M5	5,10 methylenetetrahydrofolate reductase, putative	0.00830675860726	0.00146924406929	-0.00683751453797
+UniRef50_UPI00037A0B76	hypothetical protein, partial	0.000103142713456	4.15820020515e-05	-6.15607114045e-05
+UniRef50_Q57981	Adenylosuccinate synthetase	0.00475470242676	0.00112723611237	-0.00362746631439
+UniRef50_UPI00041516F3	chemotaxis protein CheW	0.000253626809017	0.000101188468796	-0.000152438340221
+UniRef50_Q0AUL1	Energy coupling factor transporter ATP binding protein EcfA	1.12799243792e-05	3.08964276854e-05	1.96165033062e-05
+UniRef50_Q46841	Inner membrane protein YghQ	0.00254128261388	0.000298802737126	-0.00224247987675
+UniRef50_K8DRW2	Phosphoribosylformylglycinamidine synthase,synthetase subunit   Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit	0.000543184994289	0.000139541839325	-0.000403643154964
+UniRef50_V4JYH9		4.99075633506e-05	8.51757946241e-05	3.52682312735e-05
+UniRef50_UPI000395D985	PREDICTED	3.83182932993e-05	0.000231016979293	0.000192698685994
+UniRef50_UPI0004445EDA	PREDICTED	1.24795071496e-05	1.53524892008e-05	2.8729820512e-06
+UniRef50_A6LU01		0.00142776083898	0.00110234670396	-0.00032541413502
+UniRef50_C5N580		0.0157424653439	0.0028091859804	-0.0129332793635
+UniRef50_M9S177	Oxidoreductase	0.000608848369114	0.00100107357693	0.000392225207816
+UniRef50_A4WZ24		4.07631310852e-05	0.000107947036194	6.71839051088e-05
+UniRef50_D0K9R4		0.0194132776122	0.000725006767648	-0.0186882708446
+UniRef50_Q9ZHF6	DNA polymerase III PolC type	3.50595821622e-06	1.62863361008e-06	-1.87732460614e-06
+UniRef50_P39386	Multidrug resistance protein MdtM	0.0016552044875	0.00126853813681	-0.00038666635069
+UniRef50_I0C5I2	EcsB	0.0107112776757	0.00186295964339	-0.00884831803231
+UniRef50_S5CTA0	AraC type DNA binding domain containing protein	0.000282796742494	0.00286096025943	0.00257816351694
+UniRef50_UPI0003B4EBEF	adenosylcobinamide kinase	6.21816298963e-05	0.000136175736748	7.39941068517e-05
+UniRef50_UPI0003F6C3B5	family 2 glycosyl transferase	0.000470615557377	0.000110153115611	-0.000360462441766
+UniRef50_R7E4L4	Hydrolase NUDIX family	0.00400540652602	0.00158163581531	-0.00242377071071
+UniRef50_B2S710	Oxygen dependent coproporphyrinogen III oxidase	0.00264773689023	0.00160641367452	-0.00104132321571
+UniRef50_UPI0003178DCE	hypothetical protein	9.88420958276e-06	8.74408379193e-06	-1.14012579083e-06
+UniRef50_P24207	Phenylalanine specific permease	0.0104204752047	0.025340974758	0.0149204995533
+UniRef50_Q3J2Z9		0.0018010249781	0.000851875111142	-0.000949149866958
+UniRef50_T1CKZ6	Snf2 family protein	2.59872112095e-05	0.00121101552606	0.00118502831485
+UniRef50_Q093G7		1.26682609742e-05	7.58872719654e-06	-5.07953377766e-06
+UniRef50_UPI0004719E67	hypothetical protein	2.59642711444e-06	4.41125574911e-06	1.81482863467e-06
+UniRef50_UPI000379C92D	hypothetical protein	1.62446777127e-05	1.53782460741e-05	-8.664316386e-07
+UniRef50_D0D8I9		5.51402648911e-05	4.64388417158e-06	-5.04963807195e-05
+UniRef50_D5V7X1		5.82945409357e-06	0.000140427456678	0.000134598002584
+UniRef50_A0A017HKQ1	Mobile element protein	0.000190585736692	9.06566037808e-05	-9.99291329112e-05
+UniRef50_UPI00037AC60C	hypothetical protein	8.46456825631e-05	2.25955496882e-05	-6.20501328749e-05
+UniRef50_Q080R9	Beta hexosaminidase	1.48491524218e-05	2.46760553683e-05	9.8269029465e-06
+UniRef50_I1F0Y4		4.68361260514e-05	9.72843530599e-06	-3.71076907454e-05
+UniRef50_X1GXU9	Marine sediment metagenome DNA, contig	2.44837517688e-05	2.67237940063e-05	2.2400422375e-06
+UniRef50_O27502	Hydroxylamine reductase	0.00452198374966	0.000309605316568	-0.00421237843309
+UniRef50_A0KQA4	DNA directed RNA polymerase subunit beta	5.64639397329e-06	3.24564807299e-06	-2.4007459003e-06
+UniRef50_K2SHY0		0.000841342734295	8.18174650896e-05	-0.000759525269205
+UniRef50_Q46DD8	Acetyltransferase	0.00190049520132	0.000982516736696	-0.000917978464624
+UniRef50_A5VPU4	Transcriptional regulator, MarR family	0.0142413238766	0.000715919285321	-0.0135254045913
+UniRef50_P07661	Citrate proton symporter	0.00013198810799	0.00550458138936	0.00537259328137
+UniRef50_UPI00046F7539	hypothetical protein	3.7508012116e-06	3.20622109569e-06	-5.4458011591e-07
+UniRef50_Q7UXF5	Glucose 1 phosphate adenylyltransferase	7.89082454583e-06	6.55718983757e-06	-1.33363470826e-06
+UniRef50_UPI000476E759	hypothetical protein	2.05574624699e-06	6.17399741779e-06	4.1182511708e-06
+UniRef50_UPI000478E93F	hypothetical protein, partial	4.42318025113e-05	5.28710938048e-05	8.6392912935e-06
+UniRef50_P77884	Dihydroorotase	4.58789429982e-06	7.18377052623e-06	2.59587622641e-06
+UniRef50_UPI0001850CBB	hydrolase	0.000291870609934	1.07807596416e-05	-0.000281089850292
+UniRef50_Y5FPX8		3.38026184034e-05	4.04053851872e-05	6.6027667838e-06
+UniRef50_UPI0003F0DCE2	PREDICTED	1.45973419674e-05	6.5187567758e-05	5.05902257906e-05
+UniRef50_G8AE70		0.000132195944694	6.03323453248e-05	-7.18635993692e-05
+UniRef50_R0VSS0	Tetrapyrrole  Methylases family protein (Fragment)	0.00039596432397	0.000537769710152	0.000141805386182
+UniRef50_Q9JLZ1-2	Isoform 2 of Glutaredoxin 3	9.92745199079e-05	7.6030284992e-05	-2.32442349159e-05
+UniRef50_UPI000365E816	hypothetical protein	6.03346431253e-06	1.63191835873e-05	1.02857192748e-05
+UniRef50_Q21NT4		5.2003617978e-05	1.06351794859e-05	-4.13684384921e-05
+UniRef50_UPI0003298B2A	PREDICTED	4.92823123569e-06	6.47775133308e-06	1.54952009739e-06
+UniRef50_Q5HNZ4	Ferric uptake regulation protein	0.0149948230784	0.00226035592642	-0.012734467152
+UniRef50_UPI00037B54FA	hypothetical protein	1.11340890809e-05	1.83762037399e-05	7.242114659e-06
+UniRef50_U5MNS8	Permease	0.000245205163361	0.000378673401363	0.000133468238002
+UniRef50_A5VZX6		2.41132732977e-05	1.02386853225e-05	-1.38745879752e-05
+UniRef50_B2KCI5	Tryptophan synthase beta chain	0.000117629774232	2.04643832186e-05	-9.71653910134e-05
+UniRef50_D8JK92	LysR family transcriptional regulator	0.000146501677432	0.00816274919585	0.00801624751842
+UniRef50_UPI00036EAD03	hypothetical protein	2.11771781224e-06	3.31527060457e-06	1.19755279233e-06
+UniRef50_J3JJ09		0.000141773346578	4.48651825862e-05	-9.69081639918e-05
+UniRef50_UPI00036EDC4E	hypothetical protein	2.22817708509e-05	3.38874267446e-05	1.16056558937e-05
+UniRef50_D9VUJ1	Rim protein 	9.27165255943e-06	0.000569117992702	0.000559846340143
+UniRef50_A3PH50		0.00845558079176	0.00183629394278	-0.00661928684898
+UniRef50_Q3IV16		0.0239036241221	0.00241953917364	-0.0214840849485
+UniRef50_A5UMF4	Replication factor C large subunit	0.0020421134256	0.000562429418714	-0.00147968400689
+UniRef50_Q3IV10		0.0091409655003	0.00457739040826	-0.00456357509204
+UniRef50_UPI000372C9B6	MULTISPECIES	6.93226034356e-05	5.04271825325e-06	-6.42798851823e-05
+UniRef50_UPI00038172EF	hypothetical protein, partial	6.17480180261e-05	0.000105800390049	4.40523720229e-05
+UniRef50_UPI00046F18A1	oxidoreductase	2.06668985647e-06	7.20076490994e-06	5.13407505347e-06
+UniRef50_Q2NEJ8	Predicted Fe S oxidoreductase	0.00260911485228	0.000393153774187	-0.00221596107809
+UniRef50_A6LSG6	Penicillin binding protein, transpeptidase	0.000331882878003	0.00182343453349	0.00149155165549
+UniRef50_UPI0004790007	hypothetical protein	3.28075863175e-05	6.69997818735e-06	-2.61076081302e-05
+UniRef50_UPI000365533E	hypothetical protein	6.505621983e-06	0.000240386649613	0.00023388102763
+UniRef50_M8PZ54	PTS system, glucose like IIB component domain protein	0.00164604523284	0.000235625030732	-0.00141042020211
+UniRef50_UPI0003775AE8	hypothetical protein	0.000515857817048	8.96537279181e-05	-0.00042620408913
+UniRef50_UPI000477A38C	molybdopterin biosynthesis protein MoeB	1.68808741053e-05	2.67215868743e-05	9.840712769e-06
+UniRef50_Q8ZNT5	Cellulose synthesis regulatory protein	0.00141494910134	0.000292368137996	-0.00112258096334
+UniRef50_O27097	2 phospho L lactate transferase	0.00228994347001	0.00156414781145	-0.00072579565856
+UniRef50_A6LR83	Drug resistance transporter, EmrB QacA subfamily	9.65437311629e-05	0.00103278156127	0.000936237830107
+UniRef50_UPI00036A9345	hypothetical protein	5.32848429275e-05	1.86717049058e-05	-3.46131380217e-05
+UniRef50_Q8FE40		9.65283474009e-06	0.000145779848251	0.000136127013511
+UniRef50_K9VLK6		0.000135511232593	1.56960430429e-05	-0.00011981518955
+UniRef50_G8UZK4	Replication protein Rep	0.00439265995996	0.000800016090176	-0.00359264386978
+UniRef50_UPI00047CA240	hypothetical protein	8.59037087487e-06	0.000212552231732	0.000203961860857
+UniRef50_Q5LY98	Probable dual specificity RNA methyltransferase RlmN	0.00771002923959	0.00665418278146	-0.00105584645813
+UniRef50_X2N374		0.00163099844591	0.000376199624447	-0.00125479882146
+UniRef50_G8PS78		2.85023979977e-06	4.78823315793e-06	1.93799335816e-06
+UniRef50_F0QDW1	Adenylate guanylate cyclase	0.000183133219776	0.00950985509696	0.00932672187718
+UniRef50_UPI0003C1B148	PREDICTED	4.5065170515e-05	3.72256559668e-05	-7.8395145482e-06
+UniRef50_P77802	Probable outer membrane usher protein EcpC	0.000750848481408	0.00131489472524	0.000564046243832
+UniRef50_Q1J1F1	Diguanylate cyclase	3.37831024948e-06	0.00101143677659	0.00100805846634
+UniRef50_E6N053	O succinylhomoserine sulfhydrylase	0.000353998304629	0.00368434343958	0.00333034513495
+UniRef50_M9VKY5	Mannose 6 phosphate isomerase	0.000197497483254	0.0040960472943	0.00389854981105
+UniRef50_U5NZ17		0.00121850256087	0.000740505583435	-0.000477996977435
+UniRef50_P46723	Delta aminolevulinic acid dehydratase	5.68046062819e-05	6.50359977466e-05	8.2313914647e-06
+UniRef50_Z5R973		2.12106902489e-05	3.54871501192e-05	1.42764598703e-05
+UniRef50_D3E4F5	Archaea specific RecJ like exonuclease	0.00463683983834	0.000251730228627	-0.00438510960971
+UniRef50_Q03CK3	Pyrrolidone carboxylate peptidase	1.29313011648e-05	3.79850278201e-05	2.50537266553e-05
+UniRef50_B7A2D4	Beta glucuronidase UidA	0.00183743949821	0.000496090318404	-0.00134134917981
+UniRef50_Q88UE0	Imidazoleglycerol phosphate dehydratase	1.40955356415e-05	0.000308693420057	0.000294597884415
+UniRef50_UPI00047854CC	hypothetical protein	2.66800936349e-06	6.33683522622e-06	3.66882586273e-06
+UniRef50_X5E185		0.000620334373313	0.000271843494808	-0.000348490878505
+UniRef50_UPI00036C176D	hypothetical protein	1.88419793905e-05	0.000159095109903	0.000140253130512
+UniRef50_A1V6Q7		4.46632625869e-05	4.60640697911e-05	1.4008072042e-06
+UniRef50_P80651	Tetrahydromethanopterin S methyltransferase subunit E	0.00178714235988	0.00110371478556	-0.00068342757432
+UniRef50_Q83QI5	GTPase Era	0.00159063071802	0.000932449164947	-0.000658181553073
+UniRef50_A5UNW2		0.00285667453409	0.00136811960901	-0.00148855492508
+UniRef50_A5UNW3		0.00242155541944	0.000324816550467	-0.00209673886897
+UniRef50_A5UNW4		0.00247557280243	0.000506243385578	-0.00196932941685
+UniRef50_A5UNW5		0.00341217129683	0.00100274137072	-0.00240942992611
+UniRef50_A1WS37	NAD transhydrogenase, subunit alpha part 2	5.16930851842e-05	5.24131401657e-05	7.200549815e-07
+UniRef50_Q10216		3.18232637393e-05	4.70028660337e-05	1.51796022944e-05
+UniRef50_F2ZBV1	60 kDa chaperonin 	2.34873842884e-05	8.27722815076e-05	5.92848972192e-05
+UniRef50_D6D7L5	Phage tail tape measure protein, TP901 family, core region	4.52788031274e-06	0.00296170169458	0.00295717381427
+UniRef50_E4PGW6	L carnitine dehydratase bile acid inducible protein F	0.000101474728189	0.00488797135005	0.00478649662186
+UniRef50_P76319		0.00703951790252	0.00074293510741	-0.00629658279511
+UniRef50_W8T2N2	Mannitol 1 phosphate 5 dehydrogenase	0.00069767491037	0.000105599780768	-0.000592075129602
+UniRef50_UPI000225A95D	UDP N acetylglucosamine pyrophosphorylase	3.83319357599e-06	1.13923735143e-05	7.55917993831e-06
+UniRef50_UPI00037DA29D	hypothetical protein	2.56199191014e-06	3.89654848214e-06	1.334556572e-06
+UniRef50_P94909		4.82366086317e-05	2.57393219854e-05	-2.24972866463e-05
+UniRef50_D7GCK3	Mannose 1 phosphate guanylyltransferase	0.000219071332796	0.00419968170138	0.00398061036858
+UniRef50_R7VTK3	Neurofilament heavy polypeptide	5.30764219547e-06	3.86684098007e-06	-1.4408012154e-06
+UniRef50_Q9XGI9	N carbamoylputrescine amidase	0.00132858208304	0.00337382397018	0.00204524188714
+UniRef50_U5T4K4		0.00646947657082	0.000984116545227	-0.00548536002559
+UniRef50_Q9RW76		0.000808898547544	0.0447192904455	0.043910391898
+UniRef50_I6SVC2		0.00280303646625	0.00198808735513	-0.00081494911112
+UniRef50_UPI00040EFCE1	hypothetical protein	2.4498473779e-05	2.07891197993e-05	-3.7093539797e-06
+UniRef50_D2N9E8	MAP domain protein	0.00854667035152	0.00167395991889	-0.00687271043263
+UniRef50_UPI0003C75CB7	hypothetical protein	0.000165023126249	0.00013016607264	-3.4857053609e-05
+UniRef50_B9NSA4		7.84094741989e-05	4.15359892577e-05	-3.68734849412e-05
+UniRef50_UPI000413A679	hypothetical protein	0.000110056964347	4.43657873899e-05	-6.56911769571e-05
+UniRef50_E7B190	Methyl viologen resistance protein smvA	0.000247054934676	0.00680520638547	0.00655815145079
+UniRef50_UPI000361644F	hypothetical protein	6.24905034921e-05	5.22278513714e-05	-1.02626521207e-05
+UniRef50_G4T2X8		0.00221089323748	0.00142895179933	-0.00078194143815
+UniRef50_F9YYN2		0.0030606972069	0.00565630314522	0.00259560593832
+UniRef50_Q0AZJ3	Chorismate synthase	1.68724057885e-05	0.000113186278063	9.63138722745e-05
+UniRef50_S5CTY8		8.27820150938e-05	0.00527786407966	0.00519508206457
+UniRef50_P08660	Lysine sensitive aspartokinase 3	0.00471721180914	0.00136173150206	-0.00335548030708
+UniRef50_A6U596	Ribonuclease P protein component	0.00776329579911	0.000513594269898	-0.00724970152921
+UniRef50_P45213	Peptide methionine sulfoxide reductase MsrA MsrB	0.00264406343735	0.000476513409224	-0.00216755002813
+UniRef50_S3G9A5		8.31974926995e-05	2.84939044588e-05	-5.47035882407e-05
+UniRef50_W4KUQ3	Cytochrome C biogenesis protein CcmI	2.8766646521e-05	0.000470000061318	0.000441233414797
+UniRef50_UPI0003A1B331	MFS transporter	0.000104642943705	6.44653014978e-06	-9.81964135552e-05
+UniRef50_F3STZ2	Valine  tRNA ligase 	0.00999356050885	0.00311975584142	-0.00687380466743
+UniRef50_Q8CNH3	Repressor protein	0.00344877995438	0.000588671173145	-0.00286010878123
+UniRef50_UPI0003B68F93	ABC transporter ATPase	7.71706047856e-06	0.000313999243079	0.0003062821826
+UniRef50_A4U2D7		7.77543090901e-05	4.82600080912e-05	-2.94943009989e-05
+UniRef50_UPI0003DEC987	PREDICTED	3.8218700801e-05	0.000100385043428	6.2166342627e-05
+UniRef50_D3DZ44	Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase	0.00256211965701	0.000697670961853	-0.00186444869516
+UniRef50_H8GUK3	Peptidase M20D, amidohydrolase	0.0004455255288	0.0882152863352	0.0877697608064
+UniRef50_J3N2U1		0.00113386794639	4.35696086151e-05	-0.00109029833777
+UniRef50_UPI0003B7917E	DNA binding protein	4.13946727472e-06	0.000392638113001	0.000388498645726
+UniRef50_A0Z0Z6		3.14897189465e-06	5.01303605391e-06	1.86406415926e-06
+UniRef50_UPI0003B5A232	ribosomal protein L36	5.0667129952e-05	0.000459378159744	0.000408711029792
+UniRef50_Q7VKM9	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.84622647066e-05	6.4982807109e-06	-2.19639839957e-05
+UniRef50_UPI00036E6417	hypothetical protein	1.52698667396e-06	1.72611975298e-05	1.57342108558e-05
+UniRef50_UPI0003292B2A	PREDICTED	1.73186854581e-05	6.82763102027e-05	5.09576247446e-05
+UniRef50_M1N3H4	Exopolysaccharide biosynthesis protein	0.000244962190495	0.000923735088712	0.000678772898217
+UniRef50_F0JXQ7		8.75632513603e-05	0.000370638226522	0.000283074975162
+UniRef50_UPI0002EF3F38	hypothetical protein	2.62164310186e-05	3.32727668159e-06	-2.2889154337e-05
+UniRef50_Q8Z2V9	Superoxide dismutase [Mn]	0.00172662976306	0.00228414191033	0.00055751214727
+UniRef50_Q9RYV9		0.000338251556951	0.00891760645308	0.00857935489613
+UniRef50_J3F9J8	Nicotinamide mononucleotide transporter	0.00418713704251	0.00100758225853	-0.00317955478398
+UniRef50_B5Y0Y6	Queuine tRNA ribosyltransferase	0.00348088671559	0.00257498700551	-0.00090589971008
+UniRef50_K7S0T6	5 Nucleotidase domain containing protein	0.000264021945448	0.00228925626309	0.00202523431764
+UniRef50_G7ZMN3	Iron transporting membrane protein, putative	0.00760783733088	0.000676536190194	-0.00693130114069
+UniRef50_A0A031JAP0	Plasmid stabilization system	0.000209615527261	4.27047485242e-05	-0.000166910778737
+UniRef50_Q0VT82	Monooxygenase, putative	7.93037791655e-05	0.00769352718979	0.00761422341062
+UniRef50_G7U5S7	HAD hydrolase, family IIA	0.000454346682378	0.0061452184808	0.00569087179842
+UniRef50_Q5HLV3	Transcriptional regulator, AraC family	0.0093275210869	0.00209506782327	-0.00723245326363
+UniRef50_F1UC42		0.000137972896485	0.000570682823659	0.000432709927174
+UniRef50_H7CSE8	GntR family transcriptional regulator	0.000256345594659	0.000744558989598	0.000488213394939
+UniRef50_UPI000479951F	PTS glucose transporter subunit IIA	1.98508316764e-05	6.26298415928e-05	4.27790099164e-05
+UniRef50_C7ZSD0	GtrA family protein	0.0113369013403	0.000995277041056	-0.0103416242992
+UniRef50_A3JMR3		0.00017439017889	3.5041424328e-05	-0.000139348754562
+UniRef50_UPI00046681A8	hypothetical protein	5.55779695436e-05	3.45500979934e-05	-2.10278715502e-05
+UniRef50_A6M2M1		0.000277276821291	0.00218159784021	0.00190432101892
+UniRef50_UPI0004417C25	hypothetical protein PUNSTDRAFT_59595	3.99121004518e-06	1.35721080172e-05	9.58089797202e-06
+UniRef50_A6LPG6	Hydrolase, TatD family	0.00113515263772	0.00112204662369	-1.310601403e-05
+UniRef50_UPI0003FC161E	hypothetical protein	4.26923956839e-05	2.94999216703e-05	-1.31924740136e-05
+UniRef50_G7M238	Transcriptional regulator, TetR family	0.00181163480643	0.00137454010541	-0.00043709470102
+UniRef50_Q8ZAX7	tRNA dihydrouridine synthase B	0.00120825837784	0.00431531295247	0.00310705457463
+UniRef50_Q47SC0	Aspartyl glutamyl tRNA amidotransferase subunit B	0.000175187788843	0.00699325139052	0.00681806360168
+UniRef50_L8E1V7	Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG	0.0141592244189	0.00481627715774	-0.00934294726116
+UniRef50_UPI0003727421	hypothetical protein	1.73729237397e-05	3.58992703517e-05	1.8526346612e-05
+UniRef50_UPI0002D60E46	hypothetical protein	1.34272214726e-05	3.44113955746e-06	-9.98608191514e-06
+UniRef50_Q3HKG9		0.017265930779	0.00265882810498	-0.014607102674
+UniRef50_W0LIC7	Branched chain amino acid transport	4.29519926248e-05	4.48018707836e-05	1.8498781588e-06
+UniRef50_UPI0004702F9D	hypothetical protein, partial	0.000211205101001	5.18849272802e-05	-0.000159320173721
+UniRef50_UPI000473FCD3	hypothetical protein, partial	8.54158379408e-05	0.00070817097023	0.000622755132289
+UniRef50_C4K578	UPF0145 protein HDEF_1024	0.000447692830401	0.00211205948976	0.00166436665936
+UniRef50_UPI0003621977	hypothetical protein	8.20029271594e-06	0.000126054317289	0.000117854024573
+UniRef50_Q2NE86	Bifunctional enzyme Fae Hps	0.00209764063385	0.000292763539482	-0.00180487709437
+UniRef50_Q6A9R8	Glycine dehydrogenase 	0.000350818823421	0.00680483377118	0.00645401494776
+UniRef50_A8A338		0.00409376665691	0.00193650298488	-0.00215726367203
+UniRef50_P45763	Putative type II secretion system protein L	0.0033416882143	0.000798691199691	-0.00254299701461
+UniRef50_M9VKX5		0.000769967304622	0.00932205000829	0.00855208270367
+UniRef50_Q8A624	ATP dependent 6 phosphofructokinase 2	1.86254678661e-05	2.59001272116e-05	7.2746593455e-06
+UniRef50_V6PAD8	Putative peptidase, aminobenzoyl glutamate utilization protein 	0.00299955417645	0.000343391517665	-0.00265616265879
+UniRef50_UPI000471F071	cobinamide kinase	8.91746531157e-06	0.000123197666257	0.000114280200945
+UniRef50_C4ZVV8	HTH type transcriptional regulator MurR	0.00460447238516	0.00169853105957	-0.00290594132559
+UniRef50_K0SVQ3		0.000114183282777	0.00031024253672	0.000196059253943
+UniRef50_I0TP75		0.0123179737632	0.00294292680883	-0.00937504695437
+UniRef50_F8FB46	Iron ABC transporter permease	0.000346376403132	0.00170023368121	0.00135385727808
+UniRef50_Q8ZPN4		0.00482190448347	0.00301192962947	-0.001809974854
+UniRef50_V5BVX1		0.000755547429813	0.000151880351022	-0.000603667078791
+UniRef50_G5ML36	Permease protein HisM	0.00015093983677	0.000198420687431	4.7480850661e-05
+UniRef50_UPI0003712D9F	cold shock protein	1.39807736308e-05	1.10369855935e-05	-2.9437880373e-06
+UniRef50_P52614	Flagellar hook length control protein	0.00358840843536	0.000511266433277	-0.00307714200208
+UniRef50_W9CKC5		2.15410417027e-05	1.81642870237e-05	-3.376754679e-06
+UniRef50_V8HF01	Transposase IS5	0.000495757062521	0.000118484775626	-0.000377272286895
+UniRef50_A4WVU4	Surface antigen 	0.00158803482858	0.000327340409736	-0.00126069441884
+UniRef50_I6TXF6		0.00130488493397	0.000972432875408	-0.000332452058562
+UniRef50_D4HD50		0.000290483666308	0.000257375315014	-3.3108351294e-05
+UniRef50_UPI00046FE274	hypothetical protein	3.37683565218e-05	1.47411157041e-05	-1.90272408177e-05
+UniRef50_D4HD52		0.000111025290843	0.00470598960883	0.00459496431799
+UniRef50_G4Q6N7	Inner membrane translocator	0.0064481718642	0.00527372306114	-0.00117444880306
+UniRef50_UPI00046D7550	hypothetical protein	1.8196074651e-05	2.00989171014e-05	1.9028424504e-06
+UniRef50_S4YYU3	GntR family transcriptional regulator	0.000241462252992	0.00524339973559	0.0050019374826
+UniRef50_P50045	Urease subunit beta 	9.56859371734e-06	3.71457135516e-05	2.75771198343e-05
+UniRef50_L0WLU4	Apolipoprotein N acyltransferase	0.000177081527952	0.00839953829536	0.00822245676741
+UniRef50_UPI0004659182	phosphoadenosine phosphosulfate reductase	1.12127392719e-05	1.66251038809e-05	5.412364609e-06
+UniRef50_UPI000225A9BC	bacteriophage replication gene A protein 	0.00022371803292	0.000252878997653	2.9160964733e-05
+UniRef50_E4PPI0	UPF0125 protein HP15_3087	1.70732814203e-05	3.4631863056e-05	1.75585816357e-05
+UniRef50_B7V3C6		0.000620833664586	0.000192807424497	-0.000428026240089
+UniRef50_UPI00047C25CC	cytochrome D ubiquinol oxidase subunit II	1.45975191631e-05	2.0504367565e-05	5.9068484019e-06
+UniRef50_A6LSC2	3 oxoacyl [acyl carrier protein] synthase 3	0.000600102861441	0.000208453041384	-0.000391649820057
+UniRef50_UPI0004771F9A	hypothetical protein	4.1757239244e-06	1.11573688496e-05	6.9816449252e-06
+UniRef50_A6LR66	Signal transduction histidine kinase regulating citrate malate metabolism	9.214466774e-05	0.000388596770786	0.000296452103046
+UniRef50_A4XYX3	Lipoyl synthase	3.94357719838e-06	0.0563654446876	0.0563615011104
+UniRef50_UPI000386F412	PREDICTED	6.52068591621e-06	1.02025904921e-05	3.68190457589e-06
+UniRef50_A0A058YZC5		1.48948292193e-05	0.000108221522658	9.33266934387e-05
+UniRef50_UPI0004548432	PREDICTED	2.04429158187e-05	0.000111479742682	9.10368268633e-05
+UniRef50_R8A9F1		0.0022233228711	0.00131594079692	-0.00090738207418
+UniRef50_F6II99	YVTN beta propeller repeat containing protein	0.000162106227539	1.48045921339e-05	-0.000147301635405
+UniRef50_P0AFH0	Methylated DNA  protein cysteine methyltransferase	0.00375778777938	0.000346751512944	-0.00341103626644
+UniRef50_UPI000370022D	hypothetical protein	7.92407470081e-06	3.02541310036e-06	-4.89866160045e-06
+UniRef50_P24205	Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase	0.00336801201352	0.000985982117213	-0.00238202989631
+UniRef50_UPI000379C912	hypothetical protein	2.70993756199e-05	5.67495541447e-06	-2.14244202054e-05
+UniRef50_UPI00035D44F9	hypothetical protein	2.53655065304e-06	1.43741449778e-05	1.18375943248e-05
+UniRef50_UPI0003B7A57E	prolipoprotein diacylglyceryl transferase	0.000137634071901	1.00455974915e-05	-0.00012758847441
+UniRef50_Q8CP86	Putative branched chain amino acid carrier protein SE_1090	0.0155643108753	0.00480222598513	-0.0107620848902
+UniRef50_G8AFT7		0.0118807814263	0.000163379172346	-0.011717402254
+UniRef50_UPI00046E7A1E	TonB dependent receptor	0.000213842960087	0.000179398412117	-3.444454797e-05
+UniRef50_U2RQ03		0.000639806760763	0.00495573661168	0.00431592985092
+UniRef50_F5M4B6		0.000296661755423	0.000694993764996	0.000398332009573
+UniRef50_Q9I7A3		0.000752274247313	0.000188500024587	-0.000563774222726
+UniRef50_V5SRZ3	Aminoglycoside phosphotransferase	0.00080641702341	0.000329962799096	-0.000476454224314
+UniRef50_Q0T1Y1	3 phenylpropionate cinnamic acid dioxygenase subunit alpha	0.0036595801954	0.0023085886548	-0.0013509915406
+UniRef50_Q0TMN9	DNA directed RNA polymerase subunit beta	4.25549847631e-06	4.85212492119e-06	5.9662644488e-07
+UniRef50_C5F4X4	Spermidine putrescine ABC transporter permease	0.0187750295822	0.00864786608688	-0.0101271634953
+UniRef50_A6LQT7	Ribulose phosphate 3 epimerase	0.000542965031826	0.00111168135594	0.000568716324114
+UniRef50_Q7UKV0	Peptidyl tRNA hydrolase	1.73284287074e-05	2.8350129515e-05	1.10217008076e-05
+UniRef50_UPI000477C8DB	alcohol dehydrogenase	1.16730695514e-05	1.73136486649e-05	5.6405791135e-06
+UniRef50_A2FBD4	Alanine dehydrogenase 2, putative	1.30916503275e-05	1.20698673995e-05	-1.021782928e-06
+UniRef50_D5ALB3		0.000330691039377	5.32549878972e-05	-0.00027743605148
+UniRef50_A4WQF1	Homocysteine S methyltransferase	0.000331442869217	0.000192807424497	-0.00013863544472
+UniRef50_Q9KL04	Maltose maltodextrin import ATP binding protein MalK	7.78327777594e-05	2.29644103942e-05	-5.48683673652e-05
+UniRef50_A9WP05	Dihydroxy acid dehydratase	3.77364924188e-05	3.58646342559e-05	-1.8718581629e-06
+UniRef50_UPI0002FFECEA	hypothetical protein	4.24335872169e-05	4.23905152011e-05	-4.30720158e-08
+UniRef50_Q3J7W9		2.83638882642e-05	0.000108647044534	8.02831562698e-05
+UniRef50_UPI0002192F2F	putative nitrate transport ATP binding protein, partial	0.000106128058674	0.000153041771148	4.6913712474e-05
+UniRef50_UPI0002E83586	hypothetical protein	9.80496521369e-06	8.35181853421e-06	-1.45314667948e-06
+UniRef50_UPI000367925C	hypothetical protein	1.05795066237e-05	2.2947070667e-06	-8.284799557e-06
+UniRef50_A8ZXR7	Phosphopantetheine adenylyltransferase	3.22051603876e-05	1.5069480091e-05	-1.71356802966e-05
+UniRef50_UPI00029A061A	adenylosuccinate lyase	5.94167392635e-05	6.11477142931e-05	1.7309750296e-06
+UniRef50_UPI000363D694	hypothetical protein	0.000117411954549	4.9575529495e-05	-6.7836425054e-05
+UniRef50_Q3HKJ2		0.00269523790358	0.00108495875889	-0.00161027914469
+UniRef50_UPI00036EA5DF	hypothetical protein	0.00788801390558	0.000551993841485	-0.00733602006409
+UniRef50_U6ZV82		0.000324665739305	0.00027688397003	-4.7781769275e-05
+UniRef50_Q9HZJ5	DNA topoisomerase 1	0.00295712263778	0.00405126519879	0.00109414256101
+UniRef50_E8TEM3	2 oxo hepta 3 ene 1,7 dioic acid hydratase	0.000657885372515	0.000893307354578	0.000235421982063
+UniRef50_I0TLB8	Cupin domain protein	0.000356597114027	0.000430914410902	7.4317296875e-05
+UniRef50_B2IPX4	ATP dependent helicase deoxyribonuclease subunit B	1.15243091141e-05	0.00368289538595	0.00367137107684
+UniRef50_Q9RW95	General secretion pathway protein D, putative	0.000118768598299	0.0408669558821	0.0407481872838
+UniRef50_A6LZ07	Abortive infection protein	0.000321530260182	0.00182389037252	0.00150236011234
+UniRef50_W8RWR3	Isopropylmalate homocitrate citramalate synthase	0.000539975417129	0.000232434771269	-0.00030754064586
+UniRef50_E8P8P5		0.000142447542961	0.00855328807824	0.00841084053528
+UniRef50_E8SK14	Teichoic acid export ATP binding protein TagH	0.00940812031823	0.00280428507158	-0.00660383524665
+UniRef50_E8P8P8		8.03161678458e-05	0.00715194512967	0.00707162896182
+UniRef50_B9DKZ2	Protein containing tetrapyrrole methyltransferase domain and MazG like  domain	0.0207868554593	0.00594930985708	-0.0148375456022
+UniRef50_F5XQT8	LytR family regulatory protein	5.56587208972e-06	2.10428146095e-05	1.54769425198e-05
+UniRef50_UPI00047372AD	hypothetical protein, partial	5.16139642758e-05	9.66415441571e-06	-4.19498098601e-05
+UniRef50_A4VGB2		1.4026429172e-05	0.00094954506201	0.000935518632838
+UniRef50_Q7N1I3	Antitoxin HicB 1	0.0041488346692	0.000418888943548	-0.00372994572565
+UniRef50_Q9X7L2	2 isopropylmalate synthase	2.74042676633e-06	1.88238035281e-05	1.60833767618e-05
+UniRef50_D4BTI9	Cardiolipin synthetase	0.000532307127821	0.000253128604458	-0.000279178523363
+UniRef50_W9FRU9		2.1366917559e-05	0.000380120859522	0.000358753941963
+UniRef50_K0SKL9		4.29105761455e-05	0.00103586261032	0.000992952034175
+UniRef50_A3MKU1	Uridylate kinase	0.0157517403776	0.0133283830394	-0.0024233573382
+UniRef50_Q6G726		0.0012443011832	0.00438504426591	0.00314074308271
+UniRef50_Q7V4J6	Acyl carrier protein	2.20533689596e-05	0.000107846393731	8.57930247714e-05
+UniRef50_UPI000346B698	hypothetical protein	7.86193726444e-06	2.46085373935e-06	-5.40108352509e-06
+UniRef50_UPI00036E5C3C	hypothetical protein	1.74793804508e-06	1.42354088044e-05	1.24874707593e-05
+UniRef50_M7Y540	Dipeptide transporter permease DppB	0.000126798281886	9.80153948154e-05	-2.87828870706e-05
+UniRef50_F0RJ20		6.64877596397e-05	0.000680804966381	0.000614317206741
+UniRef50_Q4K4P3	Permease, cytosine purine, uracil, thiamine, allantoin family	0.000441796181201	0.000316820360017	-0.000124975821184
+UniRef50_O31611	GTP pyrophosphokinase YjbM	0.00329889737152	0.00257424011629	-0.00072465725523
+UniRef50_A6W7I0		4.32204273809e-05	0.000183970974469	0.000140750547088
+UniRef50_G9A888	Multidrug resistance protein, AcrB family	0.00355628985989	0.000186848059888	-0.0033694418
+UniRef50_W0X4S5		0.000134018694272	0.000612407914008	0.000478389219736
+UniRef50_Q3IXT7	ABC peptide opine transporter, ATPase subunit	0.000310355949796	0.000337504805945	2.7148856149e-05
+UniRef50_UPI00036250D8	hypothetical protein	0.000269425781806	1.42946448112e-05	-0.000255131136995
+UniRef50_UPI000169B03B	FKBP type peptidyl prolyl cis trans isomerase 	0.000350998626548	7.69030954929e-05	-0.000274095531055
+UniRef50_UPI0000E11708	beta hexosaminidase	1.23875862612e-05	2.58390102263e-05	1.34514239651e-05
+UniRef50_A5UK53	Alcohol dehydrogenase , GroES like protein	0.00399095188806	0.00131679807146	-0.0026741538166
+UniRef50_P65239	Ribose phosphate pyrophosphokinase 1	1.79723412269e-05	0.0126940964913	0.0126761241501
+UniRef50_UPI0002F7DE76	hypothetical protein	6.16494005513e-06	0.000116539159572	0.000110374219517
+UniRef50_A5IUX4	Choline carnitine betaine transporter	0.00995484830915	0.00221901340908	-0.00773583490007
+UniRef50_A4XP60	Acetylornithine deacetylase	0.000220165381129	0.000219566323568	-5.99057561e-07
+UniRef50_I0ELI9	DnaA initiator associating factor for replication initiation HobA	0.000536709936758	0.00167018452953	0.00113347459277
+UniRef50_B9MQ98	Phospho N acetylmuramoyl pentapeptide transferase	6.00312187926e-06	3.09970590735e-05	2.49939371942e-05
+UniRef50_U3AIN5		9.97033956804e-06	1.3263118562e-05	3.29277899396e-06
+UniRef50_C5MYS8	Acyl coenzyme A	0.0225218291506	0.00513925545284	-0.0173825736978
+UniRef50_A3V0X0	Membrane protein, putative	2.96234008235e-05	1.64512640605e-05	-1.3172136763e-05
+UniRef50_A6LUJ9	DegV family protein	0.00100167007762	0.000469515830098	-0.000532154247522
+UniRef50_Q1RIM1	DNA topoisomerase 1	5.33705420125e-06	1.70560998832e-06	-3.63144421293e-06
+UniRef50_F0VRX4	Autolysin	0.00629277981773	0.00184090115647	-0.00445187866126
+UniRef50_Q9FKK7	Xylose isomerase	0.000225341521387	0.00687447082843	0.00664912930704
+UniRef50_UPI000468EE55	ATP dependent DNA helicase PcrA	2.02305340402e-05	4.5308788777e-06	-1.56996551625e-05
+UniRef50_P37617	Lead, cadmium, zinc and mercury transporting ATPase	0.00371605280545	0.000984643946884	-0.00273140885857
+UniRef50_UPI0004669FC1	oxidoreductase	9.08145923477e-05	0.00525690664124	0.00516609204889
+UniRef50_UPI000471FBF4	thioredoxin	5.26428284755e-05	6.31718181032e-05	1.05289896277e-05
+UniRef50_UPI000467E3B3	transposase	7.1175157891e-05	0.000134233565215	6.3058407324e-05
+UniRef50_R9SIT6		0.00105447552396	0.000354167404262	-0.000700308119698
+UniRef50_UPI0004780904	cobinamide adenolsyltransferase	8.42087887165e-05	0.0267519938802	0.0266677850915
+UniRef50_P30526	Anthranilate synthase component 1	1.07151405708e-05	5.81191912066e-06	-4.90322145014e-06
+UniRef50_Q2FFK2	Ferritin	0.0437379970517	0.00258336485784	-0.0411546321939
+UniRef50_UPI00047870AD	GTP pyrophosphokinase	6.260201921e-06	2.68810685441e-06	-3.57209506659e-06
+UniRef50_Q99V46	Staphopain B	0.00756196738298	0.0032146623785	-0.00434730500448
+UniRef50_A5UMY4	Predicted RNA binding protein	0.00215854439897	0.00292264550899	0.00076410111002
+UniRef50_Q89UE3	Malate synthase G	0.00334350506728	0.000650725569601	-0.00269277949768
+UniRef50_Q9CEY4	Putrescine carbamoyltransferase	0.00840628351147	0.00355173537106	-0.00485454814041
+UniRef50_J9NSA1		3.61931089539e-05	2.23689870118e-05	-1.38241219421e-05
+UniRef50_UPI0003B73B69	glutaredoxin	6.26566082592e-05	0.000370809750344	0.000308153142085
+UniRef50_F3SCH8	Thymocyte nuclear protein 1	2.49606771213e-05	1.76728271941e-05	-7.2878499272e-06
+UniRef50_A5MC69		6.48813894289e-05	0.00395893790491	0.00389405651548
+UniRef50_M4AFD6		1.83432535653e-05	2.7888944479e-05	9.5456909137e-06
+UniRef50_UPI00034ACF0F	hypothetical protein	2.19233243606e-05	0.000158987969475	0.000137064645114
+UniRef50_C8S1S6	Plasmid partitioning protein RepA	0.000319265879641	9.50834551224e-05	-0.000224182424519
+UniRef50_A6LRW1	Phage portal protein	0.00028744254467	0.00250912031843	0.00222167777376
+UniRef50_Q886P5	Bifunctional uridylyltransferase uridylyl removing enzyme	0.000821351494297	0.00020991480622	-0.000611436688077
+UniRef50_A1SWU5	Threonine  tRNA ligase	0.00148057926367	0.00155480886701	7.422960334e-05
+UniRef50_R4PYA3	Ribonucleoside diphosphate reductase	0.00458453426269	0.00531181366406	0.00072727940137
+UniRef50_O94634	Threonine dehydratase, mitochondrial	6.7003977773e-06	1.35929351983e-05	6.892537421e-06
+UniRef50_Q4L5E4	Phenylalanine  tRNA ligase beta subunit	0.0191294504504	0.00700138403892	-0.0121280664115
+UniRef50_V6NXW6		7.25465146038e-05	0.000157644172158	8.50976575542e-05
+UniRef50_Q9RU25	Peptide ABC transporter, permease protein	0.000314822511971	0.0592678085587	0.0589529860467
+UniRef50_R4K2V5	Phosphatidate cytidylyltransferase	0.000214887659684	0.00137783290954	0.00116294524986
+UniRef50_UPI0002B41FFA	PREDICTED	6.91155891341e-06	4.64619820241e-06	-2.265360711e-06
+UniRef50_Q5H5P3	Integral membrane protein	8.29663312346e-06	0.06248737091	0.0624790742769
+UniRef50_UPI00046F521F	ribonucleoside hydrolase, partial	8.88573458678e-06	5.80196141169e-05	4.91338795301e-05
+UniRef50_UPI00036EE5B3	endonuclease	8.84565813259e-05	0.000165004225743	7.65476444171e-05
+UniRef50_UPI0003B7257B	TetR family transcriptional regulator	7.24634714497e-05	7.20076022857e-05	-4.55869164e-07
+UniRef50_C4U4D5		5.8802189703e-05	6.41585800394e-05	5.3563903364e-06
+UniRef50_A4X048		0.000786422430849	0.000401854706556	-0.000384567724293
+UniRef50_A7GMD4	2 oxoglutarate dehydrogenase E1 component	5.329557137e-06	0.000418319637284	0.000412990080147
+UniRef50_H8GVT2	Cytochrome P450	0.000100573531661	0.0474756170523	0.0473750435206
+UniRef50_UPI00016C05CE	glycogen starch alpha glucan phosphorylase	0.000632550941626	0.00153541029098	0.000902859349354
+UniRef50_UPI0003C13A7A	PREDICTED	9.54813530928e-06	8.31517912632e-05	7.36036559539e-05
+UniRef50_UPI00047D9051	hypothetical protein	0.000335690007277	0.000114209131322	-0.000221480875955
+UniRef50_UPI00046657E8	hypothetical protein	1.67704013358e-05	7.31284328736e-07	-1.60391170071e-05
+UniRef50_S4MC93		0.00035774733061	0.000312281141212	-4.5466189398e-05
+UniRef50_P52067	Fosmidomycin resistance protein	0.00217636788641	0.00117454805599	-0.00100181983042
+UniRef50_A0A059DRC5		0.000219847190836	8.34085961124e-05	-0.000136438594724
+UniRef50_S5CP54		0.000158156601349	0.00662009964046	0.00646194303911
+UniRef50_P12655	PTS system sucrose specific EIIBCA component	0.00421321265955	0.00099123625233	-0.00322197640722
+UniRef50_A3CNS7		0.00907791188288	0.00884019256131	-0.00023771932157
+UniRef50_D3DZS9	ABC transporter ATP binding protein	0.00366346890755	0.00120590444208	-0.00245756446547
+UniRef50_Q00277	Glutathione peroxidase	0.00606583482233	0.00145580599575	-0.00461002882658
+UniRef50_UPI00046E9599	hypothetical protein	6.86331472052e-06	3.58280171403e-05	2.89647024198e-05
+UniRef50_A6UGG8		2.57726533676e-06	3.01131687212e-05	2.75359033844e-05
+UniRef50_UPI0003F4971B	hypothetical protein TREMEDRAFT_28317	8.30692322542e-06	5.35310911676e-05	4.52241679422e-05
+UniRef50_UPI00029A7679	histidine kinase	5.09012454788e-05	0.000104874073389	5.39728279102e-05
+UniRef50_Q5YRD1	Methionine import ATP binding protein MetN	2.34829594014e-05	8.33825182062e-06	-1.51447075808e-05
+UniRef50_UPI0004561653	hypothetical protein PFL1_00418	1.44351542592e-05	1.6930141662e-05	2.4949874028e-06
+UniRef50_C5MYZ4		0.0157058398563	0.0029073386529	-0.0127985012034
+UniRef50_A0A059IL85		4.3909652103e-05	3.60330953846e-05	-7.8765567184e-06
+UniRef50_P36674	HTH type transcriptional regulator TreR	0.00204397456903	0.00244413423677	0.00040015966774
+UniRef50_UPI000360C55F	hypothetical protein	5.98192800769e-06	3.44116182315e-05	2.84296902238e-05
+UniRef50_E2PIJ4		0.00102950724232	0.00218130469219	0.00115179744987
+UniRef50_Q99QS1	Protein map	0.0060240792885	0.000743240575922	-0.00528083871258
+UniRef50_V6JB74	Thioesterase superfamily protein	2.89059043789e-05	0.000788673671916	0.000759767767537
+UniRef50_UPI00030E967A	hypothetical protein	5.10257720516e-06	1.09033715407e-05	5.80079433554e-06
+UniRef50_B5FD80	Type VI secretion protein, family	6.24297267153e-06	9.63935303958e-06	3.39638036805e-06
+UniRef50_Q67KF8	Phosphoribosylformylglycinamidine synthase 2	1.77683552199e-05	3.24065620478e-06	-1.45276990151e-05
+UniRef50_Q5GVA4	Dehydrogenase	0.000844599915232	0.0044410477957	0.00359644788047
+UniRef50_A4EC20		5.86619003005e-05	4.57209879124e-05	-1.29409123881e-05
+UniRef50_C3M9I7		0.00017268983657	5.74324696195e-05	-0.00011525736695
+UniRef50_Q7X1N2	Lfe103p1 	2.53626234397e-05	6.37290777491e-05	3.83664543094e-05
+UniRef50_L7WUJ3	ABC transporter permease	0.00749172007414	0.00410359688673	-0.00338812318741
+UniRef50_P36672	PTS system trehalose specific EIIBC component	0.00348580978333	0.00448846038804	0.00100265060471
+UniRef50_UPI0003CFF16B	SsrA binding protein	1.09328068852e-05	3.76746411507e-05	2.67418342655e-05
+UniRef50_Q9VQX4	Nicotinate phosphoribosyltransferase	2.78788704917e-06	7.95108143169e-06	5.16319438252e-06
+UniRef50_W0NF85		4.77447072474e-06	6.61782828567e-06	1.84335756093e-06
+UniRef50_UPI0003A03E70	FAD dependent oxidoreductase	2.76775127724e-05	1.01169724679e-05	-1.75605403045e-05
+UniRef50_O67642	Transketolase	5.82247897919e-06	1.07195573749e-05	4.89707839571e-06
+UniRef50_L7DMI2		0.000930544261681	0.000121953453206	-0.000808590808475
+UniRef50_P77263	Probable fimbrial chaperone EcpE	0.00410762734431	0.000255685459043	-0.00385194188527
+UniRef50_UPI0003B721B0	ATPase P	2.66782867982e-06	2.72188900409e-05	2.45510613611e-05
+UniRef50_Q11I48	ATP dependent Clp protease proteolytic subunit 2	7.7979696401e-06	0.000306027673785	0.000298229704145
+UniRef50_A1B0S4	Transposase, IS5 family	0.000306837909612	0.000128754718473	-0.000178083191139
+UniRef50_P23840	DNA damage inducible protein D	0.00157981000808	0.00143570803253	-0.00014410197555
+UniRef50_I1Y3Y4	Multidrug resistance efflux pump	0.000538408292668	0.0054899375577	0.00495152926503
+UniRef50_D4J6G0	Amino acid ABC transporter substrate binding protein, PAAT family 	0.00281348997862	0.000874316134225	-0.00193917384439
+UniRef50_UPI0003644DE3	hypothetical protein	2.89671946234e-05	5.32933931082e-06	-2.36378553126e-05
+UniRef50_A8FNH9	Carboxynorspermidine carboxyspermidine decarboxylase	6.91463769744e-05	8.41177223149e-06	-6.07346047429e-05
+UniRef50_L7UHD0	DGPF domain containing protein	4.71875756953e-05	2.49290811974e-05	-2.22584944979e-05
+UniRef50_UPI00046ADB22	3 hydroxyisobutyrate dehydrogenase	7.74342288829e-06	8.73457519056e-06	9.9115230227e-07
+UniRef50_A6LZ68	4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000424320049013	0.000499387474997	7.5067425984e-05
+UniRef50_P77154		0.00178739776729	0.00121963045875	-0.00056776730854
+UniRef50_UPI00029AD7C0	ribosomal large subunit pseudouridine synthase A, partial	0.000384195037709	7.25258829261e-05	-0.000311669154783
+UniRef50_A5UM01	Pheromone shutdown protein, TraB family	0.00247638550246	0.00134747560098	-0.00112890990148
+UniRef50_Q02RK7		0.000728722208372	0.000194074505054	-0.000534647703318
+UniRef50_Q9RVA9	Probable butyrate kinase	9.57276387603e-05	0.00128239424401	0.00118666660525
+UniRef50_Q8XMG8	Zinc transporter ZupT	0.000119963767644	0.000536874721219	0.000416910953575
+UniRef50_A1W1W9	3 isopropylmalate dehydratase small subunit	1.19296027404e-05	2.26478447543e-05	1.07182420139e-05
+UniRef50_E6MWH5		0.00224337068985	0.00260573563408	0.00036236494423
+UniRef50_S5N5Q9	Ribulose phosphate 3 epimerase	0.000819174802876	0.00205266893707	0.00123349413419
+UniRef50_Q8XI79	Putative pyruvate, phosphate dikinase regulatory protein	0.000232061058724	0.0011330555826	0.000900994523876
+UniRef50_Q6ZKP4		8.31037641478e-05	3.74387782484e-05	-4.56649858994e-05
+UniRef50_UPI0003B52784	ATPase	5.75239184644e-06	3.61564552382e-06	-2.13674632262e-06
+UniRef50_Q87QK9	Histidine biosynthesis bifunctional protein HisB	0.000911200984642	0.000354844347581	-0.000556356637061
+UniRef50_D8LJV9		3.57580665174e-05	5.58606630291e-05	2.01025965117e-05
+UniRef50_UPI0003625364	alkaline phosphatase	5.75414261513e-06	3.29535977939e-06	-2.45878283574e-06
+UniRef50_H9UZ27		0.000794942020893	0.00053693946399	-0.000258002556903
+UniRef50_F3U4H9		0.00130997634709	0.000462287616326	-0.000847688730764
+UniRef50_A0A022NNU5		8.88518243538e-05	1.71604656927e-05	-7.16913586611e-05
+UniRef50_A5ULV6	Ribonuclease HII	0.00300657107502	0.000284871419803	-0.00272169965522
+UniRef50_UPI00036D09DC	hypothetical protein, partial	5.43824717982e-05	1.79665267805e-05	-3.64159450177e-05
+UniRef50_F9Z1I9	3 oxoacyl [acyl carrier protein] synthase 1	0.000461460406091	0.00477535766012	0.00431389725403
+UniRef50_UPI0003B52617	transporter	0.000227603734835	4.02957882144e-05	-0.000187307946621
+UniRef50_H5Y2B5	Cytosine deaminase like metal dependent hydrolase	8.57273252495e-05	0.00118128824708	0.00109556092183
+UniRef50_P16678	Putative phosphonates utilization ATP binding protein PhnK	0.00271970167633	0.000272181295113	-0.00244752038122
+UniRef50_B4RDA5		1.71103444027e-05	4.65761627788e-05	2.94658183761e-05
+UniRef50_UPI00015FC63D	hypothetical protein	0.000151282223013	5.32226048435e-05	-9.80596181695e-05
+UniRef50_U6LWE1		1.04748990013e-05	1.14716119181e-05	9.967129168e-07
+UniRef50_Q8CTH6	Urea amidolyase	0.0189818111781	0.00457581813622	-0.0144059930419
+UniRef50_Q9RRX1	Acyl CoA dehydrogenase, putative	0.000147444917754	0.0531942052309	0.0530467603131
+UniRef50_UPI00035ED69A	hypothetical protein	5.40722671001e-06	8.15881019073e-06	2.75158348072e-06
+UniRef50_Q8A1F7	Elongation factor P	1.58786034046e-05	0.0065645201445	0.0065486415411
+UniRef50_A3PHK3	ComEC Rec2 related protein	0.000877295710645	0.000197497658938	-0.000679798051707
+UniRef50_P46920	Glycine betaine transport ATP binding protein OpuAA	0.00459674635824	0.00447427891711	-0.00012246744113
+UniRef50_UPI00035CE6C9	hypothetical protein	0.000202867599011	3.80399362617e-05	-0.000164827662749
+UniRef50_I7BZ98		1.64279156742e-05	0.000637310285562	0.000620882369888
+UniRef50_U3T4G5	Pseudouridine synthase	0.000541845917011	0.00861812180895	0.00807627589194
+UniRef50_D6M2H8	Fatty oxidation complex, alpha subunit 	0.000320612664711	0.000771731647059	0.000451118982348
+UniRef50_UPI00047E1145	sugar ABC transporter permease	0.00355996176418	0.000685775888195	-0.00287418587599
+UniRef50_P44468	Rod shape determining protein RodA	0.000423400043966	0.000161817372704	-0.000261582671262
+UniRef50_UPI0004255E92	adenylosuccinate synthetase	1.90407271338e-05	1.30306912679e-05	-6.0100358659e-06
+UniRef50_G8VQJ8		0.000259143699447	0.00698571364398	0.00672656994453
+UniRef50_R9IVY1		1.52114184662e-05	0.004097579608	0.00408236818953
+UniRef50_UPI000346609E	hypothetical protein	4.14152799715e-06	6.08732020474e-06	1.94579220759e-06
+UniRef50_UPI000478591D	amino acid ABC transporter permease	2.17703288817e-05	4.48057822709e-05	2.30354533892e-05
+UniRef50_UPI000479F6B7	transporter	2.69775984851e-05	0.000199357786174	0.000172380187689
+UniRef50_Q9RY77	Phosphate acetyltransferase	4.09872310179e-06	0.0215410898964	0.0215369911733
+UniRef50_C9CZK5		0.000131769352783	9.55312495184e-05	-3.62381032646e-05
+UniRef50_Y5PA95		1.82108238854e-05	2.64770361678e-05	8.2662122824e-06
+UniRef50_A6M280	RelA SpoT domain protein	0.00122526368747	0.0041141556324	0.00288889194493
+UniRef50_O32035		0.0192825334003	0.00248698571214	-0.0167955476882
+UniRef50_O32034		0.0222695974246	0.00555000856796	-0.0167195888566
+UniRef50_UPI000467BFBE	hypothetical protein	1.76155561431e-05	0.000123700533988	0.000106084977845
+UniRef50_UPI0002B4A544		4.9770038448e-07	4.07776717737e-05	4.02799713892e-05
+UniRef50_B8J198	Lon protease	4.85677086175e-06	4.45031583673e-06	-4.0645502502e-07
+UniRef50_A6M0E8	TPR repeat containing protein	0.000309024063976	0.000803119987383	0.000494095923407
+UniRef50_L8E534	Undefined function	0.00308482605995	0.00116451614519	-0.00192030991476
+UniRef50_Q03K84	Phosphoribosyl ATP pyrophosphatase	0.00131485339287	0.0010076174605	-0.00030723593237
+UniRef50_P34559	Probable enoyl CoA hydratase, mitochondrial	8.83951690476e-06	1.65801515694e-05	7.74063466464e-06
+UniRef50_U1EG57		3.92919240134e-05	0.000152594129773	0.00011330220576
+UniRef50_A6M1X1	FMN binding domain protein	0.000516279836014	0.00117829586626	0.000662016030246
+UniRef50_UPI00035DE7E6	hypothetical protein	7.08492961009e-06	2.51051795707e-05	1.80202499606e-05
+UniRef50_A0A023S135	Ferrous iron transporter B	0.000549736876965	0.0115642022308	0.0110144653538
+UniRef50_P33224	Putative acyl CoA dehydrogenase AidB	0.00373902454694	0.00108251365615	-0.00265651089079
+UniRef50_W5X8Z0	Ribose phosphate pyrophosphokinase	1.89606206925e-05	1.65731157611e-05	-2.3875049314e-06
+UniRef50_UPI000378494C	hypothetical protein	0.000143473277397	6.12769494843e-05	-8.21963279127e-05
+UniRef50_UPI0003B44A26	membrane protein	5.18520910706e-06	0.00103989937472	0.00103471416561
+UniRef50_N0AUD5		0.000240516974948	2.94791027639e-05	-0.000211037872184
+UniRef50_M4WTT8		0.000249440080738	0.00026057356341	1.1133482672e-05
+UniRef50_X6L243		0.00051456069069	0.000134071258569	-0.000380489432121
+UniRef50_UPI0003F95F23	phosphonate ABC transporter ATP binding protein	9.86836993847e-06	0.000111168036762	0.000101299666824
+UniRef50_R5G6K3	Histidinol phosphate phosphatase HisJ family	0.000191293575433	0.00050321563993	0.000311922064497
+UniRef50_UPI00047094F6	ABC transporter	3.88380847905e-06	1.33642628266e-05	9.48045434755e-06
+UniRef50_Q9RS47	Uracil permease	0.000257493506759	0.0227836959836	0.0225262024768
+UniRef50_UPI000360D3DC	hypothetical protein	5.02406901305e-06	0.000173265353639	0.000168241284626
+UniRef50_W5X572	L aspartate aminotransferase	2.3107970826e-06	3.35640392357e-05	3.12532421531e-05
+UniRef50_UPI0002ECDC1A	hypothetical protein	4.63564673417e-06	6.86068578189e-06	2.22503904772e-06
+UniRef50_W6IAM9	Putative membrane spanning protein	1.10833186687e-06	1.96018066643e-06	8.5184879956e-07
+UniRef50_A5ULW0		0.00384399294531	0.000917465041578	-0.00292652790373
+UniRef50_UPI0003B49F43	hypothetical protein	3.75532743659e-05	5.03889230957e-05	1.28356487298e-05
+UniRef50_Q9MUN1	Sulfate thiosulfate import ATP binding protein CysA	0.000117384284026	5.31804455429e-05	-6.42038384831e-05
+UniRef50_H5FVP6	Amidohydrolase family protein	0.000480959390166	0.000136090647547	-0.000344868742619
+UniRef50_A6LXR8	 hydrogenase maturation protein HypF	0.000843671853631	0.00153450821843	0.000690836364799
+UniRef50_C0VQW3		6.54339857247e-06	0.000108705535652	0.00010216213708
+UniRef50_UPI000471077D	hypothetical protein, partial	7.12238041405e-06	1.55443768174e-05	8.42199640335e-06
+UniRef50_Q5H2Q9	IS1478 transposase	3.63207482007e-05	2.83227934887e-05	-7.997954712e-06
+UniRef50_G8AGV1	RepB plasmid partition	1.95383615074e-06	1.129302826e-05	9.33919210926e-06
+UniRef50_H2JWP6	Permease for cytosine purines uracil thiamine allantoin	7.94707344991e-05	0.00579436111513	0.00571489038063
+UniRef50_W6K6P7		0.00178344578038	0.000942500122969	-0.000840945657411
+UniRef50_UPI00047DE1A1	spermidine putrescine ABC transporter substrate binding protein	8.17412784086e-06	0.000194481319863	0.000186307192022
+UniRef50_E1Q026	Iron regulated outer membrane protein	0.000177131573659	0.00576244977216	0.0055853181985
+UniRef50_D8GLI1		0.000262143047812	0.00122482886349	0.000962685815678
+UniRef50_UPI00046EAE05	2 amino 3 ketobutyrate CoA ligase	3.4402725433e-05	8.32174359318e-06	-2.60809818398e-05
+UniRef50_C4ZA66	Xanthine phosphoribosyltransferase	2.3788113858e-05	4.16351219371e-05	1.78470080791e-05
+UniRef50_F0Y306	Expressed protein 	5.30495330086e-05	0.000225863230617	0.000172813697608
+UniRef50_D8JG86	Sensor protein gacS	9.19623735464e-05	0.00536989537175	0.0052779329982
+UniRef50_UPI00029A8D53	alpha amylase, catalytic subdomain	5.13561924834e-06	2.93891979105e-05	2.42535786622e-05
+UniRef50_UPI0004785413	hypothetical protein	3.26114025268e-05	3.45112972587e-05	1.8998947319e-06
+UniRef50_D3QI48	RND multidrug efflux transporter Acriflavin resistance protein	0.0121518293451	0.00285767655938	-0.00929415278572
+UniRef50_K0SH63		6.35288603168e-05	0.000423377036971	0.000359848176654
+UniRef50_UPI00028A1721	3 oxoacyl ACP reductase	4.38911243546e-06	5.54597887106e-05	5.10706762751e-05
+UniRef50_A6LZZ2		0.00153262881566	0.000518015641142	-0.00101461317452
+UniRef50_UPI00037FAA98	hypothetical protein, partial	7.45545589806e-05	4.68826047022e-05	-2.76719542784e-05
+UniRef50_Q5F653		7.83165951945e-05	0.00215307533758	0.00207475874239
+UniRef50_Q0A911	Beta hexosaminidase	1.88565193693e-05	3.06259493478e-05	1.17694299785e-05
+UniRef50_D3NSC7	sn glycerol 3 phosphate transport system substrate binding protein	7.45093599332e-06	5.83698771707e-06	-1.61394827625e-06
+UniRef50_W6M4I0		1.12389641899e-05	0.000393281939311	0.000382042975121
+UniRef50_UPI0002378B1B	glutathione dependent formaldehyde activating protein	4.36045039317e-05	6.81049796057e-05	2.4500475674e-05
+UniRef50_E6U6T7	LemA family protein	0.00112124551144	0.000719635868098	-0.000401609643342
+UniRef50_Q1J1I0	O antigen polymerase	0.00016629338716	0.0254571932968	0.0252908999096
+UniRef50_UPI00047AE469	hypothetical protein	1.11050789278e-05	3.10313867524e-05	1.99263078246e-05
+UniRef50_Z7T5S7		4.51907673512e-05	8.91297903088e-05	4.39390229576e-05
+UniRef50_P39160	D mannonate oxidoreductase	0.0069161112056	0.00252223745215	-0.00439387375345
+UniRef50_UPI0003594B33	PREDICTED	4.15125577144e-05	2.04988802556e-05	-2.10136774588e-05
+UniRef50_A6LZZ5		0.000496829472686	0.00149135069072	0.000994521218034
+UniRef50_UPI000255C6FB	ADP ribose pyrophosphatase	1.74476226376e-05	0.000111812262122	9.43646394844e-05
+UniRef50_P64555	7 carboxy 7 deazaguanine synthase	0.0015782923388	0.00121121615205	-0.00036707618675
+UniRef50_B9E3V1		0.000759819500351	0.000404558899058	-0.000355260601293
+UniRef50_UPI00036B19F3	hypothetical protein	2.3784329761e-06	0.000154705233477	0.000152326800501
+UniRef50_A0A031MEU2	ATPase	1.73526008415e-05	6.48656935404e-06	-1.08660314875e-05
+UniRef50_UPI0003ACEC40	hypothetical protein	6.72821354282e-05	2.08448366528e-05	-4.64372987754e-05
+UniRef50_B2TJ96	Nudix family hydrolase	0.000766555119553	0.00163687387631	0.000870318756757
+UniRef50_W5BNZ7		7.72359308498e-06	1.3427016144e-05	5.70342305902e-06
+UniRef50_A1U0K1	1,4 alpha glucan branching enzyme GlgB	3.84798542487e-06	7.48850876751e-06	3.64052334264e-06
+UniRef50_I6TPZ0	Permease	0.00408799558549	0.000195790080794	-0.0038922055047
+UniRef50_A6LXJ6	Diguanylate cyclase	0.000205155428724	0.00123501167588	0.00102985624716
+UniRef50_G8V5E5	Coagulase family protein	0.00947424866577	0.00207634032504	-0.00739790834073
+UniRef50_Q5Z8R4		6.0620691136e-06	1.32289793957e-05	7.1669102821e-06
+UniRef50_H3FSC0		0.000101226352186	1.69027803684e-05	-8.43235718176e-05
+UniRef50_UPI0003B6DB9D	anthranilate synthase subunit I	1.36509235275e-05	4.98954784012e-05	3.62445548737e-05
+UniRef50_A8AY72	Glycosyl transferase, family 8 SP1766	0.000534061447799	0.000158205377791	-0.000375856070008
+UniRef50_U4PWQ9	DNA gyrase subunit A	0.011134047428	0.00386367116224	-0.00727037626576
+UniRef50_A0A011QMZ0		0.00190433151023	0.000331196304892	-0.00157313520534
+UniRef50_UPI0003292DB3	PREDICTED	1.96918075461e-05	3.45672160025e-05	1.48754084564e-05
+UniRef50_Q8KDG0	Prolipoprotein diacylglyceryl transferase	5.28628688069e-06	1.10977009067e-05	5.81141402601e-06
+UniRef50_M4XH87		0.0032867367212	0.000371467553704	-0.0029152691675
+UniRef50_UPI00047B1D04	DNA repair protein RadA	5.14111376452e-06	4.93072692929e-06	-2.1038683523e-07
+UniRef50_UPI00037F4D6C	hypothetical protein, partial	7.55549839673e-06	1.92686222481e-05	1.17131238514e-05
+UniRef50_UPI000463A207	glycoside hydrolase	8.04755903862e-05	4.96504410956e-05	-3.08251492906e-05
+UniRef50_UPI000462BEE8	hypothetical protein	1.74788509248e-05	0.00204745880296	0.00202997995204
+UniRef50_UPI0003C175AF		4.09886979926e-05	2.17506402903e-05	-1.92380577023e-05
+UniRef50_Q07637	Pyruvate kinase	0.00554048499219	0.00463314984442	-0.00090733514777
+UniRef50_P60543	Phosphoribosyl AMP cyclohydrolase	0.00330022842704	0.00425636872028	0.00095614029324
+UniRef50_O03063	ATP synthase subunit beta, chloroplastic 	1.52151036883e-05	9.45936111063e-06	-5.75574257767e-06
+UniRef50_Q1I6V1		0.000106071283675	4.51641326141e-05	-6.09071510609e-05
+UniRef50_M5Q933	Clumping factor	0.000613126540622	0.00050870817159	-0.000104418369032
+UniRef50_V6Q8F3		0.0213988305269	0.00376499755387	-0.017633832973
+UniRef50_Q1AU48	50S ribosomal protein L15	0.027577613847	0.00504782880356	-0.0225297850434
+UniRef50_O83675	DNA polymerase III subunit alpha	5.93265733226e-06	8.98800749364e-06	3.05535016138e-06
+UniRef50_T2DYY9	Bacterial type II and III secretion system family protein	0.00102211583538	0.000406555349265	-0.000615560486115
+UniRef50_A6U466		0.000131700917714	0.00112859887336	0.000996897955646
+UniRef50_Q8GFD7	MobA	0.000332087227834	4.54936245674e-05	-0.000286593603267
+UniRef50_F5XM79		0.000336191020962	0.00544719796078	0.00511100693982
+UniRef50_B7UXA6	Flagellar L ring protein	0.000384876383243	0.000567112411859	0.000182236028616
+UniRef50_UPI0003789BA4	hypothetical protein	1.39486283132e-05	3.55292053207e-05	2.15805770075e-05
+UniRef50_UPI0003B325A0	short chain dehydrogenase	1.1707467713e-05	4.44111229989e-05	3.27036552859e-05
+UniRef50_Q06ZX9		2.75863211756e-05	0.000137282803604	0.000109696482428
+UniRef50_D4KHH9	Alcohol dehydrogenase, class IV	0.000101931410131	0.00183026528076	0.00172833387063
+UniRef50_UPI00046FD571	hypothetical protein, partial	3.68714596787e-05	0.00021123705693	0.000174365597251
+UniRef50_E0IXG6		0.00045158265196	0.00105773717125	0.00060615451929
+UniRef50_Q2FYR1	Aminoacyltransferase FemB	0.0178541464293	0.00353719740354	-0.0143169490258
+UniRef50_Q8PI35		6.14962753154e-05	7.47412694261e-05	1.32449941107e-05
+UniRef50_R9SLG3	HD domain containing protein	0.00362077164333	0.000480597673454	-0.00314017396988
+UniRef50_UPI000348EEAA	RNA helicase	2.60788949725e-05	4.49642805009e-05	1.88853855284e-05
+UniRef50_F9CJM1		0.000102405174997	0.000791026888919	0.000688621713922
+UniRef50_T0TL30		0.00484919848617	0.000646094250825	-0.00420310423534
+UniRef50_O05956	Endonuclease III	0.0142690824359	0.00192240843871	-0.0123466739972
+UniRef50_E4DG75	Helicase C terminal domain protein	0.000320196634375	0.00566606278949	0.00534586615512
+UniRef50_UPI0003721D8E	hypothetical protein	9.89879382944e-06	2.44139592528e-05	1.45151654234e-05
+UniRef50_F8ABT6	TRAP transporter solute receptor, TAXI family	0.000117855168938	0.000112194173777	-5.660995161e-06
+UniRef50_UPI000369C5C3	hypothetical protein	3.62131131331e-06	2.46749824828e-05	2.10536711695e-05
+UniRef50_Q48656	Aminopeptidase N	0.0043008628774	0.00615863999066	0.00185777711326
+UniRef50_UPI0004544631	PREDICTED	3.36606668357e-05	0.000318938784929	0.000285278118093
+UniRef50_UPI0000D9989C	PREDICTED	3.15830432221e-06	3.18411804011e-06	2.58137179e-08
+UniRef50_Q8YX97	Valine  tRNA ligase	2.98329819769e-06	2.17511225306e-06	-8.0818594463e-07
+UniRef50_A3CRB9	Energy coupling factor transporter ATP binding protein EcfA1	0.00790892298894	0.0118898709521	0.00398094796316
+UniRef50_B6IXR1	Replication protein A, putative	0.000107942522011	3.00447093003e-05	-7.78978127107e-05
+UniRef50_UPI00047D3AFF	hypothetical protein	2.61450638686e-06	4.17492012152e-06	1.56041373466e-06
+UniRef50_L5KY59		0.00019615403736	3.1685761344e-05	-0.000164468276016
+UniRef50_C5MZU4	Uroporphyrinogen III C methyltransferase	0.0128995940244	0.00391278318903	-0.00898681083537
+UniRef50_UPI0003809E92	hypothetical protein	0.000872259865734	0.000548115766357	-0.000324144099377
+UniRef50_UPI000411FAC5	hypothetical protein	7.20801642117e-06	5.00514283551e-05	4.28434119339e-05
+UniRef50_UPI0002B964D7	hypothetical protein	0.000137786941122	3.71767906084e-05	-0.000100610150514
+UniRef50_Q5HKN0	UPF0312 protein SERP2314	0.0106164419685	0.000688119189111	-0.00992832277939
+UniRef50_M1MSQ2	Methyl accepting chemotaxis protein	0.000624803421619	0.000869907891557	0.000245104469938
+UniRef50_E0TB06		1.60633812371e-05	2.51715115062e-05	9.1081302691e-06
+UniRef50_M9R6I4		2.16758446181e-05	1.39830484123e-05	-7.6927962058e-06
+UniRef50_UPI000476DD64	acetolactate synthase catalytic subunit	1.90902602677e-05	1.69741306799e-05	-2.1161295878e-06
+UniRef50_P09431	Nitrogen regulation protein NtrB	0.0058937018836	0.000493630095444	-0.00540007178816
+UniRef50_E2QNK3	PTS system galactitol specific enzyme IIC component	0.000123630782379	0.00957852684744	0.00945489606506
+UniRef50_E3DQN8	Lipoprotein	3.23804433189e-05	4.67343809066e-05	1.43539375877e-05
+UniRef50_C9U0N0	Acyl CoA dehydrogenase	0.000529471203513	0.000685128820353	0.00015565761684
+UniRef50_Q57QC3	Virulence transcriptional regulatory protein PhoP	0.00475020971055	0.00173845147417	-0.00301175823638
+UniRef50_K6UZ95	Benzoate transport porin BenP	0.000228318138423	0.00380975251275	0.00358143437433
+UniRef50_UPI00036BFE12	hypothetical protein	3.06860341385e-06	0.00019291238228	0.000189843778866
+UniRef50_F5LYA7		0.00251107528548	0.00508656143347	0.00257548614799
+UniRef50_B5YRT3	Transposase InsI for insertion sequence element IS30B C D	0.00627876232202	0.000444723418224	-0.0058340389038
+UniRef50_UPI00039A65D3	MULTISPECIES	1.51086504085e-05	9.40432695259e-06	-5.70432345591e-06
+UniRef50_F0KEE0	Membrane flavodoxin oxidoreductase	0.000502388050647	0.000608678835417	0.00010629078477
+UniRef50_L7WYV5	Dihydroxyacetone kinase subunit DhaK	0.0243269613471	0.00359019264559	-0.0207367687015
+UniRef50_O26914	Probable threonylcarbamoyladenosine tRNA methylthiotransferase	0.00302646513729	0.000165908261343	-0.00286055687595
+UniRef50_D4GIJ6	YyaJ	0.000177922554112	0.00750791400857	0.00732999145446
+UniRef50_B2JED1	6,7 dimethyl 8 ribityllumazine synthase	1.77930090337e-05	7.74850806244e-05	5.96920715907e-05
+UniRef50_Q6AA35	NAD transhydrogenase subunit alpha	0.000153763885274	0.00435916063617	0.0042053967509
+UniRef50_R4Q3R7	Tetratricopeptide repeat family protein	1.02331795288e-05	7.50791412271e-06	-2.72526540609e-06
+UniRef50_P33341	Outer membrane usher protein YehB	0.00192717668067	0.00262921601492	0.00070203933425
+UniRef50_P0A6B3	Acyl carrier protein	0.0133955596999	0.00999842154002	-0.00339713815988
+UniRef50_M9VIB3	Type III restriction enzyme, res subunit	6.6303159637e-05	0.00595267119433	0.00588636803469
+UniRef50_D3EJ05	Cytochrome bd type ubiquinol oxidase subunit II	0.0172877263814	0.00626645424125	-0.0110212721402
+UniRef50_Z4WXY4		0.00238086637257	0.000812815335304	-0.00156805103727
+UniRef50_A0A011NRP5	Tellurite resistance protein TerB	3.35163766064e-05	9.82794722521e-06	-2.36884293812e-05
+UniRef50_Q39GU7	Transcriptional regulator, HxlR family	4.73209455078e-05	0.00479872549471	0.0047514045492
+UniRef50_UPI0003822F5F	hypothetical protein	0.000102855020686	7.5913802911e-05	-2.6941217775e-05
+UniRef50_B9DLQ3	TcaB protein	0.0252361838304	0.00634674290883	-0.0188894409216
+UniRef50_Q3AC01	Dihydroorotase	4.62784421202e-06	9.66250621185e-06	5.03466199983e-06
+UniRef50_D1CTE1	Replication protein RepA 	9.25558371926e-05	6.8791184684e-05	-2.37646525086e-05
+UniRef50_A9G7W0	Probable bifunctional SAT APS kinase 2	3.32630066782e-06	0.00019931264466	0.000195986343992
+UniRef50_A6LQC9		0.000309414744966	0.00144465008854	0.00113523534357
+UniRef50_D4HAA4	NlpC P60 family protein	0.000150193364259	0.00341552370466	0.0032653303404
+UniRef50_Q2CCV7		0.00056938969883	0.000332925366387	-0.000236464332443
+UniRef50_P69743	Hydrogenase 2 small chain	0.00328809742048	0.000767532454686	-0.00252056496579
+UniRef50_UPI0003B574AD	hypothetical protein	6.25289368052e-05	3.08439646255e-05	-3.16849721797e-05
+UniRef50_V9VZ32		0.000790458637027	0.000210385017086	-0.000580073619941
+UniRef50_Q9X429	CylG	0.00078468636418	0.000327523148093	-0.000457163216087
+UniRef50_K0RNQ3		0.00126229391177	0.00028214971834	-0.00098014419343
+UniRef50_UPI00047375C6	XRE family transcriptional regulator, partial	3.99668421902e-05	1.89520133916e-05	-2.10148287986e-05
+UniRef50_P00914	Deoxyribodipyrimidine photo lyase	0.0026413251553	0.00161740854284	-0.00102391661246
+UniRef50_UPI000350AF0A	PREDICTED	2.83260320517e-06	1.01339497882e-06	-1.81920822635e-06
+UniRef50_W7ST93		0.00011301975714	0.00119820617911	0.00108518642197
+UniRef50_Q9RXT4	Phosphoribosylformylglycinamidine synthase 2	6.21458368296e-06	0.0138241782778	0.0138179636941
+UniRef50_A0KFN8	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.87549981139e-05	5.52941199019e-06	-1.32255861237e-05
+UniRef50_B9L9J4		0.000209326796037	0.00270606078645	0.00249673399041
+UniRef50_UPI0003C12600		1.84712287898e-05	3.54554300041e-05	1.69842012143e-05
+UniRef50_Q9I4U3	DNA recombination protein RmuC homolog	0.00050681757557	0.00170997370487	0.0012031561293
+UniRef50_UPI0003C176FD	PREDICTED	2.36110590491e-06	0.000103075740127	0.000100714634222
+UniRef50_UPI00022CAACE	PREDICTED	8.2700175199e-05	5.83544262361e-05	-2.43457489629e-05
+UniRef50_A5UZW4	Triosephosphate isomerase	1.45227456022e-05	5.74300169551e-05	4.29072713529e-05
+UniRef50_UPI0002557ECE	hypothetical protein	1.58826851002e-05	1.52557206261e-05	-6.269644741e-07
+UniRef50_W1PEW2		1.30907068881e-05	2.23837545244e-06	-1.08523314357e-05
+UniRef50_UPI00026276DF	cell division protein FtsZ	8.73687859274e-06	9.56177853871e-06	8.2489994597e-07
+UniRef50_R4RK88	Ferrichrysobactin receptor	0.000129626831276	0.000280196432526	0.00015056960125
+UniRef50_UPI00035C5909	hypothetical protein	1.40424184592e-05	0.000175774062098	0.000161731643639
+UniRef50_UPI0003819143	30S ribosomal protein S5	1.27897800331e-05	1.40721790516e-05	1.2823990185e-06
+UniRef50_H8L2T6	Flagellar hook capping protein	6.66107666239e-06	9.06468300322e-06	2.40360634083e-06
+UniRef50_UPI00037CA814	hypothetical protein	4.81551138649e-06	3.16864137045e-05	2.6870902318e-05
+UniRef50_Q82S57	L sorbosone dehydrogenase	0.00100543522061	0.00019886646815	-0.00080656875246
+UniRef50_Q3JSM3		1.50494369559e-05	2.8789035581e-05	1.37395986251e-05
+UniRef50_H4Q189	HdhA domain protein	3.77690715698e-05	0.000330552930043	0.000292783858473
+UniRef50_UPI0003B6CB71	sulfonate ABC transporter ATP binding protein	5.13284618379e-05	2.70209832084e-05	-2.43074786295e-05
+UniRef50_B0VPR5		0.000306468466276	0.00592010089146	0.00561363242518
+UniRef50_B2HZL6	Cobalamin synthase	0.000154075913818	0.00570820544599	0.00555412953217
+UniRef50_Q9HV71	2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000708934065062	0.000784908294054	7.5974228992e-05
+UniRef50_Q89VT1	Blr0964 protein	1.47151370516e-05	0.000827616600412	0.00081290146336
+UniRef50_G0VM95	Inner membrane transport protein YhaO	2.34789040921e-05	2.85289545944e-05	5.0500505023e-06
+UniRef50_S4X2L4	Mercury transport protein	0.0101345858563	0.00244314356595	-0.00769144229035
+UniRef50_M7XVH9		0.000112979087244	0.000357569806377	0.000244590719133
+UniRef50_A5UL22	DNA repair helicase	0.00261559551078	0.000927941796405	-0.00168765371438
+UniRef50_Q8TI16	Energy coupling factor transporter ATP binding protein EcfA	1.00863230139e-05	1.31644035549e-05	3.078080541e-06
+UniRef50_A4Y9D9	Peptidyl tRNA hydrolase	0.00112105413996	0.000611443586101	-0.000509610553859
+UniRef50_UPI000262C9FD	ribonuclease, Rne Rng family protein	2.17494163806e-06	1.67390803533e-06	-5.0103360273e-07
+UniRef50_UPI00047C08EE	short chain dehydrogenase	7.55969237554e-06	1.13088261504e-05	3.74913377486e-06
+UniRef50_UPI00026257AD	inosine uridine preferring nucleoside hydrolase, partial	8.92970214276e-06	3.57062880019e-05	2.67765858591e-05
+UniRef50_D3QFZ0	Penicillin amidase V	0.0106202423416	0.00508979217296	-0.00553045016864
+UniRef50_UPI0003B42BB6	GntR family transcriptional regulator	2.18369763659e-05	4.85482653925e-05	2.67112890266e-05
+UniRef50_Q49XR9		0.0186048008768	0.005676133054	-0.0129286678228
+UniRef50_M4R497	Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II	0.000107673689615	0.00647730187985	0.00636962819024
+UniRef50_Q9RSH0	Amino acid ABC transporter, periplasmic amino acid binding protein	0.000529318112793	0.0730961929478	0.072566874835
+UniRef50_P0A0M5	Thymidylate synthase	0.0181731349413	0.00954795892753	-0.00862517601377
+UniRef50_A4VHG9	tRNA N6 adenosine threonylcarbamoyltransferase	0.00427081853895	0.0148486763185	0.0105778577796
+UniRef50_Q8CQ28	ABC transporter	0.0240270293557	0.00547106398333	-0.0185559653724
+UniRef50_UPI00046FA309	hypothetical protein	0.000138509477888	1.36841122583e-05	-0.00012482536563
+UniRef50_Q1AS60	Glutamate  tRNA ligase 2	4.48203596814e-06	5.15201944286e-06	6.6998347472e-07
+UniRef50_UPI00037B162D	MULTISPECIES	7.17095078314e-05	1.21268087424e-05	-5.9582699089e-05
+UniRef50_P52662	HTH type transcriptional regulator PecT	0.00275816168391	0.0012444199892	-0.00151374169471
+UniRef50_S9S860		2.06007863142e-05	9.12186169211e-06	-1.14789246221e-05
+UniRef50_UPI0003D719FF		3.71604734836e-05	0.000139620773387	0.000102460299903
+UniRef50_UPI000467E030	calcium binding protein, partial	3.40173475522e-05	5.47186407626e-05	2.07012932104e-05
+UniRef50_A5UL93	Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA	0.00268936863328	0.000396204540274	-0.00229316409301
+UniRef50_F4A673	Hydrogenase maturation factor	0.00137150052624	0.000862596146583	-0.000508904379657
+UniRef50_A5F3A7	Aldehyde dehydrogenase	0.000285898751085	0.000124303029555	-0.00016159572153
+UniRef50_Q8U1E4	Translation initiation factor 5A	0.00121839193345	0.00142945357351	0.00021106164006
+UniRef50_Q5FPL0	GMP synthase [glutamine hydrolyzing]	4.63863651493e-05	2.45414202402e-05	-2.18449449091e-05
+UniRef50_D8K701	UPF0125 protein Nwat_1827	0.000240788535107	3.39674089035e-05	-0.000206821126204
+UniRef50_P63811	Pantothenate kinase	2.28964772681e-05	0.00982962184725	0.00980672536998
+UniRef50_F2L7R0	NAD NADP transhydrogenase alpha subunit like protein	6.90445917882e-05	7.93875962153e-05	1.03430044271e-05
+UniRef50_D4H9R8	Triacylglycerol lipase	0.000122959605492	0.000780978135531	0.000658018530039
+UniRef50_M7DU42	Transcriptional regulator	0.020000401014	0.00201690014581	-0.0179835008682
+UniRef50_Q2S3A7	Phosphoglycerate kinase	1.26613379189e-05	6.02078225909e-05	4.7546484672e-05
+UniRef50_UPI0003725ECA	hypothetical protein	0.000144439603769	9.46587886666e-05	-4.97808151024e-05
+UniRef50_P0AFS7	UPF0118 inner membrane protein YdiK	0.00138765668479	0.000221211015129	-0.00116644566966
+UniRef50_Q2RPW6		0.00178451391895	0.000355090226682	-0.00142942369227
+UniRef50_A0A024E8U2	Mandelate racemase muconate lactonizing enzyme family protein	0.00128339356896	0.000152618452293	-0.00113077511667
+UniRef50_I6U2V2	Transcriptional regulator	0.00437074281514	0.00283379297683	-0.00153694983831
+UniRef50_P45858	2 methylcitrate synthase	1.37783269286e-05	2.32746613714e-05	9.4963344428e-06
+UniRef50_Q6CBZ1	YALI0C14234p	6.34366737652e-05	3.66382605505e-05	-2.67984132147e-05
+UniRef50_W0YNG1		0.000456636276836	0.000562508009894	0.000105871733058
+UniRef50_O26830	Putative phospho N acetylmuramoyl pentapeptide transferase	0.00251354107868	0.000167952628551	-0.00234558845013
+UniRef50_P23878	Ferric enterobactin transport ATP binding protein FepC	0.0029883307859	0.000330578401339	-0.00265775238456
+UniRef50_D9RDD4		0.0118574844678	0.00143913607484	-0.010418348393
+UniRef50_K0HJZ6	HTH domain protein	0.000261449209184	0.00506221296237	0.00480076375319
+UniRef50_UPI00045603DB	hypothetical protein PFL1_00982	0.000171018606143	0.000105955935372	-6.5062670771e-05
+UniRef50_A9NFP2	50S ribosomal protein L32	0.0143104300398	0.00131251868976	-0.01299791135
+UniRef50_UPI00024926A7	DNA 3 methyladenine glycosylase	2.59914714258e-05	2.39860354065e-05	-2.0054360193e-06
+UniRef50_P28916	H repeat associated protein YbfD	0.00397026537791	0.00084252980344	-0.00312773557447
+UniRef50_UPI000262D669	FKBP type peptidyl prolyl cis trans isomerase	6.57563479367e-05	7.34406922112e-05	7.6843442745e-06
+UniRef50_UPI0003B77EBB	ABC transporter	4.973639969e-06	1.14254128622e-05	6.4517728932e-06
+UniRef50_A6LQ88	Type II secretory pathway pseudopilin PulG like protein	0.000278930533636	0.00219212680326	0.00191319626962
+UniRef50_O32197	Transcriptional regulatory protein LiaR	0.0269240769037	0.0094963912138	-0.0174276856899
+UniRef50_UPI00016BFC87	ribonuclease III	1.33226155261e-05	4.19702565599e-05	2.86476410338e-05
+UniRef50_G2JLA5		0.00290896410951	0.00442741603415	0.00151845192464
+UniRef50_A0A022GY86		2.6587365406e-05	1.58102333837e-05	-1.07771320223e-05
+UniRef50_L8EHD4	Major facilitator transporter	2.577396566e-06	8.71502747379e-05	8.45728781719e-05
+UniRef50_UPI000225F112	hypothetical protein	0.000432544562197	2.81547347408e-05	-0.000404389827456
+UniRef50_O08385	ATP phosphoribosyltransferase	0.000991351460727	0.00135435873523	0.000363007274503
+UniRef50_Q3IVA5	Aldo keto reductase	0.0111008236061	0.00323010674666	-0.00787071685944
+UniRef50_UPI00037D4803	hypothetical protein	3.95387702816e-06	3.04347110971e-05	2.64808340689e-05
+UniRef50_UPI0004015A16	MULTISPECIES	1.07708635954e-05	8.3000362986e-05	7.22294993906e-05
+UniRef50_Q9AAA2	MaoC family protein	4.65400514843e-05	2.54519743246e-05	-2.10880771597e-05
+UniRef50_P42810	TPR repeat containing protein PA4667	0.000186076124692	0.000231644734857	4.5568610165e-05
+UniRef50_Q3XXT3	Amino acid permease associated region	0.0111250079144	0.0046166597895	-0.0065083481249
+UniRef50_UPI000474EE1B	hypothetical protein	3.15407426103e-05	6.35040851712e-05	3.19633425609e-05
+UniRef50_A8LKL8	AFG1 family ATPase	0.0105735808999	0.00145115805369	-0.00912242284621
+UniRef50_Q87XY9	Decarboxylase family protein	0.00147746944521	0.0012055871232	-0.00027188232201
+UniRef50_B1N5W5	Diaphanous protein, putative 	5.76129969286e-06	5.22737074051e-06	-5.3392895235e-07
+UniRef50_A4X0A4	HipA domain protein	0.0125561241003	0.0024732534568	-0.0100828706435
+UniRef50_UPI000364B97F	hypothetical protein	2.8631219123e-05	4.03376147698e-06	-2.4597457646e-05
+UniRef50_UPI0003B7A32E	chromosome partitioning protein ParB	5.48520703516e-05	0.0014724578973	0.00141760582695
+UniRef50_Q17058	Alpha glucosidase	1.06694861621e-05	8.0930281643e-06	-2.5764579978e-06
+UniRef50_G0HDD8		7.15387218342e-05	0.00724632690383	0.007174788182
+UniRef50_A4CMU2		1.68421787526e-05	1.39232721e-05	-2.9189066526e-06
+UniRef50_I6RKC9		0.000700587372529	0.000392685618868	-0.000307901753661
+UniRef50_UPI00025588CA	phage terminase, partial	0.000307310065221	2.38934011889e-05	-0.000283416664032
+UniRef50_H3LAA4		4.91331526942e-05	3.92439353637e-05	-9.8892173305e-06
+UniRef50_D3E1C3		0.00436285950222	0.000375805506968	-0.00398705399525
+UniRef50_B9KX02		0.00217811564083	0.000388507227435	-0.0017896084134
+UniRef50_G4YDD7		2.28282756213e-05	6.03193271208e-05	3.74910514995e-05
+UniRef50_Q9HYT1		0.00138255559842	0.000207239793125	-0.00117531580529
+UniRef50_UPI0003797423	hypothetical protein, partial	3.98716356562e-05	3.6635790752e-06	-3.6208056581e-05
+UniRef50_Q9HYT3		0.000339139844059	0.000272457711549	-6.668213251e-05
+UniRef50_I6U0G5	ComB, accessory factor for ComA	0.00483145832485	0.00213812750687	-0.00269333081798
+UniRef50_W8KRF0	Flagellar hook capping protein	7.38024235006e-06	1.08043072921e-05	3.42406494204e-06
+UniRef50_K4PRA4	Phosphotransferase system, EIIC	9.33600961682e-05	0.000193017454369	9.96573582008e-05
+UniRef50_D0RWK6		0.00396792102761	0.000244737600989	-0.00372318342662
+UniRef50_Q9RUL2		0.0010000042236	0.0427452685108	0.0417452642872
+UniRef50_UPI000408C0D1	L threonine 3 dehydrogenase	5.9951888187e-06	0.000100911293367	9.49161045483e-05
+UniRef50_Q67PA6	Proline  tRNA ligase	4.85933386328e-06	7.16625984978e-05	6.68032646345e-05
+UniRef50_C4UFH2		1.09575374683e-05	9.96495131301e-06	-9.9258615529e-07
+UniRef50_B7I478	Transcriptional regulator, TetR family	0.00063476438756	0.0159508354081	0.0153160710205
+UniRef50_C5BM48	Ethanolamine ammonia lyase, large subunit	0.00105224780203	0.00826546092781	0.00721321312578
+UniRef50_D2P376		1.46061579715e-05	0.000392882534625	0.000378276376653
+UniRef50_Q9ZL96	tRNA  ) methyltransferase	9.7709919458e-05	0.00418355403412	0.00408584411466
+UniRef50_V0L6T7	Glycine dehydrogenase	0.00207656711224	0.00101588119878	-0.00106068591346
+UniRef50_UPI000470D224	sugar ABC transporter permease	2.16092626466e-05	1.12991154461e-05	-1.03101472005e-05
+UniRef50_A0A024HX03		4.1721630349e-06	6.48750116095e-06	2.31533812605e-06
+UniRef50_UPI0004691DC1	mechanosensitive ion channel protein MscL	0.000387408570048	7.66063542803e-05	-0.000310802215768
+UniRef50_T7H4C9	Periplasmic endochitinase	0.00131351461295	0.00021287170559	-0.00110064290736
+UniRef50_G2JK97		0.000349656531858	0.00191037331937	0.00156071678751
+UniRef50_UPI0003616A00	hypothetical protein	1.98787154188e-05	0.000457112840812	0.000437234125393
+UniRef50_M4MLE9		0.00793743329946	0.000376919454664	-0.0075605138448
+UniRef50_I3UFE6	Saccharopine dehydrogenase	0.0107269916045	0.00384223409919	-0.00688475750531
+UniRef50_UPI00046ED2B4	hypothetical protein	0.000192849680478	3.08237033184e-05	-0.00016202597716
+UniRef50_UPI0002E5AE52	choline dehydrogenase	5.30227941019e-05	1.63196421019e-05	-3.6703152e-05
+UniRef50_M4QZX1		0.00058854715767	0.0104978088938	0.00990926173613
+UniRef50_P13512	Cobalt zinc cadmium resistance protein CzcD	0.00120458752684	0.00652892166771	0.00532433414087
+UniRef50_V8R0S1	Deoxyribonuclease	3.38117407713e-06	0.00016304357694	0.000159662402863
+UniRef50_UPI00036A5DE2	peptidase	6.45374007465e-06	1.94865172316e-05	1.30327771569e-05
+UniRef50_X5DX77		0.00537426714876	0.00190688163344	-0.00346738551532
+UniRef50_D6ZZK2	Sulfate ABC transporter, periplasmic sulfate binding protein	0.0115071100577	0.00215277780634	-0.00935433225136
+UniRef50_UPI000472CD56	hypothetical protein	3.9891164237e-05	3.31834844312e-05	-6.7076798058e-06
+UniRef50_UPI000289BAA8	acetyl CoA	6.17782641891e-06	1.74262646191e-05	1.12484382002e-05
+UniRef50_UPI000474C455	hypothetical protein, partial	0.00039268102794	3.16291897258e-05	-0.000361051838214
+UniRef50_B1GYQ3	3 phosphoshikimate 1 carboxyvinyltransferase	4.62881862416e-06	6.12078938013e-06	1.49197075597e-06
+UniRef50_Q7P3Y5	NagD protein	2.92518313198e-05	0.000108569821968	7.93179906482e-05
+UniRef50_UPI0001BF64A8	hypothetical protein SMAC_11040, partial	3.3115664033e-05	0.00106056017007	0.00102744450604
+UniRef50_D8GQL0		0.000208940584237	0.00193525063326	0.00172631004902
+UniRef50_UPI0001C36D2D	hypothetical protein	1.83718360343e-06	4.10116016747e-06	2.26397656404e-06
+UniRef50_Q5XE77	Single stranded DNA binding protein 1	0.0039355426687	0.00304400667739	-0.00089153599131
+UniRef50_P75788	Inner membrane protein YbiR	0.00302248965996	0.00206589444548	-0.00095659521448
+UniRef50_D4Z138		0.00010693465288	5.75975357341e-05	-4.93371171459e-05
+UniRef50_UPI000237EFA3	transposase IS3 family protein	0.000286604444997	8.68699389826e-05	-0.000199734506014
+UniRef50_U3SWI7		0.00601158467119	0.00183399137865	-0.00417759329254
+UniRef50_X0PLV2	Excinuclease ABC	2.97484220653e-05	0.000135801477647	0.000106053055582
+UniRef50_C7ZYL4	Phage major tail protein	0.0204212647858	0.00494129306886	-0.0154799717169
+UniRef50_UPI0004713D66	hypothetical protein	7.21640072095e-06	1.12640253541e-05	4.04762463315e-06
+UniRef50_C5CT24	Polyribonucleotide nucleotidyltransferase	0.000124506955017	0.00459928233292	0.0044747753779
+UniRef50_L7WT15	Glycosyltransferase stabilizing protein Gtf2	0.00875125543601	0.003063620881	-0.00568763455501
+UniRef50_I6SK88		0.000238412203486	0.000600644146164	0.000362231942678
+UniRef50_UPI0001C39745	ABC type dipeptide transport system, periplasmic component, partial	3.13337892238e-05	0.000135986465501	0.000104652676277
+UniRef50_A3W978		2.61473206309e-06	0.000313593498676	0.000310978766613
+UniRef50_A2FR65	Basic proline rich protein, putative	2.11169831119e-06	3.18342517219e-05	2.97225534107e-05
+UniRef50_UPI000181656F	hypothetical protein, partial	2.16900262647e-05	1.5155570114e-05	-6.5344561507e-06
+UniRef50_A0A011PGA8	Hydrogenase 2 maturation protease	0.000248256548396	0.00017256791668	-7.5688631716e-05
+UniRef50_O27051	D 3 phosphoglycerate dehydrogenase	0.00358423364029	0.000354210289475	-0.00323002335081
+UniRef50_UPI000262927F	GTPase Der	1.12727972097e-05	2.35203809827e-05	1.2247583773e-05
+UniRef50_K4HIZ1	DnaJ related protein	1.49019470913e-05	1.48192455894e-05	-8.27015019e-08
+UniRef50_UPI0003637E5A	hypothetical protein, partial	9.18675973125e-05	0.000258422851782	0.000166555254469
+UniRef50_P76102	Putative transposase InsQ for insertion sequence element IS609	0.00175907738129	0.000312664261817	-0.00144641311947
+UniRef50_F0KM17	Lipid A biosynthesis lauroyl acyltransferase 	0.000373308522105	0.011063586228	0.0106902777059
+UniRef50_S5YHY9	Partition protein A	0.0145321861429	0.00264323265894	-0.011888953484
+UniRef50_Q3J218		0.0030720523076	0.00171474215919	-0.00135731014841
+UniRef50_K0TK24		0.000246962555471	4.81494526799e-05	-0.000198813102791
+UniRef50_UPI000471D82C	hypothetical protein	3.84688142104e-05	0.000811410424334	0.000772941610124
+UniRef50_UPI000363C207	hypothetical protein	4.74333979498e-06	6.84645238196e-05	6.37211840246e-05
+UniRef50_D3E2Q4	Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family	0.00315403853425	0.000270519119271	-0.00288351941498
+UniRef50_UPI0003B72DF0	GntR family transcriptional regulator	1.5939806031e-05	3.10123742982e-05	1.50725682672e-05
+UniRef50_Q3J215		0.001203240963	0.00630565214824	0.00510241118524
+UniRef50_UPI0003B5B026	zinc metalloprotease	1.84205551687e-05	1.54374997467e-05	-2.983055422e-06
+UniRef50_O14556	Glyceraldehyde 3 phosphate dehydrogenase, testis specific	4.33825724748e-06	7.77553162118e-06	3.4372743737e-06
+UniRef50_P65671	Sulfate adenylyltransferase subunit 2	0.000213268920259	0.00564501940932	0.00543175048906
+UniRef50_F0QP46	Flavoprotein	0.000157397867263	0.00604211782	0.00588471995274
+UniRef50_D5UQ22	Cell envelope related transcriptional attenuator	3.31078256233e-06	1.1268986533e-05	7.95820397067e-06
+UniRef50_Q1IX28	Periplasmic YigE like protein	2.17226819131e-05	0.000691747021624	0.000670024339711
+UniRef50_Q3JG98	Acyl CoA dehydrogenase, C terminal domain family	0.000124720040369	0.006136361895	0.00601164185463
+UniRef50_UPI00046FA5DF	hypothetical protein	0.00012337205503	3.93800954421e-05	-8.39919595879e-05
+UniRef50_UPI00035D1933	glycine cleavage system protein H	0.000124853802669	4.6589547855e-05	-7.8264254814e-05
+UniRef50_V9T6E9	Sugar ABC transporter permease	0.000860792997232	0.00065188957927	-0.000208903417962
+UniRef50_UPI0003B3F1EE	transposase	0.000384892189275	3.95470821019e-05	-0.000345345107173
+UniRef50_B8EJI5	Holliday junction ATP dependent DNA helicase RuvA	2.04898634152e-05	9.87572791475e-06	-1.06141355004e-05
+UniRef50_UPI00046E909F	hypothetical protein	3.38564496456e-06	0.000221696813083	0.000218311168118
+UniRef50_A1BAZ5		0.00974840854578	0.00142477357769	-0.00832363496809
+UniRef50_A5UML2	Predicted flavoprotein	0.00464997341681	0.000766833645921	-0.00388313977089
+UniRef50_UPI000349F337	hypothetical protein	1.4036090839e-05	1.12698204955e-05	-2.7662703435e-06
+UniRef50_UPI0004624C72	polymerase	4.17309261302e-05	2.16815619447e-05	-2.00493641855e-05
+UniRef50_Q3J4T5	Putative metal dependent protease of the PAD1 JAB1 superfamily	0.0230458028673	0.0175647305321	-0.0054810723352
+UniRef50_Q6GE10	6 carboxyhexanoate  CoA ligase	0.0266472780519	0.00584916836143	-0.0207981096905
+UniRef50_P07018	Methyl accepting chemotaxis protein IV	0.00162047782135	0.00113776911677	-0.00048270870458
+UniRef50_I3Y049		3.44811547833e-05	2.53411013532e-05	-9.1400534301e-06
+UniRef50_UPI0003476A90	hypothetical protein	9.66656837494e-05	9.70359987393e-06	-8.69620838755e-05
+UniRef50_UPI0003F0CB72	PREDICTED	6.93545577416e-05	1.0174843704e-05	-5.91797140376e-05
+UniRef50_O68872		2.72126846076e-05	1.34368848486e-05	-1.3775799759e-05
+UniRef50_Q2GDJ8	NADH quinone oxidoreductase subunit D	3.06954159752e-05	6.20545543858e-05	3.13591384106e-05
+UniRef50_A1AJH6	N acetylneuraminate epimerase	0.000769666761398	0.000610086487235	-0.000159580274163
+UniRef50_F2J2D8	Putative HTH type transcriptional regulator rrf2 like protein	4.90750144085e-05	2.29800756401e-05	-2.60949387684e-05
+UniRef50_Q9RXY1	50S ribosomal protein L13	0.000258552047156	0.0549214743431	0.0546629222959
+UniRef50_D3E348		0.00386453019058	0.00176908813741	-0.00209544205317
+UniRef50_K0C281	Flagellar hook capping protein	7.71910395366e-06	1.05748344467e-05	2.85573049304e-06
+UniRef50_UPI0003697B4B	ABC transporter, partial	6.41654148153e-05	0.000118127265163	5.39618503477e-05
+UniRef50_A3WH30		0.000164333357018	0.000182799932358	1.846657534e-05
+UniRef50_UPI00036F7350	hypothetical protein	1.19850643372e-05	6.02588518114e-06	-5.95917915606e-06
+UniRef50_A0A011PL33		0.000374556825403	1.17355788946e-05	-0.000362821246508
+UniRef50_Q9LUW5	DEAD box ATP dependent RNA helicase 53	8.50081762769e-06	0.000106866592368	9.83657747403e-05
+UniRef50_UPI0003C14327	PREDICTED	0.000162178424441	5.27710566236e-05	-0.000109407367817
+UniRef50_Q016E9	Glyoxalase bleomycin resistance protein dioxygenas 	0.000962416231123	0.000173248252835	-0.000789167978288
+UniRef50_UPI0003B4F316	ABC transporter ATP binding protein	0.000363357806267	2.17217093411e-05	-0.000341636096926
+UniRef50_C5AQC0	DNA helicase, ATP dependent resolution of Holliday junctions, branch migration	0.00104658638442	0.000348211301669	-0.000698375082751
+UniRef50_Q49Y17		0.0203020479131	0.0056986131494	-0.0146034347637
+UniRef50_A8AKZ3		0.0105053070929	0.000730151811032	-0.00977515528187
+UniRef50_P0AE54	Putative peroxiredoxin bcp	0.00495091743456	0.000391147953907	-0.00455976948065
+UniRef50_Q5HLM6		0.00403612911074	0.000985874696806	-0.00305025441393
+UniRef50_W0IR18	C4 dicarboxylate ABC transporter	0.00797326769653	0.00166761276481	-0.00630565493172
+UniRef50_A4WSF9		0.000111665054727	1.04485138187e-05	-0.000101216540908
+UniRef50_UPI00030293EE	hypothetical protein	2.6584012096e-05	7.62252711482e-06	-1.89614849812e-05
+UniRef50_W4U1X8		4.79721629021e-06	1.21189552376e-05	7.32173894739e-06
+UniRef50_B2T0E3		0.000124904224454	4.23617813936e-05	-8.25424430604e-05
+UniRef50_B0VUD5	High frequency lysogenization protein HflD homolog	0.000324448646184	0.00524252596288	0.0049180773167
+UniRef50_A0A029AVJ5		8.88994172475e-06	6.25809746045e-05	5.36910328797e-05
+UniRef50_S6WIX2	Fosmidomycin resistance protein 	0.000272636125244	7.31894960285e-05	-0.000199446629216
+UniRef50_Q6LKZ5	ATP synthase epsilon chain 2	0.000267720559474	0.00258153816371	0.00231381760424
+UniRef50_UPI00046E6D22	LysR family transcriptional regulator, partial	7.839716899e-06	7.92737002227e-06	8.765312327e-08
+UniRef50_P33368		0.00371291664563	0.00295360639918	-0.00075931024645
+UniRef50_UPI000370601D	hypothetical protein	1.60624268695e-05	5.77164115815e-05	4.1653984712e-05
+UniRef50_C3FDC0		0.000264134060577	0.00111415002597	0.000850015965393
+UniRef50_B9KUV4		0.000381257569712	0.000167793582503	-0.000213463987209
+UniRef50_C6STH9		0.00899353871183	0.000800805684286	-0.00819273302754
+UniRef50_V5EUP7		3.85221178065e-06	0.00045831473518	0.000454462523399
+UniRef50_UPI00029A0BC2	3 hydroxybutyryl CoA epimerase	2.14084001059e-06	6.97326654617e-06	4.83242653558e-06
+UniRef50_C9CS38	Rb142	9.56265565135e-06	3.86333736629e-06	-5.69931828506e-06
+UniRef50_UPI0003B6D51E	DNA topoisomerase I	2.83705753605e-06	1.05980405102e-05	7.76098297415e-06
+UniRef50_UPI0003597373	PREDICTED	5.07142653666e-06	6.54546077233e-05	6.03831811866e-05
+UniRef50_T1YC46	Integral membrane protein	0.0207937568195	0.00578644829849	-0.015007308521
+UniRef50_P37460	Proline specific permease ProY	0.000592191124291	0.00622326276457	0.00563107164028
+UniRef50_A9BFZ1	30S ribosomal protein S4	0.000368279013511	0.0466653065696	0.0462970275561
+UniRef50_UPI00037C9C7B	hypothetical protein	6.45164087129e-06	3.74823998982e-06	-2.70340088147e-06
+UniRef50_Q3KHK6	GntR family transcriptional regulator	0.000738824547026	0.000951154104944	0.000212329557918
+UniRef50_Q5H1Q0	Beta hexosaminidase	5.06447053817e-06	1.35511392081e-05	8.48666866993e-06
+UniRef50_UPI0002F5F4FB	hypothetical protein	9.92241861262e-06	0.000195528914058	0.000185606495445
+UniRef50_P18179	Potential ATP binding protein	0.0963378801446	0.0232054379517	-0.0731324421929
+UniRef50_UPI00035C1F2F	hypothetical protein	4.79370706344e-06	6.44979159794e-06	1.6560845345e-06
+UniRef50_Q1AR89	Aminomethyltransferase	6.85779632759e-05	7.64576784375e-05	7.8797151616e-06
+UniRef50_UPI0002B48709	PREDICTED	5.78312169356e-06	4.48981749963e-06	-1.29330419393e-06
+UniRef50_UPI00037FBF9D	hypothetical protein	3.38471567748e-05	1.86828954834e-06	-3.19788672265e-05
+UniRef50_G7ZS60		0.0649074988819	0.00118672743544	-0.0637207714465
+UniRef50_R5A691	Fumarate reductase succinate dehydrogenase flavoprotein domain protein	1.61360957856e-05	1.48437299725e-05	-1.2923658131e-06
+UniRef50_X4ZCF7	ABC transporter family protein	0.00748640814696	0.00525444214884	-0.00223196599812
+UniRef50_I3WXC9	Dissimilatory sulfite reductase 	0.000478163254587	0.000192936276143	-0.000285226978444
+UniRef50_Q8DUY9		0.00406087927091	0.00123408248075	-0.00282679679016
+UniRef50_P0AGL8	Ribosomal RNA small subunit methyltransferase E	0.00167321558672	0.000242726059064	-0.00143048952766
+UniRef50_Q9I2V5	Aconitate hydratase 2	0.00146339021553	0.00703722012203	0.0055738299065
+UniRef50_A6L1U8	Lipoyl synthase	4.99056838101e-06	0.00104289989206	0.00103790932368
+UniRef50_UPI00046AA788	hypothetical protein	7.87343176829e-05	9.25174812046e-05	1.37831635217e-05
+UniRef50_Q2SPQ1	Chemotaxis response regulator protein glutamate methylesterase 1	6.91105173079e-05	9.12754628472e-06	-5.99829710232e-05
+UniRef50_Q51465	Flagellar motor switch protein FliM	0.000732560789549	0.000316410755563	-0.000416150033986
+UniRef50_UPI000479C05A	malate	2.94586139091e-06	9.01905228428e-06	6.07319089337e-06
+UniRef50_I2FD14	UDP glucose 4 epimerase	0.000327230863435	0.00272999298272	0.00240276211928
+UniRef50_Q2IFU3	Pantothenate synthetase	0.0017014366498	0.000366853049924	-0.00133458359988
+UniRef50_Q1J0G9	Aminotransferase, class V	0.000264902448311	0.00944622575209	0.00918132330378
+UniRef50_H8GYV6		0.000202224636884	0.0250286813448	0.0248264567079
+UniRef50_A5X3K4	Polyphenol oxidase	0.00127442879115	0.000327523148093	-0.000946905643057
+UniRef50_P76555	Ethanolamine utilization protein EutQ	0.00158995578719	0.00139084880992	-0.00019910697727
+UniRef50_Q83II9	Ascorbate specific permease IIC component UlaA	0.00355915577359	0.00147891567685	-0.00208024009674
+UniRef50_UPI0004688BBC	flagellar motor switch protein	6.37310095676e-05	4.83741372484e-05	-1.53568723192e-05
+UniRef50_D8N1D9		4.34669031089e-07	6.62266369511e-07	2.27597338422e-07
+UniRef50_C5B779	Protein CreA	2.30157294746e-05	1.96712669253e-05	-3.3444625493e-06
+UniRef50_K0HWI3	NADPH dependent FMN reductase	0.000218621229065	0.00474455018938	0.00452592896031
+UniRef50_P75693		0.00160137149409	0.000905635345209	-0.000695736148881
+UniRef50_UPI00034B5B3B	hypothetical protein	7.50510702956e-06	1.07457068127e-05	3.24059978314e-06
+UniRef50_E7B3D1	Metallo beta lactamase superfamily protein PA0057	0.000490388584265	1.24872037343e-05	-0.000477901380531
+UniRef50_D8HDI6	Pyridoxal dependent decarboxylase	0.0147138284894	0.00301774935129	-0.0116960791381
+UniRef50_X7FEK2		3.98682728336e-05	3.37435988918e-05	-6.1246739418e-06
+UniRef50_UPI00047DFC44	hypothetical protein	6.11709534811e-06	3.40405525375e-05	2.79234571894e-05
+UniRef50_B0VLY8		7.96383942783e-05	0.0070697329979	0.00699009460362
+UniRef50_Q6A7P4	Riboflavin biosynthesis protein RibF 	0.000346062750835	0.00734999540155	0.00700393265071
+UniRef50_Q08052	Ribulose bisphosphate carboxylase small chain	0.000402794549515	5.31370998841e-05	-0.000349657449631
+UniRef50_D4HAX6	ROK family protein	0.000224249102288	0.00700035354057	0.00677610443828
+UniRef50_E0RV96	Rhamnulose 1 phosphate aldolase	0.000304424184557	0.000360142323408	5.5718138851e-05
+UniRef50_P69854	Tat proofreading chaperone DmsD	0.00225767937135	0.00110743764448	-0.00115024172687
+UniRef50_U6I0U9	Glutamyl tRNA amidotransferase subunit B, mitochondrial	6.25866030598e-06	5.55175549263e-06	-7.0690481335e-07
+UniRef50_UPI00036CBFA7	hypothetical protein	4.85183895068e-06	7.69823187115e-06	2.84639292047e-06
+UniRef50_A3PIF9	PRC barrel domain protein	0.00583982593218	0.000516588988672	-0.00532323694351
+UniRef50_Q8RD56	AAA superfamily ATPases with N terminal receiver domain	0.000125809280332	0.000484200692328	0.000358391411996
+UniRef50_P09384	Chemotaxis protein CheA	0.00218454274231	0.000543667850736	-0.00164087489157
+UniRef50_A6QE42		0.00196482446064	0.00135675809661	-0.00060806636403
+UniRef50_Q6F806		0.000171066158086	0.00586978844928	0.00569872229119
+UniRef50_I1ZNS6	Cation efflux protein	0.000522429306784	0.00401458253734	0.00349215323056
+UniRef50_Q4SPJ4	Chromosome 16 SCAF14537, whole genome shotgun sequence. 	0.00034342620462	3.53180417329e-05	-0.000308108162887
+UniRef50_Q9LDF4		2.27250809553e-05	0.000385587851347	0.000362862770392
+UniRef50_Q37370	Cytochrome c oxidase subunit 1+2	6.78222520371e-06	2.14012945669e-05	1.46190693632e-05
+UniRef50_B2S5Z1	Indole 3 glycerol phosphate synthase	0.00633943426866	0.000944133167229	-0.00539530110143
+UniRef50_A7MEJ4	Spermidine export protein MdtJ	0.000660266673678	0.000801764810481	0.000141498136803
+UniRef50_R9YQ52	Sugar  transporter family protein	0.0102970729819	0.00324175932818	-0.00705531365372
+UniRef50_UPI000476FBDE	hypothetical protein	9.66007984378e-06	2.81550733155e-06	-6.84457251223e-06
+UniRef50_Q5HL84	Gamma glutamyltranspeptidase	0.00974316376915	0.00447760741072	-0.00526555635843
+UniRef50_UPI00041118D3	PTS beta glucoside transporter subunit IIABC	3.12226329252e-06	1.10058678006e-05	7.88360450808e-06
+UniRef50_Q58991	Homoisocitrate dehydrogenase	1.16354700669e-05	1.97641285663e-05	8.1286584994e-06
+UniRef50_D7I1Z9	Dienelactone hydrolase	0.000398462105027	0.00619258482255	0.00579412271752
+UniRef50_UPI0003B77390	DNA directed RNA polymerase subunit alpha	3.85468930198e-05	2.88554297813e-05	-9.6914632385e-06
+UniRef50_F3ZLH7		0.00113699202626	0.000224878562908	-0.000912113463352
+UniRef50_Q8U8I2	Serine 3 dehydrogenase	0.00153880232243	0.0013717453524	-0.00016705697003
+UniRef50_D6B8D3	Primosome assembly protein PriA 	7.26432665917e-06	0.000749686775877	0.000742422449218
+UniRef50_Q03IX4	Protein translocase subunit SecA	0.00599226893105	0.00121529080841	-0.00477697812264
+UniRef50_H8GTG2	Putative serine protease	0.000148616531043	0.000958398244057	0.000809781713014
+UniRef50_H9UPI6	Porin thermoregulatory protein envY	0.000265864360815	4.67067784397e-05	-0.000219157582375
+UniRef50_UPI00041B2F47	hypothetical protein	9.39336506483e-06	1.55887241844e-05	6.19535911957e-06
+UniRef50_B9KJW8	Methyl accepting chemotaxis sensory transducer	0.00175365505308	0.00258203385907	0.00082837880599
+UniRef50_J0MRE5		0.0528191405412	0.00998150389135	-0.0428376366499
+UniRef50_UPI000373B743	hypothetical protein	1.57819486834e-05	7.41505037315e-06	-8.36689831025e-06
+UniRef50_A6LQ39		0.000284895085921	0.000252767508006	-3.2127577915e-05
+UniRef50_UPI00037EEBFC	hypothetical protein	1.18742615807e-05	1.89315876876e-05	7.0573261069e-06
+UniRef50_A6LXC6	Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.0005083513987	0.00168124529959	0.00117289390089
+UniRef50_T1ZMP3	Competence protein	1.0931122354e-05	5.08414499362e-05	3.99103275822e-05
+UniRef50_Q3JTH0		1.33643758423e-05	0.000118125161829	0.000104760785987
+UniRef50_D2NF85		0.000143679791753	6.40026319106e-05	-7.96771598424e-05
+UniRef50_B1ZB21	ABC transporter related	0.00784396451984	0.00212351892044	-0.0057204455994
+UniRef50_E6S7U2	Molybdopterin dehydrogenase FAD binding protein	0.000118955668759	0.00679574812345	0.00667679245469
+UniRef50_UPI00046CF8F3	hypothetical protein, partial	0.00017928416197	8.24921492373e-05	-9.67920127327e-05
+UniRef50_G6CYT2	Arrestin domain containing 4	2.2220380984e-05	2.91265614185e-05	6.9061804345e-06
+UniRef50_Q2S026	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.59818701289e-05	5.08153725614e-06	-1.09003328728e-05
+UniRef50_G2SQT2	ABC transporter, ATP binding protein	0.0128933254692	0.00301955959575	-0.00987376587345
+UniRef50_B3DTC2	Phosphoglucosamine mutase	0.00017371648652	0.00935113035538	0.00917741386886
+UniRef50_I6TYE3	Transcription regulator	0.00276949827888	0.000583373649418	-0.00218612462946
+UniRef50_P0AAA0	Putative L,D transpeptidase YafK	0.00693298412826	0.00164678958507	-0.00528619454319
+UniRef50_Q8L847	Biotin synthase Bio B	9.23647046514e-06	2.51091183984e-05	1.58726479333e-05
+UniRef50_F5M104	ABC transporter related protein	0.000707340993622	0.000320415955001	-0.000386925038621
+UniRef50_C5MZ72		0.00216946400912	0.000504814880674	-0.00166464912845
+UniRef50_UPI0003C75BDD	hypothetical protein	0.000414819767969	0.000367382518893	-4.7437249076e-05
+UniRef50_Q8CMX3	Phosphoadenosine phosphosulfate reductase	0.00793024604776	0.00960322523248	0.00167297918472
+UniRef50_M9S1K0	Type III secretion protein PcrV	0.000305331686769	0.000361612292071	5.6280605302e-05
+UniRef50_UPI000372BC15	hypothetical protein	6.28449967867e-06	1.09305883712e-05	4.64608869253e-06
+UniRef50_D4MD52	ABC type proline glycine betaine transport system, permease component	0.00300871855084	0.00159066728045	-0.00141805127039
+UniRef50_C6XQD6	Polygalacturonase	7.25839627125e-06	0.00295404007112	0.00294678167485
+UniRef50_Q52666	Glutamate glutamine aspartate asparagine transport ATP binding protein BztD	0.0165164957471	0.00562201927878	-0.0108944764683
+UniRef50_UPI000465B0D7	hypothetical protein	0.000130206382325	5.50820824129e-05	-7.51242999121e-05
+UniRef50_F6K0S0	Silk fibroin 	2.67337493688e-05	1.07406211578e-05	-1.5993128211e-05
+UniRef50_H2WUA1		1.00004210264e-06	9.78907534882e-06	8.78903324618e-06
+UniRef50_Q1RFT2		0.000343169080774	0.00553466328478	0.00519149420401
+UniRef50_R1H4G9	Immunogenic protein	5.26631450205e-05	1.02444919458e-05	-4.24186530747e-05
+UniRef50_UPI00036D594A	hypothetical protein	1.23420876788e-05	0.000467862080669	0.00045551999299
+UniRef50_UPI0003C19FB7	PREDICTED	1.23634289964e-05	1.99667556879e-05	7.6033266915e-06
+UniRef50_UPI00035D526E	hypothetical protein	0.00036162929496	0.000101203590973	-0.000260425703987
+UniRef50_UPI00046A043A	hypothetical protein	0.00247501074101	0.000497724784029	-0.00197728595698
+UniRef50_R4XQ21	Phage minor tail protein	0.000489535144044	0.00200817889419	0.00151864375015
+UniRef50_Q017S2	Probable membrane protein YCR013c yeast 	0.000107573079025	0.000173284562526	6.5711483501e-05
+UniRef50_B5XJ20	Bifunctional purine biosynthesis protein PurH	0.000257953270843	0.000182458371159	-7.5494899684e-05
+UniRef50_P56117		0.000160024982324	0.00353860842852	0.0033785834462
+UniRef50_UPI0002B49AD0	PREDICTED	2.11853219787e-05	1.94239349735e-05	-1.7613870052e-06
+UniRef50_A6LTX3		0.000653341134548	0.000341406595601	-0.000311934538947
+UniRef50_UPI00046A5CCB	PA phosphatase	8.12053070035e-05	3.74352975807e-05	-4.37700094228e-05
+UniRef50_Q3IW22	L alanine exporter AlaE	0.000985628140097	0.000436428628368	-0.000549199511729
+UniRef50_F9Z196	Oligopeptide binding protein OppA	6.80154934868e-05	0.0038254108771	0.00375739538361
+UniRef50_O83940	Ribosomal RNA small subunit methyltransferase I	9.18041392036e-06	2.92724300042e-05	2.00920160838e-05
+UniRef50_UPI0002628324	arginine ABC transporter ATP binding protein	0.000157884942429	5.32265602563e-05	-0.000104658382173
+UniRef50_D5APQ0		0.0108600032869	0.00534544925084	-0.00551455403606
+UniRef50_Q4EQ49		0.000876509573523	0.00024182256549	-0.000634687008033
+UniRef50_A8Z3H2	TetR family transcriptional regulator	0.0122563423778	0.00349498374392	-0.00876135863388
+UniRef50_Q5M103	ATP synthase epsilon chain	0.00301885716408	0.00364148684768	0.0006226296836
+UniRef50_Q88LV4	GTP cyclohydrolase 1 1	0.000131743092193	0.000115666046802	-1.6077045391e-05
+UniRef50_UPI0003775137	hypothetical protein	6.73748840301e-06	2.49797678211e-05	1.82422794181e-05
+UniRef50_Q8NM41	Peptide deformylase 2	1.11834005135e-05	5.74261421105e-05	4.6242741597e-05
+UniRef50_Q99SN7		0.00860900896339	0.00390416651894	-0.00470484244445
+UniRef50_G0DRT9	Regulatory protein	1.09960114367e-05	0.00430559168726	0.00429459567582
+UniRef50_Q8X7W7	Catecholate siderophore receptor Fiu	0.0034462689335	0.000778999423286	-0.00266726951021
+UniRef50_S6BDB2	Methionine  tRNA ligase	0.00636862377881	0.00424605634746	-0.00212256743135
+UniRef50_G0FNR8		0.000203176833565	5.47233998387e-05	-0.000148453433726
+UniRef50_J5L0G3	Chaperone protein HscA	0.000113981592443	0.000124831197151	1.0849604708e-05
+UniRef50_B9EUP4		2.08735671268e-05	6.26459478293e-06	-1.46089723439e-05
+UniRef50_Q21WE1	Alcohol dehydrogenase, zinc binding	0.000667010080329	0.000275139787458	-0.000391870292871
+UniRef50_U6IF34	Heat shock protein 71 kDa protein	1.43780746859e-05	4.99161521535e-06	-9.38645947055e-06
+UniRef50_Q6LV34	RNA polymerase associated protein RapA	0.00226172063096	0.000912572316718	-0.00134914831424
+UniRef50_H8GTZ6		9.41659307779e-05	0.0221552131783	0.0220610472475
+UniRef50_UPI0003C7D07B	hypothetical protein	0.000162249896705	9.17207710547e-05	-7.05291256503e-05
+UniRef50_B6EJ93	Imidazole glycerol phosphate synthase subunit HisF	0.000821793480819	0.00783774071396	0.00701594723314
+UniRef50_Q8UBB7	sn glycerol 3 phosphate import ATP binding protein UgpC 2	0.000106545254932	6.15781519342e-05	-4.49671029978e-05
+UniRef50_A8F986	50S ribosomal protein L4	0.000536709936758	0.000344058297312	-0.000192651639446
+UniRef50_UPI0003B645FE	protein pucC, partial	0.000151247293605	7.58006029206e-05	-7.54466906844e-05
+UniRef50_C8X890	Two component transcriptional regulator, LuxR family	0.000670093471334	0.00566498681681	0.00499489334548
+UniRef50_K0ECU0	CreA protein	0.000112903302432	5.83457074415e-05	-5.45575949905e-05
+UniRef50_UPI00040FE389	O sialoglycoprotein endopeptidase	4.66671804002e-06	2.17386421514e-05	1.70719241114e-05
+UniRef50_R5FR54		1.37261117605e-05	0.00524577168719	0.00523204557543
+UniRef50_UPI00036C9093	hypothetical protein	9.7154259184e-06	9.44246944398e-06	-2.7295647442e-07
+UniRef50_O13774	GTP cyclohydrolase 1	4.46575438327e-05	5.61799705961e-05	1.15224267634e-05
+UniRef50_G0DV83	HAD hydrolase, family IIB	0.000783264504791	0.00294531019607	0.00216204569128
+UniRef50_B0TH67	tRNA  ) methyltransferase	0.0175094261163	0.0060852830873	-0.011424143029
+UniRef50_D2TMN6	Proofreading thioesterase EntH	0.00657434899225	0.00042903153298	-0.00614531745927
+UniRef50_B2V2W5	Sensor histidine kinase	0.000113950976906	0.000630027398056	0.00051607642115
+UniRef50_UPI0003671A9B	hypothetical protein	0.000212796006683	0.000119542118496	-9.3253888187e-05
+UniRef50_UPI0004719C11	DNA topoisomerase III, partial	4.02274700642e-06	1.29115194069e-05	8.88877240048e-06
+UniRef50_Q7CQ37	Flagellar regulator flk	0.00214833044401	0.00106172128245	-0.00108660916156
+UniRef50_O84867	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	7.51538399953e-05	4.6207042454e-05	-2.89467975413e-05
+UniRef50_Q882G0	3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000268390073234	0.00939833132412	0.00912994125089
+UniRef50_Q8RDK3	2 isopropylmalate synthase 1	9.83741549096e-06	6.53262219278e-06	-3.30479329818e-06
+UniRef50_B2RIJ1	GTP cyclohydrolase 1	5.62486140959e-05	7.56482212017e-05	1.93996071058e-05
+UniRef50_UPI0002376FCC	putative D amino acid dehydrogenase small subunit, partial	4.78591065771e-05	3.22706550321e-05	-1.5588451545e-05
+UniRef50_Q8DWE5	Tagatose 1,6 diphosphate aldolase 2	0.0275943336869	0.00889453172035	-0.0186998019666
+UniRef50_N0A6X1	Pirin family protein	5.64329380165e-06	1.04939788473e-05	4.85068504565e-06
+UniRef50_D4H966		2.04104886097e-05	0.000846495552049	0.000826085063439
+UniRef50_Q2NCT3	Peptide deformylase	2.96563645232e-05	4.49691802303e-05	1.53128157071e-05
+UniRef50_G7M922	GAF modulated sigma54 specific transcriptional regulator, Fis family	0.000428724063848	0.00210461111834	0.00167588705449
+UniRef50_D4DVN6		3.91690230953e-06	0.000526783747844	0.000522866845534
+UniRef50_D9RE87	Superantigen like protein	0.0134769906841	0.00116587542225	-0.0123111152619
+UniRef50_UPI0003781EF8	hypothetical protein	8.94347122921e-05	5.32774660994e-05	-3.61572461927e-05
+UniRef50_UPI000467DD39	hypothetical protein	0.000831727033985	0.000212550177213	-0.000619176856772
+UniRef50_U5MQB3	BglP	0.000373830511131	0.00107548828906	0.000701657777929
+UniRef50_W7YQJ5	L serine dehydratase	1.57695371932e-05	3.17883450827e-05	1.60188078895e-05
+UniRef50_Q3J213	Histone like nucleoid structuring protein H NS	0.002630737868	0.0121548003248	0.0095240624568
+UniRef50_UPI0002481AA6	type II secretion system protein E	5.09082006052e-06	7.09979625838e-06	2.00897619786e-06
+UniRef50_UPI0002C431F7	PREDICTED	6.72885756713e-06	6.86282515649e-06	1.3396758936e-07
+UniRef50_Q9RZQ5		3.79499055155e-05	0.0172530032125	0.017215053307
+UniRef50_UPI00036E554C	hypothetical protein	7.06318469579e-06	6.62054898533e-06	-4.4263571046e-07
+UniRef50_Q9RZQ2		6.45391313574e-05	0.0325822703044	0.032517731173
+UniRef50_D8JIG9	TetR family regulatory protein	0.000800297196335	0.0108055842713	0.010005287075
+UniRef50_A3PMN1		0.00760536301962	0.0015746592138	-0.00603070380582
+UniRef50_UPI00041FCE8E	16S rRNA methyltransferase	2.04454325707e-05	2.3697005486e-05	3.2515729153e-06
+UniRef50_U3AG04		0.000243051842678	2.9903588716e-05	-0.000213148253962
+UniRef50_Q4FQ57	tRNA dihydrouridine synthase	0.00030916337053	0.0107160553481	0.0104068919776
+UniRef50_F6B6L3	Biotin and thiamin synthesis associated	0.000181281340016	0.00438811635572	0.0042068350157
+UniRef50_W8T306		0.000210103518845	0.000320415955001	0.000110312436156
+UniRef50_UPI0000E48B78		8.04452697527e-05	6.95406902601e-05	-1.09045794926e-05
+UniRef50_G7U5D1		0.000449388081972	0.00129916046564	0.000849772383668
+UniRef50_UPI0003B78451	Fur family transcriptional regulator	2.42643321264e-05	5.45372352293e-05	3.02729031029e-05
+UniRef50_B7VBB6		0.00089678458948	0.000673163926063	-0.000223620663417
+UniRef50_Q9XAQ2	Peptide deformylase 3	2.46144694101e-05	4.26219599765e-05	1.80074905664e-05
+UniRef50_UPI0003F78D52	dihydrolipoamide dehydrogenase	4.4091165399e-05	5.05302669038e-06	-3.90381387086e-05
+UniRef50_UPI000470E763	50S ribosomal protein L20	4.16856163057e-05	0.000111221826355	6.95362100493e-05
+UniRef50_P76097		0.00356301645962	0.00106325344239	-0.00249976301723
+UniRef50_P76091		0.00201711653875	0.000509967374951	-0.0015071491638
+UniRef50_P76092		0.00235729780894	0.00078029831934	-0.0015769994896
+UniRef50_P76093		0.0025000717507	0.00171674625812	-0.00078332549258
+UniRef50_UPI0004726B91	succinylglutamate desuccinylase	0.000172806796874	7.40117175019e-05	-9.87950793721e-05
+UniRef50_Q65WJ9	2,3 diketo L gulonate reductase	0.00335716395959	0.0008173320351	-0.00253983192449
+UniRef50_P37079	Sorbitol 6 phosphate 2 dehydrogenase	0.0070650700495	0.00297491079493	-0.00409015925457
+UniRef50_M4VE07		0.000409534680746	0.000111620052693	-0.000297914628053
+UniRef50_Q4L9T6	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0138370971311	0.00156073432148	-0.0122763628096
+UniRef50_G0W8W8		3.2724375537e-05	2.37833821672e-05	-8.9409933698e-06
+UniRef50_H8E1H7	Rhamnan synthesis F	3.62110766339e-06	5.42965374139e-06	1.808546078e-06
+UniRef50_K8BHL7		0.000119502669921	0.000126482326098	6.979656177e-06
+UniRef50_A0LK48	Cytidylate kinase	1.7875011221e-05	1.26760826466e-05	-5.1989285744e-06
+UniRef50_A3PN16	 malyl CoA thioesterase	0.00737608676664	0.0071144095129	-0.00026167725374
+UniRef50_W5XB80		7.88820605388e-06	1.05544241583e-05	2.66621810442e-06
+UniRef50_I7EVV9	Protease DegQ	0.00438899668242	0.00171705793376	-0.00267193874866
+UniRef50_UPI0003C16653	PREDICTED	4.4709067907e-05	2.38428490702e-05	-2.08662188368e-05
+UniRef50_UPI0003748772	hypothetical protein	3.10366119822e-06	7.90650956488e-06	4.80284836666e-06
+UniRef50_N2KX33	Permease family protein	0.0041119048066	0.000501954739708	-0.00360995006689
+UniRef50_UPI000422BE1C	hypothetical protein	6.96464088406e-05	1.2196799528e-05	-5.74496093126e-05
+UniRef50_A3PIC8	GumN family protein	0.00223667336386	0.000474139974964	-0.0017625333889
+UniRef50_UPI000476E7CA	hypothetical protein, partial	3.24332460515e-05	0.000360332619486	0.000327899373434
+UniRef50_Q45388	Protein tex	0.00210180891784	0.00673021747364	0.0046284085558
+UniRef50_A3PKD8	Flagellar basal body associated protein FliL	0.000654599980668	0.000763380190275	0.000108780209607
+UniRef50_UPI0004631839	hypothetical protein	2.03760254449e-05	0.000108845823106	8.84697976611e-05
+UniRef50_P0AEU2	Histidine binding periplasmic protein	0.00328814752836	0.000369916540948	-0.00291823098741
+UniRef50_D2N8C9	Membrane protein, putative	0.00413771502081	0.000438838993689	-0.00369887602712
+UniRef50_W0RB11		2.89708651689e-06	0.000221091908687	0.00021819482217
+UniRef50_A3PRR5		0.00111785653596	0.00020319956779	-0.00091465696817
+UniRef50_A4WV09	Heme NO binding domain protein	0.00428101146838	0.000950314467692	-0.00333069700069
+UniRef50_Q8CN58	Beta lactamase	0.00974171953173	0.00155538470796	-0.00818633482377
+UniRef50_A0LG38	Non canonical purine NTP pyrophosphatase	5.85935234284e-06	3.1034087394e-05	2.51747350512e-05
+UniRef50_E4BAZ7		0.000167275918245	0.00319024270853	0.00302296679028
+UniRef50_M4R8Z6	Allophanate hydrolase subunit 1 and 2	0.000106035390125	0.00944855307062	0.00934251768049
+UniRef50_B2A6S5		5.48627576404e-06	0.000527905288201	0.000522419012437
+UniRef50_A6LQH2	ATP synthase subunit b	0.00176946557275	0.000761289914267	-0.00100817565848
+UniRef50_A0A059IQJ7		1.71804120686e-05	2.2215893237e-05	5.0354811684e-06
+UniRef50_UPI00047A44A8	hypothetical protein	7.61422876536e-06	8.04535933483e-06	4.3113056947e-07
+UniRef50_M1MIH5	Methionine  tRNA ligase MetG	0.000329270528303	0.000716797792498	0.000387527264195
+UniRef50_Q2J3G4	ABC transporter related	0.000164841043168	0.000257918519823	9.3077476655e-05
+UniRef50_D5AR59	Long chain fatty acid  CoA ligase	0.00739043140798	0.00269263623804	-0.00469779516994
+UniRef50_M1MSQ9	Glycosyltransferase	0.000126673150626	0.000613973891223	0.000487300740597
+UniRef50_U5MP56	ATP dependent DNA helicase PcrA	0.000264406580561	0.000761487357835	0.000497080777274
+UniRef50_UPI0000557635	COG1494	0.000231845659421	6.4397287639e-05	-0.000167448371782
+UniRef50_B4U3D2	Glycerol 3 phosphate acyltransferase	0.00710924348572	0.00438501291583	-0.00272423056989
+UniRef50_Q47151	Probable endopeptidase YafL	0.00401376420638	0.00147455324372	-0.00253921096266
+UniRef50_P34918	Glyceraldehyde 3 phosphate dehydrogenase 3	0.0113657976531	0.0032136113748	-0.0081521862783
+UniRef50_A9V0F3	Predicted protein	5.67595553148e-06	3.21047883019e-06	-2.46547670129e-06
+UniRef50_UPI00026C7458	uridylate kinase	1.18602595647e-05	0.00032347256221	0.000311612302645
+UniRef50_UPI000466CCAB	hypothetical protein	7.58130286368e-05	5.42555512351e-06	-7.03874735133e-05
+UniRef50_G4SV55		0.000162787776744	0.00017011488705	7.327110306e-06
+UniRef50_D0CPI8	Membrane bound lytic murein transglycosylase A	0.000124726858763	4.67247053037e-05	-7.80021534593e-05
+UniRef50_Q9HTX6	Glycine cleavage system H protein 2	0.000265212638537	0.0121478660649	0.0118826534264
+UniRef50_UPI0002FE2DAD	hypothetical protein	9.84303334315e-06	0.00141506220113	0.00140521916779
+UniRef50_A5V6A9	1 deoxy D xylulose 5 phosphate synthase	0.00322264409689	0.000728099062133	-0.00249454503476
+UniRef50_P37051	Formyltetrahydrofolate deformylase	0.002969319614	0.00194674785454	-0.00102257175946
+UniRef50_M1MN84	Transcriptional regulator, TetR family	0.00069714595573	0.00448209912357	0.00378495316784
+UniRef50_UPI0003B5D266	RNA polymerase sigma70 factor	5.2779075524e-06	6.56252586194e-06	1.28461830954e-06
+UniRef50_B2UC97		1.49952456488e-05	3.35773187243e-05	1.85820730755e-05
+UniRef50_Q89AM1	Enoyl [acyl carrier protein] reductase [NADH] FabI	7.7142035136e-06	3.89567304826e-05	3.1242526969e-05
+UniRef50_UPI000379D6F2	hypothetical protein	8.01371242936e-06	9.34545198818e-06	1.33173955882e-06
+UniRef50_D6SDD7		0.00314858377232	0.000889353538793	-0.00225923023353
+UniRef50_A6M2T4	Transcriptional regulator, RpiR family	0.000964709876066	0.00189169310385	0.000926983227784
+UniRef50_P0C0G7	Glyceraldehyde 3 phosphate dehydrogenase	0.0312091721497	0.0262510387645	-0.0049581333852
+UniRef50_U5MXQ9	Neutral endopeptidase PepO	0.000184277992011	0.00142288521904	0.00123860722703
+UniRef50_Q1YYL9		8.0179446909e-05	0.000238822870829	0.00015864342392
+UniRef50_UPI0003DE8BE2	PREDICTED	9.03868372557e-06	2.64923870609e-05	1.74537033353e-05
+UniRef50_B2TKY4		0.000298015254361	0.00324529316528	0.00294727791092
+UniRef50_V4KU43		1.52960440491e-05	6.4422989229e-06	-8.8537451262e-06
+UniRef50_Q2S8X6		0.00103273619944	0.000791504684792	-0.000241231514648
+UniRef50_Q9RWK1		0.000331128060398	0.0589119176438	0.0585807895834
+UniRef50_G7U9N4	Sugar kinase	0.000202224636884	0.00371618222463	0.00351395758775
+UniRef50_P0AAF8	Arginine transport ATP binding protein ArtP	0.00112252473688	0.00142918795512	0.00030666321824
+UniRef50_Q5HNW5	Protein GrpE	0.0217446947066	0.0045715881213	-0.0171731065853
+UniRef50_D9RBB0	ABC 2 type transport system permease protein	0.0152254918157	0.00323793116598	-0.0119875606497
+UniRef50_B2IX22	Nucleoside diphosphate kinase	2.96625841749e-05	0.000122981531816	9.33189476411e-05
+UniRef50_P51599	GTP cyclohydrolase 1	1.78342529037e-05	2.65029180842e-05	8.6686651805e-06
+UniRef50_P39211	Xylulose kinase	0.0121707827446	0.00477951394816	-0.00739126879644
+UniRef50_Q8TUT7	Carbamoyl phosphate synthase large chain, C terminal section	2.19675455646e-06	1.18542587344e-05	9.65750417794e-06
+UniRef50_P42455	2 isopropylmalate synthase	0.000233778443676	0.00755147484335	0.00731769639967
+UniRef50_Z5QLE0		0.000195801475224	7.64499399824e-05	-0.000119351535242
+UniRef50_Q7UUJ7	Arginine biosynthesis bifunctional protein ArgJ	7.61013046793e-06	1.56223566404e-05	8.01222617247e-06
+UniRef50_P37640	Putative HTH type transcriptional regulator YhjB	0.00168348343601	0.00112215745199	-0.00056132598402
+UniRef50_Q6N6M8	Putative 3 methyladenine DNA glycosylase	3.46496940633e-05	3.03142830297e-05	-4.3354110336e-06
+UniRef50_Q9HWF5	Protein translocase subunit SecY	0.0153597488857	0.0028233898868	-0.0125363589989
+UniRef50_Q1H4S2	Transcriptional regulator, BolA protein family	3.47820639494e-05	0.000101699846043	6.69177820936e-05
+UniRef50_UPI00047D0941	ribonuclease J	4.41658138232e-05	7.60871799111e-05	3.19213660879e-05
+UniRef50_D6RK40		3.88803457436e-06	5.72259483041e-06	1.83456025605e-06
+UniRef50_UPI00037D2EDA	Fis family transcriptional regulator	2.85690616081e-05	6.85223115284e-05	3.99532499203e-05
+UniRef50_B7H290	Bacterial regulatory helix turn helix protein, AraC family protein	0.000569942571355	0.00432311624254	0.00375317367119
+UniRef50_D9SLQ3		0.000381211316936	0.00432041352107	0.00393920220413
+UniRef50_D1QZF9		0.00199861059831	0.00096825149244	-0.00103035910587
+UniRef50_UPI0003773794	hypothetical protein, partial	7.11328550823e-06	1.0451608283e-05	3.33832277477e-06
+UniRef50_M2SBT2		2.34907269986e-05	2.41590832408e-05	6.683562422e-07
+UniRef50_W4SVI6		1.75669727904e-05	8.50826327346e-06	-9.05870951694e-06
+UniRef50_T0U4L8		0.000164197362179	3.85445307448e-05	-0.000125652831434
+UniRef50_UPI00037CC475	RNaseH ribonuclease	1.21193660833e-05	2.00647528096e-05	7.9453867263e-06
+UniRef50_J0G9L6		0.0237918001072	0.00464661078999	-0.0191451893172
+UniRef50_R5WWI1	Sugar efflux transporter	0.000249865680095	0.000642196130241	0.000392330450146
+UniRef50_Q8CSQ8	Two component sensor histidine kinase	0.00790436750321	0.00218217187302	-0.00572219563019
+UniRef50_UPI00034B82F7	hypothetical protein	1.48941021585e-05	2.05197166506e-05	5.6256144921e-06
+UniRef50_Q3STT6	Ribosomal RNA small subunit methyltransferase H	6.03893489987e-06	9.82304937404e-06	3.78411447417e-06
+UniRef50_UPI00016C4B38	hypothetical protein	4.34435018842e-06	0.00013459701863	0.000130252668442
+UniRef50_M1XJ95		0.00062011904865	0.00245638279711	0.00183626374846
+UniRef50_S1SS99		0.000186469437616	0.000283166868808	9.6697431192e-05
+UniRef50_Q9MB35	Peroxiredoxin Q, chloroplastic 	1.26087283836e-05	0.000289937078423	0.000277328350039
+UniRef50_Q9RU52	Propionyl CoA carboxylase, beta subunit, putative	0.00024566050805	0.0375754021169	0.0373297416088
+UniRef50_A6LSX6	Metal dependent phosphohydrolase	0.000276095179701	0.00110832621713	0.000832231037429
+UniRef50_UPI000380524A	hypothetical protein	9.07208606024e-06	8.46940201252e-05	7.5621934065e-05
+UniRef50_A5UNL2	Adhesin like protein	0.00269941434356	0.000393507004076	-0.00230590733948
+UniRef50_UPI00037DF1FA	hypothetical protein, partial	2.35975321104e-05	3.81466499987e-05	1.45491178883e-05
+UniRef50_P45475		0.00282392780224	0.00049732744901	-0.00232660035323
+UniRef50_A3PQA6	Transcriptional activator, TenA family	0.00362950200244	0.00125414943877	-0.00237535256367
+UniRef50_Q1QVP5	Phosphoribosylformylglycinamidine cyclo ligase	0.000135592317297	0.00020589203825	7.0299720953e-05
+UniRef50_M8BCA5		4.3274159533e-05	5.21507714433e-05	8.8766119103e-06
+UniRef50_UPI0003699F3D	hypothetical protein	0.000254326332754	5.41322522287e-05	-0.000200194080525
+UniRef50_P44990	Putative L ribulose 5 phosphate 3 epimerase SgbU	0.00502164878361	0.0048863558954	-0.00013529288821
+UniRef50_U3NFX9	ABC transporter ATP binding protein	0.0114803453649	0.00348412896761	-0.00799621639729
+UniRef50_UPI00035F71CA	hypothetical protein, partial	0.000120677405022	0.000102916041577	-1.7761363445e-05
+UniRef50_I5C4V6		4.76553083995e-05	3.63396328313e-05	-1.13156755682e-05
+UniRef50_C6DH09	Dipeptide and tripeptide permease A	0.00380633421698	0.00167401192526	-0.00213232229172
+UniRef50_K6WI65		2.42416031627e-05	7.89125253998e-05	5.46709222371e-05
+UniRef50_Q6FWS8	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.44177514164e-05	3.74429258416e-05	1.30251744252e-05
+UniRef50_P39361	Putative sgc region transcriptional regulator	0.00310448986857	0.000730729744925	-0.00237376012364
+UniRef50_UPI00046EB60D	FAD dependent oxidoreductase	3.76532761913e-05	6.45134814142e-06	-3.12019280499e-05
+UniRef50_A2C638	Holliday junction ATP dependent DNA helicase RuvB	1.34899598818e-05	1.5472354052e-05	1.9823941702e-06
+UniRef50_I0C1C0		0.013969418527	0.00321716328876	-0.0107522552382
+UniRef50_UPI00041A4D89	ABC transporter	2.14139228768e-06	7.48307264848e-06	5.3416803608e-06
+UniRef50_C6SPV4		0.00551911855697	0.00113055741727	-0.0043885611397
+UniRef50_A9M100	Inner membrane protein	9.61339530144e-05	0.00404695253804	0.00395081858503
+UniRef50_Q8DXA0	Membrane protein, putative	0.000111352799069	0.000423394934474	0.000312042135405
+UniRef50_I6TR24	Transcriptional regulator	0.00402767363987	0.00140129314112	-0.00262638049875
+UniRef50_X6L6D5		0.000467357646695	5.79202984179e-05	-0.000409437348277
+UniRef50_N6V1G3		0.000271450233574	8.4644289495e-05	-0.000186805944079
+UniRef50_P18005	UPF0380 protein YubP	5.50028846938e-05	1.35426340338e-05	-4.146025066e-05
+UniRef50_P96704		0.00107565091756	0.00120742214588	0.00013177122832
+UniRef50_K7RW82	Inositol monophosphatase family protein	0.00075196865095	0.00537599664904	0.00462402799809
+UniRef50_D5AQI9	RNA polymerase sigma factor RpoD	0.00917695135375	0.00166812086099	-0.00750883049276
+UniRef50_UPI000476E737	16S rRNA methyltransferase	1.77588786757e-05	4.03341764505e-05	2.25752977748e-05
+UniRef50_A4WNN4	Succinate dehydrogenase subunit D	0.00612085748838	0.00047889195437	-0.00564196553401
+UniRef50_P18190	Uptake hydrogenase small subunit	0.00022767267507	5.20272514985e-05	-0.000175645423572
+UniRef50_K2DSW0		4.84310846305e-05	0.000241382637143	0.000192951552513
+UniRef50_G1XZ93		5.43026453118e-05	2.26977700987e-05	-3.16048752131e-05
+UniRef50_Q8S4Y1	Acetyl CoA acetyltransferase, cytosolic 1	6.08264120912e-06	6.04291516233e-06	-3.972604679e-08
+UniRef50_G7LY81	Multi sensor signal transduction histidine kinase	0.000147476250443	0.000941798867973	0.00079432261753
+UniRef50_Q7NF44	Glutathione synthetase	5.16051069709e-06	9.9042308259e-06	4.74372012881e-06
+UniRef50_A0M0D8	30S ribosomal protein S18	0.00354273107629	0.00151237753588	-0.00203035354041
+UniRef50_P11290		0.000565927500567	0.000174916113641	-0.000391011386926
+UniRef50_I6U2C8	Transcriptional regulator	0.00300806379549	0.00512603096127	0.00211796716578
+UniRef50_A6V7V9		0.0013383957765	9.43149365607e-06	-0.00132896428284
+UniRef50_A3M2U1	Chromosome partition protein Smc	0.000141191198509	0.00699114061376	0.00684994941525
+UniRef50_P39762	Aminopeptidase AmpS	0.000120474251758	0.00152043786618	0.00139996361442
+UniRef50_Q6A6Z0		0.000152949049345	0.00491401698154	0.00476106793219
+UniRef50_F5M502		0.00234765907505	0.00115198789165	-0.0011956711834
+UniRef50_UPI000287F837	alpha beta hydrolase	7.78967760848e-05	2.64978040258e-05	-5.1398972059e-05
+UniRef50_F5M500		0.00174749995948	0.000204622019741	-0.00154287793974
+UniRef50_UPI0003AD3586	hypothetical protein	9.80286148051e-06	1.02295035835e-05	4.2664210299e-07
+UniRef50_G7U769	Translocase subunit	0.000243016731023	0.00517288475424	0.00492986802322
+UniRef50_P37387	D xylose binding periplasmic protein	0.00403690109778	0.000200895717825	-0.00383600537996
+UniRef50_W0YQG2	NADH dependent enoyl ACP reductase	3.2073309994e-05	0.000109545252939	7.7471942945e-05
+UniRef50_B8DVQ6	30S ribosomal protein S16	0.00174224302547	0.0012478170642	-0.00049442596127
+UniRef50_UPI0003B54983	heme ABC transporter ATP binding protein	1.0908174305e-05	7.40248864949e-05	6.31167121899e-05
+UniRef50_G8V7W6	Myo inositol catabolism protein	0.000294144926378	0.00814745696907	0.00785331204269
+UniRef50_R8ZC75	Sensor response regulator hybrid	9.53766746351e-05	4.57382609982e-05	-4.96384136369e-05
+UniRef50_UPI000237926B	polar amino acid ABC transporter, inner membrane subunit	6.25109496583e-06	1.12882999088e-05	5.03720494297e-06
+UniRef50_Q9ZMX5	Threonine synthase	8.78555443445e-05	0.0048185830238	0.00473072747946
+UniRef50_E4ZD88	CobW related protein	0.000453238579631	0.00184058102211	0.00138734244248
+UniRef50_Q8DVW8	Ribonuclease M5	0.00614246376994	0.00280927412234	-0.0033331896476
+UniRef50_A0A023RUP9		0.000460348766892	0.00245216220496	0.00199181343807
+UniRef50_A4YJX9	Argininosuccinate synthase	2.28043905765e-05	4.5133528938e-05	2.23291383615e-05
+UniRef50_B8A191		1.39101390792e-05	2.54200530281e-05	1.15099139489e-05
+UniRef50_E3I166	Response regulator receiver protein	0.0128393501946	0.00265977656136	-0.0101795736332
+UniRef50_B2S5M8	Glutamate  tRNA ligase 1	0.00551398269547	0.00180957186633	-0.00370441082914
+UniRef50_P68398	tRNA specific adenosine deaminase	0.000226039514279	0.00363257854014	0.00340653902586
+UniRef50_D4HA24		1.10105365464e-05	0.00390960683218	0.00389859629563
+UniRef50_P22610	Type 4 prepilin like proteins leader peptide processing enzyme	0.000473106579946	0.00024982807633	-0.000223278503616
+UniRef50_UPI00031B36EE	hypothetical protein	4.18543658605e-06	7.72020159125e-06	3.5347650052e-06
+UniRef50_A7IKH6	Chitin deacetylase	0.00705397979079	0.000896868348018	-0.00615711144277
+UniRef50_W1YCR6	DNA polymerase II protein 	1.00134637373e-05	0.000337174067088	0.000327160603351
+UniRef50_R4UR16	Cobalamin synthesis protein P47K	5.19168052679e-06	6.77820634222e-06	1.58652581543e-06
+UniRef50_J3UP44		0.00857094071114	0.00167522890869	-0.00689571180245
+UniRef50_P48925	NADH ubiquinone oxidoreductase chain 6	0.000110682708458	1.44067371866e-05	-9.62759712714e-05
+UniRef50_UPI0004727F6C	major facilitator transporter	1.77570623264e-05	1.15141893517e-05	-6.2428729747e-06
+UniRef50_G7U931	Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.000517764178998	0.00480363774912	0.00428587357012
+UniRef50_Q67QM2	Oligopeptide ABC transporter permease protein	0.000425251298767	0.00113366620795	0.000708414909183
+UniRef50_F9YZR2		0.000398783766156	0.00175693348648	0.00135814972032
+UniRef50_E8ZNH1	Magnesium transporter	0.000360286142419	0.00206637851517	0.00170609237275
+UniRef50_UPI0004707272	peptide ABC transporter substrate binding protein	6.20658054929e-05	4.88667733008e-06	-5.71791281628e-05
+UniRef50_A4VMC4	Isocitrate dehydrogenase kinase phosphatase	0.000720082109218	0.000733333500788	1.325139157e-05
+UniRef50_F9YZR4		0.0003594538252	0.000615243135819	0.000255789310619
+UniRef50_Q81G03	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.61253024194e-05	8.07831529704e-06	-8.04698712236e-06
+UniRef50_UPI000185F617	GTP binding protein lepA, putative	2.12087921474e-05	1.27303855591e-05	-8.4784065883e-06
+UniRef50_UPI00035F1A33	hypothetical protein	1.24949684171e-05	5.31051634378e-06	-7.18445207332e-06
+UniRef50_UPI00038FD59B	Leu Ile Val binding protein homolog 1	5.50769749069e-05	0.000164773576958	0.000109696602051
+UniRef50_Q796Y8	Putative peroxiredoxin YgaF	1.5503080275e-05	0.000423870777005	0.00040836769673
+UniRef50_C0QKP4	Holliday junction ATP dependent DNA helicase RuvB	1.08471768462e-05	9.73932967508e-06	-1.10784717112e-06
+UniRef50_Q1QUS4	Leucyl phenylalanyl tRNA  protein transferase	0.00186638178171	2.3423010334e-05	-0.00184295877138
+UniRef50_Q9FEA2	Glutamate  tRNA ligase, chloroplastic mitochondrial	3.51923865272e-06	5.687859083e-06	2.16862043028e-06
+UniRef50_R0D1R5		1.6114000738e-05	1.57092991778e-05	-4.047015602e-07
+UniRef50_UPI0003C19684		7.94027972473e-05	2.94397424455e-06	-7.64588230027e-05
+UniRef50_UPI00022B367A	PREDICTED	3.97294913556e-05	3.67435541448e-05	-2.9859372108e-06
+UniRef50_A3PJ06		0.000511393577465	0.00101529936426	0.000503905786795
+UniRef50_Q89IA9	Blr5730 protein	0.00147020726376	3.78468844891e-05	-0.00143236037927
+UniRef50_UPI000395A40D	hemin ABC transporter ATP binding protein	9.04485964171e-06	0.0001824528903	0.000173408030658
+UniRef50_UPI0004737F0F	50S ribosomal protein L4, partial	2.69624230048e-05	0.000274116468261	0.000247154045256
+UniRef50_P36645	Protein transport protein HofB homolog	0.00387705485979	0.00089830085079	-0.002978754009
+UniRef50_UPI00036C1E72	hypothetical protein	1.6034634256e-05	3.21817571849e-05	1.61471229289e-05
+UniRef50_Q479B1	D amino acid dehydrogenase small subunit	3.27093417385e-05	2.13242302316e-05	-1.13851115069e-05
+UniRef50_R5BVY8	Adenylylsulfate reductase	0.00050326031403	0.000405983747733	-9.7276566297e-05
+UniRef50_H8XBT8	Recombinase A 	9.04781887215e-05	0.000103567946051	1.30897573295e-05
+UniRef50_A8LGN1	Thioesterase superfamily protein	2.55159319187e-05	7.28315827601e-05	4.73156508414e-05
+UniRef50_Q59643	Delta aminolevulinic acid dehydratase	0.0103385774077	0.00260028995401	-0.00773828745369
+UniRef50_UPI000367F7CA	hypothetical protein	0.00103641467131	0.000805409195995	-0.000231005475315
+UniRef50_Q5HNG0	D alanine aminotransferase	0.01288906538	0.00382529543471	-0.00906376994529
+UniRef50_Q2FZK3	Protein FmtA	0.0172714855141	0.00501362938122	-0.0122578561329
+UniRef50_W0RCE0	CHAT domain protein	6.81742071424e-05	0.000207274046011	0.000139099838869
+UniRef50_C9XLF6	NUDIX family protein	0.00022469404098	0.000847799153669	0.000623105112689
+UniRef50_K2FFD1		4.67746337876e-06	8.8691289884e-06	4.19166560964e-06
+UniRef50_B4SL85	Phosphatidate cytidylyltransferase	0.000120989098994	0.000436802156898	0.000315813057904
+UniRef50_B9DKR8	Mevalonate kinase	0.0235668667175	0.00658274570528	-0.0169841210122
+UniRef50_F0YFQ2	Expressed protein 	0.000356460470221	9.81636267971e-05	-0.000258296843424
+UniRef50_UPI0003AD8CD3	PREDICTED	5.69224233244e-05	3.83696408609e-05	-1.85527824635e-05
+UniRef50_C1KYW0	Peptide chain release factor 1	0.0103663097957	0.00647748035097	-0.00388882944473
+UniRef50_A8EQZ6	Phosphate ABC transporter, periplasmic phosphate binding protein	5.17540087729e-06	8.86415627443e-06	3.68875539714e-06
+UniRef50_UPI0004720687	hypothetical protein	7.73567847482e-05	0.000232758917577	0.000155402132829
+UniRef50_UPI000380DC03	hypothetical protein	8.88661127911e-06	2.17568984116e-05	1.28702871325e-05
+UniRef50_Q989X4	Mlr6247 protein	0.0137836325786	0.00206133706904	-0.0117222955096
+UniRef50_Q9RZ42		0.000407163231412	0.0589261063404	0.058518943109
+UniRef50_UPI0003646AAD	alkaline phosphatase	7.55662202152e-06	1.78873493124e-06	-5.76788709028e-06
+UniRef50_Q9RZ45		0.000112338638698	0.023027951335	0.0229156126963
+UniRef50_Q9RZ47		0.000422007264252	0.0646013149426	0.0641793076783
+UniRef50_Q9RZ48		0.000304850160433	0.105786969309	0.105482119149
+UniRef50_Q6GIG7	Probable nitronate monooxygenase	0.017993146217	0.00150349809539	-0.0164896481216
+UniRef50_D5GYN2	Transcriptional regulator, repressor of sugar transport operon	0.00557419310884	0.0033112742603	-0.00226291884854
+UniRef50_P63946	4 hydroxy tetrahydrodipicolinate synthase	0.000141028389365	0.00659797121806	0.0064569428287
+UniRef50_D4GJL5	UPF0246 protein PANA_0658	3.26698352855e-05	4.33227891144e-05	1.06529538289e-05
+UniRef50_A0A021ZQ34	ThiC associated domain protein	2.42191359894e-05	9.92110420654e-05	7.4991906076e-05
+UniRef50_I6T523		0.00948815322503	0.00351216795452	-0.00597598527051
+UniRef50_UPI00037F2099	hypothetical protein	1.01779810248e-05	2.69185504356e-05	1.67405694108e-05
+UniRef50_UPI0002559CF1	sulfate ABC transporter ATPase	8.22121588816e-05	5.07888145943e-05	-3.14233442873e-05
+UniRef50_UPI0004768E22	hypothetical protein	3.74800787946e-06	0.000109851739266	0.000106103731387
+UniRef50_Q9PQU6	Methionine  tRNA ligase	1.12830008144e-05	1.84705436418e-05	7.1875428274e-06
+UniRef50_B2N0Z3	Anaerobic dimethyl sulfoxide reductase chain A	0.00422868366749	0.00145920469569	-0.0027694789718
+UniRef50_C6DKE8	Altronate oxidoreductase	0.00261399181079	0.000351346461041	-0.00226264534975
+UniRef50_Q8CQJ8	Penicillin binding protein 4	0.00897662413118	0.00385433456954	-0.00512228956164
+UniRef50_Q4A044	Histidinol dehydrogenase	0.0154982370418	0.00280294191569	-0.0126952951261
+UniRef50_Z5YDT5	Replication initiator protein	3.54545398333e-05	5.43716860061e-06	-3.00173712327e-05
+UniRef50_V9FLN1		2.49543689114e-05	0.00101306417375	0.000988109804839
+UniRef50_Q2VP64		1.03828821597e-05	1.49398557018e-05	4.5569735421e-06
+UniRef50_A9M916	Modification methylase BabI	0.00647115852041	0.0024321683294	-0.00403899019101
+UniRef50_D2NA34		0.00962311234154	0.00313183120487	-0.00649128113667
+UniRef50_P06202	Periplasmic oligopeptide binding protein	0.00263512751505	0.000473095131148	-0.0021620323839
+UniRef50_UPI0002F32181	glycerophosphoryl diester phosphodiesterase	5.66175492305e-05	1.99639767635e-05	-3.6653572467e-05
+UniRef50_M9V9X8	6 phosphogluconolactonase	0.000608028606607	0.00640365433242	0.00579562572581
+UniRef50_D5BS61	RNA polymerase, sigma 28 subunit, FliA WhiG	0.00854063031988	0.00339406749657	-0.00514656282331
+UniRef50_UPI0003AD846F	PREDICTED	8.6025359705e-05	5.17228213197e-05	-3.43025383853e-05
+UniRef50_I0C6W8	Staphylococcal accessory regulator	0.0114407131788	0.000810599740996	-0.0106301134378
+UniRef50_A6LWF3	Diguanylate cyclase phosphodiesterase	0.000340403280732	0.000704190322897	0.000363787042165
+UniRef50_UPI00041214C6	biotin attachment protein	3.34093086964e-05	2.91290404665e-05	-4.2802682299e-06
+UniRef50_D3E6A1	Respiratory nitrate reductase, gamma subunit	0.0174236468167	0.00751953314765	-0.00990411366905
+UniRef50_Q21JR5		3.98266638365e-05	4.05159521514e-05	6.892883149e-07
+UniRef50_A0JXX3	D alanine  D alanine ligase	0.000335165084517	0.00511480524772	0.0047796401632
+UniRef50_UPI00035DE730	hypothetical protein	6.36899821103e-06	8.50295718001e-05	7.86605735891e-05
+UniRef50_B7KZS8		3.31451076911e-05	2.13681774328e-05	-1.17769302583e-05
+UniRef50_UPI000382DE8E	MULTISPECIES	1.37744383511e-05	3.05569592427e-05	1.67825208916e-05
+UniRef50_UPI0000E116E2	two component LuxR family transcriptional regulator	1.53708360804e-05	2.47717924667e-05	9.4009563863e-06
+UniRef50_A4WNW4	Transposase, IS4 family	0.00165184404296	0.00124904543779	-0.00040279860517
+UniRef50_A1BF67	Bifunctional protein FolD	8.14143598766e-06	2.45187334144e-06	-5.68956264622e-06
+UniRef50_P0ABZ3	Flagellar motor switch protein FliG	0.00195196439836	0.000460048431843	-0.00149191596652
+UniRef50_N5AMH8	Diacetyl reductase [ acetoin forming]	0.00253194908843	0.00157730838189	-0.00095464070654
+UniRef50_F0YAY5		0.000248619208242	0.000146692105592	-0.00010192710265
+UniRef50_A6KXK3	3 oxoacyl [acyl carrier protein] synthase 3	3.85278219633e-05	0.00448236204553	0.00444383422357
+UniRef50_Q5NQ43	Adenylate kinase	0.000232169034401	0.000401798482461	0.00016962944806
+UniRef50_UPI00036D1E75	NADPH	9.33339050994e-06	8.20403086894e-05	7.27069181795e-05
+UniRef50_I0UU63		1.85710498861e-06	8.04980375673e-06	6.19269876812e-06
+UniRef50_Q5HQ74	Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.0131044623867	0.00404670757669	-0.00905775481001
+UniRef50_D3DYQ8	Isoleucine  tRNA ligase	0.00318713445573	0.000861884565147	-0.00232524989058
+UniRef50_UPI00046F3F36	hypothetical protein, partial	3.71511401727e-05	2.88384731921e-05	-8.3126669806e-06
+UniRef50_Q96528	Catalase 1	1.57921564784e-05	4.43056457471e-05	2.85134892687e-05
+UniRef50_K8DL52	Ribonuclease E	0.00940047039555	0.00110661535764	-0.00829385503791
+UniRef50_P30793	GTP cyclohydrolase 1	6.10870781631e-05	4.01977104534e-05	-2.08893677097e-05
+UniRef50_Q8X7L9	Tyrosine protein kinase wzc	0.00357717346774	0.000856916072981	-0.00272025739476
+UniRef50_UPI00036966F0	30S ribosomal protein S2	1.31022188669e-05	1.06063153197e-05	-2.4959035472e-06
+UniRef50_W1MMZ8		4.09490814421e-05	0.000152031729916	0.000111082648474
+UniRef50_UPI000377C983	phospholipase C	3.42781538902e-06	4.70761518805e-06	1.27979979903e-06
+UniRef50_P32151		0.00390592085378	0.000987483548604	-0.00291843730518
+UniRef50_B4D0M3		6.47122377157e-05	8.55227474138e-06	-5.61599629743e-05
+UniRef50_UPI0003B38626	hypothetical protein	4.94356569047e-06	0.000208644187816	0.000203700622126
+UniRef50_UPI00037E7CCD	hypothetical protein	3.57962790692e-05	1.70328989228e-05	-1.87633801464e-05
+UniRef50_UPI0003B6D2EE	diaminopimelate decarboxylase	4.77516726566e-06	0.000101277774783	9.65026075173e-05
+UniRef50_E3D189	Adhesin MafB2	0.000233016042498	0.00265727457858	0.00242425853608
+UniRef50_UPI0003B777B8	hypothetical protein, partial	0.00118780063651	0.000366858754132	-0.000820941882378
+UniRef50_V6F621		1.806542464e-05	5.71892126128e-05	3.91237879728e-05
+UniRef50_UPI0003F4A07E	hypothetical protein TREMEDRAFT_69682	3.75365990922e-06	6.95035490164e-06	3.19669499242e-06
+UniRef50_UPI0004772D62	hypothetical protein	1.48847945658e-06	1.12413892046e-05	9.75290974802e-06
+UniRef50_P51973	Competence protein ComA	0.000222726908368	0.00396872555079	0.00374599864242
+UniRef50_R8HF68		5.78941968868e-06	0.00053050905124	0.000524719631551
+UniRef50_UPI00034D0998	hypothetical protein	7.2713593817e-06	1.34450908375e-05	6.1737314558e-06
+UniRef50_UPI000470E01F	transposase	1.5289836662e-05	0.00266616597531	0.00265087613865
+UniRef50_R1CYW6		9.61288668513e-06	6.32065426698e-05	5.35936559847e-05
+UniRef50_UPI0004753801	5 hydroxyisourate hydrolase	3.89129792753e-05	4.80584334076e-05	9.1454541323e-06
+UniRef50_Q1QUQ7	Transcriptional regulator, LysR family	0.000216117932552	0.000296304386488	8.0186453936e-05
+UniRef50_UPI0002C376E7		6.25633958252e-05	6.15626849461e-05	-1.0007108791e-06
+UniRef50_UPI00037266A5	MULTISPECIES	9.43123630514e-06	7.26291881117e-06	-2.16831749397e-06
+UniRef50_A5ISN2		7.45947997873e-05	0.000139850305379	6.52555055917e-05
+UniRef50_I4API8	Mg chelatase subunit ChlI	1.35185705489e-05	8.69719154025e-05	7.34533448536e-05
+UniRef50_X6KUI6		8.33995770377e-06	6.16099870099e-05	5.32700293061e-05
+UniRef50_Q849Z0		0.00368411555032	0.000773755559468	-0.00291035999085
+UniRef50_G6A195		4.10657088035e-05	6.18016290057e-05	2.07359202022e-05
+UniRef50_P46331		0.0316653564599	0.00671076062587	-0.024954595834
+UniRef50_B6JCL5		0.000732697442754	0.00606678126014	0.00533408381739
+UniRef50_F0P804		0.0236306598737	0.00176527747472	-0.021865382399
+UniRef50_W1YTI2		0.000170649850073	0.00255650819785	0.00238585834778
+UniRef50_P77279	Probable iron export ATP binding protein FetA	0.00380299104152	0.00168416334469	-0.00211882769683
+UniRef50_A3CKQ0	Malate permease, putative	0.00501887956223	0.00258908036465	-0.00242979919758
+UniRef50_UPI000288D813	hypothetical protein	0.000617162498962	7.29966006614e-05	-0.000544165898301
+UniRef50_Q03LK9	ABC type amino acid transport system, permease component	0.00616350332049	0.00210814387477	-0.00405535944572
+UniRef50_D5ASM5	Type I secretion membrane fusion protein, HlyD family	0.00591531589236	0.00204698684809	-0.00386832904427
+UniRef50_B8ZUE2	GMP synthase [glutamine hydrolyzing]	2.45355627173e-05	4.57355168031e-05	2.11999540858e-05
+UniRef50_A0PZM2	4 hydroxy tetrahydrodipicolinate reductase	0.000354802524375	0.00141187269415	0.00105707016978
+UniRef50_UPI0004207E45	hypothetical protein	2.55505842038e-05	3.44103333913e-05	8.8597491875e-06
+UniRef50_G5JDC1		1.84699267914e-05	6.09773218817e-05	4.25073950903e-05
+UniRef50_H8HKL3	Acyl CoA dehydrogenase FadE23	0.000794684292609	0.000155021892496	-0.000639662400113
+UniRef50_UPI00022CA85D	PREDICTED	6.28874870626e-07	1.61546926491e-05	1.55258177785e-05
+UniRef50_UPI00016C57C9	lysyl tRNA synthetase	4.16065734123e-06	5.25286073023e-06	1.092203389e-06
+UniRef50_P30852	Protein smf	0.00337566204641	0.000936140724188	-0.00243952132222
+UniRef50_UPI0003A4112D	cell division protein FtsZ	8.83313311464e-06	2.68003637158e-05	1.79672306012e-05
+UniRef50_A9WLY4	Cysteine  tRNA ligase	4.58947098707e-06	1.20296299373e-05	7.44015895023e-06
+UniRef50_UPI00037650D9	hypothetical protein	2.33189679708e-05	6.42410066233e-05	4.09220386525e-05
+UniRef50_UPI0003C1696D	PREDICTED	1.13142446051e-05	7.8544689614e-06	-3.4597756437e-06
+UniRef50_Q9RZG7	Transposase related	4.24739620612e-05	0.0427974200824	0.0427549461203
+UniRef50_UPI0004726E09	porin	3.84824649493e-05	1.19311906733e-05	-2.6551274276e-05
+UniRef50_J6J4P6		0.000119667036976	0.000115029588815	-4.637448161e-06
+UniRef50_UPI0004785436	acetolactate synthase	9.32716781195e-06	0.000359678666412	0.0003503514986
+UniRef50_A0A058ZLV2	Tim44 family protein	0.000380360437791	0.000275996920751	-0.00010436351704
+UniRef50_C5QYU7		0.000605275665785	5.86226139851e-05	-0.0005466530518
+UniRef50_M9KGL8	Alpha beta hydrolase family protein	0.00104451415198	0.00031754484429	-0.00072696930769
+UniRef50_L0WM00	NAD+ synthetase	0.000209717802518	0.00604869661018	0.00583897880766
+UniRef50_UPI000314C40B	hypothetical protein	3.05130591452e-05	4.03205846823e-05	9.8075255371e-06
+UniRef50_Q89FG2	Coenzyme PQQ synthesis protein D	0.000642670136543	0.000444167895145	-0.000198502241398
+UniRef50_U6JTT0	Beta tubulin cofactor d, putative	3.2491915743e-05	5.28149452811e-05	2.03230295381e-05
+UniRef50_UPI0003492D90	MULTISPECIES	6.50377774349e-05	0.00404964141828	0.00398460364085
+UniRef50_Q57975	Putative aminopeptidase MJ0555	0.00303179156342	0.00167118666206	-0.00136060490136
+UniRef50_E3GPG2	Phage prohead protease	0.000383234506454	0.000377803887234	-5.43061922e-06
+UniRef50_I6TPD4	MutE	0.00321702208702	0.000237202172853	-0.00297981991417
+UniRef50_UPI00047CC989	magnesium transporter	0.000487292539311	1.75671358437e-05	-0.000469725403467
+UniRef50_UPI0003ACFD18	hypothetical protein	1.03578613843e-05	0.00198407323305	0.00197371537167
+UniRef50_UPI0001FFE023	cation diffusion facilitator family transporter	7.76395698985e-06	4.17724681257e-05	3.40085111358e-05
+UniRef50_V7ABJ2	Branched chain amino acid transport family protein	3.46912113766e-05	4.02368333017e-05	5.5456219251e-06
+UniRef50_W4UL00	Secreted lipoprotein	0.000130802481382	0.000266654366494	0.000135851885112
+UniRef50_Q9ZMN9	Fumarate reductase cytochrome b subunit	0.00014803372112	0.0100900560791	0.00994202235798
+UniRef50_A0A023Z2T1		0.000147795082047	3.95512644243e-05	-0.000108243817623
+UniRef50_P30744	L serine dehydratase 2	0.00710356582203	0.00275965049683	-0.0043439153252
+UniRef50_Q30T29	Phosphoheptose isomerase	8.86768145148e-06	1.22836990791e-05	3.41601762762e-06
+UniRef50_UPI0002492490	L serine ammonia lyase beta subunit, partial	1.41727946985e-05	0.00017206634699	0.000157893552292
+UniRef50_P33650	Ferrous iron transport protein B	0.00484834336017	0.00258321166408	-0.00226513169609
+UniRef50_Q98IW6	Mll2216 protein	0.00546588430334	0.00200304344281	-0.00346284086053
+UniRef50_Q8TYM1	Putative  citramalate synthase CimA	0.00746579313362	0.00129361766876	-0.00617217546486
+UniRef50_G3NJA9		3.40925183228e-06	2.53102228199e-06	-8.7822955029e-07
+UniRef50_UPI0001744894	3 phosphoglycerate dehydrogenase	6.1305383263e-06	5.656835945e-06	-4.737023813e-07
+UniRef50_T4EWY4	DEAD DEAH box helicase family protein	0.000744974825181	0.00187169854179	0.00112672371661
+UniRef50_UPI00035CD489	hypothetical protein	5.82240599793e-05	7.05673848386e-05	1.23433248593e-05
+UniRef50_B1ZP50	4 deoxy L threo 5 hexosulose uronate ketol isomerase	7.13182010803e-06	9.64575321409e-06	2.51393310606e-06
+UniRef50_A7X235	N anthranilate isomerase	0.00981547052031	0.000558078812965	-0.00925739170734
+UniRef50_Q6MMY0	Lipoprotein releasing system ATP binding protein LolD	3.65080841992e-05	3.74812467634e-05	9.731625642e-07
+UniRef50_U5MQT2	Diguanylate cyclase	0.000206743710026	0.00164873069431	0.00144198698428
+UniRef50_A5D504	N acetyl gamma glutamyl phosphate reductase	1.98480593853e-05	2.86938491005e-05	8.8457897152e-06
+UniRef50_UPI00036A45EE	hypothetical protein, partial	1.06528225414e-05	1.30048508318e-05	2.3520282904e-06
+UniRef50_A1VBW6	Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	7.75530083221e-06	6.1755188245e-06	-1.57978200771e-06
+UniRef50_UPI0003A8F6AB	hypothetical protein	7.57235631324e-06	0.000196647594516	0.000189075238203
+UniRef50_K0R3E3		2.41131458509e-05	5.64515405483e-05	3.23383946974e-05
+UniRef50_Q5LQ58	Translation initiation factor IF 3	0.0122617240416	0.00339701217924	-0.00886471186236
+UniRef50_UPI00037C5039	hypothetical protein	2.9457026203e-06	0.000239746868444	0.000236801165824
+UniRef50_A6LSJ0		0.000317869054209	0.000754609631724	0.000436740577515
+UniRef50_Q4MH05		6.26394460399e-06	9.75656280464e-06	3.49261820065e-06
+UniRef50_A3M6B4		0.000240948503526	0.0043275868743	0.00408663837077
+UniRef50_R0FJ43		0.000123938716906	6.99342745911e-05	-5.40044423149e-05
+UniRef50_P57371	DNA topoisomerase 1	1.80109174903e-06	4.83483665009e-06	3.03374490106e-06
+UniRef50_A3M6B3		0.000306558539943	0.00575762125619	0.00545106271625
+UniRef50_A3M6B2		0.000340909339201	0.009609108098	0.0092681987588
+UniRef50_P37469	Replicative DNA helicase	0.0357807243797	0.0153279110926	-0.0204528132871
+UniRef50_O06851	Valine  tRNA ligase	8.23660122089e-06	4.17019627095e-06	-4.06640494994e-06
+UniRef50_UPI00036C4ADF	hypothetical protein	2.73986679984e-06	1.34524004575e-05	1.07125336577e-05
+UniRef50_G7DHM9		3.06513214593e-05	8.03486007643e-05	4.9697279305e-05
+UniRef50_UPI0003B33000	ABC transporter ATP binding protein, partial	0.000182507419585	3.38468337329e-05	-0.000148660585852
+UniRef50_UPI0002198415	LysR family transcriptional regulator	0.000175734877293	9.31124003574e-05	-8.26224769356e-05
+UniRef50_F2DNI7	Predicted protein	2.45002123398e-05	4.0497043141e-05	1.59968308012e-05
+UniRef50_J4Q6B5	IS1167, transposase domain protein	0.000123310242767	0.00045254477494	0.000329234532173
+UniRef50_P67641	UPF0735 ACT domain containing protein SA1469	0.0115389244963	0.00164478861935	-0.00989413587695
+UniRef50_A6LZA0		0.00101532567238	0.000943374700462	-7.1950971918e-05
+UniRef50_Q6F925		0.000364136273772	0.00777325857487	0.0074091223011
+UniRef50_Q1RJH2	ATP dependent Clp protease proteolytic subunit	0.000854434721756	0.00108135758837	0.000226922866614
+UniRef50_G7LZU7	GerA spore germination protein	0.000191503915899	0.00141084126532	0.00121933734942
+UniRef50_A5UP49		0.00240771727614	0.000352968173539	-0.0020547491026
+UniRef50_A3PFM0		0.00217100033568	0.000870005657286	-0.00130099467839
+UniRef50_Q1RB71		0.000667297812554	0.000494944198654	-0.0001723536139
+UniRef50_Q4L5M1	Antibacterial protein 3 homolog	0.0447548604793	0.0055611587342	-0.0391937017451
+UniRef50_U9FRQ4		0.000177353468843	0.000568300433186	0.000390946964343
+UniRef50_P37017		0.00433974174284	0.00046506567747	-0.00387467606537
+UniRef50_UPI0003B51420	ABC transporter ATP binding protein	4.11567404632e-05	9.38442180989e-05	5.26874776357e-05
+UniRef50_UPI000378DF42	hypothetical protein	2.39148461759e-05	0.000152830941635	0.000128916095459
+UniRef50_T1XUW5		0.00829449092945	0.000646094215422	-0.00764839671403
+UniRef50_P13039	Enterochelin esterase	0.00237586305733	0.000589362993517	-0.00178650006381
+UniRef50_K0CJ28	Quinohemoprotein alcohol dehydrogenase protein	3.93425988461e-05	2.31084507864e-05	-1.62341480597e-05
+UniRef50_UPI0003611858	hypothetical protein	1.38014475868e-05	2.1490762647e-05	7.6893150602e-06
+UniRef50_UPI00047763D0	metal ABC transporter permease	1.22558446742e-05	5.9920730456e-05	4.76648857818e-05
+UniRef50_D1GS39	MarR family regulatory protein	0.0135348964404	0.00172631129432	-0.0118085851461
+UniRef50_UPI0003594BA5	PREDICTED	3.764625998e-06	0.000177190023117	0.000173425397119
+UniRef50_Q8E035		0.00147511760958	1.25154072652e-05	-0.00146260220231
+UniRef50_UPI0003F5F292	hypothetical protein	9.95347504138e-05	3.77728152675e-05	-6.17619351463e-05
+UniRef50_R9ZBZ3		0.00257203727339	0.000392882534625	-0.00217915473877
+UniRef50_R5RCP3		7.80426296949e-06	0.00245722545362	0.00244942119065
+UniRef50_UPI00037F2711	hypothetical protein, partial	0.000172327325745	9.69205256492e-05	-7.54068000958e-05
+UniRef50_E5ASL7	Folylpolyglutamate synthase    Dihydrofolate synthase (EC 6.3.2.12)	0.000140503469798	0.00222540170714	0.00208489823734
+UniRef50_B9EUD8		4.60777015226e-05	6.01668163898e-05	1.40891148672e-05
+UniRef50_Q3J1Y6	Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.0046125438215	0.00085041605354	-0.00376212776796
+UniRef50_Q92405	Catalase B	1.7444891636e-05	3.26536838345e-05	1.52087921985e-05
+UniRef50_UPI00017448C8	DEAD DEAH box helicase like protein	2.51440941243e-06	4.45530808413e-05	4.20386714289e-05
+UniRef50_U7DNX2	TonB denpendent receptor	0.00080300629774	0.00139593103838	0.00059292474064
+UniRef50_A5ULE5	Predicted transcriptional regulator	0.00298974039677	0.000932671573616	-0.00205706882315
+UniRef50_UPI00036B87E5	hypothetical protein	2.48173530599e-05	5.69929680531e-06	-1.91180562546e-05
+UniRef50_S1T170		0.000707786229098	0.00105470251856	0.000346916289462
+UniRef50_Q5H1A4	Transposase	2.96078588798e-05	3.162297817e-05	2.0151192902e-06
+UniRef50_F0Y5C9	Expressed protein 	3.78430977197e-05	6.47928182961e-06	-3.13638158901e-05
+UniRef50_U3TBQ8		0.000501222343795	0.00604316250271	0.00554194015891
+UniRef50_Q2FEJ8	HTH type transcriptional regulator SarR	0.00379722229942	0.000518099482802	-0.00327912281662
+UniRef50_I7FYE4	Ethanolamine permease	0.00146219713943	0.00718500312068	0.00572280598125
+UniRef50_UPI0002628848	short chain dehydrogenase	3.39459896091e-05	3.27535609423e-05	-1.1924286668e-06
+UniRef50_P39369		0.00214852658782	0.000192388733031	-0.00195613785479
+UniRef50_Q8AA15	Phosphomethylpyrimidine synthase	3.21008279185e-06	0.00355795151387	0.00355474143108
+UniRef50_UPI0003B3A510	MULTISPECIES	2.84976823295e-06	4.23871893089e-06	1.38895069794e-06
+UniRef50_UPI00029B3B69	guanosine 3,5 bis 3 pyrophosphohydrolase	8.4290072563e-06	1.0529428068e-05	2.1004208117e-06
+UniRef50_Q5HQL5	Na H(+) antiporter subunit F1	0.000892475465054	0.000619545535373	-0.000272929929681
+UniRef50_P27127	Lipopolysaccharide 1,6 galactosyltransferase	0.00272732606936	0.00135527202931	-0.00137205404005
+UniRef50_UPI000465DD48	hypothetical protein	5.81972756272e-05	3.25791709824e-05	-2.56181046448e-05
+UniRef50_Q880Z2	Xylose import ATP binding protein XylG	0.00265430499479	0.00135704457577	-0.00129726041902
+UniRef50_I2AGX0		3.71566219601e-07	2.94793120608e-05	2.91077458412e-05
+UniRef50_R6VPX6	Lipoprotein	6.15535587085e-06	8.91776410593e-06	2.76240823508e-06
+UniRef50_P23145	Probable serine acetyltransferase	1.05163317766e-05	2.91954482395e-05	1.86791164629e-05
+UniRef50_V0UHK4		0.000468558664494	0.000314243077726	-0.000154315586768
+UniRef50_Q6W109	Tartrate dehydrogenase	0.00170101345321	0.000354720933048	-0.00134629252016
+UniRef50_D6AP01		0.000154888062119	0.00226360138587	0.00210871332375
+UniRef50_UPI00037CB222	hypothetical protein	1.90285388738e-05	6.20098372411e-06	-1.28275551497e-05
+UniRef50_G8VN68	Glycosyl hydrolase, alpha L fucosidase	0.000117353157162	0.00673428716931	0.00661693401215
+UniRef50_B9KTR8	Methyl accepting chemotaxis sensory transducer	0.00217916152551	0.00114027634466	-0.00103888518085
+UniRef50_V5PNN3	Hydrogenase expression protein HypA	0.000241094453622	0.000113858597291	-0.000127235856331
+UniRef50_UPI000382E44E	hypothetical protein	0.000120266319339	6.11381107711e-05	-5.91282085679e-05
+UniRef50_UPI0002E512FA	hypothetical protein	4.3628165463e-06	2.41442461632e-05	1.97814296169e-05
+UniRef50_R5MTV1		0.000127908898271	4.15301014282e-05	-8.63787968428e-05
+UniRef50_K7SJY0	CoA substrate specific enzyme activase	0.00016310900447	0.00729524248233	0.00713213347786
+UniRef50_R0FCW6	Replication initiation protein RepC 	0.00010345292094	9.16161395486e-05	-1.18367813914e-05
+UniRef50_Q8DGX5	Phosphoribosylformylglycinamidine synthase 1	0.00056316983505	0.00344103592028	0.00287786608523
+UniRef50_R9ZNN5	Potassium transporter	0.000620973006857	0.000541392002198	-7.9581004659e-05
+UniRef50_UPI0003826E10	hypothetical protein	5.07272350452e-05	3.11447431836e-05	-1.95824918616e-05
+UniRef50_G7UAA4	Arginine ornithine antiporter ArcD	0.000281143086592	0.00584692481287	0.00556578172628
+UniRef50_H6CP54		2.5234562726e-05	0.000219001613913	0.000193767051187
+UniRef50_V9WDP4	MmoB DmpM family	0.0269938026983	0.00193650298488	-0.0250572997134
+UniRef50_M1N619		0.000310929842145	0.000677602912104	0.000366673069959
+UniRef50_U3T2N9		0.00025679318969	0.0100075998265	0.00975080663681
+UniRef50_B9DTE1	Major Facilitator Superfamily protein	0.00284323173286	0.00223738178969	-0.00060584994317
+UniRef50_UPI0002F7BEAC	hypothetical protein	4.06232226189e-05	3.25400368825e-05	-8.0831857364e-06
+UniRef50_W5X9K0	Cell division protein FtsZ	6.12669530755e-06	4.9238376607e-05	4.31116812994e-05
+UniRef50_UPI0003A0AA3D	hypothetical protein	3.8664232652e-05	5.25722333465e-05	1.39080006945e-05
+UniRef50_A0A059IQN5	Membrane protein	0.000400915743948	9.56182631268e-05	-0.000305297480821
+UniRef50_UPI00046FD731	hypothetical protein	4.08283930411e-05	4.06886571585e-05	-1.397358826e-07
+UniRef50_U6GJB3	JmjC domain containing protein, putative	7.46977592644e-06	6.31130753047e-06	-1.15846839597e-06
+UniRef50_A1S9I7	NAD transhydrogenase subunit beta	0.000937149678997	0.000255053168034	-0.000682096510963
+UniRef50_UPI00039D9A64	membrane protein	6.63058500514e-06	6.23931291176e-05	5.57625441125e-05
+UniRef50_P38035	Transcriptional regulatory protein RtcR	0.00335469576323	0.0021477832089	-0.00120691255433
+UniRef50_D3E234		0.00380484586612	0.000412143602128	-0.00339270226399
+UniRef50_E8SEX9	Staphylococcal secretory antigen SssA	0.0408122742115	0.00230393477294	-0.0385083394386
+UniRef50_M9Y2Q0	TonB dependent vitamin B12 receptor	0.000603120245989	0.000615595322767	1.2475076778e-05
+UniRef50_UPI00047539FF	orotate phosphoribosyltransferase	1.45468308428e-05	6.61549051494e-05	5.16080743066e-05
+UniRef50_P77315	Probable ABC transporter permease protein YphD	0.00617959944311	0.000466412197916	-0.00571318724519
+UniRef50_G7M256	Sporulation protein YtaF	0.00118542081731	0.000824171855499	-0.000361248961811
+UniRef50_UPI00046F04B8	hypothetical protein	2.28849750511e-05	2.86256406163e-05	5.7406655652e-06
+UniRef50_T2ES40		0.0025124520616	0.00244436066334	-6.809139826e-05
+UniRef50_P39587	Putative ribosomal RNA large subunit methyltransferase YwbD	0.00068702086705	0.00159597290482	0.00090895203777
+UniRef50_A0K5P1	Transcriptional regulator, AsnC family	0.000385189784541	0.00590865577611	0.00552346599157
+UniRef50_N1ZJ21		0.000185625772682	2.89417166979e-05	-0.000156684055984
+UniRef50_UPI00046FF2AA	succinate dehydrogenase	4.89300748618e-05	0.000246128671611	0.000197198596749
+UniRef50_Q2W2A3	Holliday junction ATP dependent DNA helicase RuvA	1.37218555191e-05	9.18956109002e-05	7.81737553811e-05
+UniRef50_N6V8V2		0.000244293122551	5.67115135731e-06	-0.000238621971194
+UniRef50_A3N3J7		0.00604427909286	0.00109306460701	-0.00495121448585
+UniRef50_Q887Q2	Alginate production protein AlgE	0.000879124192724	0.000654847976765	-0.000224276215959
+UniRef50_UPI000470382C	response regulator receiver protein	6.37036480469e-06	1.03172366365e-05	3.94687183181e-06
+UniRef50_P38102		0.000923453859705	0.000546882787401	-0.000376571072304
+UniRef50_Q9V1I6	N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase	1.15087897063e-05	0.0001878060782	0.000176297288494
+UniRef50_Q8U194	Sulfide dehydrogenase subunit beta	0.000385189784541	0.00290510485719	0.00251991507265
+UniRef50_A6LU85		0.000159276788545	0.000997249908705	0.00083797312016
+UniRef50_UPI00046CF004	hypothetical protein	0.000239272284566	0.000422767932055	0.000183495647489
+UniRef50_Q9HYB8	Electron transport complex subunit C	0.000171454993011	0.000181037355936	9.582362925e-06
+UniRef50_Q0BUN4	50S ribosomal protein L18	0.0247471780619	0.0334628826732	0.0087157046113
+UniRef50_UPI00037ECE30	hypothetical protein	4.49136837305e-06	2.33473111236e-05	1.88559427505e-05
+UniRef50_F3P4A4	Periplasmic binding protein	1.73250918181e-05	0.000172117081508	0.00015479198969
+UniRef50_UPI0003B4D558	prephenate dehydrogenase	6.12548668045e-06	0.000160025556704	0.000153900070024
+UniRef50_UPI0003B57E0D	flagellar biosynthesis protein FlhB	0.00148152817125	0.000149109227168	-0.00133241894408
+UniRef50_Q51785	Acyl homoserine lactone synthase	7.89655009476e-06	1.24788372467e-05	4.58228715194e-06
+UniRef50_UPI00041DC25F	hypothetical protein	0.000232053498718	1.05508851951e-05	-0.000221502613523
+UniRef50_U6I036	GTP cyclohydrolase I	4.48072804713e-06	2.53531234127e-05	2.08723953656e-05
+UniRef50_A0A017HMU3		0.000247598948413	3.3257838468e-05	-0.000214341109945
+UniRef50_E8TGI4		0.000221131563735	8.42079373926e-05	-0.000136923626342
+UniRef50_P60776	Lipoate protein ligase A	0.00169835670208	0.00135518716045	-0.00034316954163
+UniRef50_F5LYA2	Glycosyltransferase	0.00304725544523	0.000374237548822	-0.00267301789641
+UniRef50_A0RAL4	Serine protein kinase RsbW	5.95003560074e-05	0.000784026650967	0.00072452629496
+UniRef50_K7S7B4	Phosphoribosylformylglycinamidine synthase 2	5.0309105574e-05	0.00531814190361	0.00526783279804
+UniRef50_UPI0004767068	PTS lactose transporter subunit IIC	1.60778100086e-05	2.96049888157e-05	1.35271788071e-05
+UniRef50_D5VBA0	Ribosomal RNA small subunit methyltransferase E	0.000364134394391	0.00720391378882	0.00683977939443
+UniRef50_E8U946	Methylenetetrahydrofolate reductase	0.000163413847988	0.0365775115942	0.0364140977462
+UniRef50_UPI00046A6655	hypothetical protein	0.000138059236055	1.24872035394e-05	-0.000125572032516
+UniRef50_F0KGP8	LysR family transcriptional regulatory protein	0.000204784442414	0.00498413998453	0.00477935554212
+UniRef50_UPI0003B71411	ACP S malonyltransferase	6.92181816722e-06	5.1773911405e-05	4.48520932378e-05
+UniRef50_A5UJE7	Purine NTPase involved in DNA repair, Rad50	0.00263412409884	0.000198128296286	-0.00243599580255
+UniRef50_Q9RWR2	Acetyltransferase, putative	0.000200790419604	0.0342045220262	0.0340037316066
+UniRef50_C9XDD0	Inner membrane protein	9.86698803626e-05	0.000231198450901	0.000132528570538
+UniRef50_W7D2J3		2.35661539424e-05	1.98257365628e-05	-3.7404173796e-06
+UniRef50_I6WPK4		6.89775913169e-06	4.20201076087e-05	3.5122348477e-05
+UniRef50_U4V0C7		0.00138119634243	0.000173630741616	-0.00120756560081
+UniRef50_P65931	Uridylate kinase	0.000334343474711	0.00350478851296	0.00317044503825
+UniRef50_UPI00036A819E	hypothetical protein	5.65976369844e-05	2.09121798119e-05	-3.56854571725e-05
+UniRef50_UPI000362D7F9	hypothetical protein	3.06172837477e-05	5.37536964289e-05	2.31364126812e-05
+UniRef50_A8LNR0	Sulphur oxidation protein SoxZ	0.00390237519106	0.000354380046235	-0.00354799514483
+UniRef50_UPI00046EDA6C	transcriptional regulator, partial	0.000114707433721	5.87684088776e-05	-5.59390248434e-05
+UniRef50_V5SCF0	Membrane protein	8.34476107634e-05	2.6013900004e-05	-5.74337107594e-05
+UniRef50_A3M2C8	DNA mismatch repair enzyme	0.000183875238476	0.00800986208095	0.00782598684247
+UniRef50_F4FMG8	Sulfite reductase flavoprotein alpha component	0.0105496624651	0.00218041066354	-0.00836925180156
+UniRef50_UPI00046D0275	hypothetical protein	0.00100020642563	5.16566032464e-05	-0.000948549822384
+UniRef50_A6LRC8	Transposase IS116 IS110 IS902 family protein	0.000549226401503	0.00298314804689	0.00243392164539
+UniRef50_UPI000462DF28	MFS transporter	2.80833750738e-06	4.10054593824e-06	1.29220843086e-06
+UniRef50_UPI000470E3CB	hypothetical protein	1.33367713526e-05	0.000387527993931	0.000374191222578
+UniRef50_UPI0004725AED	hypothetical protein	7.57633848617e-05	1.43512803772e-05	-6.14121044845e-05
+UniRef50_O27587		0.00314919061744	0.000211949788416	-0.00293724082902
+UniRef50_UPI0003482043	hypothetical protein	5.46699181681e-06	7.87409872776e-06	2.40710691095e-06
+UniRef50_A7X3Z2	Monofunctional glycosyltransferase	0.0228572298249	0.00227744200029	-0.0205797878246
+UniRef50_UPI0003752A98	hypothetical protein	4.67634041306e-05	8.31317115757e-06	-3.8450232973e-05
+UniRef50_A3N1B7	Beta hexosaminidase	0.00438465495445	0.00116152897987	-0.00322312597458
+UniRef50_UPI000255F2C8	serine threonine protein phosphatase	6.60008505831e-06	1.03548995631e-05	3.75481450479e-06
+UniRef50_J0JV07		0.00079192864794	0.00128026355953	0.00048833491159
+UniRef50_Q6A5V6	Calcineurin like phosphoesterase	0.000124857548682	0.00476534631565	0.00464048876697
+UniRef50_Q9F9J0	Hypothetical CdoFa	1.76551519923e-05	9.62905337337e-06	-8.02609861893e-06
+UniRef50_E6WRK7	Inner membrane translocator	0.000589003532625	0.00280448592793	0.00221548239531
+UniRef50_Q19842	Propionyl CoA carboxylase alpha chain, mitochondrial	8.15356107921e-06	3.56917699729e-06	-4.58438408192e-06
+UniRef50_P77460		0.00212527261898	0.000564580020288	-0.00156069259869
+UniRef50_A0A023S045	Metallophosphatase	0.000146312398781	0.00537499734598	0.0052286849472
+UniRef50_D3QDA3	Peptidase, M16 family	0.015992610221	0.00437260005116	-0.0116200101698
+UniRef50_F9JXI9	Conserved domain protein	0.000153034860351	0.000132619833392	-2.0415026959e-05
+UniRef50_U6KFK3	Nuclease, putative	2.82437032181e-05	8.27191359472e-06	-1.99717896234e-05
+UniRef50_G9E8D1	Protein fecR	5.44109810878e-06	9.39606500707e-06	3.95496689829e-06
+UniRef50_UPI0002629810	hypothetical protein	0.0011779168355	0.00011827770915	-0.00105963912635
+UniRef50_N0B0K5	ATP dependent RNA helicase	2.87284742054e-06	0.000920987257213	0.000918114409792
+UniRef50_Q8CSL7	Signal transduction histidine protein kinase ArlS	0.0160604993807	0.00233487249357	-0.0137256268871
+UniRef50_Q3IV94		0.0370096748735	0.00147525559777	-0.0355344192757
+UniRef50_Q3IV95		0.0112488780811	0.00082750872119	-0.0104213693599
+UniRef50_Q3IV96		0.00988995503002	0.00448860384084	-0.00540135118918
+UniRef50_Q3IUU5		0.0194068654384	0.00551817604994	-0.0138886893885
+UniRef50_Q3IV90		0.0139038845912	0.00310057298992	-0.0108033116013
+UniRef50_Q3IV91		0.0155931747404	0.00147055964764	-0.0141226150928
+UniRef50_Q3IV92		0.0161697855904	0.00556637989482	-0.0106034056956
+UniRef50_UPI000360ED21	hypothetical protein	1.03979873937e-05	0.000235370940222	0.000224972952828
+UniRef50_J9NYT9		2.01122576501e-05	2.98616720242e-05	9.7494143741e-06
+UniRef50_M9RZ09		0.00117094380385	0.000565073685071	-0.000605870118779
+UniRef50_A7HTG1		1.67622854285e-05	8.23756394436e-06	-8.52472148414e-06
+UniRef50_Q3JGL0		0.000159726088367	0.000177244726568	1.7518638201e-05
+UniRef50_UPI00046F01F9	mannose 1 phosphate guanylyltransferase, partial	1.21575643888e-05	3.80569748721e-06	-8.35186690159e-06
+UniRef50_W5YSI9		7.17075152151e-05	6.00101630625e-05	-1.16973521526e-05
+UniRef50_Q3IUU4		0.0308839586523	0.00552509204126	-0.025358866611
+UniRef50_I0EQF7		0.000209326796037	0.00242766685714	0.0022183400611
+UniRef50_UPI00047690D0	LuxR family transcriptional regulator	4.18502968937e-05	1.20592782225e-05	-2.97910186712e-05
+UniRef50_UPI0003B652E5	surfeit locus 1 family protein	1.37548737128e-05	2.31637537949e-05	9.4088800821e-06
+UniRef50_Q9KKL3	Chemotaxis protein methyltransferase 3	3.75800678458e-05	2.4541978566e-05	-1.30380892798e-05
+UniRef50_D3QHI5		0.0104129599782	0.000738468952486	-0.00967449102571
+UniRef50_S1T9V9	Thiamine monophosphate kinase	0.000118706285809	0.00377699243766	0.00365828615185
+UniRef50_P40320-2	Isoform 1 of S adenosylmethionine synthase	0.000118467254157	0.000695544544856	0.000577077290699
+UniRef50_Q28VX1	Sigma 54 modulation protein   SSU ribosomal protein S30P	0.0214224240428	0.00216892028786	-0.0192535037549
+UniRef50_D3QHI9		0.000836690289677	0.000301856938874	-0.000534833350803
+UniRef50_P0A207	Ethanolamine utilization protein EutJ	0.00408048864205	0.000460695907647	-0.0036197927344
+UniRef50_Q1GW94		0.000124306770898	2.95427824485e-05	-9.47639884495e-05
+UniRef50_Q5ZY26	Phosphopantetheine adenylyltransferase	0.00152142799879	2.6391295971e-05	-0.00149503670282
+UniRef50_F0Y7E7	Expressed protein 	6.70507188771e-05	0.000107408979818	4.03582609409e-05
+UniRef50_Q0VKW4	Ribosomal RNA small subunit methyltransferase G	4.88214887221e-05	5.19645839234e-05	3.1430952013e-06
+UniRef50_Q89B37	DNA gyrase subunit B	9.20540963452e-06	9.44319409802e-06	2.377844635e-07
+UniRef50_P50487	Putative purine permease CPE0397	0.000326315189428	0.000288318177648	-3.799701178e-05
+UniRef50_J4UL42		2.82391045668e-05	9.43244768258e-06	-1.88066568842e-05
+UniRef50_M1NX79		0.000315920730615	5.95899378392e-05	-0.000256330792776
+UniRef50_G0DX90	Phosphatidylglycerophosphate synthase	0.000826611654421	0.00675323241645	0.00592662076203
+UniRef50_Q2LR47	UDP N acetylmuramate  L alanine ligase	1.43271045874e-05	1.1739787512e-05	-2.5873170754e-06
+UniRef50_A3VYM7		0.000349405195303	5.41937599002e-05	-0.000295211435403
+UniRef50_Q02MT4		0.000486033462046	0.000220534945056	-0.00026549851699
+UniRef50_Q5FIJ4	Elongation factor P 1	0.00443493513201	0.00772919344222	0.00329425831021
+UniRef50_E8N7U3	Predicted Fe S cluster redox enzyme	5.35147200718e-05	0.00407351189508	0.00401999717501
+UniRef50_D5AV34	Nonfunctional major facilitator superfamily MFS_1	0.00235969418882	0.000171695758841	-0.00218799842998
+UniRef50_Q5LYI8	Tryptophan synthase alpha chain	0.00582126078289	0.00327378881762	-0.00254747196527
+UniRef50_Q9RX01		0.00277034584862	0.0105613099768	0.00779096412818
+UniRef50_UPI00047A3CEB	hypothetical protein	1.21903402477e-05	8.17833940707e-05	6.9593053823e-05
+UniRef50_Q65PC9	Serine acetyltransferase	1.40131692896e-05	0.00032679217514	0.00031277900585
+UniRef50_UPI0004794B50	hypothetical protein	1.11601934714e-05	4.28297592572e-05	3.16695657858e-05
+UniRef50_Q9K7H6	Probable adenylyl sulfate kinase	9.6030805051e-06	1.95447941974e-05	9.9417136923e-06
+UniRef50_C0MBU0	50S ribosomal protein L11	0.000857922701941	0.00595638778275	0.00509846508081
+UniRef50_UPI000410106E	beta methylgalactoside transporter permease	1.16327288619e-05	8.6837129716e-06	-2.9490158903e-06
+UniRef50_Q8R966	Triosephosphate isomerase	1.89462706947e-05	9.97992648351e-05	8.08529941404e-05
+UniRef50_Q1MYB0		5.44821279861e-06	4.98484350879e-05	4.44002222893e-05
+UniRef50_R5H1H3	Zinc finger protein	0.000524286095625	0.000666127906449	0.000141841810824
+UniRef50_UPI0003AD21EA	hypothetical protein	1.01122332671e-05	0.000164600439767	0.0001544882065
+UniRef50_B9ADZ7		0.00090223612652	0.000492194508663	-0.000410041617857
+UniRef50_P38684	TorCAD operon transcriptional regulatory protein TorR	0.00120003583557	0.00141739270752	0.00021735687195
+UniRef50_R1CDN5		2.22440303416e-05	1.9711579268e-05	-2.5324510736e-06
+UniRef50_UPI00046252B9	adenine deaminase	3.34732567859e-06	0.000103718286434	0.000100370960755
+UniRef50_O27089	Type 2 DNA topoisomerase 6 subunit A	0.00338062962478	0.00103595268279	-0.00234467694199
+UniRef50_UPI000158407C	hypothetical protein BC1G_05447	4.54645339686e-05	0.000308033504502	0.000262568970533
+UniRef50_P37349	PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM	0.00610937255773	0.000823597770438	-0.00528577478729
+UniRef50_O59521	Elongation factor 2	0.00380774845533	0.000441194419507	-0.00336655403582
+UniRef50_Q160Y9	Zinc import ATP binding protein ZnuC	2.39226109871e-05	1.82719073179e-05	-5.6507036692e-06
+UniRef50_UPI00031F41C2	hypothetical protein	5.85024012966e-05	5.49454977517e-05	-3.5569035449e-06
+UniRef50_U5VFI8	Transcriptional regulator	0.000204784442414	0.000711606518538	0.000506822076124
+UniRef50_Q5M018	DNA topoisomerase 1	0.00583597841961	0.000814635789979	-0.00502134262963
+UniRef50_Q3JX48		4.5673472067e-05	6.59598869572e-05	2.02864148902e-05
+UniRef50_G1Y3U3		3.47448062748e-05	0.00028719071257	0.000252445906295
+UniRef50_Q5PCT4	Thymidine kinase	0.000368279013511	0.00117595015342	0.000807671139909
+UniRef50_UPI0004776C9C	uracil phosphoribosyltransferase	8.36139504249e-06	4.90377573497e-05	4.06763623072e-05
+UniRef50_B9KZP8	N acetyl gamma glutamyl phosphate reductase	1.23105259846e-05	0.000216698024188	0.000204387498203
+UniRef50_G7M047	Enoyl CoA hydratase isomerase	0.000336646207595	0.00147346465931	0.00113681845171
+UniRef50_UPI00047BE467	phosphoenolpyruvate protein phosphotransferase	3.25697516968e-06	0.000241243356713	0.000237986381543
+UniRef50_UPI000378D9A5	hypothetical protein	1.59020496785e-05	1.48042835398e-05	-1.0977661387e-06
+UniRef50_UPI00047C7B9C	hypothetical protein, partial	6.19533661195e-05	5.75437463715e-05	-4.409619748e-06
+UniRef50_UPI0003C10252		0.000547867017453	5.28871142104e-05	-0.000494979903243
+UniRef50_UPI00004C2470	COG1166	0.000913703626762	0.00122293767187	0.000309234045108
+UniRef50_P05379	Anthranilate synthase component 2	0.00613607730587	0.00467789779397	-0.0014581795119
+UniRef50_UPI000466FBB9	hypothetical protein	1.0852272488e-05	1.62343196838e-05	5.3820471958e-06
+UniRef50_E3BCS0		1.1611637274e-05	0.00150482605996	0.00149321442269
+UniRef50_L7WT69		0.00847469413296	0.000795241800863	-0.0076794523321
+UniRef50_P54425		0.0254816648885	0.00533616798942	-0.0201454968991
+UniRef50_F8DJ95	Tat pathway signal sequence domain protein	0.00580651755474	0.00422750901743	-0.00157900853731
+UniRef50_T0ZN95		0.000121697516795	0.00163501593642	0.00151331841962
+UniRef50_P32677		0.00212299715208	0.00149671743737	-0.00062627971471
+UniRef50_Q83JV1	IS911 ORF2	1.4971715539e-05	3.8106622808e-05	2.3134907269e-05
+UniRef50_Q042B4	Putative RNA  2 O) methyltransferase	0.00171031409699	0.0108062290325	0.00909591493551
+UniRef50_A6LWX2	RNA polymerase, sigma 24 subunit, ECF subfamily	0.00736451688131	0.000557201330567	-0.00680731555074
+UniRef50_A6W862	D isomer specific 2 hydroxyacid dehydrogenase NAD binding	0.000237334656096	0.00670101555851	0.00646368090241
+UniRef50_P28638	DNA adenine methyltransferase YhdJ	0.003460968852	0.00185136280437	-0.00160960604763
+UniRef50_D9PXD9	Predicted biotin biosynthesis protein	0.000686338161548	0.000848054408814	0.000161716247266
+UniRef50_A4YZY5	Pyrroloquinoline quinone synthase	0.00621692927988	0.0034882699116	-0.00272865936828
+UniRef50_B2VCR3	Iron dicitrate sensor protein FecR	3.58298049777e-05	1.52049552237e-05	-2.0624849754e-05
+UniRef50_A5N275	FolC	0.000305247551134	0.000820306827793	0.000515059276659
+UniRef50_Q2NFU9	UPF0425 pyridoxal phosphate dependent protein Msp_0916	0.00279530461177	0.000314465525801	-0.00248083908597
+UniRef50_F2MU09	Phospholipase carboxylesterase	3.55473314347e-05	0.000709805102506	0.000674257771071
+UniRef50_Q5HLB6	Glycine oxidase, putative	0.00754095217395	0.00196274755759	-0.00557820461636
+UniRef50_P0CS91	Heat shock protein SSC1, mitochondrial	0.000218575431332	0.005189588184	0.00497101275267
+UniRef50_D6UDQ3	Tandem lipoprotein	0.00106781261774	3.97636165494e-05	-0.00102804900119
+UniRef50_I6SXL7	Transcriptional regulator	0.00915016764153	0.00706192025914	-0.00208824738239
+UniRef50_Q1J5E1	Glycine  tRNA ligase beta subunit	0.00726507032039	0.00216833002658	-0.00509674029381
+UniRef50_Q5FSM8	DNA polymerase IV	4.44787391271e-06	1.00259447791e-05	5.57807086639e-06
+UniRef50_UPI0003628E06	hypothetical protein	8.90318913877e-06	0.000113707424611	0.000104804235472
+UniRef50_I6T999	Putative DNA binding protein	0.00534185608288	0.00755106700499	0.00220921092211
+UniRef50_Q2G506	ATM1 type heavy metal exporter	0.00332426932883	0.00103110508692	-0.00229316424191
+UniRef50_Q92M99	Phosphoglucosamine mutase	0.000712538667275	0.000473196623433	-0.000239342043842
+UniRef50_UPI000474F1D7	GntR family transcriptional regulator	2.86867725733e-05	3.44374369266e-05	5.7506643533e-06
+UniRef50_V9TEA7	Membrane protein	0.000880826779157	0.000403621920536	-0.000477204858621
+UniRef50_A6LWP9		0.000194915312664	0.00118373546568	0.000988820153016
+UniRef50_C8XAV6		5.91903043269e-05	2.12013810219e-05	-3.7988923305e-05
+UniRef50_B7GT76	2 isopropylmalate synthase	2.89137793217e-06	1.81961061171e-05	1.53047281849e-05
+UniRef50_A1B1J8	Multisubunit potassium proton antiporter, PhaD subunit	0.00472524768805	0.000729142247698	-0.00399610544035
+UniRef50_A6LWP5		0.000202949456367	0.0015554572052	0.00135250774883
+UniRef50_A0A024E8N7	LysR family transcriptional regulator	0.000229707498285	0.00055446503265	0.000324757534365
+UniRef50_A1AT80	Glutamate 5 kinase	8.79259766504e-06	6.3693331168e-06	-2.42326454824e-06
+UniRef50_A1ZV16		6.80091804187e-06	0.000685311454025	0.000678510535983
+UniRef50_F2K1C2	Cytochrome b	0.00122225995043	0.000305552698654	-0.000916707251776
+UniRef50_Q869Z4	Phosphoenolpyruvate carboxykinase [GTP], mitochondrial	0.000251908367335	0.00980676409642	0.00955485572908
+UniRef50_Q8CN10	PTS enzyme II glucose specific factor IIABC component	0.00442989965018	0.00243733647365	-0.00199256317653
+UniRef50_Q6GC59	Exotoxin	0.0118168768448	0.00185094368724	-0.00996593315756
+UniRef50_Q8DWC2	Peptide deformylase	0.00285621120808	0.00584253982118	0.0029863286131
+UniRef50_A3W5J9	Flagellar protein FlgJ, putative	4.87205142173e-05	2.51568973161e-05	-2.35636169012e-05
+UniRef50_UPI00045E6DFA	hypothetical protein	9.66802408398e-05	0.000110816689341	1.41364485012e-05
+UniRef50_F2DJV5	Predicted protein 	7.8518275517e-07	0.00018652292323	0.000185737740475
+UniRef50_D8JDR1		0.000117474892792	0.00777465670553	0.00765718181274
+UniRef50_A3PJK1		0.00295903026021	0.00258643445711	-0.0003725958031
+UniRef50_O05389		0.000178339837253	0.00170920855092	0.00153086871367
+UniRef50_A3PJK2		0.00484115957411	0.00161081839197	-0.00323034118214
+UniRef50_UPI00016C499F	dimethyladenosine transferase, partial	9.64260839552e-06	3.64661975384e-05	2.68235891429e-05
+UniRef50_UPI0004749CAE	ketodeoxygluconokinase	1.23084589658e-05	1.4500448755e-05	2.1919897892e-06
+UniRef50_R6XMV8		9.00798728142e-05	1.74903880052e-05	-7.2589484809e-05
+UniRef50_Q7VEG3	Nucleoside diphosphate kinase	4.41466594858e-05	9.93947754327e-05	5.52481159469e-05
+UniRef50_E3I2G3	HupH hydrogenase expression protein	0.000156956709815	2.58213713316e-05	-0.000131135338483
+UniRef50_W5XCB4	DegT DnrJ EryC1 StrS family protein	3.81361203014e-06	1.09591344281e-05	7.14552239796e-06
+UniRef50_Q8SDT3	Phi105 orf 44 like protein	0.00286660113217	0.000714475899663	-0.00215212523251
+UniRef50_I6T631	ABC transporter substrate binding protein	0.00317403621288	0.000968168861503	-0.00220586735138
+UniRef50_I4L8Z6		5.97313242863e-05	9.38806767182e-05	3.41493524319e-05
+UniRef50_UPI00047863ED	hypothetical protein	3.3761668814e-05	1.18400770828e-05	-2.19215917312e-05
+UniRef50_B9KL61	Transporter, RhaT family, DMT superfamily	0.000128834808487	0.000197536257659	6.8701449172e-05
+UniRef50_R7PSP1		0.00286218390364	0.00068237070487	-0.00217981319877
+UniRef50_I3UXJ0	Homocysteine S methyltransferase	0.000226039514279	0.00460748400648	0.0043814444922
+UniRef50_B3T1S1		0.000694467053355	0.00230521136462	0.00161074431127
+UniRef50_UPI0003775D8A	hypothetical protein	1.56952429452e-05	2.73756178236e-05	1.16803748784e-05
+UniRef50_UPI00035142FA	PREDICTED	8.98039164874e-05	0.000157753013168	6.79490966806e-05
+UniRef50_F9Y4R9		0.000474835567621	0.000737650781258	0.000262815213637
+UniRef50_A5UJU3	Adhesin like protein	0.0035910587592	0.000766157579497	-0.0028249011797
+UniRef50_U7XVU8		4.62804059383e-05	0.000204770702883	0.000158490296945
+UniRef50_Q7N964	Thiamine phosphate synthase	0.00196729849616	0.00300092558576	0.0010336270896
+UniRef50_Q6UXR0	GWSI6489	8.63153937979e-05	0.00570393597839	0.00561762058459
+UniRef50_K1ZGG7		0.000438113956219	2.65477180654e-05	-0.000411566238154
+UniRef50_B7UWX0		0.000173274777077	0.000104391512769	-6.8883264308e-05
+UniRef50_B3PNG9	Serine  tRNA ligase	4.53124456224e-06	1.38124542524e-05	9.28120969016e-06
+UniRef50_UPI0003A2F50C	hypothetical protein	5.40361122358e-05	2.19373336876e-05	-3.20987785482e-05
+UniRef50_A4WXV4		0.00378599139669	0.00801800731847	0.00423201592178
+UniRef50_UPI0003666757	hypothetical protein	3.55645335052e-05	0.000338245967872	0.000302681434367
+UniRef50_M9VE13	LacI family transcriptional regulator	0.000125410627529	0.00892062491184	0.00879521428431
+UniRef50_U5WUM2	Zinc binding dehydrogenase	0.00033546625972	0.00261009207997	0.00227462582025
+UniRef50_A0B8A2		0.00256630616398	0.00034631809876	-0.00221998806522
+UniRef50_T8GQ95	Glyoxylate carboligase	0.000587385912372	0.000120701650628	-0.000466684261744
+UniRef50_C1FAE8	Aspartate  tRNA ligase	3.23384215636e-06	9.5712017522e-06	6.33735959584e-06
+UniRef50_Q88MC6		0.000279619251005	4.63681665336e-05	-0.000233251084471
+UniRef50_G8AMM6		0.000314672552125	0.00019851292274	-0.000116159629385
+UniRef50_UPI0003717327	hypothetical protein	7.75182707403e-06	1.26986986495e-05	4.94687157547e-06
+UniRef50_C6NS61	2 isopropylmalate synthase	1.68527932359e-05	1.06639040794e-05	-6.1888891565e-06
+UniRef50_Q57060		0.00969989369764	0.00630671349842	-0.00339318019922
+UniRef50_X5X5U8		0.00197509012991	0.000125041384493	-0.00185004874542
+UniRef50_F3ZHT3	Putative transcriptional regulator, MerR family protein	2.33580878932e-05	0.000332069428132	0.000308711340239
+UniRef50_UPI000372025C	hypothetical protein	2.51731079127e-05	3.55126379471e-05	1.03395300344e-05
+UniRef50_UPI0003636A8B	hypothetical protein	4.29338463108e-06	1.04520123471e-05	6.15862771602e-06
+UniRef50_UPI000380509C	hypothetical protein	5.38222826097e-05	5.45919704146e-06	-4.83630855682e-05
+UniRef50_A7IB90		2.03545358546e-05	9.97340430481e-06	-1.03811315498e-05
+UniRef50_UPI0003810DDB	hypothetical protein	1.45856266558e-05	1.13250550909e-05	-3.2605715649e-06
+UniRef50_W4RTV0		1.81238837283e-05	2.69978209462e-05	8.8739372179e-06
+UniRef50_UPI00045DC04C	PREDICTED	3.10482415329e-05	2.63505259997e-06	-2.84131889329e-05
+UniRef50_D7GCK2	Cell envelope related transcriptional attenuator	4.62587843487e-06	1.61862955883e-05	1.15604171534e-05
+UniRef50_D5ANZ4	Cytochrome c1	0.0134026609234	0.00436792146564	-0.00903473945776
+UniRef50_A4FPJ2	DNA directed RNA polymerase subunit alpha	3.17979134865e-05	0.012584070998	0.0125522730845
+UniRef50_UPI0004730699	hypothetical protein, partial	5.90007538297e-05	7.20348592853e-05	1.30341054556e-05
+UniRef50_UPI00047D1B9F	hypothetical protein	5.87799486135e-05	4.78548480246e-05	-1.09251005889e-05
+UniRef50_E2QG11	Receptor protein	0.00415290197654	0.00204806734375	-0.00210483463279
+UniRef50_T1ADV2	Pyridine nucleotide transhydrogenase subunit alpha 	2.38841538244e-05	4.180411274e-05	1.79199589156e-05
+UniRef50_N0SZ54	Ribosomal RNA large subunit methyltransferase F	0.000608029457276	0.000190731994744	-0.000417297462532
+UniRef50_UPI0002379B91	glutamine ABC transporter ATP binding protein	8.88855142422e-05	7.36755713723e-05	-1.52099428699e-05
+UniRef50_U5MMN5	Sensor protein GtcS	0.000240136730035	0.000871504193622	0.000631367463587
+UniRef50_A8IMG6		1.05213898548e-05	1.62660381331e-05	5.7446482783e-06
+UniRef50_UPI0003B34E5F	NADH quinone oxidoreductase subunit F	3.53993288383e-06	8.39531118976e-06	4.85537830593e-06
+UniRef50_A3CP57		0.00907002511004	0.000863415031478	-0.00820661007856
+UniRef50_R7JSE9	Appr 1 p processing domain protein	5.35329799714e-06	9.56916415376e-05	9.03383435405e-05
+UniRef50_A6U0P1	Bifunctional purine biosynthesis protein PurH	0.0218753187337	0.00457302768351	-0.0173022910502
+UniRef50_D3DYR0	Molybdopterin biosynthesis protein MoeA1	0.00324944342893	0.000452450660442	-0.00279699276849
+UniRef50_A6WXN2	Cysteine synthase A	0.000130018136227	0.00557131604534	0.00544129790911
+UniRef50_F9ZDK1		3.37111282454e-05	6.67430696767e-06	-2.70368212777e-05
+UniRef50_Q2NUJ6	8 amino 7 oxononanoate synthase	0.00399810123578	0.00337579472008	-0.0006223065157
+UniRef50_B0VSH8		0.000143895548483	0.0110025074475	0.010858611899
+UniRef50_D1WNS1		3.7892125551e-05	0.0016406483622	0.00160275623665
+UniRef50_V9Y3L4		0.000402885329893	0.000331623239557	-7.1262090336e-05
+UniRef50_S9QX59	Asparagine synthetase A	4.63086470958e-05	3.31497843772e-05	-1.31588627186e-05
+UniRef50_I2NA66	Putative transposase	6.64192932355e-06	0.000852258612792	0.000845616683468
+UniRef50_K7SNW3	Biotin requiring enzyme	8.04874176639e-05	0.00195593859233	0.00187545117467
+UniRef50_Z3WPG1	Quinolone resistance protein norA	0.000682914692114	0.00269066780044	0.00200775310833
+UniRef50_U3JHG3		1.38918322733e-05	5.00532640968e-06	-8.88650586362e-06
+UniRef50_G8P8V7	Transcriptional regulator, TetR family	0.000218199993555	0.000682813191202	0.000464613197647
+UniRef50_M9VE40	DNA polymerase III subunit beta	0.000257388808393	0.00619901311715	0.00594162430876
+UniRef50_UPI0003B45127	adenosylcobinamide amidohydrolase	8.24948297216e-05	0.000117808899184	3.53140694624e-05
+UniRef50_Q7VRJ3	3 octaprenyl 4 hydroxybenzoate carboxy lyase	5.72408336432e-06	4.8384120152e-05	4.26600367877e-05
+UniRef50_E1ZM35		3.16669191744e-06	2.84236216817e-05	2.52569297643e-05
+UniRef50_Q3IUW2	Sex pilus assembly protein	0.0281196200925	0.00315021751953	-0.024969402573
+UniRef50_A0A059LE43		3.06260763212e-05	0.000121002849056	9.03767727348e-05
+UniRef50_L7X117		0.0191231733148	0.00223825152444	-0.0168849217904
+UniRef50_Q5HM49	Transporter, putative	0.0213051256247	0.0049672390802	-0.0163378865445
+UniRef50_E8ZPJ7	Flagellar motor rotation protein MotB	0.00094128649863	0.00218132411405	0.00124003761542
+UniRef50_Q8FDB4	Toxin YhaV	0.00347749112547	0.00208458850726	-0.00139290261821
+UniRef50_P31448		0.00107272792866	0.00102212553568	-5.060239298e-05
+UniRef50_A0A017IJ86		0.000244789231481	0.000281382160804	3.6592929323e-05
+UniRef50_UPI000409D88E	ABC transporter ATP binding protein	3.58313550975e-06	6.41405502813e-06	2.83091951838e-06
+UniRef50_U1GJH2		1.47030468737e-05	1.0239062436e-05	-4.4639844377e-06
+UniRef50_R5LKI5		0.00232839171695	0.00115725372531	-0.00117113799164
+UniRef50_UPI00047A834E	hypothetical protein	0.000111014512165	1.42301692954e-05	-9.67843428696e-05
+UniRef50_I6T4P1	Peptidoglycan hydrolase	0.00670845175229	0.00348859502504	-0.00321985672725
+UniRef50_F8HDN7	GTPase HflX	0.00531731433307	0.00361993831836	-0.00169737601471
+UniRef50_S5CMF0	Lysine ornithine N monooxygenase	0.00010202324023	0.00795027182549	0.00784824858526
+UniRef50_D9VIL0	Predicted protein	0.000153573611612	0.00015899866043	5.425048818e-06
+UniRef50_A5EJC6	3 dehydroquinate dehydratase	9.49616816534e-05	8.89289109897e-05	-6.0327706637e-06
+UniRef50_R9SJV5		0.00263635198837	0.000294335586571	-0.0023420164018
+UniRef50_X6L1Q7		0.000116778683408	2.93396353982e-05	-8.74390480098e-05
+UniRef50_A6LY84	RNA directed DNA polymerase 	0.000434393979868	0.00130425650155	0.000869862521682
+UniRef50_P08395	Protease 4	0.00222398001135	0.00157480391412	-0.00064917609723
+UniRef50_P21881	Pyruvate dehydrogenase E1 component subunit alpha	0.0179371443628	0.0086235632723	-0.0093135810905
+UniRef50_C1F934	Glycine cleavage system H protein	0.0288539773614	0.00307449230898	-0.0257794850524
+UniRef50_S5F6B6	Carbonic anhydrase	4.15446119826e-05	8.42574207011e-06	-3.31188699125e-05
+UniRef50_D4G4T6		5.7469821423e-05	3.49773580148e-05	-2.24924634082e-05
+UniRef50_A0A024HMN0		0.000391853967671	0.000138406772972	-0.000253447194699
+UniRef50_Q1GK69	Peptidyl tRNA hydrolase	8.85381953972e-05	4.42063883791e-05	-4.43318070181e-05
+UniRef50_A0KZ99	Ribosomal RNA large subunit methyltransferase M	0.00227457323911	0.000967514881814	-0.0013070583573
+UniRef50_A4VKN0	DNA ligase	0.000536467342314	0.000403952028561	-0.000132515313753
+UniRef50_F0P455	Transcriptional regulator, LysR family	0.0126720514182	0.00365741191777	-0.00901463950043
+UniRef50_Q47208	Protein FdrA	0.00269823892419	0.000998169253062	-0.00170006967113
+UniRef50_UPI000470719A	hypothetical protein	0.000809405787415	0.000376273312674	-0.000433132474741
+UniRef50_Q98I23	Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2	0.0112907531346	0.00180753727094	-0.00948321586366
+UniRef50_A8MGM7	Histidine  tRNA ligase	3.83531696865e-06	0.00127237515733	0.00126853984036
+UniRef50_Q5HNS1	Histidine  tRNA ligase	0.00709239387417	0.00249233214643	-0.00460006172774
+UniRef50_A8MHC4	tRNA  ) methyltransferase	0.000492502060568	0.00229233378357	0.001799831723
+UniRef50_Q6FAF0		0.0114581508055	0.0125134159118	0.0010552651063
+UniRef50_B9KN35	Tyrosine recombinase	0.0110153288993	0.0016529579735	-0.0093623709258
+UniRef50_J8RT93		0.000102560902995	0.000108563047887	6.002144892e-06
+UniRef50_P31447		0.00261199428869	0.0016911398858	-0.00092085440289
+UniRef50_I4WA77	Cupin	9.78337770766e-05	6.17355340618e-05	-3.60982430148e-05
+UniRef50_A9NHF4	Tyrosine  tRNA ligase	6.02686790342e-06	2.75516539321e-05	2.15247860287e-05
+UniRef50_UPI0002B46B6C	PREDICTED	7.27489706034e-05	1.02217714716e-05	-6.25271991318e-05
+UniRef50_U5MSB6	Actin like ATPase involved in cell division	0.000312263919734	0.000333837366925	2.1573447191e-05
+UniRef50_D9RE66		0.0171733699952	0.00330947177673	-0.0138638982185
+UniRef50_A8G7C4	Lysine  tRNA ligase	3.16598278359e-06	9.21418366545e-06	6.04820088186e-06
+UniRef50_W9GGB6		4.63256884592e-05	2.54756518198e-05	-2.08500366394e-05
+UniRef50_Q8CP80	Maltose maltodextrin transport permease like protein	0.00989120722369	0.00395888975696	-0.00593231746673
+UniRef50_B7H087	Acetate kinase	0.000259452833451	0.00718777906633	0.00692832623288
+UniRef50_Q3IUU3		0.0188881920516	0.00670040016913	-0.0121877918825
+UniRef50_Q3IUU2		0.0159041357202	0.00246280133573	-0.0134413343845
+UniRef50_Q3IUU1		0.0230438108927	0.0060360527903	-0.0170077581024
+UniRef50_Q3IUU0		0.00651793720796	0.00438939776545	-0.00212853944251
+UniRef50_C7NTI4	Oxidoreductase	1.703150927e-05	1.12845321756e-05	-5.7469770944e-06
+UniRef50_UPI0002E8C668	hypothetical protein	1.53638399363e-05	1.04544214404e-05	-4.9094184959e-06
+UniRef50_X9ZAP3		0.0126048090474	0.00116228549627	-0.0114425235511
+UniRef50_C4REF2		9.02213839011e-06	1.52850913431e-05	6.26295295299e-06
+UniRef50_W8X9Y2		0.000492853497076	0.000352968173539	-0.000139885323537
+UniRef50_UPI000372F67C	hypothetical protein	4.46136915496e-05	0.000244394639562	0.000199780948012
+UniRef50_D5AN32	Na+ solute symporter   histidine kinase	0.00418552828243	0.00171525271346	-0.00247027556897
+UniRef50_UPI0004686CF3	DNA processing protein	8.14873273029e-05	7.77469149418e-05	-3.7404123611e-06
+UniRef50_UPI0003709489	hypothetical protein	5.93749840887e-06	1.14775116548e-05	5.54001324593e-06
+UniRef50_A0A021W377		0.000455616423831	9.55954285953e-05	-0.000360020995236
+UniRef50_I0C6Z8	Transcriptional regulator, RpiR family	0.0198593555728	0.00403829350683	-0.015821062066
+UniRef50_A4FXY0	ATP phosphoribosyltransferase	0.0021917006289	0.000557440784418	-0.00163425984448
+UniRef50_UPI0004793307	arginine ABC transporter ATP binding protein	3.11739942067e-05	3.19267971495e-05	7.528029428e-07
+UniRef50_UPI0003346A33	PREDICTED	0.000101502877674	0.000110491093052	8.988215378e-06
+UniRef50_UPI00037EBF8D	hypothetical protein	3.31220580153e-06	3.49998163542e-06	1.8777583389e-07
+UniRef50_UPI0004749A8E	hypothetical protein, partial	1.54484434021e-05	2.29404779047e-05	7.4920345026e-06
+UniRef50_D3E438	Transcriptional regulator	0.000235438246685	0.000376199624447	0.000140761377762
+UniRef50_UPI00037D9D80	hypothetical protein	1.31082291724e-05	6.5785020285e-05	5.26767911126e-05
+UniRef50_UPI00046F048D	hypothetical protein	7.62181273444e-06	4.74164384982e-05	3.97946257638e-05
+UniRef50_H8GSQ7	2 oxoisovalerate dehydrogenase, ODBB	0.000109734299089	0.0414945050286	0.0413847707295
+UniRef50_UPI0002F0E78D	hypothetical protein	4.616173654e-05	1.11029690496e-05	-3.50587674904e-05
+UniRef50_S2EW51		4.12393286296e-05	2.70843064575e-05	-1.41550221721e-05
+UniRef50_X5EI43		0.000266460698017	0.00246387372732	0.0021974130293
+UniRef50_H3K0N4	ABC transporter ATP binding protein	0.0123130925283	0.00161917052688	-0.0106939220014
+UniRef50_P33983	RNA polymerase sigma 54 factor	0.000222985006094	0.00628274989442	0.00605976488833
+UniRef50_Q3JQY5		0.000124041122045	2.41998405252e-05	-9.98412815198e-05
+UniRef50_UPI0004679CCC	50S ribosomal protein L6, partial	7.43227108272e-05	7.41801608231e-05	-1.425500041e-07
+UniRef50_Q0A5K0	Succinyl CoA ligase [ADP forming] subunit beta	1.25601820849e-05	1.67423955609e-05	4.182213476e-06
+UniRef50_G2JIW3	Enoyl CoA hydratase carnithine racemase	0.000348448605091	0.00730990622933	0.00696145762424
+UniRef50_UPI00037A4F24	hypothetical protein, partial	6.90312984757e-05	7.16722269859e-05	2.6409285102e-06
+UniRef50_P67371	DegV domain containing protein SA1258	0.0188807561605	0.00372933095145	-0.0151514252091
+UniRef50_G8VAM5	Transferase	8.55330790492e-05	0.0058082201334	0.00572268705435
+UniRef50_UPI00046527B9	diguanylate cyclase	8.51910015367e-06	1.09405114023e-05	2.42141124863e-06
+UniRef50_B9EB64	Bifunctional protein PyrR	3.19139163426e-05	6.52042832446e-05	3.3290366902e-05
+UniRef50_P45053	Oligopeptide transport system permease protein OppC	0.00160299492796	0.000677046210608	-0.000925948717352
+UniRef50_A5FG89	Lon protease	1.37771355036e-06	5.28039767225e-06	3.90268412189e-06
+UniRef50_P10768	S formylglutathione hydrolase	0.00427875368191	0.00108034769734	-0.00319840598457
+UniRef50_Q5LZ72	Phenylalanine  tRNA ligase beta subunit	0.00559061506466	0.00611890388621	0.00052828882155
+UniRef50_W1UDP7	Surface protective antigen SpaA	0.000387899399708	0.00392408042021	0.0035361810205
+UniRef50_UPI00047EAA8B	hypothetical protein	2.97014066686e-06	6.16556953381e-06	3.19542886695e-06
+UniRef50_D6M4Y7	Peptidase C14, caspase catalytic subunit p20	4.58566943327e-05	0.000371379696512	0.000325523002179
+UniRef50_UPI0001E896F1	ATPase	1.16187525186e-05	2.25994083022e-05	1.09806557836e-05
+UniRef50_UPI00037DE191	hypothetical protein	6.4112953349e-06	0.000533948350804	0.000527537055469
+UniRef50_UPI000467F219	type I secretion protein	1.07008823361e-05	7.11283328012e-06	-3.58804905598e-06
+UniRef50_I1ELJ8		0.000199602454323	9.14968757791e-05	-0.000108105578544
+UniRef50_UPI0001B41487	ATP dependent protease ATP binding subunit HslU	2.56320928773e-05	0.000132826104285	0.000107194011408
+UniRef50_B9IYP4	Formate  tetrahydrofolate ligase	0.000188838473161	0.000269829818879	8.0991345718e-05
+UniRef50_UPI00046EB4AA	hypothetical protein, partial	1.95854501175e-05	1.50517408535e-05	-4.533709264e-06
+UniRef50_B0VBG2		0.000278497783418	0.00672224117113	0.00644374338771
+UniRef50_Q9CMM8	Selenide, water dikinase	0.00471221466806	0.00188696620209	-0.00282524846597
+UniRef50_UPI0003B5EFE3	hypothetical protein	7.18860393996e-06	0.000142598597216	0.000135409993276
+UniRef50_UPI00047CBC2F	diacylglycerol kinase	1.68109342939e-05	6.46445264066e-05	4.78335921127e-05
+UniRef50_U1TXR6		0.000383209154752	0.000262846566382	-0.00012036258837
+UniRef50_D5AS82	SsrA binding protein	0.004217737032	0.000454333392607	-0.00376340363939
+UniRef50_UPI00037E7A93	hypothetical protein	6.21520284304e-06	1.809391916e-05	1.1878716317e-05
+UniRef50_B9NUC1		0.00263684126974	0.000898109404517	-0.00173873186522
+UniRef50_P0ADH6	Type 1 fimbriae regulatory protein FimB	0.00117594377016	0.000715919285321	-0.000460024484839
+UniRef50_R7PU85		0.00157966338382	0.00544818206587	0.00386851868205
+UniRef50_P06134	Bifunctional transcriptional activator DNA repair enzyme Ada	0.00335467093571	0.00138236693724	-0.00197230399847
+UniRef50_W1XPX0	NADH quinone oxidoreductase subunit L 	0.000115829105569	6.49002375505e-05	-5.09288680185e-05
+UniRef50_UPI0003C1934F		3.78417411257e-05	2.5895969802e-06	-3.52521441455e-05
+UniRef50_C7MB99	Methyltransferase family protein	0.00744243175817	0.00227391446052	-0.00516851729765
+UniRef50_UPI0002B4434D		2.78046370792e-06	6.21010806232e-05	5.93206169153e-05
+UniRef50_E6JE24	Integral membrane protein	4.09823469531e-07	5.50411747651e-07	1.4058827812e-07
+UniRef50_R4R862	Sensor protein RstB	0.00106447486408	0.000287328884659	-0.000777145979421
+UniRef50_B9KTV5	Extracellular solute binding protein, family 3	0.0050268720665	0.000606661121221	-0.00442021094528
+UniRef50_Q7N772	Protein NrdI	1.25669523943e-05	6.82413956352e-05	5.56744432409e-05
+UniRef50_P09162		0.000424141560512	0.00327500377695	0.00285086221644
+UniRef50_G7M7A9	Transcriptional regulator, MarR family	0.000361502176702	0.000911075144815	0.000549572968113
+UniRef50_A6LW07	Periplasmic binding protein LacI transcriptional regulator	0.000352588665638	0.00104338790602	0.000690799240382
+UniRef50_G7U7C0	Transporter, major facilitator family protein	0.00012653161638	0.00821193458673	0.00808540297035
+UniRef50_X7V429	HD domain protein	1.58293703042e-05	2.6534702342e-05	1.07053320378e-05
+UniRef50_B2V5D3	UV damage endonuclease UvdE	0.000941992832652	0.0028184960095	0.00187650317685
+UniRef50_P63590	3 dehydroquinate dehydratase	0.00370560175667	0.006739333854	0.00303373209733
+UniRef50_Q51161	Dihydropteroate synthase	7.90613099492e-06	0.00327148269588	0.00326357656489
+UniRef50_Q89376		2.39686355964e-06	6.45927211468e-06	4.06240855504e-06
+UniRef50_Q8CRZ8		0.00790010380089	0.00530120797493	-0.00259889582596
+UniRef50_Q8CRZ9		0.00962120989327	0.00322620327274	-0.00639500662053
+UniRef50_W8U6I9	AAA domain containing protein YrvN	0.000313453926406	0.00177363963041	0.001460185704
+UniRef50_Q8CRZ1		0.00207115559023	0.0014586493131	-0.00061250627713
+UniRef50_Q8CRZ2		0.00750356750985	0.00250352311195	-0.0050000443979
+UniRef50_Q8CRZ3		0.0077284168268	0.00389350518463	-0.00383491164217
+UniRef50_Q8CRZ4		0.00731681357456	0.0026196801655	-0.00469713340906
+UniRef50_Q8CRZ7		0.0108567159428	0.00387078172572	-0.00698593421708
+UniRef50_A7ZQU2	Bifunctional protein Aas	0.000654323084117	9.40000122672e-05	-0.00056032307185
+UniRef50_UPI00047B3496	molybdenum cofactor biosynthesis protein MoeB	1.66385641126e-05	4.43993430872e-05	2.77607789746e-05
+UniRef50_UPI0003A35158	hypothetical protein	4.70725546009e-06	6.97508947712e-06	2.26783401703e-06
+UniRef50_A5WHC3	4 hydroxy tetrahydrodipicolinate synthase	0.000138969684288	0.0050351708271	0.00489620114281
+UniRef50_P65103	Isopentenyl diphosphate delta isomerase	0.00405480175395	0.00400813441353	-4.666734042e-05
+UniRef50_UPI0000557F47	hypothetical protein	0.000227065328509	0.000231952606917	4.887278408e-06
+UniRef50_Q6GHN9	Lipoprotein signal peptidase	0.0141048611762	0.00280216732161	-0.0113026938546
+UniRef50_S4YB05		0.000124376858201	7.96430386153e-05	-4.47338195857e-05
+UniRef50_I0LGH2	ABC type transporter, periplasmic component	1.14119418896e-05	4.70868645767e-05	3.56749226871e-05
+UniRef50_UPI000471C41C	spermidine putrescine ABC transporter ATPase	5.47967384213e-05	2.78837464855e-05	-2.69129919358e-05
+UniRef50_UPI00037D6690	hypothetical protein	3.14905879948e-06	8.85293101891e-05	8.53802513896e-05
+UniRef50_UPI0003B79E24	inner membrane translocator	6.71891356697e-06	4.995245077e-06	-1.72366848997e-06
+UniRef50_UPI00029ADD09	dehydrogenase E1 component	2.29540197336e-06	6.95669276728e-05	6.72715256994e-05
+UniRef50_A0A023S2F8	Type I deoxyribonuclease HsdR	0.000178621130367	0.00883110911525	0.00865248798488
+UniRef50_H4UHR1	K H(+) antiporter NhaP2	0.00103752419948	0.000213869711137	-0.000823654488343
+UniRef50_A6LYC9	ThiJ PfpI domain protein	0.000475987449258	0.00208335419594	0.00160736674668
+UniRef50_B9KL85	Transporter, RhaT family, DMT superfamily	0.00275848749377	0.000385414392769	-0.002373073101
+UniRef50_Q9XE67		3.48750152386e-05	2.1993264817e-05	-1.28817504216e-05
+UniRef50_F8FDJ3		1.10903701447e-06	1.16098682432e-05	1.05008312287e-05
+UniRef50_Q5H175	Dihydrolipoyl dehydrogenase	8.42602653634e-05	0.00647369290447	0.00638943263911
+UniRef50_C6WVP9	DoxX family protein	4.10038053669e-05	4.71766814374e-05	6.1728760705e-06
+UniRef50_UPI0003B7B25C	alanine glycine permease	4.4189377499e-05	0.00392555254348	0.00388136316598
+UniRef50_D3DZS4		0.0024448721345	0.000332336463118	-0.00211253567138
+UniRef50_C0PAL9		0.000104808220079	3.18844231656e-05	-7.29237969134e-05
+UniRef50_UPI00038F99E9	hypothetical protein, partial	6.52365554942e-06	5.61078940713e-05	4.95842385219e-05
+UniRef50_Q2RFS8	Energy coupling factor transporter ATP binding protein EcfA	1.37678363702e-05	6.46066778025e-05	5.08388414323e-05
+UniRef50_H1XUH5	Cysteine desulfurase	0.00536623894244	0.00477537728117	-0.00059086166127
+UniRef50_X2M2B8	Multidrug transporter	0.00368490472939	0.00117825399277	-0.00250665073662
+UniRef50_UPI0003642FB6	hypothetical protein	7.43860068587e-05	2.40273149764e-05	-5.03586918823e-05
+UniRef50_Q42577	NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.39975530249e-05	2.95833410853e-05	-4.4142119396e-06
+UniRef50_M9VCQ3	UvrD REP helicase	0.000290220748966	0.00679535657305	0.00650513582408
+UniRef50_A1YRL8	Cassette chromosome recombinase A	0.00817738679606	0.00176457998533	-0.00641280681073
+UniRef50_Q8L940	Pyridoxal biosynthesis protein PDX1.3	2.58182898383e-05	0.00374091744826	0.00371509915842
+UniRef50_UPI00047114BD	hypothetical protein	2.53149989052e-06	2.11421898796e-05	1.86106899891e-05
+UniRef50_UPI00016C4C7D	molecular chaperone GroEL	3.34732511688e-05	1.10966693241e-05	-2.23765818447e-05
+UniRef50_Q44058	Acyl homoserine lactone synthase	9.26002480944e-06	1.26777051579e-05	3.41768034846e-06
+UniRef50_B1FL99	RemN protein	0.000657733614019	0.000373015824303	-0.000284717789716
+UniRef50_UPI00045E9959	sarcosine oxidase subunit alpha	1.40493937095e-05	6.81528934358e-06	-7.23410436592e-06
+UniRef50_UPI00047E113B	hypothetical protein	2.09772275841e-05	2.94914456261e-05	8.514218042e-06
+UniRef50_A1B2B5	Polysaccharide export protein	0.00210196899702	0.00033816666398	-0.00176380233304
+UniRef50_UPI000225EB41	FAD dependent oxidoreductase	2.36573505899e-05	0.00252717590457	0.00250351855398
+UniRef50_UPI0003B63FA5	hemolysin III	7.76568791787e-06	1.03646502946e-05	2.59896237673e-06
+UniRef50_Q67KN6	NADH quinone oxidoreductase subunit B 2	1.24321375994e-05	1.47641445421e-05	2.3320069427e-06
+UniRef50_Q46901	CRISPR system Cascade subunit CasA	0.00128953394128	0.00109734315681	-0.00019219078447
+UniRef50_UPI0003AB1459	hypothetical protein	0.000165871459254	0.000651749256272	0.000485877797018
+UniRef50_UPI000473BBBF	ABC transporter, partial	1.08017190095e-05	7.25055494675e-05	6.1703830458e-05
+UniRef50_P26647	1 acyl sn glycerol 3 phosphate acyltransferase	0.00361027609027	0.000682304693505	-0.00292797139677
+UniRef50_A0A059E9X7		0.000177802645998	8.8480133685e-05	-8.9322512313e-05
+UniRef50_UPI000473AECE	4 alpha glucanotransferase	1.56260874176e-05	0.00062188175466	0.000606255667242
+UniRef50_P24241	PTS system arbutin , cellobiose , and salicin specific EIIBC component	0.000959976124565	0.00167955131452	0.000719575189955
+UniRef50_I4KLQ2	Phosphate ABC transporter, permease protein	0.00064206337963	0.000693388382863	5.1325003233e-05
+UniRef50_A7X4U8	ATP synthase subunit delta	0.0274847006939	0.00529113851919	-0.0221935621747
+UniRef50_X2NAF9	Glycerol 3 phosphate dehydrogenase	0.00125208932704	0.000652027110056	-0.000600062216984
+UniRef50_UPI000361DA3C	hypothetical protein	0.000833399264168	0.000124167937525	-0.000709231326643
+UniRef50_B4RQ53		0.000428969156652	0.00466222470045	0.0042332555438
+UniRef50_Q9FZ42	Glucose and ribitol dehydrogenase homolog 1	1.89084954643e-05	3.78563893164e-05	1.89478938521e-05
+UniRef50_A3PPH2		0.000674917133269	0.000707415861126	3.2498727857e-05
+UniRef50_I4YVW1	TRAP type C4 dicarboxylate transport system, small permease component	5.31021978418e-05	3.43527978771e-05	-1.87493999647e-05
+UniRef50_Q9RRJ1	Nucleoside diphosphate kinase	1.3146618852e-05	0.00609016050498	0.00607701388613
+UniRef50_S5N397	p6.9	0.000227579096253	3.60965429503e-05	-0.000191482553303
+UniRef50_UPI000328C952	PREDICTED	0.000259285633722	0.000367228242781	0.000107942609059
+UniRef50_Q0BEA7	Fumarate reductase succinate dehydrogenase flavoprotein domain protein	0.000302262802495	0.000317166439827	1.4903637332e-05
+UniRef50_A6M2L1		0.000224186990672	0.000986691849689	0.000762504859017
+UniRef50_UPI0004095AFD	hypothetical protein	5.36155723618e-05	3.46015217629e-05	-1.90140505989e-05
+UniRef50_M1MFL6	ATP dependent DNA helicase Rep	0.000111519982377	0.00108831705254	0.000976797070163
+UniRef50_B7K205	Peptide chain release factor 1	0.00557848924943	0.000929519190096	-0.00464897005933
+UniRef50_S6AT82		0.00216982459302	0.00649894566187	0.00432912106885
+UniRef50_Q2J4N0	Phosphoribosylformylglycinamidine synthase 1	0.00024657308765	0.0124109828601	0.0121644097725
+UniRef50_P76657	Inner membrane protein YqiJ	0.00304621659419	0.00145955537989	-0.0015866612143
+UniRef50_UPI000474867C	helicase	6.52713525415e-05	0.000108687316974	4.34159644325e-05
+UniRef50_W5X6U2	Glycoside hydrolase family 28	4.81315052871e-05	2.86777787273e-05	-1.94537265598e-05
+UniRef50_Q83MG9	Probable crotonobetaine carnitine CoA ligase	0.00424737238161	0.000738914603909	-0.0035084577777
+UniRef50_UPI000374E0DC	hypothetical protein	2.71531122792e-05	0.000173432073752	0.000146278961473
+UniRef50_UPI0003182F0E	amino acid ABC transporter ATP binding protein	0.000151848825991	7.40032027594e-05	-7.78456232316e-05
+UniRef50_A1VXS2	GTP cyclohydrolase 1	3.11475697043e-05	0.00803465479294	0.00800350722324
+UniRef50_A3NGW6	2 aminoethylphosphonate  pyruvate transaminase	0.000635841260221	0.000527875642999	-0.000107965617222
+UniRef50_Q5F904	Cytidylate kinase	9.03460444211e-06	5.43577638848e-05	4.53231594427e-05
+UniRef50_D2ZRU8	Transglutaminase like protein	0.00359887721456	0.00086684012795	-0.00273203708661
+UniRef50_D5QFG0	Oligopeptide dipeptide ABC transporter, ATP binding protein like protein	0.00744897272059	0.00146101880512	-0.00598795391547
+UniRef50_UPI0003B64D82	DNA topoisomerase III	4.59698119917e-06	6.22626347786e-06	1.62928227869e-06
+UniRef50_UPI00016AA13E	hypothetical protein	0.00016667708334	0.000406548696204	0.000239871612864
+UniRef50_Q9CM13	Magnesium and cobalt efflux protein CorC	0.00155357691633	0.000203432862359	-0.00135014405397
+UniRef50_A5UMG3	Potassium transport system, membrane component, KefB	0.00272328369291	0.000406295068956	-0.00231698862395
+UniRef50_Q9HZP9	Precorrin 4 C methyltransferase	0.000312833692416	2.17181010258e-05	-0.00029111559139
+UniRef50_Q9RVT2		0.000871121512734	0.0590542470524	0.0581831255397
+UniRef50_UPI000375E2EF	hypothetical protein	0.000324993960027	9.30806073818e-05	-0.000231913352645
+UniRef50_Q6GE66	Probable malate	0.0166860722604	0.00215418778532	-0.0145318844751
+UniRef50_G7M706	Helix turn helix domain protein	0.000660666894504	0.000836811138647	0.000176144244143
+UniRef50_C5VY51	AzlC family protein	0.00324217012165	0.00294864050536	-0.00029352961629
+UniRef50_G5JXL5	Rod shape determining protein MreD	0.0041767438353	0.000350177911301	-0.003826565924
+UniRef50_F3EJZ8	Nitrate reductase	0.000289289472983	0.000149088990278	-0.000140200482705
+UniRef50_X0YTR7	Marine sediment metagenome DNA, contig	1.7824664518e-05	5.81656972798e-05	4.03410327618e-05
+UniRef50_UPI000471CA6A	hypothetical protein	1.17911908514e-05	3.01185690832e-05	1.83273782318e-05
+UniRef50_UPI0003637C6B	hypothetical protein	4.09722061318e-06	6.52884024894e-06	2.43161963576e-06
+UniRef50_X2GN29	Metal ABC transporter permease	0.0193804739881	0.00609686235275	-0.0132836116353
+UniRef50_UPI000423E6F5	hypothetical protein	1.84440341707e-05	4.29187666253e-05	2.44747324546e-05
+UniRef50_UPI00046990FD	O acetylhomoserine aminocarboxypropyltransferase	2.68455580989e-05	3.32256545049e-05	6.380096406e-06
+UniRef50_F3U3H0	ABC peptide opine transporter, periplasmic substrate binding protein	0.00649281197224	0.00256849384026	-0.00392431813198
+UniRef50_UPI0003B4A86D	ABC transporter ATP binding protein	2.75671047908e-05	0.000145948801259	0.000118381696468
+UniRef50_B3PG87	Metallo beta lactamase superfamily domain protein	0.00191698106923	0.00135118073172	-0.00056580033751
+UniRef50_A0A023X460	HGPRTase	0.0116587614098	0.00874283461916	-0.00291592679064
+UniRef50_A0A059IPV7		3.22776355119e-05	5.47785584726e-05	2.25009229607e-05
+UniRef50_F9NYN7	Conserved domain protein	2.10792734961e-05	1.82277505187e-05	-2.8515229774e-06
+UniRef50_UPI00046C8F06	50S ribosomal protein L1	2.87599279876e-05	0.00029912818424	0.000270368256252
+UniRef50_H5T409	ABC transporter substrate binding protein	1.64349257588e-05	1.36336056775e-05	-2.8013200813e-06
+UniRef50_D8N394		5.14014845735e-07	0.000230198674676	0.00022968465983
+UniRef50_E0MSL9	Thymocyte nuclear protein 1	0.000214039403528	7.68021641043e-05	-0.000137237239424
+UniRef50_A6M2L8	Protein tyrosine phosphatase	0.000761355179524	0.000794866846363	3.3511666839e-05
+UniRef50_A6LYX8	ABC transporter related	0.000444407956235	0.00233264697442	0.00188823901818
+UniRef50_A8Z6F5	Chorismate synthase	4.66752535798e-06	2.32425642669e-05	1.85750389089e-05
+UniRef50_B5L3R8	WfeY	0.000121904558218	1.17898064305e-05	-0.000110114751788
+UniRef50_UPI00047E8000	hypothetical protein	1.44412795432e-05	2.92841500612e-05	1.4842870518e-05
+UniRef50_M9V9W9		0.000320355860411	0.00334421710288	0.00302386124247
+UniRef50_W5ENS0		0.000122295676732	0.000216403482487	9.4107805755e-05
+UniRef50_Q8CNA9	Phosphoglycolate phosphatase	0.0264437636495	0.00605454864904	-0.0203892150005
+UniRef50_B9KMF0		0.00061197918371	7.85355569744e-05	-0.000533443626736
+UniRef50_R8ZAQ7	Sarcosine oxidase subunit alpha	0.00048718082496	0.000970181975066	0.000483001150106
+UniRef50_UPI00023B2764		9.24284892252e-05	0.000111694104904	1.92656156788e-05
+UniRef50_UPI0003C11580	PREDICTED	4.00856192739e-05	0.00073225148054	0.000692165861266
+UniRef50_Q9K8U9	Oligo 1,6 glucosidase	2.96870063558e-05	5.45003182906e-05	2.48133119348e-05
+UniRef50_UPI0002557D02	hypothetical protein	9.42131105622e-05	2.63325686945e-05	-6.78805418677e-05
+UniRef50_G7M7C0	Cell wall binding repeat containing protein	0.000524837713307	0.00174192079327	0.00121708307996
+UniRef50_P0AAF0	Probable cadaverine lysine antiporter	0.00328549138473	0.00261423317635	-0.00067125820838
+UniRef50_X1BS27	Marine sediment metagenome DNA, contig	8.39219792183e-06	0.000833278922693	0.000824886724771
+UniRef50_UPI000478AB20	ABC transporter ATP binding protein	7.94809058969e-06	3.53692605646e-05	2.74211699749e-05
+UniRef50_F0RJQ8	Acetolactate synthase	6.66543829593e-05	0.0181524746349	0.0180858202519
+UniRef50_A8IE40	Chromate transport protein	0.000227858745785	0.0114583824763	0.0112305237305
+UniRef50_W1YMN4		2.71576867072e-05	1.93955156783e-05	-7.7621710289e-06
+UniRef50_UPI000403C5BD	hypothetical protein	1.15042475194e-06	5.97033688853e-06	4.81991213659e-06
+UniRef50_UPI000373B07D	hypothetical protein	5.03149491931e-05	0.0023452986544	0.00229498370521
+UniRef50_D4ZGG3		6.26483866483e-05	3.45759184601e-05	-2.80724681882e-05
+UniRef50_C7RB36	Acyl CoA dehydrogenase domain protein	0.000419858406031	0.00715211876228	0.00673226035625
+UniRef50_P56904	Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000297730951128	0.00155432747759	0.00125659652646
+UniRef50_Q04760	Lactoylglutathione lyase	9.65764210344e-06	2.45987469006e-05	1.49411047972e-05
+UniRef50_Q8CNV0	Spore cortex protein like protein	0.0202037879956	0.00581123780409	-0.0143925501915
+UniRef50_UPI00029B28E4	hydrogenase nickel incorporation protein HypA	4.29119391833e-05	2.93511963384e-05	-1.35607428449e-05
+UniRef50_UPI0003B738BF	O acetylhomoserine aminocarboxypropyltransferase	3.37917667269e-05	1.98595781917e-05	-1.39321885352e-05
+UniRef50_UPI00037956D5	hypothetical protein	0.000355002497348	0.000538571498834	0.000183569001486
+UniRef50_UPI00017458ED	ATP binding transport protein; multicopy suppressor of HtrB	3.79513768276e-05	3.10307854756e-05	-6.920591352e-06
+UniRef50_K1H2M5	Carbamoyl phosphate synthase small chain	3.3765307492e-05	1.50871337279e-05	-1.86781737641e-05
+UniRef50_Q59330	Phosphate acetyltransferase	9.94885703294e-06	0.000917584688273	0.00090763583124
+UniRef50_Q5HQY7	Glycerate kinase family protein	0.0230993969468	0.00753952607299	-0.0155598708738
+UniRef50_B0S0R4	Transcriptional regulator PadR family	0.000166711485341	3.28638116755e-05	-0.000133847673665
+UniRef50_A6LXB1		0.000542483980407	0.000779854278838	0.000237370298431
+UniRef50_P08194	Glycerol 3 phosphate transporter	0.00284773049005	0.00177966095472	-0.00106806953533
+UniRef50_UPI000471094A	choline dehydrogenase	4.33495444514e-05	9.76951704318e-06	-3.35800274082e-05
+UniRef50_M0E7L5	DRTGG domain protein	0.000665300784727	0.000446857376782	-0.000218443407945
+UniRef50_UPI0003EDAB70	hypothetical protein, partial	1.2175805297e-05	3.21435333812e-06	-8.96145195888e-06
+UniRef50_A9U7B4	Predicted protein 	1.19998569447e-05	5.56513266428e-05	4.36514696981e-05
+UniRef50_A3PJJ0	Rhodanese domain protein	0.00462663793668	0.000728319353752	-0.00389831858293
+UniRef50_UPI00035C57AE	hypothetical protein	8.81151380126e-06	3.50981612289e-05	2.62866474276e-05
+UniRef50_UPI00046311A7	alpha beta hydrolase	6.79545757869e-06	1.98103872999e-05	1.30149297212e-05
+UniRef50_UPI00046F6433	hypothetical protein	9.04574574476e-06	1.36758151937e-05	4.63006944894e-06
+UniRef50_UPI000289D647	acetylglutamate kinase	3.03362657076e-05	1.1136113666e-05	-1.92001520416e-05
+UniRef50_R6BWJ5	Efflux ABC transporter permease ATP binding protein	0.0039281974601	0.00127546790154	-0.00265272955856
+UniRef50_H9UWH8		4.09173312276e-05	8.86865088187e-05	4.77691775911e-05
+UniRef50_Q4SXX9	Chromosome undetermined SCAF12296, whole genome shotgun sequence. 	0.000218209544355	0.000315105744735	9.689620038e-05
+UniRef50_F9YXR6	6 aminohexanoate dimer hydrolase	0.000203154129289	0.00703700367635	0.00683384954706
+UniRef50_Q0A9A9	3 isopropylmalate dehydratase small subunit	0.00435489648606	0.00266770011918	-0.00168719636688
+UniRef50_Q88FY7	Porin like protein NicP	0.000710914110435	0.000233144767263	-0.000477769343172
+UniRef50_A4WTZ9	Glycoside hydrolase, family 16	0.0151570967007	0.00233932231203	-0.0128177743887
+UniRef50_U4K6F1	Methylmalonate semialdehyde dehydrogenase [acylating]	0.00042724051235	0.0040759234227	0.00364868291035
+UniRef50_A0A023RX61	Metal binding protein	0.000207030706866	0.00749591711923	0.00728888641236
+UniRef50_Q75JL2	Mitochondrial DNA repair protein recA homolog	0.0171291469068	0.00717525230782	-0.00995389459898
+UniRef50_Q03SY7	Dipeptide tripeptide permease	0.000305245126778	0.00104756524836	0.000742320121582
+UniRef50_Q1CBV8	Phosphoenolpyruvate carboxylase	0.00323069753667	0.000503146823898	-0.00272755071277
+UniRef50_E9MXH2	Clumping factor A 	2.19662327627e-05	3.06516250148e-05	8.6853922521e-06
+UniRef50_Q8GPI8		0.00650048990936	0.00168592373696	-0.0048145661724
+UniRef50_P0ACL3	Exu regulon transcriptional regulator	0.00643298976639	0.00163618490691	-0.00479680485948
+UniRef50_U1FCM2		7.27781730365e-05	0.000227966559755	0.000155188386719
+UniRef50_S5XWF4	Transcriptional regulator, MerR family	0.0408945019794	0.00107350078112	-0.0398210011983
+UniRef50_Q48QI5	Oxidoreductase alpha  subunit, fusion	0.000266838818597	0.000269285749417	2.44693082e-06
+UniRef50_C5N6C7	DHHA1 domain protein	0.0144190351288	0.00772569847387	-0.00669333665493
+UniRef50_F5YTR0		3.88411229488e-06	1.67695379008e-06	-2.2071585048e-06
+UniRef50_G8VCG0	Acyltransferase	0.000124173022652	0.00271566575488	0.00259149273223
+UniRef50_P0AAN4	Hydrogenase isoenzymes nickel incorporation protein HypB	0.000897783075371	0.000898070266572	2.87191201e-07
+UniRef50_G3XD29	Na H(+) antiporter NhaP	0.000649990968404	0.000169559830726	-0.000480431137678
+UniRef50_G7U530	ABC transporter, ATP binding protein	0.000171066158086	0.00362712468574	0.00345605852765
+UniRef50_UPI0003B392E0	hypothetical protein	1.49313321786e-05	3.74806216369e-05	2.25492894583e-05
+UniRef50_M9V971	NADH quinone oxidoreductase subunit C	0.000236915892584	0.00403669441218	0.0037997785196
+UniRef50_Q2IMR8		0.000151415191822	0.000822296315087	0.000670881123265
+UniRef50_K8AK15	Putative threonine efflux protein	0.000418586823927	0.000469632869441	5.1046045514e-05
+UniRef50_Q7VFT4	Donor ubiquinone reductase I	7.9806762976e-05	0.002299864913	0.00222005815002
+UniRef50_C1DNP3	Short chain dehydrogenase reductase SDR	0.000355002497348	0.00207380049203	0.00171879799468
+UniRef50_C7ZV90	Thioredoxin	0.00553694694329	0.00182670126925	-0.00371024567404
+UniRef50_K9RE57	GAF domain containing protein	3.50148333121e-06	0.000401341716278	0.000397840232947
+UniRef50_L1AYN6	Inner membrane protein ybjJ	0.00096647296573	0.000472721838441	-0.000493751127289
+UniRef50_Q0B621	Sigma54 specific transcriptional regulator, Fis family	9.43714972093e-05	0.00012262285337	2.82513561607e-05
+UniRef50_UPI000371346A	hypothetical protein	2.06154441932e-05	1.11367090776e-05	-9.4787351156e-06
+UniRef50_A3M4G7	Surface antigen	0.000716745548459	0.0086049177893	0.00788817224084
+UniRef50_E2XNF0	Fatty acid oxidation complex subunit alpha	0.000619969900142	0.000272526302036	-0.000347443598106
+UniRef50_I0G4P6		9.93697147663e-05	3.18488107351e-05	-6.75209040312e-05
+UniRef50_Q9HJL5	Malate dehydrogenase	4.05335437595e-05	2.2644805839e-05	-1.78887379205e-05
+UniRef50_P0ACU3	HTH type transcriptional regulator RutR	0.000557344305512	0.000824139642406	0.000266795336894
+UniRef50_C1FT82	D alanyl D alanine carboxypeptidase family protein	0.000639806760763	0.00053975262049	-0.000100054140273
+UniRef50_O32333	Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.00380853036399	0.00914603950022	0.00533750913623
+UniRef50_UPI00037CE211	hypothetical protein	2.30410280647e-06	5.24551457363e-06	2.94141176716e-06
+UniRef50_G5LK96	Putative cytoplasmic protein	1.87403410728e-05	9.79140335994e-06	-8.94893771286e-06
+UniRef50_UPI0004694C70	glucosamine  fructose 6 phosphate aminotransferase	2.29731541851e-05	3.95087757806e-05	1.65356215955e-05
+UniRef50_V5VA73		0.000102763880809	0.00508829324991	0.0049855293691
+UniRef50_UPI0002491573	N acylamino acid racemase	1.32760121742e-05	0.000621143354204	0.00060786734203
+UniRef50_UPI00046F1E63	spermidine putrescine ABC transporter ATP binding protein	0.000144007283286	4.16227035212e-05	-0.000102384579765
+UniRef50_M9VHY4	DeoR family transcriptional regulator	0.000302796247737	0.00625510872728	0.00595231247954
+UniRef50_UPI000345870C	hypothetical protein	0.000241581313303	0.000123692308472	-0.000117889004831
+UniRef50_L8N0M9		1.65873532762e-05	0.013027794984	0.0130112076307
+UniRef50_P16684	Probable transcriptional regulator PhnF	0.0020767266039	0.000591429379792	-0.00148529722411
+UniRef50_P63978	DNA polymerase III subunit alpha	3.33008563678e-06	0.00437896057995	0.00437563049431
+UniRef50_D8IGU8	ABC superfamily ATP binding cassette transporter, ABC protein	0.00313284475072	0.00237521610529	-0.00075762864543
+UniRef50_Q604M0	tRNA pseudouridine synthase D	4.58948250417e-06	2.18074369399e-05	1.72179544357e-05
+UniRef50_M0EDY5		8.16215159392e-05	3.98979030029e-05	-4.17236129363e-05
+UniRef50_Y1FPC0		5.78450819582e-06	9.58127039807e-06	3.79676220225e-06
+UniRef50_UPI0000E48FF4	PREDICTED	4.09363282213e-05	5.18116360823e-05	1.0875307861e-05
+UniRef50_Q0S277	Probable dual specificity RNA methyltransferase RlmN	2.19875717813e-05	3.2801672109e-05	1.08141003277e-05
+UniRef50_Q3IVM7		0.00478719323747	0.00142567740779	-0.00336151582968
+UniRef50_A3V1R1	Flagellar protein FlgJ, putative	0.000116815451647	6.1708474133e-05	-5.5106977514e-05
+UniRef50_UPI000370C492	hypothetical protein	6.90633429479e-05	2.48681221594e-05	-4.41952207885e-05
+UniRef50_UPI0004647D08	hypothetical protein	3.94375058902e-06	5.33625610055e-06	1.39250551153e-06
+UniRef50_P58839	Glyceraldehyde 3 phosphate dehydrogenase	0.00383353550346	0.00218700099375	-0.00164653450971
+UniRef50_UPI0003B6456C	ATP dependent Clp protease ClpS	0.000466581291291	0.000180998448197	-0.000285582843094
+UniRef50_H9V023	TRAP transporter, DctM subunit	0.00038819860474	7.77946338983e-05	-0.000310403970842
+UniRef50_U7IWX4		4.90081696955e-05	0.000102163458263	5.31552885675e-05
+UniRef50_UPI0001746414	glycogen debranching protein	6.7671981773e-06	2.35994486284e-05	1.68322504511e-05
+UniRef50_F4CX14	FAD dependent oxidoreductase	7.96889859886e-06	0.000855440987	0.000847472088401
+UniRef50_N1MM41		3.26353404007e-05	3.30118681505e-05	3.765277498e-07
+UniRef50_UPI0003B5E825	ArsR family transcriptional regulator, partial	0.000126418600835	2.22867962678e-05	-0.000104131804567
+UniRef50_UPI00039D6F74	ubiquinol cytochrome C oxidoreductase	0.000117058806297	0.000326570611313	0.000209511805016
+UniRef50_Q0E4C7	Os02g0125700 protein 	0.000184294076221	0.000118522075738	-6.5772000483e-05
+UniRef50_UPI00036A48DC	hypothetical protein	6.93114996286e-05	3.0885181098e-05	-3.84263185306e-05
+UniRef50_Q5WDJ2	Putative sporulation transcription regulator WhiA	0.0232197598952	0.00729635775466	-0.0159234021405
+UniRef50_UPI00047AAA82	hypothetical protein	5.1133017633e-06	2.08152779195e-05	1.57019761562e-05
+UniRef50_Q0Q2J7	Putative antiporter subunit mnhD2	0.0167697175769	0.00669537082244	-0.0100743467545
+UniRef50_P43948	UDP N acetylmuramate	0.000262772192774	0.00749404349647	0.0072312713037
+UniRef50_Q28RG9	Transcriptional regulator, AsnC family	0.00126323970846	0.00464631616173	0.00338307645327
+UniRef50_B7L8J6	2  3 dephosphocoenzyme A synthase	0.00331605033119	0.000970283455674	-0.00234576687552
+UniRef50_UPI0003AEE558	PREDICTED	0.000200790419604	4.53085188458e-05	-0.000155481900758
+UniRef50_UPI00036ED489	hypothetical protein	1.7605382809e-05	6.9202572094e-05	5.1597189285e-05
+UniRef50_UPI0003B77D2D	DNA repair protein RadA	7.92941540656e-06	5.43068307366e-06	-2.4987323329e-06
+UniRef50_H6LCQ4	Branched chain amino acid ABC transport system permease protein LivM2	0.000344817063516	0.0011131923804	0.000768375316884
+UniRef50_UPI0004663E52	hypothetical protein	5.87993363731e-05	1.26598349593e-05	-4.61395014138e-05
+UniRef50_D8HCQ5	Aminopeptidase	0.00907523285814	0.00184063450864	-0.0072345983495
+UniRef50_Q2YQI5	Adenylosuccinate synthetase	0.00191397932047	0.0141961314676	0.0122821521471
+UniRef50_UPI0003B6ABA5	sugar ABC transporter ATPase, partial	6.02864137675e-05	1.21251564985e-05	-4.8161257269e-05
+UniRef50_A1APQ8	Succinyl CoA ligase [ADP forming] subunit beta	1.94654465478e-05	1.25561975779e-05	-6.9092489699e-06
+UniRef50_K4MG34	Beta Ig H3 fasciclin	1.42956855037e-05	3.28145401269e-06	-1.1014231491e-05
+UniRef50_P56145	Phenylalanine  tRNA ligase beta subunit	0.000167694835908	0.00406839703335	0.00390070219744
+UniRef50_Q1RH95	3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.6665989051e-05	1.81121988447e-05	1.4462097937e-06
+UniRef50_D5WB27	Histidine ammonia lyase	0.00017612479445	0.00760901936351	0.00743289456906
+UniRef50_J9NST0		1.73336490442e-05	5.22636825252e-05	3.4930033481e-05
+UniRef50_P00561	Bifunctional aspartokinase homoserine dehydrogenase 1	0.000530309264921	0.00057016696198	3.9857697059e-05
+UniRef50_UPI00047E7181	hypothetical protein	2.53902412244e-06	0.000205978482689	0.000203439458567
+UniRef50_UPI000421E015	hypothetical protein	2.90051009587e-06	3.02782724178e-05	2.73777623219e-05
+UniRef50_UPI0003B5F4A9	hypothetical protein	4.49433847056e-05	5.48705522192e-05	9.9271675136e-06
+UniRef50_P77615		0.00277974044814	0.00306723218398	0.00028749173584
+UniRef50_P77616		0.00149638617425	0.000237202172853	-0.0012591840014
+UniRef50_D5AQK3	Cache sensor protein	0.00898676496674	0.00322197543682	-0.00576478952992
+UniRef50_UPI0003B4A397	hypothetical protein, partial	3.10325434458e-05	2.71625023638e-05	-3.870041082e-06
+UniRef50_UPI00047E19A4	ABC transporter ATP binding protein	2.84490179267e-05	1.91452053039e-05	-9.3038126228e-06
+UniRef50_Q9V8M5	Probable 3 hydroxyisobutyrate dehydrogenase, mitochondrial	9.54187117465e-06	3.7021116699e-05	2.74792455244e-05
+UniRef50_I0KAK8	Major facilitator superfamily MFS_1	9.07418242453e-05	0.00551195591426	0.00542121409001
+UniRef50_UPI00046328AB	hypothetical protein	1.67185495395e-05	1.31065009385e-05	-3.612048601e-06
+UniRef50_I6TSN2	Peptidase	0.00590506649337	0.00307190401022	-0.00283316248315
+UniRef50_UPI000463E283	ABC transporter substrate binding protein	8.08805608656e-06	7.575058767e-05	6.76625315834e-05
+UniRef50_G0AA04	Sulfate binding protein sbp	0.00408174572246	0.00764593547626	0.0035641897538
+UniRef50_I6TQ24	Folyl polyglutamate synthetase	0.00654218379533	0.0044296181832	-0.00211256561213
+UniRef50_UPI000366242D	hypothetical protein	1.01129802477e-05	2.18898030309e-05	1.17768227832e-05
+UniRef50_S9RVB4	Gene Transfer Agent NlpC P60 family peptidase	3.7055222693e-06	3.98363849304e-05	3.61308626611e-05
+UniRef50_M1MRW4	Haloacid dehalogenase superfamily enzyme, subfamily IA	0.000172368031437	0.000591689469991	0.000419321438554
+UniRef50_U6AND4	Transcriptional regulator, LysR family	0.000326625231868	0.000520367091081	0.000193741859213
+UniRef50_UPI0003809FBC	gluconate transporter, partial	6.67594907431e-06	0.000187257969817	0.000180582020743
+UniRef50_A9ANH6	Transcriptional regulator, AraC family	0.000135786326927	0.000216349234575	8.0562907648e-05
+UniRef50_UPI0004708F76	ABC transporter ATP binding protein	2.36265625571e-05	4.57605766819e-05	2.21340141248e-05
+UniRef50_UPI00036BF64F	hypothetical protein	6.29481283748e-06	8.80365369561e-06	2.50884085813e-06
+UniRef50_Q8G5P8	Methionine import ATP binding protein MetN	1.11933076521e-05	7.63900334175e-06	-3.55430431035e-06
+UniRef50_D3E2P1	Bicarbonate ABC transporter ATP binding protein BtcA	0.00452309951396	0.00129070068068	-0.00323239883328
+UniRef50_I6TQK5		0.00578422433849	0.00033432079833	-0.00544990354016
+UniRef50_A1UAJ5		0.00920037897169	0.00319629765922	-0.00600408131247
+UniRef50_I6U427	Sugar binding periplasmic protein	0.00481288687163	0.00146180753323	-0.0033510793384
+UniRef50_C7D6Q8	Lipoprotein, putative	1.84903573751e-05	1.48174907703e-05	-3.6728666048e-06
+UniRef50_P36928		0.00398547122777	0.000813460942127	-0.00317201028564
+UniRef50_Q5HLU9		0.0102665343482	0.00204692028092	-0.00821961406728
+UniRef50_A6UM37		0.000987740897369	0.000334363005098	-0.000653377892271
+UniRef50_W1MWT9		0.000756600516044	0.000229223833269	-0.000527376682775
+UniRef50_Q5HLU0		0.00084672416931	0.00096825149244	0.00012152732313
+UniRef50_G7Z253		0.00108788854871	0.000758250307607	-0.000329638241103
+UniRef50_UPI0003784C38	hypothetical protein	8.29434288576e-06	3.78072509614e-05	2.95129080756e-05
+UniRef50_Q168A3	Holliday junction ATP dependent DNA helicase RuvA	4.47058521567e-05	2.13994459434e-05	-2.33064062133e-05
+UniRef50_Q9RSC3	UDP glucose 4 epimerase	0.000405304692528	0.0203168803191	0.0199115756266
+UniRef50_A8AJ50		0.000424141560512	0.000661156802679	0.000237015242167
+UniRef50_UPI000465930A	MULTISPECIES	1.83696336188e-05	2.38254004777e-05	5.4557668589e-06
+UniRef50_A7ZQY1	D phenylhydantoinase	0.00343279192196	0.00105400190068	-0.00237879002128
+UniRef50_Q8RGA3	Tryptophan  tRNA ligase	7.81405623949e-06	1.61317779569e-05	8.31772171741e-06
+UniRef50_UPI000475AC4B	lactate permease	4.80190225406e-06	2.58909894511e-05	2.1089087197e-05
+UniRef50_UPI0000164CFE	hypothetical protein DR_2417m	0.000657459458912	0.0487816943293	0.0481242348704
+UniRef50_E4PYL2	Plasmid recombination protein, Mob family	0.027198422793	0.00449850209926	-0.0226999206937
+UniRef50_UPI0003614BF9	hypothetical protein	0.000929398911926	0.000637981684785	-0.000291417227141
+UniRef50_K0LK11	ABC transporter, ATP binding protein	0.0182013804019	0.00609182674174	-0.0121095536602
+UniRef50_A5UME7	Arsenite transporting ATPase	0.0038032037515	0.000981813823058	-0.00282138992844
+UniRef50_Q8CQM8		0.0141874817969	0.00577124006317	-0.00841624173373
+UniRef50_UPI0003A8604F	DNA polymerase I	1.83482923464e-06	3.89210870262e-06	2.05727946798e-06
+UniRef50_Q9KVU3	Peptide deformylase 1	8.77624864117e-05	5.50704173912e-05	-3.26920690205e-05
+UniRef50_T1Y647	Ribitol 5 phosphate 2 dehydrogenase	0.0251449596379	0.0109745763734	-0.0141703832645
+UniRef50_A5ULT4	Adhesin like protein	0.00300512413483	0.00102613917044	-0.00197898496439
+UniRef50_B5F295	NAD kinase	6.04582796427e-05	8.55455051512e-05	2.50872255085e-05
+UniRef50_UPI0003796137	hypothetical protein	3.01303514984e-05	0.000275245003707	0.000245114652209
+UniRef50_UPI00032895A1	PREDICTED	2.23098804281e-05	5.17511559535e-06	-1.71347648327e-05
+UniRef50_A5KZG1	Sex pilus assembly and synthesis protein TraW	0.000127498867064	2.70174144772e-05	-0.000100481452587
+UniRef50_UPI000377C2D0	hypothetical protein	8.06877810059e-05	2.69348466021e-05	-5.37529344038e-05
+UniRef50_P0AFB0	Nickel transport system permease protein NikC	0.00339311427549	0.00107420143177	-0.00231891284372
+UniRef50_D8JIG5		3.41654998594e-05	5.37531484332e-05	1.95876485738e-05
+UniRef50_UPI0002195926	spermidine putrescine ABC transporter substrate binding protein	2.63265855334e-05	0.000111378965981	8.50523804476e-05
+UniRef50_M1MNN2		0.000173158710486	0.00076512568067	0.000591966970184
+UniRef50_D8FZ53		1.44890968787e-05	0.000285515219498	0.000271026122619
+UniRef50_J7LRM2	Gamma aminobutyraldehyde dehydrogenase	7.97505610236e-05	0.00720929462535	0.00712954406433
+UniRef50_E6U6T5	Major facilitator superfamily MFS_1	0.00110852314383	0.0016799595578	0.00057143641397
+UniRef50_F2JM65	Alcohol dehydrogenase	0.000435691095207	0.00114048192533	0.000704790830123
+UniRef50_A5UKJ6		0.00258369193486	0.000322750497486	-0.00226094143737
+UniRef50_P40924	Phosphoglycerate kinase	5.23413886284e-05	0.0203077273163	0.0202553859277
+UniRef50_UPI0003804C63	hypothetical protein	1.92743421822e-05	1.88740800277e-05	-4.002621545e-07
+UniRef50_UPI000362831E	hypothetical protein	2.54620468734e-06	0.000689441014069	0.000686894809382
+UniRef50_W8RX73	Cytochrome C	0.00112888599176	0.0013691531857	0.00024026719394
+UniRef50_P32014	Capsule polysaccharide export inner membrane protein CtrB	0.000334034435074	0.00335474366775	0.00302070923268
+UniRef50_I7DUX8	ABC transporter ATP binding protein	0.00447182700257	0.00101300364074	-0.00345882336183
+UniRef50_G2L2K0	Penicillin binding protein 3A	0.000158068812007	0.000545330940557	0.00038726212855
+UniRef50_Q2LR78	Glutamate 5 kinase	4.25806369744e-06	6.18060963561e-06	1.92254593817e-06
+UniRef50_UPI000468E962	hypothetical protein	5.42210797777e-06	6.94435740917e-06	1.5222494314e-06
+UniRef50_Q5HRW9		0.0105854037675	0.00204636272098	-0.00853904104652
+UniRef50_Q5HKM6		0.0121409400019	0.00326961798458	-0.00887132201732
+UniRef50_UPI0002B8EE79		5.58404174135e-05	1.43148306175e-05	-4.1525586796e-05
+UniRef50_Q5HRW3		0.00352379205711	0.00251973321369	-0.00100405884342
+UniRef50_R6W4I9	Glycerol 3 phosphate dehydrogenase anaerobic B subunit	4.59991657778e-05	4.60013256345e-05	2.1598567e-09
+UniRef50_Q6DAT5	L threonine 3 dehydrogenase	8.62132554775e-05	0.000103134636585	1.69213811075e-05
+UniRef50_D6DGD0	Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain	0.00067836330399	0.00524925567144	0.00457089236745
+UniRef50_Q9FA54	Glucans biosynthesis protein G	0.00563411520595	0.00265096000823	-0.00298315519772
+UniRef50_UPI0002629408	riboflavin biosynthesis protein RibD	7.5952552475e-06	6.37567767136e-06	-1.21957757614e-06
+UniRef50_UPI00037ECE7A	hypothetical protein	8.82781830821e-06	1.44908772334e-05	5.66305892519e-06
+UniRef50_H3CIZ8		0.000328248685954	9.13330065475e-05	-0.000236915679407
+UniRef50_C0ZDE1	ABC transporter substrate binding protein	0.022127574577	0.00916300584971	-0.0129645687273
+UniRef50_P56891	Phosphoadenosine phosphosulfate reductase	1.01505447278e-05	1.04529853861e-05	3.024406583e-07
+UniRef50_J0WNU1		5.05197272186e-05	2.02289879385e-06	-4.84968284248e-05
+UniRef50_UPI000467B474	integrase, partial	0.000549736876965	0.000286715247755	-0.00026302162921
+UniRef50_L9MX54	Phage like baseplate assembly protein	8.50596860029e-05	0.00500460460188	0.00491954491588
+UniRef50_UPI000454729B	PREDICTED	1.62484531464e-05	5.08849853831e-06	-1.11599546081e-05
+UniRef50_E8RQD7	Peptidase M15A	4.15147683291e-06	1.10806945981e-05	6.92921776519e-06
+UniRef50_D1GNQ1	Aldo keto reductase family protein	0.0189278288728	0.00975261312967	-0.00917521574313
+UniRef50_P75835	Inner membrane transporter YcaM	0.00342985438353	0.00150097962544	-0.00192887475809
+UniRef50_B4T6V0	Orotidine 5 phosphate decarboxylase	9.11470863667e-05	0.00540022006541	0.00530907297904
+UniRef50_B9QX37		5.6926271745e-05	7.46556695816e-05	1.77293978366e-05
+UniRef50_UPI00046968BE	hypothetical protein	3.09168702935e-06	5.04028006537e-06	1.94859303602e-06
+UniRef50_E6VT00	Periplasmic phosphate binding protein	5.53701504496e-06	7.83872394454e-06	2.30170889958e-06
+UniRef50_A6X6Y3		0.000196287472017	8.34500045881e-05	-0.000112837467429
+UniRef50_Q00UL4	WGS project CAID00000000 data, contig chromosome 16	0.0002271911947	3.21821203537e-05	-0.000195009074346
+UniRef50_W5XBC0	30S ribosomal protein S3	0.000286980109978	0.000586742306421	0.000299762196443
+UniRef50_T1ZLX4	Transaldolase	0.0322541136059	0.00365621992571	-0.0285978936802
+UniRef50_UPI00036712C2	hypothetical protein, partial	0.000164683891353	2.54545804178e-05	-0.000139229310935
+UniRef50_A5UL05	Conserved hypothetical membrane protein Msm_0678	0.00189966820991	0.000316410755563	-0.00158325745435
+UniRef50_C2THV2		0.000168689352317	0.00048412574623	0.000315436393913
+UniRef50_A6LQP6		0.000971819739094	0.000920158245145	-5.1661493949e-05
+UniRef50_Q9RV37		0.00131681158902	0.0313659508802	0.0300491392912
+UniRef50_F8JYV1		0.000104415643072	0.000113733545964	9.317902892e-06
+UniRef50_Q9RV33		0.000368878816464	0.284296397807	0.283927518991
+UniRef50_A6LQP1		0.000172894346045	0.00236709482168	0.00219420047563
+UniRef50_P66936	DNA gyrase subunit B	0.0265086483188	0.00810541267735	-0.0184032356415
+UniRef50_UPI00037BCD79	hypothetical protein, partial	4.2036591597e-05	0.000146838433029	0.000104801841432
+UniRef50_W5X9F8	Polyphosphate kinase	2.42284768311e-06	0.0001191110645	0.000116688216817
+UniRef50_B2VFX0	Protein Syd	0.00466402111213	0.000325716954257	-0.00433830415787
+UniRef50_Q5HLU5	SugE protein	0.00129914009151	0.000600644146164	-0.000698495945346
+UniRef50_Q88F38	Cation transporting P type ATPase	0.000168155470433	8.49832245247e-05	-8.31722459083e-05
+UniRef50_UPI0003B6672C	50S ribosomal protein L24, partial	5.60503169801e-05	0.000265006347746	0.000208956030766
+UniRef50_L5UXA6	Glycosyl transferase, group 2 family protein	0.000529873048328	0.0024938656632	0.00196399261487
+UniRef50_K4A3K7		0.000930730898387	0.000431164163464	-0.000499566734923
+UniRef50_UPI000475C24E	phosphoribosylaminoimidazole carboxylase	6.1735596004e-06	6.12098101113e-06	-5.257858927e-08
+UniRef50_UPI0002F5CF5E	hypothetical protein	1.05122041938e-05	1.31217912326e-05	2.6095870388e-06
+UniRef50_A5FNF9	Lipoyl synthase	5.47672342448e-06	4.08591233341e-05	3.53823999096e-05
+UniRef50_Q1LTX5	Adenylate kinase	7.8679174239e-06	1.31521698773e-05	5.2842524534e-06
+UniRef50_B2GLQ7	Biotin synthase	0.000435037591562	0.00673261521158	0.00629757762002
+UniRef50_B9KX84		0.000134364899842	0.00018248200115	4.8117101308e-05
+UniRef50_D2J7P9	Replication initiator protein	0.00834619944178	0.000133697660085	-0.0082125017817
+UniRef50_UPI0003F8A6FF	hypothetical protein	5.24200468485e-05	8.5866025566e-05	3.34459787175e-05
+UniRef50_G2T679	CRISPR associated helicase Cas3 family protein	4.60988269145e-05	7.63116500443e-06	-3.84676619101e-05
+UniRef50_F4LK69	Regulatory protein TetR	0.00616809800164	0.00363507015887	-0.00253302784277
+UniRef50_Q8TWX0	Carbamoyl phosphate synthase large chain, N terminal section	1.94036608189e-05	7.10908551621e-06	-1.22945753027e-05
+UniRef50_D9PX81	FAD synthase	0.00131070661436	0.00212814756194	0.00081744094758
+UniRef50_X6N172		4.24489266771e-06	2.07307355095e-05	1.64858428418e-05
+UniRef50_X1SQS0	Marine sediment metagenome DNA, contig	2.16217787872e-05	0.000170333857364	0.000148712078577
+UniRef50_UPI000406F11E	permease	3.64315753729e-06	1.49815793631e-05	1.13384218258e-05
+UniRef50_Q3IWF1	AMP binding enzyme	0.00115958987202	0.000562250478975	-0.000597339393045
+UniRef50_UPI0003B50149	5 amino 6 uracil reductase	6.02656334017e-06	5.99559404169e-05	5.39293770767e-05
+UniRef50_UPI0004787588	NAD dependent dehydratase	0.000402718204	3.94025422642e-05	-0.000363315661736
+UniRef50_UPI00036D4BC8	hypothetical protein, partial	6.87133260219e-05	6.20816136414e-05	-6.6317123805e-06
+UniRef50_I6T8B1		0.00117658764336	0.00280405393727	0.00162746629391
+UniRef50_UPI00034FE692	PREDICTED	5.26565911919e-05	0.00014013856307	8.74819718781e-05
+UniRef50_Q9RUD9		0.000126390398057	0.0249739433388	0.0248475529407
+UniRef50_M9S778	Two component sensor	0.000325859434811	0.000105219728687	-0.000220639706124
+UniRef50_UPI00037416F3	hypothetical protein	1.79114179214e-06	2.15382021394e-06	3.626784218e-07
+UniRef50_D4H976	Dihydrofolate reductase	0.000795642209936	0.00143022103662	0.000634578826684
+UniRef50_I3UPT4	AMP dependent synthetase and ligase	0.000416701857449	0.0158768196205	0.0154601177631
+UniRef50_A6LTP7	Multi sensor signal transduction histidine kinase	0.000349453338786	0.00188722532225	0.00153777198346
+UniRef50_U5MZ96	Sulfate adenylyltransferase subunit 1	0.000255381049746	0.00163710706659	0.00138172601684
+UniRef50_UPI00039A293C	amino acid ABC transporter permease	4.96692090564e-05	3.83234720158e-05	-1.13457370406e-05
+UniRef50_UPI000417C130	MerR family transcriptional regulator	3.90654319672e-05	4.47251553353e-05	5.6597233681e-06
+UniRef50_B9KQ54	Phosphate starvation inducible E	0.00615068307641	0.00403373445639	-0.00211694862002
+UniRef50_K7UQK0		0.00040172288342	0.00037540259135	-2.632029207e-05
+UniRef50_UPI0003FD08E7	MULTISPECIES	7.90011968155e-06	9.5045789591e-06	1.60445927755e-06
+UniRef50_P95907	Glycerol kinase 2	2.36208727825e-05	8.13554320578e-05	5.77345592753e-05
+UniRef50_B3PN30	DNA gyrase subunit A	7.30528499122e-06	1.18001024997e-05	4.49481750848e-06
+UniRef50_K0HFT9		5.28198678376e-05	0.00409030991727	0.00403749004943
+UniRef50_UPI00046EC477	hypothetical protein, partial	4.89167655137e-05	3.51008431594e-05	-1.38159223543e-05
+UniRef50_UPI0004639765	hypothetical protein, partial	1.76355109358e-05	3.79588827765e-05	2.03233718407e-05
+UniRef50_UPI000225FA9E	hypothetical protein	3.41257426237e-05	1.98715735663e-05	-1.42541690574e-05
+UniRef50_UPI0003041FF9	hypothetical protein	0.000165560394148	5.35261402834e-05	-0.000112034253865
+UniRef50_P44450	Formate dehydrogenase iron sulfur subunit	0.00497099228313	0.0010493614941	-0.00392163078903
+UniRef50_D4MEH6	Hemolysins and related proteins containing CBS domains	0.00751433152063	0.00421041737216	-0.00330391414847
+UniRef50_W6KFD1		2.01765961771e-05	1.03614413656e-05	-9.8151548115e-06
+UniRef50_P0AFF4	Nucleoside permease NupG	0.00695202810137	0.000827585499186	-0.00612444260218
+UniRef50_UPI0003B5C461	30S ribosomal protein S4	3.14893792771e-05	0.000267101127091	0.000235611747814
+UniRef50_UPI00036F3F50	hypothetical protein	1.37032091684e-05	2.40843544294e-05	1.0381145261e-05
+UniRef50_P52078		0.0171996635391	0.00520707337005	-0.0119925901691
+UniRef50_R7LL20		6.17942048372e-05	5.15338195262e-05	-1.0260385311e-05
+UniRef50_Q6FD51	Aminopeptidase P	8.93810549727e-05	0.00540022150259	0.00531084044762
+UniRef50_Q5GUU6		9.85568104139e-06	4.17115420451e-05	3.18558610037e-05
+UniRef50_A3K9P8		5.1674524753e-05	0.000106299060078	5.4624535325e-05
+UniRef50_Q2RVQ3		0.00158284656614	0.00083536463216	-0.00074748193398
+UniRef50_W4HQH1		1.3106406923e-05	1.5370601937e-05	2.264195014e-06
+UniRef50_P67051	Thymidylate synthase	0.00377263560373	0.00403727310054	0.00026463749681
+UniRef50_UPI0002492BAD	sugar ABC transporter ATPase	1.42634758285e-05	2.08202325954e-05	6.5567567669e-06
+UniRef50_Q57180		0.000453037391315	0.0114759069772	0.0110228695859
+UniRef50_D0LYV0		2.59058104479e-05	7.32110425834e-06	-1.85847061896e-05
+UniRef50_UPI000478D57C	hypothetical protein	5.16369785282e-06	1.97626488878e-05	1.4598951035e-05
+UniRef50_F9YXY3	Phosphate binding protein PstS	0.000330532551907	0.00631221279842	0.00598168024651
+UniRef50_Q9RTB2		6.6213513098e-05	0.0426761947741	0.042609981261
+UniRef50_R6QEM9	Oxidoreductase short chain dehydrogenase reductase family protein	0.000174762031871	0.00215212519749	0.00197736316562
+UniRef50_D8GL93	Adenine deaminase	0.000136645604629	0.00118400466695	0.00104735906232
+UniRef50_V8UF34		0.000232599735175	0.000114680532496	-0.000117919202679
+UniRef50_P0ACL0	Glycerol 3 phosphate regulon repressor	0.00307562852661	0.000776998345638	-0.00229863018097
+UniRef50_X5EPD5	Iron ascorbate oxidoreductase	0.000555064216431	0.0012547447402	0.000699680523769
+UniRef50_Q74RF9	Maltose transport system permease protein MalF	0.00267831639582	0.000629533809413	-0.00204878258641
+UniRef50_A5IVI8	Protein disulfide isomerase like protein	0.0100620037701	0.000321578989328	-0.00974042478077
+UniRef50_N5SB54		6.11306513292e-05	0.000126734486814	6.56038354848e-05
+UniRef50_UPI000371F13D	hypothetical protein, partial	1.30533238052e-05	1.66867831787e-05	3.6334593735e-06
+UniRef50_UPI00037C627C	hypothetical protein	3.94121017778e-05	3.83338501595e-05	-1.0782516183e-06
+UniRef50_O05220		0.0112105640704	0.000341406595601	-0.0108691574748
+UniRef50_UPI000418FC9B	biotin attachment protein	3.07298493448e-05	9.69662840157e-05	6.62364346709e-05
+UniRef50_UPI00046AABC6	recombinase RecF	2.20395303685e-05	1.13561158464e-05	-1.06834145221e-05
+UniRef50_B4V9Q0		5.88009157444e-05	6.02733221586e-05	1.4724064142e-06
+UniRef50_O06924	Acetyl S ACP	9.08874772519e-05	0.0052620970499	0.00517120957265
+UniRef50_C6S5H1	Protein disulfide isomerase	0.000222050581675	0.00203896762174	0.00181691704006
+UniRef50_G7M244	Mannosyl glycoprotein endo beta N acetylglucosamidase	0.0002066529136	0.000215822196247	9.169282647e-06
+UniRef50_L0FRW3		3.63087897843e-05	1.7104474177e-05	-1.92043156073e-05
+UniRef50_G8V6G8		0.0124681276502	0.000577414994704	-0.0118907126555
+UniRef50_U3H984		0.000317066401727	0.00235522488852	0.00203815848679
+UniRef50_Q6G9J2	Anthranilate synthase component I	0.018531529984	0.00378665942533	-0.0147448705587
+UniRef50_C6SPU8	Glucan binding protein C	0.00505614040375	0.0017301255981	-0.00332601480565
+UniRef50_Q47S88		8.85322585204e-06	1.30946994982e-05	4.24147364616e-06
+UniRef50_UPI0001F2A777	hypothetical protein AOR_1_134104	1.40055810171e-05	1.66715157775e-05	2.6659347604e-06
+UniRef50_W7VUT6	Alanine dehydrogenase	0.000312602695192	0.000254016518955	-5.8586176237e-05
+UniRef50_UPI0003615879	hypothetical protein	1.6202379547e-05	2.30232240154e-05	6.8208444684e-06
+UniRef50_UPI0002E18D8D	hypothetical protein	6.02237927036e-06	1.12106639584e-05	5.18828468804e-06
+UniRef50_Q58899	UDP N acetylglucosamine 2 epimerase	0.00404145023959	0.00179373964349	-0.0022477105961
+UniRef50_A3DGC7	DNA integrity scanning protein DisA	0.00065907517044	0.00231026667376	0.00165119150332
+UniRef50_I1B4H1		0.00199291615538	0.00108895556455	-0.00090396059083
+UniRef50_UPI00037C4D1B	hypothetical protein	7.98404689114e-05	3.37282980195e-05	-4.61121708919e-05
+UniRef50_L0A6W7		2.67957437305e-05	1.3686057415e-05	-1.31096863155e-05
+UniRef50_E5ASY5	DNA polymerase III subunit beta	0.000135299637578	0.00431908246866	0.00418378283108
+UniRef50_Q9RTT6	Cysteine  tRNA ligase	0.000161903457372	0.0459015585923	0.0457396551349
+UniRef50_Q2I2W2	Egg case silk protein 2	6.32895762293e-06	2.30380696157e-06	-4.02515066136e-06
+UniRef50_Q9WZ28	Carbamoyl phosphate synthase small chain	1.44193478073e-05	7.33359147716e-06	-7.08575633014e-06
+UniRef50_P52696		0.00165666679941	0.000755412048227	-0.000901254751183
+UniRef50_P56580	Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.000267720559474	0.00127636705322	0.00100864649375
+UniRef50_C1MVJ6	Predicted protein	0.000171625332922	3.06430626791e-05	-0.000140982270243
+UniRef50_UPI0003EF10EB	hypothetical protein	0.0002413527699	0.000123217151347	-0.000118135618553
+UniRef50_UPI0003780D4B	hypothetical protein, partial	5.7468164637e-05	1.61195475573e-05	-4.13486170797e-05
+UniRef50_R7PQW4		6.88577835491e-05	0.00157333010141	0.00150447231786
+UniRef50_UPI00016B142B	F0F1 ATP synthase subunit beta, partial	2.09604706262e-06	4.59165817419e-06	2.49561111157e-06
+UniRef50_UPI000473C475	hypothetical protein, partial	3.31677221518e-05	2.56264924994e-05	-7.5412296524e-06
+UniRef50_W7J736		5.5617700212e-05	8.13425793846e-05	2.57248791726e-05
+UniRef50_O27739	Energy coupling factor transporter ATP binding protein EcfA	0.00649504207326	0.000300997260245	-0.00619404481302
+UniRef50_A5UNK3		0.000696691088564	0.000701092508093	4.401419529e-06
+UniRef50_Q92210	Phosphoribosylaminoimidazole carboxylase	1.76639495373e-05	2.51827994675e-05	7.5188499302e-06
+UniRef50_Q1CJW8	Macrolide export ATP binding permease protein MacB 1	1.90100044099e-06	8.53340917787e-06	6.63240873688e-06
+UniRef50_UPI00042688B1	hypothetical protein	0.000117001401368	0.000136717160549	1.9715759181e-05
+UniRef50_Q5LNV7		0.010257615189	0.00202796789503	-0.00822964729397
+UniRef50_R1BQD4		0.000131907310205	0.00028548621078	0.000153578900575
+UniRef50_Q16762	Thiosulfate sulfurtransferase	2.92758525086e-05	1.15355356642e-05	-1.77403168444e-05
+UniRef50_Q5FA95		5.94131169041e-05	0.00186707040297	0.00180765728607
+UniRef50_UPI0000167758	hypothetical protein	6.23814840172e-05	1.85270405389e-05	-4.38544434783e-05
+UniRef50_UPI0003EAFD31	PREDICTED	4.8819231337e-05	4.90204567108e-05	2.012253738e-07
+UniRef50_D0K910		0.0156974061215	0.00442474955693	-0.0112726565646
+UniRef50_E1M6K4	Aldehyde alcohol dehydrogenase 2	0.000233654863306	6.76039767643e-05	-0.000166050886542
+UniRef50_R7PUN2	Chlamydial polymorphic outer membrane protein repeat containing domain protein	2.50210721805e-05	8.12521568883e-06	-1.68958564917e-05
+UniRef50_UPI0003738034	hypothetical protein	1.49516142289e-06	2.34898526123e-06	8.5382383834e-07
+UniRef50_UPI000377F542	universal stress protein A, partial	0.000141320207057	6.50326098557e-05	-7.62875972013e-05
+UniRef50_B1YLN1	Cyclic nucleotide binding protein	1.05967860751e-05	2.57433155472e-05	1.51465294721e-05
+UniRef50_UPI0004575D3A	PREDICTED	2.88780381556e-06	4.08202001257e-06	1.19421619701e-06
+UniRef50_E1V7V8	Aspartate semialdehyde dehydrogenase 	8.3778196919e-06	2.36778144776e-05	1.52999947857e-05
+UniRef50_W8QZ31		5.79738522702e-05	2.11834607849e-05	-3.67903914853e-05
+UniRef50_E0DRL2	Transcriptional regulator	0.00011496810387	2.4045312681e-05	-9.0922791189e-05
+UniRef50_G8AUU4		8.23621158739e-05	8.96540434935e-05	7.2919276196e-06
+UniRef50_A2SME8		3.23686449414e-05	7.59187922985e-05	4.35501473571e-05
+UniRef50_UPI00029DABF0	PREDICTED	3.9427531914e-05	0.000108626350954	6.919881904e-05
+UniRef50_B2S0D7	DNA gyrase subunit A	5.96746080054e-06	1.29487910802e-05	6.98133027966e-06
+UniRef50_Q3IVR0		0.011310750354	0.00243727111011	-0.00887347924389
+UniRef50_Q3IVR4		0.00352757188072	0.00377150376131	0.00024393188059
+UniRef50_Q3IVR7		0.00978083173765	0.00014851893365	-0.009632312804
+UniRef50_Q5HKL3	RarD protein	0.0160009279628	0.00845938645724	-0.00754154150556
+UniRef50_T5YD38		0.00059290993013	0.000493565523996	-9.9344406134e-05
+UniRef50_F1SH72		0.000150907332576	0.000364478183102	0.000213570850526
+UniRef50_Q47RR4	tRNA dimethylallyltransferase	6.3661461836e-06	8.15210145751e-06	1.78595527391e-06
+UniRef50_UPI000364980E	hypothetical protein	2.93587283872e-05	1.85272146281e-05	-1.08315137591e-05
+UniRef50_I6TW93	Transposase	0.000344536686639	0.00861510112398	0.00827056443734
+UniRef50_K0L2R6	Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein	0.010125978931	0.00343907320571	-0.00668690572529
+UniRef50_B3PGL6	Pyoverdine ABC transporter, permease ATP binding protein	0.000932474316509	0.0002384449538	-0.000694029362709
+UniRef50_R6TDY4	ATPase histidine kinase DNA gyrase B HSP90 domain protein	7.01212363148e-05	0.00177204818259	0.00170192694628
+UniRef50_UPI0002F6E2AD	hypothetical protein	6.57259928765e-05	2.37857204022e-05	-4.19402724743e-05
+UniRef50_A4VRC8	Membrane protein, TIGR01666	0.000972376807363	0.000444084928647	-0.000528291878716
+UniRef50_E2XRI8	YcaO like fatty acid binding protein	0.000904624437586	0.000144220611698	-0.000760403825888
+UniRef50_W7SJH2	Transcriptional regulator	7.25828961296e-05	7.98647575189e-05	7.2818613893e-06
+UniRef50_UPI00047CB349	DNA gyrase subunit B	2.89052448466e-05	3.82519617194e-05	9.3467168728e-06
+UniRef50_UPI000393D820	PREDICTED	3.45431607188e-06	1.19779256582e-05	8.52360958632e-06
+UniRef50_P35595	PTS system glucose specific EIICBA component	0.0080054416916	0.00594505330486	-0.00206038838674
+UniRef50_P11701	Levansucrase	0.00812051859562	0.00149210009294	-0.00662841850268
+UniRef50_Q4KEM3	Two component sensor histidine kinase PedS1	0.000398470911846	0.000149017247225	-0.000249453664621
+UniRef50_I4KPZ2	Choline ABC transporter, ATP binding protein	0.000679080754717	0.00177869486044	0.00109961410572
+UniRef50_D9RD76	MFS family major facilitator transporter, bicyclomycin	0.0209513376319	0.00395586317548	-0.0169954744564
+UniRef50_B3EQY1	ABC type phosphate transport system periplasmic component like protein	3.6972000622e-06	6.57447823267e-06	2.87727817047e-06
+UniRef50_Q8FVT0	Putative ATP binding protein BRA0745 BS1330_II0738	0.00614958929933	0.00285589370023	-0.0032936955991
+UniRef50_G9PKM7		1.53370912451e-05	2.70943838033e-05	1.17572925582e-05
+UniRef50_B0VQI7		0.000832689681294	0.00750388422842	0.00667119454713
+UniRef50_A5F3F4	Vibriobactin specific isochorismatase	1.9368865006e-05	4.06100307513e-05	2.12411657453e-05
+UniRef50_W8S0N6		3.04325263901e-05	1.19657019564e-05	-1.84668244337e-05
+UniRef50_W8S6V4		5.21227415034e-06	3.08744378365e-06	-2.12483036669e-06
+UniRef50_F0YCB9		1.45505589963e-05	5.99963086808e-05	4.54457496845e-05
+UniRef50_UPI0001BF5B06	hypothetical protein SMAC_11105, partial	8.4195206378e-05	4.60459504988e-05	-3.81492558792e-05
+UniRef50_M5R665		7.30955119821e-06	3.60626555355e-05	2.87531043373e-05
+UniRef50_UPI00041E8F2C	hypothetical protein	2.46094983047e-05	6.81262103192e-05	4.35167120145e-05
+UniRef50_N5FY18	P loop ATPase	0.00192557945717	0.000289526181564	-0.00163605327561
+UniRef50_R1FJP7		0.00013435673277	0.000173943778871	3.9587046101e-05
+UniRef50_P54291	Acyl homoserine lactone synthase	0.00195418032151	0.000767380806037	-0.00118679951547
+UniRef50_D8UHU1		5.00940402212e-06	1.96611934953e-05	1.46517894732e-05
+UniRef50_UPI00045E12F9	PREDICTED	5.38230710835e-06	0.000194714311118	0.00018933200401
+UniRef50_Q12GA5	Dyp type peroxidase	0.000232537570129	0.000399977478817	0.000167439908688
+UniRef50_B9KSF4		0.00210033065119	3.87640262326e-05	-0.00206156662496
+UniRef50_Q2YA20	NADH quinone oxidoreductase subunit H 2	4.34706464487e-06	0.00301519424442	0.00301084717978
+UniRef50_A8AYH1	Glucose 1 phosphate adenylyltransferase, GlgD subunit	0.00826045846617	0.003469549694	-0.00479090877217
+UniRef50_Q49WT2	Excinuclease ATPase subunit	0.00935152060119	0.00248964988262	-0.00686187071857
+UniRef50_D7A127		3.07649580786e-06	2.12238952825e-05	1.81473994746e-05
+UniRef50_A5V6E6		1.47054139374e-05	5.2415280001e-05	3.77098660636e-05
+UniRef50_UPI0003B309A2	flagellin	1.3676023054e-05	4.48284689728e-06	-9.19317615672e-06
+UniRef50_UPI0003754A94	hypothetical protein	6.87126877685e-06	0.00017969230399	0.000172821035213
+UniRef50_UPI0004785717	hypothetical protein	3.13948965423e-05	2.45214542912e-05	-6.8734422511e-06
+UniRef50_D8JJ99	Fatty acid desaturase	0.000200270500699	0.00919027800764	0.00899000750694
+UniRef50_B2IML2	Ascorbate specific PTS system enzyme IIC	0.00659982236963	0.00573127687669	-0.00086854549294
+UniRef50_UPI00046730B7	hypothetical protein	1.01640728895e-05	2.03031126737e-05	1.01390397842e-05
+UniRef50_Q8X524	Sensor protein QseC	0.002382693266	0.000413024683256	-0.00196966858274
+UniRef50_B8GNE7	Peptidase M24	0.00174912788259	0.00201313558902	0.00026400770643
+UniRef50_D8GPC7	Regulatory protein	0.000411242934588	0.000930523458585	0.000519280523997
+UniRef50_UPI000379B182	hypothetical protein	0.000103416525565	5.13929596241e-05	-5.20235659409e-05
+UniRef50_E0XV83		0.000107586050663	8.72918284808e-05	-2.02942221822e-05
+UniRef50_A0A042PYY0		3.09732808672e-05	1.51336378342e-05	-1.5839643033e-05
+UniRef50_Q9I466	Bifunctional adenosylcobalamin biosynthesis protein CobP	0.000130577892319	0.000182553415976	5.1975523657e-05
+UniRef50_Q9I489		0.000125968628095	0.000332439067766	0.000206470439671
+UniRef50_Q47269		0.000530997660683	0.000391147953907	-0.000139849706776
+UniRef50_P37774		0.000695313524011	0.000472506728318	-0.000222806795693
+UniRef50_Q8A9K9	Isoleucine  tRNA ligase	1.19980617044e-06	6.67226883943e-06	5.47246266899e-06
+UniRef50_UPI0003670352	chemotaxis protein CheW	1.61346786277e-05	4.93524104889e-05	3.32177318612e-05
+UniRef50_K0T1C7		0.000206131182559	7.33145957287e-05	-0.00013281658683
+UniRef50_V9T5G7	ATPase	0.000676991035218	0.000592171034274	-8.4820000944e-05
+UniRef50_A4WS75	ATPase associated with various cellular activities, AAA_3	0.00370258999365	0.000169074449542	-0.00353351554411
+UniRef50_UPI00046413C1	hypothetical protein	1.55849813904e-05	1.08209353708e-05	-4.7640460196e-06
+UniRef50_UPI0001CC0058	putative ISRSO12 transposase 	6.19763590592e-06	1.93253848239e-05	1.3127748918e-05
+UniRef50_UPI00045EAD98	D amino acid aminotransferase	0.000103476034068	5.3091327679e-05	-5.0384706389e-05
+UniRef50_M9REZ0		0.0130916601532	0.0024233045962	-0.010668355557
+UniRef50_P81140	Glutaryl CoA dehydrogenase, mitochondrial 	2.58388453094e-05	0.000259730054698	0.000233891209389
+UniRef50_P44501	2 hydroxyacid dehydrogenase homolog	0.00537679030812	0.00053566519634	-0.00484112511178
+UniRef50_UPI000378023E	catalase	7.51403980138e-06	2.53557096606e-05	1.78416698592e-05
+UniRef50_UPI000255D957	thioesterase	9.21478880994e-06	8.67430340529e-05	7.7528245243e-05
+UniRef50_B0VCQ8	NADH dehydrogenase	0.000132761778031	0.00397741755827	0.00384465578024
+UniRef50_Q3IUV7	TraN	0.0330142938932	0.00843538952719	-0.024578904366
+UniRef50_G0AKF2		7.67047828324e-05	1.90495393119e-05	-5.76552435205e-05
+UniRef50_Q8D1X9	Phosphoenolpyruvate carboxykinase [ATP]	2.89501727837e-06	0.00469063728929	0.00468774227201
+UniRef50_Q0DGM2	Os05g0524100 protein 	0.000350780307088	5.71860085388e-05	-0.000293594298549
+UniRef50_UPI000361FC4E	hypothetical protein	0.000847477586539	0.000746047030207	-0.000101430556332
+UniRef50_UPI00046278DB	long chain fatty acid  CoA ligase, partial	3.38282779757e-05	6.65185490798e-05	3.26902711041e-05
+UniRef50_F4A5L9	PIS system, IIC component	0.00112228756118	0.00220313451772	0.00108084695654
+UniRef50_P37180	Probable Ni Fe hydrogenase 2 b type cytochrome subunit	0.00291153056421	0.000677594078739	-0.00223393648547
+UniRef50_Q9KNM2	Guanosine 3,5 bis 3 pyrophosphohydrolase	0.00264748460205	0.00190385416374	-0.00074363043831
+UniRef50_UPI0003EB0EAA	hypothetical protein, partial	0.000103530154109	4.73782935614e-05	-5.61518605476e-05
+UniRef50_W6BIT8	ParB like nuclease domain protein	0.000229690032861	4.83662623568e-05	-0.000181323770504
+UniRef50_X5DX57		0.00187087248108	0.000787511213846	-0.00108336126723
+UniRef50_Q98A81	Serine hydroxymethyltransferase 2	3.07639907102e-05	9.99653378854e-05	6.92013471752e-05
+UniRef50_A6M258	Sensor histidine kinase like protein	0.000173357743485	0.000602550751425	0.00042919300794
+UniRef50_G8VH52	Aminotransferase	0.000348196785645	0.00543838853477	0.00509019174912
+UniRef50_UPI0003FA6D6A	serine dehydratase	1.070499394e-05	0.000155669653754	0.000144964659814
+UniRef50_P55045	Formamidopyrimidine DNA glycosylase	0.00581960378923	0.00311430364661	-0.00270530014262
+UniRef50_UPI000362483E	hypothetical protein	2.95449488693e-05	2.94105557934e-05	-1.343930759e-07
+UniRef50_A5UNN3	Arylsulfatase regulator, AslB	0.00275554758971	0.00058437429166	-0.00217117329805
+UniRef50_A8AQ08	Threonine serine transporter TdcC	0.00317696380378	0.000331443215042	-0.00284552058874
+UniRef50_Q09C64		1.29116101556e-05	3.95200261598e-05	2.66084160042e-05
+UniRef50_H8FWZ7		0.000177815856776	0.000176687276992	-1.128579784e-06
+UniRef50_UPI000477C548	alcohol dehydrogenase	9.15367668969e-06	1.67687426542e-05	7.61506596451e-06
+UniRef50_Q8CNS9	LtrC like protein	0.00878701398648	0.00287014353032	-0.00591687045616
+UniRef50_F6BYQ8		0.000230803317782	7.01546021278e-05	-0.000160648715654
+UniRef50_UPI00037DF186	hypothetical protein	0.000728494181778	2.90158400686e-05	-0.000699478341709
+UniRef50_UPI0002F6EC83	hypothetical protein	2.18248232461e-06	0.000680534130847	0.000678351648522
+UniRef50_Q99R72	Glycosyl 4,4 diaponeurosporenoate acyltransferase	0.00636388360471	0.00407430070286	-0.00228958290185
+UniRef50_P76223	Protein YnjB	0.00343271367511	0.00092934880502	-0.00250336487009
+UniRef50_O59536	Triosephosphate isomerase	0.00249911254594	0.00282807281052	0.00032896026458
+UniRef50_F0VQ97		2.68581202174e-06	1.45897754727e-06	-1.22683447447e-06
+UniRef50_B6IR83		0.00333049782179	0.00184499448705	-0.00148550333474
+UniRef50_U9YKK0		0.00172813002195	0.000272181295113	-0.00145594872684
+UniRef50_Q5HQL1	Na H(+) antiporter subunit B1	0.00653895011582	0.00663145982577	9.250970995e-05
+UniRef50_M7E7M7	Integrase	0.00251488895654	0.00178990121966	-0.00072498773688
+UniRef50_F0LCG3	Cation transport protein chaC	8.53494934457e-06	1.98739380255e-05	1.13389886809e-05
+UniRef50_Q5HR27		0.016836610319	0.00253844147617	-0.0142981688428
+UniRef50_UPI00035FFCE6	hypothetical protein	3.92096369903e-05	8.87245618645e-05	4.95149248742e-05
+UniRef50_Q3JNN5	Gamma glutamyl phosphate reductase	0.00324097021463	0.0003199436242	-0.00292102659043
+UniRef50_E6V0C3	Nicotinamidase	0.000769546202562	0.00303592964662	0.00226638344406
+UniRef50_Q9I158		0.000986405635988	0.000516282486185	-0.000470123149803
+UniRef50_B8D0S4	Adenylyl sulfate kinase	1.21404346371e-05	0.000226502490934	0.000214362056297
+UniRef50_UPI000369E4B0	hypothetical protein	2.15420966212e-06	1.73581704932e-05	1.52039608311e-05
+UniRef50_I0EQA8	Paralysed flagella protein	0.000200956636653	0.00371954140219	0.00351858476554
+UniRef50_G7U4F0	Transcriptional regulator, LuxR family protein	0.000173158710486	0.0039870470697	0.00381388835921
+UniRef50_W4JRF8		0.000115721957538	0.000562848543728	0.00044712658619
+UniRef50_T0T886	Guanine deaminase	9.03076528389e-05	0.000434737406406	0.000344429753567
+UniRef50_F7QRG4	Glyoxalase family protein	3.06597030299e-05	4.0463741038e-05	9.8040380081e-06
+UniRef50_UPI0003804921	hypothetical protein	1.31990149642e-05	1.1774396728e-05	-1.4246182362e-06
+UniRef50_U9G1I6		2.25522783674e-05	7.05056539254e-06	-1.55017129749e-05
+UniRef50_Q42523	Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial	2.18261448245e-06	4.07323888256e-06	1.89062440011e-06
+UniRef50_UPI000375CE36	hypothetical protein	6.55230537703e-06	0.000726200007453	0.000719647702076
+UniRef50_P39409		0.00353316818497	0.0017335041206	-0.00179966406437
+UniRef50_UPI0002629A6E	putative hydrolase	0.000142861304553	7.27190238609e-05	-7.01422806921e-05
+UniRef50_A0A011RU24	Putative L lactate dehydrogenase operon regulatory protein	2.24001608492e-05	3.84660956498e-05	1.60659348006e-05
+UniRef50_A9FGU9		2.41065882284e-06	3.84885124911e-06	1.43819242627e-06
+UniRef50_A8FH40		8.56619610214e-06	3.87254999477e-05	3.01593038456e-05
+UniRef50_A6M1K4		0.00147020331343	0.000608900423076	-0.000861302890354
+UniRef50_Q5PCT5	DNA binding protein H NS	0.00139298586548	0.000506257208899	-0.000886728656581
+UniRef50_F4DU26		0.000506692602481	0.00218223734865	0.00167554474617
+UniRef50_B3DX55	Predicted phosphatase, Macro Appr 1 family	1.19794098047e-05	0.000228911281232	0.000216931871427
+UniRef50_T2SUX4	Cation transporter 	0.000117770017646	0.00523051381228	0.00511274379463
+UniRef50_K0WI88	Type VI secretion system protein	0.000509548472204	8.9399608029e-05	-0.000420148864175
+UniRef50_UPI000473E94E	MULTISPECIES	0.000313060947342	8.32317831851e-05	-0.000229829164157
+UniRef50_A1TN83	Ribonuclease HII	1.97219205547e-05	1.43765397541e-05	-5.3453808006e-06
+UniRef50_R6ED70		6.89745180299e-05	9.07930933087e-06	-5.9895208699e-05
+UniRef50_V4RKF1		2.41373948449e-05	9.02725317012e-06	-1.51101416748e-05
+UniRef50_G7QBD3	SEC C motif domain protein	1.09036436804e-05	4.57854292127e-05	3.48817855323e-05
+UniRef50_W5V0V9	Diguanylate cyclase	0.000941863439182	0.00046175625396	-0.000480107185222
+UniRef50_Q87VK2	23S rRNA  methyltransferase RlmB	0.00230316973423	0.00214507735106	-0.00015809238317
+UniRef50_J3NBY7		0.000120530694889	0.000650640477246	0.000530109782357
+UniRef50_A7HSL3	Cobyrinic acid ac diamide synthase	0.0148672134401	0.00365074459378	-0.0112164688463
+UniRef50_Q5HRG3	UPF0382 membrane protein SERP0230	0.016053330234	0.0290199228086	0.0129665925746
+UniRef50_K0WGN5		0.000477548506983	0.000282374538832	-0.000195173968151
+UniRef50_F2A341		3.72942688965e-05	6.69305281982e-05	2.96362593017e-05
+UniRef50_Q3IVE7	Transcriptional regulator, LysR family	0.000130018136227	0.000313056577946	0.000183038441719
+UniRef50_D1ABZ6		6.74185480987e-06	3.24769725612e-05	2.57351177513e-05
+UniRef50_Q8CTY1		0.00380740178412	0.00254195888779	-0.00126544289633
+UniRef50_N4DJP8	LysR substrate binding domain protein	0.0165015303699	0.00868372233138	-0.00781780803852
+UniRef50_UPI00046D6061	hypothetical protein	1.3662100412e-05	1.78345391372e-05	4.1724387252e-06
+UniRef50_UPI00031728D0	hypothetical protein	8.38000235742e-06	1.06201148078e-05	2.24011245038e-06
+UniRef50_A5MZF0	Predicted signal transduction protein	0.000266817972855	0.000955268522999	0.000688450550144
+UniRef50_UPI000478BE40	cell division protein FtsY	4.4937198201e-06	4.99444260112e-06	5.0072278102e-07
+UniRef50_H3VHH5		0.00216623604627	0.000177013010107	-0.00198922303616
+UniRef50_A1AZI3		0.000258175290983	0.000199184284167	-5.8991006816e-05
+UniRef50_P31777	Ribosomal RNA large subunit methyltransferase J	0.00316398745274	0.00153695522832	-0.00162703222442
+UniRef50_I0ETN8		0.000328018114884	0.00199484573836	0.00166682762348
+UniRef50_C8S0X4		0.00123528781913	8.91322057633e-05	-0.00114615561337
+UniRef50_P75966	Ribosomal large subunit pseudouridine synthase E	0.0033564393373	0.000833305232026	-0.00252313410527
+UniRef50_E2QQW0		0.00254431218071	0.00347431417878	0.00093000199807
+UniRef50_UPI000378A4F9	hypothetical protein	8.19284926225e-06	0.000666130595076	0.000657937745814
+UniRef50_A3PJC9	MgtC SapB transporter	0.00766071982215	0.000866553596055	-0.00679416622609
+UniRef50_A8LHS0	Type II secretion system protein	0.0104727742299	0.00189637569442	-0.00857639853548
+UniRef50_N0AZ28	Short chain acyl CoA synthetase	0.00227995720259	0.000296880863012	-0.00198307633958
+UniRef50_A0A018QNM9	Glucan biosynthesis protein G	5.63269110392e-05	8.26795838205e-05	2.63526727813e-05
+UniRef50_UPI000425424A	leucyl tRNA synthetase	1.74457684189e-06	2.31904836894e-06	5.7447152705e-07
+UniRef50_UPI000361D7A6	hypothetical protein, partial	7.41257975185e-05	0.0007016652789	0.000627539481381
+UniRef50_B5F095	UPF0194 membrane protein YbhG	0.00410699612823	0.001559162677	-0.00254783345123
+UniRef50_A0A038GAC7		4.62578920171e-05	0.000269659717006	0.000223401824989
+UniRef50_A7IGL7	Fructose 1,6 bisphosphatase class 1 1	2.39869896485e-05	2.39258956952e-05	-6.10939533e-08
+UniRef50_X0UWW1	Marine sediment metagenome DNA, contig	0.000814339825635	0.000292059306647	-0.000522280518988
+UniRef50_UPI00046D96F8	PREDICTED	6.0731794209e-05	6.0793935683e-05	6.2141474e-08
+UniRef50_UPI00047DA76B	UTP  glucose 1 phosphate uridylyltransferase	0.000190319808949	0.000106826509575	-8.3493299374e-05
+UniRef50_T1DQ54	Putative dosage compensation complex subunit mle 	3.25045340539e-05	6.27084539134e-06	-2.62336886626e-05
+UniRef50_Q60317	Probable aspartate aminotransferase 1	0.00235168158573	0.00055882807145	-0.00179285351428
+UniRef50_P57061	Lipoprotein releasing system transmembrane protein LolC	0.000124995360549	0.00149496598633	0.00136997062578
+UniRef50_I3U950		1.84589809737e-05	1.45515088597e-05	-3.907472114e-06
+UniRef50_C0ZTQ3		0.000234949785595	0.00326621253566	0.00303126275006
+UniRef50_S5VEZ7	Alpha galactosidase	0.000417487277896	0.000929494223385	0.000512006945489
+UniRef50_UPI00036308A8	hypothetical protein	2.41299024464e-05	1.89814350507e-05	-5.1484673957e-06
+UniRef50_B2S842	Porphobilinogen deaminase	3.06435229914e-05	8.22282976115e-06	-2.24206932303e-05
+UniRef50_Q9RXS6	2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.000560622755721	0.0354419827311	0.0348813599754
+UniRef50_Q9RUR7		0.000440645123179	0.0538495595985	0.0534089144753
+UniRef50_D7BIR4		0.000385250327578	6.21687670526e-05	-0.000323081560525
+UniRef50_Q5SI49	tRNA pseudouridine synthase D	1.33116038787e-05	4.97740017588e-05	3.64623978801e-05
+UniRef50_O07134	Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000307733143081	0.00326070662046	0.00295297347738
+UniRef50_E3A1T0		0.00101832388616	0.000665838472429	-0.000352485413731
+UniRef50_J9YRE4	Permease	0.000305046228192	0.000297673757941	-7.372470251e-06
+UniRef50_N1NMR4		0.000419130082496	0.000413989260398	-5.140822098e-06
+UniRef50_UPI000273BF3C	PREDICTED	2.01047016641e-05	0.00103208153753	0.00101197683587
+UniRef50_Q9A176	Protein NrdI	1.19568256144e-05	4.8972160221e-05	3.70153346066e-05
+UniRef50_A8LHW3	Aminotransferase class I and II	0.00367212573027	0.00032612323016	-0.00334600250011
+UniRef50_Q88XV1	Energy coupling factor transporter ATP binding protein EcfA2	0.00694285955778	0.00529908676943	-0.00164377278835
+UniRef50_J8W6V4	Putative phage associated protein	1.10403802565e-05	6.74218271393e-05	5.63814468828e-05
+UniRef50_A6LX69		0.000260423895184	0.000683892032202	0.000423468137018
+UniRef50_UPI000479C5D4	hypothetical protein	0.000189999040989	2.48246695313e-05	-0.000165174371458
+UniRef50_UPI000426B838	sulfate permease	5.68407074452e-05	1.80334646706e-05	-3.88072427746e-05
+UniRef50_I4DYV1	Branched chain amino acid ABC transporter permease protein	0.000354712598539	0.00135551109466	0.00100079849612
+UniRef50_E9C0U9	GTP binding protein TypA	0.00794444714053	0.00252287959768	-0.00542156754285
+UniRef50_S5XU71		8.19930893159e-05	6.38009451897e-05	-1.81921441262e-05
+UniRef50_UPI0004748AC6	aldolase	0.000120739065241	3.78468844891e-05	-8.28921807519e-05
+UniRef50_F6FQD2	Nicotinate phosphoribosyltransferase	0.000135299637578	0.0018037064542	0.00166840681662
+UniRef50_Q92V09	4 deoxy L threo 5 hexosulose uronate ketol isomerase 2	1.32314507799e-05	1.65877858902e-05	3.3563351103e-06
+UniRef50_UPI000379F656	hypothetical protein	3.29441715631e-05	6.43868306279e-05	3.14426590648e-05
+UniRef50_A5G208		6.69571599676e-05	3.88776787839e-05	-2.80794811837e-05
+UniRef50_D5Z124	Phosphoribosylformylglycinamidine synthase subunit I	2.51703186687e-05	2.46718300064e-05	-4.984886623e-07
+UniRef50_D8JJB8	Riboflavin biosynthesis protein RibF	0.00026475727968	0.00725609991529	0.00699134263561
+UniRef50_D9QJC6	Cysteine desulfurase	0.00664871113548	0.00165431861469	-0.00499439252079
+UniRef50_T0TC75	Poly D alaninet ransfer protein DltD	0.00473674329413	0.00115899275952	-0.00357775053461
+UniRef50_B5F7E7	Phosphoenolpyruvate synthase regulatory protein	0.00456153042611	0.00073957950839	-0.00382195091772
+UniRef50_Q52986	Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI	0.003342519993	0.00101311366358	-0.00232940632942
+UniRef50_Q8DUN5	Ferredoxin  NADP reductase	0.0060242820727	0.00132603322691	-0.00469824884579
+UniRef50_UPI00047D9459	hypothetical protein	9.82030943027e-06	7.5251691884e-06	-2.29514024187e-06
+UniRef50_UPI000472033F	hypothetical protein	7.77162903018e-07	4.72664108727e-05	4.64892479697e-05
+UniRef50_R4RQA1	MFS type transporter	7.74595052315e-05	0.000140738699848	6.32791946165e-05
+UniRef50_UPI000377EFC4	hypothetical protein	5.89117691443e-06	8.98611234003e-06	3.0949354256e-06
+UniRef50_D3QJ40	Riboflavin biosynthesis protein RibD	0.0257206235796	0.00537257116554	-0.0203480524141
+UniRef50_B0SGE9	Pyridoxine pyridoxamine 5 phosphate oxidase	1.0061762005e-05	9.32392407724e-05	8.31774787674e-05
+UniRef50_T0TDK7	Chorismate mutase I	0.000834248644471	0.000673726323636	-0.000160522320835
+UniRef50_Q9RZG4		0.000199376402564	0.0201966654755	0.0199972890729
+UniRef50_T1BKR4	DNA repair protein RadA 	7.94560936296e-06	3.56516053712e-05	2.77059960082e-05
+UniRef50_O32232	Carboxylesterase	0.018312527669	0.00918979181966	-0.00912273584934
+UniRef50_O25039	Exodeoxyribonuclease 7 large subunit	9.94256335816e-05	0.00257500949559	0.00247558386201
+UniRef50_F5M463	4 alpha glucanotransferase	0.000624703563073	0.000326795801954	-0.000297907761119
+UniRef50_A7ILS7		0.000195131380502	5.86705342295e-05	-0.000136460846272
+UniRef50_X1FUR4	Marine sediment metagenome DNA, contig	5.73541250892e-05	7.33990986429e-05	1.60449735537e-05
+UniRef50_J1C3T0		0.00677065814862	0.00272088707168	-0.00404977107694
+UniRef50_Q2NYV9	ATP dependent protease ATPase subunit HslU	0.00466495914154	0.00126406691381	-0.00340089222773
+UniRef50_C1DN07	Polysaccharide biosynthesis protein	0.0004631099309	9.51100499805e-05	-0.000367999880919
+UniRef50_UPI0004758B17	NUDIX hydrolase	5.7461720283e-05	9.05738826716e-06	-4.84043320158e-05
+UniRef50_H1SB32		0.000172122406604	0.000768411982585	0.000596289575981
+UniRef50_A5UXK1	NADH quinone oxidoreductase subunit B 1	1.46523285773e-05	0.000122680776647	0.00010802844807
+UniRef50_UPI000467AAFA	hypothetical protein	2.31629721577e-06	1.24192951441e-06	-1.07436770136e-06
+UniRef50_Q9A0C6	Carbamoyl phosphate synthase large chain	0.000781758507262	0.00205153872519	0.00126978021793
+UniRef50_UPI0004722C63	hypothetical protein	1.84074761173e-05	3.08474762305e-05	1.24400001132e-05
+UniRef50_UPI000367B5A7	peptidase S14	6.13528049403e-06	1.06297807008e-05	4.49450020677e-06
+UniRef50_Q8XJ76	Phenylalanine  tRNA ligase beta subunit	0.000531019916438	0.000813067194797	0.000282047278359
+UniRef50_P32689		0.00638341394546	0.00141919615665	-0.00496421778881
+UniRef50_P32688		0.00312582134213	0.00061813542191	-0.00250768592022
+UniRef50_A5UKK2	Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF	0.00368550201413	0.00123855306996	-0.00244694894417
+UniRef50_UPI0003B45101	recombinase RecF	1.31776464676e-05	1.40945977535e-05	9.169512859e-07
+UniRef50_P39651		0.0245750725437	0.00722354848411	-0.0173515240596
+UniRef50_UPI0004735386	hypothetical protein, partial	1.43575808658e-05	4.5761733786e-06	-9.7814074872e-06
+UniRef50_Q1ARM2	Biotin lipoyl attachment	3.10784266904e-05	3.73818573356e-05	6.3034306452e-06
+UniRef50_C1F2D1	NAD specific glutamate dehydrogenase domain protein	3.70416471266e-06	7.83154241518e-06	4.12737770252e-06
+UniRef50_P32687		0.00441561342627	0.00072743604818	-0.00368817737809
+UniRef50_UPI00047736AE	threonine aldolase	5.80882714178e-06	8.71874967627e-06	2.90992253449e-06
+UniRef50_Q9ZGN9	ABC transporter family protein	0.0231026341526	0.00281019902571	-0.0202924351269
+UniRef50_UPI000011E309	transposase, pseudogene	0.000130716080354	0.0151274084754	0.014996692395
+UniRef50_D4JCQ5	NADPH dependent glutamate synthase beta chain and related oxidoreductases	0.000406263274426	0.00112893847319	0.000722675198764
+UniRef50_Q18B68	1 deoxy D xylulose 5 phosphate synthase	2.07099384224e-06	7.90805629204e-06	5.8370624498e-06
+UniRef50_C5C7N2		4.34439023213e-06	1.75737853778e-05	1.32293951457e-05
+UniRef50_C7ZS00		0.00701141806626	0.00138297340731	-0.00562844465895
+UniRef50_M7N0H7		1.40641553897e-05	0.000136500446927	0.000122436291537
+UniRef50_A4WW43		0.000174762031871	8.00426769978e-05	-9.47193548732e-05
+UniRef50_R4K685	Fe S oxidoreductase	0.0024214986201	0.000622434657062	-0.00179906396304
+UniRef50_UPI00036082CE	hypothetical protein	3.78895586084e-06	4.10599987904e-05	3.72710429296e-05
+UniRef50_M4WXK7		0.00161906284018	0.000361665506771	-0.00125739733341
+UniRef50_A3PRJ1		0.00222871928188	0.0012289177358	-0.00099980154608
+UniRef50_A6M0J7	Methyl accepting chemotaxis sensory transducer	0.000257035560643	0.000895202361581	0.000638166800938
+UniRef50_O59778	Biotin synthase	0.00156055492876	0.001124401892	-0.00043615303676
+UniRef50_A0A011NHA3		0.000162804305058	2.51812244254e-05	-0.000137623080633
+UniRef50_I0JR51	TetR family transcription regulator	0.00736492188731	0.00278067092202	-0.00458425096529
+UniRef50_T2SYZ3		9.20334809672e-06	0.00336602471348	0.00335682136538
+UniRef50_A6M003	Two component, sigma54 specific, transcriptional regulator, Fis family	0.000398514318507	0.00079673729552	0.000398222977013
+UniRef50_C9A997	Alpha acetolactate decarboxylase	0.0265054845912	0.00862250635303	-0.0178829782382
+UniRef50_F3Y7S3	Low molecular weight protein tyrosine phosphatase	0.0059758445174	0.000415939021406	-0.00555990549599
+UniRef50_W4TWJ0	GMP synthase	0.000103136495798	0.000304825480215	0.000201688984417
+UniRef50_UPI000304C6B6	hypothetical protein	3.03277086967e-05	6.1948372485e-05	3.16206637883e-05
+UniRef50_UPI00047969EC	ferrichrome ABC transporter	1.58582755803e-05	3.38348184242e-05	1.79765428439e-05
+UniRef50_UPI00036BADB7	hypothetical protein	1.05451137734e-05	1.40705537584e-05	3.525439985e-06
+UniRef50_UPI000476CE7F	formyltetrahydrofolate deformylase	1.92575875458e-05	1.86895804732e-05	-5.680070726e-07
+UniRef50_E6X978	NADP dependent oxidoreductase domain protein	0.000187803974553	0.00202465598241	0.00183685200786
+UniRef50_Q9I596	Neutral ceramidase	0.000747080080554	0.000326476831722	-0.000420603248832
+UniRef50_E2QM67		0.00214901423075	0.00130578687325	-0.0008432273575
+UniRef50_UPI0004756DAB	chromosome partitioning protein	8.17605639413e-06	1.29659318228e-05	4.78987542867e-06
+UniRef50_K9IFC3	Purine nucleosidase	1.53882886279e-05	1.42061755336e-05	-1.1821130943e-06
+UniRef50_U5MVL7	Low specificity L threonine aldolase LtaE	0.00052686354827	0.000950233193128	0.000423369644858
+UniRef50_UPI000467F4BE	hypothetical protein	0.000150542335541	2.79367605533e-05	-0.000122605574988
+UniRef50_Q4A072	Na+ H+ exchanger	0.00857290661587	0.00323854595074	-0.00533436066513
+UniRef50_A6LQ30	Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein	0.000437100657518	0.000752530591529	0.000315429934011
+UniRef50_Q6FAA9	Elongation factor P	0.000216117932552	0.00452430942389	0.00430819149134
+UniRef50_UPI000287DA5E	heavy metal transporting P type ATPase	4.8042382204e-06	5.34025931399e-05	4.85983549195e-05
+UniRef50_F5M2C8	Inositol monophosphatase	0.00464371332074	0.000452357064562	-0.00419135625618
+UniRef50_M1N6B4	Ribonuclease E	0.000837681513816	0.00242474244203	0.00158706092821
+UniRef50_S9RVU8	Mobile element protein	2.42881846922e-05	1.17539025047e-05	-1.25342821875e-05
+UniRef50_UPI0004768A02	hypothetical protein	3.80517971301e-05	0.00713747840495	0.00709942660782
+UniRef50_UPI0003B4B8C4	rRNA methyltransferase	3.59520715948e-05	2.1174259502e-05	-1.47778120928e-05
+UniRef50_UPI0003827792	hypothetical protein	1.32423340973e-05	9.17165658924e-06	-4.07067750806e-06
+UniRef50_Q8UD63	2 isopropylmalate synthase	3.42790571387e-06	1.8136583151e-05	1.47086774371e-05
+UniRef50_Q4FQ21	UDP N acetylmuramoylalanine  D glutamate ligase	8.50193668641e-05	0.0061263127281	0.00604129336124
+UniRef50_A3PS43	RepA	0.000811322712027	0.000295809721398	-0.000515512990629
+UniRef50_UPI000472BDAD	hypothetical protein, partial	0.000219233112502	0.000106540698524	-0.000112692413978
+UniRef50_P00893	Acetolactate synthase isozyme 3 large subunit	0.00263134643519	0.00228647244295	-0.00034487399224
+UniRef50_Q16134	Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	6.77978060068e-06	1.61953006511e-05	9.41552005042e-06
+UniRef50_Q9RWS6		1.80149902168e-05	0.0178655269123	0.0178475119221
+UniRef50_UPI000473521A	glutamate synthase, partial	1.77432696565e-06	2.83195674963e-06	1.05762978398e-06
+UniRef50_D2Q2X8	Cell envelope related transcriptional attenuator	3.83383480767e-06	1.33563431059e-05	9.52250829823e-06
+UniRef50_Q1R8C8		0.00239204786417	0.000373031627616	-0.00201901623655
+UniRef50_P31660	2 methylcitrate synthase	0.00224962882798	0.0128614066204	0.0106117777924
+UniRef50_Q5M2Y8	Polar amino acid ABC uptake transporter membrane spanning protein	0.00577906079839	0.00537740734636	-0.00040165345203
+UniRef50_Q2S1S3	Glutamate 1 semialdehyde 2,1 aminomutase	9.04314876951e-06	2.44276965825e-05	1.5384547813e-05
+UniRef50_M9RWZ9	RNA methyltransferase	0.000797513117142	0.000952864192453	0.000155351075311
+UniRef50_B6JIZ7	Crossover junction endodeoxyribonuclease RuvC	0.0046648044647	0.0028204990672	-0.0018443053975
+UniRef50_Q0BQU0		1.12821560914e-06	2.30266026039e-05	2.18983869948e-05
+UniRef50_U6I6D8	Dihydropyrimidine dehydrogenase 	1.11580789459e-05	9.28411541135e-06	-1.87396353455e-06
+UniRef50_A3M2D6		0.000705949687179	0.0102144213192	0.00950847163202
+UniRef50_A3M2D5		0.000223648994873	0.0157066851758	0.0154830361809
+UniRef50_UPI00046DDB7F	PREDICTED	0.000104156638361	5.42494403056e-06	-9.87316943304e-05
+UniRef50_A3M2D9		0.000351945069607	0.0123522579442	0.0120003128746
+UniRef50_A3M2D8		9.68473818285e-05	0.00986230622784	0.00976545884601
+UniRef50_Q5E727	Urease subunit beta	3.86473069012e-05	2.15352461845e-05	-1.71120607167e-05
+UniRef50_UPI0003C1B3D1		3.29972921767e-06	1.42042003433e-05	1.09044711256e-05
+UniRef50_UPI00041EF0AD	hypothetical protein	1.79569004117e-05	6.02985700891e-05	4.23416696774e-05
+UniRef50_UPI000369A5D7	hypothetical protein	1.14320495302e-05	1.72387678422e-05	5.806718312e-06
+UniRef50_UPI000467E096	hypothetical protein	6.30358355682e-05	4.84440774108e-05	-1.45917581574e-05
+UniRef50_Q88WP5	tRNA dimethylallyltransferase	2.95371902639e-05	0.00341033193067	0.00338079474041
+UniRef50_A8F961	Serine acetyltransferase	0.000492897018218	0.00109320600233	0.000600308984112
+UniRef50_P77968	Superoxide dismutase [Fe]	0.00509775378426	0.000366438191664	-0.0047313155926
+UniRef50_E6S1Z5	Menaquinone biosynthesis protein, SCO4494 family	0.000107240337745	0.00261019214687	0.00250295180912
+UniRef50_UPI00016C3B63	L aspartate oxidase, partial	5.13564402652e-06	9.50703334215e-06	4.37138931563e-06
+UniRef50_Q7NPZ7	UDP N acetylmuramoylalanine  D glutamate ligase	0.000130467507666	0.00243187437997	0.0023014068723
+UniRef50_A0A058VD88	Phosphoribosylaminoimidazolesuccinocarboxamide synthase like protein	4.56932642727e-05	4.42091165916e-05	-1.4841476811e-06
+UniRef50_Q9I0I6	Methyl accepting chemotaxis protein PA2652	0.000352490786946	0.00039004886388	3.7558076934e-05
+UniRef50_T1K2G0		0.00965610707001	0.00105173805588	-0.00860436901413
+UniRef50_D3P3A4	Transposase	0.00737916836446	7.61084223548e-05	-0.00730305994211
+UniRef50_A3PLJ3		0.013076074232	0.00297060972472	-0.0101054645073
+UniRef50_UPI0003720E8F	hypothetical protein	9.49329018536e-05	0.000109745865198	1.48129633444e-05
+UniRef50_UPI00037E700F	hypothetical protein	4.5864165894e-06	5.7364189125e-06	1.1500023231e-06
+UniRef50_Q05624	Phosphate butyryltransferase	0.000124857548682	0.00152569703067	0.00140083948199
+UniRef50_A0A023RYG5	Hydrolase	0.000212673599042	0.00802945430199	0.00781678070295
+UniRef50_A5IS38	Phosphodiesterase, MJ0936 family	0.0131558039801	0.0009042730315	-0.0122515309486
+UniRef50_Q6GI75	Enoyl [acyl carrier protein] reductase [NADPH] FabI	0.0179188376293	0.00380824134455	-0.0141105962848
+UniRef50_UPI00045E7AD4	2 polyprenylphenol hydroxylase	6.95508288561e-06	1.05811140966e-05	3.62603121099e-06
+UniRef50_P52308	DNA primase	6.02106915919e-05	0.0019527130863	0.00189250239471
+UniRef50_A4WQE3	UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00257883166041	0.0019227576281	-0.00065607403231
+UniRef50_G7M2Z2	Acriflavin resistance protein	0.000388936743934	0.000548785424775	0.000159848680841
+UniRef50_UPI0003C4AE88	PREDICTED	5.4153621612e-05	2.15401070385e-05	-3.26135145735e-05
+UniRef50_N0B1P0	Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase	0.000825155147243	0.00134257029589	0.000517415148647
+UniRef50_J9Z1D2	Hypoxia induced family protein	2.13565309037e-05	2.53920855143e-05	4.0355546106e-06
+UniRef50_UPI00037EB16F	thymidylate synthase	1.08099390009e-05	5.5912709852e-05	4.51027708511e-05
+UniRef50_F5RE08		0.000521561848398	0.000323358572359	-0.000198203276039
+UniRef50_R0EX71	TRAP C4 dicarboxylate transport system permease DctM subunit 	1.1025893288e-05	8.11070396768e-06	-2.91518932032e-06
+UniRef50_UPI00046EE358	hypothetical protein, partial	1.54291497045e-05	0.000111014171378	9.55850216735e-05
+UniRef50_G7LXD6		0.000107138880474	0.00126655150632	0.00115941262585
+UniRef50_B4VB07	Type I PKS	0.00025325859972	8.09269813902e-05	-0.00017233161833
+UniRef50_P55189	Putative sulfate transporter YbaR	0.0332638873465	0.00979420999235	-0.0234696773542
+UniRef50_B9EBL7		0.0147188271841	0.00224854317062	-0.0124702840135
+UniRef50_E4NJ63		3.07827872702e-07	4.1342699129e-07	1.05599118588e-07
+UniRef50_A1B623		0.000693799523845	7.17820107701e-05	-0.000622017513075
+UniRef50_UPI00021954C2	thymidylate kinase	1.00235012671e-05	1.42640886043e-05	4.2405873372e-06
+UniRef50_Q4L540	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0191855804536	0.00502667276234	-0.0141589076913
+UniRef50_UPI00046E93BA	Holliday junction resolvase	1.76975454317e-05	1.42982953332e-05	-3.3992500985e-06
+UniRef50_P39346	L idonate 5 dehydrogenase (+))	0.00189798702301	0.000454320676636	-0.00144366634637
+UniRef50_I6DGS5	Response regulator	0.00010113535271	0.00014959060866	4.845525595e-05
+UniRef50_UPI000376418A	xanthine phosphoribosyltransferase	3.47631047232e-05	5.3162084705e-05	1.83989799818e-05
+UniRef50_UPI00047230A9	carbamoyl phosphate synthase large subunit	1.43848954576e-06	4.62011510452e-06	3.18162555876e-06
+UniRef50_A6LT71		0.000190329070009	0.00316875556521	0.0029784264952
+UniRef50_F4A863		8.38802052221e-06	1.38886124734e-05	5.50059195119e-06
+UniRef50_UPI00037C86FD	hypothetical protein	1.28239747486e-05	2.16149143981e-05	8.7909396495e-06
+UniRef50_A3PGH0	Acyltransferase 3	0.00180608458437	0.000726140859349	-0.00107994372502
+UniRef50_A0A012LJX4	PTS system mannitol specific EIICB component	1.18758394005e-05	2.99492061989e-05	1.80733667984e-05
+UniRef50_UPI00047AF5BF	hypothetical protein	4.93267020139e-05	5.42699650765e-05	4.9432630626e-06
+UniRef50_UPI00047D7213	antitermination protein NusG	2.6258829305e-05	5.57646079986e-05	2.95057786936e-05
+UniRef50_J9NZJ3		9.07280274307e-05	0.000374123687487	0.000283395660056
+UniRef50_Q3JPN7		0.00011424244143	2.95136361072e-05	-8.47288053228e-05
+UniRef50_J9NZJ0		6.76170516728e-06	0.000121835406466	0.000115073701299
+UniRef50_UPI00006CADE3	Glutamate Leucine Phenylalanine Valine dehydrogenase family protein	5.04609241008e-06	7.09297487305e-05	6.58836563204e-05
+UniRef50_K7S7N6	AXE1 multi domain protein	0.000114737382625	0.00416092608606	0.00404618870344
+UniRef50_Q86ZM3	Catabolic 3 dehydroquinase	4.36126849552e-05	2.23471679917e-05	-2.12655169635e-05
+UniRef50_Q838A4	UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.00659566765884	0.00835561685915	0.00175994920031
+UniRef50_Q46904	Probable electron transfer flavoprotein quinone oxidoreductase YgcN	0.00450671294569	0.00139201722548	-0.00311469572021
+UniRef50_Q9ZLD6	UvrABC system protein A	4.52802065825e-05	0.0034339979654	0.00338871775882
+UniRef50_Q2FRE6	Nucleoside diphosphate kinase	1.06555755807e-05	4.75735487631e-05	3.69179731824e-05
+UniRef50_P46859	Thermoresistant gluconokinase	0.000619543379916	0.0023801048857	0.00176056150578
+UniRef50_P0A9C3	Aldose 1 epimerase	0.00258067039322	0.00130548031936	-0.00127519007386
+UniRef50_UPI0003F77CB8	hypothetical protein	3.53088560919e-06	5.80156056179e-05	5.44847200087e-05
+UniRef50_M9VF11		0.00175850184045	0.00889661509526	0.00713811325481
+UniRef50_A6LR82	Transposase	0.000294910928794	0.00127720519856	0.000982294269766
+UniRef50_V5VI78	Thiol	0.000162476035378	0.00410126531656	0.00393878928118
+UniRef50_Q54433	Probable phosphopantothenoylcysteine decarboxylase	0.00107745967448	0.00396123237492	0.00288377270044
+UniRef50_B0VEJ2		6.86338161594e-05	0.00511761076274	0.00504897694658
+UniRef50_Q5HP16	Octanoyltransferase LipM	0.00623460419002	0.00451189382822	-0.0017227103618
+UniRef50_C7J469	Os06g0328400 protein 	4.32644533038e-05	0.0001572496307	0.000113985177396
+UniRef50_D3FFF2	ABC transporter related protein	0.00170486514729	0.000481839989651	-0.00122302515764
+UniRef50_A6LTK9	Transcriptional regulator, GntR family	0.000166783205682	0.00141169236652	0.00124490916084
+UniRef50_UPI0003B2EB2A	glycerol kinase	1.30864608729e-05	5.55243145485e-06	-7.53402941805e-06
+UniRef50_E5CQ05	Replication initiation protein	0.000252022280953	0.000285752892185	3.3730611232e-05
+UniRef50_UPI000255E431	cystine transporter permease	6.66403429153e-05	0.000109528254037	4.28879111217e-05
+UniRef50_UPI00037539AF	S adenosylmethionine synthetase	1.7943762393e-05	0.00160165593925	0.00158371217686
+UniRef50_A6E1L3	2 hydroxyacid dehydrogenase	0.000261608366741	0.0001913708631	-7.0237503641e-05
+UniRef50_UPI0004672A57	hypothetical protein	0.000111682245224	1.56004909309e-05	-9.60817542931e-05
+UniRef50_M9RK54	UPF0717 family protein	0.00568106025131	0.00445715976106	-0.00122390049025
+UniRef50_UPI0004628C07	hypothetical protein	1.55257226169e-05	1.49894808155e-05	-5.362418014e-07
+UniRef50_Q49VT5		0.000797990404066	0.00114872277836	0.000350732374294
+UniRef50_M1MBM4		0.000561364523412	0.00218356047383	0.00162219595042
+UniRef50_B6ISU5	1 deoxy D xylulose 5 phosphate reductoisomerase	0.00300656720842	0.00171140520722	-0.0012951620012
+UniRef50_A5IVI2	GCN5 related N acetyltransferase	0.0174203900916	0.00535429124419	-0.0120660988474
+UniRef50_G3A8C8	Putative transposase	5.80401440153e-05	2.06172713112e-05	-3.74228727041e-05
+UniRef50_V9G5F4	Iojap protein	3.58681641036e-05	0.000983865104399	0.000947996940295
+UniRef50_UPI0004774299	aldehyde dehydrogenase, partial	1.90479037125e-05	0.000206548502196	0.000187500598484
+UniRef50_P50141	GTP cyclohydrolase 1	2.93670348758e-05	3.37790018659e-05	4.4119669901e-06
+UniRef50_A0A037UUK8		0.000219783825067	8.67799590184e-05	-0.000133003866049
+UniRef50_Q6A5P9		0.000613639472531	0.0104821050853	0.00986846561277
+UniRef50_Q53074	UvrB protein 	0.0052310331042	0.00029694267887	-0.00493409042533
+UniRef50_Q97PK0	Putative GTP cyclohydrolase 1 type 2	0.00434769471106	0.00474624853255	0.00039855382149
+UniRef50_UPI0003707E4A	hypothetical protein	0.000132912306155	1.72820546738e-05	-0.000115630251481
+UniRef50_B4FZA3		6.81491647936e-06	1.10499416571e-05	4.23502517774e-06
+UniRef50_UPI000366285D	ATPase AAA	5.06646848846e-06	7.82940424901e-05	7.32275740016e-05
+UniRef50_V0V0Z7		0.000343169080774	0.00048412574623	0.000140956665456
+UniRef50_UPI000377C6CE	hypothetical protein	2.05073781574e-06	1.74474566522e-05	1.53967188365e-05
+UniRef50_E3GXW6	CobB CobQ domain protein glutamine amidotransferase	0.00221183120807	0.00149131048148	-0.00072052072659
+UniRef50_A5UL08		0.00340474721315	0.000710170474252	-0.0026945767389
+UniRef50_R4RG70	Cyclase family protein	0.0185230147964	0.00562504453324	-0.0128979702632
+UniRef50_UPI00040EF0A5	hypothetical protein	2.55961049826e-06	6.92807511495e-05	6.67211406512e-05
+UniRef50_F8TVB7		1.97370042719e-05	1.78455386154e-05	-1.8914656565e-06
+UniRef50_V5YQU8	YycH protein	0.0219938124284	0.00461887532639	-0.017374937102
+UniRef50_UPI00047D67EB	thioredoxin reductase	1.28772586399e-05	1.31331204614e-05	2.558618215e-07
+UniRef50_G7M4A9	Exonuclease RNase T and DNA polymerase III	0.00014803372112	0.000234378337464	8.6344616344e-05
+UniRef50_F1VZ41		0.000140049385308	2.33971483692e-05	-0.000116652236939
+UniRef50_M1KV66	Mucin 17 like protein	4.47502244079e-06	1.42213285055e-05	9.74630606471e-06
+UniRef50_F2JM36	ABC type transporter, periplasmic subunit family 3	0.000705143430581	0.00116441901343	0.000459275582849
+UniRef50_UPI0003FD0BE2	D ribose transporter ATP binding protein	3.49936720893e-06	5.71028827454e-06	2.21092106561e-06
+UniRef50_J7R096		5.70409440876e-05	5.38698830455e-05	-3.1710610421e-06
+UniRef50_M7RJM0	Mg chelatase, subunit ChlI	8.8684293154e-06	2.11383979777e-05	1.22699686623e-05
+UniRef50_A6M192	Flagellar hook capping protein	0.000345123738524	0.000765675231504	0.00042055149298
+UniRef50_B2IDX6	Signal recognition particle protein	0.0061461913419	0.00155959532189	-0.00458659602001
+UniRef50_A1JMA3	Formate  tetrahydrofolate ligase	2.69741483613e-05	4.3496199444e-05	1.65220510827e-05
+UniRef50_Q6ZEM6	Arsenate reductase ArsI1	0.00628721445997	0.00164367513208	-0.00464353932789
+UniRef50_I4Z0I0		0.000148008297087	3.29094813587e-05	-0.000115098815728
+UniRef50_UPI0004655B4D	chemotaxis protein CheY	2.00210299506e-05	2.36994274255e-05	3.6783974749e-06
+UniRef50_Q313L3	Protein translocase subunit SecA	0.000392081843457	0.00152683184065	0.00113474999719
+UniRef50_A0JSX3	Carbohydrate ABC transporter membrane protein 1, CUT1 family	0.000242672580455	0.00701389251153	0.00677121993107
+UniRef50_A4SMY4	Serine threonine protein kinase, RI01 family	0.000430484341631	0.000703533841073	0.000273049499442
+UniRef50_UPI0003793F1D	hypothetical protein	4.57069822343e-05	3.12458430267e-05	-1.44611392076e-05
+UniRef50_UPI0003C112FF	PREDICTED	1.59055496191e-05	1.43128647474e-05	-1.5926848717e-06
+UniRef50_P0ABM9	Cytochrome c type biogenesis protein CcmH	0.00311220942337	0.00101510923214	-0.00209710019123
+UniRef50_B3PGS4	Flagellar basal body rod protein FlgF	0.000160177930206	0.000301343576728	0.000141165646522
+UniRef50_F6BJB1	N acetylglucosamine 6 phosphate deacetylase	0.000389661516172	0.00114106500078	0.000751403484608
+UniRef50_Q9RW85	MutT nudix family protein	0.000243016731023	0.0372221973502	0.0369791806192
+UniRef50_W5YET9	NADH quinone oxidoreductase, chain I	8.37404603167e-05	6.2501547139e-05	-2.12389131777e-05
+UniRef50_A6LVB6	Aspartyl glutamyl tRNA amidotransferase subunit B	0.000197072619077	0.00120862278872	0.00101155016964
+UniRef50_W0A553		0.000300386728529	0.00330786237509	0.00300747564656
+UniRef50_UPI00046278A4	hypothetical protein	0.000810758331273	0.000276517025475	-0.000534241305798
+UniRef50_Q3J4U6		0.00258327018712	0.00326089690688	0.00067762671976
+UniRef50_Q9ZM69	Copper transporting ATPase	0.000103073608538	0.00539555313043	0.00529247952189
+UniRef50_T8TFL3	Exonuclease VIII	0.000454282958651	0.000150077429885	-0.000304205528766
+UniRef50_Q0SAE7		0.000120107238596	8.18196257271e-05	-3.82876128689e-05
+UniRef50_P55255	Glucose 1 phosphate thymidylyltransferase	0.00161138241622	0.00484057112833	0.00322918871211
+UniRef50_P40733	Deoxyguanosinetriphosphate triphosphohydrolase	0.00154295699281	0.000670265255215	-0.000872691737595
+UniRef50_R9SLI5	von Willebrand factor type A domain containing protein	0.00246779820902	0.000532583745424	-0.0019352144636
+UniRef50_C6NYG2	Flagellar biosynthesis protein FlhB	9.14892244882e-05	3.13016641743e-05	-6.01875603139e-05
+UniRef50_UPI0004658BA2	ABC transporter ATP binding protein	0.000142569188243	4.3875420929e-05	-9.8693767314e-05
+UniRef50_J1L2V8	Beta Ig H3 fasciclin	5.30556213744e-05	1.23186796677e-05	-4.07369417067e-05
+UniRef50_Y8DDU0		0.00622958067642	0.000230716175927	-0.00599886450049
+UniRef50_UPI000373827F	peptidase	2.7849031436e-05	2.97640846367e-05	1.9150532007e-06
+UniRef50_G8B089		6.35136322225e-05	0.000118710243746	5.51966115235e-05
+UniRef50_UPI0002DC68DF	hypothetical protein	7.38687925474e-05	9.47998532056e-06	-6.43888072268e-05
+UniRef50_Q9I1P5		0.000705744710068	0.00175102031702	0.00104527560695
+UniRef50_B8EMG0		0.00095691803505	0.000695845906121	-0.000261072128929
+UniRef50_UPI00005C8244	transposase	0.00530276686792	0.00116572383629	-0.00413704303163
+UniRef50_K4FFQ5	Lysine decarboxylase	0.000215604834896	0.00899432625473	0.00877872141983
+UniRef50_Q8CSF5		0.0106079243499	0.000459041510662	-0.0101488828392
+UniRef50_UPI0003798946	hypothetical protein	0.00018489448043	5.45780386188e-05	-0.000130316441811
+UniRef50_Q9JW21	Amino acid acetyltransferase	0.000141878567076	0.00294290087203	0.00280102230495
+UniRef50_UPI00046441BB	hypothetical protein, partial	2.77478391595e-05	7.52691037452e-05	4.75212645857e-05
+UniRef50_A8IPV3	Acetylglutamate kinase	0.00570593237411	0.0019096560019	-0.00379627637221
+UniRef50_UPI0003823B10	hypothetical protein	0.000136966638286	1.58733586583e-05	-0.000121093279628
+UniRef50_O29313	Glutamine synthetase	8.29429869726e-06	1.28309922823e-05	4.53669358504e-06
+UniRef50_P26503	UDP glucose 4 epimerase	0.000982529560611	0.000203473150108	-0.000779056410503
+UniRef50_H4EPB9		7.28156244633e-05	2.53510505022e-05	-4.74645739611e-05
+UniRef50_UPI00046D45A2	hypothetical protein	7.41324548199e-06	0.000222481318952	0.00021506807347
+UniRef50_UPI00047D5506	hypothetical protein	6.01104862865e-05	1.37015801647e-05	-4.64089061218e-05
+UniRef50_W1MTL3		0.00107876667732	0.000385455424858	-0.000693311252462
+UniRef50_U5S0M7	Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein	0.000669918486442	0.000715373051998	4.5454565556e-05
+UniRef50_W7VQA0		0.00140555984924	0.000781046212398	-0.000624513636842
+UniRef50_UPI000377C3F1	resolvase	0.000113212928966	2.60393643897e-05	-8.71735645763e-05
+UniRef50_Q9ZMY3	RNA polymerase sigma factor RpoD	0.000345497038117	0.00291801703149	0.00257251999337
+UniRef50_P46450	Long chain fatty acid  CoA ligase	0.000939180578539	0.00701150887057	0.00607232829203
+UniRef50_A4JN97		0.00160424906864	0.000767690581897	-0.000836558486743
+UniRef50_A6FSV8		0.000139876655356	0.000130160823173	-9.715832183e-06
+UniRef50_UPI0004279983	hypothetical protein	3.67917922461e-06	7.26875706296e-06	3.58957783835e-06
+UniRef50_A7X0H4	Argininosuccinate lyase	0.0117212605862	0.00250056503979	-0.00922069554641
+UniRef50_Q9I1V0	Glycogen synthase	0.000407735096774	0.000254176614783	-0.000153558481991
+UniRef50_Q5HMZ9		0.00884548794109	0.00335199617572	-0.00549349176537
+UniRef50_W4U346	DeoR family transcriptional regulator	1.13204102724e-05	4.47881573567e-05	3.34677470843e-05
+UniRef50_R7AGH6	M42 glutamyl aminopeptidase	0.000433405071934	0.000746332107514	0.00031292703558
+UniRef50_G0P7V6		5.77902730311e-06	3.8321928354e-06	-1.94683446771e-06
+UniRef50_P14081	Selenocysteine specific elongation factor	0.00307511351861	0.00108050685201	-0.0019946066666
+UniRef50_I6TYL9		0.00549049537977	0.00177108757975	-0.00371940780002
+UniRef50_UPI0003D073EE	PREDICTED	4.77159757469e-05	8.28974042425e-05	3.51814284956e-05
+UniRef50_P39755	Probable NADH quinone oxidoreductase subunit 5	0.0206132666973	0.0051755362641	-0.0154377304332
+UniRef50_UPI000347DE5C	hypothetical protein	1.48289786683e-05	0.000198449184087	0.000183620205419
+UniRef50_UPI0003D31A3C	ABC type dipeptide oligopeptide nickel transport systems	0.000306841023033	6.42854944311e-05	-0.000242555528602
+UniRef50_U6A643	Nicotinamidase family protein YcaC	0.000387165116772	0.00426859035205	0.00388142523528
+UniRef50_B2ILL9	Acetyl CoA carboxylase, biotin carboxylase	0.000266728620143	0.00811163231694	0.0078449036968
+UniRef50_UPI0001E8EA99	phospho N acetylmuramoyl pentapeptide transferase	6.62080952606e-06	1.45888631213e-05	7.96805359524e-06
+UniRef50_Q02CU2	NADH quinone oxidoreductase subunit A	6.99487687194e-05	0.000101830225562	3.18814568426e-05
+UniRef50_Q2SKM8	ABC type multidrug transport system, permease component	0.000944425537599	0.000206756152991	-0.000737669384608
+UniRef50_A5WCU0	D alanine  D alanine ligase	7.04444012695e-06	0.0065885560069	0.00658151156677
+UniRef50_A0A024HNL0	Diguanylate cyclase	4.05143560939e-06	3.43072804711e-05	3.02558448617e-05
+UniRef50_I1ZKL5	Pseudouridine synthase	0.00638055860822	0.0101266352365	0.00374607662828
+UniRef50_Z7MRV5	EAL domain protein	8.52802165753e-06	7.98820009254e-05	7.13539792679e-05
+UniRef50_UPI000471D234	hypothetical protein	6.49560312737e-06	2.53911563829e-05	1.88955532555e-05
+UniRef50_UPI0003D05F43	hypothetical protein	8.29706154929e-05	0.000531761810539	0.000448791195046
+UniRef50_Q5YYN2	Prolipoprotein diacylglyceryl transferase	5.2166377034e-06	2.09813023488e-05	1.57646646454e-05
+UniRef50_UPI00035D1759	DNA invertase	6.23891323779e-05	5.58853861582e-05	-6.5037462197e-06
+UniRef50_P74193	Threonine synthase	0.0171966409042	0.0148887435881	-0.0023078973161
+UniRef50_UPI000409380C	orotidine 5 phosphate decarboxylase	5.9463045832e-06	1.49168702931e-05	8.9705657099e-06
+UniRef50_Q99WV0	Glycyl glycine endopeptidase LytM	0.0124148092938	0.00190392494214	-0.0105108843517
+UniRef50_P64427	UPF0748 lipoprotein YddW	0.00176247697209	0.000155566306503	-0.00160691066559
+UniRef50_Q5LLU6	50S ribosomal protein L3	0.00890530689748	0.0040670688692	-0.00483823802828
+UniRef50_P54452		0.0239797302527	0.00836967941145	-0.0156100508413
+UniRef50_UPI000262729B	diguanylate cyclase	1.32497692275e-05	9.32520815207e-06	-3.92456107543e-06
+UniRef50_UPI0003029904	hypothetical protein	1.46632997847e-05	3.12985779494e-05	1.66352781647e-05
+UniRef50_A0A022G9Q8		0.000378118168027	0.000181964720127	-0.0001961534479
+UniRef50_Q9ZLB9	Probable L asparaginase	0.00025679318969	0.00339785519996	0.00314106201027
+UniRef50_C3PF03	Bifunctional purine biosynthesis protein PurH	3.33090273918e-06	2.10543918866e-05	1.77234891474e-05
+UniRef50_D9PXM6	Predicted serine threonine protein kinase	0.00106585281482	0.00211625124959	0.00105039843477
+UniRef50_P77735		0.00346603896349	0.00126457590845	-0.00220146305504
+UniRef50_G8VB53	Amino acid permease	0.000324446809098	0.00372422486106	0.00339977805196
+UniRef50_Q2P0U3	Tryptophan synthase alpha chain	1.61264990198e-05	3.56779987997e-05	1.95514997799e-05
+UniRef50_L1FI55	Citrate carrier	0.00192866308867	0.000445499117303	-0.00148316397137
+UniRef50_Q0FMS9		0.00153034860346	0.000930435885393	-0.000599912718067
+UniRef50_T1Y8E9	2 oxoacid ferredoxin oxidoreductase, alpha subunit	0.0198602005341	0.003277275121	-0.0165829254131
+UniRef50_A5UJE2		0.00248787035764	0.00277295820046	0.00028508784282
+UniRef50_UPI000474A3E0	transcriptional regulator	7.40912305188e-06	0.00012568434344	0.000118275220388
+UniRef50_W5VFG0		0.00500866852388	0.0028685024806	-0.00214016604328
+UniRef50_Q04661	Tyrosine protein phosphatase CpsB	0.000158607558343	0.00414148094738	0.00398287338904
+UniRef50_J8RX83	Thioesterase family protein	0.000142626947925	2.37146561462e-05	-0.000118912291779
+UniRef50_D3A297		9.48090552991e-05	0.000259666475798	0.000164857420499
+UniRef50_B9E8V3	Putative septation protein SpoVG	0.00402749747522	0.00926232168594	0.00523482421072
+UniRef50_X2M604		7.36797636035e-05	0.000160207977501	8.65282138975e-05
+UniRef50_UPI00046A9133	hypothetical protein	1.41482857487e-05	9.01894795478e-06	-5.12933779392e-06
+UniRef50_UPI000375D747	cold shock protein	2.07195172502e-05	1.33807533173e-05	-7.3387639329e-06
+UniRef50_R6JIT7		0.0196303988558	0.00590671668225	-0.0137236821736
+UniRef50_UPI00036CC3FF	hypothetical protein	4.16752659457e-05	5.95286567939e-05	1.78533908482e-05
+UniRef50_F6CST0	Peroxiredoxin	0.00123078383155	0.00132206999562	9.128616407e-05
+UniRef50_Q7MU77	Phosphoglycerate kinase	5.22437976361e-06	0.00479080225146	0.0047855778717
+UniRef50_A5FWQ8	Fructose 1,6 bisphosphatase class 1	3.82220601129e-05	2.64084401867e-05	-1.18136199262e-05
+UniRef50_Q4L8W8	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.021539143469	0.00800008620146	-0.0135390572675
+UniRef50_Q8A883	Spermidine putrescine import ATP binding protein PotA	8.08585898108e-05	0.00580272971393	0.00572187112412
+UniRef50_UPI000409F09E	hypothetical protein	4.01551425785e-06	5.30661169585e-06	1.291097438e-06
+UniRef50_D2JLI1	Conjugal transfer protein, putative	0.0123358784789	0.00312583087785	-0.00921004760105
+UniRef50_M9SAS9	Transcriptional regulator	0.000553112996021	0.000271763839138	-0.000281349156883
+UniRef50_A0A011ME20		2.52762134088e-05	0.000382253627912	0.000356977414503
+UniRef50_Q3J233		0.0119113447684	0.00475681591974	-0.00715452884866
+UniRef50_B7N3F3	Chaperone protein TorD	0.00522173509315	0.00266647443365	-0.0025552606595
+UniRef50_UPI00047D14F9	hypothetical protein	4.50993869057e-06	6.95645994845e-06	2.44652125788e-06
+UniRef50_Q63QK7	Arginine biosynthesis bifunctional protein ArgJ	0.000287587800444	0.0135742045261	0.0132866167257
+UniRef50_D6T8U6		0.0110219587789	0.00126474873508	-0.00975721004382
+UniRef50_M4V953		4.69207520079e-06	8.32937711656e-06	3.63730191577e-06
+UniRef50_E8ZZL4	EtfB protein	0.000236915892584	0.00364592574369	0.00340900985111
+UniRef50_H1QUK8		8.55626286146e-05	6.94085024983e-05	-1.61541261163e-05
+UniRef50_UPI00036C1506	hypothetical protein	4.08143320466e-05	3.53341976536e-05	-5.480134393e-06
+UniRef50_UPI0003945D12	PREDICTED	1.30451569939e-05	8.04623183622e-06	-4.99892515768e-06
+UniRef50_G7DIA2		9.74015453895e-05	8.34897140595e-05	-1.391183133e-05
+UniRef50_Q2P4Y9	Coenzyme PQQ synthesis protein E	0.00175926292942	0.000174228144654	-0.00158503478477
+UniRef50_UPI0004184600	GTP pyrophosphokinase	2.65559882458e-06	1.77088068155e-05	1.50532079909e-05
+UniRef50_A6QIK9		0.00643768430981	0.00270767554157	-0.00373000876824
+UniRef50_P45627	Glutamine synthetase	5.18456172615e-06	0.0012002902599	0.00119510569817
+UniRef50_B2T5I0	Ribonuclease HII	2.18466481345e-05	9.19637160294e-06	-1.26502765316e-05
+UniRef50_UPI00036856CA	hypothetical protein	0.00027386493518	4.80139875405e-05	-0.000225850947639
+UniRef50_R7M1V7	DEAD DEAH box helicase domain protein	0.000666095097609	0.00236650721688	0.00170041211927
+UniRef50_H1BUU0	Inner membrane metabolite transporter ygcS	0.00262683084276	0.00138244233851	-0.00124438850425
+UniRef50_J7QJW8		0.000125745658831	0.000184889009233	5.9143350402e-05
+UniRef50_K5GQ46		0.00111966198608	0.00010854187655	-0.00101112010953
+UniRef50_A6LYI1		0.00060317442049	0.000411113742723	-0.000192060677767
+UniRef50_UPI0003EC3EE0	PREDICTED	1.65961049793e-05	0.000141962838917	0.000125366733938
+UniRef50_A0A014I7A1	Pyridine nucleotide disulfide oxidoreductase family protein	0.000135265622063	0.00035110911428	0.000215843492217
+UniRef50_Q5HNI2	Aminotransferase, class V	0.0164863780619	0.00587086214606	-0.0106155159158
+UniRef50_X2H2G3	RND efflux system, outer membrane lipoprotein CmeC	0.000196035806721	0.00243418162646	0.00223814581974
+UniRef50_A0R5R7	Putative aminotransferase MSMEG_6286 MSMEI_6121	0.000279278289246	0.00503858320069	0.00475930491144
+UniRef50_A6LWI0	GCN5 related N acetyltransferase	0.000150592814697	0.00046334784557	0.000312755030873
+UniRef50_A6LPV1	TPR repeat containing protein	0.000409207252008	0.000235000030651	-0.000174207221357
+UniRef50_Q8CWR9	30S Ribosomal protein S1	0.004909127607	0.00507423977484	0.00016511216784
+UniRef50_UPI0003A07669	hypothetical protein	2.06629740203e-05	0.000248933166937	0.000228270192917
+UniRef50_D3E2P3	2 phospho L lactate guanylyltransferase	0.00172021417878	0.00238968223095	0.00066946805217
+UniRef50_B9KPQ3		0.00494509457258	0.000385755698885	-0.00455933887369
+UniRef50_T0TBW3	Late competence protein ComGD	2.28759285352e-05	2.85739526563e-05	5.6980241211e-06
+UniRef50_A7AK72		3.44063939853e-05	0.0001989991499	0.000164592755915
+UniRef50_D4FM51	Plasmid recombination enzyme	0.240102320308	0.0660335100375	-0.17406881027
+UniRef50_Q9RRA3		0.00124788756646	0.013878437658	0.0126305500915
+UniRef50_B7H011	3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000475820556097	0.00639284500169	0.00591702444559
+UniRef50_Q9Z3R5	Alpha glucosides binding periplasmic protein AglE	0.0123909599914	0.00226435783225	-0.0101266021592
+UniRef50_UPI0002558932	hypothetical protein	9.60562720262e-05	4.55910656136e-05	-5.04652064126e-05
+UniRef50_UPI00036947AC	hypothetical protein	1.54268043047e-05	1.38998641816e-05	-1.5269401231e-06
+UniRef50_UPI000329BBE6	PREDICTED	3.46071572661e-05	4.37339130431e-06	-3.02337659618e-05
+UniRef50_A4WS76	Multi sensor signal transduction histidine kinase	0.00435282231411	0.00144453862634	-0.00290828368777
+UniRef50_UPI000363EF1A	hypothetical protein	2.0230960003e-06	2.05139470601e-06	2.829870571e-08
+UniRef50_A6CJT6		1.92164955045e-05	0.000162885354401	0.000143668858897
+UniRef50_UPI00028868C0	ribonucleotide diphosphate reductase subunit beta	0.000143104370948	0.00245520790807	0.00231210353712
+UniRef50_Q39RR0	Peptidyl tRNA hydrolase	2.48340452411e-05	2.54769220243e-05	6.428767832e-07
+UniRef50_W4U5J7	Hypothetical radical SAM family enzyme	2.54747923368e-05	0.000229745583095	0.000204270790758
+UniRef50_Q3C148	DNA repair and recombination protein 	0.000307369899816	0.000312039484729	4.669584913e-06
+UniRef50_UPI0002885658	3 hydroxyacyl CoA dehydrogenase	7.49944571364e-06	6.16964778192e-05	5.41970321056e-05
+UniRef50_Q46078	Pyruvate kinase	4.10722507528e-06	1.46519114423e-05	1.0544686367e-05
+UniRef50_Q2J2E9	sn glycerol 3 phosphate import ATP binding protein UgpC	7.42127560666e-05	6.93997617146e-05	-4.812994352e-06
+UniRef50_Q7WF76	Putative Holliday junction resolvase	2.98719514976e-05	2.05217218392e-05	-9.3502296584e-06
+UniRef50_M4YXX5	Glycosyl hydrolase, family 3	0.000612076421126	0.000100676149502	-0.000511400271624
+UniRef50_UPI00034F86F8	PREDICTED	0.00036472076218	0.000136301410845	-0.000228419351335
+UniRef50_Q58493		0.00390209051187	0.000744952766978	-0.00315713774489
+UniRef50_A4WTJ0		0.0001581635	7.80656323595e-05	-8.00978676405e-05
+UniRef50_P0A9T4	Protein tas	0.00322141072683	0.00951298081662	0.00629157008979
+UniRef50_U6FW85		0.000636001215368	0.00076156012448	0.000125558909112
+UniRef50_B7UZW2	Ecotin	0.00210753622359	0.000580562715609	-0.00152697350798
+UniRef50_UPI0004782022	peptide ABC transporter permease	1.57498051211e-05	1.49573783599e-05	-7.924267612e-07
+UniRef50_H8DHC5	ATP dependent OLD family endonuclease	0.00365791904567	0.00242597264769	-0.00123194639798
+UniRef50_I0HUP6	Diguanylate cyclase	3.15710943184e-06	4.31775296905e-05	4.00204202587e-05
+UniRef50_D2BL86	Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase	0.00382885290478	0.00226008180602	-0.00156877109876
+UniRef50_Q8XP36	UPF0324 membrane protein CPE0129	0.000454286268022	0.00201433866532	0.0015600523973
+UniRef50_C6DHE2	UDP N acetyl D mannosaminuronic acid transferase	0.00329855186385	0.000479217720496	-0.00281933414335
+UniRef50_J2FLN3	Alcohol dehydrogenase Adh4	0.000577784676811	0.00266263900478	0.00208485432797
+UniRef50_UPI000225FA9C	ABC transporter related protein, partial	4.04390984072e-05	1.55620113355e-05	-2.48770870717e-05
+UniRef50_UPI0003B37CEF	hypothetical protein	5.36775258869e-05	1.95722761396e-05	-3.41052497473e-05
+UniRef50_Q8DUK9	7 carboxy 7 deazaguanine synthase	0.00486054989841	0.00150801556633	-0.00335253433208
+UniRef50_Q0FEK0		4.80649975142e-05	1.02757762974e-05	-3.77892212168e-05
+UniRef50_Q1BY14	Methionine import ATP binding protein MetN 1	4.78332482471e-06	1.24888941271e-05	7.70556930239e-06
+UniRef50_UPI0003016AD5	hypothetical protein	8.81693766339e-06	5.1040721061e-06	-3.71286555729e-06
+UniRef50_K0B0R4	Para aminobenzoate synthase component 1	8.72463764734e-05	0.000800660411786	0.000713414035313
+UniRef50_F0DCU8		7.83947972266e-05	3.19259254101e-05	-4.64688718165e-05
+UniRef50_A8LPC9	Endoribonuclease L PSP	0.000470455168012	0.000221510019484	-0.000248945148528
+UniRef50_T9QA68	Adhesin invasin	0.000182594781991	0.000230611542828	4.8016760837e-05
+UniRef50_Q9ZI33	Ribulose bisphosphate carboxylase small chain	0.00803583869336	0.000572765435544	-0.00746307325782
+UniRef50_Q5H5Y6	Phenol hydroxylase	1.13173389672e-05	0.000173418600772	0.000162101261805
+UniRef50_C6SPE5		0.00319907264003	0.000777149224201	-0.00242192341583
+UniRef50_I6Z3X6		0.00202968843911	3.3002896435e-05	-0.00199668554268
+UniRef50_F3ZHG8	Putative zinc binding oxidoreductase	0.00010740760634	0.000199189901464	9.1782295124e-05
+UniRef50_Q9CIR1	tRNA N6 adenosine threonylcarbamoyltransferase	1.51396572322e-05	4.18550408913e-06	-1.09541531431e-05
+UniRef50_A1WG08	Binding protein dependent transport systems inner membrane component	0.00229928496834	0.00109443493432	-0.00120485003402
+UniRef50_B7GYQ7	4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000993258212345	0.00757204158262	0.00657878337027
+UniRef50_C3KT41	D isomer specific 2 hydroxyacid dehydrogenase family protein	0.000134656119687	0.00122836599102	0.00109370987133
+UniRef50_D5ASZ5	Flagellar basal body associated protein FliL 2	0.00698407376846	0.000348799258104	-0.00663527451036
+UniRef50_UPI0004636BA5	DNA repair protein	3.82769862948e-06	3.74479619542e-06	-8.290243406e-08
+UniRef50_N2UKS8	Electron transfer flavodomain protein	0.00364892438374	0.000728142626337	-0.0029207817574
+UniRef50_G7VQ62	Dehydrogenase	0.000446383790597	0.00161146937431	0.00116508558371
+UniRef50_UPI0003AF9315	PREDICTED	2.4760991295e-06	1.75642186049e-05	1.50881194754e-05
+UniRef50_Q03027	Alkaline protease secretion protein AprF	0.000243106414525	0.000366698694133	0.000123592279608
+UniRef50_P50939	NADH quinone oxidoreductase subunit L	0.00921382484706	0.00207187908037	-0.00714194576669
+UniRef50_F2KIT5	Glycine betaine ABC transporter, ATP binding component	0.0112604217102	0.00533058238626	-0.00592983932394
+UniRef50_Q89P06	Blr3677 protein	0.0126741799096	0.00409077981821	-0.00858340009139
+UniRef50_D6FNR4		5.54683132424e-05	2.41601509524e-06	-5.30522981472e-05
+UniRef50_A8AY63	Membrane protein, putative	0.00665838492907	0.00102743141551	-0.00563095351356
+UniRef50_A0A023RYQ0		0.000331560432068	0.00613921131723	0.00580765088516
+UniRef50_S6BF09	ATP dependent DNA helicase RecQ	0.000948887703246	9.07270983708e-05	-0.000858160604875
+UniRef50_UPI00034547F6	hypothetical protein	6.62139703393e-06	1.1325869155e-05	4.70447212107e-06
+UniRef50_C4K0T2	Queuine tRNA ribosyltransferase	5.56987846554e-06	1.60754334432e-05	1.05055549777e-05
+UniRef50_P76045	Outer membrane protein G	0.00286948503479	0.000796876361409	-0.00207260867338
+UniRef50_Q87WZ6	MutT nudix family protein	0.000791368862338	0.000303927998483	-0.000487440863855
+UniRef50_B2S8A9	Nicotinate phosphoribosyltransferase	0.00587895368077	0.0016896042043	-0.00418934947647
+UniRef50_F7X314	Phage major capsid protein, HK97 family	0.0101520557457	0.00143571977989	-0.00871633596581
+UniRef50_F0VY37	PTS system, beta glucosides specific IIA component	0.00567315879734	0.00270948350905	-0.00296367528829
+UniRef50_B8ZUM2	S adenosylmethionine synthase	3.84847036829e-05	0.000474096272763	0.00043561156908
+UniRef50_B7LN16	Ribosomal protein S6  L glutamate ligase	0.00227782588061	0.00183060678154	-0.00044721909907
+UniRef50_B0VE73		0.000285459560716	0.00767900298141	0.00739354342069
+UniRef50_U1FWN3	Putative glucoamylase S1 S2	2.22724625107e-05	0.000218009940572	0.000195737478061
+UniRef50_G9AFA8	Sugar ABC transporter, ATP binding protein	0.000696435768328	0.000116649126482	-0.000579786641846
+UniRef50_UPI00041E0388	hypothetical protein	2.01972134237e-05	9.63787431796e-06	-1.05593391057e-05
+UniRef50_B8J249	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.34033495984e-05	4.5339372661e-05	3.19360230626e-05
+UniRef50_Q9RV43		0.000831749761635	0.0323108680729	0.0314791183113
+UniRef50_E4PJS6		5.19306913542e-06	1.23305304199e-05	7.13746128448e-06
+UniRef50_M1MMU0	Amino acid ABC transporter substrate binding protein, PAAT family	0.00167788350834	0.00143364479164	-0.0002442387167
+UniRef50_P42407	Putative UTP  glucose 1 phosphate uridylyltransferase	9.87933817892e-05	6.23100114394e-05	-3.64833703498e-05
+UniRef50_O86422	UDP glucose 6 dehydrogenase	2.77401116628e-06	0.000270624343531	0.000267850332365
+UniRef50_H5YG53	N terminal double transmembrane domain containing protein	1.12854843854e-06	1.99982062614e-06	8.712721876e-07
+UniRef50_Q1CXY2		0.00104962070547	2.65041967582e-05	-0.00102311650871
+UniRef50_X4YWC2		7.73206701881e-06	2.04282594886e-05	1.26961924698e-05
+UniRef50_P07769	Benzoate 1,2 dioxygenase subunit alpha	0.000490798519983	0.00912964140078	0.0086388428808
+UniRef50_O30826	Superoxide dismutase [Mn]	0.00126235748581	0.00695113265559	0.00568877516978
+UniRef50_P58362	Trimethylamine N oxide reductase 2	0.000891613326797	0.000297374549075	-0.000594238777722
+UniRef50_A4VYI2	Transcription repair coupling factor	0.000521069885137	5.07417019289e-05	-0.000470328183208
+UniRef50_Q81QB6	Methylmalonate semialdehyde dehydrogenase [acylating] 2	1.35149002753e-05	0.00428298221083	0.00426946731055
+UniRef50_F4GAH1	Transposase IS4 family protein	0.000748197907821	3.98182635472e-05	-0.000708379644274
+UniRef50_K0S0E9		3.22227152755e-06	1.1041515421e-05	7.81924389345e-06
+UniRef50_J0YAZ5		0.000943714972126	0.000112537289145	-0.000831177682981
+UniRef50_P46561	ATP synthase subunit beta, mitochondrial	1.88796007539e-05	1.67017945757e-05	-2.1778061782e-06
+UniRef50_W4TMC7		9.6666693449e-06	0.000260132555142	0.000250465885797
+UniRef50_D3QC48	Glycerophosphoryl diester phosphodiesterase	0.00819854319724	0.00313345987695	-0.00506508332029
+UniRef50_UPI0003EC2A72	PREDICTED	1.943127028e-05	1.03059774686e-05	-9.1252928114e-06
+UniRef50_V7ZEH0	ABC transporter permease and ATP binding protein	0.00498199210856	0.0016058858543	-0.00337610625426
+UniRef50_A0A017HVI0	Mobile element protein	2.48892011534e-05	7.10630492633e-06	-1.77828962271e-05
+UniRef50_UPI00046E240D	PREDICTED	6.26010721355e-06	6.8202529925e-05	6.19424227114e-05
+UniRef50_A6LU76		0.000108994991968	0.00144734949684	0.00133835450487
+UniRef50_T5XQY7	Membrane protein	0.00134223008634	0.000112430217714	-0.00122979986863
+UniRef50_P0ADS0	LOG family protein YgdH	0.00335978591208	0.000406592361637	-0.00295319355044
+UniRef50_Q9HI36	Major exported protein	0.000481006234789	0.000345399655201	-0.000135606579588
+UniRef50_D2NU09		6.33454757134e-06	6.02303815742e-05	5.38958340029e-05
+UniRef50_D9RIX1		0.000300502717536	0.000220408171759	-8.0094545777e-05
+UniRef50_UPI000419A0DE	hypothetical protein	4.7369935798e-06	9.2212428451e-06	4.4842492653e-06
+UniRef50_A6L050	2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.00475359888e-05	0.00626266337721	0.00625261584122
+UniRef50_UPI0002E5C3C1	hypothetical protein	4.36628745523e-05	9.57003068738e-05	5.20374323215e-05
+UniRef50_Q03KT7	Dihydroorotate dehydrogenase B ), electron transfer subunit	0.0056163042561	0.0027594789636	-0.0028568252925
+UniRef50_Q5HKN3	Acetyltransferase, GNAT family	0.0195241026204	0.00568079280125	-0.0138433098191
+UniRef50_F2EDX4	Predicted protein 	6.66180020111e-06	1.93469623516e-05	1.26851621505e-05
+UniRef50_UPI00036EAACB	hypothetical protein	0.000297908085549	0.000995449568075	0.000697541482526
+UniRef50_UPI000441BADB	PREDICTED	1.6202714075e-05	2.76286544791e-05	1.14259404041e-05
+UniRef50_P37631		0.0023970278766	0.00306671512104	0.00066968724444
+UniRef50_UPI00036F2919	hypothetical protein	1.76312314451e-05	1.85725749019e-05	9.413434568e-07
+UniRef50_P80521	Pyruvate synthase subunit PorA	0.00476276083121	0.00169305634929	-0.00306970448192
+UniRef50_G7U8S0	CoA transferase family III	0.000961759036027	0.0061183082032	0.00515654916717
+UniRef50_Q6F964		0.000130317372447	0.00557526767679	0.00544495030434
+UniRef50_F0P513	Replication initiation protein, truncated	0.000155014365938	6.5408497528e-05	-8.960586841e-05
+UniRef50_Q2RN85	Uroporphyrinogen decarboxylase	7.34158177522e-06	2.37978976802e-05	1.6456315905e-05
+UniRef50_F3Z4V2		8.71622374851e-05	4.35384635348e-05	-4.36237739503e-05
+UniRef50_U5NRR7		0.0178701955913	0.00435807404342	-0.0135121215479
+UniRef50_B2UNA2	Dihydroorotate dehydrogenase 	8.24979655317e-06	0.00661451815751	0.00660626836096
+UniRef50_A5V4D5		2.1633631885e-05	2.20348044488e-05	4.011725638e-07
+UniRef50_UPI00040B6C97	hypothetical protein	2.81612700626e-06	5.17388827095e-06	2.35776126469e-06
+UniRef50_Q4L7R6	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0129153798986	0.00188978133068	-0.0110255985679
+UniRef50_C8NS74	Formamidopyrimidine DNA glycosylase H2TH domain protein	0.000196607285859	0.00812714584714	0.00793053856128
+UniRef50_UPI0003B44FF8	N acetylglucosamine 1 phosphate uridyltransferase, partial	1.44931641581e-05	8.72975360197e-06	-5.76341055613e-06
+UniRef50_Q0FP15	ABC peptide transporter, inner membrane subunit	0.0012957576308	0.000529431418181	-0.000766326212619
+UniRef50_W8QUX6	Transcriptional regulator PdhR	0.000744714257679	0.000503687953156	-0.000241026304523
+UniRef50_V5ESH7		4.93068535137e-06	0.000314797489609	0.000309866804258
+UniRef50_F9Y7Q5	Carbonic anhydrase	0.0195187590679	0.0012758348223	-0.0182429242456
+UniRef50_K0K6Y3		1.96883294732e-05	2.51794637945e-05	5.4911343213e-06
+UniRef50_P0AEX3	Alpha ketoglutarate permease	0.00292871950988	0.00541792867589	0.00248920916601
+UniRef50_M1XFP7		0.000118042719085	0.000606372868261	0.000488330149176
+UniRef50_R4GHV6		7.05271752157e-05	0.000119155509215	4.86283339993e-05
+UniRef50_UPI000374C07B	hypothetical protein, partial	3.47340689879e-05	1.63003801997e-05	-1.84336887882e-05
+UniRef50_A5IQH4	Phage integrase family protein	0.00796668772165	0.00464112046482	-0.00332556725683
+UniRef50_Q8DND7		0.00745880730675	0.000950408473414	-0.00650839883334
+UniRef50_C3KNX2		0.000200396216705	0.000124352586522	-7.6043630183e-05
+UniRef50_UPI0003DEB94F	PREDICTED	6.29944425082e-06	8.0295191492e-06	1.73007489838e-06
+UniRef50_D2VIA9	Predicted protein	8.63375220039e-05	0.00018081824869	9.44807266861e-05
+UniRef50_O34599	Putative cysteine desulfurase IscS 1	9.74178797707e-06	0.000881061934195	0.000871320146218
+UniRef50_UPI0002558DCB	heat shock protein HSP33	2.15857936444e-05	2.0035748238e-05	-1.5500454064e-06
+UniRef50_B1XYL1	tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.00368459714855	0.00031474998002	-0.00336984716853
+UniRef50_B1MLZ3	Ribonuclease PH	0.001265649655	2.21303801448e-05	-0.00124351927486
+UniRef50_A6LWJ3	Leucyl phenylalanyl tRNA  protein transferase	0.00147404339564	0.000770391404865	-0.000703651990775
+UniRef50_Q9RU74	Ketol acid reductoisomerase	0.0345635300434	0.0356633327832	0.0010998027398
+UniRef50_UPI00045E0C55	PREDICTED	9.18811302645e-06	3.81662388165e-05	2.89781257901e-05
+UniRef50_UPI0003B5B300	preprotein translocase subunit TatA	8.32311736754e-05	4.69820677701e-05	-3.62491059053e-05
+UniRef50_Q5HLM4	Acetyltransferase, GNAT family	0.0122964494695	0.00133223057407	-0.0109642188954
+UniRef50_Q7VRS2	GMP synthase [glutamine hydrolyzing]	5.85095789624e-06	1.87342324122e-05	1.2883274516e-05
+UniRef50_A7ZIS2		0.00024057403108	6.34175550613e-05	-0.000177156476019
+UniRef50_UPI00035E4867	hypothetical protein	6.04793029774e-05	1.11856354779e-05	-4.92936674995e-05
+UniRef50_P72097	CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase	0.000141380520171	0.0044268424835	0.00428546196333
+UniRef50_A6LXH9	NHL repeat containing protein	9.29768445451e-05	0.00087280270583	0.000779825861285
+UniRef50_UPI0004721624	malate dehydrogenase, partial	6.81315371794e-05	3.56775277755e-05	-3.24540094039e-05
+UniRef50_Q7MUV7	Lysine  tRNA ligase	0.000643565679842	0.00544020543667	0.00479663975683
+UniRef50_Q8VNN2	Beta galactosidase	0.00282343659554	0.00109666103591	-0.00172677555963
+UniRef50_Q3IV38		0.0153032259772	0.00253890594903	-0.0127643200282
+UniRef50_P63858	Capsular polysaccharide biosynthesis protein CapA	0.0101339182863	0.00111417183229	-0.00901974645401
+UniRef50_UPI000347E827	3 beta hydroxysteroid dehydrogenase	7.21531759285e-06	4.32703889925e-05	3.60550713996e-05
+UniRef50_C2DDU8	Putative L xylulose 5 phosphate 3 epimerase	8.76998914849e-05	2.11702670564e-05	-6.65296244285e-05
+UniRef50_UPI000365187A	chromosome partitioning protein ParA, partial	0.000569845787601	0.000154800056222	-0.000415045731379
+UniRef50_UPI00046F371B	chorismate synthase	1.51307463395e-05	0.00016949091412	0.000154360167781
+UniRef50_B7GWT8	Ribosomal RNA small subunit methyltransferase C	0.000355815146342	0.00638547615168	0.00602966100534
+UniRef50_UPI0003EE05C6	PREDICTED	1.29706877245e-05	1.87376025664e-05	5.7669148419e-06
+UniRef50_X3EN79		0.000607383470784	0.000711606518538	0.000104223047754
+UniRef50_UPI00047A30AA	hypothetical protein	0.000733331025094	0.000162708928474	-0.00057062209662
+UniRef50_Q1C1E1	Glucose 1 phosphate adenylyltransferase	0.0146105118213	0.00280394115917	-0.0118065706621
+UniRef50_UPI00036C8CDE	hypothetical protein	0.00209310138369	0.000490213643435	-0.00160288774025
+UniRef50_UPI00037C3A9D	hypothetical protein, partial	7.1749049923e-07	5.25935869592e-07	-1.91554629638e-07
+UniRef50_UPI0003C11566	PREDICTED	0.000507628667435	0.000616714956331	0.000109086288896
+UniRef50_UPI00040E5729	ABC transporter	7.13162582353e-06	0.000107823965266	0.000100692339442
+UniRef50_X1PNE8	Marine sediment metagenome DNA, contig	3.43854112944e-05	6.74345318944e-05	3.30491206e-05
+UniRef50_G7MAQ1	Membrane bound O acyl transferase MBOAT family protein	0.000103704941998	0.00102623323107	0.000922528289072
+UniRef50_Q7W8T4	Peptide chain release factor 2	0.00391579861939	0.0140551801167	0.0101393814973
+UniRef50_A7WYY0	Molecular chaperone Hsp31 and glyoxalase 3	0.0119154523855	0.0108137618934	-0.0011016904921
+UniRef50_UPI000421D154	hypothetical protein	2.04316553362e-06	2.60813903017e-06	5.6497349655e-07
+UniRef50_UPI000412790F	hypothetical protein	4.11239513658e-05	7.31339895527e-06	-3.38105524105e-05
+UniRef50_U9X3Y3	Rhamnan synthesis protein F domain protein	3.74385527953e-05	6.92212407108e-05	3.17826879155e-05
+UniRef50_U5MVV7	HTH type transcriptional regulator YybE	0.000301576958057	0.00211714282057	0.00181556586251
+UniRef50_A7IIB6	Dihydrodipicolinate synthetase	0.000340613114707	0.000193650298495	-0.000146962816212
+UniRef50_C5CFW2	UDP N acetylglucosamine 1 carboxyvinyltransferase	7.66293856835e-06	2.66349645368e-05	1.89720259684e-05
+UniRef50_UPI00042449ED	hypothetical protein	3.57504886523e-06	4.40591584425e-06	8.3086697902e-07
+UniRef50_C7C7I3		0.00706909805164	0.00133281873626	-0.00573627931538
+UniRef50_E8U7F9	Response regulator receiver protein	0.000227401198102	0.117670917672	0.117443516474
+UniRef50_V0X9G6	dGTPase	0.00237612601739	0.000503066310752	-0.00187305970664
+UniRef50_B4F298	Fructose 1,6 bisphosphatase class 1	0.0031179689885	0.00259089780759	-0.00052707118091
+UniRef50_Q831F7	Release factor glutamine methyltransferase	8.94480009502e-06	0.000555729973354	0.000546785173259
+UniRef50_A3PFV7	Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00121434716993	9.90441716778e-05	-0.00111530299825
+UniRef50_UPI0004746084	hypothetical protein	0.000246092734189	0.000555514176567	0.000309421442378
+UniRef50_UPI0003608471	hypothetical protein	1.41129241711e-05	2.23272824339e-05	8.2143582628e-06
+UniRef50_Q5HH10	Phosphoribosylamine  glycine ligase	0.0179634239187	0.00563114731999	-0.0123322765987
+UniRef50_A6WEY6	Carbamoyl phosphate synthase L chain ATP binding	7.44548301457e-05	0.00427397955166	0.00419952472151
+UniRef50_UPI0003F48E6E	hypothetical protein TREMEDRAFT_44294	2.21180825112e-05	4.18100491019e-05	1.96919665907e-05
+UniRef50_UPI00047B5729	hypothetical protein	2.22683159818e-05	2.59780853997e-05	3.7097694179e-06
+UniRef50_P67129	UPF0053 inner membrane protein YgdQ	0.00341827803617	0.000746239122265	-0.00267203891391
+UniRef50_L2T6M0	Phenol hydroxylase 	0.000112426538546	8.19981063315e-06	-0.000104226727913
+UniRef50_Q49WG8	1,4 Dihydroxy 2 naphthoyl CoA synthase	6.90296991846e-05	2.99098170517e-05	-3.91198821329e-05
+UniRef50_P44316	Diaminopimelate decarboxylase	1.11393716802e-05	0.00326164028778	0.0032505009161
+UniRef50_W4VJA0	PTS system	4.09727825416e-05	3.23332853973e-05	-8.6394971443e-06
+UniRef50_UPI00046A542B	hypothetical protein	6.42202537412e-06	4.06509540806e-05	3.42289287065e-05
+UniRef50_UPI00037E6930	hypothetical protein	6.05608913533e-06	6.74768392549e-06	6.9159479016e-07
+UniRef50_C4L3Y8	Polyphosphate kinase	2.29918954698e-06	0.000151549774789	0.000149250585242
+UniRef50_UPI0002002F71	hypothetical protein	0.000168159727512	2.91080135921e-05	-0.00013905171392
+UniRef50_B9DKN5	Biotin synthase	0.0245126456752	0.00636023733733	-0.0181524083379
+UniRef50_F4A413	Transcriptional regulator	0.000517035759702	0.000208213893202	-0.0003088218665
+UniRef50_E3I461	Arsenical resistance protein	0.000142626947925	0.0120677017563	0.0119250748084
+UniRef50_UPI0003A6D827	sulfite oxidase	1.01200806686e-05	7.82739070587e-05	6.81538263901e-05
+UniRef50_C9SSZ1	Oxidoreductase FAD NAD binding	5.01311429643e-05	1.32658248915e-05	-3.68653180728e-05
+UniRef50_Q1GW15		0.000102624145099	5.76288639402e-05	-4.49952811588e-05
+UniRef50_I1F5A5		1.39959896984e-05	7.55433985786e-06	-6.44164984054e-06
+UniRef50_B8G5R5	Peptide deformylase	9.47820163591e-06	1.25462462496e-05	3.06804461369e-06
+UniRef50_C6T9B8		0.000109541432732	5.2251204662e-05	-5.729022807e-05
+UniRef50_A6QEA3		0.0132291254386	0.00260674501126	-0.0106223804273
+UniRef50_Q05098	Ferric enterobactin receptor	0.00124647008613	0.00118438003259	-6.209005354e-05
+UniRef50_UPI0004792802	transcription antiterminator NusG	2.63086439452e-05	5.23383824546e-05	2.60297385094e-05
+UniRef50_UPI0003F4A35E	hypothetical protein TREMEDRAFT_74449	1.89351258361e-06	2.74200557878e-06	8.4849299517e-07
+UniRef50_Q7VIA9	Ribonuclease 3	6.21444178598e-06	0.00132849598711	0.00132228154532
+UniRef50_Q927P1	tRNA pseudouridine synthase A	7.43579762364e-06	0.00274548306196	0.00273804726434
+UniRef50_UPI00035A1EA0	PREDICTED	1.58781606928e-05	1.52564703525e-05	-6.216903403e-07
+UniRef50_R2NN08	PemK family transcriptional regulator	0.00173388432926	0.00252917940354	0.00079529507428
+UniRef50_UPI00047C7F40	hypothetical protein	0.00562562701337	0.0023647063448	-0.00326092066857
+UniRef50_Q4JV62	4 hydroxy tetrahydrodipicolinate reductase	0.000355002497348	0.00672055018433	0.00636554768698
+UniRef50_F0E145	Hydrophobe amphiphile efflux 1  family protein (Fragment)	0.000589341537003	0.000294914266632	-0.000294427270371
+UniRef50_D9SR21		0.000237412571605	0.000372247947718	0.000134835376113
+UniRef50_H5UVK0		4.26846650389e-05	2.81674891621e-05	-1.45171758768e-05
+UniRef50_I3GYQ4		3.07148892466e-05	4.9425389992e-05	1.87105007454e-05
+UniRef50_O31760	Ribonuclease J2	6.49331477975e-05	4.89756907145e-05	-1.5957457083e-05
+UniRef50_I1EYN0		0.000328152899579	5.06670061103e-05	-0.000277485893469
+UniRef50_P00964	Glutamine synthetase	0.0131530285518	0.00382147249017	-0.00933155606163
+UniRef50_UPI0003490F7B	hypothetical protein	1.14728637909e-05	6.1924361837e-06	-5.2804276072e-06
+UniRef50_P54745	Heat responsive suppressor HrsA	0.00351697439169	0.000818838298675	-0.00269813609301
+UniRef50_Q9RVP6	Phosphoenolpyruvate carboxykinase [ATP]	1.03971711973e-05	0.044581085496	0.0445706883248
+UniRef50_A3PIK5	Putrescine binding periplasmic protein	0.0134480689331	0.00280411781676	-0.0106439511163
+UniRef50_Q8XBV3	Enterobactin synthase component E	0.00368344859595	0.0102789562906	0.00659550769465
+UniRef50_UPI00035FD10F	hypothetical protein	0.000261102186081	0.000195226594638	-6.5875591443e-05
+UniRef50_UPI0003743277	hypothetical protein	2.39073400293e-05	8.91157397248e-06	-1.49957660568e-05
+UniRef50_U3QMM7	ABC transporter ATP binding protein	0.000140409629971	0.000304188330053	0.000163778700082
+UniRef50_A9IQ26		0.00941456641079	0.00162520872735	-0.00778935768344
+UniRef50_Q9RZE6	Succinate semialdehyde dehydrogenase	0.000256230296385	0.0643787763394	0.064122546043
+UniRef50_UPI00036FBC00	hypothetical protein	6.65587960894e-06	6.48869933759e-06	-1.6718027135e-07
+UniRef50_H4HIB4		0.00514611612858	0.000715737239671	-0.00443037888891
+UniRef50_C8VZ79	Beta lactamase domain protein	0.000373748503814	0.0022048209743	0.00183107247049
+UniRef50_E6SKM4	Electron transfer flavoprotein alpha subunit	5.89571095904e-06	8.17876380729e-06	2.28305284825e-06
+UniRef50_P93306	NADH dehydrogenase [ubiquinone] iron sulfur protein 2	2.91622736447e-05	2.34356359381e-05	-5.7266377066e-06
+UniRef50_Q9KTJ5	Methionine import ATP binding protein MetN	9.12062034357e-06	1.00549448677e-05	9.3432452413e-07
+UniRef50_UPI0003769C5A	hypothetical protein	8.04479105088e-06	1.60751300407e-05	8.03033898982e-06
+UniRef50_UPI00039A55CB	hypothetical protein	3.12469733653e-05	2.22286446993e-05	-9.018328666e-06
+UniRef50_W1FXV5	Iron uptake factor PiuC	0.000163962913269	8.78595552198e-05	-7.61033580492e-05
+UniRef50_UPI00042A0F4E	hypothetical protein	9.5583776e-05	2.15164812296e-05	-7.40672947704e-05
+UniRef50_F0MZJ7	Lipopolysaccharide N acetylglucosaminyltransferase	0.000238857099643	0.00308676362059	0.00284790652095
+UniRef50_UPI0002BC466A	hypothetical protein, partial	1.66856985306e-05	0.00021636836013	0.000199682661599
+UniRef50_A7Z9P0	Cyclic pyranopterin monophosphate synthase	0.0144864843454	0.00162431299659	-0.0128621713488
+UniRef50_UPI0003626443	hypothetical protein, partial	6.41493409221e-06	7.25583475405e-06	8.4090066184e-07
+UniRef50_F4LW30	Galactitol specific enzyme IIC component of PTS	0.0159246353103	0.00468285717887	-0.0112417781314
+UniRef50_UPI0004724E83	hypothetical protein	1.86589141741e-05	0.00368351165259	0.00366485273842
+UniRef50_B5ZCH4	Sporulation domain protein	7.14277561963e-06	2.78937947192e-05	2.07510190996e-05
+UniRef50_Q4L9C4	Putative pyruvate, phosphate dikinase regulatory protein 1	0.0140220294402	0.00418523288181	-0.00983679655839
+UniRef50_Q8DSC8	Ribonuclease HIII	0.00787490637491	0.00424435233857	-0.00363055403634
+UniRef50_UPI00035C68B7	hypothetical protein	7.74895755011e-06	1.9437431378e-05	1.16884738279e-05
+UniRef50_R4VHN6	AzlC family protein	4.6241825768e-05	1.67570746735e-05	-2.94847510945e-05
+UniRef50_Q88F11		0.000184566013681	0.000350302005361	0.00016573599168
+UniRef50_F2N3V4	Peptide ABC transporter, periplasmic peptide binding protein	0.000138819999912	9.89335695768e-05	-3.98864303352e-05
+UniRef50_M1E792	Protein tyrosine phosphatase	1.15958817487e-05	5.33451056974e-05	4.17492239487e-05
+UniRef50_G0DVB5	Beta glucanase	0.000215500847	0.00672234447109	0.00650684362409
+UniRef50_N0APD1		2.19748717749e-06	3.36918387625e-06	1.17169669876e-06
+UniRef50_W6SQC5		0.000740249189385	0.000706090250575	-3.415893881e-05
+UniRef50_Q9RXH6		0.000143030297574	0.00358038805558	0.00343735775801
+UniRef50_Q255E7		0.000334481087742	0.000199919808566	-0.000134561279176
+UniRef50_UPI00045E6D39	hypothetical protein	0.000364408161665	0.000101679229027	-0.000262728932638
+UniRef50_M5EG32		0.000381903940063	0.000214523445595	-0.000167380494468
+UniRef50_P0ADW7		0.00385221223143	0.000767572239215	-0.00308463999221
+UniRef50_E6SFW3	Acyl CoA dehydrogenase domain containing protein	9.84746057885e-05	0.019374117907	0.0192756433012
+UniRef50_UPI000472D6AB	arginine ABC transporter ATP binding protein	3.90039433386e-05	2.6381682491e-05	-1.26222608476e-05
+UniRef50_Q4FS54	Dihydroxy acid dehydratase	0.000164685839464	0.000397676496707	0.000232990657243
+UniRef50_Q5HNG2	tRNA  ) methyltransferase	0.0105528050772	0.00370953722634	-0.00684326785086
+UniRef50_I3X570	Phosphotriesterase protein Php	0.00381993050899	0.000432558727564	-0.00338737178143
+UniRef50_O31404	Acetoin	0.0184022723598	0.00633182727105	-0.0120704450887
+UniRef50_X5Z2U4		1.12001162952e-05	3.0968893674e-05	1.97687773788e-05
+UniRef50_UPI0004752454	50S ribosomal protein L18, partial	7.58225725509e-05	0.000478325350467	0.000402502777916
+UniRef50_T1XNC8		0.00674358826406	0.000319261302914	-0.00642432696115
+UniRef50_UPI00047D8D50	PTS sugar transporter	5.73279120733e-06	7.17278600284e-06	1.43999479551e-06
+UniRef50_A3M7U1	Phosphopantetheinyl transferase component of siderophore synthetase	0.000166783205682	0.0101576989298	0.00999091572412
+UniRef50_UPI0003694178	hypothetical protein	2.34031223265e-06	8.03963942825e-06	5.6993271956e-06
+UniRef50_A6TDX1	Membrane bound lytic murein transglycosylase C	0.00194047499521	0.00063806929983	-0.00130240569538
+UniRef50_Q1YML4		0.000109613713572	3.73717697836e-05	-7.22419437884e-05
+UniRef50_Q3IXU4	Transcriptional regulator, IclR family MhpR	0.00726619844944	0.000855747270728	-0.00641045117871
+UniRef50_F9Z2J9		0.000216945970609	0.00417675248357	0.00395980651296
+UniRef50_S9V0F9	Plectin	4.99734712492e-05	2.27038231402e-05	-2.7269648109e-05
+UniRef50_UPI000475D84B	spermidine putrescine ABC transporter substrate binding protein	8.9332761801e-06	2.79369190498e-05	1.90036428697e-05
+UniRef50_F3U2V0	Gas vesicle operon protein	0.0102161334589	0.00300276689147	-0.00721336656743
+UniRef50_K7U3H6		1.88215337338e-06	9.9597207344e-06	8.07756736102e-06
+UniRef50_W7WRB6		0.000312385792788	0.00018048425152	-0.000131901541268
+UniRef50_UPI000345BA64	hypothetical protein	0.000405254368462	0.000116213482927	-0.000289040885535
+UniRef50_Q5Z7E3		2.35390357303e-05	4.94986379554e-05	2.59596022251e-05
+UniRef50_E8SMG2	PetC	0.000173689872173	0.00186316201436	0.00168947214219
+UniRef50_E4EZN9		5.92886023805e-05	0.000366718545812	0.000307429943432
+UniRef50_UPI00042B0CC2	Non intrinsic ABC protein 7 isoform 6	3.30675926418e-05	1.79033815897e-05	-1.51642110521e-05
+UniRef50_K0EQ96	NADP dependent isocitrate dehydrogenase	0.000369448863451	0.000147092484913	-0.000222356378538
+UniRef50_A5UM19	Predicted permease	0.00204574534145	0.000412218931968	-0.00163352640948
+UniRef50_U6K4H4		2.6510600078e-05	1.38633217339e-05	-1.26472783441e-05
+UniRef50_W8U7U4	ABC type transport system involved in resistance to organic solvents, periplasmic component	0.000709169836922	0.000820661926468	0.000111492089546
+UniRef50_C3Z9G8		1.670201896e-05	7.73288820198e-06	-8.96913075802e-06
+UniRef50_C4IYT1		2.00616378548e-05	0.000176836350414	0.000156774712559
+UniRef50_UPI000470303C	hypothetical protein	3.28967757738e-06	4.6579597572e-06	1.36828217982e-06
+UniRef50_Q8DU86		0.00273643935438	0.0020366669324	-0.00069977242198
+UniRef50_X1QUX5	Marine sediment metagenome DNA, contig	9.22344759715e-05	4.15593295073e-05	-5.06751464642e-05
+UniRef50_UPI00047A6123	transcriptional regulator	4.62745804386e-05	4.03757359807e-05	-5.8988444579e-06
+UniRef50_D5CZH2	Pyrimidine monooxygenase RutA	0.00407044737873	0.000581731435362	-0.00348871594337
+UniRef50_Q4L7G4	Peroxide responsive repressor PerR	0.0126420309016	0.00245292168467	-0.0101891092169
+UniRef50_Q31EP3	ATP binding cassette  superfamily transporter, ATP binding component	0.000141204235229	0.00383455747249	0.00369335323726
+UniRef50_UPI0002DB68C6	hypothetical protein	8.81981913474e-06	1.04487444493e-05	1.62892531456e-06
+UniRef50_B2TL50	CoA transferase, A subunit	0.000339059271419	0.000743454642449	0.00040439537103
+UniRef50_I7EE24		0.00049760760615	5.46130297325e-05	-0.000442994576418
+UniRef50_UPI00046E59C8	30S ribosomal protein S5	7.55763561671e-06	1.32760435288e-05	5.71840791209e-06
+UniRef50_W9BYI7	Permease	0.000188196479694	5.12424234278e-05	-0.000136954056266
+UniRef50_UPI0003F65C64	PTS beta glucoside transporter subunit IIA	4.30760916382e-06	9.33676817093e-06	5.02915900711e-06
+UniRef50_S9Q8L7	XdhC protein 	3.05451570015e-05	3.16080178392e-05	1.0628608377e-06
+UniRef50_A0A014NSW5		3.1138976817e-05	8.40181812125e-06	-2.27371586957e-05
+UniRef50_W4HZ56		1.43467971594e-05	3.31469282512e-05	1.88001310918e-05
+UniRef50_B9KX06	Transcriptional regulator, GntR family	0.0029892983123	0.00050009538222	-0.00248920293008
+UniRef50_A0A038FVF0		0.000344055501749	6.26747112453e-05	-0.000281380790504
+UniRef50_P55792	4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase	0.000605113540747	0.00250946707022	0.00190435352947
+UniRef50_UPI00040A1C88	glycerol 3 phosphate ABC transporter permease	6.05755715192e-06	9.2311083373e-05	8.62535262211e-05
+UniRef50_Q62C32		0.000227024636271	0.000435679305636	0.000208654669365
+UniRef50_U5MNP4	Penicillin binding protein 1A	0.000541216002363	0.0017899970886	0.00124878108624
+UniRef50_UPI0003BD7FE7		1.2380791638e-05	1.86627778243e-05	6.2819861863e-06
+UniRef50_P0A0H1	rRNA adenine N 6 methyltransferase	0.0710695482894	0.015250564999	-0.0558189832904
+UniRef50_Q46821	Uric acid transporter UacT	0.00208716939372	0.000901464150756	-0.00118570524296
+UniRef50_Q8DV32		0.00624729803654	0.00273695481469	-0.00351034322185
+UniRef50_UPI00047156EA	hypothetical protein	1.18738483808e-05	6.66745940074e-05	5.48007456266e-05
+UniRef50_Q8G7H1	Ribonuclease 3	1.8068345351e-05	5.10460533467e-05	3.29777079957e-05
+UniRef50_P75989	HTH type transcriptional repressor YcgE	0.00653831875561	0.000864063278628	-0.00567425547698
+UniRef50_B9KRF9	Electron transport protein SCO1 SenC	0.0107427363269	0.00135282965922	-0.00938990666768
+UniRef50_D5C9N5	IS911 transposase orfB	2.74675665259e-05	5.3360102565e-05	2.58925360391e-05
+UniRef50_C1AE27	Aminotransferase	0.00152811983905	0.000557345394294	-0.000970774444756
+UniRef50_P77212	Probable pyridine nucleotide disulfide oxidoreductase RclA	0.00154307635008	0.000531832458592	-0.00101124389149
+UniRef50_U5WJX6		9.75170777661e-07	6.99869588374e-06	6.02352510608e-06
+UniRef50_U1G994	Putative adhesion protein like protein	1.35953912994e-05	1.53446156912e-05	1.7492243918e-06
+UniRef50_UPI00036FB1EC	hypothetical protein	3.8192973519e-05	1.20642543562e-05	-2.61287191628e-05
+UniRef50_G6YS95		0.000138602962078	3.24302539132e-05	-0.000106172708165
+UniRef50_A6LWX5	Acriflavin resistance protein	0.000231691695838	0.000827583578552	0.000595891882714
+UniRef50_UPI0002D36C87	hypothetical protein	0.000252873935684	0.000719329472493	0.000466455536809
+UniRef50_Q21LG2	tRNA  ) methyltransferase	0.00378426341098	0.00506320593819	0.00127894252721
+UniRef50_U3T3T5	Lipid A biosynthesis lauroyl acyltransferase	9.38249783738e-05	0.00784515633825	0.00775133135988
+UniRef50_F4QAU5	WH2 domain containing protein	3.30225670531e-06	2.09645037068e-05	1.76622470015e-05
+UniRef50_A5UKD0	Putative HTH type transcriptional regulatory protein Msm_0453	0.0032452428957	0.00079141834743	-0.00245382454827
+UniRef50_UPI000376FFD8	hypothetical protein	3.8237498165e-06	6.63765184477e-06	2.81390202827e-06
+UniRef50_Q9RU03		0.000151398123869	0.0202540496638	0.0201026515399
+UniRef50_Q9RU05		0.0012166247329	0.0428166763999	0.041600051667
+UniRef50_D5ARQ5	Methyltransferase small domain protein	0.000983190070638	0.000190526906577	-0.000792663164061
+UniRef50_B8FJP4	Phosphoglycerate kinase	2.9113669953e-05	4.64350843305e-05	1.73214143775e-05
+UniRef50_UPI000479F495	oxidoreductase	1.67870164307e-05	1.68778862333e-05	9.08698026e-08
+UniRef50_A0A011F836	TonB dependent Receptor Plug domain protein	0.000237962800056	0.00174289009336	0.0015049272933
+UniRef50_I6Q293		0.000310495959855	1.90246331987e-06	-0.000308593496535
+UniRef50_O07575		0.00857377147127	0.00414676789055	-0.00442700358072
+UniRef50_UPI0002F93554	hypothetical protein	3.25391568499e-05	0.00020005628824	0.00016751713139
+UniRef50_D4DM85	DNA gyrase, B subunit, C terminal domain protein	0.000237370727057	0.00359899417335	0.00336162344629
+UniRef50_UPI00046EE6DC	dTDP 4 dehydrorhamnose 3,5 epimerase	8.09720927999e-06	1.33780657522e-05	5.28085647221e-06
+UniRef50_Q8FRR3	Tryptophan  tRNA ligase	6.96678118772e-06	0.00104168742263	0.00103472064144
+UniRef50_O69282	Malate	4.50397808867e-06	1.30083901139e-05	8.50441202523e-06
+UniRef50_F2AE05		0.000742844876609	0.00121815905214	0.000475314175531
+UniRef50_UPI0004717CFE	hypothetical protein	1.65266953169e-06	1.1828102581e-06	-4.6985927359e-07
+UniRef50_Q87ST5	4 hydroxythreonine 4 phosphate dehydrogenase	2.79010069193e-05	5.24443039217e-05	2.45432970024e-05
+UniRef50_A5UMP7	Fuculose 1 phosphate aldolase, class II aldolase adducin family	0.00226042650783	0.000586721930844	-0.00167370457699
+UniRef50_A6LXI3	Integral membrane sensor signal transduction histidine kinase	0.000282756489039	0.0014810680286	0.00119831153956
+UniRef50_UPI000368FC1C	hypothetical protein	8.43077872633e-06	3.10569945556e-05	2.26262158293e-05
+UniRef50_Q1IVY6	FAD dependent oxidoreductase	9.35142829476e-05	0.0150304900812	0.0149369757983
+UniRef50_UPI00041819DF	glycine cleavage system protein T	7.66125304056e-06	5.97556055673e-06	-1.68569248383e-06
+UniRef50_B2TQB0	Amylovoran biosynthesis AmsK	0.000419479947242	0.00286781137482	0.00244833142758
+UniRef50_A1IRV5		0.000376248493809	0.00837739838349	0.00800114988968
+UniRef50_Q2FD95	AdeI	0.000241857910556	0.0039325935646	0.00369073565404
+UniRef50_R9SJQ0	Cell wall biosynthesis protein Mur ligase family	0.00303316314678	0.000536311970277	-0.0024968511765
+UniRef50_UPI00047BD281	hypothetical protein	0.000326038076861	4.98465635184e-05	-0.000276191513343
+UniRef50_UPI00035D739B	hypothetical protein	4.77989472503e-05	2.5664848983e-06	-4.5232462352e-05
+UniRef50_UPI00047BB945	SAM dependent methyltransferase	3.27997534341e-05	1.76416281773e-05	-1.51581252568e-05
+UniRef50_A0A023Y271	Carbon nitrogen hydrolase	0.00161607676697	0.00129897041445	-0.00031710635252
+UniRef50_Z2DBY9	Glycolate oxidase	1.46951476283e-05	2.55338874649e-05	1.08387398366e-05
+UniRef50_Q67PR5	Peptide deformylase	5.69533365392e-05	5.46136799135e-05	-2.3396566257e-06
+UniRef50_R7NQ15	Gluconate 5 dehydrogenase	0.00014900762718	0.00960413462624	0.00945512699906
+UniRef50_UPI0003B557FA	hydrolase	0.000102624549964	4.90561887621e-05	-5.35683612019e-05
+UniRef50_B7ELK9	cDNA clone	3.48527519644e-05	7.51291275249e-05	4.02763755605e-05
+UniRef50_Q1YMK1	N acetyl gamma glutamyl phosphate reductase	2.49780161966e-05	2.17201642265e-05	-3.2578519701e-06
+UniRef50_H5DQ87		6.21593375632e-05	7.09802853806e-05	8.8209478174e-06
+UniRef50_UPI00035E02BE	hypothetical protein	5.46594627386e-05	9.52746351128e-06	-4.51319992273e-05
+UniRef50_D6CMF6	Sulfite reductase	0.000921020160606	0.000507659308166	-0.00041336085244
+UniRef50_D5UQG6		6.34738694943e-06	2.47999378792e-05	1.84525509298e-05
+UniRef50_UPI0004690DDD	pesticidal protein Cry5Ba	0.00173696051446	0.000259404547005	-0.00147755596745
+UniRef50_A4WT11	Methyl accepting chemotaxis sensory transducer	0.00294387287978	0.00095833591277	-0.00198553696701
+UniRef50_I0JFL4	BioY family protein	0.0112587901427	0.00514966187553	-0.00610912826717
+UniRef50_W1FZE6	TRAP type C4 dicarboxylate transport system, large permease component	8.45353666165e-05	6.67317486163e-05	-1.78036180002e-05
+UniRef50_D4H9D0	Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II	9.27484002093e-05	0.00360248207781	0.0035097336776
+UniRef50_Q8EXQ7	Adenosylcobalamin biosynthesis bifunctional protein CobDQ	6.48511705355e-06	5.93945308035e-05	5.29094137499e-05
+UniRef50_D8JE40	Soluble lytic transglycosylase fused to an ABC type amino acid binding protein	0.000563161913801	0.00192763556202	0.00136447364822
+UniRef50_A1HQK7		1.17167859395e-05	2.83740968929e-05	1.66573109534e-05
+UniRef50_U7PXV4		5.03073008551e-06	6.64049255522e-07	-4.36668082999e-06
+UniRef50_O27762	Phosphate transporter permease PstC	0.00432885079117	0.000352266447552	-0.00397658434362
+UniRef50_Q1IXT2	Cysteine synthase	0.000566132060278	0.0389249431035	0.0383588110432
+UniRef50_F0KPZ6	Oligopeptidase A	0.000255896112659	0.00601024709726	0.0057543509846
+UniRef50_B2UVS5	Purine nucleoside phosphorylase	0.00102950724232	0.00296465705605	0.00193514981373
+UniRef50_F8X9S0	Ribonucleoside diphosphage reductase 1, beta subunit, B2	0.000410245834973	7.61465601684e-05	-0.000334099274805
+UniRef50_Q9I0J7	NADH quinone oxidoreductase subunit F	0.00342625131585	0.00678094031501	0.00335468899916
+UniRef50_P0A3B9	4 phosphopantetheinyl transferase EntD	0.00214344532893	0.00214800826273	4.5629338e-06
+UniRef50_A6LP26	Adenine phosphoribosyltransferase	2.68037226555e-05	1.70730222569e-05	-9.7307003986e-06
+UniRef50_A9M1L0	Valine  pyruvate aminotransferase	8.35145992986e-05	0.00414379382515	0.00406027922585
+UniRef50_B7HEG4	HPr kinase phosphorylase	0.0259769095693	0.0067024937685	-0.0192744158008
+UniRef50_UPI00035EE4F1	hypothetical protein, partial	1.91921330609e-05	3.73627273159e-05	1.8170594255e-05
+UniRef50_UPI000371E3B5	hypothetical protein	5.660720733e-06	1.23711448007e-05	6.7104240677e-06
+UniRef50_A4YBV8	DNA directed RNA polymerase subunit alpha	0.000355026420161	0.00338735792118	0.00303233150102
+UniRef50_P07003	Pyruvate dehydrogenase [ubiquinone]	0.00274332577794	0.00169456374456	-0.00104876203338
+UniRef50_Q5ZT84	4 hydroxyphenylpyruvate dioxygenase	0.000158385729588	0.00824153990315	0.00808315417356
+UniRef50_S4N129		4.24903846836e-05	0.000536436119069	0.000493945734385
+UniRef50_A6LV69	Adenylosuccinate synthetase	0.000193785441027	0.00122167915969	0.00102789371866
+UniRef50_P37872		0.00662693611282	0.000292392777421	-0.0063345433354
+UniRef50_K4KM08	Phosphatidylserine phosphatidylglycerophosphate  cardiolipin synthase like protein	0.000711250787108	0.000524323775164	-0.000186927011944
+UniRef50_Q5FIF8	N acetylmuramic acid 6 phosphate etherase	7.28262728184e-06	1.13769710944e-05	4.09434381256e-06
+UniRef50_G7ZP06		0.00898205778025	0.00454895843689	-0.00443309934336
+UniRef50_UPI0004734490	hypothetical protein, partial	7.26582664506e-06	1.00571454438e-05	2.79131879874e-06
+UniRef50_UPI0003804668	hypothetical protein, partial	3.27128438195e-05	3.78289598399e-06	-2.89299478355e-05
+UniRef50_A9KJX4	Two component transcriptional regulator, winged helix family	0.00098006653273	0.000518099482802	-0.000461967049928
+UniRef50_P39381		0.0018171307634	0.000628962295273	-0.00118816846813
+UniRef50_UPI00036F79EF	hypothetical protein	2.04829005201e-05	2.08469189899e-05	3.640184698e-07
+UniRef50_UPI00035C1F0F	PhoB family transcriptional regulator	1.19974411968e-05	3.18909407107e-05	1.98934995139e-05
+UniRef50_Q2L1W2	Phosphonoacetaldehyde hydrolase	0.000564786096375	0.0010537782868	0.000488992190425
+UniRef50_Q9RYF4	Oxidoreductase, short chain dehydrogenase reductase family	0.000303369295793	0.0481947194562	0.0478913501604
+UniRef50_S5K087		0.00020051685915	0.00224837509715	0.002047858238
+UniRef50_UPI00016B0FEC	hypothetical protein	0.000272225472725	0.000446322476372	0.000174097003647
+UniRef50_A3PN29		0.00525917967236	0.000466289534524	-0.00479289013784
+UniRef50_A3M3L2	Transcription regulator LysR family	0.000146123608583	0.00688485413227	0.00673873052369
+UniRef50_UPI0003C27927	PREDICTED	1.1805216264e-05	1.21754720508e-05	3.702557868e-07
+UniRef50_Q0S2H3	Ketol acid reductoisomerase	2.2804197232e-05	3.91952302383e-05	1.63910330063e-05
+UniRef50_Q98BA9	Mll5655 protein	0.000889600871452	0.00318015763219	0.00229055676074
+UniRef50_B8DA95	Ggdef motif membrane protein	0.000101799161961	0.000704875498837	0.000603076336876
+UniRef50_Q8VNM5	Orf513 protein	1.85780990745e-05	7.50066528596e-05	5.64285537851e-05
+UniRef50_A4W448	ATPases with chaperone activity, ATP binding subunit	0.00749593764114	0.00562690196658	-0.00186903567456
+UniRef50_R9SJ71	Type II secretion system protein E GspE	0.00239202141976	0.00177817982011	-0.00061384159965
+UniRef50_UPI000376BA8C	hypothetical protein	9.48507284613e-05	1.65663314918e-05	-7.82843969695e-05
+UniRef50_A6M2J8	Glycerophosphoryl diester phosphodiesterase	0.000649550450817	0.000960775223075	0.000311224772258
+UniRef50_A0A017HNC7		4.02499631709e-06	2.15117888125e-05	1.74867924954e-05
+UniRef50_A3QG19	Homoserine O succinyltransferase	0.00662165468051	0.0163075785497	0.00968592386919
+UniRef50_UPI0003B4CB27	MarR family transcriptional regulator	1.49238087733e-05	8.15505867925e-05	6.66267780192e-05
+UniRef50_H9KGM6		1.01928736284e-05	2.20836331286e-05	1.18907595002e-05
+UniRef50_UPI00047DD55E	electron transfer flavoprotein subunit alpha	1.0167012003e-05	1.36027365176e-05	3.4357245146e-06
+UniRef50_H3YNY8	Penicillin binding protein, transpeptidase domain protein	0.0173990111027	0.00467672177978	-0.0127222893229
+UniRef50_A5UP25	Predicted type II restriction enzyme, methylase subunit	0.00559611369867	0.000411456557505	-0.00518465714117
+UniRef50_G8MLW9	Binding protein dependent transport systems inner membrane component	0.000507217107692	0.0015949476058	0.00108773049811
+UniRef50_G2KXV7		0.000117033712309	0.00654737190689	0.00643033819458
+UniRef50_UPI00035CE0CD	hypothetical protein	1.40269029924e-05	1.29074661319e-05	-1.1194368605e-06
+UniRef50_I0ESN6	Alanine dehydrogenase	0.00010342081886	0.00436034903428	0.00425692821542
+UniRef50_P73002	Cobyrinic acid A,C diamide synthase	1.10603340866e-05	0.000371790995168	0.000360730661081
+UniRef50_UPI0003645BA6	hypothetical protein	2.42269586579e-07	8.1319791206e-07	5.70928325481e-07
+UniRef50_A4WRS0	SAM dependent methyltransferase	9.516453501e-05	0.000149024409689	5.3859874679e-05
+UniRef50_B9KQ53		0.000936602790663	0.000703135012379	-0.000233467778284
+UniRef50_UPI000465DFCD	hypothetical protein	1.55286322412e-05	5.08126450223e-05	3.52840127811e-05
+UniRef50_UPI0003651ACE	hypothetical protein	3.55366880624e-06	3.1956570336e-05	2.84029015298e-05
+UniRef50_Q1IZ90	Drug resistance transporter EmrB QacA subfamily	0.000137912002714	0.0330351825307	0.032897270528
+UniRef50_UPI0003681123	hypothetical protein	5.66697429046e-06	1.87441322491e-05	1.30771579586e-05
+UniRef50_UPI000419642D	MULTISPECIES	0.000297298079047	9.93951751378e-05	-0.000197902903909
+UniRef50_R7PVV2		0.00199467256595	0.00116982940041	-0.00082484316554
+UniRef50_J7RBB7	Fdhd protein	0.000158502778779	0.000166069600779	7.566822e-06
+UniRef50_X8A316		0.00099524258552	0.000223643230125	-0.000771599355395
+UniRef50_I7L4T0	Phosphate import ATP binding protein pstB	0.000272881437722	0.00433012411265	0.00405724267493
+UniRef50_M4WV43	Cis,cis muconate transporter MucK	8.75160715986e-05	0.000274946358252	0.000187430286653
+UniRef50_O26307	Hydrogenase expression formation protein HypE	0.00184768815042	0.000607463870433	-0.00124022427999
+UniRef50_P0AD04	Inner membrane protein YebS	0.00231831291635	0.000672491541523	-0.00164582137483
+UniRef50_Q3JHW2		8.95077155721e-07	3.92315100904e-05	3.83364329347e-05
+UniRef50_K0L036	Formate dehydrogenase	0.0117134009283	0.0014173807587	-0.0102960201696
+UniRef50_Q2GPL7	Predicted protein	4.68581199479e-06	4.22726290486e-06	-4.5854908993e-07
+UniRef50_P02929	Protein TonB	0.00416827720089	0.00139023834552	-0.00277803885537
+UniRef50_Y0BJC5		5.56445672337e-05	0.000117453029342	6.18084621083e-05
+UniRef50_Q3JEN4	Cytidylate kinase	0.0030630079815	0.0026786689622	-0.0003843390193
+UniRef50_A6T1E5	60 kDa chaperonin	0.000758693464667	0.000348865577547	-0.00040982788712
+UniRef50_UPI00047C3395	hypothetical protein	1.68109620053e-05	9.70455211084e-06	-7.10640989446e-06
+UniRef50_UPI0003791B6C	hypothetical protein	7.37081740068e-06	2.89324819614e-05	2.15616645607e-05
+UniRef50_UPI0003EB0A2B	GTPase	7.47574908731e-06	0.000709715475647	0.00070223972656
+UniRef50_B5F7X0	UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00414634585082	0.000959486386399	-0.00318685946442
+UniRef50_UPI0001E892A8	probable mannose 1 phosphate guanyltransferase	6.88439991802e-05	7.83492809126e-06	-6.10090710889e-05
+UniRef50_U5MUF8		0.00143349109691	0.000694667506903	-0.000738823590007
+UniRef50_G8PBV9	PTS system, lactose cellobiose IIC component family protein	0.000112235675575	0.00120817404873	0.00109593837316
+UniRef50_Q46863	Putative binding protein YgiS	0.00496299031516	0.000366356472688	-0.00459663384247
+UniRef50_UPI0003C17ADD	PREDICTED	7.47564838915e-06	0.0005007437225	0.000493268074111
+UniRef50_P21912	Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.94011728551e-05	3.91688387943e-05	9.7676659392e-06
+UniRef50_P77726	Inner membrane transport protein YajR	0.00230917749029	0.000189305580258	-0.00211987191003
+UniRef50_A9WS85	Leucine  tRNA ligase	0.000315224109719	0.00657415066267	0.00625892655295
+UniRef50_D2RJ96	CRISPR associated protein Cas4	0.00641169304169	0.00360300894259	-0.0028086840991
+UniRef50_A6M3G8	Extracellular ligand binding receptor	0.00060846503087	0.00199566028927	0.0013871952584
+UniRef50_H8GYP5		3.42358033143e-05	0.000394202561313	0.000359966757999
+UniRef50_G8VEM4	Glycosyl transferase	0.000335545549501	0.00638348381479	0.00604793826529
+UniRef50_F0ME34	Sodium alanine symporter family protein	0.000126673150626	0.00165094312532	0.00152426997469
+UniRef50_F8JQP0		2.0445906561e-05	0.000352435599669	0.000331989693108
+UniRef50_V5NK98		0.00073801364786	0.00318122909438	0.00244321544652
+UniRef50_P45856	Probable 3 hydroxybutyryl CoA dehydrogenase	7.47097841561e-06	8.49836080879e-05	7.75126296723e-05
+UniRef50_I1HGX9		6.76900919389e-05	3.78371488187e-05	-2.98529431202e-05
+UniRef50_D6M5U2	Transcriptional regulator	2.20421068803e-05	1.73055318203e-05	-4.73657506e-06
+UniRef50_UPI00047B87C7	resolvase	0.000166082738007	0.000148930119471	-1.7152618536e-05
+UniRef50_P31471		0.0015782699698	0.00139317978913	-0.00018509018067
+UniRef50_P31470		0.00408368660701	0.000270106742557	-0.00381357986445
+UniRef50_B2V075	Ser Thr protein phosphatase family protein	0.000117353157162	0.00123286111148	0.00111550795432
+UniRef50_Q5L7W2	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	1.81637554896e-06	0.00369317750004	0.00369136112449
+UniRef50_M4U7I0		8.71076362508e-06	1.53955181854e-05	6.68475456032e-06
+UniRef50_U5NMY3		0.00272276246603	0.000680665341122	-0.00204209712491
+UniRef50_UPI0002379CD5	IS5 family transposase OrfA	1.43397962364e-05	2.48454257831e-05	1.05056295467e-05
+UniRef50_Q73F23	Tn7 like transposition protein C	3.30071623406e-06	0.000236417545201	0.000233116828967
+UniRef50_UPI000364A211	hypothetical protein	0.00301238287585	0.000364588524928	-0.00264779435092
+UniRef50_Q53199	Probable glutamate dehydrogenase	1.11411276695e-05	7.32779240207e-06	-3.81333526743e-06
+UniRef50_UPI0003641B94	hypothetical protein, partial	9.81817981587e-05	4.70173132578e-05	-5.11644849009e-05
+UniRef50_Q1LDL8		0.000803468928268	0.00184584933892	0.00104238041065
+UniRef50_UPI0003B6B0F4	hypothetical protein	5.28199585023e-06	3.33549767674e-05	2.80729809172e-05
+UniRef50_N9CNB8		9.46769974165e-06	2.93669261701e-05	1.98992264284e-05
+UniRef50_G2J0I7		0.000413835263349	0.00132096291232	0.000907127648971
+UniRef50_J0FRW1		0.000990128757628	0.000155279690407	-0.000834849067221
+UniRef50_UPI000411C2A5	hypothetical protein	0.000152485521016	7.29994343906e-05	-7.94860866254e-05
+UniRef50_UPI0003B57812	ABC transporter ATP binding protein	8.03968854634e-06	4.76007031518e-05	3.95610146055e-05
+UniRef50_W5X841	Phage associated DNA primase	1.01294888463e-05	0.000412216041804	0.000402086552958
+UniRef50_Q74L45	2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2	0.0224244593613	0.00365361251891	-0.0187708468424
+UniRef50_F0TCP3		0.00323483186316	0.00115134382828	-0.00208348803488
+UniRef50_Q5UBV9	Resuscitation promoting factor	5.78245943101e-05	7.67520567149e-05	1.89274624048e-05
+UniRef50_Q6GI36	Staphostatin B	0.00146042537418	0.00053693946399	-0.00092348591019
+UniRef50_D4HBN4	Trypsin	0.000509160138868	0.00391973859595	0.00341057845708
+UniRef50_P76417	Putative nucleoside transporter YegT	0.00218786512907	0.000210689682662	-0.00197717544641
+UniRef50_B7S018	Oxidoreductase, short chain dehydrogenase reductase family	5.80179615192e-06	0.000281965618596	0.000276163822444
+UniRef50_T6VVX4	Galactitol 1 phosphate 5 dehydrogenase	0.000516991680384	0.000292392777421	-0.000224598902963
+UniRef50_A6LXN2	NLP P60 protein	0.000104857219123	0.00276303772658	0.00265818050746
+UniRef50_UPI00037E23C1	hypothetical protein	8.26092340567e-06	9.51068804585e-06	1.24976464018e-06
+UniRef50_B3HGM5		0.00145106314815	0.000457855356899	-0.000993207791251
+UniRef50_A6T6B5	tRNA 2 methylthio N dimethylallyladenosine synthase	0.00361416626661	0.0156928468018	0.0120786805352
+UniRef50_A0A009GFK1		0.000913272553671	0.0170646064139	0.0161513338602
+UniRef50_Q04JY7	Homoserine kinase	0.00031457165738	0.00297997355262	0.00266540189524
+UniRef50_UPI00035FAAB9	hypothetical protein	4.77501492741e-06	9.28672028189e-06	4.51170535448e-06
+UniRef50_H3XMI1	Periplasmic binding domain protein	6.32670742894e-05	0.000119400285112	5.61332108226e-05
+UniRef50_Q4UMZ3	Putative export ATP binding permease protein RF_0214	6.35949153104e-05	7.74314191575e-05	1.38365038471e-05
+UniRef50_UPI000361120A	hypothetical protein	8.40803186985e-06	0.000119028408526	0.000110620376656
+UniRef50_Q5WVI7		2.30312102203e-05	0.00176784514883	0.00174481393861
+UniRef50_H3F815		1.27395869027e-05	0.000210074258441	0.000197334671538
+UniRef50_B5EN70	NADH quinone oxidoreductase subunit B 2	3.61010732909e-05	0.000143093900298	0.000106992827007
+UniRef50_UPI00037A86DD	hypothetical protein	9.49220195328e-06	1.08675751515e-05	1.37537319822e-06
+UniRef50_D8TR27		9.7123324747e-05	7.59819996298e-05	-2.11413251172e-05
+UniRef50_UPI00042C3CC5	PREDICTED	1.60034511086e-05	1.32223924275e-05	-2.7810586811e-06
+UniRef50_K0HTI4	YD repeat protein	9.644414632e-05	0.00370034648493	0.00360390233861
+UniRef50_C5CI63	Adenine deaminase	1.84376755211e-05	6.20522698217e-06	-1.22324485389e-05
+UniRef50_A6M0R7	ABC transporter, periplasmic substrate binding protein	0.000309685371786	0.00361705747001	0.00330737209822
+UniRef50_B9KWE3	Methyl accepting chemotaxis sensory transducer	0.00440953233595	0.00164325783259	-0.00276627450336
+UniRef50_Q48K66	Branched chain amino acid transport system II carrier protein	0.000318522141699	0.00755936087353	0.00724083873183
+UniRef50_UPI0003780D5B	hypothetical protein, partial	0.000301958839214	0.000646943829869	0.000344984990655
+UniRef50_B6JHG4	N acetyl gamma glutamyl phosphate reductase	5.29826498259e-05	4.21125530479e-05	-1.0870096778e-05
+UniRef50_A3PKL4		0.00440071333486	0.000477790105511	-0.00392292322935
+UniRef50_UPI00047265F4	hypothetical protein	2.82982757334e-06	2.04584009291e-05	1.76285733558e-05
+UniRef50_Q8RWV0	Transketolase 1, chloroplastic	4.08513644073e-05	1.72453155097e-05	-2.36060488976e-05
+UniRef50_Q1IRT8	Histidine ammonia lyase	4.28038896247e-06	4.88825145435e-05	4.4602125581e-05
+UniRef50_A6M3B4		0.000175303090798	0.000683855261656	0.000508552170858
+UniRef50_D0ISP2	Aminodeoxychorismate lyase	0.000140503469798	0.00376593821096	0.00362543474116
+UniRef50_I4DZ43		0.00667688312194	0.00174723469169	-0.00492964843025
+UniRef50_I6T9F6	Transcriptional regulator	0.00607751964798	0.00342578926584	-0.00265173038214
+UniRef50_UPI00047B64CE	hypothetical protein	4.56528187742e-06	1.64584238309e-05	1.18931419535e-05
+UniRef50_Q2YQE0	Urease subunit gamma 2	5.7132099174e-05	0.00280250394319	0.00274537184402
+UniRef50_A8IHJ3	Altronate oxidoreductase	0.000943328049709	0.000740517866176	-0.000202810183533
+UniRef50_UPI000225ED80	DNA damage repair protein MutT	0.0001890738036	1.70532133868e-05	-0.000172020590213
+UniRef50_A5WC44	Membrane protein like protein	2.99238693049e-05	0.000100614891863	7.06910225581e-05
+UniRef50_W0MF84		0.000333022505855	0.00925260462548	0.00891958211962
+UniRef50_UPI0001FFF273	hypothetical protein, partial	2.50573607881e-05	0.000350998230871	0.000325940870083
+UniRef50_D3QIV7	Immunodominant antigen B	0.011228205139	0.00270456715148	-0.00852363798752
+UniRef50_A5UJ84	Adhesin like protein	0.00268025077318	0.000245076103906	-0.00243517466927
+UniRef50_UPI00035E8644	hypothetical protein, partial	3.01743483058e-05	3.81599280698e-05	7.985579764e-06
+UniRef50_UPI0003B6B470	hypothetical protein	0.000595194555565	0.000105749566174	-0.000489444989391
+UniRef50_UPI000362BA63	hypothetical protein	1.95592461839e-06	0.000730533611889	0.000728577687271
+UniRef50_A9M2L0	Transcriptional regulator, Fnr family	0.000796364292508	0.00259298060845	0.00179661631594
+UniRef50_Q9M439	Branched chain amino acid aminotransferase 2, chloroplastic	6.88732373537e-06	2.05608250904e-05	1.3673501355e-05
+UniRef50_F4LTT4	DNA methylase N 4 N 6 domain protein	0.000246241277342	0.00706890209602	0.00682266081868
+UniRef50_Q4L9Y1	PTS system mannitol specific EIICB component	0.00767983501024	0.00312703496244	-0.0045528000478
+UniRef50_UPI00047BEA91	hypothetical protein	1.06360246451e-05	9.10414453258e-05	8.04054206807e-05
+UniRef50_A6LWG3		0.000285569292609	0.00112970576838	0.000844136475771
+UniRef50_B9KWP4	ABC sugar transporter, inner membrane subunit	0.00758924334585	0.00288027685276	-0.00470896649309
+UniRef50_UPI00026C8165	peptidase A8	1.19733616071e-05	1.77552085591e-05	5.781846952e-06
+UniRef50_C3C2K9		0.000857677302841	0.00314670086138	0.00228902355854
+UniRef50_B5F445	Aspartate carbamoyltransferase regulatory chain	0.000493445737057	0.00222743179208	0.00173398605502
+UniRef50_UPI00037CE05A	hypothetical protein	6.14154385859e-06	2.92317876983e-05	2.30902438397e-05
+UniRef50_P16682	Phosphonates binding periplasmic protein	0.00459295954877	0.000892910800665	-0.0037000487481
+UniRef50_Q5FSJ7	Anhydro N acetylmuramic acid kinase	9.14293144155e-06	5.24623869964e-05	4.33194555548e-05
+UniRef50_Q5HRD0	Endonuclease III	0.0191347268313	0.00385395803607	-0.0152807687952
+UniRef50_E6MWX9		5.61450906434e-05	0.000435288705025	0.000379143614382
+UniRef50_Q4L8H1	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.006813252479	0.00190532872175	-0.00490792375725
+UniRef50_UPI00035DC37A	hypothetical protein	3.92402545882e-06	4.91393459536e-06	9.8990913654e-07
+UniRef50_B2TR74	P type ATPase metal cation transport	0.000306540410571	0.00227759965536	0.00197105924479
+UniRef50_Q9CPY0	Putative ribosomal RNA methyltransferase 2	1.58624720732e-05	3.39665865469e-05	1.81041144737e-05
+UniRef50_U2YLP5	Possible lipoprotein	5.53750190449e-05	3.8870143796e-05	-1.65048752489e-05
+UniRef50_UPI000376B5CE	hypothetical protein	1.15789176755e-05	3.79914350291e-05	2.64125173536e-05
+UniRef50_E8U4R9	GAF domain protein	8.08303031738e-06	0.00258434682014	0.00257626378982
+UniRef50_UPI00039595AE	amino acid carrier protein	2.27907604823e-05	0.00231573459769	0.00229294383721
+UniRef50_UPI00037DB88D	hypothetical protein	4.4087330398e-06	2.59238280605e-05	2.15150950207e-05
+UniRef50_UPI0003B53AEE	hemolysin secretion protein D, partial	0.000127509562846	0.000187003006468	5.9493443622e-05
+UniRef50_UPI000465E12B	hypothetical protein, partial	1.08803681926e-05	7.34977782121e-06	-3.53059037139e-06
+UniRef50_S1U9M8	Respiratory nitrate reductase 2 beta chain domain protein	4.01688940269e-05	0.000153124499628	0.000112955605601
+UniRef50_Q0RF16	Potassium transporting ATPase A chain	3.99613545594e-06	0.00142940576034	0.00142540962488
+UniRef50_X1GYM7	Marine sediment metagenome DNA, contig	3.11715608716e-05	4.76730438315e-05	1.65014829599e-05
+UniRef50_F2U6L8	SAM domain and HD domain containing protein 1	2.76295375609e-06	2.8560456801e-06	9.309192401e-08
+UniRef50_P23883	Aldehyde dehydrogenase PuuC	0.00531195182793	0.000937634185837	-0.00437431764209
+UniRef50_UPI00037CF752	hypothetical protein	1.11349720131e-05	1.8394083737e-05	7.2591117239e-06
+UniRef50_UPI00037C0B53	50S ribosomal protein L3	6.23917493977e-06	0.000340814098583	0.000334574923643
+UniRef50_A5UP78	Exoribonuclease VII, large subunit, XseA	0.00215857067305	0.000391078004213	-0.00176749266884
+UniRef50_P31131	Protein YdeJ	0.00292769080694	0.00221508008896	-0.00071261071798
+UniRef50_D7AQ31	Transcriptional regulator, DeoR family	0.000459429269956	0.000801836292727	0.000342407022771
+UniRef50_E7PVM6	Streptococcal histidine triad protein	0.000114621985566	0.000154651280037	4.0029294471e-05
+UniRef50_Q56953	Chelated iron transport system membrane protein YfeB	0.00213059780018	0.000390286394531	-0.00174031140565
+UniRef50_Q53CQ0	JM170	0.000209244122337	0.000270504075483	6.1259953146e-05
+UniRef50_Q98NF5	Threonine dehydratase	0.00315123497302	0.00102587252864	-0.00212536244438
+UniRef50_P76042	Putative ABC transporter periplasmic binding protein YcjN	0.00229229309692	0.00263038294274	0.00033808984582
+UniRef50_Q9BYC2	Succinyl CoA	5.56656991258e-05	3.5509475619e-05	-2.01562235068e-05
+UniRef50_UPI0002E54E33	hypothetical protein	9.82025663508e-05	1.41242329797e-05	-8.40783333711e-05
+UniRef50_X5EK24	Integral membrane transporter	7.46019740784e-05	0.00328373813961	0.00320913616553
+UniRef50_UPI00016A5F2C	deoxyribodipyrimidine photolyase, partial	1.8824471964e-05	0.000214989296045	0.000196164824081
+UniRef50_UPI000478533A	ribose ABC transporter permease	0.000130797652061	6.4056112945e-05	-6.6741539116e-05
+UniRef50_Q8ZYR9	DNA repair and recombination protein RadA	0.00299372232861	0.00148089947023	-0.00151282285838
+UniRef50_UPI000382A2F1	hypothetical protein	3.54409921254e-05	4.56870033621e-06	-3.08722917892e-05
+UniRef50_G7ZRL2		0.0171826271024	0.00560910229823	-0.0115735248042
+UniRef50_S4YXA5	Meta pathway phenol degradation like protein	7.64823676121e-06	9.51941935003e-06	1.87118258882e-06
+UniRef50_B2TNM6	DNA polymerase	8.97592399675e-05	0.0015944452856	0.00150468604563
+UniRef50_Q5HNN0	Probable GTP binding protein EngB	0.0111553700708	0.00477534449053	-0.00638002558027
+UniRef50_A5IS41		0.00518126123941	0.00214145439617	-0.00303980684324
+UniRef50_T2HRY4	Transposase DDE domain protein	0.000190810983781	0.000180254347023	-1.0556636758e-05
+UniRef50_Q5HRQ4	50S ribosomal protein L25	0.0254628850566	0.00893083873549	-0.0165320463211
+UniRef50_C5ASM5	Enoyl CoA hydratase	0.000635921096979	0.000748799869256	0.000112878772277
+UniRef50_A5VBZ8	DNA directed RNA polymerase subunit beta	1.26709949315e-05	2.49085934594e-06	-1.01801355856e-05
+UniRef50_D2GMB8		0.00120721971164	3.99118210134e-05	-0.00116730789063
+UniRef50_A3CNT1	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00371627697137	0.00126518946121	-0.00245108751016
+UniRef50_UPI00031618D7	hypothetical protein	1.26569992233e-05	6.59325799901e-05	5.32755807668e-05
+UniRef50_UPI0003C8E1FD	PREDICTED	7.96052706528e-05	1.94522517642e-05	-6.01530188886e-05
+UniRef50_M3X368		0.000175369346644	0.000102962392396	-7.2406954248e-05
+UniRef50_B7I751	NADH quinone oxidoreductase subunit N	0.00109528870245	0.00991772383966	0.00882243513721
+UniRef50_UPI00037AC0F7	hypothetical protein	0.000415012029582	4.66075767625e-05	-0.00036840445282
+UniRef50_W0NQ86		0.000173125784067	0.000172221570483	-9.04213584e-07
+UniRef50_UPI00040AFE18	DNA primase	4.34732605014e-06	1.74681419572e-05	1.31208159071e-05
+UniRef50_R1DKY4		3.62810417783e-05	0.000224555930352	0.000188274888574
+UniRef50_P0AFI5	D alanyl D alanine endopeptidase	0.00351682754093	0.00114984705152	-0.00236698048941
+UniRef50_Q54IJ8		3.9009919625e-05	6.63207975011e-07	-3.834671165e-05
+UniRef50_A0A059LB29		9.34525275573e-05	0.000733225041784	0.000639772514227
+UniRef50_K9XNW0		2.70520364308e-06	0.00152418098013	0.00152147577649
+UniRef50_Q9AK82	DNA polymerase IV	8.3887696239e-05	0.00536219246456	0.00527830476832
+UniRef50_U3SRM8		0.00445585099275	0.00158659460002	-0.00286925639273
+UniRef50_F7SKK4	Pirin like protein	5.06929127244e-05	3.64614498735e-05	-1.42314628509e-05
+UniRef50_Q49VP4	UTP  glucose 1 phosphate uridylyltransferase 2	0.0214025197099	0.0070510296093	-0.0143514901006
+UniRef50_A7I262	DedA family protein	0.000788118449162	0.00153897694497	0.000750858495808
+UniRef50_A8AQ14	5 keto 4 deoxy D glucarate aldolase	0.00411022060924	0.000510998980884	-0.00359922162836
+UniRef50_UPI0000F2F781	two component response regulator	1.17928995719e-05	1.67265293638e-05	4.9336297919e-06
+UniRef50_UPI00026CD75D	rare lipoprotein A	1.01343426064e-05	5.5350877534e-05	4.52165349276e-05
+UniRef50_P37327	Inner membrane protein YfdC	0.00312410409659	0.000483227980161	-0.00264087611643
+UniRef50_C5Z886		0.000108802350393	0.00132409392729	0.0012152915769
+UniRef50_B9TC98	Xanthosine phosphorylase, putative	0.0014002308986	0.000242062873115	-0.00115816802549
+UniRef50_P39851	Putative tyrosine protein kinase CapB	0.0258133970862	0.00394277478097	-0.0218706223052
+UniRef50_UPI00035DBD49	hypothetical protein	1.18899010743e-05	0.000190542928152	0.000178653027078
+UniRef50_UPI000329916F	PREDICTED	3.93095096021e-06	1.30466569572e-05	9.11570599699e-06
+UniRef50_U3U1E2	Alkyl hydroperoxide reductase subunit F	8.38787326643e-05	0.000531341062728	0.000447462330064
+UniRef50_UPI000369BED8	hypothetical protein	2.45204019703e-05	2.5944529224e-05	1.4241272537e-06
+UniRef50_U8KDA3		0.000481897007041	0.00268684851974	0.0022049515127
+UniRef50_S6SYK4	Alkanesulfonate transporter substrate binding subunit	1.64367512698e-05	5.61668295816e-05	3.97300783118e-05
+UniRef50_UPI000415C161	phospholipase C	2.45859708223e-06	4.05222703401e-06	1.59362995178e-06
+UniRef50_G5KHM6		5.11210656376e-05	0.000137289552241	8.61684866034e-05
+UniRef50_UPI00046F982B	hypothetical protein	9.16156515407e-06	8.34461994146e-06	-8.1694521261e-07
+UniRef50_UPI00045E9E9F	hypothetical protein	2.56130020935e-05	8.57604175303e-05	6.01474154368e-05
+UniRef50_R7PWF8		0.00160719875038	0.000382094348328	-0.00122510440205
+UniRef50_UPI0004290598	luciferase	4.53953629829e-05	7.04463643718e-06	-3.83507265457e-05
+UniRef50_Q8FEN7	Arabinose 5 phosphate isomerase GutQ	0.00237728752386	0.000488709141147	-0.00188857838271
+UniRef50_O34133	Putative regulator AldR	0.000959953619953	0.0269602341966	0.0260002805766
+UniRef50_UPI00027F9D39	PREDICTED	0.00010441532621	1.44087256308e-05	-9.00066005792e-05
+UniRef50_A0NLI7		0.00047631933423	0.00211235857593	0.0016360392417
+UniRef50_A0A045UMF7		6.67631110754e-05	1.70044478929e-05	-4.97586631825e-05
+UniRef50_H0YQH9		2.25250653346e-05	7.03642243928e-06	-1.54886428953e-05
+UniRef50_G7QF23	Peptide chain release factor 3	0.000198235735785	0.0412329953604	0.0410347596246
+UniRef50_D9UK32		0.000257248533406	4.61275472664e-05	-0.00021112098614
+UniRef50_UPI000456151B	hypothetical protein PFL1_04047	1.8900081494e-05	0.000113046338114	9.414625662e-05
+UniRef50_I6TYU2	Peptide synthetase	0.00568245088731	0.00131991713018	-0.00436253375713
+UniRef50_D3QF29	ABC transporter 	0.0108437550286	0.00300708603153	-0.00783666899707
+UniRef50_Q8D820	2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.78194721416e-05	5.95071185313e-06	-1.18687602885e-05
+UniRef50_UPI0003B36CD8	metal dependent hydrolase	5.52168911759e-06	1.15389153335e-05	6.01722621591e-06
+UniRef50_UPI000470D6FC	hypothetical protein	0.000558524529389	9.01576586826e-05	-0.000468366870706
+UniRef50_S4X9L5	2 oxoglutarate ferredoxin oxidoreductase subunit beta	0.0114404834969	0.000704497677118	-0.0107359858198
+UniRef50_Q97L63	Spore photoproduct lyase	0.000251798222424	0.00101598528715	0.000764187064726
+UniRef50_UPI000427F61C	O acetylhomoserine aminocarboxypropyltransferase	4.80092053304e-05	6.75559670035e-06	-4.12536086301e-05
+UniRef50_H9UVF1	Short chain dehydrogenase reductase SDR	0.00417589910305	0.00163271561365	-0.0025431834894
+UniRef50_V9R1Z5	Chemotaxis protein CheY	0.000741983596461	0.0002428287112	-0.000499154885261
+UniRef50_Q9RT22	3 oxoacyl [acyl carrier protein] synthase 3 protein 2	0.000127526494248	0.0306512436277	0.0305237171335
+UniRef50_V4FVJ2	IS3 Spn1, transposase	0.000381917154385	4.11371599247e-05	-0.00034077999446
+UniRef50_UPI0000167300	COG0174	2.95723761745e-05	5.03560344835e-05	2.0783658309e-05
+UniRef50_U3ST30		0.00321881920049	0.00312375900188	-9.506019861e-05
+UniRef50_A6C7R0		4.84496331142e-06	5.39135851219e-06	5.4639520077e-07
+UniRef50_Q07GL5	Pirin protein, putative	0.000163318030493	7.6313959539e-06	-0.000155686634539
+UniRef50_A1B348	Cbb3 type cytochrome c oxidase subunit CcoP	0.0136581272347	0.00506429725071	-0.00859382998399
+UniRef50_M7M6N5	Transposase domain protein	0.000244243585442	0.000644118984519	0.000399875399077
+UniRef50_M1LYE3	Flagellar basal body protein FliL	0.000706339265833	0.000501954739708	-0.000204384526125
+UniRef50_Q9RXG4	Lon protease	0.000284005533994	0.0504697663211	0.0501857607871
+UniRef50_UPI000287D648	multidrug efflux associated protein	3.35002361247e-06	2.88471350202e-06	-4.6531011045e-07
+UniRef50_UPI0003B6CDE7	serine ammonia lyase	4.24305704395e-06	3.48140028116e-05	3.05709457677e-05
+UniRef50_A4AEG2		3.72612544287e-05	9.34581160418e-05	5.61968616131e-05
+UniRef50_B9DLC6	Transcription repair coupling factor	0.0101739401259	0.00358605458647	-0.00658788553943
+UniRef50_UPI0003C808C2	PREDICTED	4.02129300966e-07	1.01094027683e-06	6.08810975864e-07
+UniRef50_UPI0003775EA0	30S ribosomal protein S4, partial	2.09074650817e-05	0.000269567901264	0.000248660436182
+UniRef50_C5CV27		0.000312298694041	0.000285482025943	-2.6816668098e-05
+UniRef50_P54978	Phytoene desaturase 	1.679693469e-05	3.01378114058e-05	1.33408767158e-05
+UniRef50_Q4L5Y5	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.016400846572	0.0246547981902	0.0082539516182
+UniRef50_G8RAR9	Proline dehydrogenase 	0.00948274430694	0.000915805065464	-0.00856693924148
+UniRef50_Q2FWK2	3 isopropylmalate dehydrogenase	0.0113165078642	0.000949521928702	-0.0103669859355
+UniRef50_R9YQ24		0.00887621566963	0.00163250803704	-0.00724370763259
+UniRef50_UPI0003626E85	PhoB family transcriptional regulator	9.96388947703e-05	2.95977809913e-05	-7.0041113779e-05
+UniRef50_UPI0003F822DA	ABC transporter permease	5.73126320897e-05	0.000196446744309	0.000139134112219
+UniRef50_C5VTT8	tRNA specific adenosine deaminase	0.000256212209626	0.000792796524005	0.000536584314379
+UniRef50_K6U2B0	ABC type sugar transport system, periplasmic component	0.000158385729588	0.00184013748086	0.00168175175127
+UniRef50_A5ITW6		0.0121051911068	0.000315284738642	-0.0117899063682
+UniRef50_D8JKJ3	Transcription repair coupling factor	3.80274669728e-05	0.00630447377816	0.00626644631119
+UniRef50_U6B4B7	Lipoprotein	3.25593662758e-05	9.57026190087e-06	-2.29891043749e-05
+UniRef50_C3T922	Membrane associated protein	0.00325192515238	0.000758152611373	-0.00249377254101
+UniRef50_B2JSF8	Major facilitator superfamily MFS_1	0.000770992638191	0.000367038528455	-0.000403954109736
+UniRef50_A7GWQ0	S ribosylhomocysteine lyase	8.93000762329e-06	0.000469883756694	0.000460953749071
+UniRef50_UPI00046650D5	DNA recombination protein RecN	3.92385279295e-06	1.19037562535e-05	7.97990346055e-06
+UniRef50_UPI0000E0F611	UTP  glucose 1 phosphate uridylyltransferase	0.00085692130517	0.000261145479274	-0.000595775825896
+UniRef50_D8HI13	NPQTN specific sortase B	0.0138265985307	0.000533704888912	-0.0132928936418
+UniRef50_A5UK93	Mg dependent DNase, TatD related	0.0021290659579	0.00118196942019	-0.00094709653771
+UniRef50_Q9RSH5	Membrane protein insertase YidC	0.000227982246464	0.0380320244727	0.0378040422262
+UniRef50_A0A059IP43		9.13671249766e-05	5.92477950321e-05	-3.21193299445e-05
+UniRef50_Q2FJ80	FMN dependent NADPH azoreductase	0.0185592461058	0.00557423277481	-0.012985013331
+UniRef50_UPI00046F326D	hypothetical protein	0.000337634843705	0.000330787682637	-6.847161068e-06
+UniRef50_C6SQB9		0.00471556158544	0.00131761107357	-0.00339795051187
+UniRef50_Q930I4	Histidinol dehydrogenase 2	0.000552067536772	0.00013536289008	-0.000416704646692
+UniRef50_A0A023VI11	Beta lactamase	0.00440264323697	0.000971503193893	-0.00343114004308
+UniRef50_F5X3F3	HI0933 like oxidoreductase dehydrogenase	0.00461334314387	0.00496447499705	0.00035113185318
+UniRef50_UPI00036BFC25	hypothetical protein	8.17238696985e-06	4.46865155601e-05	3.65141285903e-05
+UniRef50_UPI00046A9281	glycine cleavage system protein H	7.25175726586e-05	4.2109723022e-05	-3.04078496366e-05
+UniRef50_W6JZG7		0.00018996331545	5.51749449576e-05	-0.000134788370492
+UniRef50_B9KSX5	Sporulation domain protein	0.000114853749147	0.000292844959078	0.000177991209931
+UniRef50_UPI00037A69CE	hypothetical protein	3.71292529424e-06	0.000180340969236	0.000176628043942
+UniRef50_B9KUJ5		0.000320667299987	6.88145081358e-05	-0.000251852791851
+UniRef50_L5N059		6.54809863542e-06	2.80456329253e-05	2.14975342899e-05
+UniRef50_Q8VVL8	ORF 5	0.000806448360266	0.000529094249114	-0.000277354111152
+UniRef50_UPI000441F366		0.000129681746904	2.5530086296e-05	-0.000104151660608
+UniRef50_UPI000363D669	hypothetical protein	1.35543753366e-05	7.95990891992e-05	6.60447138626e-05
+UniRef50_T0MER8		0.000348005966761	0.000518180593909	0.000170174627148
+UniRef50_F1VLT2		0.0005789719829	0.000639342072811	6.0370089911e-05
+UniRef50_A3M519	EsvK1	0.000408829590809	0.00210564495683	0.00169681536602
+UniRef50_A6M0I4	Transcriptional regulatory protein	0.000418554545908	0.0012225577219	0.000804003175992
+UniRef50_UPI000372ED7A	hypothetical protein	1.0482815913e-05	6.92945939606e-06	-3.55335651694e-06
+UniRef50_A7X766	Imidazoleglycerol phosphate dehydratase	0.0131656631923	0.0109802267631	-0.0021854364292
+UniRef50_F3T6C6	Conserved domain protein	1.82463189118e-05	0.000102903168863	8.46568499512e-05
+UniRef50_D3G1Y7	Cadmium resistance transporter, putative	0.0130973520699	0.00678809564193	-0.00630925642797
+UniRef50_A9FQ61		9.35086209409e-05	2.84356395773e-05	-6.50729813636e-05
+UniRef50_I0IJ24		1.55541118659e-05	3.13118097559e-05	1.575769789e-05
+UniRef50_S5YT17	Transposase	0.00129478547536	7.61189957441e-05	-0.00121866647962
+UniRef50_UPI00047ABD8A	arginine  tRNA ligase	3.20281599027e-06	1.10506827367e-05	7.84786674643e-06
+UniRef50_UPI00028A110F	UrtA	5.67815879186e-05	0.000289335144547	0.000232553556628
+UniRef50_Q2CDM2		0.000618388949015	0.000149146733034	-0.000469242215981
+UniRef50_F8CGQ9		1.99876564936e-05	6.66717267717e-06	-1.33204838164e-05
+UniRef50_Q4L732	DNA polymerase	0.0096210484349	0.00386334423775	-0.00575770419715
+UniRef50_S5CN83	Outer membrane receptor for monomeric catechols	0.000103895576076	0.00748927075989	0.00738537518381
+UniRef50_Q5LMC4	Peptidase, family S49	0.00537228637452	0.000299307471484	-0.00507297890304
+UniRef50_W7J7H8	Basic proline rich protein	0.00026314464008	0.000308821568063	4.5676927983e-05
+UniRef50_UPI00037AC687	hypothetical protein	5.74955104166e-06	3.1246709291e-06	-2.62488011256e-06
+UniRef50_G7M7P5	Aspartate semialdehyde dehydrogenase	0.0151801086402	0.00557957797411	-0.00960053066609
+UniRef50_P77280		0.00322488994571	0.00132915114518	-0.00189573880053
+UniRef50_UPI000472DE9D	hypothetical protein, partial	9.77964138116e-06	3.42787963245e-05	2.44991549433e-05
+UniRef50_UPI00047A4340	hypothetical protein	1.82734146786e-06	3.74954873306e-07	-1.45238659455e-06
+UniRef50_P35598	Putative ABC transporter ATP binding protein exp8	0.00615679346361	0.00346641124066	-0.00269038222295
+UniRef50_D2N3U7	Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative	0.0185189684308	0.00114316143946	-0.0173758069913
+UniRef50_UPI000365A456	hypothetical protein	1.46711065423e-05	4.99379291617e-06	-9.67731362613e-06
+UniRef50_UPI0003676E73	hypothetical protein	8.49407490501e-06	8.23047469559e-06	-2.6360020942e-07
+UniRef50_UPI0003A0CBF8	MULTISPECIES	2.1761733673e-05	2.69720846801e-05	5.2103510071e-06
+UniRef50_P0AAG7	Multidrug resistance like ATP binding protein MdlB	0.00362555793418	0.00138551737165	-0.00224004056253
+UniRef50_J8RWM9	Sulfate ABC transporter permease	3.59470576485e-05	4.88450919042e-05	1.28980342557e-05
+UniRef50_UPI0003AD9F9E	PREDICTED	2.62024477787e-06	0.000111650426235	0.000109030181457
+UniRef50_UPI0004268641	50S ribosomal protein L21	0.000174170271306	0.000533610056723	0.000359439785417
+UniRef50_Q7MGT4	Phosphoribosylamine  glycine ligase	0.00269549286978	0.00191132722778	-0.000784165642
+UniRef50_F0YT45		9.30648393263e-05	0.000304541484263	0.000211476644937
+UniRef50_S4YSN2	NAD transhydrogenase subunit alpha	3.47675440264e-05	2.82355334621e-05	-6.5320105643e-06
+UniRef50_C3P7X7	3 dehydroquinate dehydratase	1.40149481772e-05	0.00797302724206	0.00795901229388
+UniRef50_UPI00016B1721	pyrophosphatase, MutT nudix family protein	8.64472431158e-05	0.000485697079988	0.000399249836872
+UniRef50_UPI0003B5F58F	anthranilate synthase subunit I	3.37609441314e-05	3.46722114391e-05	9.112673077e-07
+UniRef50_Q4UV65	Lipid A export ATP binding permease protein MsbA	2.82857286653e-06	4.28928363009e-06	1.46071076356e-06
+UniRef50_I0C7F8	Aminobenzoyl glutamate transport protein	0.011505852907	0.00255722850754	-0.00894862439946
+UniRef50_UPI00041D865E	peptide ABC transporter permease	1.42774826121e-05	6.55129913751e-06	-7.72618347459e-06
+UniRef50_Q1LNK1		1.90446807371e-05	1.99719684057e-05	9.272876686e-07
+UniRef50_A6LQM0	2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase	0.0018596256697	0.000336863161818	-0.00152276250788
+UniRef50_A3PS70	YD repeat protein	0.0178464423983	0.00394190970567	-0.0139045326926
+UniRef50_I6U2R2		0.00282659351591	0.00113809634826	-0.00168849716765
+UniRef50_UPI00038092FF	hypothetical protein	8.68289799064e-06	1.18108598478e-05	3.12796185716e-06
+UniRef50_Q828X4	Putative cytochrome c oxidase subunit 1 beta	4.2835530908e-05	0.000104455297438	6.161976653e-05
+UniRef50_T3I3Z9	Homocitrate synthase	0.00023436273396	0.00393933040863	0.00370496767467
+UniRef50_Q3SFK0	Chromate transporter	8.47648178546e-05	0.00681067727041	0.00672591245256
+UniRef50_U2BSH5	Glyoxalase family protein	6.98444338041e-05	3.73485901213e-05	-3.24958436828e-05
+UniRef50_G8RET5	D specific D 2 hydroxyacid dehydrogenase ddh like protein	0.0192881411404	0.00885030533241	-0.010437835808
+UniRef50_UPI00046F8D3D	hypothetical protein, partial	1.71870560522e-05	5.44835496114e-05	3.72964935592e-05
+UniRef50_S5Z097		0.0013772739649	0.000272600035571	-0.00110467392933
+UniRef50_UPI0002557980	hemolysin type calcium binding protein	1.6239079418e-06	4.02398115472e-06	2.40007321292e-06
+UniRef50_X1M4K5	Marine sediment metagenome DNA, contig	0.000191819905193	0.0105954605861	0.0104036406809
+UniRef50_K0NK11	MaoC domain protein dehydratase	0.000440637162124	0.000425937555561	-1.4699606563e-05
+UniRef50_F0KIW4		0.000101383882411	0.00729510827071	0.0071937243883
+UniRef50_UPI00036F6565	hypothetical protein	6.44861232762e-06	0.00095556043908	0.000949111826752
+UniRef50_UPI0003735CF6	hypothetical protein	7.46106680375e-06	2.82210088947e-05	2.07599420909e-05
+UniRef50_A7GPF0	40 residue YVTN family beta propeller repeat protein	6.10500934901e-06	0.000595819283947	0.000589714274598
+UniRef50_Q9V150	Tryptophan synthase beta chain 2	0.00383061466461	0.00571815498712	0.00188754032251
+UniRef50_UPI00047A278A	hypothetical protein	0.000114516141402	1.04477878889e-05	-0.000104068353513
+UniRef50_I0C7M3	Transporter, drug metabolite exporter family	0.0115676540833	0.0017248427924	-0.0098428112909
+UniRef50_A0A024HE97	Lon protease 2	0.000708907774043	0.000651036257387	-5.7871516656e-05
+UniRef50_B2V4S9	Elongation factor P	0.000353485280728	0.00118438200682	0.000830896726092
+UniRef50_B7JB82	Bifunctional protein GlmU	4.25502632061e-06	6.87990841872e-06	2.62488209811e-06
+UniRef50_Q49XB9		0.00271001707394	0.00505559369371	0.00234557661977
+UniRef50_Q9JVD3	Ribonuclease 3	5.97440078609e-06	0.00201162066148	0.00200564626069
+UniRef50_A4G9I7	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000178136611464	0.0108084973648	0.0106303607533
+UniRef50_B7UT13		1.64708801895e-05	0.000346527359113	0.000330056478923
+UniRef50_UPI00016A620A	SsrA binding protein, partial	0.000108351431927	0.000580690553869	0.000472339121942
+UniRef50_P02906	Sulfate binding protein	0.00269219432221	0.000653199635336	-0.00203899468687
+UniRef50_C1D8I2	DUF1376 domain containing protein	3.89975733757e-06	1.16332526839e-05	7.73349534633e-06
+UniRef50_R7AXX0		1.30129559593e-05	0.00433771551145	0.00432470255549
+UniRef50_X1YKE3		1.82972162046e-05	2.8474602299e-05	1.01773860944e-05
+UniRef50_Q820K4	tRNA  ) methyltransferase	9.34392744243e-06	0.00483039032914	0.0048210464017
+UniRef50_L7WWS4		0.00975176111395	0.00198692980585	-0.0077648313081
+UniRef50_D9STU2	Transcriptional antiterminator, BglG	0.00040438159484	0.00113424131447	0.00072985971963
+UniRef50_UPI00047C795E	hypothetical protein	3.19877229204e-05	7.42457073818e-05	4.22579844614e-05
+UniRef50_M9VJN7	Isochorismate synthetase, enterochelin	0.000297419644424	0.00488981503896	0.00459239539454
+UniRef50_Q0I781	Membrane protein, putative	2.06330480711e-05	3.10989259013e-06	-1.7523155481e-05
+UniRef50_A0A029LEA3	Prepilin type N terminal cleavage methylation domain protein	0.000674082122953	0.000496063427586	-0.000178018695367
+UniRef50_A6LVZ7	Ribose 5 phosphate isomerase A	0.000327333484896	0.00574098971917	0.00541365623427
+UniRef50_A0A031J2A8	Conjugative relaxase domain containing protein	8.73801015494e-05	8.14698142777e-06	-7.92331201216e-05
+UniRef50_P77698		0.00357416084623	0.00300319327654	-0.00057096756969
+UniRef50_B1FEG9		7.58562577622e-06	0.000144612251227	0.000137026625451
+UniRef50_A3PRL8	WD 40 repeat protein	0.0021571385514	0.000894030959313	-0.00126310759209
+UniRef50_A7X1Y2	Homoserine kinase	0.0177115504993	0.00328287360686	-0.0144286768924
+UniRef50_W4HHB0	Lipoprotein	2.95059924398e-05	2.57707069277e-05	-3.7352855121e-06
+UniRef50_U5P9W8	Haloacid dehalogenase	0.00516875808853	0.00644806941442	0.00127931132589
+UniRef50_R7PUA8		0.00277105543127	0.00116995512095	-0.00160110031032
+UniRef50_P42454	Rubredoxin NAD reductase	9.61339530144e-05	0.00891875489119	0.00882262093818
+UniRef50_Q46509	Aldehyde oxidoreductase	1.95527903808e-06	1.04484689719e-05	8.49318993382e-06
+UniRef50_F8FKS7	YyzM	3.83291087711e-05	4.31317648386e-05	4.8026560675e-06
+UniRef50_A1AHE9	2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00474038978031	0.00993496555168	0.00519457577137
+UniRef50_UPI00032A0F3F	PREDICTED	1.84358759547e-05	1.06604097327e-05	-7.775466222e-06
+UniRef50_B7MIX6	Thiazole synthase	0.00360554367745	0.000798748159054	-0.0028067955184
+UniRef50_Q6MCC8	Leucine  tRNA ligase	6.80970865623e-06	2.43997740574e-06	-4.36973125049e-06
+UniRef50_G7U922		0.000344965000067	0.0093852481019	0.00904028310183
+UniRef50_Q9HUG6	Putative lipopolysaccharide biosynthesis protein PA4999	0.000923671013764	0.00044745209392	-0.000476218919844
+UniRef50_UPI0003957ECC	PREDICTED	2.21134360022e-05	4.86451413621e-06	-1.7248921866e-05
+UniRef50_Q00673	Probable NADH ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial	1.40622820891e-05	1.067456555e-05	-3.3877165391e-06
+UniRef50_T7R7U1	Cardiolipin synthase 2	0.000632740158944	0.000514282224196	-0.000118457934748
+UniRef50_L8A918	Glucitol operon activator protein	1.67613653178e-05	0.000391147953907	0.000374386588589
+UniRef50_R6GV45	Relaxase Mobilisation nuclease domain	1.31773661277e-05	1.40072476613e-05	8.298815336e-07
+UniRef50_UPI000467E284	transposase, partial	0.00618360991507	0.00246476735922	-0.00371884255585
+UniRef50_W1MJT1		0.000119302751488	0.000526959262801	0.000407656511313
+UniRef50_A3PPZ3	HNH endonuclease	0.00170321982326	0.000604112608529	-0.00109910721473
+UniRef50_UPI0002485FE8	4 hydroxy 3 methylbut 2 enyl diphosphate reductase	9.05170018724e-05	6.00337928758e-05	-3.04832089966e-05
+UniRef50_A4WUJ0	Membrane protein involved in aromatic hydrocarbon degradation	0.0143834913405	0.00321030908671	-0.0111731822538
+UniRef50_G4LLE1		0.000240948503526	0.000279921047585	3.8972544059e-05
+UniRef50_D3E1F7	Glycyl radical enzyme activating protein	0.00242993795847	0.000224575441206	-0.00220536251726
+UniRef50_I1ZNG1		0.00028453717753	0.000996146410384	0.000711609232854
+UniRef50_W1S615	Transposase	2.23952286323e-05	5.84388035934e-05	3.60435749611e-05
+UniRef50_UPI0002BB9C7E	hypothetical protein, partial	4.29745563515e-05	0.0207335782421	0.0206906036857
+UniRef50_UPI0003630D50	hypothetical protein	6.25724804935e-05	0.000418477321272	0.000355904840778
+UniRef50_UPI000372EB1D	hypothetical protein	5.17999672013e-06	7.73057034385e-06	2.55057362372e-06
+UniRef50_UPI0003C7B9A1	hypothetical protein	1.04853287353e-05	9.32691887922e-05	8.27838600569e-05
+UniRef50_K0N5S7	ATP dependent DNA helicase recG	0.00485367531638	0.00192149056604	-0.00293218475034
+UniRef50_UPI000361113C	hypothetical protein	1.84665459854e-05	1.25629740332e-05	-5.9035719522e-06
+UniRef50_A1B0G9	Permease YjgP YjgQ family protein	0.0045826395547	0.00255635345531	-0.00202628609939
+UniRef50_UPI0003704086	hypothetical protein	2.3059155659e-05	1.26316462061e-05	-1.04275094529e-05
+UniRef50_D8MD39	Histidine triad  protein	0.0235903287683	0.000847823271214	-0.0227425054971
+UniRef50_A6KYZ4		2.82590521797e-05	0.00798051071653	0.00795225166435
+UniRef50_C0PBW7		0.000134018694272	0.000629077005151	0.000495058310879
+UniRef50_UPI00047AE4DE	hypothetical protein	3.16455890568e-05	2.09721836894e-05	-1.06734053674e-05
+UniRef50_UPI0003B51919	LysR family transcriptional regulator	2.10407545011e-05	3.5714977826e-05	1.46742233249e-05
+UniRef50_UPI000362B9D7	hypothetical protein	2.5924171793e-05	1.77580499252e-05	-8.1661218678e-06
+UniRef50_Q8CQE3		0.0188346667523	0.00508187303468	-0.0137527937176
+UniRef50_A6VWE9	Hemolysin type calcium binding region	2.25830962632e-06	5.28616807798e-07	-1.72969281852e-06
+UniRef50_G0DXM7		0.00025679318969	0.00178078822592	0.00152399503623
+UniRef50_O75600	2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial	0.00382283411204	0.000935963212015	-0.00288687090002
+UniRef50_Y5VS88		0.0201595997002	0.00123048627164	-0.0189291134286
+UniRef50_Q8ZAW9	Sulfoxide reductase catalytic subunit YedY	0.00526538135016	0.00164094774279	-0.00362443360737
+UniRef50_UPI0002B44272	PREDICTED	4.17696313465e-05	7.61169957825e-05	3.4347364436e-05
+UniRef50_I2FJ48	Type II R M system DNA modification enzyme	0.000362036563254	0.00462002353444	0.00425798697119
+UniRef50_UPI00021A4B49	PREDICTED	1.47353047464e-05	1.11556483699e-05	-3.5796563765e-06
+UniRef50_Z5X4K7	Peptide chain release factor 3 	2.251193855e-05	4.76300227494e-05	2.51180841994e-05
+UniRef50_X5EDT3	Transcriptional regulator	0.000116989459351	0.000181547154827	6.4557695476e-05
+UniRef50_C7C6J2		0.000240645211634	1.22912768053e-05	-0.000228353934829
+UniRef50_R7Y8S1	Phenol hydroxylase	0.000109257947678	7.35711851151e-05	-3.56867625629e-05
+UniRef50_A6LPT1	Protein translocase subunit SecY	9.11801905478e-05	0.00207757073798	0.00198639054743
+UniRef50_C5YXP4		3.00116684653e-05	4.61774897982e-05	1.61658213329e-05
+UniRef50_W8G3Q0	RNA helicase	0.000286709251694	0.000397078411985	0.000110369160291
+UniRef50_UPI0004743A90	hypothetical protein, partial	2.3604179684e-05	0.000159302789758	0.000135698610074
+UniRef50_A7WY72		0.00817496347434	0.00348899025683	-0.00468597321751
+UniRef50_UPI0004710467	membrane protein	1.02983807623e-05	1.50779122806e-05	4.7795315183e-06
+UniRef50_Q3J0K0	PAS PAC sensor hybrid histidine kinase	3.99315220946e-05	6.2766568591e-05	2.28350464964e-05
+UniRef50_Q0C161	Methionine  tRNA ligase	0.00705542363086	0.00197500707064	-0.00508041656022
+UniRef50_S4YUV8	ABC transporter	0.000235855267876	0.00986755039602	0.00963169512814
+UniRef50_Q9RYR2	Extracellular solute binding protein, family 5	0.00106094764695	0.224438113631	0.223377165984
+UniRef50_Q57I24	Small heat shock protein IbpA	0.000999406228507	0.000431119277652	-0.000568286950855
+UniRef50_A6M276		0.000174492752936	0.00101238837568	0.000837895622744
+UniRef50_D3QC45	D 3 phosphoglycerate dehydrogenase	0.00954437552519	0.00787562453815	-0.00166875098704
+UniRef50_D3E414	Thioredoxin disulfide reductase TrxB	0.00265195827691	0.000977441371624	-0.00167451690529
+UniRef50_G2DRR8		1.12212809947e-05	8.98508127128e-06	-2.23619972342e-06
+UniRef50_UPI000382579F	hypothetical protein	3.50006607366e-05	0.000160898216948	0.000125897556211
+UniRef50_W4ANY2	Diadenosine tetraphosphatase	3.47891440653e-06	4.2650031749e-06	7.8608876837e-07
+UniRef50_UPI000441FCBD	PREDICTED	9.18104448428e-06	1.48384140238e-05	5.65736953952e-06
+UniRef50_I6STV8		0.00088878967274	0.00324926679388	0.00236047712114
+UniRef50_UPI0003167C65	hypothetical protein	5.05361426384e-06	2.9193153044e-05	2.41395387802e-05
+UniRef50_UPI0002D70FB9	hypothetical protein	9.99291300444e-05	0.000158275039623	5.83459095786e-05
+UniRef50_Q9FNM5	Translation factor GUF1 homolog, chloroplastic	0.000234051297385	0.00545133271958	0.0052172814222
+UniRef50_Q17ZB6	30S ribosomal protein S11	0.000305244734926	0.000945013456618	0.000639768721692
+UniRef50_W5X7S1	FHA domain containing protein	1.88499303439e-06	0.000572487607239	0.000570602614205
+UniRef50_Q06584	Pyocin S2	0.00048432801628	9.40499061074e-05	-0.000390278110173
+UniRef50_P59339	Transcriptional regulatory protein DcuR	0.00396153735527	0.000461432351874	-0.0035001050034
+UniRef50_M1N6P4		0.000961804890904	0.00100229692073	4.0492029826e-05
+UniRef50_R1FSG8		0.00049203935164	0.000343391517665	-0.000148647833975
+UniRef50_UPI0002DB7074	hypothetical protein	6.17747138994e-05	2.5498953495e-05	-3.62757604044e-05
+UniRef50_Q5HF39	Acetoin utilization protein AcuC	0.00882286997334	0.0012707270887	-0.00755214288464
+UniRef50_E1VHW6		0.00221644887336	0.000545891850939	-0.00167055702242
+UniRef50_UPI0002555FE2	cobalamin adenolsyltransferase cobinamide ATP dependent adenolsyltransferase	3.60711697531e-05	0.000945321112419	0.000909249942666
+UniRef50_A6M1L4	Putative cell wall binding repeat containing protein	0.000762295016662	0.000883768062641	0.000121473045979
+UniRef50_UPI0003304489	50S ribosomal protein L21	0.000204887761299	5.12385842871e-05	-0.000153649177012
+UniRef50_UPI000470B9A7	hypothetical protein	0.000165145844943	0.000133854160303	-3.129168464e-05
+UniRef50_Q5HHC0	Inactive signal peptidase IA	0.0146351372408	0.00232630589915	-0.0123088313416
+UniRef50_UPI000225E6BE	two component transcriptional regulator, winged helix family protein	0.000110624387564	3.37255606108e-05	-7.68988269532e-05
+UniRef50_UPI0002000266	preprotein translocase subunit SecF	0.000116640169769	0.000255182945321	0.000138542775552
+UniRef50_UPI00037E0BE4	hypothetical protein, partial	1.25982197285e-05	0.000149323860013	0.000136725640285
+UniRef50_P69789	Phosphotransferase enzyme IIB component GlvB	0.0122033296646	0.00273594243939	-0.00946738722521
+UniRef50_UPI0002236A65	PREDICTED	8.78010452465e-06	1.78392596034e-05	9.05915507875e-06
+UniRef50_W5X9J0	3 methyl 2 oxobutanoate hydroxymethyltransferase	5.38081106343e-06	9.66901326737e-06	4.28820220394e-06
+UniRef50_C4WZ51	Sugar ABC transport system permease component	0.00386602781633	0.00120447347645	-0.00266155433988
+UniRef50_G7M6K7	Phosphoglycerate mutase	0.000206276496643	0.00674934090445	0.00654306440781
+UniRef50_U5MSL5	NADPH dependent FMN reductase	0.00127460586271	0.00119011211164	-8.449375107e-05
+UniRef50_E1VM94		0.000364134394391	0.000508378985802	0.000144244591411
+UniRef50_M9VFH2	ABC transporter associated permease	0.000199556703666	0.00508080667036	0.00488124996669
+UniRef50_UPI000350CE44	PREDICTED	2.08207074995e-05	4.75823740487e-05	2.67616665492e-05
+UniRef50_UPI00037A0BCD	hypothetical protein	4.98511274778e-05	2.90609822392e-05	-2.07901452386e-05
+UniRef50_UPI000366EF31	hypothetical protein	1.17229900425e-06	3.02941265129e-05	2.91218275087e-05
+UniRef50_UPI00035CAB47	phosphoribosylglycinamide synthetase	2.7887496877e-05	7.10194828436e-06	-2.07855485926e-05
+UniRef50_Q8A9V4	ATP synthase subunit beta	1.44847987138e-05	5.84272603368e-06	-8.64207268012e-06
+UniRef50_Q8DNY1	1 acyl sn glycerol 3 phosphate acyltransferase	0.0057831945315	0.00302372163657	-0.00275947289493
+UniRef50_Q8KG38	Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.228931421e-05	4.07051787282e-05	1.84158645182e-05
+UniRef50_L0GWW9		2.07934498478e-05	4.58425124139e-06	-1.62091986064e-05
+UniRef50_X1R6D7	Marine sediment metagenome DNA, contig	1.10229011529e-05	2.28582736057e-05	1.18353724528e-05
+UniRef50_UPI000288AE11	1 phosphofructokinase	8.25260328229e-06	9.14031768089e-06	8.877143986e-07
+UniRef50_B9DKC4	Haloacid dehalogenase like hydrolase family protein	0.0150043086498	0.00463430995065	-0.0103699986992
+UniRef50_E2XJ48	1 acyl sn glycerol 3 phosphate acyltransferase	0.00147134102421	0.000538897619392	-0.000932443404818
+UniRef50_Q92Q22	Serine  tRNA ligase	0.000732513781457	0.0011643139597	0.000431800178243
+UniRef50_M4VHL0	Glyoxalase family protein	8.61958004611e-06	1.93713087747e-05	1.07517287286e-05
+UniRef50_UPI0001744949	GNAT family acetyltransferase	0.000102167828602	0.000316920128224	0.000214752299622
+UniRef50_UPI000329B94F		0.00162682036952	0.000950796708307	-0.000676023661213
+UniRef50_UPI00037660D4	hypothetical protein	8.96495645163e-05	1.6214916189e-05	-7.34346483273e-05
+UniRef50_Q3AT37	Adenine phosphoribosyltransferase	4.61923597209e-05	0.00282451985682	0.0027783274971
+UniRef50_K7S318	Proline dehydrogenase aldehyde dehydrogenase  family protein	0.000217994359766	0.00580806907749	0.00559007471772
+UniRef50_Q6ZTJ3	cDNA FLJ44595 fis, clone BLADE2004849	1.2091643331e-05	1.02773546884e-05	-1.8142886426e-06
+UniRef50_A0A011PEW7	NAD specific glutamate dehydrogenase	0.000100246760541	6.34323547162e-05	-3.68144058248e-05
+UniRef50_A4WR24	IS66 Orf2 family protein	4.75439372512e-05	7.8644938945e-05	3.11010016938e-05
+UniRef50_Q1MR60	Glutamate  tRNA ligase	1.28695657397e-05	7.04329953844e-06	-5.82626620126e-06
+UniRef50_UPI000372FBE5	hypothetical protein	4.97414268974e-06	2.73130863481e-05	2.23389436584e-05
+UniRef50_R7PTD3	Chlamydial polymorphic outer membrane protein repeat containing domain protein	0.00269258271682	0.00192805360378	-0.00076452911304
+UniRef50_A6M0N3	Iron containing alcohol dehydrogenase	0.000254807680966	0.00107140151355	0.000816593832584
+UniRef50_E4BLL0		0.000135513936518	6.7932281385e-05	-6.7581655133e-05
+UniRef50_Q034H8	Ribose 5 phosphate isomerase A	0.00909402298277	0.00257807785393	-0.00651594512884
+UniRef50_P53607	L threonine dehydratase biosynthetic IlvA	4.09806198415e-06	2.59333444582e-05	2.18352824741e-05
+UniRef50_A6LPD2		0.000191617253221	0.000325716954257	0.000134099701036
+UniRef50_G8AVE8		1.06699385904e-05	7.97499189639e-06	-2.69494669401e-06
+UniRef50_Q75V35		0.000811914200962	0.000501978491339	-0.000309935709623
+UniRef50_I6XYY5	Periplasmic binding protein	1.0490026975e-05	2.90578520179e-05	1.85678250429e-05
+UniRef50_UPI00026286B5	ABC type sugar  transport system, ATPase component	1.10288939619e-05	3.06366256846e-05	1.96077317227e-05
+UniRef50_Q9AGG3	Rubrerythrin	0.000194580406623	0.0118817226393	0.0116871422327
+UniRef50_T1YAJ7	Conserved membrane protein 	0.0256686025569	0.00789280131187	-0.017775801245
+UniRef50_K0L607	Indigoidine systhesis protein	0.0140152343203	0.00508321729657	-0.00893201702373
+UniRef50_Q9RVK7	ATP dependent zinc metalloprotease FtsH	0.000201755112325	0.0521394967435	0.0519377416312
+UniRef50_A3PHB5	Secretion protein HlyD family protein	0.0146666115421	0.00379464817189	-0.0108719633702
+UniRef50_I1F0I8		4.43264007568e-05	0.000997767456984	0.000953441056227
+UniRef50_B1M6B8	Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB	3.66994623591e-05	8.48792930964e-05	4.81798307373e-05
+UniRef50_T0W257		0.000257376810578	0.00420236376757	0.00394498695699
+UniRef50_P02921	Melibiose carrier protein	0.000833340156917	0.000360065131389	-0.000473275025528
+UniRef50_Q2CBB5		6.59289861935e-05	4.57086518367e-05	-2.02203343568e-05
+UniRef50_A3M2F1	IcmB protein	3.47166758604e-05	0.0111191475114	0.0110844308355
+UniRef50_Q0FPA9		0.000686338161548	0.000338320794688	-0.00034801736686
+UniRef50_U5UJV7	Aminopeptidase PepS	0.0126981782461	0.00430566177993	-0.00839251646617
+UniRef50_Q4L629	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00723699810416	0.000632406461821	-0.00660459164234
+UniRef50_F3U1Z6		0.000952365178106	0.000667203396607	-0.000285161781499
+UniRef50_R0NVZ1		0.000291120299886	0.00303406875011	0.00274294845022
+UniRef50_UPI00036593BA	hypothetical protein	4.12917606974e-05	0.000116043539108	7.47517784106e-05
+UniRef50_W7VW27		1.25360097357e-05	8.61674282229e-05	7.36314184872e-05
+UniRef50_F7ZK72		6.65294073215e-05	2.72608722224e-05	-3.92685350991e-05
+UniRef50_B3PB28	Membrane protein, PerM family	0.00120905144553	0.00142751526495	0.00021846381942
+UniRef50_A4WNY6	ATP synthase subunit a	0.0172635590343	0.00435651928708	-0.0129070397472
+UniRef50_UPI000376746B	hypothetical protein	5.06398633312e-06	2.76758781362e-05	2.26118918031e-05
+UniRef50_UPI00047040E8	hypothetical protein	7.02101346729e-06	5.23850836493e-05	4.5364070182e-05
+UniRef50_UPI0001850BCC	bis tetraphosphatase PrpE	8.95183704161e-06	0.00029806458431	0.000289112747268
+UniRef50_A1U0M3	Transposase, IS4 family	3.40882927822e-06	6.03320669062e-06	2.6243774124e-06
+UniRef50_UPI00047D0A7B	DNA methyltransferase	0.000133275499648	0.000162424970458	2.914947081e-05
+UniRef50_Q9RSK3	Branched chain amino acid ABC transporter, permease protein	0.000169529635709	0.00934793434431	0.0091784047086
+UniRef50_Q1AVI4	NADH quinone oxidoreductase subunit B	8.14984762497e-06	0.00013693838263	0.000128788535005
+UniRef50_Q2YUT9		0.00832557777277	0.00151469847612	-0.00681087929665
+UniRef50_A8FEL7	Glycerol 3 phosphate dehydrogenase [NAD+]	1.65743093309e-05	0.00045708646179	0.000440512152459
+UniRef50_Q9RS18		0.000173158710486	0.00722106594778	0.00704790723729
+UniRef50_J9YPZ0		0.000444453170174	0.000559074181959	0.000114621011785
+UniRef50_B9DZV8		0.000598119123326	0.00143691611792	0.000838796994594
+UniRef50_Q9RS17		0.000221579796577	0.0366633591274	0.0364417793308
+UniRef50_H8GVZ3	PPC, peptidase containing PKD repeats	7.83158733431e-06	0.00110766770009	0.00109983611276
+UniRef50_B1WUS6	Glutathione S transferase	0.000249990721098	0.00649842662101	0.00624843589991
+UniRef50_Q9NZB8	Molybdenum cofactor biosynthesis protein 1	2.37606010295e-06	9.35006550252e-06	6.97400539957e-06
+UniRef50_U5MS35		0.00050016346648	0.000787736682816	0.000287573216336
+UniRef50_Q9KCM5	Diaminopimelate decarboxylase	8.34887874333e-06	0.000322446104942	0.000314097226199
+UniRef50_Q9RX22	Formamidopyrimidine DNA glycosylase	0.000613949201586	0.0241224530083	0.0235085038067
+UniRef50_Q9L7R4	Putative sulfoquinovose importer	0.00212078077617	0.000763193871103	-0.00135758690507
+UniRef50_E5G5K3	Putative conjugative transfer protein	1.38682181352e-05	1.58339775555e-05	1.9657594203e-06
+UniRef50_Q1QCP2	tRNA 2 thiocytidine biosynthesis protein TtcA	0.000242032345401	0.00188960662919	0.00164757428379
+UniRef50_Q4L842	Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0113959047079	0.00152231337021	-0.00987359133769
+UniRef50_F9HIH2	Conserved domain protein	5.58631046687e-05	6.07512673153e-06	-4.97879779372e-05
+UniRef50_A0A011QZ11		5.69049313221e-07	8.23624520585e-05	8.17934027453e-05
+UniRef50_E2SFH7		0.000113029677675	0.000420878914765	0.00030784923709
+UniRef50_A6UYI4	6 aminohexanoate dimer hydrolase	0.000196448785151	0.000408998840153	0.000212550055002
+UniRef50_P67082	UPF0001 protein YggS	0.00251694113206	0.000298002080405	-0.00221893905166
+UniRef50_P37745	dTDP 4 dehydrorhamnose 3,5 epimerase	0.00135245527309	0.00467199205858	0.00331953678549
+UniRef50_B9KLT3		0.00307309099608	0.00101022344065	-0.00206286755543
+UniRef50_P26973	DNA topoisomerase 4 subunit A	0.000305549731936	0.000279588378933	-2.5961353003e-05
+UniRef50_UPI0003FC94D0	cysteinyl tRNA synthetase	3.92745545883e-06	1.01932268322e-05	6.26577137337e-06
+UniRef50_UPI000470A448	hypothetical protein	5.88686375574e-06	0.000159616944887	0.000153730081131
+UniRef50_L5S037	ACT domain protein	0.000104782384182	0.00133525992958	0.0012304775454
+UniRef50_UPI0003013AD2	hypothetical protein	1.51012460813e-05	2.93121179116e-05	1.42108718303e-05
+UniRef50_A6LV61	Histidine kinase	0.000187882514284	0.00151914524908	0.0013312627348
+UniRef50_UPI0002E3E4A1	hypothetical protein	8.54528630764e-05	1.56453968895e-05	-6.98074661869e-05
+UniRef50_Q28VZ9	Shikimate dehydrogenase	9.60419361502e-05	8.25331412278e-05	-1.35087949224e-05
+UniRef50_G7M2K6	Phosphoesterase, HXTX	0.000214887659684	0.00102372921604	0.000808841556356
+UniRef50_D3UYE0		9.34630741609e-06	0.00688077435364	0.00687142804622
+UniRef50_P0AB60	Lipopolysaccharide regulatory protein	0.00288266801513	0.000795531318942	-0.00208713669619
+UniRef50_Q5HLQ3	Putative 3 methyladenine DNA glycosylase	0.00631521739014	0.00160986108954	-0.0047053563006
+UniRef50_B9MQ93	Ribosomal RNA small subunit methyltransferase H	2.19554492941e-05	9.43642024745e-06	-1.25190290467e-05
+UniRef50_UPI0003667B7C	hypothetical protein	0.000163784045111	0.000335909631657	0.000172125586546
+UniRef50_UPI00047095B2	hypothetical protein	3.96904865814e-05	8.59422575513e-06	-3.10962608263e-05
+UniRef50_UPI0003189EE0	hypothetical protein	7.52531950173e-06	8.34012494952e-06	8.1480544779e-07
+UniRef50_UPI00036C1384	hypothetical protein	8.60744518598e-05	0.000143392030538	5.73175786782e-05
+UniRef50_P47734	S glutathione dehydrogenase	7.09550053898e-06	0.0511591141552	0.0511520186547
+UniRef50_Q1IZT5	Oligopeptidase A	0.000297772575356	0.0382019092963	0.0379041367209
+UniRef50_P44742		0.0049647723182	0.00905030485776	0.00408553253956
+UniRef50_A0A023S121	Cation transporter	0.000117110441217	0.00588601975751	0.00576890931629
+UniRef50_UPI000477260F	sulfite oxidase	1.18050150715e-05	2.12289600643e-05	9.4239449928e-06
+UniRef50_UPI00047DFE8E	phosphoribosylaminoimidazole carboxylase	5.47024916228e-06	1.15648935703e-05	6.09464440802e-06
+UniRef50_Q99J99	3 mercaptopyruvate sulfurtransferase	3.85318637964e-05	1.23930831582e-05	-2.61387806382e-05
+UniRef50_R9SLZ6	SAM dependent methyltransferase	0.00234044764352	0.000222321233524	-0.00211812641
+UniRef50_UPI00035E4699	hypothetical protein	1.39177235013e-05	3.81583415989e-05	2.42406180976e-05
+UniRef50_C5ZSV0	Transcriptional regulator, LuxR family	0.000149796027328	0.00173203169082	0.00158223566349
+UniRef50_E9G921		1.21774833618e-06	8.60145743281e-05	8.47968259919e-05
+UniRef50_V6Q9S0		0.0395163555086	0.0131467175661	-0.0263696379425
+UniRef50_G6DMD6		0.000308258473899	3.33924797446e-05	-0.000274865994154
+UniRef50_UPI00046C8B78	hypothetical protein	3.86324313751e-05	0.000297095777552	0.000258463346177
+UniRef50_UPI000476D6FD	hypothetical protein	1.39505005493e-05	1.35071264644e-05	-4.433740849e-07
+UniRef50_UPI00035D082A	hypothetical protein	5.72897374815e-06	2.94966096167e-05	2.37676358685e-05
+UniRef50_I3X451		4.8762730393e-05	2.1677387844e-05	-2.7085342549e-05
+UniRef50_C8VYT7	dTDP 4 dehydrorhamnose reductase	0.00338181581552	0.00214675516122	-0.0012350606543
+UniRef50_K2J0W9	Cupin	0.000308514691359	0.000148052931154	-0.000160461760205
+UniRef50_UPI00034BFA99	hypothetical protein	5.53053643752e-05	7.15518069096e-05	1.62464425344e-05
+UniRef50_UPI000350BCA6	PREDICTED	5.52223373927e-06	0.00206376998464	0.0020582477509
+UniRef50_UPI00046D05B1	hypothetical protein	8.19920323476e-06	9.36854709526e-06	1.1693438605e-06
+UniRef50_F3RDV1	Amino acid ABC transporter permease	0.000815436775779	0.00542440417343	0.00460896739765
+UniRef50_UPI00037F5AC8	hypothetical protein	1.56087895639e-05	1.491240312e-05	-6.963864439e-07
+UniRef50_P45073	Lipopolysaccharide export system ATP binding protein LptB	0.00433148914032	0.00199718365805	-0.00233430548227
+UniRef50_B9KSN1		0.0086120016255	0.000382699833941	-0.00822930179156
+UniRef50_UPI000023CA35	hypothetical protein FG01684.1	4.8471439838e-07	1.26775090262e-06	7.8303650424e-07
+UniRef50_UPI0003ACFD99	hypothetical protein	9.75169014309e-05	3.35815546289e-05	-6.3935346802e-05
+UniRef50_P38036	CRISPR associated endonuclease helicase Cas3	0.00252200016565	0.000933709121083	-0.00158829104457
+UniRef50_V5SXK1	Histidine kinase	0.000149670514747	0.000160698750524	1.1028235777e-05
+UniRef50_C1EGE2	Predicted protein	2.96478676684e-05	7.51153078373e-06	-2.21363368847e-05
+UniRef50_C6STX0		0.00216928373759	0.000881542403566	-0.00128774133402
+UniRef50_UPI0003615DBA	hypothetical protein	4.25434712329e-05	3.92108605423e-05	-3.3326106906e-06
+UniRef50_D3QHK9	Glycerate kinase	0.0244992486178	0.0060040213785	-0.0184952272393
+UniRef50_UPI0003B42182	DeoR family transcriptional regulator	1.09721850873e-05	1.19975695998e-05	1.0253845125e-06
+UniRef50_I6U493		0.0260687080754	0.0023778289647	-0.0236908791107
+UniRef50_K2KBP7		1.36452838754e-06	2.45095057125e-06	1.08642218371e-06
+UniRef50_UPI00047AB8B0	high frequency lysogenization protein HflD	6.41019431396e-06	7.17850332245e-06	7.6830900849e-07
+UniRef50_S5Y296	Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB	0.00635899830222	0.00153919198301	-0.00481980631921
+UniRef50_P0ADU0		0.00166235689929	0.00161934166987	-4.301522942e-05
+UniRef50_A0K2M1	Chromosome segregation ATPase	0.000347974776446	0.00875851366357	0.00841053888712
+UniRef50_B7VQP3	NH dependent NAD(+) synthetase	1.56596828703e-05	2.04306344906e-05	4.7709516203e-06
+UniRef50_K9P9J8	LysM repeat containing protein	3.67610835645e-05	2.72627421618e-05	-9.4983414027e-06
+UniRef50_C4Z3J5	Aspartyl glutamyl tRNA amidotransferase subunit B	0.0217274662798	0.00603758633555	-0.0156898799443
+UniRef50_Q8R5T0	Glucosamine 6 phosphate deaminase	6.36972999405e-06	1.6543655634e-05	1.01739256399e-05
+UniRef50_M3E127	Cation transport ATPase	0.000109698263541	1.65372475746e-05	-9.31610159664e-05
+UniRef50_K0SY54		2.37159856396e-05	1.98458041834e-05	-3.8701814562e-06
+UniRef50_X5EXI6		0.000911107363322	0.000223779524654	-0.000687327838668
+UniRef50_UPI0004643DB1	hypothetical protein	0.000334123146079	0.000114206805968	-0.000219916340111
+UniRef50_Q6D8D5	Outer membrane protein assembly factor BamA	0.00136656872567	0.000863440062441	-0.000503128663229
+UniRef50_Q4L4Z3	3 oxoacyl [acyl carrier protein] synthase 3	0.00759353037144	0.000950607340545	-0.00664292303089
+UniRef50_Q6FD06		0.000126108904961	0.00677745921864	0.00665135031368
+UniRef50_Q5HRT0	Acetyltransferase, GNAT family	0.0373369972196	0.00404780401371	-0.0332891932059
+UniRef50_F4EG72	ABC type polar amino acid transport system, ATPase component	0.00411955312168	0.00224005046027	-0.00187950266141
+UniRef50_UPI0002559D42	non specific serine threonine protein kinase	3.51381330707e-06	0.000442407617322	0.000438893804015
+UniRef50_Q1IZL1	Glutamyl Q tRNA synthetase	7.42782831309e-06	0.000425497156138	0.000418069327825
+UniRef50_UPI000470F3D8	hypothetical protein	1.50262562888e-05	4.2914682856e-05	2.78884265672e-05
+UniRef50_D5ANE3		0.000323673981177	6.76969056312e-05	-0.000255977075546
+UniRef50_P0A9J7	Ribokinase	0.00210078679337	0.000322750497486	-0.00177803629588
+UniRef50_M1LZF7	Transcriptional antiterminator	0.000495929021099	0.000771205913753	0.000275276892654
+UniRef50_E0XU72		0.000133456988552	0.000111740431165	-2.1716557387e-05
+UniRef50_P37443		0.00486089344957	0.00143711638644	-0.00342377706313
+UniRef50_UPI00036CABD5	hypothetical protein	1.21622232756e-05	9.33585339199e-06	-2.82636988361e-06
+UniRef50_B0V9N7		9.45290456222e-05	0.00469445572516	0.00459992667954
+UniRef50_Q2GAK4		6.15627096257e-05	2.03465912603e-05	-4.12161183654e-05
+UniRef50_P55891	Motility protein A	0.00137322593366	0.000824767182313	-0.000548458751347
+UniRef50_G8P8U5	Transporter	0.00723046083601	0.00351244434113	-0.00371801649488
+UniRef50_G8LNB8		0.000231745730627	0.000183221813758	-4.8523916869e-05
+UniRef50_K0I6Y3	Tricarballylate dehydrogenase	0.000712659891238	0.00592589504898	0.00521323515774
+UniRef50_B9MFW6	5 nucleotidase SurE	0.000159053085188	0.000989988395348	0.00083093531016
+UniRef50_Q97JJ9	Germination protease	0.0013089170066	0.00185094809295	0.00054203108635
+UniRef50_UPI0004710C19	hypothetical protein	2.95762252406e-05	1.1047200244e-05	-1.85290249966e-05
+UniRef50_U0EEM2		1.3058071386e-05	4.85819789306e-05	3.55239075446e-05
+UniRef50_B9KX11	ABC branched chain amino acid transporter, inner membrane subunit	0.0126700902744	0.00254854146672	-0.0101215488077
+UniRef50_Q8DUL1		0.000747067521347	0.0010610181025	0.000313950581153
+UniRef50_A5UK96		0.00152883265696	0.000636874212322	-0.000891958444638
+UniRef50_D8IV87	1,4 alpha glucan branching enzyme GlgB	0.000412010222809	0.000282260087542	-0.000129750135267
+UniRef50_D7BEZ9	ATP dependent DNA helicase RecG	4.93445737068e-05	0.0304549403388	0.0304055957651
+UniRef50_UPI00047DE858	ABC transporter ATPase	1.66654644852e-05	1.36103750377e-05	-3.0550894475e-06
+UniRef50_D4DLY8	Primosomal protein N	5.17576767137e-05	0.00438107830364	0.00432932062693
+UniRef50_UPI00047D2C54	DNA 3 methyladenine glycosylase	3.22053326685e-05	2.17002329181e-05	-1.05050997504e-05
+UniRef50_B2ACV0	Putative glutathione dependent formaldehyde activating enzyme	0.00573646791987	0.00112035727572	-0.00461611064415
+UniRef50_UPI00040EADB4	hypothetical protein	0.000380798967031	9.57838597129e-05	-0.000285015107318
+UniRef50_X4ZHJ1	Methionine import ATP binding protein MetN	0.000523055684959	0.00492009958595	0.00439704390099
+UniRef50_J7QS02		2.20650776349e-05	1.05298207211e-05	-1.15352569138e-05
+UniRef50_UPI0003C0FD3F		2.20550207061e-05	4.5186868752e-06	-1.75363338309e-05
+UniRef50_UPI00037837C4	hypothetical protein, partial	4.37943223119e-05	2.69912429616e-05	-1.68030793503e-05
+UniRef50_UPI00035A0C3F	PREDICTED	4.17016094433e-05	9.57450763253e-05	5.4043466882e-05
+UniRef50_B9KLU7	GCN5 related N acetyltransferase	0.00511802537321	0.000365340253849	-0.00475268511936
+UniRef50_UPI00037510F3	hypothetical protein, partial	0.000245519509095	0.000489475201976	0.000243955692881
+UniRef50_Q5NYZ2	Nitrate proton symporter	0.000349074629554	0.00062682038244	0.000277745752886
+UniRef50_S3BZ34		1.80368166228e-05	8.25891952738e-05	6.4552378651e-05
+UniRef50_S5XXA3		0.00220036285277	0.000175333428801	-0.00202502942397
+UniRef50_M1N724		0.000608125428094	0.00112402670773	0.000515901279636
+UniRef50_A0A022G4G2	LysR family transcriptional regulator	1.54507264034e-05	1.12377309394e-05	-4.212995464e-06
+UniRef50_UPI00026C800D	sodium	4.89000157243e-06	6.50795470143e-06	1.617953129e-06
+UniRef50_V7EQ63	Ribonuclease E	0.00267758359708	0.000324636333967	-0.00235294726311
+UniRef50_UPI0003C45913	PREDICTED	5.47608902606e-05	0.000107714299774	5.29534095134e-05
+UniRef50_A3PS91		0.0112434888451	0.00264514244081	-0.00859834640429
+UniRef50_P22447	DNA gyrase subunit B	6.51699890487e-06	1.57828625218e-05	9.26586361693e-06
+UniRef50_Q97K30	Probable M18 family aminopeptidase 1	0.000493679508123	0.00185293951898	0.00135926001086
+UniRef50_B9MJR9	ATP phosphoribosyltransferase	1.37703672779e-05	4.46407116557e-05	3.08703443778e-05
+UniRef50_Q9JTQ0	Tryptophan  tRNA ligase	2.15538909898e-05	0.00092541790524	0.00090386401425
+UniRef50_E3GYA2	Phosphate uptake regulator, PhoU	0.00276933240745	0.00107286780249	-0.00169646460496
+UniRef50_R7PS35		0.000444101163361	0.000521147126817	7.7045963456e-05
+UniRef50_UPI0003610FEF	hypothetical protein	3.87068967488e-05	6.00610930389e-06	-3.27007874449e-05
+UniRef50_I9KTK5	Oligoendopeptidase F	0.00787300823183	0.00167735282022	-0.00619565541161
+UniRef50_A6LWM9	Collagen triple helix repeat	6.60325344921e-05	0.000200991470693	0.000134958936201
+UniRef50_Q37383	NADH ubiquinone oxidoreductase subunit 9	8.77889723386e-06	1.41006136028e-05	5.32171636894e-06
+UniRef50_A5UQY7		0.000142638779632	6.66460680616e-05	-7.59927115704e-05
+UniRef50_A1B5M1	5 nucleotidase SurE	0.000164750955752	0.000369916540948	0.000205165585196
+UniRef50_Q1R6G9		0.000652851043194	0.000251964177045	-0.000400886866149
+UniRef50_P48596	GTP cyclohydrolase 1	3.2438361115e-05	5.07853277604e-05	1.83469666454e-05
+UniRef50_UPI000464508F	spermidine putrescine ABC transporter ATP binding protein	4.88906220308e-05	9.58505283096e-05	4.69599062788e-05
+UniRef50_UPI00047B2829	hypothetical protein	2.68694792578e-05	1.79602351349e-05	-8.9092441229e-06
+UniRef50_A1B894	Protein HflC	0.00158167437796	0.000697022966759	-0.000884651411201
+UniRef50_P59199	DNA polymerase I	0.00742786197298	0.00537093494678	-0.0020569270262
+UniRef50_Q3JTX2		6.81300817105e-05	0.000140071164521	7.19410828105e-05
+UniRef50_A8LJI8	Purine nucleoside phosphorylase DeoD type	3.02773346334e-05	0.000329039341415	0.000298762006782
+UniRef50_P52028	DNA polymerase I, thermostable	1.97336231941e-06	9.14825501075e-05	8.95091877881e-05
+UniRef50_UPI000262577A	single stranded DNA binding protein	1.61365321897e-05	0.0013353735878	0.00131923705561
+UniRef50_E4GKY2	Membrane alanyl aminopeptidase	0.000110108142818	0.00600378608755	0.00589367794473
+UniRef50_Q6A780	Error prone DNA polymerase	0.000200238704937	0.00459049506526	0.00439025636032
+UniRef50_D7CX24	Peptidase M20	8.46381140973e-05	0.0361286655965	0.0360440274824
+UniRef50_UPI0003694929	hypothetical protein	3.39362049457e-05	1.69781222573e-05	-1.69580826884e-05
+UniRef50_UPI000255571F	ABC transporter	0.00011370858558	5.98872240883e-06	-0.000107719863171
+UniRef50_A0A023VS51		1.53179704397e-05	2.0453904998e-05	5.1359345583e-06
+UniRef50_UPI000255A6AD	transcriptional regulator	0.00188154993113	0.00094746350882	-0.00093408642231
+UniRef50_L0LNE1	SecY stabilizing membrane protein	0.0215461158202	0.00649633466086	-0.0150497811593
+UniRef50_W1S564	Cupin	0.000151641815833	5.68258266711e-05	-9.48159891619e-05
+UniRef50_C7MNW3	Acyl CoA synthetase  AMP acid ligase II	0.0032397771704	0.00490080435177	0.00166102718137
+UniRef50_Q9KA05	Ribonuclease 3	0.00748017508687	0.00350115034765	-0.00397902473922
+UniRef50_X1WZZ9		0.000551181268383	5.34402971215e-05	-0.000497740971262
+UniRef50_UPI00014D324F	ABC transporter permease	0.000300452900777	0.000148352777391	-0.000152100123386
+UniRef50_E8P8N2	Major facilitator superfamily permease	0.000183067675657	0.00726249387333	0.00707942619767
+UniRef50_UPI0002E55EAF	hypothetical protein	6.78022435433e-06	7.41652055421e-05	6.73849811878e-05
+UniRef50_A4FQ90	Xaa Pro dipeptidase	6.26325850433e-06	1.27870180243e-05	6.52375951997e-06
+UniRef50_U7G8B2	Toxin PIN	4.25068467947e-05	0.000219499344533	0.000176992497738
+UniRef50_B2K316	tRNA  methyltransferase 2	0.00471833538305	0.000702208615786	-0.00401612676726
+UniRef50_M1MIQ5		0.000903608936504	0.00121052071101	0.000306911774506
+UniRef50_F0YS51	Expressed protein 	0.00043023513216	0.000667801724293	0.000237566592133
+UniRef50_D9RDU7	Glyoxalase bleomycin resistance protein dioxygenase superfamily protein	0.0176985158771	0.00374676900778	-0.0139517468693
+UniRef50_Q3ILQ9	Siroheme synthase	3.65184047643e-05	3.07469632762e-05	-5.7714414881e-06
+UniRef50_D3F1T9		0.000771446441153	0.000261676851705	-0.000509769589448
+UniRef50_Q28KF1	Acyl CoA dehydrogenase like protein	0.00176935905105	0.000114316143943	-0.00165504290711
+UniRef50_D5RUB7		1.64442762717e-05	0.000860733030521	0.000844288754249
+UniRef50_Q9K1R6	Glutamate  tRNA ligase	8.35762336971e-05	0.00378289945056	0.00369932321686
+UniRef50_R6YL47		1.95277663098e-05	0.000253739644554	0.000234211878244
+UniRef50_Q8NYY1		0.0224784443033	0.00880158059737	-0.0136768637059
+UniRef50_Q88PE3	RND efflux membrane fusion protein related protein	0.00123345153797	0.000611942019472	-0.000621509518498
+UniRef50_B5EZ88	LPS assembly lipoprotein LptE	0.00272225826673	0.00372204800439	0.00099978973766
+UniRef50_UPI0004634C4E	hypothetical protein	0.000189458515494	7.52161363492e-05	-0.000114242379145
+UniRef50_UPI0003827005	50S ribosomal protein L11	6.90908858546e-05	0.00101745198954	0.000948361103685
+UniRef50_A1ADH3	tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC	0.00316968178677	0.000689968208696	-0.00247971357807
+UniRef50_V2D6G8	Putative cation	3.54310242984e-05	0.000120581675316	8.51506510176e-05
+UniRef50_UPI00047D8F91	PTS cellobiose transporter subunit IIC	6.48030120811e-06	5.09985608212e-06	-1.38044512599e-06
+UniRef50_D6A8A0		5.66129093464e-05	0.000111080003284	5.44670939376e-05
+UniRef50_D5AL25	Membrane protein, putative	5.0710157364e-05	0.00033718462327	0.000286474465906
+UniRef50_A0KMY1	Dipeptide and tripeptide permease B	0.00397534031014	0.00123196065224	-0.0027433796579
+UniRef50_UPI000476AB7B	membrane protein	0.000550970137325	0.000283228407808	-0.000267741729517
+UniRef50_A6QE85	Staphylococcal enterotoxin like toxin	0.029258219362	0.00298369980929	-0.0262745195527
+UniRef50_D4HAK8	Protoporphyrinogen oxidase	0.000192096331671	0.00668360246861	0.00649150613694
+UniRef50_Q8F0X6	Hydroxyethylthiazole kinase	6.92589543491e-06	1.02258733143e-05	3.29997787939e-06
+UniRef50_UPI0001B434CE	glyoxalase I	0.000666976975332	0.000605890401675	-6.1086573657e-05
+UniRef50_Q9RTU9		0.00065922954574	0.0302011951903	0.0295419656446
+UniRef50_Q9RTU8		0.000319387789692	0.0472635026843	0.0469441148946
+UniRef50_M1MCZ5		0.00122359420713	0.000696507046023	-0.000527087161107
+UniRef50_S1H4E1	Outer membrane autotransporter barrel domain containing protein	0.000140678008262	0.000157782745423	1.7104737161e-05
+UniRef50_UPI00035CEBAE	hypothetical protein	1.4108831989e-06	2.35101470715e-06	9.4013150825e-07
+UniRef50_Q4L869	PTS system lactose specific EIICB component	0.0299982705729	0.00739260136927	-0.0226056692036
+UniRef50_D9V5U8	Predicted protein	1.69832787799e-05	1.49106118352e-05	-2.0726669447e-06
+UniRef50_UPI0002892C39	acetoacetyl CoA synthetase	5.69353430165e-05	1.62510958225e-05	-4.0684247194e-05
+UniRef50_R9I899		7.5186695953e-06	1.19220511233e-05	4.403381528e-06
+UniRef50_UPI00023751B8	6 pyruvoyl tetrahydropterin synthase	0.000840770262649	0.00105630511526	0.000215534852611
+UniRef50_S5Y0M6	Transcriptional regulator, TetR family	0.000269632849186	0.000947689460791	0.000678056611605
+UniRef50_A9AST0	Isopentenyl diphosphate Delta isomerase	6.17723908317e-05	1.47155827812e-05	-4.70568080505e-05
+UniRef50_Q04D22	Cys tRNA Cys tRNA(Cys) deacylase	0.00147443843198	0.00536222606216	0.00388778763018
+UniRef50_J9P557		0.000119836821857	2.97798788237e-05	-9.00569430333e-05
+UniRef50_C5BV15	Mandelate racemase muconate lactonizing protein	0.00722135272139	0.00190159585312	-0.00531975686827
+UniRef50_J3L617		1.89161651264e-05	3.38875665475e-05	1.49714014211e-05
+UniRef50_D6SCW3		5.64069200778e-05	5.93064095273e-05	2.8994894495e-06
+UniRef50_I7EWS3		0.00237970344177	0.000436182837952	-0.00194352060382
+UniRef50_Q8FH89	Pyridoxamine kinase	0.0067198160392	0.002726190734	-0.0039936253052
+UniRef50_UPI00037451EF	hypothetical protein	3.05083653787e-05	2.77842628282e-05	-2.7241025505e-06
+UniRef50_Q9RRP9		0.000375607949105	0.0543968560736	0.0540212481245
+UniRef50_UPI0003767955	hypothetical protein, partial	3.11694750878e-05	6.5323383645e-05	3.41539085572e-05
+UniRef50_P44594	Queuine tRNA ribosyltransferase	0.0236153839526	0.0189804711445	-0.0046349128081
+UniRef50_A9MN50		0.00273767167473	0.00162702832326	-0.00111064335147
+UniRef50_UPI00036CE8A3	hypothetical protein	1.75948052325e-05	0.00312444420656	0.00310684940133
+UniRef50_Q0VKZ2	Rubredoxin 2	0.000185375071345	3.05722509722e-05	-0.000154802820373
+UniRef50_A6LZX0	Methyl accepting chemotaxis sensory transducer	0.000812419448737	0.000732775381417	-7.964406732e-05
+UniRef50_R9SHV3	NH dependent NAD(+) synthetase	0.00448797927173	0.000810016271225	-0.0036779630005
+UniRef50_A6WJ89	PKHD type hydroxylase Shew185_0721	0.00196986792966	0.00687744465717	0.00490757672751
+UniRef50_D4HAH8	GDSL like protein	0.000249990721098	0.00206261328125	0.00181262256015
+UniRef50_R5U1M5	Glycoside hydrolase family 3 domain containing protein	0.000550532298556	0.00237358158408	0.00182304928552
+UniRef50_A3PG26		0.00296293505533	0.000114983791768	-0.00284795126356
+UniRef50_UPI0003B75FB1	4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.3366368247e-06	1.45679627962e-05	1.02313259715e-05
+UniRef50_UPI0004560989	hypothetical protein PFL1_01444	4.09437749366e-05	0.000143155624938	0.000102211850001
+UniRef50_Q9S2L4	Probable proline iminopeptidase	3.29486153056e-05	9.02977403485e-06	-2.39188412707e-05
+UniRef50_UPI00016C0749	hypothetical protein	8.54750813356e-06	1.88119691482e-05	1.02644610146e-05
+UniRef50_I6ABZ2	Isrso9 transposase protein	4.82318570193e-05	7.65362096936e-06	-4.05782360499e-05
+UniRef50_T1Y9Z4		0.00070353231279	0.000521147126817	-0.000182385185973
+UniRef50_R6MIG6		0.000414139361527	0.000993864223318	0.000579724861791
+UniRef50_UPI000348D44D	hypothetical protein	1.16040801554e-05	7.31219936109e-06	-4.29188079431e-06
+UniRef50_UPI000370B19E	hypothetical protein, partial	5.5693747856e-05	1.68292008647e-05	-3.88645469913e-05
+UniRef50_A3MML4	Ribonuclease PH	4.33534068578e-05	1.3105145169e-05	-3.02482616888e-05
+UniRef50_Q6GJN1		0.0543144771585	0.0115744881537	-0.0427399890048
+UniRef50_P62448	Imidazole glycerol phosphate synthase subunit HisH	0.00411468152794	0.00172175676057	-0.00239292476737
+UniRef50_J9P132		0.000109968755837	0.000347542702579	0.000237573946742
+UniRef50_Q8DS10		0.00580935695515	0.00184491074961	-0.00396444620554
+UniRef50_E4SGD8	Natural resistance associated macrophage protein	9.99521594492e-05	0.000675503587462	0.000575551428013
+UniRef50_UPI000473AE7C	hypothetical protein, partial	3.61148972506e-05	0.000275959125357	0.000239844228106
+UniRef50_UPI000471B809	hypothetical protein	1.86680080947e-05	4.85345487407e-06	-1.38145532206e-05
+UniRef50_B4RND3	Electron transfer flavoprotein ubiquinone oxidoreductase	0.00014170233467	0.00924397152446	0.00910226918979
+UniRef50_A9KDE5	Phosphoenolpyruvate carboxykinase [ATP]	0.00151117489766	0.00040202249454	-0.00110915240312
+UniRef50_M9VP93	PTS system, sucrose specific IIBC component	7.2733331189e-05	0.00630008879507	0.00622735546388
+UniRef50_B4TR32	Ethanolamine ammonia lyase light chain	0.00168857802146	0.00317247378427	0.00148389576281
+UniRef50_I1XWU0	Soluble lytic murein transglycosylase like protein	5.90744896513e-05	0.00551085363816	0.00545177914851
+UniRef50_A5UMU4	Glycosyltransferase , GT1 family	0.00223033983618	0.000528029326888	-0.00170231050929
+UniRef50_Q5F919		0.000110862246227	0.00199375778595	0.00188289553972
+UniRef50_Q54VU7	Methionine aminopeptidase 1D, mitochondrial	7.63945019991e-05	2.35126934341e-05	-5.2881808565e-05
+UniRef50_G2I4C8	UTP  glucose 1 phosphate uridylyltransferase	0.0137419941268	0.00167822680893	-0.0120637673179
+UniRef50_L0WME5	N acetyl anhydromuranmyl L alanine amidase	0.0020349771538	0.00665598561088	0.00462100845708
+UniRef50_UPI0004689B76	ABC transporter ATP binding protein	3.35251334848e-05	9.24389563274e-06	-2.42812378521e-05
+UniRef50_Q03I89	tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0165194865636	0.00716430489965	-0.00935518166395
+UniRef50_G0DVW8	GntR family transcriptional regulator	0.000410310857448	0.00522564689838	0.00481533604093
+UniRef50_Q2L004	Glycerol 3 phosphate acyltransferase	8.18331650288e-06	0.00318808162536	0.00317989830886
+UniRef50_UPI00044124E5	PH domain like protein, partial	1.95431732533e-05	2.92083179584e-05	9.6651447051e-06
+UniRef50_F4DQW9	FAD dependent oxidoreductase	0.000371345213544	0.000168752402972	-0.000202592810572
+UniRef50_E6SMC9	AzlC family protein	2.67853063411e-05	1.21085813642e-05	-1.46767249769e-05
+UniRef50_Q9LC43	TagG homolog	0.00787595751274	0.000936013722495	-0.00693994379024
+UniRef50_Q59695	Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system	2.51114921091e-05	1.36313632669e-05	-1.14801288422e-05
+UniRef50_O83540	V type ATP synthase beta chain 2	0.00241820749037	0.0450704226573	0.0426522151669
+UniRef50_Q04614	NADH ubiquinone oxidoreductase chain 4L	2.17196048097e-05	3.58298339582e-05	1.41102291485e-05
+UniRef50_E7ACI0	Na+ H+ Antiporter	0.00011005422415	0.00300221106742	0.00289215684327
+UniRef50_P37642	Inner membrane protein YhjD	0.00218345002039	0.00254353396624	0.00036008394585
+UniRef50_F2IUQ0	Integrase, catalytic region	0.0139177360053	0.00728791606601	-0.00662981993929
+UniRef50_UPI0003718EA8	5 keto 4 deoxyuronate isomerase	9.56121932094e-06	1.25785662059e-05	3.01734688496e-06
+UniRef50_UPI00047E791A	saccharopine dehydrogenase	6.14208627651e-05	0.000531942761933	0.000470521899168
+UniRef50_S5XU55	Arsenate reductase	0.000119914941797	9.1203677162e-05	-2.8711264635e-05
+UniRef50_F0P418	ABC transporter, substrate binding protein	0.0225357777741	0.00598221194518	-0.0165535658289
+UniRef50_R4KAP5	Ribulose phosphate 3 epimerase	0.000536709936758	0.000269285749417	-0.000267424187341
+UniRef50_T2EFY2	Bacterial extracellular solute binding s, 3 family protein	0.00059603050871	0.00390433225243	0.00330830174372
+UniRef50_UPI0001746A5A	2 dehydro 3 deoxyglucarate aldolase	2.20901928235e-05	3.66152152692e-05	1.45250224457e-05
+UniRef50_P9WQI2	Trehalose import ATP binding protein SugC	0.0291615498054	0.0140531174001	-0.0151084324053
+UniRef50_Q89XW5	Tyrosine recombinase XerD	0.000662748815921	0.000532080092299	-0.000130668723622
+UniRef50_UPI00044166F3	Metallo dependent phosphatase	2.59504571842e-05	4.86404858712e-06	-2.10864085971e-05
+UniRef50_U5WTC2	Magnesium transporter	0.000555443345432	0.00531589410318	0.00476045075775
+UniRef50_A0A037Y901	Gluconate	8.03731700836e-05	0.00700170306844	0.00692132989836
+UniRef50_Q02430	2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase	0.00185320264948	0.000428060392718	-0.00142514225676
+UniRef50_UPI0003B555DD	iron ABC transporter ATP binding protein	1.59766218884e-05	1.17246730613e-05	-4.2519488271e-06
+UniRef50_W8RSD6	LysR family transcriptional regulator	0.000322927313917	0.000199988739417	-0.0001229385745
+UniRef50_A6LS03	Glycoside hydrolase, family 46	0.000289631193489	0.0015230976353	0.00123346644181
+UniRef50_P30844	Sensor protein BasS	0.0031343595362	0.00104332382149	-0.00209103571471
+UniRef50_A4WYB5		0.000178145644131	0.00028437823696	0.000106232592829
+UniRef50_A4WYB3		7.25298054809e-05	0.00016024142513	8.77116196491e-05
+UniRef50_V5LN28		9.26659148588e-05	5.29706391776e-05	-3.96952756812e-05
+UniRef50_M7D8T2	Glycosyltransferase	0.00516387043397	0.00271493269726	-0.00244893773671
+UniRef50_A3SEI8	Xanthine dehydrogenase accessory factor	6.69667893256e-06	1.00128444828e-05	3.31616555024e-06
+UniRef50_J3LXD1		0.000191701699445	6.65242966635e-05	-0.000125177402782
+UniRef50_K2BFC0		0.00262159904976	0.000242122003781	-0.00237947704598
+UniRef50_Q7D3Z9	Dihydrodipicolinate synthase	0.00486270449281	0.00105972596199	-0.00380297853082
+UniRef50_A7FAX6		0.00019525137354	0.0140023685856	0.0138071172121
+UniRef50_A7FAX1		0.000310899245916	0.00945459576041	0.00914369651449
+UniRef50_A7FAX3		0.000226067454316	0.0114478702269	0.0112218027726
+UniRef50_A4XW77	HAD superfamily hydrolase, subfamily IB 	0.00145377468432	0.00154078280971	8.700812539e-05
+UniRef50_E3D438		0.000272405814481	0.00140473606342	0.00113233024894
+UniRef50_A7FAX8		0.000456400243355	0.0138130063006	0.0133566060572
+UniRef50_I0ENV0	Outer membrane protein HofB	0.00020860147467	0.00353483855602	0.00332623708135
+UniRef50_B1W4V9	NADH quinone oxidoreductase subunit B 2	8.21349711922e-06	0.000230421867322	0.000222208370203
+UniRef50_Q8DTF8		0.00535184531923	0.00140477849407	-0.00394706682516
+UniRef50_Q8DTF4		0.00372171021	0.00134916433814	-0.00237254587186
+UniRef50_UPI000360F750	hypothetical protein	0.000178871073942	3.30951658892e-05	-0.000145775908053
+UniRef50_N1SEI4	EamA like transporter family protein	0.000333075872518	0.00146438035634	0.00113130448382
+UniRef50_B9KSS7		0.00120220789427	0.000604744106207	-0.000597463788063
+UniRef50_C0Z6P5	1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	8.05338730149e-06	4.3383277394e-05	3.53298900925e-05
+UniRef50_Q54UH8	D 3 phosphoglycerate dehydrogenase	2.63276724327e-05	2.87333893377e-05	2.405716905e-06
+UniRef50_P71349	L serine dehydratase	0.000687785283856	0.0132816241494	0.0125938388655
+UniRef50_V6KSS1		1.91443938763e-06	9.8439891594e-06	7.92954977177e-06
+UniRef50_D4GZ01	DNA gyrase subunit B	2.2650161579e-05	3.37753445576e-05	1.11251829786e-05
+UniRef50_D5HC82	DNA repair protein radA	0.0222028500405	0.00820791815277	-0.0139949318877
+UniRef50_Q9RTR7	Glucose 1 phosphate adenylyltransferase	0.000409671666293	0.0457672966502	0.0453576249839
+UniRef50_Q3IY01	Conserved hypoothetical protein	0.00132516083155	0.000600644146164	-0.000724516685386
+UniRef50_P19930	Hydrogenase 1 maturation protease	0.00446969307827	0.000646678916486	-0.00382301416178
+UniRef50_B5GZL5		8.37078597283e-06	0.000116362539126	0.000107991753153
+UniRef50_F0YEL0		9.51325576245e-06	1.51416281297e-07	-9.36183948115e-06
+UniRef50_O30085	Copper exporting P type ATPase B	4.46295039356e-06	1.88440613622e-05	1.43811109686e-05
+UniRef50_UPI0003A50805	translation initiation factor IF 3	7.41723003533e-06	6.25720752178e-05	5.51548451825e-05
+UniRef50_UPI00019B35BE	hypothetical protein	6.79436043077e-06	1.27510649106e-05	5.95670447983e-06
+UniRef50_P77455	Bifunctional protein PaaZ	0.00332990917147	0.0338927958422	0.0305628866707
+UniRef50_UPI0003814B4D	hypothetical protein	2.31530886873e-05	5.7301398899e-05	3.41483102117e-05
+UniRef50_A6LQ13	Peptidase U32	0.000737336957692	0.00124993852289	0.000512601565198
+UniRef50_S1MU41		3.54840489248e-06	5.93640071111e-06	2.38799581863e-06
+UniRef50_UPI00036AC04F	hypothetical protein	4.56719885131e-05	2.35673394042e-06	-4.33152545727e-05
+UniRef50_P57864		0.00389180523647	0.00364407093129	-0.00024773430518
+UniRef50_UPI000361AD9C	hypothetical protein	1.24232143742e-05	2.31865467043e-06	-1.01045597038e-05
+UniRef50_UPI000469CEAC	ribonucleotide diphosphate reductase subunit alpha, partial	1.39828623589e-05	0.00945971654909	0.00944573368673
+UniRef50_Q3AMY6	Ribonuclease PH	1.3723587523e-05	1.9527613959e-05	5.804026436e-06
+UniRef50_W7ZFA7	Serine threonine phosphatase	4.73918615432e-06	3.18380167086e-05	2.70988305543e-05
+UniRef50_UPI00046D13E9	hypothetical protein	4.02090943482e-06	9.95106597632e-06	5.9301565415e-06
+UniRef50_Q9HTD7	Aspartate ammonia lyase	0.000844567942513	0.0050981405566	0.00425357261409
+UniRef50_P9WLT0		0.000123765897988	0.00508568826974	0.00496192237175
+UniRef50_M4QWY4	Acyl CoA dehydrogenase	0.000127672825993	0.00787025258794	0.00774257976195
+UniRef50_Q8NXN8	MW0677 protein	0.0102793538839	0.00155810868787	-0.00872124519603
+UniRef50_P76613		0.00334073913898	0.000136510033226	-0.00320422910575
+UniRef50_Q89WR0	Exodeoxyribonuclease III	0.0127234329472	0.00265585597345	-0.0100675769738
+UniRef50_Q8DUL3		0.00613286616598	0.00581903031313	-0.00031383585285
+UniRef50_A6LPZ2	Binding protein dependent transport systems inner membrane component	0.000884366006203	0.00190942752185	0.00102506151565
+UniRef50_Q9RYC4	Methyltransferase, putative	0.000771546010255	0.0571315857243	0.056360039714
+UniRef50_A9G3I5	Malate dehydrogenase  (NADP(+))	0.000144475269083	0.0669948974642	0.0668504221951
+UniRef50_Q3JPF1		2.64991597272e-05	0.000116879962485	9.03808027578e-05
+UniRef50_UPI0001B4442A	hypothetical protein	4.76108207396e-05	8.39508034304e-05	3.63399826908e-05
+UniRef50_A6TDP3	Isopentenyl diphosphate Delta isomerase	0.000622229651954	0.000324523851863	-0.000297705800091
+UniRef50_Q04K89	Phosphopantothenate  cysteine ligase	0.00451833879012	0.00171854821777	-0.00279979057235
+UniRef50_UPI0004778BF4	nickel transporter permease NikB	4.62725449699e-05	8.62853903544e-05	4.00128453845e-05
+UniRef50_B0KRB8	Ribosomal RNA small subunit methyltransferase G	7.82948668254e-05	2.84965044919e-05	-4.97983623335e-05
+UniRef50_B1QWY3		0.000525629594426	0.00155481219115	0.00102918259672
+UniRef50_P65631	Membrane protein insertase YidC 1	0.00418470916251	0.00223976116242	-0.00194494800009
+UniRef50_UPI0003B43DEF	leucyl phenylalanyl tRNA  protein transferase	1.00792661474e-05	3.34040703286e-05	2.33248041812e-05
+UniRef50_B2UZ33	Phosphodiesterase, family	0.000577784676811	0.000742157978635	0.000164373301824
+UniRef50_Q8XBY4	Sensor kinase CusS	0.00248220948872	0.0012502049496	-0.00123200453912
+UniRef50_E9AEM8	Proteophosphoglycan ppg4	1.21174796688e-05	2.50735879183e-05	1.29561082495e-05
+UniRef50_W8EKH5	Fatty acid  CoA ligase	8.89597774156e-05	0.00595848275364	0.00586952297622
+UniRef50_UPI00036DBE7B	hypothetical protein	6.57903534864e-06	0.000292342138515	0.000285763103166
+UniRef50_D8JKA9	Homoserine dehydrogenase	0.000382233208592	0.00499735234705	0.00461511913846
+UniRef50_UPI000367DF3F	hypothetical protein	2.48405683576e-05	6.87286022487e-05	4.38880338911e-05
+UniRef50_UPI0003808AE5	hypothetical protein	8.08324761341e-06	2.29618747517e-05	1.48786271383e-05
+UniRef50_UPI0003B5E6AE	peptidase M24	3.89856407794e-06	1.50807185631e-05	1.11821544852e-05
+UniRef50_UPI0003B421A5	heme ABC transporter ATP binding protein	5.81287411282e-05	5.79419619714e-05	-1.867791568e-07
+UniRef50_UPI0003753359	hypothetical protein	1.61072015283e-05	3.42710038439e-06	-1.26801011439e-05
+UniRef50_P0AB04		0.00194950393666	0.0013505102435	-0.00059899369316
+UniRef50_UPI0002A4C202		5.55525589308e-05	2.72340887632e-05	-2.83184701676e-05
+UniRef50_UPI00036E9616	alpha L fucosidase	1.54419626849e-05	4.72784427132e-05	3.18364800283e-05
+UniRef50_A0A017Y7E3		2.9767910727e-05	4.46189247071e-05	1.48510139801e-05
+UniRef50_Q97FA7		0.000297920703939	0.00212965617169	0.00183173546775
+UniRef50_A6LTV0	Fibronectin, type III domain protein	0.000232107329756	0.000968568529317	0.000736461199561
+UniRef50_UPI000463D2BB	oxidoreductase	5.61898751659e-06	1.72615614073e-05	1.16425738907e-05
+UniRef50_UPI000219711C	branched chain amino acid transporter II carrier protein	1.58941721423e-05	1.26151252564e-05	-3.2790468859e-06
+UniRef50_K0S2S0		2.86793669097e-05	0.000499802341001	0.000471122974091
+UniRef50_Q4L709	Porphobilinogen deaminase	0.00787394947315	0.00123977484846	-0.00663417462469
+UniRef50_P45174	Sodium proline symporter	0.00172509854048	0.0132769626526	0.0115518641121
+UniRef50_UPI0004294A5C	hypothetical protein	2.3854643408e-05	0.000161567506456	0.000137712863048
+UniRef50_UPI0004730D89	hypothetical protein	5.97964782623e-05	5.05455149912e-06	-5.47419267632e-05
+UniRef50_K8Z2D7		1.3812899602e-05	2.46549338392e-05	1.08420342372e-05
+UniRef50_P67446	Xanthine permease XanQ	0.00379919491288	0.00221854695027	-0.00158064796261
+UniRef50_F3L0R4	UPF0246 protein YaaA 	1.34689232179e-05	1.58400623849e-05	2.371139167e-06
+UniRef50_Q8XKT3	DegV domain containing protein CPE1310	0.000454116200659	0.000890132602642	0.000436016401983
+UniRef50_UPI0003B581A8	taurine  pyruvate aminotransferase	4.74853506028e-05	1.65980319741e-05	-3.08873186287e-05
+UniRef50_UPI0004766D5E	malyl CoA thiolesterase	0.00010122795894	4.47789761493e-05	-5.64489827907e-05
+UniRef50_E3D1E7		0.000285654843523	0.00126361117974	0.000977956336217
+UniRef50_UPI0004692352	peptide ABC transporter permease	5.40927499806e-06	2.43665928334e-05	1.89573178353e-05
+UniRef50_W3PE26	DnaK domain protein 	9.47651841946e-05	6.37123709624e-05	-3.10528132322e-05
+UniRef50_UPI000371AEC6	hypothetical protein, partial	3.70251797835e-05	2.14913216992e-05	-1.55338580843e-05
+UniRef50_UPI000441DE45	PREDICTED	1.2652266455e-05	1.60395922604e-06	-1.1048307229e-05
+UniRef50_M1MSX4	Phage infection protein Pip	0.000482315278466	0.00128096311338	0.000798647834914
+UniRef50_G7L1M9	50S ribosomal protein L22	8.40541386484e-06	3.14240493409e-05	2.30186354761e-05
+UniRef50_A8G2K7		0.000566697337317	0.00294743438332	0.002380737046
+UniRef50_V9U122		0.00037836467757	0.000260790930809	-0.000117573746761
+UniRef50_Q81WF1	Carbamoyl phosphate synthase small chain	0.000336544305143	0.00244579174399	0.00210924743885
+UniRef50_Q64QH6		1.77190352826e-06	3.10012895916e-06	1.3282254309e-06
+UniRef50_UPI0003722F98	hypothetical protein	3.11076713415e-06	5.97056521558e-06	2.85979808143e-06
+UniRef50_V5VGJ6	Membrane fusion protein	8.51472155251e-05	0.00611497234421	0.00602982512868
+UniRef50_R4REL3	Peptidase family M48 family	0.000608546229884	0.000412069821193	-0.000196476408691
+UniRef50_UPI0003B6D53E	MarR family transcriptional regulator, partial	1.19401063788e-05	4.26634331797e-05	3.07233268009e-05
+UniRef50_UPI000371A422	hypothetical protein	0.000149729190961	3.76661214999e-05	-0.000112063069461
+UniRef50_A6LRF3	Transcriptional regulator, RpiR family	0.000316507820176	0.0015608070061	0.00124429918592
+UniRef50_A1TJ24	Potassium transporting ATPase A chain	0.00814353413742	0.0122663514283	0.00412281729088
+UniRef50_B9DNM2	Putative pyruvate, phosphate dikinase regulatory protein	0.0224430959464	0.0040564575784	-0.018386638368
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_test_col_3_max.tabular	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,10 @@
+UniRef50_P19529	Replication initiation protein	0.961640316151	0.326879196825	-0.634761119326
+UniRef50_Q5HJZ6	Plasmid recombination enzyme type 3	0.740800531361	0.244512495215	-0.496288036146
+UniRef50_P02983	Tetracycline resistance protein	0.573449640169	0.199788693154	-0.373660947015
+UniRef50_Q93GF3	Rep	0.410004761703	0.131513750747	-0.278491010956
+UniRef50_V6QG63	Integrase	0.340495265028	0.114492453346	-0.226002811682
+UniRef50_W1W6K4		0.278232683798	0.0628932216423	-0.215339462156
+UniRef50_D4FM51	Plasmid recombination enzyme	0.240102320308	0.0660335100375	-0.17406881027
+UniRef50_Z6ILY0		0.226654902022	0.0411737778722	-0.18548112415
+UniRef50_F0P516	Replication initiation protein, truncated	0.219429720121	0.0852047566562	-0.134224963465
+UniRef50_Q8CU99		0.194123181874	0.0585038462355	-0.135619335638
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_test_col_3_min.tabular	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,10 @@
+UniRef50_D3E2A1	Adhesin like protein	9.04497122279e-08	2.28645810921e-07	1.38196098693e-07
+UniRef50_A0A011N6I9		1.51918001834e-07	4.01161738419e-07	2.49243736585e-07
+UniRef50_UPI0004446091	PREDICTED	1.55078193737e-07	2.42316800842e-07	8.7238607105e-08
+UniRef50_W7A2A5		1.56660464008e-07	3.52580982773e-07	1.95920518765e-07
+UniRef50_UPI000349BE1A	hypothetical protein	1.75130162644e-07	1.32946712678e-06	1.15433696414e-06
+UniRef50_UPI0001BF6B99	90S preribosome component RRP12	1.84742307319e-07	4.34052266133e-06	4.15578035401e-06
+UniRef50_UPI000443E2D6	PREDICTED	1.90475579618e-07	3.42990413301e-07	1.52514833683e-07
+UniRef50_R4LEH4	Yd repeat containing protein	1.97864528112e-07	3.11608997065e-07	1.13744468953e-07
+UniRef50_UPI000378A614	hypothetical protein	2.00347906511e-07	1.1435229597e-06	9.43175053189e-07
+UniRef50_X2D8N8	CCR4 NOT transcription complex subunit 1 like protein	2.073948527e-07	1.64110422442e-05	1.62036473915e-05
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_test_col_4_max.tabular	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,10 @@
+UniRef50_Q9R3J0	Transposase, putative	0.00225014042765	1.10930408506	1.10705394463
+UniRef50_F0RKJ6	Transposase IS4 family protein	0.00427372358825	0.871496431206	0.867222707618
+UniRef50_UPI0000164CF6	hypothetical protein DR_1761	0.000366361200249	0.367022323052	0.366655961852
+UniRef50_Q9RYQ5	Resolvase, putative	0.000674082122953	0.361753596131	0.361079514008
+UniRef50_P19529	Replication initiation protein	0.961640316151	0.326879196825	-0.634761119326
+UniRef50_F0RR64		0.000846315859607	0.301362181458	0.300515865598
+UniRef50_Q9RV33		0.000368878816464	0.284296397807	0.283927518991
+UniRef50_Q5HJZ6	Plasmid recombination enzyme type 3	0.740800531361	0.244512495215	-0.496288036146
+UniRef50_UPI0000164CD9	putative transposase	0.00104009031306	0.224490351769	0.223450261456
+UniRef50_Q9RYR2	Extracellular solute binding protein, family 5	0.00106094764695	0.224438113631	0.223377165984
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output_test_col_4_min.tabular	Fri Apr 15 07:59:28 2016 -0400
@@ -0,0 +1,10 @@
+UniRef50_F0YEL0		9.51325576245e-06	1.51416281297e-07	-9.36183948115e-06
+UniRef50_A0A058ZAA4		6.36876267111e-06	1.95527719833e-07	-6.17323495128e-06
+UniRef50_W4XFJ9		6.76030182537e-07	2.06555424425e-07	-4.69474758112e-07
+UniRef50_D3E2A1	Adhesin like protein	9.04497122279e-08	2.28645810921e-07	1.38196098693e-07
+UniRef50_UPI0004446091	PREDICTED	1.55078193737e-07	2.42316800842e-07	8.7238607105e-08
+UniRef50_UPI00036AFA97	hypothetical protein	1.94826634309e-05	2.65435474198e-07	-1.92172279567e-05
+UniRef50_UPI0003C3A0E4	PREDICTED	1.06134224488e-06	2.68380106598e-07	-7.92962138282e-07
+UniRef50_A0A024JLS1	Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 	1.04926977865e-06	2.78766826282e-07	-7.70502952368e-07
+UniRef50_UPI00031ABCD6	hypothetical protein	2.0828158654e-06	2.92321189728e-07	-1.79049467567e-06
+UniRef50_F0VBH0		1.74170711526e-05	3.07747069636e-07	-1.7109324083e-05