changeset 0:5118d839acae draft default tip

planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/plot_generic_x_y_plot commit e4da8b5a999456b2b6dabdf6b8f3bfea1eba5504-dirty
author bebatut
date Mon, 18 Apr 2016 11:11:02 -0400
parents
children
files plot_generic_x_y_plot.R plot_generic_x_y_plot.xml static/images/output.png test-data/input_file.txt test-data/output_test.pdf tool_dependencies.xml
diffstat 6 files changed, 45153 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plot_generic_x_y_plot.R	Mon Apr 18 11:11:02 2016 -0400
@@ -0,0 +1,86 @@
+library('getopt')
+
+option_specification = matrix(c(
+  'input_file', 'a', 2, 'character',
+  'output_pdf_file', 'b', 2, 'character',
+  'output_png_file', 'c', 2, 'character',
+  'output_svg_file', 'd', 2, 'character',
+  'x_column_id', 'e', 2, 'integer',
+  'y_column_id', 'f', 2, 'integer',
+  'xlog', 'g', 2, 'logical',
+  'ylog', 'h', 2, 'logical',
+  'xlab', 'i', 2, 'character',
+  'ylab', 'j', 2, 'character',
+  'col', 'k', 2, 'character',
+  'pch', 'l', 2, 'integer',
+  'lim', 'm', 2, 'logical',
+  'abline', 'n', 2, 'logical',
+  'bottom_margin', 'o', 2, 'integer',
+  'left_margin', 'p', 2, 'integer',
+  'top_margin', 'q', 2, 'integer',
+  'right_margin', 'r', 2, 'integer',
+  'header','s',2,'logical'
+), byrow=TRUE, ncol=4);
+
+options = getopt(option_specification);
+
+header = TRUE
+if(!is.null(options$header)) header = options$header
+
+data = read.table(options$input_file, sep = '\t', h = header)
+
+x_column_id = 2
+if(!is.null(options$x_column_id)) x_column_id = options$x_column_id
+x_axis = data[,x_column_id]
+
+y_column_id = 3
+if(!is.null(options$y_column_id)) y_column_id = options$y_column_id
+y_axis = data[,y_column_id]
+
+xlim = c(min(x_axis),max(x_axis))
+ylim = c(min(y_axis),max(y_axis))
+if(!is.null(options$lim) && options$lim){
+  xlim = c(min(xlim,ylim), max(xlim,ylim))
+  ylim = xlim
+}
+
+
+xlab = ""
+if(!is.null(options$xlab)) xlab = options$xlab
+ylab = ""
+if(!is.null(options$ylab)) ylab = options$ylab
+
+col = 'grey25'
+if(!is.null(options$col)) col = options$col
+
+pch = 21
+if(!is.null(options$pch)) pch = options$pch
+
+log = ""
+if(!is.null(options$xlog) && options$xlog) log = paste(log,"x",sep = '')
+if(!is.null(options$ylog) && options$ylog) log = paste(log,"y",sep = '')
+
+margin = c(5,5,1,1)
+if(!is.null(options$bottom_margin)) margin[1] = options$bottom_margin
+if(!is.null(options$left_margin)) margin[2] = options$left_margin
+if(!is.null(options$top_margin)) margin[3] = options$top_margin
+if(!is.null(options$right_margin)) margin[4] = options$right_margin
+
+plot_generic_x_y_plot <- function(){
+    par(mar=margin)
+    plot(x_axis, y_axis, xlab = xlab, ylab = ylab, 
+      col = col, log = log, xlim = xlim, ylim = ylim, pch = pch)
+    if(!is.null(options$abline) && options$abline) abline(a = 0, b = 1, col = 'grey50')
+}
+
+if(!is.null(options$output_pdf_file)){
+    pdf(options$output_pdf_file)
+    plot_generic_x_y_plot()
+    dev.off()
+}
+
+if(!is.null(options$output_svg_file)){
+    svg(options$output_svg_file)
+    plot_generic_x_y_plot()
+    dev.off()
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plot_generic_x_y_plot.xml	Mon Apr 18 11:11:02 2016 -0400
@@ -0,0 +1,125 @@
+<tool id="plot_generic_x_y_plot" name="Plot generic X-Y plot" version="0.1.0">
+    <description>with R</description>
+
+    <requirements>
+        <requirement type="package" version="3.2.1">R</requirement>
+        <requirement type="package" version="1.20.0">r-getopt</requirement>
+    </requirements>
+
+    <stdio>
+        <exit_code range="1:" />
+        <exit_code range=":-1" />
+    </stdio>
+
+    <version_command></version_command>
+
+    <command><![CDATA[
+        Rscript $__tool_directory__/plot_generic_x_y_plot.R
+            --input_file $input_file
+            --header $header
+
+            #if str($output_format)=="pdf"
+                --output_pdf_file $output_pdf_file
+            #else
+                --output_svg_file $output_svg_file
+            #end if
+
+            --x_column_id $x_column_id
+            --y_column_id $y_column_id
+            --xlog $xlog
+            --ylog $ylog
+            --xlab "$xlab"
+            --ylab "$ylab"
+            --col $color
+            --lim $lim
+            --abline $abline
+            --bottom_margin $bottom_margin
+            --left_margin $left_margin
+            --top_margin $top_margin
+            --right_margin $right_margin
+            --pch $pch
+    ]]></command>
+
+    <inputs>
+        <param name="input_file" type="data" format="tabular,tsv,csv" label="Input file" help="File in tabular format with tab-separated columns and header in first line (--input_file)"/>
+
+        <param name="header" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Header in first line?" help="(--header)"/>
+
+        <param name="output_format" label="Format for output image" type="select" help="">
+            <option value="pdf" selected="True">PDF</option>
+            <option value="svg">SVG</option>
+        </param>
+
+        <param name="x_column_id" type="data_column" data_ref="input_file" label="Column containing data for X axis" multiple="false" numerical="true" help="--x_column_id)"/>
+        <param name="y_column_id" type="data_column" data_ref="input_file" label="Column containing data for Y axis" multiple="false" numerical="true" help="--y_column_id)"/>
+
+        <param name="xlog" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Scale with log for X axis?" help="(--xlog)"/>
+        <param name="ylog" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Scale with log for Y axis?" help="(--ylog)"/>
+
+        <param name="xlab" type="text" value="" label="Label for X axis" help="(--xlab)"/>
+        <param name="ylab" type="text" value="" label="Label for Y axis" help="(--ylab)"/>
+
+        <param name="color" label="Color for the points" type="text" value= "grey25" help="R color (--col)"/>
+        <param name="pch" type="integer" value="21" label="Point type" help="(--pch)"/>
+
+        <param name="lim" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Use same limits for both axis?" help="(--lim)"/>
+        <param name="abline" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Add a line for x = y?" help="(--abline)"/>
+
+        <param name="bottom_margin" type="integer" value="5" label="Bottom margin" help="(--bottom_margin)"/>
+        <param name="left_margin" type="integer" value="5" label="Left margin" help="(--left_margin)"/>
+        <param name="top_margin" type="integer" value="1" label="Top margin" help="(--top_margin)"/>
+        <param name="right_margin" type="integer" value="1" label="Right margin" help="(--right_margin)"/>
+    </inputs>
+
+    <outputs>
+        <data name="output_pdf_file" format="pdf"
+            label="${tool.name} on ${on_string}: PDF X-Y plot">
+            <filter>output_format=="pdf"</filter>
+        </data>
+        <data name="output_png_file" format="png"
+            label="${tool.name} on ${on_string}: PNG X-Y plot">
+            <filter>output_format=="png"</filter>
+        </data>
+        <data name="output_svg_file" format="svg"
+            label="${tool.name} on ${on_string}: SVG X-Y plot">
+            <filter>output_format=="svg"</filter>
+        </data>
+    </outputs>
+
+    <tests>
+        <test>
+            <param name="input_file" value="input_file.txt" />
+            <param name="header" value="FALSE" />
+            <param name="output_format" value="pdf" />    
+            <param name="x_column_id" value="2" />
+            <param name="y_column_id" value="3" />
+            <param name="xlog" value="FALSE" />
+            <param name="ylog" value="FALSE" />
+            <param name="xlab" value="" />
+            <param name="ylab" value="" />
+            <param name="color" value= "grey25" />
+            <param name="pch" value="21" />
+            <param name="lim" value="FALSE" />
+            <param name="abline" value="FALSE" />
+            <param name="bottom_margin" value="5" />
+            <param name="left_margin" value="5" />
+            <param name="top_margin" value="1" />
+            <param name="right_margin" value="1" />
+            <output name="output_pdf_file" file="output_file.pdf" />
+        </test>
+    </tests>
+
+    <help><![CDATA[
+**What it does**
+
+This tool plot a generic X-Y plot:
+
+.. image:: $PATH_TO_IMAGES/output.png
+   :scale: 50 %
+
+This tool relies on R's plot function. The input file must be a tabular file with at least two data columns. The output image is customizable (margin, legend positions, ...) and can be export in different format. 
+    ]]></help>
+
+    <citations>
+    </citations>
+</tool>
\ No newline at end of file
Binary file static/images/output.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/input_file.txt	Mon Apr 18 11:11:02 2016 -0400
@@ -0,0 +1,44933 @@
+Peptidoglycan glycosyltransferase	0.000161727	0.0118886
+4Fe 4S ferredoxin iron sulfur binding domain containing protein	0.000868638	0.000531762
+glutamine synthetase	2.69312e-06	5.73862e-06
+PREDICTED	2.60733e-06	6.24102e-06
+CheA2	0.000150322	0.000790528
+Lipid A export ATP binding permease protein MsbA	1.11264e-05	1.07255e-05
+Putrescine transport ATP binding protein PotG	0.00246313	0.000669647
+UniRef50_T1T0E7	0.000100801	7.45857e-05
+UniRef50_B1ES30	4.14647e-05	3.75108e-05
+UniRef50_U5FV07	6.21513e-06	8.56822e-06
+hypothetical protein	4.43079e-05	3.94018e-05
+UniRef50_E3EZF3	3.37315e-05	3.03424e-05
+MULTISPECIES	0.000310186	0.000273077
+Xanthine phosphoribosyltransferase	2.9417e-05	4.25664e-05
+osmotically inducible protein C	2.85602e-05	7.28132e-05
+hypothetical protein	1.23194e-05	1.08152e-05
+UniRef50_V6QDM9	0.00783736	0.000329043
+hypothetical protein	7.99295e-06	2.60025e-06
+hypothetical protein	1.59535e-05	1.05228e-05
+ATP synthase subunit c	0.00179136	0.00191803
+Signal transduction histidine kinase, nitrogen specific, NtrB	0.000503327	0.000572126
+Ribosomal RNA large subunit methyltransferase E	8.84364e-05	2.10681e-05
+hypothetical protein	1.08525e-05	2.65469e-06
+Pyridoxal phosphate dependent protein	4.65423e-06	3.77816e-06
+ppGpp synthetase	7.04822e-06	3.22676e-06
+tRNA  methyltransferase TrmJ	0.00189866	0.000149062
+Aminomethyltransferase	2.33117e-05	1.51446e-05
+UniRef50_G3A3C4	2.16795e-05	2.79743e-05
+Cation efflux family protein	0.0196844	0.0036985
+Cysteine  tRNA ligase	1.30529e-05	6.16661e-06
+GTPase Der	0.0197074	0.00571616
+transcriptional regulator, partial	7.01959e-06	5.19979e-06
+M18 family aminopeptidase	0.000248146	0.00099988
+hypothetical protein	1.06502e-05	1.04434e-05
+UniRef50_Q8CTD2	0.00357327	0.000428378
+UniRef50_N6UZ26	0.000164589	8.81973e-05
+UniRef50_Q8CTD8	0.00416514	0.000892528
+Aspartate racemase	0.00375174	0.00128855
+pH adaptation potassium efflux system a	7.69331e-06	4.21598e-06
+Putative secreted protein	6.06564e-07	4.76785e-06
+UniRef50_P0AFQ9	0.00344033	0.00044277
+MULTISPECIES	1.06444e-05	9.05003e-06
+UniRef50_Q49VL4	0.00854163	0.00348391
+Exotoxin 3	0.0119531	0.0018639
+UniRef50_Q49VL2	0.0102927	0.00297603
+UniRef50_U4W1Q6	1.47561e-05	2.55106e-05
+UniRef50_A0A023Y807	3.98755e-06	2.70598e-06
+RNA 2 phosphotransferase	0.00361245	0.000242662
+Metallophosphoesterase	0.00240274	0.000599791
+multidrug transporter	5.07658e-06	1.06808e-05
+UniRef50_B0VT73	0.000165395	0.00161481
+Periplasmic sensor signal transduction histidine kinase	0.00203538	0.000220771
+hypothetical protein	4.99047e-06	6.95463e-05
+UniRef50_C6SR58	0.00204608	0.000458828
+hypothetical protein	3.97248e-05	1.7195e-05
+hypothetical protein	1.15135e-05	0.000280398
+hypothetical protein	4.71096e-05	0.000910536
+Thiamine biosynthesis protein ApbE, putative	0.00439006	0.000746352
+quinone oxidoreductase	5.99892e-06	5.14167e-06
+UniRef50_Q1IC36	3.434e-05	1.54274e-05
+Methionine  tRNA ligase	6.10882e-06	6.27787e-06
+hypothetical protein	6.78396e-05	8.38177e-05
+UniRef50_J3K6Q4	5.60575e-05	2.36951e-05
+Membrane protein	0.000632297	5.37312e-05
+UniRef50_V4SQT0	0.000106089	0.000203256
+hypothetical protein	1.47649e-05	1.25305e-05
+UniRef50_Q3JR57	7.38026e-05	4.84538e-05
+UPF0336 protein PPA1896	0.000237006	0.0164004
+hypothetical protein	0.000209179	4.14018e-05
+ABC transporter permease	4.15875e-06	2.7588e-05
+UniRef50_P55573	0.000276561	0.00266001
+Inner membrane protein YqiK	0.00313998	0.000344059
+hypothetical protein	1.1061e-05	3.41183e-06
+Trehalose synthase amylase TreS	0.000159596	0.0214083
+Protein translocase subunit SecA	4.0402e-05	0.019036
+Methionine aminotransferase	0.00115406	8.41412e-05
+UniRef50_Q8CSN4	0.0124256	0.00204947
+UniRef50_R7PW99	0.00157791	0.000141616
+UniRef50_B0SVK0	4.60143e-05	4.22004e-05
+hypothetical protein, partial	5.51487e-05	2.10073e-05
+Oxidoreductase, putative	0.00356744	0.00339111
+UniRef50_P76352	0.00336489	0.000244252
+glycosyl hydrolase family 20	7.73428e-07	6.34216e-07
+Cytochrome bd ubiquinol oxidase subunit 1	2.00796e-05	0.000674788
+UniRef50_U9N986	0.00013846	0.000134408
+UniRef50_P76359	0.00161471	0.000930742
+Cobalamin synthase	0.00320287	0.000259183
+MULTISPECIES	8.96085e-06	3.59256e-05
+Transglycosylase protein	0.00240955	0.00270089
+UniRef50_I1EV25	0.000214541	0.00108305
+NADH quinone oxidoreductase subunit E	0.00026302	4.7853e-05
+Deoxyribonuclease I	0.00354786	0.00124434
+PREDICTED	9.94772e-06	9.17551e-06
+Queuine tRNA ribosyltransferase	4.24308e-06	0.0306566
+GTPase Era	1.52478e-05	4.93832e-05
+UniRef50_V7F7P6	0.000156744	5.53965e-06
+Hemimethylated DNA binding region protein	0.000739205	0.00448924
+Phosphonate metabolism	0.00053413	0.000182694
+hypothetical protein	6.69458e-06	8.5178e-06
+2 isopropylmalate synthase	2.87602e-06	5.12066e-06
+RNA polymerase sigma factor	0.000610536	0.000183609
+Sensor protein KdpD	0.00349212	0.000618002
+Flagellar fliL protein	0.00519958	0.000501001
+DNA directed RNA polymerase subunit beta	9.43422e-06	3.31256e-06
+4 hydroxy tetrahydrodipicolinate synthase	0.0154784	0.00176331
+DNA recombination protein RmuC	0.000124747	2.31786e-05
+4 hydroxy tetrahydrodipicolinate synthase	0.00444081	0.00242711
+leucine isoleucine valine transporter ATP binding subunit	9.805e-06	0.000282141
+Short chain dehydrogenase family protein	0.0113608	0.00242449
+Dehydrogenase	0.000782454	0.002457
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	4.07583e-05	1.4076e-05
+Phosphoribosylformylglycinamidine synthase 1	1.219e-05	0.0162237
+hypothetical protein	1.96219e-05	6.56441e-06
+Inner membrane amino acid ABC transporter permease protein YhdY	0.0025227	0.000998358
+CCA adding enzyme	0.00571101	0.00178134
+UniRef50_D7WL32	0.000480267	0.00122573
+UniRef50_L1KE49	0.000750399	0.000579257
+UniRef50_Q45604	8.84878e-05	1.64897e-05
+Transcriptional regulator, AraC family	0.000420686	0.000668057
+UniRef50_R1HR76	7.31627e-05	9.1012e-05
+UniRef50_L0LIX3	2.80209e-05	2.18015e-05
+hypothetical protein	4.94689e-05	1.62656e-05
+UniRef50_W7SZX8	0.000101014	8.53133e-05
+hypothetical protein	1.81015e-05	0.000823696
+Predicted protein 	0.000261377	3.71113e-05
+Mannose 1 phosphate guanylyltransferase	0.000389367	9.74863e-05
+C4 dicarboxylate ABC transporter permease	0.0122031	0.000179217
+LysR family transcriptional regulator	4.36302e-06	8.53387e-06
+UniRef50_J7Q3B6	4.31526e-06	3.39519e-06
+FatD	0.0235515	0.00398719
+UniRef50_UPI0003C17D4A	1.92653e-06	3.07904e-06
+PREDICTED	1.29139e-05	2.12429e-06
+UniRef50_W8BRR9	1.44001e-05	1.12613e-06
+Alkyl hydroperoxide reductase subunit F	0.0312533	0.0168949
+Peptidase S54, rhomboid domain protein	0.000200327	0.00888859
+UniRef50_F3U2Q5	0.0116151	0.000454799
+UniRef50_N6U5R6	0.000882886	0.000196908
+UniRef50_R7D6K7	0.000119203	0.00149671
+UniRef50_F9EYP6	2.03213e-06	2.07805e-05
+UniRef50_X3WVZ6	4.9998e-05	6.80841e-05
+Na+ H+ antiporter	0.000383113	0.000643609
+Carbamoyl phosphate synthase small chain	0.0238849	0.00788578
+Exodeoxyribonuclease	0.000143009	0.000837342
+UniRef50_A0A059LAI1	1.85763e-05	5.26633e-05
+UniRef50_C3K6C6	0.000224444	6.29122e-05
+Truncated internaline	3.27702e-05	7.97734e-06
+NADH quinone oxidoreductase subunit C	2.1786e-05	4.66818e-05
+Imidazoleglycerol phosphate dehydratase	0.00459214	0.000748959
+UniRef50_Q54HJ6	2.09714e-06	1.92005e-07
+2 dehydropantoate 2 reductase	0.000110707	0.000565548
+UniRef50_Q9RSM5	0.000234801	0.0183317
+Glycerophosphoryl diester phosphodiesterase	0.0182431	0.00310546
+N acylglucosamine 2 epimerase	0.0025813	0.000101682
+Electron transfer flavoprotein alpha subunit	4.45712e-05	2.13877e-05
+Phenylacetate CoA ligase	0.00251124	0.000209006
+UniRef50_Q57JH6	0.000378251	8.19104e-05
+Uroporphyrinogen III synthase	0.0016036	0.000944784
+Periplasmic binding protein	2.28482e-05	2.27306e-05
+hypothetical protein	2.45857e-05	2.38747e-05
+proline iminopeptidase	5.3089e-06	5.41204e-06
+Outer membrane protein	4.02249e-05	0.0162758
+UniRef50_K1YE78	0.000315818	0.000280847
+Transcriptional regulator, GntR family	0.00289832	0.000120194
+Teichoic acid translocation permease protein	0.081904	0.0188375
+UniRef50_I7DPX0	5.34022e-05	9.39196e-05
+UniRef50_P52135	0.00540149	0.00216479
+Two component transcriptional regulator, LuxR family	0.0157945	0.000783213
+UniRef50_P52131	0.00558641	0.000495418
+Heavy metal translocating P type ATPase	0.00390621	0.00120459
+UniRef50_P52133	0.00254036	0.000132037
+UniRef50_A0A023S217	0.000139261	0.00148886
+UniRef50_P52139	0.00144066	7.46479e-05
+UniRef50_P52138	0.00177275	0.000609635
+Tpr protein	6.05058e-05	2.85314e-05
+Imidazoleglycerol phosphate dehydratase	0.000225636	2.33861e-05
+UniRef50_W8ZDB9	1.77568e-05	3.51556e-05
+Protein Ves	0.00119279	0.00150834
+hypothetical protein	9.88561e-06	2.90551e-05
+transposase	4.95504e-05	1.04286e-05
+50S ribosomal protein L13	0.00683811	0.000816103
+UniRef50_A6LYQ3	0.00011991	0.000334441
+hypothetical protein	6.18992e-05	2.21389e-05
+hypothetical protein	7.02815e-05	9.11853e-06
+UniRef50_A1B1I9	0.00882601	0.00106856
+histidine ammonia lyase, partial	1.13142e-05	2.05823e-05
+UniRef50_P96589	0.0176467	0.00361766
+Respiratory nitrate reductase alpha chain 	4.16063e-06	1.08144e-05
+6 pyruvoyl tetrahydropterin synthase	7.94058e-05	0.000700191
+L asparaginase I	0.000180616	0.00473894
+PE PGRS family protein	1.26166e-05	5.7842e-05
+UniRef50_V8H036	0.00019135	5.45815e-05
+Non canonical purine NTP pyrophosphatase	9.08484e-06	0.00289762
+hypothetical protein	4.46416e-06	3.6393e-06
+1 acyl sn glycerol 3 phosphate acyltransferase	0.000296519	0.00067027
+C4 dicarboxylate ABC transporter	6.49992e-06	9.17749e-06
+UniRef50_Q8CTD3	0.0049997	0.000261002
+Heptaprenyl diphosphate syntase component II	0.0172775	0.00331203
+N succinylarginine dihydrolase	8.08702e-06	1.51684e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.37906e-05	7.23962e-06
+hypothetical protein	1.28818e-05	5.09103e-05
+Putative phosphatase, C terminal domain of histone macro H2A1 like protein	1.71561e-05	0.000225866
+Formate  tetrahydrofolate ligase	0.000524874	0.00279412
+PREDICTED	0.000464855	1.08235e-05
+Urease accessory protein UreE	0.00423306	0.000324133
+Acetolactate synthase small subunit, mitochondrial	2.28706e-05	8.4119e-05
+hypothetical protein	1.66932e-05	1.40524e-06
+UniRef50_A6LSZ9	0.000378613	0.000746803
+UniRef50_A3W226	0.000437778	2.42196e-05
+UniRef50_A6LSZ0	0.000370285	0.000541364
+UniRef50_A3W220	2.56919e-05	1.11827e-05
+UniRef50_E6DRN3	0.000851749	0.000954478
+General stress protein 18	0.00751922	0.00295297
+UPF0759 protein YunF	8.64676e-06	1.87767e-05
+nitrate transporter	2.44746e-06	3.52581e-06
+UniRef50_J2MVR4	2.30396e-05	6.67717e-05
+Catalase, partial	0.000281479	0.000465884
+hypothetical protein	0.000165622	5.56094e-05
+HTH type transcriptional regulator EbgR	0.00199403	9.14306e-05
+Ribonuclease PH	1.7765e-05	0.00129773
+hypothetical protein	0.000127351	1.38615e-05
+UniRef50_L1NJN4	0.000163109	0.000333342
+Carbonate dehydratase	0.00106787	0.000957174
+hypothetical protein	8.05792e-06	6.85099e-06
+Transcriptional regulatory protein BasR	0.00547988	0.00120853
+iron ABC transporter permease	9.82385e-06	8.22608e-06
+TsaD Kae1 Qri7 protein	1.30888e-05	5.19859e-05
+PREDICTED	1.35502e-05	1.70531e-05
+Branched chain amino acid permease	4.62062e-05	1.06204e-05
+Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.000100663	0.00130836
+hypothetical protein	8.15209e-06	3.48766e-05
+UniRef50_P29013	0.00243658	0.000802983
+Aminodeoxychorismate synthase, subunit I	0.00149999	0.000168848
+Biosynthetic arginine decarboxylase	0.00340615	0.00277286
+hypothetical protein	1.32082e-05	1.68063e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.013527	0.00086439
+Sarcosine oxidase alpha subunit family	0.00386574	0.00070282
+inosine uridine preferring nucleoside hydrolase	5.17129e-06	1.25022e-05
+Oxidoreductase, FAD binding	0.00040982	0.00020707
+transcriptional regulator	1.17556e-05	2.0389e-05
+UniRef50_B9KPI4	0.00460954	0.00055907
+Phase 2 flagellin	0.00309695	0.000597369
+UniRef50_J9P338	0.000126052	0.000178799
+Thiazole synthase	0.00155828	0.00289951
+LigA	0.000296122	6.29913e-05
+Polyphosphate kinase	8.84189e-06	0.000267714
+Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.000361505	0.000907693
+Polysaccharide deacetylase	0.000141407	0.00125074
+UniRef50_M9VL85	0.000993902	0.00503894
+UniRef50_M2BGU5	0.00035803	0.00233084
+2 hydroxychromene 2 carboxylate isomerase	7.2367e-05	3.25925e-05
+DoxX family protein	7.89986e-05	1.77279e-05
+Glutamyl tRNA reductase	3.13395e-06	3.35761e-06
+UniRef50_A0A023NRD3	0.0100056	0.000679753
+Phosphoglycerol transferase I	0.00261383	0.000298719
+NADPH dehydrogenase	9.10704e-06	4.31272e-06
+UniRef50_A1T1H6	1.02328e-05	1.72778e-05
+UniRef50_R7UXT3	1.70187e-05	2.28395e-05
+UniRef50_A6LZQ9	0.000233714	0.000207835
+hypothetical protein	4.92559e-06	3.33627e-06
+UniRef50_A6LZQ3	0.00015581	0.000183896
+mutator mutT protein, partial	7.56398e-05	4.17541e-06
+L arabonate dehydratase	0.000142835	0.00602828
+Crp family transcriptional regulator	0.00731443	0.0021696
+PREDICTED	5.7002e-05	1.20006e-05
+LysM domain containing protein	0.0109021	0.00330191
+Carbamoyl phosphate synthase small chain	2.02137e-05	3.80819e-06
+Proline dehydrohenase like protein	0.00998422	0.00216252
+UniRef50_A4WXA3	0.0115107	0.00173211
+PREDICTED	3.36862e-06	0.000144534
+UniRef50_U2JRM5	0.000887628	3.77224e-05
+K H(+) antiporter NhaP2	0.0025219	0.000419051
+Putative ribosome biogenesis GTPase RsgA	0.0142708	0.00157133
+DNA polymerase IV	3.38215e-06	4.18546e-06
+Divalent metal cation transporter MntH	0.00501381	0.00289256
+Mannose 6 phosphate isomerase, class I	0.000618149	0.0029377
+SCCmec staphylococcal cassette region, isolate CMFT535	0.0119109	0.000689135
+UniRef50_R6CBZ9	0.000335997	0.000158072
+Malate synthase, glyoxysomal	1.24054e-05	0.0332441
+2 hydroxymuconic semialdehyde dehydrogenase	1.14228e-05	2.49709e-05
+Uridine kinase	0.00429036	0.00134516
+Spermidine putrescine import ATP binding protein PotA	0.000369627	0.000119035
+ABC type transport system involved in Fe S cluster assembly, ATPase component	1.32781e-05	8.97522e-05
+UniRef50_B7GXR8	0.000190499	0.00213392
+Gp34	0.0004778	7.1943e-05
+UniRef50_M7RDL9	5.18763e-05	6.76244e-05
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	6.13766e-05	0.019544
+DNA topoisomerase 1	0.00297134	0.000862193
+NADH ubiquinone oxidoreductase chain 6	6.15185e-05	4.31429e-06
+Glycerophosphoryl diester phosphodiesterase	9.54296e-05	0.00363837
+UniRef50_D8U6B8	3.70899e-06	6.55927e-06
+LacI family transcriptional regulator	7.98342e-05	1.3924e-05
+hypothetical protein	0.000171184	8.37491e-05
+Gas vesicle structural protein	0.000987656	0.00816226
+Holliday junction ATP dependent DNA helicase RuvA	2.01231e-05	5.13338e-06
+Phosphohydrolase	0.00644408	0.00382127
+Histidinol dehydrogenase	0.000170377	0.00118132
+DNA directed RNA polymerase subunit beta	0.000316144	0.000591288
+UniRef50_R7HT16	0.000823064	0.000730778
+HTH type transcriptional regulator HexR	0.000757579	0.000203941
+hypothetical protein, partial	9.93735e-05	1.75588e-05
+ABC type transporter, periplasmic subunit	0.00246295	0.000257929
+Kinase sensor component of a two component signal transduction system	0.00029518	0.0038625
+Methionine import ATP binding protein MetN	1.55291e-05	4.81714e-06
+hydrogenase maturation protease	7.66653e-05	0.000128014
+Transposase B	9.15363e-05	0.00917802
+3 mercaptopyruvate sulfurtransferase	0.000129111	0.000231524
+Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive	0.00111883	0.000512222
+UniRef50_G7ZT27	0.00586119	0.0054974
+3 methyl 2 oxobutanoate hydroxymethyltransferase 2, mitochondrial	2.24587e-05	7.39797e-06
+Ferritin	8.72613e-05	0.000893179
+Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.000261081	0.000564135
+NAD dependent epimerase dehydratase family protein	0.012111	0.0013944
+UniRef50_G7V8Z9	0.0115123	0.00477966
+UniRef50_B2TN34	0.000282744	0.000570369
+DNA repair protein RecN	0.0156837	0.0036596
+Putative membrane protein	1.34868e-05	6.1169e-05
+UvrABC system protein C	6.53916e-05	0.00163929
+Cystine transporter subunit	0.00136155	0.000148615
+Glutamate racemase	0.00645569	0.00116827
+Alpha glucosidase	0.000137201	0.00120976
+succinyl CoA synthetase subunit alpha	2.20369e-05	2.43353e-05
+ResB family protein	0.000169862	0.00270968
+PTS mannitol transporter subunit IIBC	2.07049e-05	2.68605e-05
+Cyclic di GMP phosphodiesterase YhjH	0.00348063	0.00151027
+Copper exporting P type ATPase A	6.76664e-06	1.07548e-05
+Glycine dehydrogenase , mitochondrial	0.000328672	0.00177429
+Acyltransferase 3 family	0.00765919	0.00125662
+DNA translocase FtsK	0.00399594	0.000321219
+Signal transduction protein TRAP	0.00627852	0.00287763
+GABA permease	0.00320255	0.000961134
+hypothetical protein	0.000121042	0.00128968
+deoxyguanosinetriphosphate triphosphohydrolase	6.7408e-05	4.72944e-05
+Two component transcriptional regulator, AraC family	0.000330072	0.000605623
+UniRef50_K6GMQ5	0.000489868	0.000141635
+UniRef50_UPI00032893EC	3.63669e-05	0.00014894
+UniRef50_W4JVY5	0.000175098	0.00016304
+UniRef50_F1UED2	0.000136071	0.00433805
+tRNA 2 selenouridine synthase	1.09418e-05	4.98005e-06
+UniRef50_A5UP39	0.00290005	7.99509e-05
+Amine oxidase	1.04506e-05	2.85029e-06
+UniRef50_A5UP37	0.000276615	0.000304355
+UniRef50_A5UP34	0.00172601	0.000294377
+Membrane protein insertase YidC	0.00646719	0.00108328
+Trigger factor	6.04187e-05	1.19489e-05
+Uracil phosphoribosyltransferase	4.94544e-05	0.00194628
+amino acid ABC transporter permease	4.8915e-06	1.55531e-05
+Calcineurin like phosphoesterase	0.00209089	0.000374769
+UniRef50_S1FKD9	0.000256824	0.000312568
+3 dehydroquinate synthase	0.00289184	0.000224417
+UniRef50_B7LJH6	3.57348e-05	2.48646e-05
+UniRef50_F9Y4V0	5.82954e-05	1.92745e-05
+UniRef50_I7JVN9	1.98305e-05	4.23788e-05
+Predicted protein	3.24643e-06	1.45301e-06
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000158194	0.000177758
+Os07g0187900 protein 	0.000153408	0.000202197
+UniRef50_A1B1L1	0.00460231	0.00085455
+Sulfate ABC transporter, ATPase subunit	0.000164706	0.000489381
+Excinuclease ABC subunit A	7.68269e-06	3.05715e-05
+Transposase like protein, IS1381 ISSpn7	4.46281e-05	4.33806e-05
+Transporter, major facilitator family protein	0.00017014	0.00384435
+Molybdopterin synthase sulfur carrier subunit	8.57968e-05	0.00412638
+Type II secretion system protein E	0.000469254	0.000334577
+UniRef50_B2UX09	0.000207746	0.0010351
+Haloacid dehalogenase, type II	0.000144029	0.000204521
+hypothetical protein	9.75546e-06	8.67525e-06
+Methylisocitrate lyase	0.00284357	0.00644806
+Flagellar basal body rod protein FlgG	0.00647865	0.00086692
+UniRef50_A9C1V3	9.03256e-06	1.55419e-05
+IS431mec, transposase	2.89437e-05	2.01504e-05
+dTDP glucose 4,6 dehydratase	5.26994e-06	4.14473e-06
+HTH type transcriptional regulator RpiR	0.00306816	0.00041016
+Type I phosphodiesterase nucleotide pyrophosphatase	1.12917e-05	5.37807e-05
+ABC transporter permease	2.4251e-06	2.2065e-06
+Phosphoribosylformylglycinamidine synthase 2	6.2023e-06	1.30814e-06
+Isochorismatase	2.02534e-05	1.98182e-05
+hypothetical protein	2.28945e-05	1.51683e-05
+alkyl hydroperoxide reductase	1.34634e-05	0.000369685
+hypothetical protein	0.00021512	2.57031e-05
+hypothetical protein	1.92608e-05	3.8445e-05
+UniRef50_C9M6I7	5.19976e-05	1.90733e-05
+hypothetical protein	1.83845e-05	4.6889e-05
+UPF0307 protein NMA1049	0.000220929	0.000179211
+Holo [acyl carrier protein] synthase	1.8203e-05	2.17106e-05
+Multidrug export protein EmrA	0.00347046	0.000486666
+Cytochrome c551 peroxidase	0.000276116	8.72545e-05
+UniRef50_A0A016QQV6	2.56126e-05	0.000206785
+UniRef50_D4H9H0	0.000262322	0.00132242
+UniRef50_D0K339	0.000140877	2.3251e-05
+iron transporter FeoB	6.83409e-06	4.79408e-06
+UniRef50_K0LZX2	0.0135666	0.00112231
+hypothetical protein	4.79628e-06	5.94268e-06
+Na+ H+ antiporter, MnhD subunit	0.0152579	0.00211827
+hypothetical protein	3.39032e-06	7.4714e-06
+UniRef50_A3PS55	0.0209005	0.00128353
+UniRef50_K6YKE1	7.70485e-05	2.18912e-05
+Histidine transport system permease protein HisQ	0.00549029	0.000400447
+UniRef50_Q8X6V3	0.00244629	7.01444e-05
+UniRef50_J9P815	1.84811e-05	3.80456e-06
+IS606 TRANSPOSASE	0.000156316	0.00172146
+TsaD Kae1 Qri7 protein	1.30888e-05	5.95421e-05
+Transcription termination protein NusB	0.000567217	0.000513056
+Type II secretion system F domain containing protein	9.17026e-05	0.000242809
+UniRef50_Q6YWZ7	0.000104389	5.62328e-06
+Predicted coenzyme PQQ synthesis protein	0.00337003	0.00139281
+hypothetical protein	3.18789e-05	2.01393e-05
+Methyl accepting chemotaxis protein	0.00033801	0.00209286
+hypothetical protein	5.22843e-06	2.50245e-05
+Oxidoreductase domain protein	0.00476254	0.00146247
+Nitrite reductase	0.000875888	0.000374574
+UniRef50_R6AHC9	7.51109e-06	0.000113459
+UniRef50_J9NWS4	2.32107e-05	3.69115e-05
+hypothetical protein	3.99911e-06	0.000155189
+UniRef50_K4YWM5	3.93711e-05	5.88324e-05
+Inner membrane protein YnbA	0.00106226	0.00048983
+Dual specificity RNA methyltransferase RlmN	0.00104315	0.00308979
+UniRef50_F0HFQ0	1.55094e-05	9.68748e-06
+MotA TolQ ExbB proton channel family protein	0.00025655	0.000252665
+Osmotically inducible lipoprotein E	0.000400653	0.000971254
+Blue light receptor BLUF domain containing protein	0.00470699	0.000257263
+hypothetical protein	2.83792e-06	4.18024e-06
+hypothetical protein	0.000241238	5.7973e-05
+UniRef50_Q9RSV9	0.000113827	0.00985957
+ABC transporter permease	1.3858e-05	9.44203e-05
+glycerol 3 phosphate ABC transporter substrate binding protein	2.30538e-05	4.98652e-06
+hypothetical protein	0.000119886	9.36112e-06
+Probable peptide export permease protein YydJ	0.00959012	0.00114545
+Predicted oxidoreductase	0.00757264	0.000200552
+Potassium transporting ATPase A chain	3.1141e-06	0.000932771
+FAD NAD binding protein	2.87141e-06	0.000388633
+UniRef50_M2EZJ0	0.00249557	0.000154005
+Bacterioferritin	0.007275	0.000361307
+PREDICTED	7.50614e-05	3.62404e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.41188e-05	9.56526e-06
+Urease accessory protein UreF	0.00738473	0.00341083
+Phosphopentomutase	1.12195e-05	0.011918
+Glycerol dehydrogenase	0.010916	0.00290409
+Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	0.000709427	0.000135227
+UniRef50_B0CG85	1.42385e-05	8.34159e-06
+Biotin carboxylase	0.000309356	0.00309198
+Mannitol 1 phosphate 5 dehydrogenase	0.00957214	0.00110653
+UniRef50_C5N1D9	0.000834418	0.000871698
+Peptidase S8 and S53, subtilisin, kexin, sedolisin	0.00243578	0.000290273
+Flagellin domain protein	0.00420602	0.000840928
+Polyphosphate AMP phosphotransferase	7.13531e-05	0.00318013
+Catalase	0.00868419	0.000815077
+UniRef50_D3QEW8	0.0123345	0.00169279
+Alpha galactosidase	0.000269355	0.000768163
+hypothetical protein	2.16888e-05	0.000328775
+TraN protein	6.03409e-06	2.20336e-06
+UniRef50_Q9JZD0	5.34487e-05	0.00142908
+Thymidylate synthase	0.00765293	0.000956943
+Dihydrofolate reductase	0.0182814	0.00182992
+N acetyl gamma glutamyl phosphate reductase	0.000386261	0.00130624
+UniRef50_A6LY45	0.000278908	0.00164
+hypothetical protein	3.21333e-05	1.5994e-05
+hypothetical protein SMAC_11506, partial	0.000244509	5.50994e-06
+UniRef50_A5ISU2	0.0102026	0.000244708
+AsmA family protein 	1.16824e-05	7.99102e-06
+ACGS family amino acid carrier protein	1.72941e-06	0.000272688
+2 oxoglutarate ferredoxin oxidoreductase, beta subunit	0.0113681	0.0016484
+dihydropteroate synthase	1.36238e-05	5.83649e-06
+ABC type transporter, duplicate ATPase component	0.000444795	0.00107919
+UniRef50_U5NN33	0.0373134	0.00243668
+ATP dependent RNA helicase DeaD	0.000142185	0.00224713
+UniRef50_F2U351	1.21592e-06	2.81449e-06
+hypothetical protein	0.000160662	4.73984e-06
+GTPase Der	0.000683434	0.000440412
+Formyltetrahydrofolate deformylase	0.000536427	0.000116604
+Transcriptional regulator, LysR family	5.51333e-05	1.78497e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	8.44151e-06	3.49593e-05
+UniRef50_P76117	0.00312562	0.000411655
+NikE	0.0227289	0.00150792
+Aminodeoxychorismate lyase	0.000168555	0.000533106
+UniRef50_A6LSA1	0.000127642	0.000219792
+Alkaline phosphatase 	0.000105219	0.00810698
+UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase	0.00387351	0.00186345
+UniRef50_Q55S44	1.04334e-05	2.0373e-05
+Cytochrome b5	0.00180047	0.000656526
+Probable uridylyltransferase SAR2262	0.0185809	0.00225699
+Acyl CoA hydrolase	0.0146779	0.000788724
+Phosphate acetyltransferase	2.13175e-05	3.2471e-06
+Glutamate synthase	0.00230092	9.01594e-05
+Transketolase 2	4.70893e-06	2.22184e-06
+1 phosphofructokinase	7.14371e-06	9.27085e-05
+Phosphatidylglycerophosphatase C	0.00264212	0.000689864
+Phosphoethanolamine transferase EptC	0.00332727	0.000873538
+hypothetical protein	0.000202318	2.3013e-05
+Cobyrinic acid a,c diamide synthase 	2.17998e-05	3.93036e-05
+UniRef50_Q9HU82	0.000126999	0.000182861
+Malate dehydrogenase	0.00189914	9.58216e-05
+protoheme IX farnesyltransferase, partial	1.64036e-05	4.46485e-05
+UniRef50_I3KYK8	0.00110068	0.000124462
+DNA repair protein RecO	0.000426517	0.000125398
+Pirin	7.61143e-06	4.4197e-06
+UniRef50_A4WV68	0.00103336	0.000272075
+30S ribosomal protein S15, partial	0.000326918	0.000240738
+UniRef50_A4X0K4	0.0267515	0.00221277
+phytoene desaturase	5.62228e-06	1.58871e-05
+UniRef50_G7U9F5	0.000178723	0.00210045
+UniRef50_A4X0K2	0.0101932	0.00137837
+UniRef50_V9W010	0.00019301	7.89577e-06
+ATP dependent 6 phosphofructokinase 1	1.43823e-05	0.00710157
+CoA substrate specific enzyme activase	0.00038318	0.00129688
+UniRef50_A0A031IYL1	0.000112059	6.46845e-05
+Glyceraldehyde 3 phosphate dehydrogenase 2	9.6295e-06	4.16456e-06
+Outer membrane protein assembly factor BamD	7.59783e-06	1.09645e-05
+potassium transporting ATPase subunit A	4.34913e-06	0.000195603
+NTE family protein RssA	0.00282778	0.00109013
+Aspartate semialdehyde dehydrogenase	0.00366542	0.00600112
+UniRef50_Q8DU04	0.00180261	0.000593292
+Phage portal family protein	0.00222781	0.000192259
+UniRef50_V8EVN4	0.00110862	0.00045118
+UniRef50_G8LI42	0.00127473	0.000311503
+UniRef50_Q8DU03	0.00707715	0.000208802
+UniRef50_A6LTA9	0.000870384	0.00474248
+peptide deformylase	2.55993e-05	9.82384e-06
+UniRef50_W7U2M8	1.19014e-05	2.71983e-06
+UniRef50_E8QFC4	0.000269239	0.0013183
+2 oxoglutarate dehydrogenase E1 component	4.33257e-05	0.00530912
+GntR domain protein	0.000426011	0.001718
+UniRef50_A0A036I5S3	7.85615e-05	7.38137e-05
+Sodium glutamate symport carrier protein	0.00326834	0.00508677
+hypothetical protein	7.08174e-06	3.14082e-05
+HTH type transcriptional activator RhaS	0.00188769	0.000111396
+UniRef50_B7V1B6	0.00118034	0.00022224
+Penicillin binding protein activator LpoA	0.000956194	9.66482e-05
+UniRef50_A0A043WFQ4	2.5242e-05	1.12235e-05
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.0029352	0.000203537
+Putative colanic acid biosynthesis glycosyl transferase WcaE	0.000772611	0.000402962
+bacitracin ABC transporter ATP binding protein	9.8272e-06	6.47001e-06
+ATPase	4.44756e-05	2.26125e-05
+hypothetical protein	6.64386e-05	2.46824e-05
+acetyltransferase	4.79526e-05	0.000151514
+Poly	0.000568126	0.000418963
+UniRef50_B4RA53	2.70338e-05	1.60365e-05
+hypothetical protein	8.49486e-06	3.10194e-05
+Alkaline phosphatase L	0.00191965	0.000193711
+Binding protein dependent transport systems inner membrane component	0.00115684	0.000233727
+sulfate transporter	5.04793e-05	6.57328e-06
+hypothetical protein	2.07146e-05	3.7264e-05
+tRNA lysidine synthase	0.000329035	0.00149331
+Fis family transcriptional regulator	0.000321021	7.4462e-05
+UniRef50_D6AYQ3	0.000389633	0.000110184
+UniRef50_C7RP31	0.000365669	0.0005633
+ABC transporter permease	3.71989e-05	3.53152e-05
+Oxidoreductase,pyridinenucleotide disulfide, class I	0.00197945	0.000924749
+Lipase 2	0.0128578	0.00146233
+Chromosome partition protein Smc	0.000947254	0.000221604
+hypothetical protein	7.6794e-05	8.79385e-06
+Phospho N acetylmuramoyl pentapeptide transferase	0.00250434	0.00548818
+sugar ABC transporter permease	1.5827e-05	0.000102564
+Glyceraldehyde 3 phosphate dehydrogenase 1	2.22015e-05	1.39705e-05
+6 phospho beta galactosidase	0.0236111	0.00370431
+Anthranilate synthase component 1	9.28689e-06	7.95408e-06
+UniRef50_U5RY54	0.000175822	0.000875331
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000571083	0.00106026
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00693812	0.00304805
+hypothetical protein	6.92911e-05	0.000292831
+NAD specific glutamate dehydrogenase	6.41591e-05	3.00185e-05
+UniRef50_M9B494	6.94142e-05	4.37404e-05
+Glutamine synthase	8.69827e-05	0.0252908
+hypothetical protein, partial	6.61466e-05	1.30272e-05
+UniRef50_W4TMV5	1.98764e-05	6.91454e-05
+Pyruvate formate lyase activating enzyme	4.63867e-05	0.00116398
+UniRef50_F8JI17	0.000251571	6.36844e-06
+Anhydro N acetylmuramic acid kinase	4.02027e-06	1.23844e-05
+ArsC family protein	0.000107803	3.66192e-05
+Abortive phage resistance protein like protein	0.00773808	0.00178661
+Threonine homoserine exporter RhtA	0.00270271	0.000932146
+hypothetical protein	3.02716e-06	1.41496e-06
+Arsenical resistance protein ArsH	0.00026396	0.00411615
+Taurine transport system permease protein TauC	0.00237579	0.00412568
+Menaquinone specific isochorismate synthase	0.000323604	0.000684304
+Cell wall surface anchor	3.03244e-06	0.000151748
+hypothetical protein	0.000108623	4.57439e-05
+Dual specificity RNA methyltransferase RlmN	0.00956704	0.0010858
+PREDICTED	7.0392e-06	2.39492e-06
+hypothetical protein	8.64546e-06	7.93268e-06
+Glutamate synthase	2.88137e-06	1.55086e-06
+hypothetical protein, partial	3.62664e-05	1.62397e-05
+UniRef50_A1IRN6	7.94232e-05	0.000662391
+NrdR family transcriptional regulator	8.32822e-05	6.77427e-05
+hypothetical protein	2.82628e-05	0.000107543
+UniRef50_C3YD63	1.35786e-06	2.0632e-06
+hypothetical protein	7.38882e-06	4.70994e-06
+Glucose 6 phosphate 1 dehydrogenase 2	1.04635e-05	0.0037528
+Putative Zn peptidase	0.00416161	0.000128816
+UniRef50_Q46820	0.00190319	0.00023605
+CAAX amino terminal protease family protein	0.00670528	0.000756782
+Polysaccharide deacetylase	0.000440279	0.00268817
+UniRef50_A6LYX7	0.000411484	0.000129373
+hypothetical protein	3.86073e-05	0.000161208
+PREDICTED	0.000125784	0.000361275
+DNA polymerase III subunit beta	9.01469e-05	0.00204692
+UniRef50_Q8D5U6	0.000142144	0.00116891
+NADH hydrate epimerase	6.5255e-05	3.62634e-05
+Bifunctional glmU domain protein	0.00147682	0.000431658
+Enoyl [acyl carrier protein] reductase [NADH] FabI	1.11796e-05	0.000961912
+Methionine import ATP binding protein MetN 1	1.62755e-05	1.1312e-05
+Thiazole synthase	0.0007467	0.00150696
+Chemotaxis protein methyltransferase CheR2	0.000268168	0.000823363
+PREDICTED	3.64809e-05	2.2346e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.45007e-05	1.27802e-05
+Biotin sulfoxide reductase	0.00118922	4.07928e-05
+Lon protease	6.05765e-06	7.78303e-06
+UniRef50_R9SL42	0.00280231	0.000413398
+UniRef50_M1FGU0	0.000381811	0.00119713
+Coenzyme F420 hydrogenase subunit alpha	0.00147382	0.000186267
+Der GTPase activating protein YihI	0.00271589	0.000361833
+50S ribosomal protein L10	0.00147988	0.000403979
+MukB N terminal domain M protein repeat protein	0.000587295	0.000725979
+KdgR1	0.000729618	0.000657084
+ABC transporter	4.99216e-06	7.0103e-06
+FAD containing monooxygenase EthA	1.04629e-05	0.00120703
+Glyoxalase	2.62295e-05	1.92261e-05
+UniRef50_Q3J3Q2	0.0029093	0.000567812
+hypothetical protein TREMEDRAFT_26315	2.40496e-06	1.73604e-06
+ATP dependent DNA helicase	0.00503654	0.00128622
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.3686e-05	4.2461e-06
+UniRef50_A4EPQ9	0.00607875	0.0018297
+PREDICTED	4.53243e-05	9.61582e-05
+UniRef50_G1XX87	0.000161393	0.000667375
+Antirestriction protein	4.44789e-05	0.000198201
+UniRef50_U5MT98	0.000526441	0.000841416
+UniRef50_Q1RK88	0.00406926	0.00247473
+DNA gyrase subunit B	1.45289e-05	6.98051e-05
+hypothetical protein, partial	0.000213558	5.12095e-05
+ATP dependent 6 phosphofructokinase	0.00426273	0.00194046
+Putative oligopeptide transport system permease protein oppC2	0.0183628	0.00120406
+Beta hexosaminidase	3.63281e-06	1.26179e-05
+Os08g0187500	7.22439e-05	0.000226367
+Cyanophycinase	0.0010693	0.00148384
+Signal transduction histidine kinase, LytS	0.000831376	0.000491697
+PTS system, mannose fructose sorbose family, IIA subunit	0.000255607	0.00129102
+UniRef50_A0A023KNT6	0.000134085	0.000109356
+UniRef50_Q2YU28	0.00144089	7.76959e-05
+ABC transporter	8.40344e-05	1.26424e-05
+Transposase, Tn3 family	2.28101e-05	0.000651482
+hypothetical protein	4.29681e-06	4.06869e-06
+Transferase hexapeptide repeat containing protein	0.00933904	0.000944042
+UniRef50_B9NR02	0.00336608	0.00021695
+Thioredoxin reductase	0.00901739	0.00513705
+Erythronate 4 phosphate dehydrogenase	0.000375214	0.00441606
+UDP 3 O acylglucosamine N acyltransferase	0.00136096	0.000497639
+Macrolide export ATP binding permease protein MacB	2.82668e-06	7.15173e-06
+hypothetical protein	0.000266949	0.000144862
+4 hydroxythreonine 4 phosphate dehydrogenase	0.000826193	3.59746e-06
+DNA primase	0.000171118	0.00522574
+UniRef50_G3GPU6	8.4878e-06	1.11204e-05
+Peptidyl tRNA hydrolase	0.00860023	0.00124351
+ATP dependent helicase deoxyribonuclease subunit B	0.0103037	0.00133718
+UniRef50_A3SHH8	5.11218e-05	1.83002e-05
+hypothetical protein	5.43258e-06	5.13168e-06
+hypothetical protein	9.086e-05	2.77801e-05
+UniRef50_R8S9D2	8.47369e-05	0.00589821
+Response regulator	0.00275864	0.000660459
+UniRef50_R7MTU6	0.00448849	0.000748541
+UniRef50_P77768	0.00171273	0.000206055
+transposase	3.4898e-06	4.49251e-06
+hypothetical protein	2.83513e-05	1.20527e-05
+Shikimate kinase	0.000210343	0.000662722
+PTS system mannitol specific EIICB component	7.12427e-06	4.89638e-06
+hypothetical protein, partial	2.74291e-05	1.58187e-05
+Baseplate J family protein	0.000318689	0.00124956
+DNA glycosylase, partial	5.1332e-05	8.18177e-05
+UniRef50_A0A011PVV2	0.000145268	0.00033755
+UniRef50_G7M9T7	0.000785591	0.000717954
+Oxidoreductase, molybdopterin binding	0.000215095	4.87961e-05
+Flavohemoprotein	0.000906864	2.59374e-05
+ubiquinol cytochrome C reductase	9.77368e-05	2.27684e-05
+Ferredoxin nitrite reductase	0.000268733	0.0174453
+Nicotinamide nucleotide adenylyltransferase	0.000341097	0.00140594
+UniRef50_A5UJ97	0.00351474	0.000175825
+Putative transcriptional regulator	5.74153e-05	1.15224e-05
+membrane protein	2.71951e-05	5.30363e-06
+MotA TolQ ExbB proton channel family protein	0.0026583	0.000991126
+Probable succinyl diaminopimelate desuccinylase	0.0180946	0.00294923
+hypothetical protein	1.47229e-06	4.5922e-06
+D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein	0.00445449	0.00308912
+putative hydrolase	9.05046e-06	3.96139e-05
+PREDICTED	2.48037e-05	1.24788e-05
+Thioesterase PvdG involved in non ribosomal peptide biosynthesis	0.000641528	0.000345326
+UniRef50_E4CZ61	0.000525857	0.000935259
+UniRef50_A6TRD7	0.000180728	0.000610731
+deoxyguanosinetriphosphate triphosphohydrolase	6.53094e-05	2.84653e-06
+Succinyl CoA ligase [ADP forming] subunit alpha	0.010345	0.00403679
+hypothetical protein	1.20612e-05	3.98694e-05
+potassium transporter TrkA	7.24028e-06	6.81171e-06
+hypothetical protein	4.56773e-06	1.73082e-05
+UniRef50_A3PH06	0.0123327	0.00181081
+Diaminopimelate decarboxylase	8.11072e-06	0.0007508
+Ornithine carbamoyltransferase	5.38681e-06	4.23835e-06
+AI 2 transport protein TqsA	0.00298158	0.000733744
+acetolactate synthase	2.93676e-05	0.00049873
+citrate synthase, partial	2.0732e-05	2.89558e-05
+Magnesium transporter	0.000301204	0.00326643
+Phosphoheptose isomerase	0.00568595	0.00142465
+cellobiose phosphorylase	0.000101974	7.63645e-05
+dTDP 4 dehydrorhamnose reductase	0.000985373	0.00109472
+L glyceraldehyde 3 phosphate reductase	0.00394775	0.0030314
+heme ABC transporter ATP binding protein	1.79639e-05	4.06684e-05
+UniRef50_K4NDS6	0.000107868	0.00100573
+Thiamine biosynthesis protein ThiC 	1.82378e-05	4.11784e-05
+Pseudouridine synthase	0.00634709	0.00143449
+Methyl accepting chemotaxis sensory transducer	6.99685e-05	0.000760449
+Inner membrane protein YpjD	0.00261764	0.000105505
+UniRef50_D3E0C1	0.00374721	0.00021694
+amino acid ABC transporter periplasmic protein	6.00333e-06	4.66687e-06
+Sensor atoS domain protein	0.00211461	0.000204988
+DNA binding response regulator, Fis family	0.000191786	0.00228913
+30S ribosomal protein S3	0.00144128	0.00207367
+Transcription termination antitermination protein NusA	0.00352342	0.0046366
+L arabinose binding periplasmic protein	0.0013206	0.000110709
+UniRef50_E5WAH0	0.000385361	0.000109088
+hypothetical protein	8.87891e-05	3.17581e-05
+hypothetical protein	1.61452e-05	1.98432e-06
+UniRef50_Q0ASX6	1.72662e-05	2.10831e-05
+Non canonical purine NTP pyrophosphatase	2.95185e-05	6.83715e-06
+UniRef50_C7Q8K8	5.64374e-06	0.000360089
+DNA polymerase III subunit beta	0.00134619	9.55158e-05
+UniRef50_G5MH51	3.09809e-05	1.84495e-05
+ATPase, partial	0.000161978	0.0016035
+hypothetical protein	2.19277e-06	7.6101e-06
+MULTISPECIES	1.59521e-05	9.11177e-06
+PTS system transporter subunit IIA	0.00510238	0.000485324
+hypothetical protein	4.6761e-06	3.79451e-06
+Predicted transposase	0.00321581	0.000361488
+NADH quinone oxidoreductase subunit D 1	5.53719e-06	3.76023e-05
+UniRef50_F3SFL5	0.00027573	3.65014e-05
+hypothetical protein	0.000439309	1.08493e-05
+hypothetical protein	1.62304e-05	2.02104e-06
+PTS system, maltose and glucose specific IIAbc component	0.000170823	3.01798e-05
+UniRef50_K7TAU7	0.000700925	5.60999e-05
+Glycogen debranching enzyme	0.00265971	0.000122474
+N acetyl gamma glutamyl phosphate reductase	5.22432e-05	1.13907e-05
+UniRef50_T2DXA7	0.000941512	0.00136038
+hypothetical protein	0.000304061	6.52309e-05
+Arsenical pump membrane protein	0.0201748	0.00331979
+6,7 dimethyl 8 ribityllumazine synthase	1.43481e-05	3.15106e-05
+hypothetical protein	0.00146244	4.31656e-06
+Amidophosphoribosyltransferase	3.85893e-06	3.4136e-05
+Cysteine desulfurase	0.00299567	0.00240104
+hypothetical protein	0.000185187	3.00948e-05
+Phosphate import ATP binding protein PstB	0.00650087	0.0053633
+PREDICTED	3.0111e-05	3.26997e-06
+UniRef50_S6B705	0.0072319	0.00149076
+UniRef50_A6M0A3	0.000208174	0.000170047
+C repressor	0.00138452	0.0013801
+30S ribosomal protein S20	0.00197192	0.000675074
+Adenine phosphoribosyltransferase	0.00675768	0.000404382
+UniRef50_A3WPC3	0.000170152	0.000137885
+6 pyruvoyl tetrahydropterin synthase	9.56643e-05	0.000423589
+UniRef50_A0A022NGW7	1.88104e-05	0.000138676
+tRNA pseudouridine synthase A 2	0.000420686	0.00139526
+GntR family transcriptional regulator, partial	1.99843e-05	1.52405e-05
+UniRef50_H3V9W4	0.00115216	0.000107304
+Cobalamin synthase	0.000134979	0.000258874
+Transcriptional regulator, AraC family	0.000121206	0.000792654
+Elongation factor P	0.0181729	0.001885
+Protein TolB	0.00283456	0.000930575
+Fructose 1,6 bisphosphatase class 2	0.00236443	0.00113968
+UniRef50_K2EHJ4	4.46668e-06	0.000348003
+Protease HtpX homolog	0.000118087	0.00105512
+Bifunctional protein GlmU	5.22952e-06	3.28526e-06
+UniRef50_D3E2G7	0.000567539	0.00016033
+Prophage LambdaSa04, terminase, large subunit	9.60526e-06	5.48982e-05
+Modular polyketide synthase	0.000105605	0.000221244
+ribosome associated protein IOJAP	4.52169e-05	2.18387e-05
+PREDICTED	1.00329e-05	2.11491e-06
+Membrane associated dicarboxylate carrier protein	0.000355509	0.00306101
+serine threonine protein phosphatase	1.38265e-05	1.04036e-05
+Glucose inhibited division protein A	1.197e-05	9.76796e-06
+SAD1f	2.14906e-07	4.57127e-06
+Phosphatidylethanolamine	0.0036221	0.000787545
+Bacterial extracellular solute binding protein	0.000102191	0.003452
+Ribokinase	0.0191792	0.00231964
+Peptidase M16	0.000418578	0.000178145
+hypothetical protein	6.87241e-05	7.32856e-05
+UniRef50_C0P8W3	2.0592e-05	1.42323e-05
+UniRef50_M4WUF5	0.00013233	5.93284e-05
+hypothetical protein	0.00378065	0.00119977
+hypothetical protein	2.00206e-05	0.000113804
+UniRef50_B9T8B0	3.67684e-05	4.358e-06
+Acyl coenzyme A dehydrogenase	0.00179662	0.000161423
+ATPase P	3.65091e-06	7.75456e-05
+hypothetical protein	1.16653e-05	0.00035479
+Electron transfer flavoprotein, alpha subunit like protein	4.20957e-06	3.85881e-06
+PAS PAC sensor signal transduction histidine kinase	0.000116636	4.28091e-05
+UniRef50_Q88GV8	0.000171689	2.36563e-05
+Peptidase M24	0.000165787	0.00019888
+hypothetical protein	1.55004e-05	4.15972e-06
+Lipoprotein	8.92173e-06	0.00133137
+Predicted RNA binding protein	0.00308115	0.000151408
+UniRef50_L8ME45	2.18781e-05	1.23526e-05
+large conductance mechanosensitive channel, partial	2.70429e-05	1.18107e-05
+Signal peptidase I	0.0624952	0.0118461
+Phosphoglucomutase phosphomannomutase family protein	7.17078e-05	0.00292952
+Transposase of insertion element IS911A	2.6269e-05	3.53656e-05
+Glycosyl transferase	0.00063898	7.47584e-05
+UniRef50_S5DC92	0.000142204	0.00287833
+Citrate synthase	1.7596e-05	1.35437e-05
+Cyclolysin	1.91878e-05	2.38804e-06
+SpoU rRNA methylase family protein	0.00846478	0.00225105
+enoyl CoA hydratase	1.02106e-05	9.54213e-06
+6 phosphogluconate dehydrogenase	0.000114084	0.00037089
+UniRef50_A0A016QRP5	3.95429e-06	0.000302715
+Cobalt zinc cadmium resistance protein CzcB	9.46247e-05	0.000211806
+UniRef50_A4WRH7	0.000297718	7.97809e-05
+Predicted protein 	6.05401e-05	3.79272e-05
+Superoxide dismutase [Fe]	9.20918e-06	5.92111e-06
+PREDICTED	0.000496769	0.000655937
+Lipoprotein	0.000298907	0.000325726
+2 isopropylmalate synthase	0.00179128	0.00442981
+hypothetical protein	4.97006e-06	4.05811e-05
+Response regulator receiver protein	0.0140769	0.000408113
+peptide ABC transporter ATP binding protein	6.1858e-06	6.5861e-06
+Protein Gm26571	5.32301e-05	6.93774e-05
+Two component sensor	0.000710305	0.000387962
+UniRef50_L8NI67	0.000784728	1.25679e-05
+Probable NAD dependent malic enzyme 2	5.97423e-05	0.00412414
+Cyclic nucleotide binding domain protein	0.000293929	0.000417203
+Two component system histidine kinase	0.00015177	0.000798558
+NADH quinone oxidoreductase subunit B	4.18891e-05	7.58946e-05
+DNA directed RNA polymerase	0.000179371	0.00435439
+Exonuclease V subunit beta	0.00274835	0.000599572
+UniRef50_Q6GE63	0.0135206	0.000541573
+UniRef50_D4HD09	6.91065e-05	0.000294328
+hypothetical protein	1.41948e-05	8.30911e-06
+PstS1	7.29167e-06	4.55132e-06
+Lantibiotic modifying like protein	0.000104395	0.000770578
+exsB protein	9.39648e-05	9.80036e-06
+Histidine protein kinase	0.00289898	0.00075255
+Fibronectin	0.00012253	0.00110475
+UniRef50_F2UJQ2	2.77931e-05	2.1949e-05
+MerR family transcriptional regulator	7.6495e-05	0.00046708
+LysR family transcriptional regulator	0.000315658	0.00442957
+UniRef50_V4PX87	2.31237e-05	1.36578e-05
+UniRef50_A6LXR1	0.000384753	0.000284915
+PAS PAC sensor signal transduction histidine kinase	0.000216618	0.000352352
+Luciferase family oxidoreductase, group 1	0.000146114	0.00248828
+Pseudouridine synthase	0.00987624	0.00427944
+hypothetical protein	2.29282e-06	5.69062e-06
+UniRef50_Q0FVR8	6.50721e-05	6.67007e-05
+Fumarate hydratase class II	6.5085e-06	6.65535e-06
+Tyrosine  tRNA ligase	0.00678653	0.00124095
+UniRef50_D3A3L2	1.13072e-05	3.60427e-05
+UniRef50_H1KT40	0.00258834	0.000532882
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	3.24813e-06	1.87857e-06
+Replication initiator RepC	0.000205461	3.91118e-05
+hypothetical protein	1.13446e-05	2.83963e-05
+UniRef50_P44270	0.000235899	0.00149206
+Glycolate oxidase iron sulfur subunit	5.30163e-05	9.12714e-05
+hypothetical protein	2.58715e-06	4.63008e-06
+CRISPR associated endonuclease Cas1	0.00204053	0.000161775
+N acetylmuramic acid 6 phosphate etherase	0.00287015	0.000480292
+Succinate semialdehyde dehydrogenase [NADP]	3.61927e-06	0.0187103
+50S ribosomal protein L13	0.000547269	0.00135064
+type II secretion system protein E	3.49637e-05	9.30926e-06
+Inner membrane protein YihN	0.00160081	0.000573922
+LysR substrate binding domain protein	0.000220783	0.00601033
+GCN5 related N acetyltransferase	0.000201929	0.000845159
+TetR family transcriptional regulator	0.000860479	0.000144117
+3 hydroxybutyryl CoA dehydrogenase	1.31207e-05	1.53669e-05
+UniRef50_A8B6F6	3.16635e-05	1.28344e-05
+Cysteine synthase, putative	0.00719685	0.000609792
+hypothetical protein	5.96487e-06	1.60375e-05
+UniRef50_Q6F7U5	0.000179015	0.0023209
+D hydantoinase dihydropyrimidinase	0.00456063	0.000663018
+alkylhydroperoxidase	6.02718e-05	2.54311e-05
+UniRef50_Q3BPQ5	0.00147258	9.83674e-06
+WGS project CABT00000000 data, contig 2.30	8.09713e-05	1.2832e-05
+Uronate isomerase	0.000336581	0.000680038
+hypothetical protein	1.818e-05	1.41766e-05
+hypothetical protein	8.56506e-06	9.70252e-05
+Response regulator receiver protein	0.00024896	0.000810804
+hypothetical protein PFL1_05761	8.4589e-06	5.26443e-06
+UniRef50_D6SI05	8.4289e-05	3.64585e-05
+Basic proline rich protein	0.000289272	0.00011845
+Cobyrinic acid a,c diamide adenosyltransferase	0.000375333	0.00311704
+hypothetical protein, partial	4.35073e-05	3.55283e-05
+UPF0348 protein CA_C1741	0.00047321	0.000689888
+PREDICTED	3.75287e-06	4.07121e-06
+helicase	1.63572e-05	8.76407e-06
+Maltodextrin glucosidase	0.00114473	0.000237455
+PF04394 family protein	0.00307951	0.00058975
+hypothetical protein PUNSTDRAFT_130809	2.811e-06	7.24284e-06
+UniRef50_E3CRS2	5.95052e-05	5.07509e-05
+DNA mismatch repair protein MutS	3.95939e-05	0.00358322
+PREDICTED	3.28463e-05	1.44422e-06
+Transposase	0.000197621	5.69528e-06
+UniRef50_Q3IUX0	0.00790143	0.0156472
+hypothetical protein	0.00811735	0.000275193
+tRNA 2 agmatinylcytidine synthetase TiaS	0.00252193	0.000339137
+Fimbrial subunit CupA4	0.000585959	0.00033586
+sulfite oxidase	5.16317e-05	8.51177e-06
+Probable amino acid import ATP binding protein YxeO	7.26852e-05	0.00193976
+DNA gyrase subunit B	0.000191579	0.00259072
+hypothetical protein	1.74898e-05	5.88357e-06
+UniRef50_N8PPS0	0.000341797	0.00430067
+Imidazoleglycerol phosphate dehydratase	0.00553322	0.00141938
+Predicted acetamidase formamidase	0.00126946	0.000390227
+UniRef50_P75859	0.00214445	0.000199522
+UniRef50_C6SRL3	0.00441861	0.000577443
+Sensor protein TorS	0.00327127	0.000184288
+Putative transposase, IS150 like protein 	0.000976716	0.0006472
+UniRef50_A0A017HPG3	0.000805986	0.000180868
+Bifunctional dihydrofolate reductase thymidylate synthase	4.5654e-06	1.22267e-05
+Glucans biosynthesis protein D	1.37224e-05	7.72328e-06
+UniRef50_K7S7X3	1.32737e-05	1.02806e-05
+Flagellar FlaF family protein	0.000149173	8.39918e-05
+50S ribosomal protein L32	0.00186971	0.000496049
+UniRef50_Q3JHB3	2.92302e-05	3.71978e-05
+ATPase involved in chromosome partitioning	0.000100362	0.00211294
+UniRef50_B0VRQ2	6.33007e-05	0.00327817
+WGS project CAEQ00000000 data, annotated contig 2102 	5.4422e-07	6.01121e-07
+Beta galactosidase	0.00011043	0.0032085
+hypothetical protein	0.000211486	2.3405e-05
+PTS system mannose specific EIIAB component	0.00492333	0.00281121
+preprotein translocase subunit TatA	8.52086e-05	3.47759e-05
+Transcriptional regulator	0.0128298	0.000196897
+hypothetical protein	1.05294e-05	4.37626e-06
+Isocitrate lyase	0.00362516	0.0184835
+Phosphate acetyltransferase	3.41441e-06	6.63935e-06
+HTH type transcriptional regulator PerR	0.00294996	0.000792603
+Intergenic region domain protein	0.000469135	0.000324133
+alkyl hydroperoxide reductase  thiol specific antioxidant  mal allergen	6.02354e-06	0.000169055
+1 phosphofructokinase	0.00148419	0.000251778
+UniRef50_J9CDN0	2.0105e-05	9.4501e-05
+UniRef50_Q9I399	0.000203782	0.000211258
+Indoleacetamide hydrolase (Indole 3 acetamidehydrolase)	8.84878e-05	0.00421902
+cation	4.71303e-05	4.74075e-05
+hypothetical protein	2.72445e-07	2.22538e-06
+hypothetical protein	1.57846e-05	1.31526e-05
+hypothetical protein	1.77135e-06	0.000201644
+Flotillin band_7_stomatin like domain protein	0.000338297	0.00196636
+ABC type dipeptide oligopeptide nickel transport system, permease component	0.00933313	0.000782504
+Glycerol kinase	8.38134e-06	4.53114e-05
+hypothetical protein	1.87085e-05	2.14703e-05
+hypothetical protein	8.58416e-06	0.000157753
+Precorrin 6y C5,15 methyltransferase  CbiE	0.00246696	0.00111631
+NADH dehydrogenase	0.000214625	9.70372e-05
+UniRef50_W9A1H3	0.00012625	8.18874e-05
+Spermidine putrescine import ATP binding protein PotA	4.94399e-05	3.22245e-05
+UniRef50_W7HYY6	2.58501e-06	1.80277e-05
+ABC transporter permease	8.55584e-05	1.25619e-05
+D alanine  D alanine ligase	0.000387093	0.00204747
+Zinc protease	7.80252e-05	0.00179895
+Peptidase C45, acyl coenzyme A	9.23738e-05	0.000523154
+UniRef50_B0I1W2	0.00658552	0.00444436
+DNA topoisomerase	0.00892412	0.0015981
+UniRef50_A9CR98	0.00490512	0.00047582
+Cell wall binding repeat protein	1.92633e-05	0.000439497
+UniRef50_A9CR91	0.000691538	0.000801651
+ABC transporter substrate binding protein	0.000434709	0.0041208
+organic solvent ABC transporter ATP binding protein	8.73211e-05	1.41005e-05
+UniRef50_Q9I024	7.09468e-06	0.00013551
+Putative protein KleG	7.7526e-05	0.000565172
+hypothetical protein, partial	1.25317e-05	1.02899e-06
+zinc binding protein	1.13289e-05	2.1963e-05
+Xylanase chitin deacetylase	0.000351777	0.00424211
+chemotaxis protein CheY	5.25559e-06	1.1392e-05
+Putative lambdoid prophage Rac integrase	0.00281102	0.00231082
+Endodeoxyribonuclease RusA	0.00868688	0.000513357
+Spermidine N acetyltransferase	0.0102444	0.00488298
+hypothetical protein, partial	5.10973e-06	3.99889e-06
+OSJNBa0064M23.10 protein	7.91303e-05	5.28719e-06
+UniRef50_A0A059DVD1	0.000125704	1.58475e-05
+sulfate ABC transporter membrane protein	6.94803e-05	0.000557543
+hypothetical protein, partial	8.31303e-06	9.8138e-06
+NADH quinone oxidoreductase subunit D	3.38311e-05	3.63928e-05
+hypothetical protein	5.97207e-06	7.18268e-06
+Hydantoin utilization protein A	6.33511e-06	8.03163e-06
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.000190458	0.000101077
+Membrane lipoprotein	9.30549e-05	0.02049
+hypothetical protein, partial	9.537e-06	6.58221e-05
+Cadmium, cobalt and zinc H K(+) antiporter	0.0125402	0.00237395
+PREDICTED	4.20294e-06	3.69866e-07
+hypothetical protein	2.28369e-05	1.51112e-05
+hypothetical protein	1.1296e-05	1.21107e-05
+Cell envelope related transcriptional attenuator	7.05875e-05	3.67388e-05
+hypothetical protein	2.78455e-06	5.66235e-06
+UniRef50_A4X015	0.00206136	0.000262783
+LmbE family protein	0.0168331	0.00313574
+UniRef50_A5ZX27	0.000134289	0.000115861
+Msl6246 protein	0.000188894	0.000157933
+Lipopolysaccharide core biosynthesis protein RfaZ	0.000870459	0.000901962
+ABC transporter ATP binding protein	2.63953e-05	6.42277e-06
+Aldo keto reductase	0.0136891	0.00323257
+hypothetical protein	4.02878e-06	7.62233e-06
+Tail protein	1.4917e-05	9.97353e-06
+Transposase IS116 IS110 IS902	0.00195253	0.00118148
+Probable cobyrinic acid A,C diamide synthase	0.00257709	0.000564539
+carboxymuconolactone decarboxylase	3.82235e-05	5.57493e-05
+Lysine biosynthesis enzyme LysX	0.000120339	0.00856852
+Rhamnan synthesis protein F	1.0599e-05	0.00168697
+Glutamine  tRNA ligase	0.000105639	4.69586e-05
+C4 dicarboxylate transporter malic acid transport protein	0.00665286	0.000338877
+hypothetical protein	2.37104e-06	2.75185e-05
+Oxidoreductase, short chain dehydrogenase reductase family	0.000830598	0.0046022
+calcium binding protein, partial	4.14875e-05	3.27039e-05
+UniRef50_M2C9Y4	0.0041332	0.000356089
+ISSpo7, transposase	7.71568e-05	2.02145e-05
+UniRef50_A8LQ48	2.92821e-05	4.79595e-05
+ATPase histidine kinase DNA gyrase B HSP90 domain protein	0.000278304	0.00339136
+Organic hydroperoxide resistance protein	0.0075372	0.000985268
+UniRef50_Q8CRU1	0.0186317	0.00271303
+Na+ dependent nucleoside transporter family protein	0.0116763	0.000660223
+hypothetical protein	1.94538e-05	2.2948e-05
+UniRef50_Q83JF8	0.000687142	0.000312876
+UniRef50_E8RC09	1.08331e-05	1.67428e-05
+UniRef50_Q8CRU7	0.00807669	0.00126736
+UniRef50_Q8CRU6	0.0180586	0.00354923
+ATPase	7.21866e-05	2.52381e-06
+Thiazole synthase	0.000262929	0.00298802
+ABC transporter, ATP binding protein	0.00701616	0.00259904
+UniRef50_J9P994	0.000134739	0.000174874
+UniRef50_B0N8M0	5.10576e-05	1.35315e-05
+2 succinylbenzoate  CoA ligase	0.00196705	0.000477448
+UniRef50_D3H4R6	0.000283608	0.000243981
+UniRef50_A3K475	6.95791e-05	3.3245e-06
+Putrescine importer PuuP	0.00268179	0.000359795
+ATPase involved in chromosome partitioning	0.0118386	0.000860316
+Polyhydroxyalkanoate depolymerase, intracellular	0.000164526	1.59016e-05
+MORN repeat containing protein	0.000146751	0.00112145
+COG1063	0.000105812	0.000127323
+PTS system sucrose specific EIIBC component	0.0159602	0.00221872
+Phosphate transport system permease protein PstA	0.000191221	0.00230454
+Pyridoxal phosphate dependent enzyme family protein	7.04451e-06	4.38038e-06
+Orotate phosphoribosyltransferase	0.00292529	0.000176395
+Phage related protein	0.000441646	0.000725202
+3 phosphoshikimate 1 carboxyvinyltransferase	3.55085e-06	3.55527e-06
+AraC type transcriptional regulator domain protein	0.00031817	0.00111989
+Mannose 6 phosphate isomerase, class I	0.019617	0.00441161
+15 hydroxyprostaglandin dehydrogenase [NAD]	4.64804e-06	0.000136998
+Prostaglandin F synthase	0.00351441	0.000787976
+Flagellar M ring protein	0.00064677	0.000177392
+UniRef50_J3M9R4	0.00015605	1.00708e-05
+UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000708297	0.00110534
+UniRef50_D5RKR4	0.000137204	0.000245594
+Phosphate acyltransferase	0.000404343	0.00184861
+Thi4 family protein	2.66867e-05	0.000273877
+Ribonucleoside diphosphate reductase subunit beta	9.78339e-05	0.00353463
+DNA mismatch repair protein MutL	0.000119131	0.00143759
+Cell envelope related transcriptional attenuator domain protein	1.88833e-05	1.72907e-05
+Predicted protein	9.02651e-05	0.000288697
+Multisensor hybrid histidine kinase	0.00429679	0.000560971
+Signal recognition particle 54 kDa protein	0.0026586	0.000221857
+TetR family transcriptional regulator	1.6271e-05	4.09108e-05
+ 2 hydroxyglutaryl CoA dehydratase activator related protein	0.00525506	0.00177466
+UniRef50_A0A038G1M9	0.000262227	0.00101926
+hypothetical protein	1.00191e-05	2.86373e-06
+hypothetical protein	1.14372e-05	1.0272e-05
+aconitate hydratase	1.9931e-05	3.75775e-05
+RNA polymerase subunit sigma 24	8.46114e-05	3.49937e-05
+UniRef50_J1B9G8	0.00146906	1.48693e-05
+UniRef50_S4RE69	0.000120987	1.88925e-05
+Penicillin binding protein	0.000374245	0.00053105
+UniRef50_P26946	0.00895035	0.00202054
+3 methyl 2 oxobutanoate hydroxymethyltransferase, partial	0.000144612	2.52529e-05
+Acetyltransferase  family protein	0.00241812	0.000534434
+UniRef50_I6SXG2	0.000606837	0.000502996
+UniRef50_J9P1W0	7.66069e-05	9.2087e-05
+ATP dependent DNA helicase PcrA	1.10237e-05	6.00855e-06
+UniRef50_D4HCQ0	0.000508091	0.000979025
+UniRef50_R1DZ31	4.74745e-05	1.52928e-05
+UniRef50_W4ZID1	8.87991e-05	0.00295887
+TraU	0.0211288	0.00368614
+UniRef50_A0A017SU62	0.000189452	9.95312e-05
+Chromosomal replication initiator	4.3768e-05	4.51932e-06
+hypothetical protein	0.00013124	8.82301e-05
+thioredoxin	0.000263628	9.18172e-05
+Appr 1 p processing domain protein	1.08247e-05	9.07564e-05
+UniRef50_A0A059LGP9	5.43405e-05	0.000270938
+DNA gyrase subunit B	0.000403004	0.00472396
+Thioredoxin reductase	5.23043e-05	1.42481e-05
+UniRef50_K0B2S0	0.000218538	0.00258975
+MULTISPECIES	1.49987e-05	2.43815e-05
+hypothetical protein	3.04483e-05	3.92176e-06
+UniRef50_W0IKU6	4.92702e-05	3.36768e-05
+Membrane protein	0.000191408	3.01423e-05
+UniRef50_V4R951	0.000112401	0.000138398
+DNA translocase FtsK	2.65487e-05	4.83053e-05
+hypothetical protein	0.000135392	1.2621e-05
+SAM dependent methyltransferase	0.000349441	0.000151031
+UniRef50_H6VX66	0.000140531	0.00556108
+Fumarylacetoacetate  hydrolase	0.0142686	0.000661524
+UniRef50_A1T726	2.03689e-05	2.11376e-05
+Siderophore synthase	0.00367829	0.000504529
+Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	4.06339e-05	1.33178e-05
+Competence protein ComYD	1.00461e-05	2.15671e-05
+Acyl CoA dehydrogenase	0.00107756	0.00310491
+UniRef50_Q3JIW0	1.91318e-05	5.60917e-05
+PE PGRS family protein	5.17161e-06	3.05676e-05
+Type I restriction modification system, M subunit	0.000124359	0.00150679
+patatin family phospholipase	9.56455e-06	1.84963e-05
+GTP cyclohydrolase III	0.00170613	0.000946941
+UniRef50_S5XQ93	7.63178e-05	1.52724e-05
+Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.00346457	0.00153371
+UniRef50_J1LSW8	0.000224983	0.00564067
+UniRef50_U4UXP2	7.73734e-06	1.30965e-06
+ABC type sugar transport system, periplasmic component	9.81191e-05	0.000298453
+Serine hydroxymethyltransferase	0.0346213	0.0409443
+ABC type transport system involved in lipoprotein release permease component	0.0204382	0.00218899
+Phage N acetylglucosaminidase	0.0133038	0.000511643
+50S ribosomal protein L5	0.0149434	0.00152811
+RutC family protein HI_0719	0.0013094	0.000110089
+UniRef50_V7EMQ8	1.325e-05	3.52797e-06
+PREDICTED	0.000182153	7.67647e-05
+hypothetical protein	6.25162e-06	6.86548e-05
+Fe ions import ATP binding protein FbpC 1	0.00354039	0.000731562
+Succinate dehydrogenase cytochrome b558 subunit	0.0174087	0.00242225
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.000546351	6.31949e-05
+PREDICTED	1.22719e-05	3.0491e-06
+LexA repressor	8.15479e-05	9.76963e-06
+Fatty acid desaturase	0.000355118	0.000200005
+30S ribosomal protein S3	0.000303415	0.000301628
+Cystathionine beta lyase MetC	6.20799e-05	0.000257963
+ADP dependent  NAD(P)H hydrate dehydratase	0.0190053	0.00319396
+Transporter, major facilitator family protein	7.5403e-05	0.00365439
+diaminopimelate decarboxylase, partial	5.00586e-05	0.00125151
+Putative transketolase N terminal section	0.000183665	0.000244074
+DNA directed RNA polymerase subunit beta	5.86903e-06	6.75158e-06
+hypothetical protein	2.61369e-06	6.03652e-07
+Transcription termination factor Rho	0.0117474	0.0077714
+Transporter	0.0221787	0.00332342
+AMP dependent synthetase and ligase	0.00204781	0.000426966
+Chorismate synthase	4.27613e-06	1.28666e-05
+Outer membrane protein	0.00959687	0.000374104
+Calcium proton exchanger Cax	0.000100362	0.000484159
+Pertactin family protein	0.00159645	0.000115702
+ppGpp synthetase I, SpoT RelA	0.000834391	0.000540365
+3 hydroxybutyryl CoA dehydrogenase	0.000155962	0.00180926
+UniRef50_Q9RYC5	0.000103447	0.0291132
+4 hydroxybenzoate polyprenyl transferase	0.00546252	0.000881146
+UniRef50_Q8DW77	0.00469364	0.000891487
+UniRef50_Q8DW75	0.00219843	0.000489024
+50S ribosomal protein L10	0.00404429	0.00650643
+UniRef50_Q8DW79	0.0004121	0.000513056
+Transposase for transposon Tn552	0.0925703	0.012286
+Dihydrodipicolinate reductase domain protein	0.00464441	0.00122163
+hypothetical protein	2.34135e-05	6.20643e-06
+hypothetical protein	2.07506e-05	2.96138e-05
+hypothetical protein, partial	9.18406e-05	8.28559e-06
+Lysine  tRNA ligase	0.000150433	0.00204757
+Glucose 6 phosphate 1 dehydrogenase	2.81827e-05	0.00171319
+Phosphoribosylaminoimidazole carboxylase	1.80638e-05	1.29127e-05
+2 aminoethylphosphonate  pyruvate transaminase	1.59265e-05	0.000320604
+ABC transporter ATP binding protein	0.000191126	0.000504879
+UniRef50_A8Z2F6	0.00082085	0.000686725
+UniRef50_T9L0J3	0.00159685	0.000101135
+UniRef50_I4EST6	0.000445958	2.95002e-05
+Anthranilate synthase component II	1.19237e-05	2.16861e-05
+Binding protein dependent transport systems inner membrane component	0.000258712	0.00313286
+Alpha beta hydrolase fold	0.0290572	0.00203076
+Lipopolysaccharide export system ATP binding protein LptB	1.09086e-05	2.93284e-05
+Multidrug resistance protein MdtB	0.000755318	9.47581e-05
+Adenosine deaminase	0.00261771	0.0038537
+hypothetical protein	9.90507e-06	1.33658e-05
+Amino acid amide ABC transporter membrane protein, 2, HAAT family	0.00496043	0.000686933
+UniRef50_E9UN53	0.000145962	2.07286e-06
+Spermidine putrescine import ATP binding protein PotA	9.21581e-06	4.62527e-06
+UniRef50_E1W4Y0	1.35285e-05	0.000281197
+UniRef50_E1W4Y6	0.000187408	0.000134879
+Probable tRNA sulfurtransferase	0.00662259	0.00368071
+Ribosomal RNA small subunit methyltransferase A	0.000329938	0.00229348
+PREDICTED	2.26848e-06	2.56153e-07
+UniRef50_R1DHJ6	0.000329758	0.000114763
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase 2	0.000487598	0.000720389
+Cellulose synthase operon protein C	0.000505307	0.000322967
+UniRef50_U6KCN1	4.1512e-06	2.16378e-05
+hypothetical protein	2.20694e-05	4.22987e-05
+Lysozyme	0.000362424	4.40987e-05
+UniRef50_U5SV18	4.76012e-05	6.1465e-05
+Binding protein dependent transport system inner membrane component	0.000458709	0.00045707
+ABC transporter permease	3.54755e-05	9.67117e-05
+UniRef50_M9R962	0.000147597	1.82661e-05
+UniRef50_Q9RS94	0.000135705	0.010592
+DNA polymerase IV	0.00225455	0.000117821
+UniRef50_Q9RS99	0.000122813	0.021035
+polyamine ABC transporter substrate binding protein	2.34263e-05	8.95901e-06
+Phosphoglycerate kinase	3.28883e-06	1.85938e-05
+FhuE receptor	5.9707e-05	0.00183723
+Citrate transporter	0.000699621	0.00132799
+Arginine  tRNA ligase	0.00281157	0.000583681
+Benzoate transport protein	0.000206636	0.000483793
+23S rRNA  methyltransferase RlmB	0.000136439	0.00148989
+hypothetical protein	0.000103758	1.65432e-05
+Inner membrane transport protein YqeG	0.00263307	0.000703078
+UniRef50_V6LYC7	0.000196048	0.000204679
+Phosphoenolpyruvate synthase	8.56604e-05	0.0253378
+UniRef50_M4X1W1	4.82591e-05	0.00256528
+UniRef50_F2A9W7	0.000384743	6.30015e-05
+UniRef50_F2A9W6	0.000432845	0.000134396
+Inner membrane transport permease	0.000221414	0.00177166
+hypothetical protein	5.32499e-06	3.7233e-06
+hypothetical protein	4.53723e-06	3.49653e-06
+Inhibitor of g type lysozyme	0.0011194	0.000231404
+Basic membrane protein A immunodominant antigen P39	0.000462199	0.00118612
+UniRef50_K2GDX3	0.000227821	3.80423e-05
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.28121e-05	6.00997e-05
+Probable diguanylate cyclase YfiN	0.0025154	4.47505e-06
+sodium	1.00431e-05	0.000432104
+hypothetical protein, partial	6.20542e-05	8.56475e-05
+Transcriptional regulator, LacI family	0.00338579	0.000275008
+LysR family transcriptional regulator	3.93086e-05	9.46231e-06
+Low affinity potassium transport system protein kup	5.95661e-05	0.00159556
+transposon Tn917 resolvase	9.67142e-06	3.71197e-05
+Probable chemoreceptor glutamine deamidase CheD	0.000111267	8.23394e-06
+3 methylornithine synthase PylB	0.000186626	0.00106301
+ABC transporter	9.29482e-06	8.77029e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	1.4378e-05	1.38602e-05
+UniRef50_K8B033	2.725e-05	3.48596e-05
+Hydrolase, HD family	0.0264972	0.00145727
+hypothetical protein	0.00010777	0.00117783
+Cytochrome c oxidase subunit 1	1.52702e-05	1.55292e-05
+Holliday junction ATP dependent DNA helicase RuvA	2.09032e-05	5.66007e-06
+Membrane protein required for colicin V production	0.000148696	0.000659017
+UniRef50_P96676	0.00124409	0.000155876
+UniRef50_A4WVS1	0.000309198	8.73632e-05
+UniRef50_A6U922	7.39526e-05	1.83959e-05
+UniRef50_X1YLX5	1.05288e-05	1.66038e-05
+Conserved domain protein	0.00432766	0.000210763
+Maltose maltodextrin transport permease	0.00665062	0.00293126
+ADP heptose lps heptosyltransferase II	0.000197158	0.00151988
+UniRef50_B4RNI0	0.000133023	0.00298945
+DnaK suppressor protein	0.000131178	9.90022e-05
+Molybdenum cofactor synthesis domain protein	0.000433802	0.000910798
+Thiol	0.00262532	0.0011248
+Cadmium, cobalt and zinc H K(+) antiporter	0.00739514	0.000424016
+Formate dehydrogenase, alpha subunit	0.00560679	0.00152964
+GTP pyrophosphokinase	2.38336e-05	0.000661096
+Threonine dehydrogenase	0.000358992	0.00577385
+UniRef50_G3XN37	0.000906989	0.0013119
+AAA domain family protein	0.00055728	6.55843e-05
+Cobyrinic acid ac diamide synthase	6.45443e-06	4.89633e-05
+UniRef50_F9Y9C1	9.28806e-05	1.30492e-06
+UniRef50_A3SVY2	0.000375247	7.21288e-05
+Acyl CoA dehydrogenase	0.000393105	0.000668687
+GNAT family acetyltransferase	0.00256153	0.000168769
+Aspartate  tRNA ligase	0.00256409	0.000997094
+UniRef50_W4K1D0	3.76513e-05	4.35102e-05
+UPF0758 protein YicR	0.00226851	0.000444805
+Excinuclease ABC, A subunit family protein 	5.53204e-07	1.72371e-05
+UniRef50_A2BXS2	0.000149569	3.06026e-05
+Rubrerythrin	0.00102299	0.000202388
+UniRef50_H3WY71	0.000138101	5.12549e-05
+Xanthine dehydrogenase iron sulfur binding subunit	0.00510526	4.84278e-06
+LysR family transcriptional regulator	0.000406376	0.000142319
+ABC transporter, permease protein	0.00536055	0.00280849
+Diaminopimelate decarboxylase	0.00711784	0.000749287
+UniRef50_Q3JLX9	5.46839e-06	3.97163e-06
+HemY domain protein	0.000280653	0.000193948
+5 nucleotidase	2.43518e-05	1.35932e-05
+Phosphatase	0.0065744	0.00132366
+UniRef50_C4RLJ2	3.86753e-05	3.11118e-05
+Serine threonine protein kinase	0.000669491	9.07835e-05
+PE PGRS family protein PE_PGRS6	4.67414e-06	2.38046e-05
+UniRef50_H1LB61	6.14857e-05	5.12039e-06
+UniRef50_W4UK26	0.000209713	0.00227815
+RNA polymerase sigma 70 factor, partial	0.000218503	3.76852e-05
+Trap transporter solute receptor, taxi family	0.0136334	0.000526302
+Aconitate hydratase 2, mitochondrial	0.000133022	0.0224407
+hypothetical protein	4.55451e-06	5.3696e-06
+Exosome complex component Rrp41	0.00349935	0.000797779
+Phosphoadenosine phosphosulfate reductase	8.11064e-06	0.00257442
+alkaline phosphatase, partial	2.14485e-05	7.06995e-05
+UniRef50_Q3IWD8	0.00341823	0.00018589
+type IV pilus biogenesis stability protein PilW	4.27032e-06	9.20888e-06
+aspartyl glutamyl tRNA amidotransferase subunit B	1.53317e-05	2.31543e-05
+hypothetical protein	5.70785e-06	1.93013e-05
+dTDP glucose 4,6 dehydratase	6.95123e-06	8.42863e-06
+multidrug ABC transporter ATP binding protein, partial	3.61467e-06	6.93271e-06
+L aspartate oxidase 2	3.73642e-06	4.43048e-06
+hypothetical protein	1.91159e-05	1.41884e-05
+Transcriptional regulator	0.000323604	0.00205415
+YfaA	0.00393348	0.000492508
+L sorbosone dehydrogenase	0.00024562	7.58318e-05
+Ferritin 1	0.00172738	0.000402596
+hemolysin expression modulating protein	1.18219e-05	4.03546e-06
+Permease, xanthine uracil vitamin C permease family	0.00214125	0.000485019
+PREDICTED	1.13424e-05	4.42011e-05
+UniRef50_H9K4X2	4.59391e-05	2.30264e-05
+UPF0316 protein SERP1448	0.0096807	0.000495629
+Major Facilitator Superfamily protein	0.00200158	0.000665073
+5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit	0.00062824	0.0205844
+Beta xylosidase	0.00233069	0.00190744
+UniRef50_D4HBL6	0.000597157	0.00350812
+Serine pyruvate aminotransferase	0.000160772	0.00026717
+Transcriptional regulator	0.000577286	0.00365803
+UniRef50_K0M4V6	0.00849941	0.000286853
+Anthranilate phosphoribosyltransferase	0.00679139	0.000188167
+UniRef50_B9JGE0	1.53622e-05	3.69531e-05
+UniRef50_W5YGZ9	0.000122872	1.67902e-05
+UniRef50_Q3JSJ3	4.55269e-06	5.19588e-05
+UniRef50_F0KG04	0.000706514	0.00199924
+endo 1,4 D glucanase	6.75695e-06	1.38705e-05
+hypothetical protein	2.64938e-05	0.000198333
+UniRef50_A5UK18	0.00494699	0.00024071
+gluconate transporter	3.5982e-06	7.60773e-05
+UniRef50_G8SGJ4	5.49927e-06	7.27617e-05
+PREDICTED	8.94705e-05	3.14147e-05
+Transcriptional regulator, HxlR family	0.00286881	0.000944543
+DNA directed RNA polymerase subunit beta	0.000142138	0.0220106
+UniRef50_D0CTG3	1.51177e-05	3.08059e-06
+Chemotaxis protein CheW	0.000225367	0.000202675
+UniRef50_F0N6L8	0.000368484	0.000715111
+Arginine  tRNA ligase	9.35372e-05	0.016933
+UniRef50_N0B321	2.0085e-05	5.84272e-06
+Non ribosomal peptide synthetase modules related protein	5.88297e-05	5.2988e-05
+two component response regulator	1.15755e-05	6.41028e-06
+Recombination protein	0.000546767	0.000105381
+hypothetical protein	6.90203e-05	4.27011e-05
+Transcriptional regulatory component of sensorytransduction system	0.000657892	0.00115115
+UniRef50_A9MHF6	0.00231731	0.000488625
+16S rRNA MC 967 methyltransferase	8.84103e-05	0.000138343
+ABC transporter ATP binding protein	0.00016364	5.3991e-05
+HTH domain protein	1.89452e-05	1.48107e-05
+PAP2 family protein	0.0120844	0.00121099
+Hydroxyethylthiazole kinase	6.40588e-06	0.000438388
+chaperonin	8.10992e-06	4.73897e-06
+UniRef50_U5NV97	0.00270113	5.68343e-05
+Flagellar protein, putative	0.000215669	4.99271e-05
+Indole 3 glycerol phosphate synthase	0.00292122	0.00011892
+hypothetical protein	2.28068e-06	1.12032e-06
+4 hydroxybenzoate transporter PcaK	0.000575587	0.00354531
+Transposase	6.07814e-05	1.20713e-05
+Phosphorylase	0.000215946	0.000868449
+Phenylalanine  tRNA ligase beta subunit	0.00363571	0.000324707
+PTS system, lactose cellobiose family IIC subunit	0.000204725	0.000764959
+Oxidoreductase dehydrogenase	0.00258245	0.00147325
+hypothetical protein	1.19706e-05	1.70782e-05
+DEAD DEAH box helicase domain protein	0.00283013	0.000231524
+major facilitator transporter	3.42461e-06	7.04401e-05
+histidine ammonia lyase, partial	3.83703e-06	1.34553e-05
+UniRef50_V6F9W2	0.000216662	0.000557336
+UniRef50_A8LMR7	5.6476e-05	1.4571e-05
+UniRef50_I6S1H3	5.05486e-06	0.000607359
+PREDICTED	4.7231e-05	3.29325e-05
+DNA ligase	0.000202704	0.00198722
+Lysine  tRNA ligase	7.88711e-06	4.92703e-06
+Polyprenyl synthetase	0.00100998	0.000491744
+Lipoprotein	7.00345e-06	2.79394e-05
+UniRef50_Q5HRB4	0.00046314	0.000404436
+hypothetical protein	7.50855e-05	5.58488e-06
+Transcriptional regulatory protein ResD	0.0135254	0.00281118
+UniRef50_A5IRW7	0.00547678	0.000773288
+UPF0056 membrane protein BU267	0.00191017	0.000170694
+Peptidase M16 domain protein	0.000665535	0.00043802
+Periplasmic protein thiol  disulphide oxidoreductase DsbE	0.00205812	0.000413755
+Lipoprotein	0.022509	0.0015266
+Putative acetyltransferase YJL218W	0.000461025	0.000146229
+UniRef50_E3A496	0.000177202	0.000307284
+Inner membrane protein yghQ	0.00159356	0.000199522
+Arsenical resistance protein acr3	0.0150722	0.000683444
+ATP binding protein	0.00611241	0.000962044
+MFS transporter 	1.28998e-05	1.40241e-05
+ATPase component of an ABC superfamily transporter	0.0197452	0.00552717
+Beta lactamase domain protein	0.000127459	0.00113305
+chemotaxis protein CheY	1.00498e-05	7.55274e-06
+TatD family deoxyribonuclease	0.000933766	0.000334839
+phosphoribosylaminoimidazole carboxylase	5.25115e-06	3.74129e-06
+UniRef50_A5UKF2	0.00126741	0.000153478
+UniRef50_S5CXQ6	0.000106642	0.00314879
+CorA like Mg2+ transporter protein	0.0161469	0.00281492
+UniRef50_G0DRH6	5.41772e-05	0.00442864
+NADH quinone oxidoreductase subunit H	0.00241078	0.00448027
+Amine oxidase	0.00364304	0.000389421
+GTPase Era	8.00053e-06	5.55204e-05
+ATP dependent DNA ligase	0.00231717	0.000216231
+UniRef50_S3X9I7	1.15234e-05	4.18359e-05
+Glucose 6 phosphate isomerase	0.00208225	0.00180895
+UniRef50_D8JHR5	0.000215276	0.0023036
+Ribose phosphate pyrophosphokinase	0.0107846	0.00706679
+DsdX permease	0.00235338	0.00106328
+Biopolymer transport protein ExbB	0.00296482	0.000551263
+Type VI secretion system ATPase	0.000811376	3.56148e-05
+UniRef50_E0RCX2	1.82192e-05	1.82209e-05
+VanZF related protein	0.00324492	0.000338811
+Kinase associated protein B	0.00692963	0.000621222
+Peptide ABC transporter, ATP binding protein	0.00537652	0.000889657
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0143706	0.0012661
+UniRef50_D2ABX7	0.00152977	8.10309e-05
+hypothetical protein	2.09841e-05	5.69153e-06
+UniRef50_B2V422	6.89178e-05	0.00132254
+Bifunctional purine biosynthesis protein PurH	0.000572125	0.00262611
+Outer membrane usher protein YraJ	0.00193583	0.000615266
+Methionine synthase	9.45343e-07	3.59583e-05
+streptomycin 3 kinase	2.39628e-05	2.18528e-05
+hypothetical protein	4.07594e-06	3.97103e-06
+UniRef50_F0RPF2	0.00066264	0.0370547
+UniRef50_F0RPF3	0.000267102	0.0278404
+hypothetical protein	7.13229e-05	1.20724e-05
+Carboxylate  amine ligase	0.00448057	0.00131489
+Dihydroorotase	4.72931e-06	1.32452e-05
+Pili assembly chaperone	0.00287061	0.000423513
+hypothetical protein	0.000611815	2.95292e-05
+UniRef50_R5UAJ8	0.000288498	0.000495606
+Mutator MutT protein	1.44363e-05	3.36453e-06
+hypothetical protein	5.51722e-06	7.52058e-06
+molybdopterin biosynthesis protein MoeA	4.19395e-06	3.30789e-06
+Msr4423 protein	0.000203506	8.69653e-05
+hypothetical protein	6.39141e-06	5.03938e-06
+UniRef50_C9CVV7	0.00163572	1.55042e-05
+PREDICTED	5.32739e-06	1.30479e-06
+glyoxalase	1.59046e-05	3.2861e-06
+Transcriptional regulator	0.00227287	0.00052247
+LysR family transcriptional regulator	2.12445e-05	6.42846e-06
+Alkaline phosphatase	2.20756e-05	2.70196e-06
+NADH quinone oxidoreductase subunit B 2	1.50021e-05	1.99702e-05
+Anhydro N acetylmuramic acid kinase 1	0.000196121	3.04909e-05
+PREDICTED	7.98959e-05	1.71578e-05
+UDP N acetylmuramate  L alanine ligase	3.49454e-06	3.55307e-06
+Periplasmic sensor signal transduction histidine kinase	0.00647006	0.00130173
+UniRef50_A5WG85	0.000124802	0.00244773
+UniRef50_H9JZZ5	3.64914e-05	3.49276e-06
+Protein co occurring with transport systems	0.0183475	0.00308989
+hypothetical protein	2.86561e-05	1.74517e-05
+Fcy21	0.000550577	8.72545e-05
+DNA polymerase III subunit chi	0.00091526	0.000459391
+sugar transporter	5.28577e-06	1.22642e-05
+Marine sediment metagenome DNA, contig	7.28389e-06	0.000285776
+UniRef50_I1ZKN3	1.18516e-05	3.74626e-06
+ribose phosphate diphosphokinase	6.45353e-05	5.71693e-05
+UniRef50_Q9RTM5	0.000168274	0.0205026
+Ferritin like protein 2	0.000672609	0.000388989
+UniRef50_Q08Z31	5.55995e-05	0.000114196
+UniRef50_B9E9S0	0.00330107	0.000512129
+UniRef50_Q9RZI4	7.77676e-05	0.00869683
+AsnC family transcriptional regulator	9.45451e-05	8.18514e-06
+purine nucleoside phosphorylase	1.24797e-05	2.8915e-05
+UniRef50_C5X3F1	9.95939e-05	4.74761e-05
+Cobyric acid synthase	0.000284462	3.27618e-05
+UniRef50_A6LUJ6	0.00010481	0.000514759
+UniRef50_I1HS37	0.000249912	9.50791e-05
+Lipoprotein releasing system ATP binding protein LolD	0.000235162	0.00371532
+hypothetical protein	4.13101e-05	1.72335e-05
+1,2 epoxyphenylacetyl CoA isomerase	0.00344343	0.000484682
+DNA replication terminus site binding protein	0.00148987	0.000541148
+UniRef50_UPI0002C2EB05	3.88638e-06	3.34752e-06
+Hydrolase	0.000186626	0.000474652
+Cation diffusion facilitator family transporter	0.000345191	0.00384114
+Putative glycosyltransferase TagX	0.0118973	0.000868708
+Putative transposase	2.53834e-05	0.000896491
+Putative chaC like cation transporter	3.69583e-06	1.81351e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0105474	0.000554179
+hypothetical protein	1.03239e-05	5.46465e-06
+Quinolinate synthase A	0.00449728	9.79115e-05
+Acyl CoA dehydrogenase	0.000160008	0.0192082
+hypothetical protein	5.31476e-06	7.66075e-05
+hypothetical protein	2.88664e-06	0.000275127
+hypothetical protein	4.07521e-05	8.76302e-05
+UniRef50_A3PHA2	0.00471539	0.000277972
+UniRef50_A3PHA5	0.00106681	0.000179803
+Branched chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein	3.63053e-05	5.74094e-05
+UniRef50_A3PHA6	0.00443948	2.82976e-05
+UniRef50_A3PHA9	0.00514931	0.000375071
+UniRef50_A3PHA8	0.00724318	0.00303577
+UniRef50_H0YUU4	2.10863e-05	2.77798e-05
+UPF0173 metal dependent hydrolase Pden_0574	0.0108334	0.000720756
+Ribonuclease R	4.9251e-05	0.0243985
+UniRef50_Q8P0D6	0.000119897	2.72792e-05
+UniRef50_P44023	0.0130097	0.0040693
+UniRef50_R7CLA1	0.00019014	0.000769076
+IS66 Orf2 family protein	8.34628e-05	2.11796e-05
+UniRef50_J2PZW7	0.000592232	0.00117284
+Transport protein	2.31534e-05	3.69941e-06
+Aerobic respiration control sensor protein ArcB	0.0033496	0.000206743
+DNA glycosylase	7.33324e-05	2.38516e-05
+hypothetical protein	4.37449e-05	2.46529e-05
+High affinity choline transport protein	0.00282845	0.00224755
+Prephenate dehydrogenase	0.00264346	0.000115109
+UniRef50_J1E0S9	0.00428593	0.000116958
+hypothetical protein, partial	2.6602e-06	2.71393e-06
+Outer membrane porin F	0.000897004	0.000670905
+UniRef50_Q5HQN6	0.00200445	0.000501626
+sodium	3.14302e-05	1.98998e-05
+membrane protein	6.1142e-06	3.94725e-05
+Ribonucleotide reductase	1.24621e-05	2.75555e-05
+Hpt domain protein	0.000558218	4.84799e-05
+ABC polyamine opine transporter, periplasmic substrate binding protein	0.0178639	0.00318003
+Acetolactate synthase small subunit	7.68802e-05	0.00015118
+UniRef50_V4JFT6	0.000400771	0.000164682
+Insertion sequence transposase	7.30164e-05	2.75874e-05
+UniRef50_B9K5L2	0.000534125	0.000564239
+MutT nudix family protein	0.000343417	0.0136994
+Inosine 5 monophosphate dehydrogenase	3.30777e-05	6.37125e-05
+UniRef50_T2EMC8	0.000516517	0.00057725
+UniRef50_N9ANA5	0.00011991	0.00366184
+Integral membrane protein	1.09101e-05	4.21112e-06
+UniRef50_V3H5M7	1.56713e-05	1.47182e-05
+UniRef50_E8SI82	0.0056981	0.000752253
+Putative glyoxalase family protein	1.82426e-05	2.45232e-05
+hypothetical protein	1.18669e-05	8.45974e-06
+hypothetical protein	8.42693e-05	1.48435e-05
+hypothetical protein	5.93496e-06	6.96864e-06
+hypothetical protein	7.29799e-06	7.55034e-06
+C4 dicarboxylate ABC transporter substrate binding protein	0.000161582	2.72822e-05
+PREDICTED	7.92259e-06	2.59115e-06
+chorismate synthase	1.5144e-05	5.7737e-05
+diguanylate cyclase, partial	0.000129504	5.8562e-05
+UniRef50_U3ASA7	1.6464e-06	1.68613e-06
+MTA SAH nucleosidase	0.000191584	0.000638957
+UniRef50_C7NKD3	2.4404e-05	0.00513196
+Membrane associated protein TcaA	0.0187883	0.00315372
+Leucyl phenylalanyl tRNA  protein transferase	1.70573e-05	4.79914e-05
+LigA	0.000107008	6.34329e-05
+Deoxycytidine triphosphate deaminase	0.00420424	0.00102581
+Two component sensor EnvZ	0.000451485	6.85904e-05
+tRNA  methyltransferase TrmJ	0.0023942	0.000726494
+UniRef50_G2KD33	6.47624e-05	0.00183989
+HTH type transcriptional repressor BdcR	0.000866371	0.00185132
+hypothetical protein	0.000680796	0.00445434
+hypothetical protein	0.000580799	4.18314e-05
+response regulator receiver protein	9.73634e-05	0.0012659
+N acetylglucosamine 6 phosphate deacetylase	0.000266397	0.000736243
+Probable diguanylate cyclase YcdT	0.00234504	0.000288244
+Phosphoribosylformylglycinamidine synthase 2	9.15636e-06	1.46779e-06
+Binding protein dependent transport systems inner membrane component	0.000114732	0.00288508
+Branched chain amino acid ABC transporter, ATP binding protein	0.000152977	0.0216059
+UniRef50_Q8CR74	0.00944268	0.000855984
+Marine sediment metagenome DNA, contig	4.3163e-05	0.00418009
+Acetyltransferase	0.0123231	0.00155083
+ribose ABC transporter permease	6.45609e-05	1.51857e-05
+Phosphate ABC transporter, permease protein PstA	0.00642295	0.000809058
+UniRef50_B1B3J5	0.00347197	0.00236276
+Ion transport protein	0.00346829	0.000909058
+UniRef50_Q8DUD5	0.00160067	0.00064132
+UniRef50_B9KWI5	0.00165997	0.000119873
+hypothetical protein	1.70031e-05	3.13276e-06
+MULTISPECIES	9.83051e-06	0.000190524
+ATPase	2.54485e-05	0.000108698
+UniRef50_K0CB29	0.000117401	0.00395319
+Nickel binding periplasmic protein	0.00275163	7.04748e-05
+UniRef50_Q3IXY3	0.00894368	0.00103642
+Phosphoenolpyruvate protein phosphotransferase	7.88484e-05	0.00287054
+Transposase	0.000239161	5.11147e-05
+Glutamate 1 semialdehyde 2,1 aminomutase	9.06751e-06	0.0010638
+hypothetical protein	2.8202e-05	1.3094e-05
+TraK protein	0.0240895	0.00310767
+UniRef50_UPI0003F107C2	1.86072e-05	8.09785e-06
+T2	3.43211e-06	5.67535e-05
+Elongation factor Ts	0.00304719	0.00184306
+hypothetical protein	0.000133506	0.000303473
+hypothetical protein	1.64972e-06	5.68112e-06
+MazG protein	8.7839e-06	4.65875e-06
+Triosephosphate isomerase	0.000567458	3.58589e-05
+hypothetical protein	6.8453e-06	4.38559e-05
+protein meaA, partial	0.000388832	8.58024e-05
+UniRef50_M4N5D5	0.000557325	0.000154261
+Prevent host death family protein	6.05465e-05	2.27082e-05
+HD domain protein	0.00512648	0.00173426
+Potassium transporting ATPase C chain	3.9018e-06	0.000171291
+LPXTG domain containing protein cell wall anchor domain	1.54755e-05	1.81789e-05
+2 dehydro 3 deoxygluconokinase	0.00239616	0.000555357
+UniRef50_A0A028QNK4	0.00477436	0.000378839
+ATPase AAA 2 domain protein	0.000282317	0.0137902
+Transcriptional regulator, RpiR family	0.000130277	0.00111023
+regulator	8.84713e-06	9.90033e-06
+UniRef50_A8FXN6	7.95148e-05	1.65118e-05
+Glycosyl transferase, group 1	0.000364824	0.000326504
+Glycosyltransferase, group 1 family protein	0.000304575	0.00177847
+indole 3 glycerol phosphate synthase	6.75889e-06	6.81652e-06
+PKHD type hydroxylase YbiX	0.0035478	0.000461761
+Undecaprenyl diphosphatase	0.000186971	0.00298059
+ABC transporter family protein	0.0108161	0.000856361
+ABC transporter ATP binding protein	0.00010683	2.34951e-05
+Probable subtilase type serine protease DR_A0283	0.000437207	0.0280648
+Molecular chaperone, DnaJ family	7.98822e-06	5.47246e-06
+ATP synthase subunit delta	0.000869898	0.000183234
+L arabinose transport system permease protein AraH	0.00217786	0.00102965
+UniRef50_C2LZ77	1.28105e-05	1.98319e-05
+hypothetical protein	5.70469e-06	5.14869e-06
+Helicase	3.72838e-05	0.00233733
+UniRef50_A0A011Q8A5	1.87819e-05	4.4091e-05
+Glutamine transport ATP binding protein GlnQ	0.00314893	0.00298681
+UniRef50_N6UYQ4	2.42867e-05	3.94952e-06
+7 carboxy 7 deazaguanine synthase	0.000165245	0.000305757
+GntR family transcriptional regulator	7.32689e-05	0.00211501
+PREDICTED	3.7585e-06	4.40245e-06
+Oxidoreductase alpha  subunit	4.22977e-05	0.00253746
+Marine sediment metagenome DNA, contig	1.10667e-05	2.02494e-05
+Glutamyl Q tRNA synthetase	4.13886e-06	4.34388e-06
+Replication initiation factor domain protein 	0.000301387	0.000582505
+Tricarboxylate transport protein TctA	2.60681e-06	9.31383e-06
+S ribosylhomocysteine lyase	0.000211223	0.00340054
+UniRef50_S5UDS6	0.0112183	2.42666e-05
+Chitinase	5.65067e-06	6.48182e-06
+NADH quinone oxidoreductase subunit E	0.000240556	4.39276e-05
+Marine sediment metagenome DNA, contig	5.21435e-05	0.000952828
+Cell shape determining protein MreC	0.00356527	0.00123486
+UniRef50_S1T2A2	0.000128293	0.000194128
+hypothetical protein	0.00100804	0.000139015
+General secretion pathway protein F	0.000267521	0.00453057
+Fumarate hydratase, class I	0.000886515	0.00581842
+UniRef50_S1T2A8	0.000101362	0.000456158
+UniRef50_J3NR99	0.000458597	4.07557e-05
+hypothetical protein	2.37706e-05	8.2481e-06
+Signal transduction histidine kinase	0.00268356	0.000865899
+MotA TolQ ExbB proton channel	0.000286979	0.000602291
+UniRef50_Q08SF7	0.000745285	0.00125893
+UniRef50_A0A031D1F0	0.000586805	0.00023167
+Resolvase, N terminal domain	0.000152343	0.000487387
+UniRef50_X6C1Q7	0.000334118	3.79459e-05
+Glutamate  tRNA ligase, chloroplastic mitochondrial	3.28852e-06	7.60002e-06
+Protein NrfC homolog	0.00337883	0.0004538
+ribosomal protein S5 domain 2 like protein	1.61027e-05	7.77256e-06
+4 hydroxy tetrahydrodipicolinate synthase	4.80832e-06	1.27757e-05
+Asparagine synthetase	0.000215739	0.000112383
+Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA	0.00038758	0.00392244
+Probable tRNA dihydrouridine synthase	0.000123429	3.32035e-05
+Binding protein dependent transport systems inner membrane component	0.0122874	0.00164402
+Malonyl CoA acyl carrier protein transacylase	0.00031302	9.51111e-05
+DNA mismatch repair protein MutL	0.00340724	6.89592e-05
+Peptide methionine sulfoxide reductase MsrA MsrB	4.6225e-06	0.000960018
+CRISPR associated endonuclease Cas1	0.00184494	0.000222727
+UniRef50_F0KK42	0.000733787	0.00244345
+Glucose uptake protein GlcU	0.0190946	0.0035331
+UniRef50_F0YA24	0.000198438	9.01186e-05
+UniRef50_P77554	0.00278569	0.00037958
+Alginate biosynthesis protein AlgX	0.000148688	9.68553e-05
+Cbb3 type cytochrome c oxidase subunit CcoP	0.00313512	0.000492765
+UniRef50_M2QHJ0	8.36511e-05	1.482e-05
+UniRef50_P77559	0.002222	0.000269615
+Ribonuclease D	7.0288e-05	6.93527e-06
+ABC transporter permease	0.0150393	0.00153723
+UniRef50_D3E2D0	0.00181805	0.00021422
+Phosphoribosylformylglycinamidine synthase 1	2.28483e-05	8.30428e-06
+Cyclic pyranopterin monophosphate synthase	0.00446403	0.000500429
+Type I restriction enzyme R protein	3.30057e-05	0.00175121
+50S ribosomal protein L9	5.18446e-05	1.16794e-05
+acetate CoA ligase	1.3104e-05	0.000159454
+Acyl carrier protein	2.72855e-05	0.000197513
+Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial	8.02853e-05	9.49252e-05
+UDP N acetylglucosamine 2 epimerase	6.01346e-06	9.72272e-06
+UPF0754 membrane protein SH1116	0.0170081	0.00418546
+3 oxoacyl ACP reductase	1.46578e-05	1.0664e-05
+2 nitropropane dioxygenase family protein	0.00322339	0.000194391
+Lipoprotein, putative	5.3448e-05	1.68542e-05
+ATP dependent Clp protease proteolytic subunit 1	6.15745e-06	1.90478e-05
+hypothetical protein	4.49768e-05	6.41796e-06
+Metallophosphoesterase 	8.00463e-05	0.00026277
+hypothetical protein	5.8054e-05	1.65259e-05
+Multidrug resistance protein MdtG	0.00103601	0.000115405
+UniRef50_E8JLX0	0.000330172	0.000401745
+S ribosylhomocysteine lyase	0.00138732	0.000178092
+PREDICTED	5.63486e-05	0.000121905
+hypothetical protein	6.18422e-06	3.00367e-06
+hypothetical protein	6.47412e-07	4.48471e-05
+UniRef50_Q8LK02	4.53182e-05	1.86327e-06
+PREDICTED	9.81414e-06	5.64147e-06
+Putative SOS response associated peptidase YedK	0.00282071	0.000677848
+Carbamate kinase	0.000282048	0.00173573
+UniRef50_J7Q543	0.0109748	0.00159707
+Phosphopantetheine adenylyltransferase	2.39856e-05	6.06585e-05
+UniRef50_I1PC32	3.30383e-05	1.99273e-05
+N succinylarginine dihydrolase	1.28083e-05	2.3987e-05
+Periplasmic binding protein LacI transcriptional regulator 	0.000239093	2.78725e-05
+hypothetical protein	0.00388034	0.000715882
+Arabinose transport protein 	1.42109e-05	2.46245e-05
+Succinyl CoA ligase [ADP forming] subunit alpha 1	3.52402e-05	2.41362e-05
+Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein	0.000467966	0.0015447
+ATP synthase subunit b	0.00539228	0.000373793
+UniRef50_H2ITE9	1.56153e-05	1.04886e-05
+UniRef50_A6W759	3.02232e-05	5.61332e-06
+UniRef50_F9XKQ7	0.000304971	0.000207845
+Glycine  tRNA ligase beta subunit	0.00132211	4.76312e-05
+Heat shock protein 70 	0.000102019	5.73757e-05
+2 isopropylmalate synthase homocitrate synthase family protein	0.000349446	0.000389163
+Rrf2 family protein	1.88629e-05	0.00461309
+UPF0319 protein YccT	0.00807096	0.00153859
+4 hydroxy tetrahydrodipicolinate reductase	0.00255488	0.00427385
+molybdenum cofactor biosynthesis protein A, partial	7.3128e-06	2.31527e-05
+Complete chromosome sequence, strain ATCC BAA 2069	0.00154991	0.00142701
+methionine synthase	1.57498e-05	1.40352e-05
+UniRef50_F8HCE7	0.00203525	0.000396401
+hypothetical protein	0.000423604	1.0221e-05
+UniRef50_Q9RY78	0.000244466	0.0014112
+UniRef50_A3JAP6	8.97174e-05	3.69411e-06
+ABC transporter ATP binding protein, partial	1.13731e-05	1.24148e-05
+Zinc binding protein AdcA	0.00413674	0.00304529
+ADP dependent  NAD(P)H hydrate dehydratase	0.000133199	0.0011861
+NADH quinone oxidoreductase subunit I	5.3289e-05	0.00421531
+Proline specific permease proY	0.000574145	0.00176746
+Ribonuclease HII	2.2795e-05	5.86431e-06
+CFA I fimbrial auxiliary subunit	0.000655614	0.00204685
+UniRef50_R7EZG6	1.23987e-05	9.27569e-06
+L lactate permease	9.46247e-05	0.00103492
+hypothetical protein	4.83093e-05	8.67043e-06
+UniRef50_Q8CSV4	0.0161494	0.00381025
+hypothetical protein	1.20072e-05	9.45919e-06
+UniRef50_G9EJ55	9.70992e-06	9.11073e-06
+ComF operon protein A, DNA transporter ATPase	0.0144675	0.00542936
+Mobile element protein	4.61092e-05	1.17895e-05
+Integral membrane protein MviN	0.000123278	0.00272409
+Chromosome partitioning protein ParB	8.8323e-05	1.06565e-05
+Ribosomal RNA small subunit methyltransferase D	1.80633e-05	8.6424e-06
+hypothetical protein, partial	1.27926e-05	1.24815e-05
+Putative glucosyl transferase	0.000363108	7.61833e-05
+UniRef50_G7U5G6	3.0354e-05	8.58052e-05
+hypothetical protein	2.45695e-06	2.55836e-06
+Inner membrane protein YeaI	0.000837282	0.000235656
+UniRef50_J9UQW7	0.00171126	0.00144814
+N5 carboxyaminoimidazole ribonucleotide synthase	7.15824e-06	2.81725e-06
+UniRef50_Q6FDQ7	0.000138878	0.00304037
+hypothetical protein	2.33038e-05	1.5187e-05
+UniRef50_B5HTP9	0.000212944	0.000169086
+spermidine putrescine ABC transporter permease	5.9284e-06	9.77019e-05
+Carbohydrate kinase, YjeF related protein	0.000502419	0.000377878
+Predicted peptidase	0.00311668	0.000424423
+UniRef50_U5UFJ6	0.00386681	0.0013843
+hypothetical protein	2.96701e-05	1.7762e-05
+Capsule polysaccharide export ATP binding protein CtrD	0.000200614	0.000587252
+hypothetical protein	3.29517e-05	5.74776e-06
+UniRef50_A9MZ05	9.10151e-05	6.76082e-06
+UniRef50_A6LSS4	0.000180616	0.000488396
+UniRef50_Q5F4W7	0.000142605	0.000994999
+Protein AraJ 	0.000189959	2.3151e-05
+Extracellular solute binding protein family 1	0.000127803	0.000701275
+UniRef50_U5V3F5	7.73855e-05	0.000145771
+UniRef50_K7UNN0	7.421e-06	4.5312e-06
+UniRef50_K2H9R9	0.000175279	7.97835e-05
+hypothetical protein	2.08786e-05	3.73716e-05
+Cyclic di GMP phosphodiesterase Gmr	0.00180397	6.05427e-05
+hypothetical protein	5.7935e-06	1.04588e-06
+UniRef50_K3YVC5	0.000151145	2.58007e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00659589	0.00180923
+Marine sediment metagenome DNA, contig	1.7898e-05	0.000269061
+UniRef50_A3JZY7	0.000580256	0.000485324
+7 cyano 7 deazaguanine synthase	7.70595e-06	1.19466e-05
+D alanine  D alanine ligase	0.000534115	0.0117018
+E3 ubiquitin protein ligase SIAH2	1.09262e-05	6.83244e-06
+UniRef50_A4WPA7	0.000311473	8.14332e-05
+Flagellar protein, putative	5.99185e-05	3.8365e-05
+UniRef50_A4WPA8	0.000895496	0.000251391
+UniRef50_K6TWJ0	0.00167253	0.000188624
+hypothetical protein	4.64196e-06	1.72989e-05
+Ribonuclease 3	0.0139338	0.00242439
+Phosphoribosylformylglycinamidine cyclo ligase	0.00721818	0.00184151
+FK506 binding protein 1	2.06669e-05	1.54626e-05
+nitrate reductase, partial	8.31585e-07	1.4999e-06
+malonyl CoA ACP transacylase	7.09244e-06	5.98881e-06
+Probable cell surface glycoprotein	1.00236e-05	3.2527e-06
+UniRef50_A6M1K6	0.00032212	0.000274247
+Expressed protein 	6.67267e-05	3.81294e-05
+thioredoxin	0.000439694	0.000177109
+hypothetical protein	0.000103308	9.58881e-06
+UniRef50_J7Q7A9	0.000736715	0.000208802
+antiporter	4.73554e-05	2.24758e-05
+UniRef50_E8PEU6	3.65672e-06	0.00306115
+UniRef50_Z2D7Y6	0.000495835	1.52286e-05
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	5.08087e-06	9.33477e-05
+Fimbria adhesin EcpD	0.0029244	0.00092355
+DNA primase large subunit PriL	0.00194557	0.000212916
+hypothetical protein	9.02784e-06	1.10893e-05
+hypothetical protein	7.15488e-05	0.000110856
+hypothetical protein	3.39132e-05	1.73981e-05
+malate dehydrogenase	4.91813e-05	1.01702e-05
+Lipopolysaccharide biosynthesis	0.00471602	0.000526807
+UniRef50_D6SDA6	0.00215002	0.000627236
+Valine  tRNA ligase	1.88327e-05	1.03531e-05
+Undecaprenyl diphosphatase	0.000107635	1.15818e-05
+UniRef50_B9KU47	0.00105799	0.000787586
+Putative glutathione dependent formaldehyde activating enzyme	0.000103206	1.58979e-05
+peptidase	4.37553e-05	1.25923e-05
+UniRef50_D8HS39	8.39144e-05	1.27661e-05
+UniRef50_N3DVV4	0.000802865	0.000317261
+UniRef50_F6HHF0	6.00702e-05	4.69328e-05
+rod shape determining protein MreB	4.2368e-05	4.25349e-06
+Ribose phosphate pyrophosphokinase 3	1.26832e-05	4.2294e-05
+transcriptional regulator	5.4339e-05	3.32408e-05
+Autolysin	0.0191943	0.00379973
+UniRef50_C1DNK0	0.000342348	0.000646246
+Aconitase family 	0.00146194	0.000712991
+UniRef50_I0C2F4	0.0135625	0.00233282
+Phosphoenolpyruvate carboxykinase [ATP]	7.31279e-06	4.89573e-05
+Putative ABC transporter substrate binding protein	0.00012113	6.05146e-05
+hypothetical protein	0.000296118	2.04171e-05
+UniRef50_A0A059IKZ4	0.000143961	4.78557e-05
+aspartyl glutamyl tRNA amidotransferase subunit B	4.4038e-05	7.70355e-06
+Transposase	0.0163277	0.00397954
+Leucine  tRNA ligase	6.05938e-06	0.000973638
+Protoheme IX farnesyltransferase	1.06828e-05	1.74577e-05
+UniRef50_X5QZB1	0.0030035	0.00147489
+UniRef50_H9UQR5	0.000521732	0.000159476
+UniRef50_W4SVT3	6.54408e-05	4.68212e-05
+DeoR family transcriptional regulator	0.000171417	0.00204408
+polyamine ABC transporter substrate binding protein	9.03197e-06	0.000161439
+hypothetical protein	6.80047e-05	5.61524e-06
+Pseudouridine synthase	0.00031066	0.00191012
+Carboxynorspermidine synthase	9.57624e-05	9.8106e-05
+UniRef50_J3I1E6	1.84038e-05	8.6618e-06
+hypothetical protein, partial	1.5236e-05	0.00418964
+NUDIX hydrolase	0.0032239	0.000209289
+UniRef50_A0A010IZE0	4.53532e-05	0.00013265
+UniRef50_Q82K60	6.20726e-05	1.14187e-05
+UniRef50_A7BWG5	1.54555e-05	1.0497e-05
+Caffeine dehydrogenase subunit gamma	7.33551e-05	6.77206e-05
+tRNA modification GTPase MnmE	0.031541	0.00613836
+hypothetical protein	7.30276e-06	7.05744e-06
+Phosphosugar isomerase	0.0116615	0.000833158
+PTS system, mannose fructose sorbose family, IIC component	0.00061699	0.00237023
+Transketolase, thiamine diphosphate binding domain protein	5.14281e-05	2.50246e-05
+UniRef50_A5UJG6	0.00117808	0.000623499
+UniRef50_L1INE5	6.61076e-05	4.97251e-05
+Aminomethyltransferase	4.18932e-06	2.37213e-05
+50S ribosomal protein L18	0.00127451	0.000187964
+Oligopeptidase B	0.000333554	4.78342e-05
+Elongation factor P	0.0002396	0.00216406
+ISSfl4	4.51905e-05	1.6512e-05
+UniRef50_K0SGI4	0.000252461	1.78346e-05
+Inner membrane transporter YhaO	1.18639e-05	1.33521e-05
+UniRef50_K2CR97	0.000145749	9.38595e-06
+hypothetical protein	0.000103722	2.16119e-05
+UniRef50_I0C1L9	0.00690279	0.00169708
+Amino acid ABC transporter permease protein	0.00625515	0.000234954
+UniRef50_B9KWA6	0.000156136	0.000269238
+UniRef50_A0A058T6Z9	0.000224427	0.000405883
+UniRef50_D6K2W1	0.000567036	0.000110093
+Uracil phosphoribosyltransferase	8.02392e-06	4.30649e-05
+amino acid ABC transporter ATP binding protein, partial	2.5659e-05	0.000143198
+Ferredoxin	0.00262387	0.000493128
+MULTISPECIES	4.80117e-05	0.000576071
+stage V sporulation protein D	1.63675e-06	2.48837e-06
+organic hydroperoxide resistance protein	3.08825e-05	3.1092e-05
+FAD dependent oxidoreductase	0.00057958	0.000217167
+hypothetical protein	5.24609e-05	3.76278e-05
+UniRef50_Q69XT0	7.73497e-05	0.00013429
+hypothetical protein	2.63485e-06	2.11341e-06
+Phage phi C31 gp36 major capsid like protein	0.00533112	0.000741756
+GTPase HflX	0.00104313	0.000293178
+Endoribonuclease L PSP	0.000493086	0.000101834
+iron ABC transporter	3.24761e-05	0.000357632
+Adenylyl sulfate kinase	0.000545571	0.0330996
+UPF0753 protein SAR0453	0.0129275	0.00143508
+Riboflavin biosynthesis protein 	0.000134083	0.00170491
+DNA repair protein RecN	0.00020529	0.00280639
+leucyl tRNA synthase	8.20842e-06	1.72191e-06
+Thiol disulfide isomerase and thioredoxin	0.00365866	0.000820482
+UniRef50_F0YAU6	3.37799e-05	8.66023e-06
+UniRef50_V9QPJ8	6.8149e-06	1.283e-05
+4 alpha glucanotransferase	1.16429e-05	0.000335431
+Multidrug efflux RND transporter, membrane fusion protein MexE	0.000201752	0.000412651
+chemotaxis protein CheY	2.99365e-05	1.45886e-06
+Polyferredoxin protein MvhB	0.00753937	0.000750538
+UniRef50_C0HHH0	1.84735e-05	6.11673e-06
+Putative aliphatic sulfonates binding protein	0.00335819	0.000408796
+Phosphoribosyl ATP pyrophosphatase	4.39222e-05	7.65526e-05
+UniRef50_Q3IXK5	0.0137904	0.000928876
+Sulfate thiosulfate import ATP binding protein CysA	0.00391368	0.000724843
+UniRef50_Q3J5B1	0.00169579	0.000104523
+MATE efflux family protein	0.000183661	0.00105593
+Xanthine phosphoribosyltransferase	3.60364e-05	1.11763e-05
+UniRef50_R7TBI6	7.60599e-06	1.74248e-05
+hypothetical protein, partial	1.6302e-05	3.79332e-05
+hypothetical protein	4.35197e-05	1.2785e-05
+UniRef50_W7S895	3.40633e-05	6.75582e-05
+hypothetical protein	0.000149094	6.81357e-05
+UniRef50_F0PBM9	6.60503e-06	0.000413224
+UniRef50_X1YAY8	3.64457e-05	5.86944e-05
+ATPase	1.53042e-06	2.59756e-05
+UniRef50_H3FTW8	2.12696e-05	3.36867e-06
+UniRef50_S4RAN5	1.91954e-05	7.24711e-06
+hypothetical protein	6.44122e-06	5.45144e-05
+AdaA	0.000199535	0.00381862
+Serine aspartate repeat containing protein C	0.00147448	0.000539856
+Transcriptional regulator YqjI	0.00233181	0.000687649
+CTP synthase 1 A	2.55537e-06	6.03783e-05
+UniRef50_Q3JNW3	0.000119533	0.000152049
+Acetylornithine acetyl lysine aminotransferase	4.36796e-06	7.43811e-05
+arginyl tRNA synthetase	4.23645e-06	4.21723e-06
+UniRef50_P37325	0.00169426	0.000109761
+CRISPR associated endoribonuclease Cas2	0.00199249	0.000307482
+ATP dependent DNA helicase RecQ	2.06315e-05	4.08184e-06
+Inorganic pyrophosphatase	0.00431825	3.18273e-05
+hypothetical protein	2.13348e-05	6.36217e-06
+UniRef50_I0CNI8	1.12557e-05	0.00126747
+Branched chain amino acid transport system 2 carrier protein	0.00387555	0.000502366
+hypothetical protein	3.36326e-05	8.86881e-06
+UniRef50_C9YGV0	4.13589e-06	1.23602e-05
+UniRef50_P44555	0.00014925	0.00552761
+acyl CoA dehydrogenase NM domain like protein	5.63336e-06	5.81911e-05
+Pyrimidine nucleoside phosphorylase	0.000297831	0.000437975
+UniRef50_I7DAX1	1.87925e-06	4.59415e-06
+Membrane protein	6.36599e-05	0.00271981
+UniRef50_R6H7C0	0.000167759	3.8138e-05
+TRAP transporter, DctM like membrane protein	7.00389e-05	2.21346e-05
+UniRef50_A8ACU9	0.000166922	0.00117685
+USG 1 protein homolog	0.000209906	0.000383529
+Transcriptional regulator, AraC family with amidase like domain	0.00208948	9.461e-05
+Nitrogenase	0.000552973	0.000903554
+DNA mismatch repair protein MutS	2.47506e-06	2.9819e-05
+PREDICTED	1.95736e-06	7.52269e-06
+Cell division protein FtsQ	0.000479565	0.000132818
+Dihydroxy acid dehydratase	5.45003e-05	4.36101e-05
+hypothetical protein	2.08704e-05	0.00168729
+Lipid II flippase FtsW	0.000669672	0.000156365
+Acyl CoA dehydrogenases	9.81564e-05	3.28151e-05
+4 alpha glucanotransferase	3.54092e-05	0.0033234
+UniRef50_S9ULD0	1.15808e-05	0.000110966
+Asparagine synthetase	0.000558946	0.000590506
+hypothetical protein	1.02231e-05	8.12866e-06
+UniRef50_A7MGN4	5.03564e-05	3.45705e-05
+hypothetical protein	7.6039e-06	6.76193e-06
+GTP cyclohydrolase FolE2	0.0105024	0.000889491
+carbohydrate kinase, FGGY	0.000224664	6.26552e-05
+SNF2 related protein	7.72009e-05	0.00041034
+Peptidase like protein	8.38383e-06	0.000846397
+Z47f protein	8.38598e-05	6.28338e-06
+UniRef50_Q5HQ44	0.0207861	0.00454331
+ABC transporter	4.89047e-05	7.60771e-06
+Xanthine dehydrogenase, C terminal subunit	0.000169127	0.00782686
+Predicted methyl accepting chemotaxis protein	0.000634278	0.00106244
+2 hydroxyacid dehydrogenase	0.000791897	0.000451451
+AraC family transcriptional regulator	0.00329562	0.000567397
+UniRef50_S6AEX2	0.000777912	0.000173453
+hypothetical protein	7.1416e-05	6.60949e-06
+UniRef50_A4BQV7	0.000201136	1.73885e-05
+GGDEF domain protein	7.00656e-05	0.00372118
+UniRef50_Q9RZ34	0.000457008	0.0339127
+Prophage CP4 57 integrase	0.000969159	0.000595683
+Methionine aminopeptidase A	5.80861e-05	2.01983e-05
+Marine sediment metagenome DNA, contig	4.79209e-05	0.00043013
+anaerobic glycerol 3 phosphate dehydrogenase subunit B, partial	7.35721e-05	6.17089e-05
+citrate lyase	6.214e-05	2.12632e-05
+UniRef50_N6U9J3	5.36839e-06	4.55574e-06
+amino acid transport protein, partial	7.65014e-05	0.000183584
+hypothetical protein	0.000151539	2.29535e-05
+hypothetical protein, partial	0.000167254	8.58855e-05
+TRAP dicarboxylate transporter, DctM subunit	4.29296e-06	4.34707e-06
+UniRef50_P76537	0.00186406	0.000158351
+Tyrosine  tRNA ligase	0.000128215	7.57504e-05
+hypothetical protein	1.55507e-05	3.43642e-06
+Ribonuclease III Rnc	0.00311511	0.00120046
+UniRef50_Q8FAM3	0.00177822	0.000467629
+UniRef50_E3H102	0.00284208	0.00082473
+Carbamoyl phosphate synthase small chain	3.22593e-05	9.37779e-06
+LPP20 lipoprotein	0.000801306	0.00246402
+Membrane protein insertase	0.000255963	0.00434907
+tRNA pseudouridine synthase D	0.000108447	0.0018511
+UniRef50_B3PB14	2.62332e-06	4.59411e-06
+ATPase	9.33244e-05	7.50013e-05
+hypothetical protein	1.50436e-05	2.35136e-06
+hypothetical protein, partial	0.0001176	0.00100996
+UniRef50_K7VAT5	9.24097e-06	1.72055e-05
+Peptide ABC transporter ATP binding protein	6.80354e-05	0.00284686
+Aminoglycoside response regulator	0.0012471	0.00148165
+Putative Holliday junction resolvase	0.0142238	0.00441494
+UniRef50_D3V3Z5	2.31227e-05	1.84893e-05
+UniRef50_S0JG44	0.00247397	0.000319352
+ABC transporter	5.91793e-05	9.82101e-06
+Glutamate 1 semialdehyde 2,1 aminomutase	0.00400049	2.04649e-05
+Transcriptional regulator PsrA	0.00118891	0.000256895
+succinate semialdehyde dehdyrogenase	9.31344e-06	5.58882e-05
+UniRef50_K8E2T1	3.46024e-05	5.46462e-05
+acetyltransferase	2.34536e-05	2.90003e-05
+hypothetical protein	0.00042483	0.000129472
+UniRef50_Q1R4J9	0.00366217	0.000926983
+UniRef50_F9Z1V7	0.000116601	0.000787371
+UniRef50_P31058	0.00173862	0.000442484
+UniRef50_L0GJH1	0.00162887	0.000801797
+NAD binding oxidoreductase	1.44816e-05	1.34421e-05
+Glycosyl transferase, family 2	6.63368e-05	0.000557263
+glycoside hydrolase family protein	1.65294e-05	1.2281e-05
+hypothetical protein	5.40321e-05	4.5924e-05
+Imidazole glycerol phosphate synthase subunit HisH	1.01811e-05	5.88546e-06
+PTS system trehalose specific EIIBC component	0.011294	0.00212668
+AzlC family protein	5.60967e-05	1.13063e-05
+Ferrous iron transport protein B	0.00334134	0.000366083
+D alanine  D alanine ligase	0.00433502	0.00068381
+UniRef50_X7X2Q6	2.66746e-05	5.30236e-06
+UniRef50_A6M1J5	0.000166471	0.000242916
+UniRef50_A6M1J9	0.000699816	0.00156564
+Mlr2349 protein	9.16131e-05	2.79269e-05
+Cmp binding factor 1	0.00610811	0.00243888
+UniRef50_U3SS19	0.00431489	0.00017333
+hypothetical protein	0.000900654	5.31295e-06
+Pyruvate dehydrogenase complex repressor	0.000147609	0.000286704
+Low affinity tryptophan permease	0.00343579	0.000306934
+UniRef50_E0TBL9	3.09696e-05	5.66718e-06
+UniRef50_J3KZC6	9.64573e-05	0.000234051
+Glucosyltransferase I	0.00418244	0.000999856
+Molecular chaperone GroES	0.00679993	0.00117067
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridin epyrophosphokinase	9.97597e-05	5.85681e-05
+Transposase	4.77213e-05	9.16569e-06
+Fumarate reductase flavoprotein subunit	6.32214e-05	0.00485222
+DNA mismatch repair protein MutS	1.79916e-06	3.74095e-05
+Organic hydroperoxide resistance protein like 2	0.0082498	0.00375558
+Thioesterase family protein domain protein	9.34724e-06	5.79384e-06
+Major facilitator superfamily MFS_1	0.00566698	0.000148654
+Phosphoheptose isomerase	1.84319e-05	9.99551e-06
+Holliday junction ATP dependent DNA helicase RuvB	9.19216e-06	5.44591e-06
+Glutamate 1 semialdehyde 2,1 aminomutase	3.39359e-06	3.49118e-06
+Dihydrofolate reductase	1.22797e-05	0.00421088
+Phosphoribosylformylglycinamidine synthase 2	6.00117e-05	8.1792e-06
+Prephenate dehydrogenase 	0.0021566	0.000141227
+PhoH	0.000204111	0.00348819
+Pseudouridine synthase	0.000113571	0.00153469
+Pseudouridine synthase	0.000137367	0.00361436
+amino acid dehydrogenase	1.82181e-05	5.60717e-06
+SAF domain protein	0.000132989	1.24387e-05
+UniRef50_Q041N3	1.01404e-05	9.7582e-06
+Phosphoribosylformylglycinamidine synthase 2	0.00360424	0.000349893
+anhydro N acetylmuramic acid kinase	2.31724e-06	1.31532e-05
+UniRef50_F0S3X5	3.91682e-05	3.11429e-05
+hypothetical protein	0.000251432	4.57536e-05
+Transposase IS4 family protein	5.73186e-05	8.7512e-06
+NAD binding domain of 6 phosphogluconate dehydrogenase family protein	7.29644e-05	0.000140621
+Cation efflux system protein CusC	0.00559263	0.0017315
+TraH	0.0326855	0.00498191
+6 phosphofructokinase	2.02567e-05	4.71829e-06
+UniRef50_E4BA85	7.5198e-06	3.05051e-05
+ABC type spermidine putrescine transport system, permease component II	3.5377e-05	5.81811e-05
+Phage tail tape meausure protein lambda family	5.4872e-05	0.00270721
+UniRef50_G1UVN7	7.57134e-05	1.31987e-05
+Tyrosine protein kinase Wzc	0.00170341	0.000453825
+hypothetical protein	3.29888e-06	4.41711e-06
+UniRef50_Q6A666	8.81787e-05	0.00318156
+UniRef50_A8AQ52	0.00248415	0.00066551
+Malate dehydrogenase	3.05773e-05	8.93638e-06
+UniRef50_E2ZRH0	0.000285851	0.000315605
+hypothetical protein	0.000166103	3.7511e-05
+2 methyl branched chain enoyl CoA reductase isoform I	3.33854e-06	1.55395e-05
+Probable phospholipid binding protein MlaC	0.00541457	0.000946814
+glutathione ABC transporter permease	1.37064e-05	1.34258e-05
+Uroporphyrinogen decarboxylase	9.23468e-06	5.09102e-06
+UniRef50_Q9RXX4	0.00036188	0.00953679
+UniRef50_A4WS74	0.000294873	4.43051e-05
+UniRef50_P39310	0.00101683	0.00139834
+Aspartate  tRNA ligase	2.45487e-06	1.98791e-06
+UPF0301 protein OA238_c37660	4.5048e-05	5.62179e-05
+AMP nucleosidase	0.0040842	0.00033587
+hypothetical protein	5.51069e-05	1.44636e-05
+30S ribosomal protein S15, partial	0.000146974	6.76663e-05
+putative esterase	0.000163148	5.76504e-05
+Aryl alcohol dehydrogenase	0.000320834	0.000888959
+UniRef50_M9RIF3	5.30542e-05	0.000115375
+hypothetical protein	1.33323e-05	5.147e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0247296	0.00287014
+Cof like hydrolase	0.00110156	0.000722915
+protein phosphatase	7.64635e-06	5.36194e-06
+UniRef50_Q9RS72	0.000115652	0.0225862
+UniRef50_L0LHI9	7.8637e-05	3.65005e-05
+Phosphoglucomutase phosphomannomutase	0.00071529	0.000190812
+Glycoside hydrolase family protein	6.67768e-06	5.11454e-05
+Cysteine  tRNA ligase	4.06579e-06	5.83183e-06
+Glyoxalase	3.75228e-05	0.000605643
+3 5 exonuclease	0.00048413	0.00199076
+Uroporphyrinogen decarboxylase	0.0127239	0.00176618
+Succinyl CoA	0.0118698	0.0202423
+Xaa Pro dipeptidase	0.00402532	0.000408479
+UniRef50_A8LRK2	0.000389645	0.000103763
+HD domain PDEase like protein	2.15397e-06	3.3976e-06
+UniRef50_F0XZC7	0.000240291	0.000271491
+Histidinol phosphate aminotransferase	0.0166322	0.00339059
+hypothetical protein	1.04836e-05	8.85618e-05
+hypothetical protein	2.97149e-05	1.53287e-05
+Glycerol uptake facilitator Permease 	0.0132224	0.000266424
+DNA gyrase subunit A	6.13053e-06	7.07772e-06
+UniRef50_J3I8M6	2.75586e-05	0.00029979
+Universal stress protein G	0.00585949	0.000286853
+UniRef50_M9VBX6	0.000199711	0.00240746
+UniRef50_M4WZP2	0.000212557	0.000335018
+Extracellular ligand binding receptor	6.77284e-06	1.20609e-05
+NADH quinone oxidoreductase subunit B 2	2.6014e-05	6.79345e-05
+UniRef50_A6VB56	0.00124934	0.00019434
+UniRef50_T1A5J7	9.70779e-06	2.23922e-05
+DNA repair protein RadA	7.91899e-06	1.11201e-05
+hypothetical protein, partial	0.000117983	1.37535e-05
+UniRef50_S8UV07	0.000133288	2.31106e-05
+hypothetical protein, partial	4.99828e-05	3.10894e-05
+ABC type multidrug transport system	0.000371193	0.000362036
+Arginine deiminase	0.000307864	0.0030888
+GMP synthase	1.20814e-05	5.46199e-06
+Transcriptional regulator	0.000212535	0.000132037
+ABC transporter permease protein	0.0218956	0.00389237
+hypothetical protein, partial	1.3442e-05	7.3127e-05
+CarD family transcriptional regulator protein	0.00424415	0.000424647
+hypothetical protein	1.19013e-05	8.31823e-06
+Manganese ABC transporter, ATP binding protein SitB	0.0173764	0.0024934
+Deoxyribose phosphate aldolase	0.000350482	0.000653783
+hypothetical protein	1.68184e-05	1.29242e-05
+UniRef50_A6LZB7	0.00059944	0.00223005
+UniRef50_A6LZB6	0.000193419	0.000152955
+UniRef50_Q6GB21	0.00263062	0.000454443
+siderophore interacting protein	1.01954e-05	0.000309347
+Predicted protein 	5.51719e-05	7.97876e-05
+Single stranded DNA binding protein 1	0.0490799	0.0124511
+hypothetical protein	7.74182e-06	5.53631e-05
+UniRef50_U7I8Y0	0.00115576	0.000240508
+AguR protein	0.00486105	0.000508334
+hypothetical protein	4.67522e-05	4.60058e-06
+UniRef50_Q4EE14	0.000252754	0.000222022
+Extracellular solute binding protein, family 5	0.000744281	0.000985317
+UniRef50_M1Y549	0.000147117	2.13995e-05
+Inner membrane transport protein YdhC	0.00280709	0.000161086
+hypothetical protein	1.03805e-05	1.35085e-05
+Alkaline phosphatase	7.95965e-06	0.000188017
+Nicotinate dehydrogenase subunit A	0.000222073	0.000514282
+Delta aminolevulinic acid dehydratase	0.000248831	0.00320986
+UniRef50_K5YXR4	2.28697e-06	8.04025e-06
+UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000332557	0.00298387
+GTPase Era	0.00150697	0.000364746
+hypothetical protein, partial	1.72115e-05	6.70954e-05
+Methylenetetrahydrofolate reductase	0.0212069	0.00261123
+Sugar ABC transporter permease	3.46399e-05	3.7245e-05
+Glutamate pyruvate aminotransferase AlaA	0.000638603	0.00117243
+hypothetical protein	4.65059e-06	4.6724e-06
+Multidrug resistance protein MdtE	0.00361054	0.000940085
+UniRef50_A6LTI4	0.000134261	0.000689889
+UniRef50_A6LTI6	0.000135888	0.00189617
+UniRef50_A6LTI7	0.000123751	0.000825447
+Glycerol kinase	1.93608e-06	4.06698e-05
+Ribosomal RNA small subunit methyltransferase G	0.0131535	0.00651294
+C4 dicarboxylate ABC transporter	1.1486e-05	1.45314e-05
+Marine sediment metagenome DNA, contig	3.52718e-05	6.55904e-06
+UniRef50_A4WNY5	0.0134184	0.00496596
+Predicted protein	4.60706e-06	6.18946e-05
+UniRef50_O25042	0.000162584	0.00353772
+hypothetical protein	0.00010839	4.05555e-05
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	1.54279e-05	4.24092e-06
+UniRef50_B7V621	0.000586337	0.000557311
+DNA directed RNA polymerase subunit beta	3.78832e-06	1.52462e-06
+Antitoxin HicB	5.34163e-05	8.9447e-05
+UniRef50_R0U5E9	2.9116e-05	5.47423e-06
+DNA replication protein DnaC	0.000219399	0.000798578
+UniRef50_X5K1L0	0.000220955	0.000234151
+UniRef50_B1LXW0	0.00226784	0.000597351
+dihydrofolate synthase	1.7873e-06	1.02463e-05
+Chromosomal replication initiator protein DnaA	0.010041	0.00231388
+DNA primase	0.0169757	0.00238675
+Threonine  tRNA ligase	0.000182279	0.000422509
+2 oxoglutarate dehydrogenase E1 component	0.00744855	0.00107353
+Putative antimicrobial peptide ABC transporter, permease component	0.00110312	0.000341141
+hypothetical protein	7.86598e-06	2.58589e-06
+Histidine transport ATP binding protein HisP	0.000483239	0.000124012
+Phosphoserine phosphatase	0.000355186	0.00292459
+Nitrogen assimilation regulatory protein NtrX	0.00374715	0.000466225
+ABC transporter	3.39985e-06	1.52075e-06
+Phosphopantetheine adenylyltransferase	1.12886e-05	8.52821e-06
+Phosphoserine aminotransferase	0.00399369	0.000666432
+hypothetical protein	6.92965e-05	5.41676e-06
+Diaminopropionate ammonia lyase	0.00299539	0.00117744
+Nitrogen regulation protein NR	0.00312164	0.000212104
+Gas vesicle protein	0.00111498	0.000411857
+Pentapeptide repeat protein	0.000305379	0.000687057
+Sulfate thiosulfate import ATP binding protein CysA	0.00010401	2.21775e-05
+Proteasome subunit beta	0.00141717	0.00109582
+Succinyl CoA ligase [ADP forming] subunit alpha 1, mitochondrial	5.00158e-05	1.83488e-05
+Potassium transporting ATPase B chain	1.23414e-05	0.00397389
+UniRef50_V9ZQ34	0.000199159	0.000160044
+N acetyl gamma glutamyl phosphate reductase	4.75287e-06	8.64241e-06
+transposase, partial	8.64545e-05	4.21916e-05
+dgpfaetke family protein	2.35054e-05	7.68683e-06
+UniRef50_Q2CH80	2.48661e-05	0.00016525
+ABC transporter ATP binding protein	2.31583e-05	2.30286e-05
+UniRef50_L2Q9X2	8.62095e-05	8.18981e-06
+hypothetical protein	5.82276e-06	3.45622e-05
+2 isopropylmalate synthase	2.87079e-06	6.12268e-06
+Polyketide cyclase	2.48963e-05	2.40556e-05
+hypothetical protein	7.9777e-06	1.07142e-06
+UniRef50_B0CEH5	0.000104009	2.32516e-05
+Hexuronate transporter	0.00308181	0.000350087
+FAD dependent pyridine nucleotide disulfide oxidoreductase	0.0141245	0.000873605
+Negative modulator of initiation of replication	0.00240263	0.00016535
+Cytidine deaminase	0.00259833	0.000382757
+UniRef50_F0Y8N9	5.99824e-05	2.32173e-05
+Ribosomal RNA small subunit methyltransferase E	0.0178946	0.00252437
+UniRef50_Q8DWK3	0.00539721	0.00103456
+Membrane protein, putative	0.00433745	0.00104006
+Transcriptional regulator	0.000388924	0.0213242
+NADPH Fe oxidoreductase subunit beta	2.70448e-06	1.99132e-06
+hypothetical protein	5.58168e-06	4.46619e-06
+Zinc import ATP binding protein ZnuC	1.96028e-05	1.78941e-05
+hypothetical protein, partial	3.5426e-05	0.000100585
+NADP dependent isopropanol dehydrogenase	0.00196274	0.000696699
+hypothetical protein	8.93448e-07	8.90419e-06
+UniRef50_Q47152	0.00489622	0.00204308
+hypothetical protein	0.000179099	3.364e-05
+RNA polymerase sigma factor RpoH	0.00203178	0.000210023
+UniRef50_W4KQX7	1.53945e-06	4.78152e-06
+hypothetical protein	2.44616e-06	1.3147e-06
+UniRef50_UPI000395CB52	2.1805e-05	2.08711e-05
+UniRef50_C5N1M7	0.000678502	1.246e-05
+glutamate rich protein 2 isoform 3	3.11451e-06	0.000303131
+hypothetical protein	3.03544e-06	5.77635e-06
+UniRef50_B1M288	1.75794e-05	5.04257e-06
+RNA binding tegument protein	0.000110895	6.83759e-05
+UniRef50_A9M0X9	0.000966361	0.00195789
+O methyltransferase	0.000122381	0.000252213
+Sensor protein LytS	0.00515074	0.000802433
+DNA repair ATPase	2.74883e-06	2.63513e-06
+Plasmid pRiA4b ORF 3 family protein	0.00010823	5.13987e-06
+sn glycerol 3 phosphate binding periplasmic protein UgpB	0.00199586	0.00027542
+Putative hydrogenase expression formation protein MJ0993	0.0040134	0.000473084
+Twitching motility protein PilU 	0.000218812	0.00250372
+UniRef50_B9KX88	0.0319634	0.00274639
+ATP binding protein	4.39528e-05	8.3641e-06
+hypothetical protein	8.32098e-06	2.54245e-05
+NAD transhydrogenase subunit beta	0.000833788	0.0051489
+Probable intracellular septation protein A	0.00295967	0.000521306
+Protein MtfA	0.00154097	0.000261949
+Leucyl tRNA synthetase 	0.000295268	0.000103985
+UniRef50_P25131	0.00408135	0.000943935
+GCN5 related N acetyltransferase	0.000685287	0.000291509
+Transcriptional regulator	0.00594241	0.00145951
+molecular chaperone GroES	1.09727e-05	6.79436e-05
+UniRef50_L7WXY9	0.107577	0.0170425
+Marine sediment metagenome DNA, contig	0.000205781	2.97409e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00970023	0.00143445
+Methyltransferase type 11	0.000179972	0.00015192
+Predicted protein 	6.98537e-05	2.27124e-05
+UvrABC system protein C	5.4753e-05	0.00805943
+Imidazoleglycerol phosphate dehydratase	1.02518e-05	1.21237e-05
+Type II secretion system protein L	0.000281457	0.00507904
+UniRef50_W8T948	3.32883e-05	6.86913e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	5.45854e-05	1.02369e-05
+2 isopropylmalate synthase	2.10174e-06	5.96902e-06
+hypothetical protein	9.74834e-06	0.000805832
+UniRef50_L7VSY8	8.98687e-05	0.0013707
+hypothetical protein, partial	2.27614e-05	5.09625e-06
+UniRef50_F5XRW0	0.000696662	0.00226699
+UniRef50_E9USM4	2.88052e-06	2.0457e-06
+UniRef50_B8A2U2	0.000110679	1.16517e-05
+UniRef50_D8JJP8	7.9877e-05	0.00324874
+UniRef50_L7VTK0	0.000117674	0.000495784
+UniRef50_A0A017HMR2	0.000429494	4.25289e-05
+N anthranilate isomerase	6.77808e-06	4.17294e-05
+UniRef50_B9KL86	0.00203715	0.00079558
+Probable CtpA like serine protease	0.0142209	0.0021477
+UniRef50_C5MZV6	0.00178475	0.00107709
+Two component, sigma54 specific, transcriptional regulator, Fis family	7.93747e-05	6.8122e-05
+hypothetical protein	1.0315e-05	5.51622e-06
+ABC transporter permease	0.00489511	0.000696851
+Oxidoreductase 	5.88696e-05	2.42527e-05
+Transposase	7.50197e-05	2.26494e-05
+hypothetical protein	1.69751e-05	0.00029898
+Signal peptidase I	0.000339363	0.00234509
+GMP synthase [glutamine hydrolyzing]	2.3023e-05	1.63248e-05
+Dephospho CoA kinase	1.42299e-05	6.87816e-06
+Glycerol 1 phosphate dehydrogenase (+))	0.000106278	0.000364211
+ABC peptide transporter, inner membrane subunit	0.000599776	0.000144584
+Putative transposase	0.000355757	9.74042e-05
+peptidase M24	4.56077e-06	1.10089e-05
+ATPase components of ABC transporters	0.0050288	0.000322874
+TraU family protein	9.3752e-05	7.94093e-06
+hypothetical protein	4.8922e-06	4.49355e-06
+iron siderophore uptake system transmembrane protein	1.65446e-05	1.2499e-05
+Macro domain protein	1.66167e-05	8.65611e-05
+Protein YciF	0.00219999	0.00019908
+UniRef50_L8FTT7	0.000155247	0.000148863
+UniRef50_Q1GEB3	0.000381932	3.62621e-05
+Cell division protein FtsQ	0.000127803	0.00265506
+UniRef50_Q1GEB7	0.000128858	4.24864e-05
+2 enoate reductase FldZ	0.00030121	0.000852201
+UniRef50_J3PLS0	1.57286e-05	3.27244e-05
+Dihydroorotase	1.68729e-05	3.64219e-06
+UniRef50_R0VGG6	5.56611e-05	5.67236e-06
+inosine 5 monophosphate dehydrogenase	1.03618e-05	3.41526e-05
+Streptolysin associated protein SagD	0.00584951	0.000805232
+hypothetical protein, partial	7.62469e-06	6.09457e-06
+Prepilin peptidase dependent protein D	0.000238124	0.000204988
+Nicotinate phosphoribosyltransferase	0.00164553	0.000244172
+hypothetical protein	0.000125037	5.67004e-05
+Inner membrane protein YrbG	0.00221485	0.000222271
+UPF0107 protein MM_1524	0.000612897	0.0112231
+Alpha amylase	0.00261524	0.000478618
+D ribose transporter ATP binding protein	2.77474e-06	5.81013e-06
+UniRef50_Q3IV67	0.00403743	0.000573147
+Prolipoprotein diacylglyceryl transferase	6.49608e-06	0.000343235
+TIGR01777 family protein	0.000112558	0.00410729
+UniRef50_B0VR24	8.05467e-06	0.00152342
+NADPH dependent 7 cyano 7 deazaguanine reductase	0.000402471	0.00388103
+UniRef50_A0A017TGF9	0.000104661	2.53512e-05
+ABC transporter permease protein	0.000586737	0.000498225
+Serine threonine protein kinase HipA	0.00167681	0.000839291
+Glutamate dehydrogenase, mitochondrial	5.82093e-06	6.44452e-06
+Phage tail length tape measure protein	0.000615421	0.000419568
+hypothetical protein	1.30037e-06	1.61773e-06
+1,4 alpha glucan branching enzyme GlgB	3.36899e-06	3.86497e-06
+D malate dehydrogenase [decarboxylating]	0.00249433	0.00366689
+UniRef50_M4QX58	0.000138118	0.00219884
+Ubiquinol cytochrome c reductase iron sulfur subunit	0.00355021	0.000305391
+Integral membrane protein	3.17571e-05	1.77903e-05
+UniRef50_S5XTF2	0.000245568	3.54665e-05
+UniRef50_P76418	0.00298277	0.000748664
+Lipoprotein signal peptidase	0.000604578	3.71753e-05
+MW0768 protein	0.0147722	0.000304355
+Competence protein	8.30724e-06	1.19806e-05
+hypothetical protein	9.91724e-06	2.44777e-05
+Anhydratase	0.000201776	0.00527147
+hypothetical protein	9.6368e-06	3.50351e-05
+Acetyl CoA acetyltransferase	0.0106575	0.00211088
+cell division protein	2.15755e-06	1.47976e-05
+UniRef50_I6T6L1	0.00437131	0.000583924
+HD domain containing protein 2	2.40304e-05	1.14134e-05
+Marine sediment metagenome DNA, contig	1.45697e-05	0.000109525
+UniRef50_I0I0B9	2.65901e-05	9.24933e-06
+Protoheme IX farnesyltransferase	0.0186944	0.00304723
+hypothetical protein	8.32232e-05	4.34811e-05
+Predicted transcription regulator 	0.00275399	0.000153741
+Archaeal Lon protease	0.00225288	0.000142447
+UniRef50_A3I3T9	0.000190823	9.98268e-05
+4 phosphopantetheinyl transferase family protein	0.0153772	0.000505732
+UniRef50_O26872	0.0019693	0.000781245
+UniRef50_F6DA35	2.10939e-05	6.89312e-06
+UniRef50_A0A016QP53	0.000329573	5.0697e-05
+Extradiol ring cleavage dioxygenase class III protein subunit B	0.000859939	0.000974807
+UniRef50_Q9RX31	0.0003649	0.0292311
+Regulatory protein Spx	0.00969907	0.0060974
+hypothetical protein	1.62566e-05	5.06341e-06
+hypothetical protein	6.20851e-07	7.07589e-06
+UniRef50_Q9RX39	0.000205097	0.0111916
+oxidoreductase	1.23622e-05	9.47427e-06
+hypothetical protein	3.98874e-05	1.06202e-05
+NADH dehydrogenase 	0.00832728	0.000517285
+UniRef50_E3I8L4	0.0054552	0.00101753
+UniRef50_J0XSF7	0.0457411	0.00118138
+UniRef50_UPI000454614C	1.48409e-06	8.3558e-06
+Acetyl coenzyme A synthetase, cytoplasmic	3.40164e-06	1.08638e-05
+UniRef50_D0C8Q0	0.00010441	0.00285479
+UniRef50_A3U071	1.31271e-05	1.64832e-05
+Cobalamin biosynthesis protein CobD	0.000695021	0.000158911
+Respiratory nitrate reductase 2 beta chain	0.0025742	0.00072528
+hypothetical protein	2.37817e-05	1.3271e-05
+Tandem five TM family protein	0.0070923	0.000541059
+UniRef50_H0PXP7	0.000701364	5.98654e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0183661	0.00291445
+Chemotaxis MotB protein	0.0127147	0.00165159
+Transcriptional regulator AcuR	0.00932318	0.00135049
+Aerobic glycerol 3 phosphate dehydrogenase	0.00110322	0.000331561
+Capsular exopolysaccharide family	0.000151598	0.000741281
+UniRef50_J9DL69	1.44098e-05	2.92933e-06
+hypothetical protein	4.04061e-05	2.542e-05
+hypothetical protein	1.55801e-05	5.13472e-06
+hypothetical protein M271_48570	8.6154e-06	2.10506e-05
+UniRef50_A6M0I9	0.000147179	0.00035899
+ABC 2 transporter family protein	0.00487216	0.00366001
+Branched chain amino acid aminotransferase	0.00181509	0.000503366
+Conserved hypothetical membrane protein Msm_1770	0.00124724	0.000272075
+UniRef50_T0MQ15	1.84629e-05	2.34526e-06
+hypothetical protein	1.61756e-05	3.1416e-06
+16S rRNA methyltransferase	6.38943e-06	5.54422e-06
+Putative	0.000464852	0.00124244
+hypothetical protein	6.60857e-06	5.51309e-06
+D galactarate dehydratase	0.00261121	0.00313325
+hypothetical protein	4.85074e-05	1.6337e-05
+UniRef50_A3PPP4	0.000101781	5.76754e-06
+50S ribosomal protein L27	0.00590886	0.00124756
+hypothetical protein	2.82314e-05	0.000209903
+hypothetical protein	3.15746e-05	1.55479e-05
+GD21117	3.21588e-05	1.12741e-05
+Polyphosphate kinase 	0.00026079	0.0118458
+hypothetical protein	8.02538e-07	4.28878e-07
+2,3 dihydroxybenzoate AMP ligase	0.000175814	0.00339979
+Guanine hypoxanthine permease PbuG	0.0188081	0.00532099
+Membrane protein	6.96134e-06	4.17613e-06
+Uroporphyrinogen decarboxylase	0.00259588	0.000959169
+Cyanate hydratase	0.00212615	0.000175019
+hypothetical protein	3.06722e-05	3.62799e-05
+Ribose import ATP binding protein RbsA	1.57488e-05	9.22736e-06
+Pyruvate dehydrogenase E1 component subunit alpha	4.54424e-06	7.98047e-06
+DEAD DEAH box helicase	1.90858e-06	5.4263e-05
+hypothetical protein	4.592e-06	5.09461e-06
+YibE F family protein	9.29692e-05	0.000708471
+UniRef50_A6LWW9	0.000204796	0.000288697
+Ribosomal protein S12 methylthiotransferase RimO	0.00281708	0.0292651
+Fructose 1,6 bisphosphatase class 2	0.0024513	0.000756789
+VRR NUC domain protein	0.000722207	5.44481e-05
+Histidine  tRNA ligase	0.00110204	6.40863e-05
+MntC	0.0105204	0.000232687
+Response regulator receiver protein	7.56289e-05	0.000779258
+Phenylalanine  tRNA ligase beta subunit	0.000139935	0.00219821
+Glutamate synthase [NADPH] small chain	0.00162752	0.000195487
+Protein FwdA	0.00332367	0.000227088
+UniRef50_W0RSQ0	1.73571e-05	2.93921e-05
+hypothetical protein	1.15923e-05	8.97702e-06
+PREDICTED	9.43029e-06	2.45412e-05
+UniRef50_X6ZDD4	0.000141362	2.35539e-05
+ATP dependent RNA helicase, DEAD DEAH box family	0.00246133	0.000432598
+Oligopeptidase A	0.00479047	0.00122184
+hypothetical protein	5.525e-05	4.59075e-06
+Tandem lipoprotein	4.92874e-05	4.11559e-05
+Septum site determining protein MinC	0.00263116	0.000745948
+DNA directed RNA polymerase subunit beta	8.40424e-07	1.82525e-06
+UniRef50_UPI0003AB99D7	0.000361248	6.12443e-06
+4 hydroxy tetrahydrodipicolinate reductase	0.000251156	0.000320234
+Adenylate kinase	2.55884e-05	2.78029e-05
+Glycyl radical enzyme activating protein family	0.000647391	0.000780738
+Sec independent protein translocase protein TatC	0.000309707	0.00226061
+UniRef50_R4LTT1	2.26218e-05	3.12631e-05
+Se3	8.51999e-05	3.28214e-05
+Penicillin binding transpeptidase domain protein	0.000403584	0.00353561
+UniRef50_W7T589	4.35665e-05	7.38527e-06
+Signal peptidase type IV	0.0030857	0.00121136
+proline iminopeptidase	6.15405e-06	4.66126e-06
+dihydropteroate synthase	4.63367e-06	4.69601e-05
+hypothetical protein	3.45407e-05	1.95371e-05
+Putative AraC family transcription regulator	1.71758e-06	7.94136e-05
+Phosphofructokinase	1.00994e-05	0.00016701
+2 oxoglutarate carboxylase small subunit	0.031917	0.00800893
+ABC transporter permease	4.57374e-06	1.05652e-05
+PREDICTED	9.99549e-07	4.46699e-07
+Inner membrane ABC transporter ATP binding protein YddA	0.0014103	0.000885618
+diacylglycerol kinase	9.91413e-06	4.53215e-05
+hypothetical protein	9.59896e-06	1.73539e-05
+UniRef50_C8KCZ1	1.45438e-06	4.7217e-06
+Cytochrome c biogenesis factor like protein	0.000275185	0.000136573
+cell wall hydrolase	4.13118e-06	3.45403e-06
+Replication initiation protein RepC	7.49868e-05	1.69457e-05
+Sulfate thiosulfate transporter subunit	0.00620312	0.00120154
+hypothetical protein, partial	8.71535e-06	2.10364e-05
+UniRef50_N7TQJ5	0.000213657	0.000185035
+Lipopolysaccharide biosynthesis protein	2.78962e-06	2.7445e-06
+UniRef50_A5D5F2	1.59199e-06	1.25082e-06
+Tail assembly protein	0.000462926	0.000272902
+hypothetical protein	1.80673e-05	0.000198005
+UniRef50_UPI0003836BE8	1.04165e-06	2.66157e-06
+Toluate 1,2 dioxygenase electron transfer component	0.0009376	0.000112191
+UniRef50_X7EHW6	0.000345381	0.000152717
+hypothetical protein	6.18158e-05	3.47157e-05
+UniRef50_A5N1Z0	0.000141755	0.00114353
+Transcriptional regulator, LuxR family	0.000452912	0.000659498
+Cysteine desulfurase	0.000555867	0.000516595
+Alpha L rhamnosidase	0.000713158	0.000125741
+PREDICTED	4.4724e-06	4.09822e-06
+UPF0051 protein ABCI8, chloroplastic	0.011045	0.00182354
+glycogen debranching protein	2.90479e-06	5.42362e-06
+hypothetical protein	0.000137313	0.000162836
+Phage protein, HK97 gp10 family	0.00453431	0.000595081
+UniRef50_Q8DRY1	0.0049802	0.000380336
+multidrug ABC transporter ATP binding protein	9.52034e-06	1.17776e-05
+hypothetical protein	3.26158e-05	1.39257e-05
+Probable endopeptidase YaeF	0.00178801	0.000160617
+Pyridoxine 5 phosphate synthase	0.000429731	0.00387275
+Enolase	7.65616e-06	3.76784e-05
+hypothetical protein	6.24689e-05	6.40797e-06
+KDP operon transcriptional regulatory protein KdpE	2.15175e-05	2.01367e-05
+UniRef50_E8U6Y9	3.02102e-05	0.000112161
+Outer membrane protein assembly factor BamB	0.00206011	0.000927655
+hypothetical protein	6.38304e-06	2.19825e-06
+2 ketogluconate transporter	4.28968e-05	3.09797e-05
+nickel transporter permease NikC	6.98906e-06	4.42397e-06
+Zinc import ATP binding protein ZnuC	0.000159244	5.32938e-06
+Methyl accepting chemotaxis sensory transducer	0.000417349	0.000144913
+Membrane protein 	4.00177e-05	1.33727e-06
+FeS assembly SufB domain protein	2.68973e-06	1.99944e-05
+Appr 1 p processing domain protein	1.11987e-05	0.000105138
+chemotaxis protein CheY	0.000739566	4.83928e-05
+Beta glucosidase A	2.81466e-06	3.89563e-06
+Biotin synthase	5.89384e-06	0.000447126
+UniRef50_A9M323	0.00150877	0.00530012
+UniRef50_A3CP26	0.00046314	0.00063127
+hypothetical protein	0.000240094	2.08718e-05
+UniRef50_S0RSE8	1.32368e-05	6.62817e-05
+Phyllosphere induced regulator PhyR	0.000295434	2.65558e-05
+tRNA synthetase RNA binding protein	5.64719e-06	6.49561e-06
+Transporting ATPase YfcM	0.000250673	5.0107e-05
+branched chain amino acid ABC transporter ATP binding protein	9.78725e-06	9.29706e-06
+Histidine kinase	0.00271615	0.00035146
+ribosomal protein S3 	2.68512e-05	2.26529e-05
+cation	0.000222725	0.00026069
+DSBA oxidoreductase	2.23158e-05	5.33209e-06
+Acyl coenzyme A synthetase	0.00256243	0.000180856
+Serine hydroxymethyltransferase, mitochondrial	6.28993e-05	5.11453e-05
+Cyclic pyranopterin monophosphate synthase	0.00295093	0.000668102
+Deacetylase	0.00109771	0.000223112
+hypothetical protein	7.15101e-06	3.41362e-06
+Tyrosine  tRNA ligase	0.00057336	0.00346007
+NADH quinone oxidoreductase subunit D	0.0104248	0.00183988
+F420 dependent NADP reductase	0.00135505	0.000344669
+Hydrolase homolog	0.00652496	0.00075968
+hypothetical protein	1.74995e-05	0.00326338
+Tetracycline resistance protein	0.000220929	0.000593954
+UniRef50_F0YEB9	0.000482626	0.000101132
+Prolipoprotein diacylglyceryl transferase	6.86514e-05	6.4283e-06
+Abortive infection family protein	0.0102735	0.000991812
+Valine  tRNA ligase	0.00736797	0.000824992
+4 alpha glucanotransferase, partial	1.4508e-05	0.000224158
+UniRef50_W2GPF9	7.65292e-05	1.49293e-05
+hypothetical protein	9.64226e-06	8.25625e-06
+UniRef50_S9S8F9	2.86111e-05	2.56969e-05
+ammonium transporter	4.46979e-06	2.3654e-06
+Fur family transcriptional regulator	6.74288e-05	5.85761e-05
+hypothetical protein	3.57539e-05	0.000153806
+ClpX, ATPase regulatory subunit	1.50032e-05	6.86777e-06
+Hemagglutinin 	3.20163e-07	5.18526e-07
+OsmC family protein	0.000190499	0.0032243
+Zinc import ATP binding protein ZnuC	0.000769482	3.95457e-05
+Tartrate dehydrogenase	0.00176103	0.000193575
+UniRef50_B2HMS4	3.27529e-05	4.43772e-05
+UniRef50_G1Q986	2.93039e-05	7.41304e-06
+Transposon protein, putative, CACTA, En Spm sub class	2.07807e-06	1.22452e-06
+Putative Non ribosomal peptide synthetase	0.000186269	0.00013593
+Transposase	0.000215631	4.99576e-05
+UniRef50_P45508	0.00271143	0.000504531
+Predicted protein	7.69148e-05	3.74534e-06
+UniRef50_B6IWR2	2.09287e-05	1.9023e-05
+McpJ	0.00281358	0.000852832
+hypothetical protein	3.46803e-06	6.59561e-07
+Alanine racemase domain protein	0.000411342	0.00227436
+hypothetical protein	1.18274e-05	1.10092e-05
+Chaperone protein HscA homolog	0.00309604	0.00682112
+UniRef50_J9PAT3	5.02506e-05	3.26553e-05
+glutamyl tRNA amidotransferase	2.08556e-05	2.44193e-06
+Putative transcriptional regulator	0.00725427	0.000425822
+Transcriptional regulator, AraC family	0.00143946	0.000117828
+Cof like hydrolase	0.000229465	0.00558694
+UniRef50_U3U4T1	1.17434e-05	1.28225e-05
+cytochrome C oxidase	3.34384e-05	5.98013e-05
+hypothetical protein	0.000134634	2.20045e-05
+Marine sediment metagenome DNA, contig	5.29684e-06	2.11028e-05
+hypothetical protein SMAC_10415, partial	7.04209e-05	1.70482e-05
+Methyl accepting chemotaxis protein III	0.00317692	0.000770537
+His Kinase A domain protein	0.000212748	0.00346325
+Alpha,alpha trehalose phosphate synthase 	0.00751116	0.000436288
+Glycogen debranching enzyme	2.79526e-05	2.80917e-05
+Hydrolase, putative	0.000157164	9.97611e-05
+UniRef50_B2TH59	6.67169e-05	1.10274e-05
+ProP effector	0.00319308	0.000413774
+hypothetical protein	0.000114005	0.000137422
+Penicillin binding protein 1	4.68296e-05	0.0173537
+Serine threonine protein kinase	0.0037644	0.00016033
+Probable ABC transporter ATP binding protein PEB1C	0.00136862	0.00114555
+hypothetical protein	0.000359836	0.000184647
+hypothetical protein	5.18223e-05	1.66352e-05
+UPF0042 nucleotide binding protein EF_0766	0.00458924	0.00422422
+Membrane associated protein	0.000143009	0.00224371
+MFS transporter	4.72457e-06	4.33661e-06
+FemA related protein	0.000196812	0.0107569
+UniRef50_C6SQR5	0.0030491	0.000867097
+30S ribosomal protein S2	1.92334e-05	8.65621e-05
+Putative MFS family efflux protein	2.01356e-05	1.13292e-05
+hypothetical protein	8.23299e-06	3.08227e-06
+UniRef50_Q6FD60	8.33041e-05	0.00240543
+PREDICTED	7.66638e-05	5.44297e-05
+flagellin	1.12375e-05	2.72113e-06
+Glycosyltransferase GT2 family	0.00241451	0.000468368
+Endoribonuclease L PSP	0.000152398	4.83211e-05
+UniRef50_P46855	0.00245377	0.000203398
+UniRef50_P46854	0.00195441	0.00032181
+UniRef50_P46853	0.00381731	0.00200506
+4Fe 4S ferredoxin iron sulfur binding domain protein	0.000488014	0.000218679
+Macrolide export ATP binding permease protein MacB	1.97368e-06	1.28987e-05
+DNA modification methyltransferase related protein	0.000128866	0.025525
+SUN family protein	8.98261e-05	0.00202876
+Aspartate  tRNA ligase	7.26587e-05	0.002063
+UniRef50_B2HZZ5	0.00011181	0.00258657
+Trap type C4 dicarboxylate transport system,large permease component	0.00692815	0.000240216
+UniRef50_O34319	0.000122679	0.00199479
+Orotidine 5 phosphate decarboxylase	9.50532e-06	7.84424e-06
+Phosphoglycerate mutase family protein	0.0103191	0.001911
+hypothetical protein	4.3882e-06	6.16576e-06
+PREDICTED	1.79855e-05	1.29034e-05
+Probable deferrochelatase peroxidase YfeX	0.00297258	0.00119536
+Nucleoside diphosphate kinase	2.50976e-05	1.90407e-05
+Mannose 1 phosphate guanyltransferase	8.77699e-06	3.88408e-06
+UniRef50_M2HJP8	0.00620462	0.000912847
+UniRef50_E8R1M1	2.17775e-05	1.93175e-05
+LemA family protein	2.01891e-05	5.21671e-06
+UniRef50_Q6HHL1	0.00202002	0.000719721
+UniRef50_B2II06	1.42068e-05	2.17121e-05
+UniRef50_N6V6H2	0.000274911	8.79407e-05
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.00911401	0.00101709
+UniRef50_UPI00023B21D9	6.37509e-06	0.000105865
+hypothetical protein	8.95488e-05	1.03941e-05
+[Ni Fe] hydrogenase, large subunit	0.000250001	0.000276247
+UniRef50_V9VZS0	0.000445927	8.54463e-05
+Ferric anguibactin binding protein	1.51895e-05	8.24447e-06
+UniRef50_C5B1E9	4.64906e-05	1.39807e-05
+PREDICTED	9.16303e-06	2.14921e-06
+TonB dependent siderophore receptor	4.12659e-05	2.07835e-06
+Nitric oxide reductase transcription regulator NorR2	2.66668e-06	6.56394e-06
+Serine protease, subtilase family	7.5403e-05	0.0230112
+F box like WD repeat containing protein	1.00884e-06	2.13057e-06
+PREDICTED	8.09499e-06	4.52294e-05
+Poly gamma glutamate biosynthesis protein	0.00271809	8.30572e-05
+Cyclic pyranopterin monophosphate synthase	0.00679845	0.00075774
+Putative cell wall binding repeat containing protein	0.00055477	0.000926216
+hypothetical protein	5.09203e-05	3.15215e-05
+UniRef50_U5NMN3	0.0151961	0.00109969
+Exosome complex component Rrp42	0.00288528	0.000114376
+Type 4 fimbrial biogenesis protein PilW	0.00117958	0.000715967
+UniRef50_F2AE29	0.00175452	0.000307002
+hypothetical protein	7.92785e-07	3.32417e-06
+30S ribosomal protein S2	0.000140229	0.00299481
+calcium binding hemolysin protein	9.34344e-06	1.71605e-06
+Alcohol dehydrogenase	0.0013011	0.00111719
+molecular chaperone Hsp33	1.62443e-05	1.20979e-05
+UniRef50_Q4V2F4	2.6749e-05	1.39513e-05
+dihydrolipoamide dehydrogenase	2.81405e-06	1.77813e-05
+Transposase	9.82575e-05	2.71018e-05
+2 amino 3 ketobutyrate coenzyme A ligase	9.2121e-05	0.00249647
+6,7 dimethyl 8 ribityllumazine synthase	1.50794e-05	8.10288e-06
+Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC	0.00810427	0.00115917
+hypothetical protein	2.23509e-05	2.42261e-06
+UniRef50_R6HE72	0.000200725	0.00138576
+Aminodeoxychorismate lyase family	0.00526668	0.000605564
+Ribosomal RNA large subunit methyltransferase E	1.65726e-05	1.19232e-05
+UniRef50_A0A009NBC4	4.92932e-05	0.000219377
+ThiC associated domain protein	2.52993e-05	4.05476e-05
+Membrane protein	0.00372795	0.000750735
+Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE	0.00289114	0.000761746
+UniRef50_B0X4X0	6.18021e-06	7.87286e-06
+hypothetical protein	1.39705e-05	3.69564e-05
+Fructosamine 3 kinase	0.0272265	0.00425888
+UniRef50_K0T107	4.72158e-05	4.25343e-05
+UniRef50_H3VZC8	0.00791234	0.000261002
+Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase	0.000111225	0.0024794
+DNA ligase	0.00673549	0.00123903
+Membrane anchored Ser Asp rich fibrinogen binding protein	0.00515217	0.000591097
+magnesium chelatase	1.2572e-05	6.76055e-05
+UniRef50_J0D169	5.39791e-06	4.2444e-05
+Type IV secretion protein Rhs	0.000309803	0.000130941
+UniRef50_W5WGU1	0.000562282	0.00187676
+UniRef50_J9YS58	0.00394258	0.00149873
+Dimethyl sulfoxide reductase DmsA	0.0018776	0.000406753
+UniRef50_O27719	0.00313066	0.000154503
+UniRef50_Q4MQ56	0.000313682	0.000344633
+hypothetical protein	2.77826e-05	1.00663e-05
+Serine hydroxymethyltransferase 1	4.73065e-05	6.70209e-05
+Cobyrinic acid A,C diamide synthase	5.19256e-06	0.000132546
+UniRef50_V9XXT7	0.000111552	0.000464746
+Protein icc	0.00013718	0.000121167
+MarR family regulatory protein	0.0119403	0.000220602
+Membrane protein, putative	0.000473165	0.000153678
+Transaldolase	0.00229691	0.000839922
+UniRef50_A1TL16	8.75204e-05	0.000601631
+Deoxyguanosinetriphosphate triphosphohydrolase like protein 2	0.000544271	0.0254239
+PREDICTED	1.35402e-05	2.48247e-05
+hypothetical protein	9.83817e-06	5.82021e-06
+Cobyrinic acid a,c diamide adenosyltransferase	0.0018991	0.000664832
+RhtB family transporter	0.00942476	0.000803751
+hypothetical protein	5.40553e-06	0.000205437
+FAD binding domain protein	0.00372589	0.000213492
+Oxidoreductase aldo keto reductase family	0.00267764	0.000324796
+Polyphosphate kinase 1	2.13666e-06	0.000116388
+hypothetical protein, partial	0.000101503	2.39707e-05
+UniRef50_I1EEC9	6.56835e-07	2.66154e-06
+UniRef50_N9BDB1	2.27774e-05	3.48421e-05
+UniRef50_E6CCB2	4.26695e-05	0.000262464
+Predicted transcriptional regulator	0.0015698	6.18353e-05
+UniRef50_K9ZE84	0.000167005	2.21853e-05
+hypothetical protein SMAC_10569, partial	2.67965e-06	1.50525e-06
+Porphobilinogen deaminase	1.18708e-05	4.11607e-06
+Glyoxalase bleomycin resistance protein dioxygenase	0.00514518	0.000574092
+Galactoside O acetyltransferase	0.004144	0.000668683
+UniRef50_R5UMD4	1.45997e-05	4.95325e-06
+hypothetical protein	1.07123e-05	3.55604e-06
+3 keto L gulonate 6 phosphate decarboxylase	2.27207e-05	2.13296e-05
+UniRef50_Q1M6X3	0.000128762	2.7518e-05
+conjugal transfer protein TraW	0.000230205	4.41017e-05
+hypothetical protein	1.74431e-06	3.73403e-06
+2 vinyl bacteriochlorophyllide hydratase	0.0131502	0.000205929
+Hemagglutinin related protein	1.94542e-07	3.32873e-07
+histidinol phosphate aminotransferase, partial	1.36364e-05	8.44285e-06
+hypothetical protein, partial	0.00037564	4.35331e-05
+Cell division protein FtsZ	0.000297806	0.00514876
+Cobyrinic acid A,C diamide synthase	1.04315e-05	0.000208568
+Cell envelope related transcriptional attenuator domain protein	0.0050098	0.000734178
+hypothetical protein	5.87601e-06	1.37877e-05
+UniRef50_R5A8C5	0.000130263	3.89059e-05
+alcohol dehydrogenase	0.000211739	5.21426e-06
+UniRef50_O32068	0.0110512	0.00170541
+Adenylate cyclase ExoY	0.000164975	0.00012956
+Na+ H+ antiporter MnhB subunit related protein 	6.06265e-05	9.59982e-06
+Malolactic enzyme	0.00500243	0.00105798
+UniRef50_K2LWC9	3.81204e-05	7.37783e-06
+Choline transport protein BetT	0.00109269	0.000179211
+hypothetical protein	8.22292e-07	1.14603e-06
+methionine synthase, partial	1.25914e-05	4.68168e-05
+Sodium	0.00156027	0.000412587
+hypothetical protein	0.000286268	1.35588e-05
+Protein translocase subunit SecY	0.00167356	0.000335794
+ABC transporter ATP binding protein	0.00249439	0.000714434
+Ring hydroxylating dioxygenase subunit	0.000529653	0.000248727
+Flagellar hook associated protein FlgL	0.00095524	0.000169671
+hypothetical protein	3.74865e-06	1.48064e-06
+quinone oxidoreductase	8.98401e-06	3.4915e-05
+UniRef50_A6UJ92	0.0142578	0.00140102
+D methionine transport system permease protein MetI	0.00340852	0.00056959
+UniRef50_F9YY95	0.0002151	0.00224621
+PREDICTED	1.46666e-05	6.72664e-06
+Adenine deaminase	0.00510154	0.000774214
+UniRef50_S8F394	1.09729e-06	1.42744e-06
+Aspartate ammonia lyase	0.000602487	0.000807411
+peptidase S1 and S6 chymotrypsin Hap	4.12077e-06	1.73907e-05
+7TM receptor with intracellular metal dependent phosphohydrolase	0.000303673	0.000271263
+DNA gyrase subunit A	1.84038e-06	1.79203e-06
+hypothetical protein	1.58804e-06	2.13891e-06
+Zinc binding dehydrogenase family protein	0.000641619	0.000248805
+UniRef50_E7BGF6	5.46133e-06	2.33435e-05
+PREDICTED	0.000109361	1.7021e-05
+hypothetical protein	3.82758e-06	4.80645e-06
+Translation initiation factor 3 family protein, putative isoform 1	5.90698e-06	8.37317e-06
+hypothetical protein	7.33971e-06	1.37325e-05
+Marine sediment metagenome DNA, contig	2.16519e-05	2.45094e-05
+Probable aromatic acid decarboxylase	5.01586e-05	4.78749e-05
+UniRef50_K9DMW3	2.77043e-05	6.17416e-06
+Tryptophan  tRNA ligase	0.00819059	0.000286925
+CCA adding enzyme	1.35664e-05	0.000874981
+1 deoxy D xylulose 5 phosphate synthase	2.04863e-06	7.68116e-05
+Precorrin 6x reductase	0.000267102	0.000693686
+UniRef50_A0A011N6I9	1.35443e-07	2.03275e-07
+Protein FecR	0.00431204	0.000310225
+Energy coupling factor transporter ATP binding protein EcfA2	4.54574e-06	0.000866617
+Ribonuclease R	0.00295001	0.000504812
+Nucleic acid binding OB fold tRNA helicase type	6.64241e-05	0.00325008
+Short chain dehydrogenase	0.00390527	0.00756027
+UniRef50_G0DT71	0.000101472	0.00303951
+ABC transporter, membrane spanning protein 	0.0150912	0.00272414
+UPF0348 protein lwe2063	2.38281e-05	0.000465485
+FKBP type peptidyl prolyl cis trans isomerase FkpA	5.50829e-06	6.85285e-06
+hypothetical protein	1.10625e-05	0.00157563
+Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.000700451	0.000183234
+Replication initiation protein RepC	6.18189e-05	1.2823e-05
+Putative anti sigma regulatory factor	1.66683e-05	0.000479813
+hypothetical protein	9.05821e-06	0.000109716
+UniRef50_A0A024PW13	0.000586856	0.00281835
+ABC transporter permease protein	2.21803e-05	3.00921e-05
+6 phospho 5 dehydro 2 deoxy D gluconate aldolase	1.41556e-05	1.21842e-05
+Sulfate thiosulfate import ATP binding protein CysA	0.000114676	0.00351271
+Inner membrane protein YqcE	0.00151697	0.000258625
+UniRef50_U6JNN9	8.67334e-05	4.14463e-05
+aldo keto reductase	7.15945e-06	3.02286e-05
+hypothetical protein	4.67364e-06	2.70618e-06
+Ribose import ATP binding protein RbsA 2	4.1264e-05	2.69538e-05
+ATP binding permease protein CydC	0.0022366	0.000244765
+UniRef50_F0YQI4	0.000289946	0.000928908
+Methylthioribulose 1 phosphate dehydratase	0.000501844	0.000305413
+Glycerol dehydrogenase	9.61567e-05	0.000270935
+UniRef50_M1IWL8	0.00391083	0.000229043
+Potassium transporting ATPase A chain	0.000165684	0.00266932
+Transposase protein B	5.52969e-05	2.29207e-05
+hypothetical protein	1.16639e-05	1.11907e-05
+UniRef50_Q09AD1	6.09509e-05	1.75813e-05
+hypothetical protein	3.44419e-05	2.93155e-06
+PREDICTED	2.14635e-06	9.24531e-06
+prolipoprotein diacylglyceryl transferase	2.37464e-05	3.75043e-06
+Methionine  tRNA ligase	5.16629e-06	9.70027e-06
+Sodium pantothenate symporter	0.00133081	0.00117846
+FAD linked oxidoreductase	0.000482193	7.17131e-05
+UniRef50_Q1GE40	9.22033e-05	1.9177e-05
+UniRef50_Q1GE41	0.000119358	2.05313e-05
+large conductance mechanosensitive channel protein MscL	0.000270112	4.41027e-05
+ATP synthase F0 subunit I	3.56588e-05	3.81694e-05
+N acetyl gamma glutamyl phosphate reductase	0.0109676	0.00239823
+UniRef50_A3UCX1	2.86328e-05	2.61149e-06
+Pyruvate synthase subunit PorB	0.00233243	0.000120033
+UniRef50_B1LDG8	0.013522	0.000897849
+hypothetical protein	0.000123884	0.000569528
+GMC oxidoreductase family protein	0.00252767	0.000256844
+Bifunctional NADH hydrate repair enzyme Nnr	0.00311497	0.000767754
+Flagellar biosynthesis protein FlhB	0.000366437	0.000103439
+Acetyltransferase, including N acetylase of ribosomal protein	0.000472964	0.000283565
+UniRef50_A1B2J7	0.0015716	0.000814934
+UniRef50_I7ZAU8	6.29157e-05	3.36544e-05
+UniRef50_F9YXK8	0.000169974	0.000664804
+FAD dependent oxidoreductase, partial	1.01421e-05	7.4607e-06
+UniRef50_R6BDT2	0.00084112	0.00117773
+UniRef50_A9N4N9	0.000234789	0.000109303
+Ferrochelatase	0.000507368	9.61294e-05
+hypothetical protein	3.13418e-05	4.70205e-05
+hypothetical protein	6.83768e-06	1.1264e-05
+ABC sugar transporter, periplasmic lignad binding protein	0.00501459	0.000487048
+putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	1.86039e-05	3.01682e-06
+Competence protein	0.000151496	0.00052407
+Triosephosphate isomerase	0.000628621	0.00158543
+Transcriptional regulator	1.56682e-05	1.3005e-06
+Threonine  tRNA ligase 2	7.85626e-06	4.42048e-06
+MULTISPECIES	4.77846e-05	0.000323836
+UniRef50_P39187	0.00234576	0.000332793
+AsmA family protein	4.13728e-05	2.71371e-05
+NH dependent NAD(+) synthetase	0.00246617	0.00125598
+UniRef50_Q46906	0.00138286	0.00016033
+hypothetical protein	3.45157e-06	8.85749e-06
+Glutaryl CoA dehydrogenase, mitochondrial	0.00108883	0.0112671
+UniRef50_B6TP29	0.000852022	2.32796e-05
+Disulfide bond regulator	0.00663613	0.0026312
+Arabinose efflux permease homolog	0.00353469	0.000426155
+hypothetical protein	9.21178e-05	6.08802e-05
+Mobile element protein	1.56637e-05	6.56389e-06
+hypothetical protein	2.98607e-05	1.23533e-05
+hypothetical protein	1.533e-05	7.78237e-05
+UniRef50_Q3JVF3	0.000119029	0.000229719
+NLPA lipoprotein	8.36757e-05	4.55132e-05
+Lipid II flippase FtsW	8.45599e-05	0.00376398
+Predicted protein	2.43288e-06	0.00011845
+phosphohydrolase	4.50487e-05	0.000226002
+Thioredoxin reductase	0.00026154	0.00150976
+Amino acid ABC transporter substrate binding protein	0.000471268	0.000158072
+UPF0348 protein GK1103	4.75837e-06	0.000305639
+Transposase	0.000185597	0.0142843
+hypothetical protein	9.64302e-05	1.07372e-05
+Transcriptional activator FeaR	0.005146	0.000218398
+UniRef50_B0VAR2	0.000276615	0.00418002
+PREDICTED	8.93447e-06	7.04189e-06
+Putative relaxase	0.00014721	1.24566e-05
+Conserved integral membrane protein, putative	0.0190949	0.00280233
+hypothetical protein	6.34271e-06	3.10134e-06
+spermidine putrescine ABC transporter ATPase	4.15411e-05	1.14016e-05
+50S ribosomal protein L4	0.014358	0.000436326
+Glycogen synthase	0.00432965	0.000246263
+hypothetical protein	1.25021e-05	5.04897e-06
+Phosphoribosylformylglycinamidine cyclo ligase	0.000119202	0.00010849
+UniRef50_U6R7W5	4.44551e-06	4.07459e-05
+UniRef50_E8U4E2	7.34117e-05	0.0359416
+UniRef50_H9KEJ9	1.89762e-06	1.12413e-06
+UniRef50_L1BUX8	1.85583e-05	0.000260055
+Amidase	0.0165776	0.00245788
+UniRef50_A8ARE5	0.00023184	1.75309e-05
+Murein DD endopeptidase MepS Murein LD carboxypeptidase	0.00219107	0.00147318
+UniRef50_M9RIA5	0.0255528	0.000891124
+ParB like partition protein	0.00453692	0.000984946
+Cellobiose phosphorylase	4.99019e-05	8.9019e-06
+hypothetical protein	6.71866e-06	9.35662e-06
+hypothetical protein	1.64496e-05	4.67485e-06
+ORF492	1.61728e-05	2.82672e-06
+hypothetical protein	5.179e-06	1.20443e-05
+ATPase AAA	3.82291e-06	1.9759e-06
+UniRef50_A3VC61	0.000512815	7.54701e-05
+hypothetical protein	1.88798e-05	0.000155494
+30S ribosomal protein S4	0.0199072	0.00388645
+CarD like TRCF domain protein	0.00175922	0.000338992
+Carbonic anhydrase	0.00187498	0.00129486
+hypothetical protein, partial	1.94682e-05	0.000405598
+Flagellar protein FlaF, putative	9.83549e-05	0.000109423
+UniRef50_B9KP57	0.00148958	0.000628133
+UniRef50_G9RRJ9	2.41484e-05	9.76599e-06
+Multidrug transporter	0.000823883	0.000344682
+UniRef50_L1K935	0.000640112	0.000396521
+LysE family efflux protein	0.000645202	0.000417829
+transketolase	2.06531e-05	5.69666e-06
+hypothetical protein	7.61834e-06	9.50518e-06
+hypothetical protein PFL1_05640	1.66539e-06	3.77543e-06
+Dihydroxy acid dehydratase	6.26051e-05	4.95923e-05
+Membrane protein	5.19674e-05	1.36939e-05
+UniRef50_M9R6L8	0.00109554	0.000123671
+Succinyl CoA ligase [ADP forming] subunit beta	0.00228217	1.65576e-05
+ArsC family protein	3.0029e-05	3.2071e-05
+UniRef50_M0LR14	1.39681e-06	6.38666e-06
+UniRef50_Q2G6B7	8.06786e-05	9.97004e-06
+LysR family regulatory protein	0.00896873	0.000672863
+hypothetical protein	4.35134e-06	1.35906e-06
+superfamily II DNA RNA helicase	1.87364e-05	2.15487e-05
+UniRef50_R0DQJ6	8.75097e-06	4.48168e-06
+UniRef50_Q2G6B8	0.000231833	3.73316e-05
+hypothetical protein, partial	8.07738e-05	6.05385e-05
+Putative transposase	0.00070841	0.000215632
+Response regulator receiver protein	0.00511401	0.000774562
+UPF0271 protein blr4568	0.00298441	0.000904897
+MULTISPECIES	3.35711e-05	0.000209186
+4 alpha glucanotransferase, partial	1.05001e-05	0.000260348
+arginyl tRNA synthetase	2.21503e-06	2.6358e-06
+Flagellar hook length control protein	0.000425702	0.000886835
+Phosphate import ATP binding protein PstB 2	0.00253746	0.00018966
+4 carboxymuconolactone decarboxylase	0.00323286	0.000478853
+UniRef50_D3LR53	0.000136577	0.000106751
+DHHA1 domain protein	0.000240124	0.00134868
+UniRef50_A6M0Z6	0.000382633	0.000661825
+GTPase Obg	0.000434205	0.0244803
+UniRef50_D4HCN2	0.00033212	0.000916309
+MULTISPECIES	2.79239e-05	1.98632e-05
+HupH hydrogenase expression protein	0.00018767	4.64087e-05
+UniRef50_E6JKQ2	0.00248125	0.000390369
+UniRef50_S5MQR6	2.98845e-05	2.88193e-05
+UniRef50_Q6A9F2	0.000253305	0.00276102
+hypothetical protein	9.1922e-07	8.21398e-07
+Transcriptional regulator MraZ	0.0103692	0.00123117
+2 dehydro 3 deoxyphosphooctonate aldolase	0.00606612	0.000221145
+Alkanesulfonate monooxygenase	0.000444053	0.00378983
+UniRef50_Q9X6A2	0.00140251	0.000191313
+3 isopropylmalate dehydrogenase, partial	1.52302e-05	2.17325e-05
+UDP N acetylmuramate  L alanine ligase	3.50723e-06	3.08181e-06
+ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT	9.27936e-05	0.00241917
+Probable sulfoacetaldehyde acetyltransferase	0.00320926	0.000626387
+hypothetical protein	1.32827e-05	6.52486e-06
+UniRef50_Q5HLP5	0.021672	0.00045118
+UniRef50_W1MLM9	5.13871e-05	9.42147e-05
+UniRef50_UPI0002651735	5.61365e-06	4.87259e-05
+Pyruvate dehydrogenase complex repressor	0.00246755	0.000504946
+UniRef50_R6M784	8.6543e-05	3.10535e-05
+Carbon starvation protein A	0.000210906	0.00564843
+UniRef50_Q3KFU0	2.73799e-05	1.33228e-05
+Chemotaxis histidine protein kinase, CheA4	0.000260131	0.000159229
+hypothetical protein	3.23411e-05	2.58606e-06
+molecular chaperone	0.000342564	6.1526e-05
+Cobalt transport protein	0.000182907	0.00469619
+UniRef50_Q3JP97	2.72818e-05	1.1519e-05
+UniRef50_A7MKS2	0.000196446	1.48325e-05
+Short chain dehydrogenase	0.00187405	0.000578281
+hypothetical protein	7.06007e-06	0.000107014
+D amino acid dehydrogenase small subunit	2.3783e-05	1.29439e-05
+Flagellar basal body rod protein FlgC	0.00650817	0.000283233
+Oligopeptide ABC transporter, permease protein, putative	0.000298815	0.000220061
+Alcohol dehydrogenase GroES domain protein	0.00339918	0.000234781
+UniRef50_Q8CQN2	0.010962	0.000795679
+ribonucleotide diphosphate reductase subunit alpha	4.55066e-06	1.4393e-05
+Glutamine amidotransferase	0.00294205	0.000576228
+UniRef50_C5WGZ9	0.00017423	6.49287e-05
+UniRef50_A0A016ULG1	9.21344e-06	5.19282e-06
+Protein TniQ	0.000672669	0.0127171
+UniRef50_A0NZT5	0.00014699	1.79697e-05
+Transport protein	4.08362e-05	3.21664e-06
+S adenosylmethionine	0.00196469	0.00416474
+Peptidase, M48 family, putative	0.00806447	0.00224302
+Phosphate acyltransferase	0.0176913	0.00514685
+Iron chelate uptake ABC transporter, FeCT family, permease protein	0.000889502	0.00186392
+Putative L lactate dehydrogenase operon regulatory protein	0.00229224	0.00198207
+ABC transporter permease	0.000133573	2.96625e-05
+hypothetical protein	3.16648e-05	6.35835e-05
+UniRef50_A5UKI1	0.00100069	0.000252915
+hypothetical protein	2.40714e-05	8.88754e-06
+UniRef50_C1DH36	0.000120297	9.34053e-05
+Ribonuclease R	0.000361293	0.00299209
+hypothetical protein	1.17143e-05	5.47174e-05
+hypothetical protein	8.25778e-05	3.79679e-05
+UniRef50_E6YJ75	7.24715e-06	0.000514037
+hypothetical protein	0.000248411	4.06579e-05
+AMP dependent synthetase and ligase	7.50666e-05	0.000675874
+Transcription activator of glutamate synthase operon	0.016145	0.00237907
+NADH dehydrogenase like protein YumB	0.00971214	0.00194665
+PREDICTED	1.48927e-05	0.000175019
+Ribosome binding ATPase YchF	0.00359498	0.0259634
+Putative cystathionine gamma lyase	1.96204e-05	1.57785e-05
+UniRef50_E6PJS8	6.77806e-05	5.95251e-05
+UniRef50_T2GDK5	2.0518e-05	3.29975e-06
+hypothetical protein	1.93736e-05	3.07894e-06
+Ribosomal RNA large subunit methyltransferase E	8.37732e-05	2.15972e-05
+Peptide methionine sulfoxide reductase MsrA 1	7.86463e-05	4.57253e-05
+hypothetical protein	5.77834e-07	7.52494e-06
+flagellar basal body P ring protein	2.65397e-05	8.73182e-06
+UniRef50_G8SD75	2.56423e-06	4.16918e-06
+hypothetical protein	2.37377e-05	1.48259e-05
+UniRef50_V4NZE7	0.000265519	5.44635e-05
+hypothetical protein	1.27289e-05	2.94278e-05
+30S ribosomal protein S17	1.62505e-05	0.000103207
+hypothetical protein	9.73108e-05	4.73661e-06
+UniRef50_K2I8R3	2.92694e-05	9.59545e-06
+N acetyl gamma glutamyl phosphate reductase	0.00283573	0.000148186
+PREDICTED	1.40122e-05	2.07244e-05
+Peptidyl prolyl cis trans isomerase	0.000483084	0.000661098
+DNA polymerase III subunit delta	0.00378908	0.000970954
+UniRef50_Q1REU7	0.000243044	6.44543e-05
+GIDA domain containing protein	8.28163e-06	4.66734e-06
+UniRef50_N1MZ98	7.36225e-05	2.88012e-05
+Cation transporter, putative	9.63402e-05	0.0274813
+UniRef50_A5ULI1	0.0015338	0.00148521
+Prolipoprotein diacylglyceryl transferase	0.000110236	4.40994e-06
+3 hydroxybutyryl CoA dehydratase	0.000239821	0.00899819
+UniRef50_A3PPE9	0.00531981	0.00044112
+UniRef50_U1J219	2.56274e-05	2.48353e-05
+nitrate reductase	2.24605e-05	4.71452e-05
+Patatin like phospholipase family protein	0.000121938	0.00384919
+UniRef50_B9KX78	0.000818907	0.000192194
+Urea ABC transporter, urea binding protein	0.000114732	0.0313397
+UniRef50_B9KX77	0.000979524	0.000143155
+single stranded DNA binding protein, partial	1.85205e-05	0.000241293
+UniRef50_A8Z136	0.00688413	0.00219745
+UniRef50_R7CC37	2.28431e-05	1.16401e-05
+UniRef50_Q9HYQ2	0.000684245	0.000373511
+Phosphate starvation inducible E	5.10057e-05	1.89519e-05
+PREDICTED	5.34505e-06	3.20168e-06
+UniRef50_J8G7J1	3.88673e-05	1.96624e-05
+UniRef50_H5UTL4	1.66466e-05	1.34787e-05
+UniRef50_A9D8H9	2.90599e-05	2.81664e-05
+FtsK SpoIIIE family protein	0.00823076	0.00274876
+Amidohydrolase 2	0.0131342	0.00143519
+NADH dehydrogenase subunit B	0.000368528	2.9996e-05
+Cellulose synthesis regulatory protein	2.32319e-06	3.04947e-05
+polynucleotide phosphorylase, partial	3.51756e-06	6.45085e-06
+UniRef50_B2TMR9	0.000235581	0.00119067
+UniRef50_UPI000393CC0B	1.45107e-05	1.22058e-06
+ABC transporter permease	5.85433e-05	2.18858e-05
+HAD superfamily hydrolase, subfamily IA, variant 1	0.000672381	0.000580598
+hypothetical protein	6.11202e-06	4.10808e-06
+Methyl accepting chemotaxis protein	0.000254565	0.000780321
+Shikimate kinase	1.34371e-05	0.00194394
+1 deoxy D xylulose 5 phosphate synthase	0.000124758	0.00274476
+Spermidine putrescine import ATP binding protein PotA	0.00332511	0.000463565
+UniRef50_M0WIY9	4.17925e-05	0.000272374
+UniRef50_A6LRS1	0.000638185	0.000763106
+Transposase	0.00210042	0.000951213
+hypothetical protein	4.89104e-05	6.504e-06
+calcium binding protein	5.16015e-05	1.02641e-05
+UniRef50_Q8CS10	0.00734043	0.00196225
+UniRef50_Q8CS11	0.00173318	0.000564685
+UniRef50_I0GNK9	7.85854e-06	6.01647e-06
+UniRef50_Q8CS13	0.00726909	0.00116578
+UniRef50_Q8CS14	0.00717081	0.000839143
+UniRef50_A1VUK8	4.34864e-06	3.66358e-06
+Mlr3554 protein	0.00393161	0.000476884
+CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase	0.000413043	0.000176395
+Rhodanese like domain protein	0.00452895	0.000718279
+UniRef50_Q9RTE5	0.000142004	0.0180446
+hypothetical protein	7.23996e-06	2.59446e-05
+Ribonucleoside diphosphate reductase subunit beta	0.000100943	0.000289704
+Catechol O methyltransferase domain containing protein 1	1.30563e-05	9.2004e-06
+Penicillin binding protein 1	0.0177849	0.00250634
+Competence protein ComGF, putative	0.0105826	0.000536055
+Integral membrane protein MviN	4.45923e-05	1.97828e-05
+UniRef50_A6M167	0.000185428	0.00115749
+UniRef50_A6M161	0.00034159	0.00047652
+UniRef50_A6LUR8	0.000138878	0.000883004
+hypothetical protein, partial	9.77011e-06	1.01299e-05
+UniRef50_O05253	0.000711114	0.00138008
+UniRef50_O05255	0.00252161	0.00237461
+Serine  tRNA ligase	8.25548e-05	0.0101667
+Transporter, major facilitator family protein	0.000124648	0.00195637
+DNA topoisomerase 1	5.01727e-05	0.00221793
+ATP dependent zinc metalloprotease FtsH	0.000171869	0.0314583
+Thiamine transporter protein	0.00237447	0.00145023
+Gsl0633 protein	2.05862e-05	7.166e-05
+PhoP family transcriptional regulator	1.45746e-05	3.0587e-05
+hypothetical protein	7.53847e-06	4.07497e-06
+hypothetical protein	4.70208e-06	8.4599e-06
+UniRef50_Q2YYZ3	0.00410232	0.00103201
+transcriptional regulator	1.42084e-05	1.14992e-05
+Nitrogen regulation protein NIFR3	9.88118e-05	2.10212e-05
+MoxR like ATPases	2.40097e-05	2.43169e-05
+UniRef50_D2ZNN2	0.00182706	0.000508885
+30S ribosomal protein S9	0.0257384	0.000242008
+UniRef50_A4WTC5	0.000639922	0.000169086
+Ribose ABC transporter permease	0.000578994	0.000293855
+Hydrogenase 4 component J	0.000412102	0.000198639
+DNA polymerase	1.68854e-05	4.71854e-06
+UniRef50_R8T1N5	2.91921e-05	0.000492631
+N acetyl L,L diaminopimelate deacetylase like protein	0.0217115	0.00310164
+hypothetical protein	1.19642e-05	2.07837e-05
+Putative ABC transporter substrate binding protein	3.62904e-05	6.14902e-06
+secretin	2.40057e-06	2.39157e-06
+Serine threonine rich antigen	0.000393689	2.95734e-05
+general secretion pathway protein I	3.5438e-05	1.33911e-05
+Aspartate carbamoyltransferase	0.000323329	0.000330746
+HTH type transcriptional regulator LeuO	0.000815435	0.000108044
+NUDIX domain protein	0.000307819	0.00320206
+Shikimate kinase	0.0103042	0.000185123
+UniRef50_I9PDN2	0.000320522	0.000283233
+uroporphyrinogen decarboxylase	3.59248e-06	5.41466e-06
+Putative porin QuiX	7.90639e-05	0.00296125
+Nitroreductase, NfnB	0.00181337	0.000202218
+Acetyltransferase PglI	5.76282e-05	0.00171662
+UniRef50_H4G9C2	0.00566031	0.00169405
+ribonucleotide diphosphate reductase subunit alpha	3.55616e-06	1.69735e-05
+Stage V sporulation protein B	0.000139889	0.000865015
+transcriptional regulator	1.78298e-05	1.35672e-05
+hypothetical protein	7.07591e-06	6.65057e-06
+hypothetical protein	7.54105e-06	1.35256e-05
+TonB dependent siderophore receptor	0.000209591	0.0049254
+NADH oxidoreductase hcr	0.0029837	0.000583748
+UniRef50_Q0F3C9	1.87224e-05	0.000170342
+Sulfate adenylyltransferase	0.0104289	0.00132551
+UniRef50_B2TX82	0.00291675	0.000187442
+PTS IIA like nitrogen regulatory protein PtsN	0.00599202	0.000795533
+UniRef50_Q73TT9	2.09841e-05	0.000400825
+Ethanolamine utilization protein EutH	0.00217784	0.000383328
+UniRef50_Q73TT2	0.000102722	8.36776e-05
+UniRef50_A6LRT3	0.00131123	0.0005523
+BioY family protein	0.000451625	0.000340424
+UniRef50_B2AGC3	0.000132244	1.66472e-05
+Putative NAD specific glutamate dehydrogenase	2.25324e-05	7.27222e-06
+Amino acid transporters Alcohol dehydrogenase class IV	0.000182454	0.00125331
+Binding protein dependent transport systems inner membrane component	0.000386344	0.000114668
+hypothetical protein	0.000131359	4.18214e-06
+hypothetical protein	3.06046e-05	1.83539e-06
+bifunctional glyoxylate hydroxypyruvate reductase B	3.32729e-05	4.73561e-06
+Cobalt zinc cadmium resistance protein CzcA	0.000567752	0.00348303
+Lipid A export ATP binding permease protein MsbA	0.0150203	0.00290211
+Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03	0.00218882	0.000662962
+L threonine 3 dehydrogenase	6.39739e-06	2.93651e-05
+UniRef50_S1T400	2.9992e-05	2.14495e-05
+UniRef50_X7DMX2	0.00322998	0.000273734
+UniRef50_A6LRT8	0.000127803	0.00102297
+Anaerobic sulfatase maturating enzyme homolog YdeM	0.00121595	0.000124528
+Virginiamycin B lyase	0.000667487	0.000270421
+Formate hydrogenlyase subunit 5	0.00612775	0.00136733
+Methionyl tRNA formyltransferase	0.00313975	0.000854014
+UniRef50_B0V5A3	0.000127481	0.00337691
+Spermidine putrescine binding periplasmic protein	0.00632385	0.00168123
+hypothetical protein	2.24941e-05	1.34747e-05
+N 6 DNA methylase	2.91269e-05	1.08959e-05
+Transposase, IS4 family protein	0.000186406	0.000748816
+30S ribosomal protein S2	1.7932e-05	8.30817e-06
+NADH quinone oxidoreductase subunit D	0.000221668	0.0249009
+Beta glucosidase	0.000362226	0.000816576
+hypothetical protein	0.000224023	7.63015e-06
+NADP dependent isocitrate dehydrogenase protein	0.000374193	5.02584e-05
+Pyrimidine specific ribonucleoside hydrolase RihA	0.00218193	0.000401426
+Lin1243 protein	0.000107431	3.7526e-06
+hypothetical protein	6.84849e-06	2.95184e-06
+UniRef50_Q8NUG3	0.00676194	0.000543536
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	6.29574e-06	4.39239e-05
+ATPase involved in chromosome partitioning like protein	0.000153059	3.04142e-05
+UniRef50_F3R5J1	8.01946e-05	8.28102e-06
+UniRef50_Q3JPV0	6.79882e-05	5.53619e-06
+Glucose 1 phosphate adenylyltransferase	4.00645e-06	0.00184882
+Replicative DNA helicase	0.0057952	0.000544549
+Multidrug resistance protein like protein	0.0087641	0.00191596
+UniRef50_H3UQK1	0.000388267	0.000152698
+hypothetical protein	2.2027e-05	9.32209e-06
+UniRef50_P0AA74	0.00137249	0.000168452
+Pyridoxamine kinase	4.88067e-05	0.00136215
+Mobile element protein	0.00563957	0.00030052
+Nitrate reductase	0.00618347	0.000455743
+Thiosulfate sulfurtransferase	3.22263e-05	5.84523e-06
+Glycerol kinase, glycosomal	2.50601e-06	2.71653e-06
+Methionine  tRNA ligase	6.78982e-05	0.000517265
+UniRef50_P24252	0.00267501	0.00017709
+Iron regulated surface determinant protein C	0.0072481	0.00175446
+Glutamate 1 semialdehyde 2,1 aminomutase	0.00150061	0.000298865
+UniRef50_E0NC84	8.15638e-05	9.37121e-05
+UniRef50_P33913	0.000958969	0.00044324
+UniRef50_Q3IWW9	0.0138987	0.000573368
+UPF0042 nucleotide binding protein Sca_0414	0.00938831	0.00157678
+UniRef50_P33916	0.00224667	0.00103548
+UniRef50_D8HEB7	0.0155017	0.00241682
+hypothetical protein	4.11623e-05	2.28915e-05
+ABC transporter, periplasmic spermidine putrescine binding protein PotD 	0.0070701	0.00102405
+ABC transporter related protein	0.000129442	0.000377039
+Oxidoreductase domain protein	0.00257473	0.000347548
+hypothetical protein	1.2592e-05	2.84029e-06
+PREDICTED	1.98256e-05	5.74139e-06
+6 pyruvoyl tetrahydropterin synthase	1.97442e-05	4.16363e-05
+potassium transporting ATPase subunit A, partial	2.67296e-05	0.00288386
+Histidine kinase	0.00120365	7.54023e-05
+Outer membrane lipoprotein carrier protein LolA	0.0063341	0.00449058
+Protein AsmA	0.00251074	0.000220319
+Adenylate kinase	2.29971e-05	1.45103e-05
+50S ribosomal protein L10	0.0102274	0.000445506
+UniRef50_R5P840	2.94648e-05	6.72319e-05
+UniRef50_Q1R7P6	0.00270466	0.000545828
+GI22193	1.80651e-06	4.38858e-06
+UniRef50_Q3JSW3	7.00443e-05	1.86478e-05
+Putative Gp40 related protein, ERF family single strand annealing protein 	0.00236689	0.000162067
+hypothetical protein	1.62496e-05	1.42865e-05
+Xaa Pro dipeptidase	0.00562668	0.00417827
+Riboflavin synthase subunit alpha	0.000163109	0.00431017
+hypothetical protein	4.78236e-05	1.32396e-05
+Methylenetetrahydrofolate reductase	0.00543989	0.000377183
+Short chain dehydrogenase reductase SDR	4.35662e-06	2.60798e-05
+ABC type transporter, integral membrane subunit	0.000418139	0.00203826
+Protein MurJ homolog	0.00215406	0.000309974
+UniRef50_K4SH63	5.86016e-05	2.30419e-05
+UniRef50_J8ST30	2.84552e-05	0.00243504
+UniRef50_E7S6W5	0.000437778	0.00039543
+UniRef50_U0CZ19	6.33723e-05	0.000317261
+hypothetical protein	8.96605e-06	1.31993e-05
+Histidinol dehydrogenase	0.00864556	0.00237306
+Non hemolytic phospholipase C	0.000607384	0.000316962
+UniRef50_D0K1D5	9.96689e-05	0.00175327
+Rad3 related DNA helicase	0.000155685	8.22787e-05
+Phage terminase	0.000973352	0.000177794
+6 pyruvoyl tetrahydropterin synthase	0.000465775	0.000315949
+Enoyl [acyl carrier protein] reductase [NADH] FabI	2.15054e-05	0.00124119
+Zinc finger, SWIM domain protein	0.000149506	0.000615832
+TraU protein	8.34298e-05	4.10742e-06
+PREDICTED	1.42521e-05	0.000138042
+UniRef50_Q58811	0.0036263	0.000296705
+Integral membrane nitrite extrusion NarU domain protein	1.97224e-05	9.28246e-06
+2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	5.9619e-06	3.57607e-06
+Succinate dehydrogenase cytochrome b556 subunit	0.00518813	0.000235039
+CRISPR associated helicase Cas3	2.83878e-05	5.20702e-06
+PREDICTED	2.31157e-06	2.41146e-06
+hypothetical protein, partial	8.80409e-06	1.12559e-05
+Xylose isomerase like TIM barrel domain containing protein	0.00203846	0.000143886
+UniRef50_F1U7I1	2.63944e-05	2.74067e-05
+hypothetical protein	4.44207e-05	5.73384e-06
+hypothetical protein	5.41576e-05	4.02427e-05
+Peptide transport system permease protein SapB	0.00180263	0.000326145
+PfkB domain protein	0.000894731	0.000888633
+UDP N acetylmuramate  L alanine ligase	1.12135e-05	3.22364e-06
+Isocitrate lyase	0.000444724	0.00456609
+Tetratricopeptide TPR_2	6.88982e-06	1.01258e-05
+Cation multidrug efflux pump	0.00141659	0.000186848
+hypothetical protein FG03809.1	1.0211e-06	1.68525e-06
+ABC transporter, ATP binding protein	0.000166606	0.000366442
+30S ribosomal protein S4	4.49286e-05	7.86177e-05
+Chromosome segregation ATPase	9.55811e-06	2.05994e-05
+UniRef50_U7G8A4	1.8969e-05	6.93472e-06
+UniRef50_L7WSV6	0.0185541	0.00149169
+TQXA domain protein 	7.368e-06	5.34334e-05
+UniRef50_Q9L883	0.000609944	0.000272788
+Cyclic nucleotide binding	9.88767e-05	0.000342291
+3 dehydroquinate dehydratase	0.000945641	7.45457e-06
+Short chain fatty acid  CoA ligase	0.00276343	0.000412968
+Glycogen synthase	0.00263981	0.000441183
+Transcriptional regulator, LysR family	0.000249295	0.000150899
+UniRef50_Q5HR55	0.00779369	0.000788007
+Putative 3 isopropylmalate dehydratase small subunit	1.90459e-05	0.00139002
+Aminopeptidase YpdF	0.00511561	0.000609685
+spermidine putrescine ABC transporter permease	6.05382e-05	0.000146469
+UniRef50_M7D3U9	0.00494279	0.00105458
+mannitol 1 phosphate dehydrogenase M1PDH1	1.97959e-05	6.02818e-06
+Putative cation transport protein	6.92094e-06	1.75187e-05
+Group 2 glycosyl transferase	0.0101175	0.000483672
+Arachidonate 15 lipoxygenase	0.000489334	0.000249657
+ABC transporter, ATP binding protein	0.000140424	0.00172787
+UniRef50_I3GFM4	0.00110275	0.000731703
+hypothetical protein	2.6699e-05	1.22276e-05
+UniRef50_D9XXK0	0.000211666	0.000368721
+hypothetical protein	4.25247e-05	2.3451e-05
+UniRef50_A7HVG2	6.56751e-05	2.00735e-05
+Beta carbonic anhydrase 5, putative isoform 3	1.04613e-05	7.72752e-06
+BH2333 protein	0.0108277	0.00032066
+Cytoplasmic protein	2.87501e-06	4.9092e-06
+Transcription termination factor NusA	0.0219475	0.00181625
+UniRef50_S6AFF6	7.95623e-05	5.78511e-05
+UniRef50_A6LUU0	7.25842e-05	0.000319727
+Aspartate 1 decarboxylase	0.000269959	0.0031491
+3 propionate 3 hydroxycinnamic acid hydroxylase	0.00078442	5.89914e-05
+Probable nicotinate nucleotide adenylyltransferase	0.00391436	0.00312693
+hypothetical protein	2.75253e-05	6.70029e-06
+hypothetical protein	3.69852e-06	3.20461e-06
+hypothetical protein	7.87714e-06	5.4061e-05
+Tyrosine recombinase XerC	0.000361251	0.00250262
+TOP1E	0.000136808	0.000332476
+Type II secretion system protein K	0.000615131	9.73805e-05
+UniRef50_A6LUU6	0.000258884	0.00115606
+Protein SanA	0.00368355	0.00131679
+Serine hydroxymethyltransferase, cytosolic	7.13712e-05	6.10813e-05
+TetR family transcriptional regulator	0.000143212	0.000252915
+YaeC family lipoprotein 	5.77348e-05	1.05787e-05
+hypothetical protein	2.76838e-05	1.34933e-05
+UniRef50_A0RGM3	6.57611e-06	0.00017709
+Mechanosensory protein 2	3.9659e-06	3.90365e-06
+UniRef50_D5SMQ9	0.000206633	4.70024e-05
+hypothetical protein	8.64379e-06	2.88393e-05
+Integral membrane protein	8.04981e-06	3.3488e-06
+Cytosine deaminase	1.73616e-06	1.95827e-05
+hypothetical protein	3.44276e-06	3.05743e-06
+Relaxase mobilization nuclease domain protein	0.00040817	2.99177e-05
+UniRef50_P77339	0.00107108	0.000237369
+short chain dehydrogenase	1.67381e-05	2.12135e-05
+PREDICTED	0.000167349	3.79356e-05
+HTH type transcriptional repressor GbsR	0.0238124	0.00196067
+UniRef50_A3JNE7	0.000133046	4.31983e-05
+DNA binding response regulator	0.000871695	0.00502925
+UniRef50_Q6NCE2	3.14358e-05	5.97939e-06
+Cyclic pyranopterin monophosphate synthase accessory protein	0.000880843	0.000341387
+Uronate dehydrogenase	6.20665e-06	2.54387e-05
+Integral membrane sensor signal transduction histidine kinase	0.000177843	0.000366992
+Putative glutathione dependent formaldehyde activating enzyme	7.94394e-05	1.26499e-05
+UniRef50_K8B5X1	3.4176e-05	5.99365e-05
+CRISPR associated HD domain protein	1.26625e-05	3.52767e-06
+Transcriptional regulator, Crp Fnr family	0.000163638	0.000163245
+IS5 family transposase OrfA	8.58483e-05	3.95316e-05
+hypothetical protein	2.60427e-05	1.60711e-05
+sugar ABC transporter ATP binding protein	1.22437e-05	2.36077e-05
+L xylulose 5 phosphate 3 epimerase	1.00163e-05	0.00012808
+MerR family transcriptional regulator	0.00128623	0.00126195
+Chemotaxis protein methyltransferase cheR	0.000328875	0.000821192
+DNA topoisomerase 1	0.00494439	0.000628727
+Cyclopropane fatty acyl phospholipid synthase	0.000102606	0.000484891
+hypothetical protein, partial	0.000136599	0.00011765
+hypothetical protein	7.97453e-06	7.99019e-06
+Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00083832	0.000379686
+UniRef50_UPI0003595AF6	0.000100694	6.13704e-05
+Acetyl CoA acetyltransferase	9.45361e-05	0.00288232
+UniRef50_A6LX32	0.000227433	0.000194971
+UniRef50_B5GLS3	8.83095e-05	0.000164337
+UniRef50_X4QTL9	0.000186839	0.00685954
+Cytochrome C assembly protein	0.000554823	0.000136244
+hypothetical protein	4.44004e-06	9.30423e-06
+UniRef50_C5C6A7	2.05812e-06	9.30616e-06
+UniRef50_U2Z7C1	5.94904e-05	2.04214e-05
+UniRef50_F8LKD4	0.00549042	0.000544378
+Hydrogen peroxide inducible genes activator	0.0140231	0.00157877
+shikimate dehydrogenase, partial	3.43766e-05	1.7169e-05
+ABC transporter	1.6905e-05	3.62694e-06
+Anticodon nuclease	0.00297304	0.00111286
+peptidylprolyl isomerase	5.74659e-06	1.2852e-05
+HflK protein	0.00103479	0.000791515
+Cell division protein FtsA	0.00033929	0.00076236
+D 3 phosphoglycerate dehydrogenase	0.00327965	0.00112839
+Chloride channel protein	0.01026	0.000825308
+PREDICTED	4.43882e-07	3.91432e-06
+hypothetical protein	0.000134774	4.52587e-05
+Short chain dehydrogenase	0.000251156	0.000118606
+FAD dependent oxidoreductase	0.000654854	0.000302707
+hypothetical protein	0.000171653	2.7663e-05
+FAD dependent oxidoreductase	0.002695	0.000268439
+Isoleucine  tRNA ligase	2.33394e-06	2.09721e-06
+Marine sediment metagenome DNA, contig	1.00699e-05	1.07067e-05
+UniRef50_U3STL6	0.00299067	0.000994956
+Predicted protein	2.96281e-05	2.37687e-05
+Membrane protein	0.00011552	0.000138771
+UniRef50_S5YCD9	5.79352e-05	5.83202e-06
+UniRef50_K5RU55	0.000362428	0.00401854
+Putative UPF0225 protein	7.23607e-06	2.68875e-05
+Electron transfer flavoprotein subunit beta	0.00109901	0.00254495
+Peptide nickel transport system ATP binding protein	0.000169782	0.000195166
+UniRef50_J2GHT5	4.61627e-05	6.25171e-06
+Phenylalanine hydroxylase transcriptional activator PhhR	0.000301715	8.08873e-05
+Membrane protein insertase YidC 2	0.00582482	0.0035427
+Replication initiator protein	0.000135778	1.59931e-05
+PREDICTED	8.50721e-06	2.24058e-05
+UniRef50_F0RNI2	0.000416487	0.00944023
+Anthranilate  CoA ligase	0.000799172	7.88278e-05
+acetyl CoA hydrolase	5.75161e-05	2.07364e-05
+Acid phosphatase	0.0176414	0.00330842
+UniRef50_Q2W0I4	0.000560049	8.52303e-05
+Isoform 3 of DEAD box ATP dependent RNA helicase 53	9.50001e-06	8.72918e-05
+hypothetical protein, partial	6.78047e-07	5.25391e-06
+Transposase	0.000382442	0.000157928
+UniRef50_F7YG57	6.32118e-06	2.82701e-05
+UniRef50_A3PRI3	0.000381414	0.000111223
+methionine gamma lyase, partial	4.96293e-06	4.51097e-06
+hypothetical protein	2.78262e-06	1.20081e-05
+phosphoribosylaminoimidazole carboxylase	3.25358e-06	3.27406e-06
+Bifunctional autolysin	0.0167213	0.00238143
+flagellar biosynthesis protein FliQ	0.000417511	7.58838e-05
+UniRef50_F2FNL1	0.000152799	4.77587e-05
+Major facilitator transporter	0.000335021	0.00115491
+UniRef50_Q56318	2.76294e-05	0.00022217
+UniRef50_A7FAU5	0.000580256	0.00794861
+Membrane protein	0.0049751	0.00129515
+Peptide deformylase 2	1.25183e-05	2.40793e-05
+Inosine 5 monophosphate dehydrogenase	0.00773753	0.00129656
+UniRef50_A3K7K9	0.000257158	8.13981e-05
+UniRef50_E3JT91	2.118e-05	4.73426e-06
+UniRef50_Q89ZA3	5.82717e-06	0.00189731
+Phosphatidylcholine synthase	0.0023458	3.25263e-05
+PREDICTED	5.35772e-06	1.9587e-05
+Phage related protein, putative DNA packing	0.000296955	0.000264852
+Paraquat inducible protein B	0.00361595	0.000388913
+Carbonic anhydrase family protein	1.62072e-05	4.81658e-05
+UniRef50_W7WVT2	0.000344857	5.18466e-05
+hypothetical protein	1.13768e-05	9.60019e-06
+Gamma glutamylputrescine oxidoreductase	0.00399509	0.000369385
+acyltransferase 3, partial	5.69832e-05	7.30078e-06
+hypothetical protein	1.21539e-05	6.27277e-06
+UniRef50_P0ADP7	0.00260103	0.000149144
+Protein fecR	2.63131e-05	6.90581e-06
+Helix turn helix domain protein	0.000129276	0.000604255
+translation initiation factor IF 2	2.3449e-06	3.84439e-05
+UniRef50_E6C679	0.000671318	0.00348244
+Lysophospholipase L2	3.52494e-05	0.000179392
+Mg chelatase subunit ChlD	0.00437172	0.000780481
+Queuine tRNA ribosyltransferase	5.76703e-06	2.36923e-05
+Protein AraJ	0.00219998	0.000726275
+ATP dependent helicase nuclease subunit A	0.000374445	0.000584515
+hypothetical protein	0.000233893	7.4172e-06
+Dihydrouridine synthase family protein	0.000357336	0.000280578
+Peptidyl prolyl cis trans isomerase	0.00358158	0.000315761
+Transposase 	8.93194e-06	1.65365e-05
+Bifunctional protein GlmU	3.66059e-06	2.68566e-06
+Periplasmic [NiFeSe] hydrogenase small subunit	9.78173e-05	5.59188e-06
+Bacterial type II secretion system domain protein F	0.00094783	0.00310996
+Membrane protein	0.00415528	2.35875e-05
+UniRef50_Q9I3X4	0.0012423	0.000122713
+Molybdate ABC transporter, inner membrane subunit	0.018634	0.00181205
+PREDICTED	1.13155e-05	2.23727e-05
+hypothetical protein, partial	2.05411e-05	1.29561e-05
+UniRef50_Q6F6X6	0.000349283	0.00415131
+UniRef50_B7V4B9	0.00185778	0.000215311
+UniRef50_O31766	1.26768e-05	0.000149279
+Putative major facilitator superfamily transporter	0.000239625	0.000190687
+Nicotinamide nucleotide amidohydrolase PncC	0.0036848	0.000492447
+Periplasmic binding protein LacI transcriptional regulator	0.000231767	0.00045884
+50S ribosomal protein L3	2.84303e-05	4.98497e-05
+UniRef50_M2GKY0	0.00207152	0.000361172
+ATPase	4.47622e-05	1.02306e-05
+Inosine 5 monophosphate dehydrogenase	2.30048e-05	2.20813e-06
+ABC superfamily ATP binding cassette transporter, membrane protein	0.000375776	0.000131073
+aldehyde activating protein	5.56408e-05	5.186e-05
+UniRef50_A0A017SYI4	8.70705e-06	2.07048e-06
+UniRef50_G1WMK0	1.00766e-05	3.68232e-05
+Ribonuclease HII	1.19976e-05	1.53527e-05
+DNA topoisomerase 1	0.0196597	0.0025061
+DNA polymerase II	0.00070644	8.24842e-05
+UniRef50_A0A014PEH8	3.08619e-05	4.11668e-05
+UniRef50_B9KJL3	0.00923316	0.000718279
+PREDICTED	8.298e-05	7.11105e-06
+UniRef50_A8HYP6	3.52932e-05	4.63484e-06
+Tubulin FtsZ family protein, putative isoform 4	2.8559e-06	6.74662e-06
+Ribonucleoside diphosphate reductase	0.00891966	0.0021584
+UniRef50_G9EUU6	0.000419435	0.0121315
+UniRef50_I4CQD2	4.88891e-05	4.0035e-05
+Cys tRNA Cys tRNA(Cys) deacylase	0.0129653	0.00107083
+UniRef50_Q9HVZ2	0.000464166	6.6854e-05
+NADH dehydrogenase, partial	0.000102156	2.39721e-06
+UniRef50_Z5X6G1	2.49417e-05	1.97897e-05
+Riboflavin biosynthesis protein RibF	0.00357358	0.000436307
+UniRef50_C6S7Y9	0.000198749	0.00255775
+Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.00370448	0.00023051
+Ribonuclease 3	1.77514e-05	7.15206e-06
+ATP synthase subunit beta, mitochondrial	2.11783e-05	0.000495323
+Protein PelB	1.18573e-05	8.38992e-06
+hypothetical protein	0.000377694	0.000198797
+DNA binding response regulator	0.000152977	0.00326227
+PREDICTED	0.000124792	4.70736e-05
+hypothetical protein	0.00032655	6.18555e-05
+hypothetical protein	1.31238e-05	7.54682e-06
+phosphopentomutase	7.95357e-06	8.1428e-06
+hypothetical protein	2.6097e-05	5.08965e-05
+UniRef50_Q8CU58	0.00519734	0.00292389
+UniRef50_Q8CU59	0.00631914	0.00137014
+FAD binding domain protein	3.79984e-05	0.000889171
+hypothetical protein, partial	0.000223103	0.000100546
+Probable electron transfer flavoprotein ubiquinone oxidoreductase	7.97888e-06	0.00307292
+UniRef50_Q8CU51	0.0136995	0.00141907
+hypothetical protein	6.88942e-05	1.40285e-05
+UniRef50_A6LT48	0.000256907	0.000181384
+3 oxoacyl [acyl carrier protein] reductase FabG	1.15088e-05	1.89068e-05
+UniRef50_A6LT46	0.000219488	0.000190222
+UPF0301 protein PHZ_c0553	4.32284e-05	4.62617e-05
+Os11g0579700 protein 	4.62856e-06	9.1022e-05
+UniRef50_A6LT42	7.31098e-05	0.000127181
+Phenylalanine  tRNA ligase beta subunit	0.003213	0.000109501
+DNA mismatch repair protein MutS	1.91295e-06	1.68194e-05
+hypothetical protein	0.00176295	0.000132664
+MATE efflux family protein	0.000414424	0.000224009
+hypothetical protein	3.82802e-05	1.72375e-05
+preprotein translocase subunit SecB	4.65047e-05	4.64454e-05
+Carbamoyl phosphate synthase small chain	4.33977e-06	4.03077e-06
+Candidate signal transduction protein , STAS domain protein	2.23516e-05	0.00281908
+Membrane protein, putative	0.000497262	0.000237891
+hypothetical protein	3.11935e-05	0.000107596
+Murein DD endopeptidase MepM	0.00247396	0.000213166
+Pyruvate formate lyase activating enzyme	0.0222561	0.00216537
+Rhodanese like domain protein	1.88022e-05	1.46879e-05
+DNA gyrase subunit B	1.31428e-05	6.08905e-06
+UniRef50_J9ZQJ4	0.000223868	0.000248712
+Isopentenyl diphosphate delta isomerase	0.00012732	0.00297526
+hypothetical protein	1.02732e-05	2.59385e-05
+UniRef50_A4EG23	5.68218e-05	1.30634e-05
+4 hydroxybenzoyl CoA reductase subunit gamma	0.000548366	0.000115239
+UniRef50_F0QNA7	0.000217128	0.00120198
+hypothetical protein	6.49023e-06	6.50735e-06
+ABC transporter glycerol 3 phosphate binding protein 	6.91166e-05	1.47658e-05
+Histidine  tRNA ligase	0.00951422	0.000553797
+hypothetical protein, partial	2.34573e-05	1.29767e-05
+CoA binding domain acetyltransferase, GNAT family	8.64689e-05	0.00215326
+EutG protein	0.000132326	0.00155295
+UniRef50_A9IBR9	5.74039e-05	3.18795e-05
+ATP dependent Clp protease ATP binding subunit ClpA	0.00269812	0.00560424
+cell division protein FtsW	9.25201e-06	3.40467e-06
+UniRef50_I0C1D1	0.0136368	0.00124173
+Lipid A export ATP binding permease protein MsbA	5.64363e-05	0.00208569
+UniRef50_V5VD21	0.000259549	0.00225889
+NUDIX hydrolase	0.000191948	0.000594602
+N formylmethionyl tRNA deformylase	1.11572e-05	0.000661092
+3 oxoacyl [acyl carrier protein] synthase 3	1.61551e-05	1.18716e-05
+UniRef50_F9YZY2	0.000106503	0.00286614
+PucC protein	0.00013125	1.92418e-05
+Lysine exporter protein 	0.000573664	0.000268014
+Probable formate transporter 2	0.00264486	0.000120033
+Oxidoreductase, short chain dehydrogenase reductase family	0.000311111	0.00394392
+preprotein translocase subunit SecA	7.953e-06	9.82125e-06
+Thymidylate synthase	0.000174982	0.0202569
+Marine sediment metagenome DNA, contig	8.02749e-05	2.8219e-05
+Glycosyl hydrolase, BNR repeat containing protein	0.000355096	0.000178438
+UniRef50_Q8XU08	1.865e-05	2.91128e-06
+Coenzyme F420 reducing hydrogenase, beta subunit	0.00205391	0.000961007
+Glycerol 1 phosphate dehydrogenase [NAD+]	0.00171781	0.000185908
+Heme degrading monooxygenase	0.000627109	0.000287772
+Secreted protein	3.63876e-05	5.86445e-06
+DEAD DEAH box helicase domain protein, partial	3.02736e-05	8.23476e-05
+Efflux transporter, RND family, MFP subunit	0.000395494	0.000186238
+UniRef50_Z6ADI2	5.20834e-05	2.97769e-05
+Imidazoleglycerol phosphate dehydratase	0.000166559	0.00120457
+UniRef50_Q31TM6	5.24296e-06	6.36126e-06
+ABC transporter	5.34644e-06	1.01729e-05
+UniRef50_G1Y0V7	0.000135889	2.45691e-05
+UniRef50_G8R9K4	0.00837765	0.000997758
+5 formyltetrahydrofolate cyclo ligase	0.00407632	0.00504568
+Sec independent protein translocase protein TatB	0.000147609	0.000779414
+UniRef50_L1KLU3	0.000184938	4.96404e-05
+PREDICTED	8.28285e-05	4.32796e-05
+TPR repeat protein	0.00123519	0.000543866
+MerR family transcriptional regulator	9.37624e-06	4.42017e-06
+Lantibiotic ABC transporter protein	0.000384413	0.000158911
+Site specific recombinase and resolvase superfamily	0.00646202	0.00068025
+UniRef50_S1FXN2	1.35504e-05	5.07082e-05
+ISxac3 transposase	0.000585716	0.000329593
+hypothetical protein	3.52411e-05	2.33383e-05
+Ammonium transporter family protein	0.0198646	0.00253648
+UniRef50_A5IR30	0.00995704	0.00083884
+hypothetical protein	1.2611e-05	9.78463e-06
+GAF domain containing protein	3.92329e-05	2.03856e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.00019434	2.3155e-05
+error prone DNA polymerase	1.36201e-05	2.93312e-05
+Oxidoreductase, putative	0.000202912	0.0149585
+Integration host factor subunit alpha	0.000933972	0.00103441
+UniRef50_A5IR39	0.000478505	0.000399044
+Non homologous end joining protein Ku	0.000429107	0.000112091
+UniRef50_D8J4V6	9.40419e-06	1.90914e-05
+Cardiolipin synthase, mitochondrial	5.91805e-06	1.36452e-05
+UniRef50_H0ABG8	8.33189e-05	2.53223e-05
+UniRef50_W7QLC2	0.000283756	0.000166312
+Transporter, major facilitator family	2.65706e-05	7.73856e-06
+Transcriptional regulator	0.000314781	0.000139852
+Putative galactosamine 6 phosphate isomerase	0.0021844	0.000982933
+Protein CA_C1420	0.000158391	0.00077591
+hypothetical protein SMAC_10820, partial	0.000904123	4.72183e-05
+ABC transporter, permease	0.00955234	0.000634995
+UniRef50_R9PQX7	1.69067e-05	1.42095e-05
+Low molecular weight protein tyrosine phosphatase wzb	0.00117871	0.00106418
+UniRef50_I4W6D9	3.80504e-05	2.90301e-05
+Putative UDP N acetylglucosamine 2 epimerase	7.21824e-06	2.99803e-05
+Exogenous DNA binding protein comGC homolog	0.00185354	0.000525058
+hypothetical protein	2.37535e-05	1.34443e-05
+Autotransporter  family porin	0.000442308	0.000113957
+CBS domain protein	0.000371175	0.00319758
+Dihydrodipicolinate synthase	0.000420259	0.000173665
+hypothetical protein	1.63767e-05	4.38727e-06
+UniRef50_E0SUZ8	0.00224446	0.000926934
+UniRef50_D8TJ66	1.77506e-06	2.24077e-06
+Acetolactate synthase isozyme 2 large subunit	0.00395752	0.000348537
+lipase	9.72145e-06	7.1227e-05
+PE PGRS family protein	0.000138969	6.81271e-05
+Alcohol dehydrogenase, zinc binding domain protein	0.000260549	0.000186871
+Ornithine cyclodeaminase mu crystallin	0.00348841	0.000349333
+hypothetical protein	6.10247e-06	5.9639e-06
+Alkyl hydroperoxide reductase subunit F domain protein	3.59123e-05	0.000197094
+Methionine synthase vitamin B12 independent	9.41834e-05	8.80244e-05
+NADH quinone oxidoreductase subunit N	0.00833538	0.000907195
+hypothetical protein	7.24141e-05	0.000174018
+2 nitropropane dioxygenase	9.9866e-05	0.00672241
+isomerase	7.7045e-06	1.22702e-05
+Phage terminase like protein, large subunit	0.0100736	0.00201658
+UniRef50_A6M1B5	0.000890798	0.000503734
+UniRef50_A6M1B4	0.000327787	0.000339139
+hypothetical protein	3.33775e-05	2.28227e-05
+hypothetical protein	1.59535e-05	3.67594e-06
+UniRef50_B2VDT9	0.000461025	0.00104012
+dehydrogenase	2.05399e-05	2.17773e-05
+Major outer membrane protein P.IA	0.000414045	0.00125493
+Phosphopantothenate cysteine ligase CoaB	0.0023536	0.000320709
+UniRef50_J9UQD4	0.00143578	0.000718122
+type I secretion protein	2.56888e-06	4.32392e-06
+Lipid A disaccharide synthase	0.000134979	0.000236483
+Probable L asparaginase	1.5582e-05	0.00224573
+Pyridoxine pyridoxamine 5 phosphate oxidase	0.00164378	0.000393853
+UniRef50_W0YV34	0.000242764	0.000863316
+Uridylate kinase	7.35056e-06	5.70636e-06
+Flagellar hook associated 2 domain protein	0.0042287	0.000658169
+UniRef50_S5CLC3	0.00026804	0.00324474
+hypothetical protein	4.99017e-05	0.000141142
+Ferripyochelin binding protein	3.95739e-05	0.0040104
+UniRef50_Q1YEW0	0.000971789	0.00161019
+Predicted protein	6.71461e-05	4.92564e-05
+UniRef50_U5MSZ1	0.000168274	0.000383535
+Resolvase	2.23891e-05	2.93946e-06
+Nuclease subunit of the excinuclease complex	0.000322058	3.91456e-05
+Predicted thioesterase	0.000803171	0.000886634
+Serine  tRNA ligase	0.00383248	0.00638688
+hypothetical protein	0.000272003	1.99008e-05
+UniRef50_A6UY58	0.00022898	0.000472889
+Integral membrane protein MviN	3.59558e-05	1.73677e-05
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00188471	0.000397569
+UniRef50_I0GCY5	0.000620515	0.000126275
+UniRef50_W1MH71	3.91851e-06	0.000192208
+hypothetical protein	2.42023e-06	5.82252e-06
+UniRef50_A3UG89	1.13556e-06	1.26201e-06
+Methionyl tRNA formyltransferase	5.63695e-06	2.77341e-05
+Diaminopimelate epimerase	0.000123429	0.00340544
+acetoacetate metabolism regulatory protein AtoC	4.50369e-06	4.81717e-06
+hypothetical protein	3.76106e-06	4.75237e-05
+UniRef50_A5UJF5	0.00330596	0.000233207
+UniRef50_A5UJF0	0.0027609	0.000270443
+UniRef50_D2P269	3.58765e-05	0.000586935
+UniRef50_W4UBC8	0.0003059	0.00232753
+Phage envelope protein like protein	0.00266406	0.000811943
+PREDICTED	4.77291e-05	1.45505e-05
+UniRef50_N5MF41	0.00111465	0.000231566
+Protein translocase subunit SecA 1	0.0235027	0.00338759
+hypothetical protein	9.61281e-06	3.23046e-06
+Isoleucine  tRNA ligase	3.2338e-06	3.78514e-06
+Gp12	5.7389e-05	8.51145e-06
+UniRef50_A4XRT9	0.000186971	0.000265638
+Glutamate 5 kinase	4.02044e-06	6.60375e-06
+Topoisomerase DNA binding C4 zinc finger domain protein	0.00278698	0.000533629
+hypothetical protein	1.3846e-05	1.2216e-05
+UniRef50_Q9RSF1	0.000475099	0.0216265
+UniRef50_R7E1V4	2.4262e-05	4.30815e-06
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.000130676	0.00429782
+Pyruvate, phosphate dikinase 1, chloroplastic	4.7654e-06	7.70128e-06
+ABC transporter ATP binding protein, partial	0.00206995	0.000122785
+Transcriptional regulator like protein	0.000158039	0.000827564
+Acriflavin resistance protein	0.00540924	0.000623353
+TRAP type mannitol chloroaromatic compound transport system, large permease component	3.81359e-05	5.36176e-05
+Aminotransferase	0.000838448	7.66082e-05
+Oligopeptide transport ATP binding protein OppD	0.000117128	0.00154936
+UniRef50_C5N1T5	0.00890071	0.00303356
+UniRef50_C5N1T1	0.00829844	0.00061806
+ABC transporter associated permease	0.000162998	0.00377331
+LysR family transcriptional regulator	0.000230422	0.00617303
+Uroporphyrinogen III synthase  (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing])	0.000199535	0.00360273
+Lipopolysaccharide core heptosyltransferase RfaQ	0.00288439	0.000168058
+Binding protein dependent transport systems inner membrane component 	1.66115e-05	2.53343e-05
+hypothetical protein	5.28546e-06	4.7002e-06
+hypothetical protein	0.0377883	0.000308182
+UniRef50_A0A023B3E8	1.52325e-06	2.23768e-07
+CobB CobQ like glutamine amidotransferase domain protein	0.0192028	0.00224345
+Cobyrinic acid ac diamide synthase	8.12225e-06	7.39168e-06
+Formate dependent nitrite reductase complex subunit NrfG	0.00323912	0.000151153
+hypothetical protein	3.64297e-05	9.90757e-06
+hypothetical protein	0.000377883	0.00032066
+NADH quinone oxidoreductase subunit N	7.01143e-05	0.000541567
+DNA binding protein	0.000167062	0.00273123
+Phosphoglucosamine mutase	3.72189e-06	4.10668e-05
+Diaminopimelate decarboxylase	0.000184781	0.000760545
+UniRef50_Q58197	0.00398421	0.000524313
+hypothetical protein	7.10426e-05	1.50068e-05
+DNA directed RNA polymerase subunit alpha	0.0114436	0.0022342
+cell wall hydrolase	2.19121e-05	9.06756e-06
+hypothetical protein	1.74701e-06	3.06739e-06
+hypothetical protein	6.6532e-06	1.80736e-05
+hypothetical protein	7.07191e-06	2.47988e-06
+Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00274917	0.000123162
+Orotidine 5 phosphate decarboxylase	1.4692e-05	9.39414e-06
+NADH quinone oxidoreductase subunit I	3.39716e-05	7.977e-06
+UniRef50_F1BCI2	0.000250555	0.000207293
+UniRef50_Q9RXP2	0.000153209	0.0324745
+UniRef50_Q9RXP3	6.62932e-05	0.00298673
+Inner membrane translocator	5.54429e-05	0.000228099
+UniRef50_W9V4Y7	3.90184e-05	1.96385e-05
+Nitrate reductase, alpha subunit	0.0118253	0.00117404
+Possible phenol degradation enzyme	0.00548306	0.000709198
+probable helicase	4.91836e-06	0.000318002
+hypothetical protein	0.000132621	4.26553e-05
+Major facilitator superfamily MFS_1	8.44892e-05	0.00247963
+UniRef50_E3NTU6	0.000390562	0.000213226
+PREDICTED	1.25102e-05	3.07904e-05
+4 alpha L fucosyltransferase family protein	0.000743374	0.000161194
+Ornithine decarboxylase, inducible	0.00372352	0.000415029
+Aminopeptidase	0.000232752	7.45103e-05
+Transposase, IS4 family	7.02694e-05	8.41136e-06
+Nitronate monooxygenase family protein	0.00663202	0.00406361
+Pantothenate synthetase	0.00239381	0.000592379
+PREDICTED	1.27075e-05	9.64061e-06
+Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD	0.00309532	0.000432151
+inner membrane translocator	1.5559e-05	1.05962e-05
+UniRef50_P76017	0.00219757	0.000159661
+hypothetical protein	0.000152605	2.98406e-05
+general secretion pathway protein I, partial	0.000600733	4.65142e-05
+DNA repair protein RadA homolog	8.78717e-05	0.00156572
+UniRef50_P9WPR0	7.11519e-05	0.0037432
+Ribulokinase	0.0196357	0.00200031
+Protein RGD1566084	1.77106e-05	7.6709e-06
+UniRef50_S1S766	0.000102863	1.4364e-05
+Glucose specific phosphotransferase enzyme IIA component	0.0211298	0.00037582
+Cation transporting ATPase	0.00844802	0.00189455
+23S ribosomal RNA G745 methyltransferase	0.000264874	0.0040904
+Heat shock protein Hsp20	0.0089162	0.00453062
+Acetylornithine deacetylase ArgE	0.00126608	0.00026628
+Ribonuclease 3	2.05292e-05	2.74379e-05
+3 hydroxy 3 methylglutaryl coenzyme A reductase	0.00261217	0.000490434
+Mg2 transporter protein CorA family protein	0.000748764	0.000238567
+UniRef50_J8V3X8	0.000145089	0.000466546
+ABC transporter, ATP binding permease protein	0.00369878	0.00200208
+hypothetical protein	4.41355e-06	5.6839e-06
+UniRef50_D7T3T0	5.27226e-06	3.50552e-06
+hypothetical protein, partial	4.88822e-06	4.00068e-06
+UniRef50_Q5VJ09	3.52361e-05	4.4882e-06
+Transcriptional regulator, MarR family	0.00120227	0.000336673
+Energy converting hydrogenase A subunit J EhaJ	0.00191421	0.000107142
+hypothetical protein SMAC_11478, partial	0.000896465	6.25057e-05
+UDP glucose 4 epimerase	0.000122085	0.00233743
+aldehyde activating protein	0.00023156	4.54171e-05
+Arabinose efflux permease	6.12938e-05	8.35223e-06
+UniRef50_T9BKP2	0.00174873	0.000575374
+TetR AcrR family transcriptional regulator	0.00257603	0.00109501
+Beta hexosaminidase	4.20338e-06	5.82597e-06
+RNA polymerase sigma G factor	0.000130445	0.000926563
+UniRef50_M9RAR4	2.90533e-05	5.6414e-06
+Two component system response regulator	0.00162953	0.00258089
+UniRef50_P39336	0.00207777	0.000231561
+hypothetical protein	1.5037e-05	3.63411e-06
+UniRef50_M9VFS5	0.000121498	0.00242915
+50S ribosomal protein L4	1.33076e-05	2.27449e-05
+Cys Met metabolism pyridoxal phosphate dependent protein	0.000194223	0.000823279
+THO complex subunit 2	8.50443e-06	1.06345e-05
+Elongation factor 4	0.0246052	0.0346253
+anhydrase	2.35449e-05	4.26783e-06
+Aryl phospho beta D glucosidase BglC	0.00108543	0.00344891
+N acetyl gamma glutamyl phosphate reductase	1.04757e-05	1.28744e-05
+ABC transporter ATP binding protein	0.003966	0.00048269
+MULTISPECIES	2.47044e-05	1.45574e-05
+hypothetical protein	8.4652e-05	3.03847e-05
+Phosphoribosylglycinamide formyltransferase	0.00910346	0.00291578
+Response regulator receiver protein ExsF	2.16654e-05	2.51946e-05
+hypothetical protein	6.95323e-06	2.94987e-05
+ABC transporter permease	3.37692e-05	4.62964e-06
+symporter	7.18691e-05	0.000106437
+Transcriptional regulator, TetR family	0.00108283	0.00068109
+Glutamate  tRNA ligase	0.0020023	0.000234598
+Urease accessory protein UreG	0.0225077	0.0235424
+Predicted acyltransferase	0.000500076	0.000123671
+Low molecular weight protein tyrosine phosphatase PtpA	0.0537426	0.000474959
+Anthranilate synthase component 1	0.000955186	0.000242338
+UniRef50_G3TAD7	0.000344674	1.82461e-05
+Alpha beta hydrolase fold protein	0.000729676	0.000362821
+DNA damage repair protein homolog	0.0149742	0.00370976
+Growth factor receptor bound protein	1.03341e-05	3.58483e-06
+Transcriptional regulator, LacI family	0.000990761	0.000633065
+ATP dependent protease subunit HslV	0.0290668	0.0066358
+UniRef50_Q5LFB0	0.000130445	0.0020441
+hypothetical protein	4.69536e-06	1.28152e-05
+Fe S metabolism associated SufE	0.000159289	1.33494e-05
+Adenylosuccinate lyase	2.42037e-06	0.00183608
+Exotoxin	0.0123949	0.00155255
+UPF0761 membrane protein YPO0028 y3801 YP_0029	0.00175721	0.000125398
+hypothetical protein	4.50988e-06	2.31101e-05
+Formate dehydrogenase accessory protein FdhD, FdhD	0.00394408	0.000186276
+Alpha N acetylglucosaminidase	3.25703e-06	0.00207561
+PhbF	0.000334508	2.26954e-05
+Glycerate kinase	0.00522118	0.00519078
+Iron ABC transporter substrate binding protein	0.000100163	0.00613804
+amidohydrolase	1.24716e-05	1.20242e-05
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.0233411	0.00701254
+histidine ammonia lyase	0.000101779	1.0847e-05
+Type IV pilus biogenesis protein	0.000108795	0.00380502
+DNA repair exonuclease family protein YhaO	0.0174604	0.00143233
+Peptidase M16 like protein	0.00374114	0.000379947
+NADH quinone oxidoreductase subunit N	9.66168e-05	0.000902889
+UniRef50_E0NA78	0.000267456	0.000258606
+Transcription factor jumonji	0.000395804	0.000175361
+UniRef50_V9WFJ2	0.0413017	0.00224968
+endonuclease	6.93765e-07	0.000165918
+Phenol hydroxylase	0.000131116	1.10025e-05
+OsmC like protein	0.00630917	0.00101109
+Peptide deformylase	8.60134e-06	2.69899e-05
+UniRef50_U5NRQ9	0.000974006	0.00227246
+Histone acetyltransferase HPA2	0.000206472	0.000930799
+hypothetical protein	3.63231e-06	9.67794e-05
+UniRef50_Q3IV36	0.014578	0.000291841
+Dihydropteroate synthase related protein	0.00245377	0.00111431
+N acetyl gamma glutamyl phosphate reductase	5.33915e-06	1.47506e-05
+hypothetical protein	2.54848e-06	2.86136e-06
+NADH quinone oxidoreductase subunit I	0.0136964	0.00335763
+Pyruvate	0.000171045	0.00436948
+Molybdenum cofactor synthesis domain containing protein	0.00259417	0.00507478
+NADH dehydrogenase	2.05297e-05	0.000100867
+Transcriptional regulator, LysR family	0.000544461	0.00295433
+hypothetical protein	5.0108e-06	5.33722e-05
+UniRef50_C1CY21	0.000134975	0.00130726
+UniRef50_A1AZ65	0.000132752	1.66405e-05
+UniRef50_H8FQH1	0.000416234	6.67879e-05
+Phosphopantothenoylcysteine decarboxylase   Phosphopantothenoylcysteine synthetase	0.000214526	0.00230666
+PREDICTED	5.95691e-05	0.000129217
+UniRef50_L0A294	1.50005e-05	0.0003092
+Acetyl transferase GNAT family	0.00908334	0.00575213
+hydrolase	8.9558e-06	2.70169e-06
+UniRef50_R5QRF5	4.46869e-06	1.47468e-05
+Expressed protein	1.72701e-05	0.000388281
+Phospholipase A1	0.000136808	0.00166444
+UniRef50_E4CH69	0.000323604	0.00172036
+LicD family protein	0.000868736	0.000708594
+UniRef50_F2A4B5	9.55199e-05	2.5687e-06
+UniRef50_B9TM50	0.000169909	0.000455761
+UniRef50_T1IZI3	4.60368e-06	8.54002e-07
+Lipoyl [GcvH]	5.73185e-06	0.00053173
+hypothetical protein	7.76021e-06	5.80281e-06
+hypothetical protein	7.14893e-05	5.92675e-05
+ABC type antimicrobial peptide transport system ATPase component	0.000744529	0.000938592
+hypothetical protein, partial	9.81034e-05	3.52032e-05
+UniRef50_Q08WK0	5.91251e-06	1.22579e-06
+Bifunctional protein	0.00534639	0.00201007
+hypothetical protein	2.56827e-06	7.48016e-06
+Type I restriction modification system methylase, subunit S	0.00147954	0.000153216
+PREDICTED	0.000136741	5.04693e-05
+MULTISPECIES	5.51012e-05	4.88387e-05
+Queuine tRNA ribosyltransferase	4.43846e-06	3.3979e-05
+Diacetyl reductase [ acetoin forming]	0.0105257	0.00165429
+UniRef50_D4H9E3	0.000126999	0.00366863
+UniRef50_Q5HKY5	0.0112649	0.000780402
+PAS sensor protein	0.000212173	3.84907e-05
+UniRef50_A5UP86	0.000241542	0.000406266
+AcrB AcrD AcrF family protein	0.00175185	0.000178965
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	8.06668e-06	1.82211e-06
+Type II adenine specific DNA methyltransferase	0.000122381	0.00158111
+UniRef50_K7E6V3	4.08935e-05	1.34131e-05
+Marine sediment metagenome DNA, contig	1.88599e-05	2.00582e-05
+Inner membrane protein	0.019936	0.000280578
+UniRef50_E5QR95	0.00217261	0.000876402
+tRNA threonylcarbamoyladenosine dehydratase	0.00778106	0.000745273
+ABC transporter like protein	2.7574e-05	3.20379e-06
+Putative glucose galactose transporter	8.40671e-05	0.00277128
+UniRef50_U6MX87	3.52272e-05	1.53112e-05
+phosphodiesterase	2.54741e-05	7.91794e-06
+Hydrolase, haloacid dehalogenase like family	0.00719024	0.00184624
+Capsule biosynthesis protein CapC	0.0231885	0.00266973
+Glucose 1 phosphate adenylyltransferase	3.9385e-06	1.33502e-05
+UniRef50_H8H606	4.32767e-05	0.00174132
+IS1272 like transposase, degenerate	0.00499633	0.0016616
+Adenylosuccinate synthetase	4.29704e-06	4.57366e-06
+coproporphyrinogen III oxidase	3.85307e-05	6.44903e-06
+PTS system glucoside specific EIICBA component	0.0361344	0.00351105
+HTH type transcriptional regulator SarZ	0.00761379	0.000404436
+Sulfatase	0.00160419	0.000203594
+hypothetical protein	6.60965e-06	3.98669e-06
+Oxidoreductase	0.000162062	0.000467241
+UniRef50_N9B926	8.09011e-05	0.00311127
+AMP binding protein	6.02774e-05	0.000121607
+Putative N acetylmannosamine 6 phosphate 2 epimerase	0.0111702	0.00273652
+ABC transporter substrate binding protein	6.25776e-06	2.44279e-05
+Predicted protein	0.000186776	0.000234699
+Expressed protein 	2.72219e-05	0.000120171
+hypothetical protein CONPUDRAFT_131066	1.41272e-05	1.18157e-05
+UniRef50_L8MS48	1.53361e-05	6.41571e-06
+Serine hydroxymethyltransferase	6.73879e-05	4.02728e-05
+Permease, probably tetracycline resistance protein	0.000634933	0.00109258
+Xanthine dehydrogenase, iron sulfur binding subunit	0.00889017	0.00138214
+D galactonate dehydratase 2	0.00188724	0.00042521
+3 oxoacyl [acyl carrier protein] synthase 2	0.012729	0.00361084
+Putative GMP synthase [glutamine hydrolyzing]	1.20254e-05	1.10599e-05
+hypothetical protein	0.00165001	0.000242641
+UniRef50_A5UMB3	0.00124053	0.00067556
+hypothetical protein, partial	2.07421e-05	1.87013e-05
+O antigen ligase	0.00235314	0.000492837
+UniRef50_A0A014MKE4	0.000489294	0.00782587
+PREDICTED	2.05714e-05	1.82936e-05
+Dicarboxylate transporter	0.000534204	0.000328281
+UniRef50_K1X7T9	1.0946e-05	4.0177e-06
+Adhesin like protein	0.00338679	0.000163765
+hypothetical protein	7.12911e-06	0.000508223
+UniRef50_L7WZN3	0.00657536	0.00131239
+Putative hemolysin activator related protein	2.24149e-05	0.000129254
+Ribonuclease 3	6.16294e-06	2.61219e-05
+Diacylglycerol kinase	0.00375858	0.000898437
+UniRef50_K6ZP91	2.87879e-05	7.32227e-06
+hypothetical protein, partial	0.000239011	1.39719e-05
+Putative inner membrane metabolite transport protein YdfJ	0.00271971	0.000460758
+exodeoxyribonuclease III	7.54148e-05	1.24835e-05
+Acetate kinase	0.0062429	0.00410493
+Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000389404	6.97087e-05
+Pyrrolidone carboxylate peptidase	2.94592e-05	2.95525e-05
+shikimate kinase	1.64574e-05	7.34837e-06
+PREDICTED	0.000192019	0.000118915
+Transketolase	0.000108604	1.56018e-05
+Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit	3.00433e-05	3.31664e-05
+ATP dependent zinc metalloprotease FtsH	0.000251765	0.000933846
+hypothetical protein	1.18727e-05	4.68614e-06
+Shikimate kinase	1.34638e-05	7.19402e-06
+2 5 RNA ligase LigT	0.00267201	0.000334888
+UniRef50_P33924	0.00347964	0.000244228
+ABC transporter ATP binding protein	8.69802e-06	1.55201e-05
+hypothetical protein	4.26862e-05	2.32475e-06
+tryptophan synthase subunit alpha, partial	8.65149e-06	9.8549e-06
+nitrogen regulatory IIA	1.31673e-05	1.85516e-05
+membrane protein	1.47442e-05	2.00085e-05
+NADH quinone oxidoreductase subunit K	5.68615e-05	0.00265802
+UniRef50_A4XGW8	0.000305727	0.000132426
+Drug resistance translocase family protein	0.000112684	0.00143403
+UniRef50_G3GQA9	2.02139e-06	7.1891e-06
+Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	6.32705e-06	8.76887e-06
+4 alpha glucanotransferase DPE1, chloroplastic amyloplastic	7.7509e-06	0.000248422
+tRNA delta isopentenylpyrophosphate transferase	2.28581e-05	4.87945e-06
+Sulfate adenylyltransferase	5.92328e-05	2.055e-05
+UniRef50_I3TNE9	5.21636e-05	8.48684e-06
+MULTISPECIES	2.95163e-06	5.95358e-06
+hypothetical protein	1.71689e-05	1.31633e-06
+hypothetical protein	5.40735e-05	5.87675e-06
+UniRef50_G2LQE7	6.13647e-06	1.43461e-05
+Cro Cl family transcriptional regulator	0.000152358	1.121e-05
+tRNA dimethylallyltransferase	2.1416e-05	4.68696e-06
+PREDICTED	1.74353e-05	7.54663e-06
+ErfK YbiS YcfS YnhG family protein	0.000236944	0.00156818
+30S ribosomal protein S15, partial	0.000238375	0.000207565
+PREDICTED	1.48798e-05	4.43288e-06
+protein phosphatase	8.27892e-06	6.70843e-06
+Dihydroorotate dehydrogenase 	8.00513e-06	8.02141e-06
+hypothetical protein	3.88105e-05	6.29995e-06
+LacI family transcriptional regulator	5.03142e-06	6.40851e-06
+UniRef50_P76498	0.000830174	0.000378451
+UniRef50_P76499	0.0031498	0.000364979
+UniRef50_W8EV27	9.6278e-06	1.05675e-05
+Glutamine synthetase	0.0126688	0.0156616
+Phosphosugar binding transcriptional regulator, RpiR family	0.0243082	0.00566317
+Putative osmoprotectant uptake system permease protein YehY	0.0025917	8.28274e-05
+Lipoprotein	7.02764e-06	5.65344e-06
+Dehydrogenase	1.26066e-05	4.20553e-05
+3 oxoacyl [acyl carrier protein] synthase 3 protein 1	1.34882e-05	1.17367e-05
+PREDICTED	3.95578e-06	4.80704e-06
+Alanine dehydrogenase 1	0.00674507	0.00036688
+Ferredoxin, iron sulfur binding	0.00158898	0.000125573
+Metal dependent phosphohydrolase	0.000187666	0.00224235
+UniRef50_D8TH60	4.05194e-06	5.79653e-06
+hypothetical protein	9.6079e-05	2.0077e-05
+Protein HdeD	0.000177131	0.000176395
+DNA mismatch repair protein MutL	6.43907e-05	0.000116878
+hypothetical protein	1.78621e-07	5.7944e-07
+UniRef50_R5A3J3	0.000863374	0.000128264
+Response regulator GtcR	0.000493608	0.00103011
+Chloromuconate cycloisomerase, putative	0.000118922	0.00143756
+PREDICTED	1.57018e-06	4.50402e-06
+hypothetical protein	0.000343941	5.77592e-05
+hypothetical protein	1.80426e-06	0.00021006
+PREDICTED	2.33123e-06	3.24753e-06
+Pyridoxal 5 phosphate dependent protein beta subunit	9.84155e-06	3.33067e-06
+D alanine  poly ligase subunit 1	0.0176748	0.00402666
+UniRef50_Q9RXK8	7.2376e-05	0.0168019
+2 oxoglutarate synthase subunit KorB	0.00307452	0.000105258
+Multi sensor signal transduction histidine kinase	0.000783478	0.000197141
+Cation acetate symporter ActP	0.0113743	0.00678871
+Cytidylate kinase	9.47701e-06	6.02113e-06
+translation factor Sua5	2.7093e-05	4.36675e-05
+Ribosomal RNA small subunit methyltransferase H	1.68409e-05	4.49736e-06
+Ribonucleoside diphosphate reductase subunit alpha	7.70167e-05	0.0064073
+PTS system maltose  and glucose specific EIICB component	0.00310664	0.00084602
+Peptidase dimerization domain containing protein	0.000282377	0.00276498
+Haloacid dehalogenase like hydrolase	0.0146853	0.00433811
+UniRef50_W0YRX8	0.00329055	0.000619532
+PREDICTED	2.7051e-05	5.63663e-05
+CRISPR associated endonuclease helicase Cas3	5.5719e-05	3.18652e-06
+hypothetical protein	1.24606e-05	8.44707e-06
+Succinyl CoA ligase [ADP forming] subunit alpha	2.52256e-05	2.63224e-05
+Guanylate kinase	9.21738e-06	6.48615e-06
+Phenol hydroxylase, putative	9.44811e-05	1.54631e-05
+UniRef50_UPI0003513255	2.61382e-05	7.58372e-05
+Probable macrolide acetyltransferase 	1.47497e-05	0.000522982
+Transposon Tn2501 resolvase	0.000971015	0.000510141
+Expressed protein 	0.000130985	0.000116994
+Putative exported alkaline phosphatase 	6.04865e-06	7.77734e-05
+UniRef50_D9UFT2	0.000214236	2.13009e-05
+N acetyl gamma glutamyl phosphate reductase	6.05602e-06	4.71718e-06
+hypothetical protein	7.57424e-05	3.36928e-05
+UniRef50_A0A022NVZ1	0.000919619	0.000173015
+UniRef50_R5W852	5.26245e-05	1.63412e-05
+Aflatoxin B1 aldehyde reductase member 1	0.000354329	0.000622706
+PREDICTED	2.70538e-06	3.0301e-05
+UniRef50_M9UY12	2.63228e-05	3.70966e-05
+UniRef50_F0RLX6	0.000237006	0.00411185
+UniRef50_B1ZI45	1.86591e-05	9.36682e-05
+Thiamine biosynthesis protein ThiC	9.56935e-06	1.72415e-05
+UniRef50_G6XLM0	7.96066e-05	2.85491e-05
+AmrA	0.0123026	0.000763782
+Endoribonuclease YbeY	0.00148911	0.00134429
+Methyl accepting chemotaxis serine transducer	0.00372988	0.000247118
+UniRef50_A3PPX9	0.00194903	0.000596309
+UniRef50_W2F2K9	7.34058e-06	4.82837e-06
+UniRef50_D2ZRM1	0.00278774	5.93423e-05
+UniRef50_A3M9B5	0.000161028	0.00309142
+RNase P protein subunit, RNase MRP protein subunit	8.67851e-06	3.13459e-06
+UniRef50_A3M9B3	9.06596e-05	0.0043718
+Outer membrane autotransporter barrel	3.37789e-05	4.9836e-06
+UniRef50_M5Y1W9	3.53275e-05	0.000157196
+Glutathione S transferase	0.000792501	0.0025117
+UDP N acetylmuramate  L alanine ligase	1.45512e-05	2.48976e-06
+IS5 transposase	0.0018313	0.000215054
+UniRef50_V6ET42	0.000306926	0.000249587
+UniRef50_R7PSW3	0.00253346	0.00010285
+Phosphoglycerate mutase	0.00824549	0.000808531
+Alpha 1,4 glucan	0.00943292	0.00151466
+UniRef50_F4RCY2	2.97066e-06	0.000227048
+Peptide chain release factor 3	0.000841371	0.000344003
+hypothetical protein	6.04664e-06	5.68704e-06
+UniRef50_D3QD86	0.00317895	0.000246662
+FAD FMN containing dehydrogenases	0.00080687	0.00165521
+Predicted protein 	0.000245284	5.67545e-05
+UniRef50_M9VAJ1	0.00020274	0.00281754
+Conserved virulence factor B	0.0186313	0.00200608
+Plasmid maintenance system killer	0.000371193	0.00075671
+Geranyltranstransferase	0.000318392	0.00182267
+Ribonuclease P protein component	0.00235278	0.000260246
+PREDICTED	1.56484e-06	2.21535e-07
+UniRef50_C3I9I9	0.000156292	0.00139674
+UniRef50_I2QLC8	3.652e-05	2.59294e-05
+PREDICTED	6.31592e-06	3.12009e-06
+hypothetical protein, partial	1.22729e-05	7.1181e-05
+Imidazoleglycerol phosphate dehydratase	0.000161567	1.55902e-05
+2 polyprenyl 6 methoxyphenol hydroxylase	0.00128907	9.28489e-05
+UniRef50_H5SYI3	1.33659e-05	1.21009e-05
+hypothetical protein	4.35541e-06	2.91299e-06
+UniRef50_J9YRR4	0.000280353	0.000102494
+Rubrerythrin	0.00607305	0.000217924
+hypothetical protein	9.96915e-06	3.10512e-06
+Immune inhibitor A	2.10109e-05	0.000276505
+NH3 dependent NAD+ synthetase	6.49708e-05	0.000694647
+Lipoprotein	2.41439e-05	4.05426e-06
+NADH quinone oxidoreductase subunit	0.000630171	0.000576505
+UniRef50_Q9RU53	0.000132326	0.00627177
+UniRef50_D2ZUU5	2.3421e-05	0.000332537
+taurine ABC transporter substrate binding protein	2.43177e-05	2.86477e-05
+UniRef50_Q9RU59	9.23738e-05	0.00409723
+ATP dependent RNA helicase RhlE	0.000995144	0.000319559
+UniRef50_S6ETI6	1.80311e-05	1.65332e-05
+Oxidoreductase, aldo keto reductase family protein	0.000133023	0.00221995
+UniRef50_F0XZ87	1.47611e-05	4.15479e-06
+Protease	0.000145903	0.00179802
+UniRef50_S1SW71	0.000127159	6.95499e-05
+Rhomboid family protein	0.002466	0.000384221
+Pseudouridine 5 phosphate glycosidase 1	0.000107753	0.00469292
+hypothetical protein	8.5998e-05	4.37805e-05
+citrate synthase, partial	1.57737e-05	4.98197e-06
+3 oxoacyl [acyl carrier protein] synthase 2	0.0025306	0.000189342
+DltB protein	0.0172742	0.00458779
+Dipeptide permease D	0.00424715	0.000567109
+Cytoplasmic alpha amylase	0.00270575	0.000479536
+glutaredoxin	0.000135194	0.000102526
+Alkaline phosphatase isozyme conversion protein	0.00521501	0.00198086
+UniRef50_U3KIJ5	8.94283e-05	6.25098e-06
+FAD dependent oxidoreductase	3.11863e-06	3.6176e-06
+UniRef50_W1WTC0	0.00102693	0.000798235
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.000187713	0.000324792
+UniRef50_W4STC6	0.000218922	8.54551e-05
+Expressed protein 	0.000451285	0.000169162
+UniRef50_W4MCA9	0.000205231	5.08104e-05
+chemotaxis protein CheY	5.84758e-05	3.0387e-05
+hypothetical protein	4.14803e-06	3.37078e-06
+Aldehyde Dehydrogenase	0.00361114	0.000446991
+ABC transporter periplasmic protein	1.0503e-05	9.99348e-06
+hypothetical protein, partial	1.35818e-05	1.34769e-05
+Glutamate  tRNA ligase	3.9285e-06	3.17814e-06
+1 deoxy D xylulose 5 phosphate reductoisomerase	0.000515636	0.00207799
+Transporter	0.00443533	0.00136687
+Transducer protein Htr38 	1.33598e-05	0.000110652
+Cell division protein SepF	0.0143225	0.00280979
+glycerophosphodiester phosphodiesterase	8.3771e-06	0.000809806
+hypothetical protein	5.6619e-05	6.00506e-05
+UniRef50_Q2YUG1	4.33462e-05	1.12471e-05
+Enoyl ACP reductase	0.00637363	0.000803448
+Xanthine uracil vitamin C permease	0.00511885	0.00292067
+amino acid ABC transporter permease	5.78889e-05	7.67468e-06
+citrate lyase, partial	0.000130328	1.20027e-05
+hypothetical protein PUNSTDRAFT_120887	3.81811e-06	3.80283e-05
+Zinc binding alcohol dehydrogenase family protein	0.000100163	0.00183825
+hypothetical protein	5.35108e-05	2.58856e-05
+Phosphoenolpyruvate carboxykinase [ATP]	0.00983997	0.00108978
+Non canonical purine NTP pyrophosphatase	6.90977e-06	2.11213e-05
+Shikimate transporter	0.00171127	0.000246323
+ABC transporter ATP binding protein uup 1	0.00186767	0.000111678
+UniRef50_Q1QVP8	1.83158e-05	9.47537e-05
+UniRef50_C3JXG2	0.000327226	4.72692e-05
+YjeF related protein like protein	1.73619e-05	9.95062e-06
+Multiple resistance and pH homeostasis protein B	6.92098e-06	1.10436e-05
+Putative type I restriction modification system, specificity determinant	0.000505448	0.000470908
+Formimidoylglutamase	0.0132421	0.000882241
+Type IV pilus assembly protein TapC	0.000247311	0.00287131
+UniRef50_H9K906	3.84321e-05	2.25883e-05
+3 oxoadipate enol lactonase 2	0.000303197	0.00767561
+Pyruvate carboxylase, subunit B	0.0032929	0.000550883
+UniRef50_D0D597	8.48097e-05	6.80337e-05
+Os01g0126200 protein 	5.80441e-06	3.53948e-05
+Ketol acid reductoisomerase	1.82554e-05	1.94747e-05
+50S ribosomal protein L21	0.000319056	0.000266406
+PREDICTED	3.78606e-06	5.57039e-05
+DNA translocase FtsK 2	0.000140502	0.00144633
+Alkyl sulfatase like hydrolase	0.00041209	0.000147171
+MFS transporter	0.00215883	0.000142414
+Putative ATP	0.000428816	0.000718953
+Multifunctional CCA protein	0.00496927	0.00761061
+UniRef50_C7LD35	0.000199349	3.816e-05
+UniRef50_E7SW38	0.00022769	1.98914e-05
+UniRef50_A0A023XLY7	0.000175337	2.44651e-05
+UniRef50_E7GLY7	5.40912e-06	4.03182e-06
+Electron transfer flavoprotein ubiquinone oxidoreductase	1.03758e-05	1.55647e-05
+UvrABC system protein A Short=UvrA protein	5.0909e-06	9.53009e-05
+hypothetical protein	3.60796e-06	3.35282e-05
+hypothetical protein	1.62402e-05	0.000106991
+Beta lactamase	0.000563668	0.000286371
+Probable L serine dehydratase, alpha chain 	1.85275e-05	7.15459e-06
+UniRef50_L0FK70	4.50752e-05	3.30458e-05
+NADH quinone oxidoreductase subunit H	0.000141012	0.00160939
+UniRef50_A3SBX3	3.9885e-06	1.21605e-06
+amino acid permease associated protein, partial	1.41031e-05	4.07132e-05
+Phosphoribosylformylglycinamidine synthase 2	1.34653e-05	1.73163e-06
+Prevent host death family protein	7.25324e-05	4.49e-05
+NAD dependent epimerase	8.96735e-06	1.23264e-05
+MFS transporter permease	2.91465e-06	8.3286e-05
+peptide ABC transporter permease	5.49514e-06	3.04888e-05
+UniRef50_A3JZB9	0.000876979	7.5147e-05
+GTP cyclohydrolase 1	2.91007e-05	6.61286e-06
+Transposase	0.00245677	0.000610263
+ABC transporter related	0.0069234	0.000328373
+hypothetical protein	4.18126e-06	5.4198e-06
+UniRef50_B9KQ64	0.00150296	0.000309036
+UniRef50_B2V2R9	0.000267102	0.000466047
+Triosephosphate isomerase	5.80104e-06	0.00334378
+30S ribosomal protein S15, partial	0.000334347	3.74494e-05
+S ribosylhomocysteine lyase	0.00239422	0.00472451
+hypothetical protein	5.42889e-05	5.25967e-06
+Transcriptional regulator, MarR family	0.0011444	0.000357324
+hypothetical protein	6.77916e-06	1.16146e-05
+UniRef50_Q3JHR7	3.12834e-06	2.84419e-05
+DegV domain containing protein YejH	0.00362502	0.00365896
+UniRef50_Q3JHR1	5.58561e-05	3.91731e-05
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	5.01314e-06	3.93746e-06
+Deaminase	0.000229434	0.000179261
+Carbamoyl phosphate synthase small chain	0.00212691	0.00489011
+hypothetical protein	6.31431e-06	1.27802e-05
+Predicted dithiol disulfide isomerase involved in polyketide biosynthesis	0.0001585	0.000285886
+Potassium efflux system KefA protein   Small conductance mechanosensitive channel	0.00240423	0.000411267
+Hydroxycinnamoyl CoA hydratase lyase	0.000377143	0.00513107
+hypothetical protein	4.46868e-06	1.35224e-05
+Uronate isomerase	0.000103178	0.00236228
+Integral membrane protein	3.33056e-05	1.49234e-05
+ATP dependent DNA helicase RecG	5.01065e-05	0.00107101
+Protein FixA	0.000756603	0.000253856
+UniRef50_K7RV74	2.4698e-05	6.73118e-05
+Complete genome; segment 12 17	1.6118e-06	5.59004e-06
+UniRef50_F1WXM9	7.17515e-05	0.00100821
+UniRef50_B7UXK4	0.000371193	0.000207835
+Transcription antiterminator, BglG family	0.0106394	0.00139678
+Endonuclease III	5.60225e-06	6.76981e-06
+2 dehydro 3 deoxyphosphooctonate aldolase	0.00310778	0.00740068
+hypothetical protein	0.000420547	9.72088e-05
+PE PGRS family protein	5.97324e-05	8.7554e-05
+Peptidase	0.000449413	0.000152126
+hypothetical protein	2.33257e-05	9.54882e-06
+hypothetical protein	0.000361109	3.25689e-05
+magnesium transporter	0.000154231	1.20494e-05
+UniRef50_W2ELZ6	4.14296e-05	3.05295e-05
+GTPase Obg	0.000956855	0.00183333
+MATE efflux family protein	0.00634885	0.000468264
+NAD NADP transhydrogenase subunit alpha	1.82569e-05	8.10767e-06
+protein export cytoplasm protein SecA ATPase RNA helicase	2.10737e-05	2.84078e-05
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.00563421	0.000906212
+Protein TonB	0.000164437	0.000278178
+hypothetical protein	1.08884e-05	5.58178e-06
+UniRef50_U5NMV6	0.00289117	0.00109095
+UniRef50_U5UNI0	0.0188752	0.00221339
+Superfamily I DNA helicase	0.000118941	7.81732e-05
+hypothetical protein	1.01408e-05	2.22814e-06
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	3.87504e-06	3.7762e-06
+Putative glycine rich protein 	1.02132e-05	1.1246e-05
+hypothetical protein	9.62324e-06	4.24713e-06
+Stringent starvation protein A homolog	1.08892e-05	2.78066e-05
+Outer membrane autotransporter barrel domain protein	0.000405487	0.000210791
+Polyphosphate kinase	0.000939077	0.00607514
+histidine transporter permease	8.01886e-05	8.90975e-05
+AdeS	0.0013228	0.00305938
+Isopentenyl diphosphate Delta isomerase	3.59067e-05	4.83659e-06
+PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL	0.00127604	0.000919957
+Hydrolase TatD family	0.00218553	0.000419278
+glycine cleavage system protein H	7.80801e-05	1.604e-05
+Hypoxanthine guanine phosphoribosyltransferase	2.78977e-05	0.000178761
+WblI protein	0.000265187	0.00121587
+UniRef50_Q1PY54	2.36245e-05	1.12494e-05
+Flagellar biosynthetic protein FlhB	0.0027039	0.00189893
+Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32	0.00277266	0.000277674
+50S ribosomal protein L13	0.000142874	3.74437e-05
+Diaminopimelate decarboxylase	4.57824e-06	6.74196e-05
+Transposase, IS4	5.65128e-05	2.946e-06
+UniRef50_U3SU32	0.0029369	0.000341387
+Exodeoxyribonuclease 7 large subunit	0.000154972	8.68325e-05
+hypothetical protein	1.46156e-05	8.89806e-05
+Sulfite reductase 	0.00738917	0.00302467
+PREDICTED	2.82005e-06	7.64956e-06
+UniRef50_Q8CUD0	0.00242249	0.000247077
+UniRef50_Q8CUD7	0.0301321	0.00484526
+UniRef50_M0FQF4	0.000465419	4.87471e-05
+UPF0042 nucleotide binding protein Csal_2229	0.000624868	0.000627337
+UniRef50_H6CMH0	0.000168506	0.000649074
+hypothetical protein	7.42906e-06	6.21755e-06
+phosphate starvation inducible E	2.3375e-05	1.43533e-05
+NADH quinone oxidoreductase subunit K	4.09549e-05	2.79081e-05
+UniRef50_G4LBC3	2.26357e-05	0.000117221
+UniRef50_F3U4G5	0.00188896	6.18267e-05
+Calcium transporting ATPase	0.000248233	0.000489891
+hypothetical protein	1.16392e-05	0.00011771
+UniRef50_M9VKR8	0.000131663	0.000736451
+Conjugal transfer pilus assembly protein TraU	0.000401564	4.11518e-05
+Transposase 	0.000313308	0.00020259
+hypothetical protein	1.5773e-05	0.000210254
+5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase	0.000415748	0.000295128
+Xenobiotic transporting ATPase	0.000278762	0.000181491
+Polyribonucleotide nucleotidyltransferase 2, mitochondrial	1.57712e-06	4.27562e-06
+elongation factor P	1.76737e-05	1.7177e-05
+UniRef50_D3E3L9	0.000605072	0.000220602
+Lactose binding protein LacE	7.93747e-05	0.000400439
+Dihydrolipoyl dehydrogenase	2.84028e-05	1.53837e-05
+ATP phosphoribosyltransferase regulatory subunit	0.000329219	0.000173889
+UniRef50_E4G4A0	7.91244e-05	0.000371207
+hypothetical protein	0.000752308	0.000244881
+Phage integrase family protein	0.0146111	0.000141393
+Proline  tRNA ligase	0.000138297	0.00263371
+Sterol regulatory element binding protein	0.000496407	0.000349805
+30S ribosomal protein S10	0.000108467	0.000490232
+Pyoverdine synthetase D	0.000235625	0.000198213
+UniRef50_A6LWJ6	0.000114343	0.000186404
+Type III pantothenate kinase	0.000646289	0.000633327
+Histidinol phosphate aminotransferase	1.80025e-05	1.30512e-05
+UniRef50_Q6F755	0.000225116	0.00397367
+peptide chain release factor 3	1.87905e-05	4.61144e-05
+Acyl CoA dehydrogenase like protein	0.000599436	0.00010353
+UniRef50_K5VLJ3	0.00025548	6.98325e-05
+hypothetical protein	1.9257e-05	4.64745e-06
+hypothetical protein, partial	3.65549e-06	4.98261e-06
+LysR family transcriptional regulator	0.000583307	0.00265662
+UPF0223 protein SAR1071	0.0043187	0.00213164
+Protein CreA	2.05755e-05	8.08179e-06
+UniRef50_Q6NAB4	1.1022e-05	1.92575e-05
+hypothetical protein	0.000216158	7.29236e-06
+UniRef50_I6TNU2	0.00120791	0.00105031
+UniRef50_A0A011NYR8	1.22357e-05	0.000184691
+UniRef50_A0A022NSH9	0.000247498	6.81239e-05
+Imidazole glycerol phosphate synthase subunit HisH	0.000451288	5.35654e-06
+Transporter LysE family	0.000169974	0.00368655
+1,4 dihydroxy 2 naphthoate polyprenyltransferase	0.014716	0.00277851
+hypothetical protein	0.000162764	1.47365e-05
+Dihydrolipoyl dehydrogenase	0.00913563	0.00118062
+hypothetical protein	6.73041e-06	3.25633e-05
+Transaldolase	0.000170879	0.000793966
+UniRef50_F0S5S6	3.40296e-06	8.49858e-05
+Malate dehydrogenase	2.55698e-05	3.96291e-06
+Xanthine dehydrogenase, molybdenum binding subunit apoprotein 	0.000730927	1.99e-05
+Hemolysin type calcium binding protein	0.00528035	0.000587351
+anthranilate synthase	6.13189e-06	7.12835e-06
+UniRef50_I6TXL9	0.00339537	0.000748207
+hypothetical protein	1.39773e-05	9.81646e-05
+UniRef50_G3VGY4	0.000307483	1.96203e-05
+33 kDa chaperonin	0.00194507	0.000409509
+Rod shape determining protein MreD	0.00111505	0.000624475
+Diaminopimelate decarboxylase	0.000436227	0.00376865
+50S ribosomal protein L5	0.000648687	0.0244662
+hypothetical protein, partial	0.00028181	2.39751e-05
+PREDICTED	2.55244e-05	1.40511e-05
+CTP synthase	7.66226e-06	8.49835e-05
+Coenzyme PQQ synthesis protein B	0.000159389	0.00288064
+hypothetical protein	3.11669e-05	3.07855e-05
+Probable fatty acid methyltransferase	0.000929353	0.000353773
+NH dependent NAD(+) synthetase	0.000152428	0.00285655
+Phosphoglucomutase	0.00491963	0.000139739
+hypothetical protein	4.00609e-06	0.000137188
+Two component response regulator	0.000448838	0.00307421
+UniRef50_W1WM64	0.000949087	0.000126711
+Respiratory nitrate reductase alpha chain 	4.36933e-05	8.67389e-06
+UniRef50_M4YXM6	0.00353861	0.002104
+Rhomboid protease GlpG	0.00426913	0.000628518
+UniRef50_N0GIW3	1.02275e-05	9.04829e-06
+Nucleoside ABC transporter membrane protein	0.00131136	0.00167533
+carbonic anhydrase	8.06293e-06	4.8958e-06
+hypothetical protein	5.21187e-06	2.34224e-05
+UTP  glucose 1 phosphate uridylyltransferase	0.00034233	0.000132339
+4 aminobutyrate aminotransferase GabT	0.0109069	0.00273258
+NADH quinone oxidoreductase subunit H	8.49494e-06	0.0131937
+Probable phosphoglycerate mutase GpmB	0.0024717	0.000166721
+NAD dependent 4 hydroxybutyrate dehydrogenase	0.00506351	6.62392e-05
+Zn peptidase with DNA binding domain	0.00989894	0.0010514
+N acetyl gamma glutamyl phosphate reductase	1.75336e-05	1.1549e-05
+Blr0711 protein	0.000100643	8.41672e-06
+UniRef50_G9MRN8	0.000421015	5.00169e-06
+ATP dependent dethiobiotin synthetase BioD	0.0131874	0.000651139
+UniRef50_UPI000328AD5C	2.57028e-05	2.1188e-05
+pyruvate kinase	1.48929e-05	3.41807e-06
+PREDICTED	4.72755e-06	2.25642e-05
+UniRef50_F9I1V8	0.00267628	0.000398786
+exonuclease subunit SbcD	7.17988e-06	9.09316e-06
+Glucosamine 6 phosphate deaminase	5.60325e-06	0.00212356
+Mobilization protein C	0.101028	0.0313558
+hypothetical protein	0.000998796	9.14216e-05
+hypothetical protein	6.75822e-06	1.74274e-05
+UniRef50_A4XUQ2	0.00057236	0.000570099
+Glyceraldehyde 3 phosphate dehydrogenase	8.51917e-06	4.14581e-06
+LysR family transcriptional regulator	0.000245656	0.000201764
+Endoglucanase	0.00394268	0.000354402
+Glucose 6 phosphate 1 dehydrogenase	9.52349e-06	0.00221031
+UniRef50_Q2CB82	6.73651e-06	7.46921e-06
+UniRef50_H3NTE5	2.88851e-05	1.33203e-05
+Membrane protein, putative	0.000174558	3.61307e-05
+RNA polymerase sigma factor SigS	0.010328	0.00109678
+Enoyl  reductase family protein	5.76571e-05	8.00183e-05
+TraI	0.0252015	0.00336721
+PhoH family protein	0.00605707	0.00205817
+Signal transduction and transcriptional control protein Stc	0.000560682	0.000735791
+Transposase InsI for insertion sequence element IS30C	0.00432154	0.000936314
+50S ribosomal protein L6	0.000196812	0.0253684
+Hypotheical conserved protein	0.000532838	0.000153575
+Rod shape determining protein MreD	0.000924786	0.000782832
+Cytochrome b561	0.00103806	0.000600568
+hypothetical protein	6.28543e-06	5.79198e-06
+UniRef50_Q6A834	7.27642e-05	0.000710795
+hypothetical protein	3.48983e-05	4.67311e-05
+3 methyladenine DNA glycosylase	0.00812114	0.00170353
+2 aminoethylphosphonate  pyruvate transaminase	1.58225e-05	0.000935774
+UDP N acetylglucosamine 2 epimerase	5.4211e-06	2.70466e-05
+UniRef50_G9ZVF4	6.32719e-05	3.25281e-05
+UniRef50_J9JHL4	0.000332274	0.00018012
+UniRef50_D8TYM2	3.82207e-06	2.61343e-06
+hypothetical protein	1.70885e-05	2.87147e-06
+Rhodanese domain protein	0.000165516	0.000137916
+Os12g0188566 protein	5.65879e-05	6.73974e-05
+UniRef50_W8ZGJ2	0.000163373	0.000145283
+Transcriptional regulator, TetR family	0.000163904	0.000564475
+UniRef50_Q8DRN9	0.00185272	0.00188375
+pseudouridine synthase	0.000109169	2.781e-05
+Glyoxalase Bleomycin resistance protein	0.00527551	0.00022846
+hypothetical protein	8.92788e-06	7.055e-06
+hypothetical protein	4.81897e-05	1.98632e-05
+DNA polymerase III subunit alpha	0.000632196	0.000341854
+Methyl accepting chemotaxis sensory transducer	0.000968402	0.000582697
+Os01g0561500 protein 	0.00011706	0.000127665
+UniRef50_B2TPI9	0.000388214	0.000103558
+UniRef50_P75883	0.00158305	3.24597e-05
+Bacteriophytochrome heme oxygenase BphO	2.58e-05	1.41551e-05
+NRPS siderophore biosynthesis protein	2.87648e-05	5.41994e-05
+Sucrose operon repressor	0.00361963	0.000902995
+Lipoprotein, putative	0.000101066	0.000873112
+Methionine import ATP binding protein MetN 1	0.0220443	0.00341046
+hypothetical protein	9.95917e-06	1.73416e-05
+Amino acid permease RocC	0.00109112	0.000822378
+Phosphoribosylformylglycinamidine cyclo ligase	2.17538e-06	4.79721e-06
+Type 4 fimbrial assembly protein PilB	0.00150854	0.000487331
+Cro Cl family transcriptional regulator	0.000152577	1.10961e-05
+Putative diguanylate cyclase	2.82219e-06	6.67247e-05
+Lipoprotein signal peptidase	1.66003e-05	8.64882e-06
+NAD dependent malic enzyme	1.22961e-05	6.52687e-06
+UniRef50_E0DCF6	0.000458662	0.00926997
+Glycosyltransferase	0.00134673	0.000105505
+Peptidase M23 	0.000130596	0.000115337
+hypothetical protein	3.49792e-06	2.512e-06
+Deoxyribodipyrimidine photolyase	7.91258e-05	0.00131631
+FIG003603	1.49604e-06	2.23602e-06
+hypothetical protein	0.000146828	8.43498e-05
+ABC transporter related	0.000520805	0.000708692
+UniRef50_U4VGY9	9.48938e-05	1.09778e-05
+Cytochrome B561	0.00155362	0.000696007
+PREDICTED	5.50907e-05	3.9795e-06
+Potassium uptake protein	0.000340538	0.00157122
+Ribonuclease G	0.00379806	0.00401561
+UniRef50_C7ZY18	0.00437719	0.000570397
+Low calcium response locus protein D	0.000365851	0.000278523
+UniRef50_T1JU83	7.00932e-06	9.5696e-06
+1 deoxy D xylulose 5 phosphate synthase	1.76974e-06	0.000181324
+Putative glutamate binding periplasmic protein	7.97138e-06	0.000181163
+Succinyl CoA ligase [ADP forming] subunit beta	7.50689e-06	1.85905e-05
+Expressed protein	7.8123e-05	1.64042e-05
+histidinol phosphate phosphatase, putative	5.36688e-06	7.73022e-05
+Anthranilate synthase component 1	6.88462e-06	0.000158498
+Methyl accepting chemotaxis sensory transducer	0.000368625	0.000760941
+PREDICTED	2.81394e-06	3.82063e-05
+Epimerase family protein SAUSA300_0753	0.0195782	0.00273019
+hypothetical protein	0.00133824	0.000326611
+Bacterioferritin	0.00258444	0.00016341
+DNA primase	5.39917e-05	0.00353856
+UniRef50_K4RZ48	4.48134e-05	2.39428e-06
+UniRef50_V9U4M1	0.000115487	0.000374104
+SSS sodium solute transporter superfamily protein	0.00852314	0.00306443
+hypothetical protein	7.40105e-06	1.78714e-05
+Diaminopimelate epimerase	4.25811e-06	8.86822e-06
+UniRef50_F9YXC7	0.000177759	0.00292409
+Hydrogenase 1 small chain	0.00315104	2.46035e-05
+UniRef50_J9NRS4	7.90639e-05	5.66845e-06
+DNA directed RNA polymerase subunit beta	2.991e-06	7.42629e-07
+Kef type potassium proton antiporter, CPA2 family	0.00153007	0.000502549
+Cobyrinic acid a,c diamide adenosyltransferase	0.00441305	0.000956879
+hydrolase	1.03321e-05	4.08831e-05
+MFS transporter	8.98518e-06	2.0898e-05
+DNA polymerase III subunit beta	0.0168002	0.00388722
+Putative multidrug resistance protein MdtD	0.000980311	9.04178e-05
+hypothetical protein, partial	6.34381e-05	0.000111441
+Cytochrome b561 homolog 1	0.00442492	0.000184743
+DNA polymerase III subunit epsilon	0.000344883	0.00207771
+hypothetical protein, partial	3.4502e-05	3.91183e-06
+Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763	0.000461861	0.00130031
+Isoleucine  tRNA ligase	7.33225e-05	0.00124487
+UniRef50_G1P8T6	7.10631e-06	2.64402e-06
+Tryptophan synthase alpha chain	5.95529e-06	4.60435e-06
+Cystathionine beta lyase 	0.000158252	0.00128192
+hypothetical protein	1.36001e-05	7.92069e-06
+3 isopropylmalate dehydratase small subunit	9.34393e-06	7.77496e-06
+UniRef50_G7D6B1	0.00091403	0.000220875
+UniRef50_D0K7S8	0.00497782	2.83446e-05
+Probable medium chain specific acyl CoA dehydrogenase 2, mitochondrial	2.70268e-06	1.12478e-05
+Phosphate transport system permease protein PstA	0.00203871	0.00014816
+PREDICTED	1.23764e-05	5.11311e-06
+UniRef50_D5AUV7	1.43342e-05	6.28566e-06
+Thymidine phosphorylase	0.000382047	0.000336238
+Protein RhsD	0.00432362	0.000504728
+Integrase	0.00700012	0.000908054
+hypothetical protein	6.09716e-06	1.19988e-05
+Phosphoribosyl ATP pyrophosphatase	9.97235e-05	2.44145e-05
+uracil xanthine permease	2.25586e-05	3.42727e-05
+UniRef50_A0A011PEE7	0.00378621	0.000301938
+NAD NADP transhydrogenase alpha subunit like	1.63556e-05	1.3592e-05
+Marine sediment metagenome DNA, contig	1.71368e-05	4.5069e-05
+Protein FLJ22184	9.55459e-07	1.83365e-06
+GTP cyclohydrolase 1	0.000189072	0.00131744
+Glutathione synthase	0.0009596	0.000340389
+Ribonuclease 3	6.73233e-06	7.34882e-06
+Tyrosine specific transport protein	0.00177184	0.000122825
+PREDICTED	0.000147143	8.84758e-06
+hypothetical protein	2.49086e-05	1.14682e-05
+Glucans biosynthesis protein G 	3.51101e-05	0.000110354
+O acetylhomoserine aminocarboxypropyltransferase	0.00077342	0.000976093
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.23615e-06	0.00175707
+UniRef50_I6U4A9	0.00235005	2.27307e-05
+Mobile element protein	9.31417e-05	1.53075e-05
+UPF0355 protein SSP2326	0.00264513	0.000221691
+ComE operon protein 2	0.00566406	0.00295258
+Rep	0.365541	0.06664
+D 3 phosphoglycerate dehydrogenase	0.000142404	0.00386565
+Type iii secretion component protein sctt	0.000421376	0.000263249
+hypothetical protein	2.09078e-06	8.97203e-06
+UniRef50_P0ADM6	0.00254785	0.000170694
+UniRef50_U7R6W7	3.73673e-05	1.24615e-05
+Oligoendopeptidase, pepF M3 family	0.00890137	0.00112343
+Macro domain protein	3.39361e-06	8.72763e-06
+hypothetical protein, partial	1.02156e-05	1.29829e-05
+Putative transposase	9.63014e-06	0.000514045
+YjeF related protein like protein	1.69799e-05	8.78297e-06
+Type 1 fimbriae anchoring protein FimD	0.000359888	3.4374e-05
+Ppx GppA, Ppx GppA phosphatase family protein	0.00730796	0.000732234
+Novel protein	0.000282559	9.38303e-05
+Periplasmic binding protein LacI transcriptional regulator	0.0113815	0.000837728
+ABC transporter	0.0109226	0.00072363
+UniRef50_D8JP76	0.000115652	0.00300603
+Acetyltransferase	0.00192259	0.000302306
+NAD transhydrogenase subunit alpha part 2	1.79558e-05	0.000400883
+UniRef50_C5N4H6	0.0135594	0.00165297
+Prophage LambdaSa04 DNA polymerase	0.000152492	0.00253233
+UniRef50_Q9JY85	0.000238429	0.00111131
+UniRef50_A4WW73	0.00437951	0.000556537
+MFS transporter	4.7287e-06	4.12565e-06
+Glucarate dehydratase related protein	0.00417573	0.000376848
+AIR carboxylase, putative	0.00924621	0.00186233
+UniRef50_Q3IW48	0.004773	0.000413755
+UniRef50_J9NUI2	4.18597e-05	2.54268e-05
+ABC transporter	1.63754e-05	5.25618e-05
+Peptide deformylase	1.51221e-05	9.78582e-05
+MarR family transcriptional regulator, partial	2.75491e-05	4.11749e-05
+Multidrug transporter membrane component ATP binding component	0.00104898	7.36545e-05
+UniRef50_G8AI77	0.00204273	0.000656425
+UniRef50_W7WQX4	0.000711621	0.000167303
+hypothetical protein	5.4854e-05	4.59728e-05
+hypothetical protein	1.64651e-05	1.49675e-05
+UniRef50_P76518	0.00297875	0.000386485
+3 ketoacyl CoA thiolase	0.000108091	0.0173313
+Nucleoside diphosphate kinase	6.47093e-05	2.25381e-05
+UniRef50_P76514	0.00162311	0.000362898
+UniRef50_Q7P1W4	6.79055e-05	3.66357e-06
+Oxidoreductase	0.00028171	9.81255e-05
+Catalase related peroxidase	0.000299005	0.00241165
+UniRef50_H8FXV9	0.000722808	0.0022696
+UniRef50_M9VA45	0.00014188	0.00300678
+LPS assembly protein LptD	0.000455765	0.000247645
+ABC transporter 	0.0095369	0.00188732
+NAD dependent epimerase dehydratase	0.00197356	0.000185396
+Acetyl coenzyme A synthetase 1	0.0135006	0.00161673
+UniRef50_A0A059LIS0	6.49412e-06	3.81403e-05
+WGS project CAID00000000 data, contig chromosome 13	6.48417e-07	3.34854e-07
+UniRef50_S6ASW9	0.000192425	1.8191e-05
+hydroxymethylglutaryl CoA lyase	2.25246e-06	7.91511e-06
+Protein containing domains DUF404, DUF407	5.0209e-06	8.44889e-06
+Phage major capsid protein, HK97 family	0.0092185	0.00139326
+Enterotoxin	0.00745006	0.000676673
+UniRef50_B2GK44	1.99754e-06	7.40011e-06
+Tyrosine  tRNA ligase	3.10557e-05	1.21317e-05
+hypothetical protein	6.0581e-06	2.70697e-05
+RDD family protein	3.75158e-05	2.01811e-05
+O 6 methylguanine DNA methyltransferase	0.00354758	0.000300284
+Pyrrolidone carboxylate peptidase	0.0115533	0.001911
+Thioesterase superfamily protein	5.89614e-06	4.92392e-06
+Homoserine O acetyltransferase	2.88849e-05	0.000329699
+Glycine cleavage system H protein	9.85486e-06	4.02938e-06
+UniRef50_W8Z324	0.000159228	5.46138e-05
+2 isopropylmalate synthase	0.0290022	0.00521076
+30S ribosomal protein S3	0.000211666	0.000560128
+Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein	0.000634216	0.000137918
+UniRef50_U7JH15	2.54622e-05	4.8401e-05
+UniRef50_S9Q8I1	2.84227e-06	7.32813e-07
+hypothetical protein	4.10116e-06	1.19479e-05
+Transcriptional regulator, AraC family	0.000896097	0.000195184
+hypothetical protein	3.07102e-06	2.03272e-05
+Probable membrane protein	0.000919428	0.000208802
+Primosomal replication protein N	0.000923532	0.000342038
+UniRef50_L1KG88	0.00918817	0.000101009
+UniRef50_U8CNV5	0.000270443	0.000228683
+Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00704294	0.00270095
+UniRef50_G0DXB0	0.000114863	0.00204116
+UniRef50_UPI0004548C9D	6.47887e-05	8.72058e-05
+Phospholipase A1	0.00160524	4.56897e-05
+Outer membrane autotransporter 	0.000135849	5.09146e-05
+Putative nickel responsive regulator 2	0.000500999	0.000196466
+hypothetical protein	2.36999e-05	3.0535e-06
+Anthranilate synthase component 1	2.83277e-06	0.00354953
+UniRef50_U5RZU5	0.000105391	0.00115455
+UniRef50_M4MKF6	0.00011857	2.46716e-05
+Pyrophosphate  fructose 6 phosphate 1 phosphotransferase	0.000432347	0.00351821
+MazG family protein	1.52859e-05	7.26276e-06
+hypothetical protein	1.22358e-05	2.16085e-05
+hypothetical protein	2.84814e-06	2.30529e-06
+3 oxoacyl [acyl carrier protein] reductase FabG	0.00502237	0.00096332
+MULTISPECIES	5.3799e-06	5.95778e-06
+Catabolite control protein A	0.00691242	0.000728063
+Ketol acid reductoisomerase	1.44221e-05	2.41523e-05
+UniRef50_C6PR80	7.66698e-06	0.00042428
+Transcription repair coupling factor	6.84406e-06	1.27605e-05
+S ribosylhomocysteine lyase	1.22373e-05	0.000757268
+UniRef50_A0A011NLS4	2.37036e-06	8.21562e-05
+Superoxide dismutase [Mn]	9.98125e-06	3.89042e-05
+Proton translocating NADH quinone oxidoreductase, chain M	0.00287838	0.000263915
+Phosphate regulon sensor protein PhoR	0.000885454	0.000535932
+UniRef50_B9E752	1.31766e-05	8.77053e-06
+UniRef50_S5YGB9	0.00674946	0.00224893
+UniRef50_B9E750	0.00897148	0.00147458
+Oxygen dependent coproporphyrinogen III oxidase	0.000679924	0.000104766
+hypothetical protein	1.78106e-05	3.17679e-06
+UniRef50_I6STQ9	0.00856075	0.00205316
+Phosphorylase 	0.00208068	0.000867321
+Two component sensor	0.000339843	0.000123732
+acetolactate synthase	1.11011e-05	0.000167874
+Diphosphomevalonate decarboxylase	0.0199795	0.0041911
+hypothetical protein	4.99636e-06	1.1582e-05
+UniRef50_A6TQQ4	2.15018e-05	1.88224e-05
+UniRef50_G7SBD4	0.00471584	0.00263329
+UniRef50_J9NTF4	3.1096e-05	6.41824e-05
+Adenine permease AdeQ	0.00341785	0.000568919
+hypothetical protein, partial	0.00013423	2.08701e-05
+hypothetical protein	1.26433e-05	1.05746e-05
+UniRef50_A4T5H7	6.75884e-06	7.73924e-05
+4 alpha glucanotransferase	0.0026998	0.000602658
+Lipoprotein	0.000151548	0.000114259
+Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.000119768	0.00010638
+UniRef50_D3H3M8	0.00167059	0.000171019
+Oligoendopeptidase F	5.79257e-05	0.014349
+Iron ABC transporter	0.000439933	0.000909953
+UniRef50_A1B3M6	0.0019221	0.000182346
+UniRef50_Q9I5L2	0.00222683	0.000620845
+UniRef50_Q9I5L3	0.002237	0.000770535
+ABC transporter related	0.000545736	0.000891839
+hypothetical protein	0.000143574	0.000264422
+Sulfate thiosulfate import ATP binding protein CysA	1.32468e-05	1.92171e-05
+Transcriptional regulator, GntR family	0.000100965	8.19205e-05
+ORF13	1.72532e-06	9.86049e-06
+exonuclease, partial	2.23208e-05	1.0006e-05
+Cytochrome b	0.0112715	0.00168911
+UniRef50_Q5HQP3	0.00108729	0.000464605
+ABC transporter, substrate binding protein, family 3	0.00204428	0.00022483
+UniRef50_A6LW01	0.000750341	0.000342695
+ABC transporter substrate binding protein	6.53061e-06	1.89034e-05
+Fructose bisphosphate aldolase	1.24177e-05	0.00293886
+ATPase	3.62804e-05	2.0291e-05
+UniRef50_Q2CBA4	0.000466313	0.000267217
+Permease	0.00349918	0.000445425
+Hydrogen peroxide inducible genes activator	0.003951	0.000591692
+Sulfate thiosulfate import ATP binding protein CysA	0.000231145	0.000221553
+Radical SAM domain containing protein	0.00275196	0.000141866
+ABC transporter, solute binding protein	7.38517e-06	9.4579e-06
+histidinol dehydrogenase	3.72079e-06	3.37598e-06
+Preprotein translocase subunit SecA	3.0048e-05	3.45675e-06
+All4894 protein	6.07368e-05	7.88963e-06
+Lipid kinase YegS	0.00165104	0.000277615
+ATP dependent DNA helicase RuvB	6.8638e-06	6.42819e-06
+Protein tldE, 	8.14673e-05	7.58959e-05
+UniRef50_R7CNB5	0.000378765	0.000884411
+Ribosomal RNA small subunit methyltransferase H	1.54129e-05	0.00120702
+Holliday junction ATP dependent DNA helicase RuvA	1.1316e-05	4.47469e-06
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.95448e-05	2.84811e-06
+ArsR family transcriptional regulator	9.34595e-05	3.40449e-05
+Rhamnan synthesis F, partial	8.33541e-06	5.32516e-06
+S adenosylmethionine synthase	0.0121155	0.00375974
+UniRef50_A5I6S3	0.000192777	8.34432e-05
+SAM dependent methyltransferase	0.00602626	0.00270929
+glutamine ABC transporter ATP binding protein	0.000142736	6.67564e-05
+Cell division protein ZipA homolog	0.00182933	0.00149648
+3 phosphoshikimate 1 carboxyvinyltransferase	3.96767e-06	3.70193e-06
+alpha amylase, catalytic region	3.61925e-06	3.17627e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	3.60696e-05	9.91918e-06
+Mechanosensitive ion channel family protein	0.00140311	0.000384692
+UniRef50_F0YHZ1	5.41936e-06	1.95228e-05
+Nitrate reductase gamma chain	0.00561885	0.00119525
+hypothetical protein, partial	0.000400317	2.42638e-05
+hypothetical protein	0.000120069	3.91069e-05
+Replication protein RepA 	0.000243365	4.28558e-05
+DNA directed RNA polymerase subunit beta	6.77606e-06	3.50665e-06
+Thiamine phosphate synthase	0.000198359	0.00117134
+UniRef50_Q6LQV5	1.45636e-05	8.00208e-05
+UniRef50_U6LL89	3.56074e-06	8.8634e-07
+UniRef50_I6TNX3	0.00467062	0.00146272
+hypothetical protein	3.69652e-06	0.000143376
+Putative GTP cyclohydrolase 1 type 2	0.000297831	0.0191466
+UniRef50_B7UYR5	0.000469716	0.000233207
+UniRef50_M9VDI6	0.000245758	0.000246478
+NTR	1.49202e-05	5.80193e-05
+UniRef50_P77301	0.00165244	0.000307286
+UniRef50_Q3JVY5	9.5361e-05	0.000179432
+XRE family transcriptional regulator	3.60086e-05	2.85791e-05
+hypothetical protein	0.000103568	1.72677e-05
+UniRef50_M5U388	4.94908e-06	1.07881e-06
+hypothetical protein	0.000155821	3.53872e-05
+UniRef50_Q167I1	0.00017599	2.37901e-05
+Urease accessory protein UreF	0.000269959	0.00238607
+Glycerol kinase	3.733e-06	2.31301e-06
+Chloroplast heat shock protein 70 isoform 1	1.47563e-05	4.75224e-06
+Glucoamylase S1 S2	0.000252994	0.000461739
+Phosphoribosylaminoimidazole succinocarboxamide synthase	0.000106451	1.83497e-05
+hypothetical protein	2.52724e-05	1.29659e-05
+Flagellar protein FlgJ, putative	0.000123006	5.86365e-05
+UniRef50_W0PCE9	4.54087e-06	6.96898e-06
+hypothetical protein	1.07603e-05	1.25657e-06
+Ribonuclease BN	0.00229961	0.000496465
+UniRef50_Q9RS22	0.000433324	0.020289
+Lipid A export ATP binding permease protein MsbA	2.95865e-06	2.32048e-06
+Fructose like permease IIC component	0.00138497	0.000187201
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00947672	0.00162808
+UniRef50_H8GX31	8.72916e-06	0.00155375
+Branched chain amino acid transport	3.40924e-05	1.98052e-05
+membrane protein	1.02238e-05	6.79002e-06
+MULTISPECIES	3.21837e-05	2.55468e-05
+Mannose 1 phosphate guanylyltransferase	0.000423212	0.0289353
+serine protease	7.64544e-06	2.03168e-05
+hypothetical protein	1.84349e-05	6.37388e-06
+UniRef50_E7Q0E7	8.64272e-05	8.57001e-06
+CobW HypB UreG, nucleotide binding domain protein	0.000105722	0.00258993
+Putative succinate semialdehyde dehydrogenase C139.05 [NADP]	3.40678e-06	3.47648e-06
+2 hydroxy acid oxidase, partial	1.07038e-05	9.29255e-06
+Amino acid ABC transporter ATP binding protein	0.000726928	0.000348315
+TraL	0.00594106	0.0015349
+UniRef50_I2B6D3	5.2279e-05	4.74083e-05
+UniRef50_G2JEX5	0.00010639	0.00362277
+UniRef50_R1DUC8	3.76498e-05	5.18581e-05
+UniRef50_C8S343	1.83794e-05	3.39283e-06
+UniRef50_W0ACQ7	4.06383e-06	4.04666e-06
+PTS system N acetylmuramic acid transporter subunits EIIBC	2.83635e-05	2.78203e-05
+iron ABC transporter ATP binding protein	0.000161963	6.0299e-06
+Zn binding lipoprotein adcA like protein	0.0117776	0.0011698
+L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.0310831	0.00524502
+Thymidylate kinase	0.00334445	0.00370324
+TatD related deoxyribonuclease	0.000187318	0.0153124
+hypothetical protein	1.71108e-06	1.22901e-05
+UniRef50_S9SAD7	0.00019472	1.37517e-05
+hypothetical protein	3.97546e-06	0.000473806
+hypothetical protein	6.09305e-05	9.31831e-06
+UniRef50_B8GAP1	1.00407e-05	1.23831e-05
+UniRef50_C3KRZ1	1.04002e-05	9.62262e-06
+Signal transduction response regulator	0.000307453	0.000156967
+Cysteine synthase	0.00360731	0.000838544
+Short chain dehydrogenase reductase SDR	0.000368403	0.00024071
+Flagellar biosynthesis regulatory protein FlaF	8.84992e-05	5.38602e-05
+hypothetical protein	7.79081e-06	0.000252347
+UniRef50_T2H287	0.000477741	5.22446e-05
+Putative aga operon transcriptional repressor	0.0034461	0.000285903
+M23 peptidase domain protein	0.000112936	0.000968745
+Probable metabolite transport protein CsbC	0.0108238	0.00104981
+UniRef50_I0TGY1	0.00273992	0.000612563
+Transcriptional regulator KdgR	0.00400218	0.000342412
+hypothetical protein AURDEDRAFT_58877, partial	3.01217e-05	1.07623e-05
+ABC transporter, ATP binding protein	0.000110707	0.00657513
+UniRef50_B2AGK5	4.57269e-05	1.04075e-05
+ABC transporter ATP binding protein, partial	7.84172e-05	3.20066e-05
+UniRef50_Q3IXI2	0.00288798	0.000814541
+Chromosome  partitioning protein ParA   Sporulation initiation inhibitor protein Soj	8.82045e-06	2.00181e-05
+UniRef50_B9KSK5	0.00124273	8.8808e-05
+UniRef50_H2PRE9	5.91684e-05	7.67163e-05
+UniRef50_K7E9E4	5.67139e-05	0.00108379
+UniRef50_A7X538	0.0039941	0.000258002
+RNA pyrophosphohydrolase	0.000339948	0.00157197
+hypothetical protein	3.60698e-05	1.94637e-05
+hypothetical protein	1.69694e-06	2.31039e-06
+hypothetical protein	7.79447e-06	2.85576e-06
+amidophosphoribosyltransferase	7.2916e-06	3.05912e-05
+DNA polymerase III subunit alpha	9.89836e-06	2.8382e-06
+UniRef50_W1JGI9	0.000104084	2.4918e-05
+Aromatic amino acid transaminase	0.000142807	0.00600379
+acyl transferase	0.000175454	9.67512e-06
+Response regulator MprA	0.000192313	0.00446804
+UniRef50_A0A016QSU1	5.00892e-05	0.00413218
+dehydrogenase	3.23432e-05	1.05606e-05
+GntR family regulatory protein	0.00941377	0.00164851
+UniRef50_I6SY16	0.00021465	3.0612e-05
+ABC transporter related protein	0.000269239	0.00345053
+UniRef50_P22344	0.0313769	0.00325805
+Bacterial regulatory s, gntR family protein	0.00347184	0.000231404
+PREDICTED	7.41956e-05	4.38666e-05
+Membrane protein, putative	0.00163964	0.00129169
+A G specific adenine glycosylase	0.0048247	0.000717261
+2 hydroxypenta 2,4 dienoate hydratase	0.00726687	0.00249201
+Transcriptional regulator	0.000699285	0.0018324
+50S ribosomal protein L13	0.00168664	0.0139221
+Ribonuclease J	4.06537e-06	1.57833e-06
+Mobile genetic element	2.35626e-05	6.2265e-05
+hypothetical protein, partial	5.13829e-05	1.03342e-05
+UniRef50_Q8DUT9	0.0049133	0.00105461
+molybdate ABC transporter permease	3.78064e-05	2.27123e-05
+UniRef50_Q21RX2	0.00033975	5.45584e-05
+UniRef50_A0A024HLH2	8.21681e-05	1.17152e-05
+UniRef50_A3X988	0.000211048	9.12545e-06
+Endoribonuclease SymE	0.000593914	0.000525058
+UniRef50_K1LFR3	1.66887e-05	4.59134e-05
+DNA gyrase, A subunit	0.000405548	0.000357477
+HTH type transcriptional regulator GalS	0.00808462	0.000635361
+UniRef50_D6AT21	0.000108681	5.06648e-05
+hypothetical protein	0.000127183	1.59168e-05
+Isoprenyl transferase	0.00570108	0.00156346
+UniRef50_A0A058ZPK5	2.55369e-05	2.98462e-05
+3 oxoacyl ACP synthase, partial	3.02987e-05	1.65523e-05
+RlpA like lipoprotein	0.000303739	0.00180156
+hypothetical protein	4.17701e-05	2.06606e-05
+Diguanylate cyclase	0.000425966	8.38327e-05
+N acetylmuramoyl L alanine amidase AmiA	0.00154043	0.00031413
+hypothetical protein, partial	7.13306e-06	1.76559e-05
+hypothetical protein	2.87796e-05	4.59099e-06
+KLLA0D19929p	0.00235891	0.0026467
+NADH quinone oxidoreductase subunit B	9.27148e-06	1.70177e-05
+Integral membrane protein	0.0131708	0.000242008
+hypothetical protein	4.81757e-05	1.24248e-05
+hemin receptor	1.02651e-05	2.80029e-05
+ParB like protein	3.71681e-05	7.8384e-06
+UniRef50_G7EHM5	9.50067e-05	9.91084e-05
+Purine nucleoside phosphorylase 2	0.00257529	0.000110846
+UniRef50_B6TQL9	6.21042e-06	7.67762e-05
+2 isopropylmalate synthase 2, chloroplastic	1.03237e-05	2.60645e-06
+NH dependent NAD(+) synthetase	1.28549e-05	5.41568e-05
+UniRef50_I8HVI3	0.00117401	1.83937e-05
+D amino acid transaminase	0.000319736	0.00112379
+Acetyl coenzyme A synthetase	0.00024394	0.0237202
+ABC transporter ATP binding protein	2.34012e-05	7.68123e-06
+phospholipase	2.96294e-05	2.04761e-05
+hypothetical protein	0.000181562	1.57735e-05
+UniRef50_X5PNE7	0.00124671	0.000140872
+YCII related protein	3.44779e-05	9.81573e-06
+UniRef50_S5XXL2	2.87697e-06	3.27568e-06
+FmtB	0.000597868	6.13933e-05
+mechanosensitive ion channel protein MscL	1.18758e-05	1.00687e-05
+UniRef50_A0A017HRC2	0.000234886	1.38926e-05
+hypothetical protein	2.2549e-06	5.93194e-06
+UniRef50_Q1GDV5	4.01968e-05	3.14266e-05
+IS4 family transposase 	1.31567e-05	1.53535e-05
+8 amino 7 oxononanoate synthase	2.48073e-05	2.75056e-06
+ABC transporter permease	4.58781e-06	2.83684e-05
+Valine  tRNA ligase	1.79793e-06	2.12854e-06
+Protein AegA	0.00498761	0.0019462
+UniRef50_P45537	0.00205312	0.000243296
+hypothetical protein	1.82837e-06	3.48571e-05
+thioredoxin, partial	0.000215664	3.61755e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	7.54482e-06	6.7604e-06
+UniRef50_P0ACN0	0.00147194	0.000277114
+Oligoribonuclease	4.138e-05	9.20852e-06
+hypothetical protein	4.41045e-06	3.96675e-06
+Na H(+) antiporter NhaD	0.0115369	0.00108226
+Lysine  tRNA ligase	3.30041e-06	7.39956e-06
+hypothetical protein, partial	6.15546e-05	9.93712e-05
+hypothetical protein	1.00902e-05	1.52698e-05
+UniRef50_A4EBS8	5.21566e-05	8.52862e-07
+UniRef50_D8LTU3	0.000194749	1.19764e-05
+Putative fluoride ion transporter CrcB 1	0.00355598	0.000749753
+UniRef50_W2EZB5	5.74662e-06	4.99468e-06
+Na+ H+ antiporter MnhB subunit related protein	7.11438e-06	3.79984e-05
+Transcriptional regulator, GntR family	0.00464667	0.00076475
+UniRef50_V9W7G7	2.65625e-05	9.27058e-05
+UniRef50_A0A038GMN1	0.000368484	0.000129935
+Extracellular ligand binding receptor	0.000619803	0.00101376
+PREDICTED	2.69917e-06	3.61864e-06
+Radical SAM domain protein	7.64304e-05	0.000143161
+DNA directed RNA polymerase subunit alpha	1.48533e-05	5.54544e-05
+Probable acetyl CoA acetyltransferase	5.58536e-06	3.0898e-05
+Integral membrane protein	1.26718e-05	3.11082e-05
+Putative threonine efflux protein	0.008843	0.00120669
+UniRef50_P31126	0.00285174	0.000421607
+hypothetical protein	0.000137454	2.88286e-05
+Protoheme IX farnesyltransferase	4.86406e-06	8.08596e-06
+HD superfamily hydrolase like protein, partial	0.000165083	0.000147941
+probable chromosome partitioning protein parB	6.74564e-06	0.000300148
+hypothetical protein	3.40416e-05	2.05557e-05
+Putative DNA topology modulation protein FlaR	9.66275e-06	1.10186e-05
+Putative transcriptional accessory protein	0.000458007	0.000353341
+Chorismate synthase	1.45445e-05	8.00995e-05
+PREDICTED	5.66653e-06	2.11889e-05
+Allantoinase	8.91233e-06	2.01205e-05
+Putative acetyltransferase	0.000227856	2.59068e-05
+MULTISPECIES	4.42157e-05	1.37264e-05
+Lytic transglycosylase, catalytic	0.00315809	0.000132426
+UniRef50_A6FVD1	4.20429e-05	1.2494e-05
+UniRef50_W4YP60	3.23378e-05	4.43217e-05
+UniRef50_W4YP61	2.59618e-05	1.32417e-06
+UniRef50_A0A024HY78	6.5405e-06	3.69709e-05
+UniRef50_A0A024HY79	3.82271e-06	3.26743e-06
+CRISPR associated helicase Cas3 	1.77843e-05	1.61576e-05
+hypothetical protein	5.94528e-06	3.02988e-05
+Putative NADH nitroreductase SAUSA300_2462	0.0145346	0.00221928
+MULTISPECIES	0.000140703	7.89143e-06
+hypothetical protein	6.81358e-06	0.000453892
+Transposase	5.37906e-06	0.000460198
+Multidrug transporter	0.00520821	0.000698563
+guanine permease	2.012e-05	3.00019e-06
+Ftsk spoiiie family protein	0.00761629	0.000462139
+hypothetical protein, partial	3.89298e-05	2.14015e-05
+Cell wall surface anchor family protein 	1.57853e-05	4.41855e-05
+10 kDa chaperonin 1	0.000359305	0.00508194
+UniRef50_R5QB36	0.00536778	0.0026259
+succinate semialdehyde dehydrogenase	8.81266e-06	1.42818e-05
+3 oxoacyl [acyl carrier protein] synthase 3 protein 3	3.97417e-06	3.7881e-06
+Binding protein dependent transport systems inner membrane component	0.000121791	0.0285779
+Putative type II secretion system C type protein YghF	0.0036888	0.000978259
+hypothetical protein	1.29463e-05	1.06401e-05
+UniRef50_R9K990	0.000126037	3.89586e-05
+UniRef50_Q6GJM8	0.0673129	0.0082566
+Citrate synthase 2, peroxisomal	8.64397e-06	2.04551e-05
+N acetylmannosamine kinase	0.000878491	0.000831796
+Methionine import ATP binding protein MetN	0.00039138	0.00166115
+UniRef50_A5IQI8	0.0112096	0.00224256
+Multifunctional non homologous end joining protein LigD	8.34653e-05	0.000120722
+UniRef50_C9WZF0	0.000888174	0.000421768
+UniRef50_L1ITB2	0.000184247	3.2903e-05
+hypothetical protein	4.67545e-06	3.3483e-06
+UniRef50_G2U6X6	0.00017974	5.57065e-05
+Alpha glucosidase yihQ	0.00199741	0.000244171
+hypothetical protein	2.11061e-05	8.57418e-06
+Lysozyme RrrD	0.000753968	0.0011902
+UniRef50_O26565	0.00265473	0.000221124
+Ferrous iron permease EfeU	0.00294828	0.000117673
+Predicted metal dependent membrane protease	0.00352876	0.000360583
+Bifunctional dihydrofolate reductase thymidylate synthase 1	8.3721e-06	1.00781e-05
+UniRef50_P76065	0.00128557	0.000462907
+PREDICTED	1.25822e-05	1.06874e-05
+UniRef50_Q2NBI6	0.000258306	4.2669e-05
+UniRef50_E3A6K9	4.77755e-05	2.03871e-05
+hypothetical protein	4.6601e-05	1.66483e-05
+UniRef50_Q8P013	0.000209642	0.000118852
+Bifunctional protein PyrR	1.75842e-05	3.99347e-05
+Universal bacterial protein YeaZ	0.00423771	0.00152079
+hypothetical protein	2.10275e-05	1.25772e-05
+Curli production assembly transport component CsgF	0.00165516	0.000439046
+PREDICTED	0.000216344	0.000183985
+Membrane bound lytic murein transglycosylase A	0.000228443	0.000170573
+signal recognition particle protein, partial	1.23275e-05	3.58519e-05
+Putative cyclic di GMP phosphodiesterase YjcC	0.00103178	0.000521817
+UniRef50_G9RRR3	9.94251e-06	0.000177098
+glutamyl tRNA amidotransferase	1.15619e-05	2.78536e-06
+UniRef50_J1CAV3	0.000395738	4.41902e-05
+Transcriptional regulator, LysR family	0.00700652	0.00130201
+hypothetical protein	0.00033152	1.04733e-05
+Stage V sporulation protein E	0.000111072	0.000630346
+UniRef50_R7EZW8	5.94273e-05	2.75873e-05
+UniRef50_U8X5K1	6.72429e-06	0.00157339
+ABC transporter related protein	0.00239937	0.000707762
+UniRef50_Q2NRT0	0.000534652	7.01993e-05
+Imidazoleglycerol phosphate dehydratase	9.04343e-06	7.79772e-06
+Proline glycine betaine ABC transporter periplasmic protein	4.81256e-05	4.02726e-06
+UniRef50_Q8CUB7	0.0335449	0.00568575
+NADH pyrophosphatase	0.000125734	0.0158003
+Glutamate glutamine aspartate asparagine transport system permease protein BztB	0.00803992	0.00151707
+Histidine ammonia lyase	0.000725264	0.00396001
+Non specific serine threonine protein kinase	5.20436e-05	3.87171e-05
+hypothetical protein	1.85209e-05	1.06061e-05
+hypothetical protein	1.671e-05	0.000297591
+ABC transporter substrate binding protein	8.86096e-06	2.4477e-05
+UniRef50_I0C5Y5	0.0113469	0.00863717
+2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	6.51077e-05	2.34916e-05
+Lysophospholipase L2	1.22144e-05	3.7324e-05
+hypothetical protein	3.61321e-06	2.28731e-06
+hypothetical protein, partial	4.87313e-05	9.11232e-05
+50S ribosomal protein L21	1.56678e-05	0.000216558
+Probable acetolactate synthase large subunit	0.00283406	0.000382609
+Pirin like protein	5.70605e-06	4.93405e-06
+Glutaredoxin	0.00286292	0.000989365
+UPF0208 membrane protein YfbV	0.00284473	0.000240066
+hypothetical protein	0.000108808	1.31834e-05
+Alanine racemase 2	0.0173302	0.00250111
+UniRef50_U9FP56	0.000307837	0.000137707
+MJ0042 family finger like protein	1.7207e-05	7.11074e-05
+UniRef50_A7FBU7	0.00054637	0.00463562
+L tartrate dehydratase subunit alpha	0.00423013	7.47146e-05
+Outer membrane protein NlpB	0.00145718	0.000329212
+UniRef50_A5IPG6	0.012295	0.0012478
+UniRef50_UPI0002ADAB72	0.000319102	5.44232e-05
+UniRef50_A5IPG3	0.0125337	0.000152436
+UniRef50_D0LXH2	1.00422e-05	3.67939e-05
+PTS system fructose subfamily IIA component	0.000239253	0.000213266
+Succinyl CoA ligase [ADP forming] subunit beta	7.15605e-06	9.55128e-06
+hypothetical protein	2.79642e-06	1.98856e-05
+Beta lactamase	0.00142293	0.000113796
+hypothetical protein	1.88483e-06	8.83685e-06
+deoxyguanosinetriphosphate triphosphohydrolase	7.01131e-05	1.06471e-05
+Arginine  tRNA ligase	0.00575529	0.000997289
+Glycosyltransferase, GT2 family	0.00416214	0.000269267
+2 dehydropantoate 2 reductase	0.00447624	0.000555306
+Phenylacrylic acid decarboxylase	0.000754615	0.000164441
+Cell division topological specificity factor	0.000426011	0.000594602
+Beta hemolysin	0.00306077	0.000453459
+UniRef50_W6M0A7	0.000171548	0.00164972
+Efflux ABC transporter, permease protein	0.000214569	0.00231895
+hypothetical protein	2.3004e-06	2.67376e-06
+DNA polymerase IV	3.17914e-06	4.46306e-06
+hypothetical protein, partial	2.56318e-05	5.0583e-05
+Subtilisin like serine protease	0.000283186	0.000773837
+Adenylosuccinate synthetase	3.42147e-06	6.65533e-06
+UniRef50_I1Q3T9	6.65063e-05	6.45075e-05
+Aldo keto reductase	0.000266905	0.000807254
+Flagellar biosynthesis switch protein	0.000760455	0.000107914
+UniRef50_Q9I3P5	0.000129775	9.31378e-05
+2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase	0.00218332	0.000133212
+ABC transporter ATP binding protein	0.000163638	0.00121686
+UniRef50_F4FKW9	0.00480518	0.00122993
+NADH quinone oxidoreductase subunit K	5.49591e-05	4.16768e-05
+Nodulation protein NolG	0.000556954	0.00125989
+Tryptophan synthase alpha chain	1.30829e-05	4.17895e-06
+hypothetical protein	3.91336e-06	5.94543e-06
+Succinate dehydrogenase subunit C	0.00104413	0.00385843
+UniRef50_M1CWG1	2.08675e-05	0.000106275
+Quinone oxidoreductase 1	0.00346229	0.000402674
+UniRef50_T0V3S5	7.62973e-05	7.74833e-06
+PREDICTED	1.0734e-05	0.000445961
+Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	2.44944e-06	2.22976e-06
+Putative type II secretion system M type protein YghD	0.00422651	0.000971425
+hypothetical protein	1.58102e-06	1.43281e-06
+Cytosine specific methyltransferase	0.000725285	0.00246443
+Surface antigen family protein	0.000115124	0.0031345
+hypothetical protein, partial	1.76873e-05	0.000332159
+Membrane protein containing C terminal PDZ domain	9.1288e-05	0.000487445
+4 hydroxyphenylacetate 3 monooxygenase oxygenase component	0.000167886	0.000176716
+FhuG, partial	0.000114125	1.71875e-05
+PREDICTED	3.79121e-05	2.36121e-07
+NADH dehydrogenase subunit L, partial	8.33356e-06	3.94289e-06
+UniRef50_X7EC41	0.00010526	0.000192546
+UniRef50_U5W2Y7	1.01857e-05	3.92424e-06
+UniRef50_B9KUD4	0.000970813	0.000787586
+Polyphosphate	0.000399864	0.0253441
+UniRef50_R6CQ31	1.64522e-05	6.57497e-05
+TPR domain containing protein, putative	2.11541e-06	1.62354e-06
+Branched chain amino acid transport protein AzlD	0.000223707	4.16141e-05
+UniRef50_Q2FX83	0.00263232	0.000130967
+UniRef50_Q2FX82	0.0053559	0.000142988
+Glutathione synthetase	0.00223314	7.48704e-06
+Ribose import ATP binding protein RbsA 2	2.54192e-05	7.26479e-06
+UniRef50_G7LXK1	0.000340599	0.000516577
+Outer membrane protein W	0.00191124	0.00134424
+ATP dependent RNA helicase HrpA	7.32562e-05	0.00147942
+UniRef50_W4TIL7	0.00038459	0.00170015
+Pertactin 	0.00203697	0.000140037
+UniRef50_U5US72	0.00143339	0.00575336
+hypothetical protein	2.42888e-05	4.72796e-06
+UniRef50_S9SLK2	8.8317e-05	1.49094e-05
+hypothetical protein	7.40856e-06	5.47365e-06
+PREDICTED	1.62225e-06	1.39434e-05
+UniRef50_G7U653	0.000130277	0.000854947
+Aminotransferase class I and II	0.000517193	0.00140829
+hypothetical protein	1.85589e-05	3.82016e-06
+F pilus assembly protein	7.80744e-05	1.21759e-05
+dTDP glucose 4,6 dehydratase	0.00947201	0.000559349
+Type IV leader peptidase	0.000461885	0.000545245
+UniRef50_E8SGS1	0.0105296	0.000935933
+UniRef50_Q8DUK2	0.0096856	0.00152368
+ATP synthase subunit alpha	3.59916e-06	5.33959e-06
+GMP synthase [glutamine hydrolyzing]	2.68784e-05	1.59541e-05
+Carbamoyl phosphate synthase large chain	0.00480999	0.0046106
+Clostridial hydrophobic W	0.000329913	9.14632e-05
+hypothetical protein	7.68603e-06	8.41991e-05
+Bacterioferritin 	0.000107983	2.51017e-05
+Lysine  tRNA ligase	0.00044431	0.000270936
+Thioester reductase domain protein	0.0123933	0.00160571
+C4 dicarboxylate ABC transporter	1.08217e-05	2.71187e-05
+DNA directed RNA polymerase subunit alpha	1.52052e-05	2.6506e-05
+Polyribonucleotide nucleotidyltransferase	2.16815e-06	3.58767e-06
+helicase SNF2	1.40607e-06	7.38906e-05
+hypothetical protein	1.10736e-05	7.96679e-06
+MafB5	6.89178e-05	0.00572495
+UniRef50_S2WYG7	4.00745e-06	7.07925e-06
+Glutamate  tRNA ligase	0.0037201	0.000127812
+Transition metal uptake transporter, Ni2+ Co2+ transporter  family	0.0106145	0.000962734
+Peptide methionine sulfoxide reductase MsrA 1	0.00320211	0.000797162
+UniRef50_J9P4P6	0.000167164	0.000185848
+UniRef50_F0Y4U2	0.000221185	0.000206147
+PREDICTED	2.17394e-05	6.958e-06
+Methyl accepting chemotaxis sensory transducer	0.000335611	0.000857925
+Thiamine monophosphate kinase	0.00189927	0.000652761
+Ribonucleoside diphosphate reductase NrdEB subunit alpha	1.18205e-05	0.00313209
+UniRef50_W4FVH2	5.29735e-05	2.4516e-05
+SAM dependent methyltransferase, UbiE CobQ family	0.00207981	0.000205929
+monosaccharide ABC transporter ATP binding protein	1.7705e-05	2.76607e-05
+UniRef50_J3LY38	0.00300198	0.00111538
+Anthranilate 1,2 dioxygenase large subunit	0.000491384	0.00381253
+UniRef50_Q1GKJ0	2.63548e-05	1.19426e-05
+Pyruvate dehydrogenase E1 component subunit alpha 3, chloroplastic	3.66666e-06	7.50404e-06
+hypothetical protein	1.17782e-05	2.06375e-06
+Hit like protein involved in cell cycle regulation	0.00702724	0.00249564
+Valine  tRNA ligase	2.96477e-06	9.35729e-07
+UniRef50_W7VMY1	3.21875e-05	0.001191
+hypothetical protein	5.64464e-06	1.06427e-05
+Diheme cytochrome c type	0.00369281	0.000183609
+hypothetical protein	0.000183734	9.49809e-06
+HTH type transcriptional regulator eutR	0.00416761	0.00050907
+cation	0.000173195	0.000443692
+Transcriptional regulator	0.0062977	0.000983919
+MULTISPECIES	7.74113e-06	5.27852e-05
+UniRef50_S9S8N1	2.27355e-05	8.32037e-06
+UniRef50_A3SJL5	3.32857e-05	2.44536e-05
+Protein AdrA	0.00155841	0.00079505
+UniRef50_E8SHK7	0.00537803	0.00116232
+Hemin import ATP binding protein HmuV	1.02699e-05	0.00115645
+FlgJ	6.55311e-05	2.00133e-05
+UniRef50_E6DXQ9	0.000194912	0.00151163
+UniRef50_A3NGC1	3.19956e-05	7.73012e-05
+ATP phosphoribosyltransferase	0.00268653	0.00102383
+Carbamoyl phosphate synthase large chain	1.08804e-05	5.16998e-06
+Biotin carboxylase	0.000261158	0.00102939
+UniRef50_D3QZW7	0.00874328	0.00174949
+Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.00688084	0.000885067
+FAD dependent oxidoreductase	1.68581e-05	1.88328e-06
+ribose transport ATP binding protein RbsA	3.02658e-06	2.41134e-06
+PREDICTED	6.11222e-06	1.72108e-05
+Pyridoxal biosynthesis lyase PdxS	0.000146004	0.00156175
+UniRef50_C6D7D6	2.86472e-06	2.94414e-05
+CG9547	0.00506761	0.00316311
+Dipeptidase A, Cysteine peptidase, MEROPS family C69	0.00557685	0.000664792
+Marine sediment metagenome DNA, contig	1.39848e-05	5.77319e-06
+PREDICTED	9.23062e-06	4.82764e-06
+Transposition Helper	0.000143009	0.00519824
+TetR family transcriptional regulator	8.25832e-06	8.88413e-06
+DeoR family transcripitonal regulator	3.20952e-05	3.82601e-06
+MULTISPECIES	5.69538e-05	8.23002e-06
+30S ribosomal protein S4	0.0150219	0.00418301
+Transport protein SgaT, putative	0.000177463	0.000374195
+Glycosyltransferase CDP glycerol	0.00293776	0.000130206
+Hydrogenase nickel incorporation protein	0.000586726	6.26645e-05
+UniRef50_W7CHL0	3.66887e-06	6.11621e-06
+UniRef50_F2U144	6.55983e-05	1.28543e-05
+UniRef50_J0ZPP4	9.34209e-05	0.000507259
+Valyl tRNA synthetase	0.000176356	0.00243277
+DNA primase	3.70148e-06	1.74848e-06
+UniRef50_P44808	0.000964291	0.000354629
+Threonine dehydratase biosynthetic, chloroplastic	1.89144e-06	1.05279e-05
+Thymidine kinase	1.07757e-05	1.36353e-05
+hypothetical protein	8.65088e-05	0.000566301
+hypothetical protein	6.72989e-05	2.65563e-05
+PPE family protein	0.000155851	2.13304e-05
+Histidine kinase	0.000682277	5.04126e-05
+Methyltransferase family protein	0.000504119	0.000907466
+L serine dehydratase	0.000853226	0.000114908
+Pyrrolidone carboxylate peptidase	1.59641e-05	0.00240157
+PREDICTED	1.06453e-05	9.41092e-06
+UniRef50_V4HTY9	0.000252365	0.000195849
+AzlC family protein	3.07836e-05	6.36998e-06
+UniRef50_F8JSP7	8.3523e-07	0.000225717
+Ferripyochelin binding protein	5.70538e-05	1.37229e-05
+hypothetical protein	1.20194e-05	1.30591e-05
+LuxR family transcriptional regulator	0.000221793	0.000282226
+hypothetical protein	9.30414e-05	4.48817e-05
+hypothetical protein	2.37777e-05	1.89513e-05
+Type I site specific deoxyribonuclease, HsdR family	0.00499163	0.000742057
+hypothetical protein	1.23155e-05	3.53609e-06
+UniRef50_H3W5C9	0.00028819	0.000831341
+hypothetical protein	5.46453e-06	5.40263e-06
+Formate hydrogenlyase regulatory protein HycA	0.00278451	0.000823714
+hemolysin secretion protein D	1.4549e-05	1.38859e-05
+PREDICTED	7.21405e-06	5.73943e-06
+Tetracycline resistance protein	7.71814e-05	3.83455e-05
+hypothetical protein	2.38922e-05	1.91076e-06
+Predicted transcriptional regulator	0.000288072	0.000447907
+Oxidoreductase, short chain dehydrogenase reductase family	0.000105944	0.00433151
+Short chain dehydrogenase reductase SDR	0.000278518	0.00345752
+UniRef50_W7X1H4	0.00159636	0.000116545
+xanthine permease	6.74968e-05	0.00010981
+Phosphoglucomutase phosphomannomutase alpha beta alpha domain I	0.000285411	0.0309839
+CDP glycerol	0.00285828	0.00033317
+UPF0219 protein APE_1873.1	0.00275874	0.000757627
+Arabinose operon regulatory protein	0.00449314	0.000334951
+UniRef50_Q3JGP6	5.05024e-05	8.65101e-07
+Serine hydroxymethyltransferase	0.000113658	0.00431316
+3 dehydroquinate synthase	0.000131808	0.000988862
+PTS fructose transporter subunit IIA	5.06863e-06	0.000236008
+UniRef50_I7DVA3	0.0100295	0.00190523
+branched chain amino acid aminotransferase, partial	0.000473802	2.72146e-05
+Secreted protein	1.20946e-06	8.25608e-05
+Serine  tRNA ligase	2.4797e-05	6.05593e-06
+3 oxoacyl [acyl carrier protein] synthase 3	0.000327568	6.72928e-05
+Transposase, putative, truncation	0.00054282	2.46963e-05
+Transposase for insertion sequence element IS421	0.0107988	0.0017801
+hypothetical protein	9.89591e-06	1.24659e-05
+Adenine phosphoribosyltransferase	0.000770566	0.0023107
+ATPase like protein	0.000425961	0.000213978
+Predicted acetyl CoA carboxylase	2.24857e-05	2.11457e-05
+50S ribosomal protein L24	6.45389e-05	4.72553e-06
+AdeT, RND type efflux pump	0.000227938	0.00761424
+8 amino 7 oxononanoate synthase	2.22951e-05	2.96545e-05
+Endoribonuclease L PSP	0.000101656	9.70085e-06
+Marine sediment metagenome DNA, contig	0.000123374	2.342e-05
+Ribosomal protein S12 methylthiotransferase RimO	0.000669271	0.00108808
+hypothetical protein	6.89451e-05	1.45212e-05
+acetyl CoA carboxylase biotin carboxylase subunit	2.34244e-06	9.7932e-06
+UniRef50_S4XY12	0.000299223	8.36765e-05
+Resolvase helix turn helix domain protein	0.000252411	0.00181756
+hypothetical protein	3.53715e-06	3.13112e-06
+UniRef50_A7FB80	0.000103025	0.00306466
+Accessory gene regulator B	0.000982913	0.000330704
+Membrane spanning protein	0.00663819	0.0024509
+ORF114	0.000440149	0.000289629
+II DNA RNA helicase ComFC	0.0187308	0.0038218
+E1 E2 ATPase	0.00022288	0.000399933
+UniRef50_A0A023FF30	3.22866e-05	0.000723729
+Surface protein G	0.00140326	0.000162105
+hypothetical protein	2.12207e-05	4.59099e-05
+nitrogen regulatory protein P II 1	0.0014224	0.000687278
+Glycosyltransferase	0.000223756	0.000814173
+dTDP glucose 4,6 dehydratase	0.0271159	0.0125675
+UniRef50_G1Y1D6	8.60256e-05	1.33565e-06
+Acetylglutamate kinase	5.16191e-05	1.44119e-05
+Replication initiation protein	0.0109193	0.00306187
+Pyrophosphate phospho hydrolase	0.0145489	0.000886873
+Transcriptional regulator	3.0608e-06	2.28054e-06
+Fimbrial assembly protein PilQ	0.000679551	0.000322383
+ATP dependent helicase nuclease subunit A	0.00930017	0.00120819
+hypothetical protein	2.08605e-05	2.94305e-06
+Flagellar P ring protein	0.0013727	0.000125398
+alpha amylase	1.72148e-05	1.10877e-05
+UniRef50_Q88BP2	3.02266e-05	4.43426e-06
+Predicted protein 	2.4992e-05	1.64388e-05
+Arginine deiminase	0.000455027	0.00354649
+Ribose 5 phosphate isomerase A	0.00063765	0.00193082
+Phosphatidylglycerophosphatase B	0.00122208	0.00159014
+hypothetical protein	1.07027e-06	1.95652e-06
+UniRef50_D8JJE0	0.000298286	0.00547543
+hypothetical protein	0.000237595	1.18631e-05
+ATP dependent dethiobiotin synthetase BioD 2	0.00187008	0.00100352
+CBR SDC 3 protein	0.00188103	0.000944504
+hypothetical protein	4.14475e-06	1.3829e-05
+Intracellular protease, PfpI family	0.00591081	0.000690653
+UniRef50_K2EJR9	9.86437e-06	1.57846e-05
+UDP sulfoquinovose synthase, chloroplastic	0.00033349	1.89781e-05
+UniRef50_A5UJN9	0.00118676	0.000435539
+Predicted protein	2.49023e-06	3.16918e-06
+50S ribosomal protein L24	9.86124e-05	0.000137581
+hypothetical protein, partial	2.44368e-05	8.89855e-06
+hypothetical protein	0.000120498	4.68682e-05
+Type II secretion system protein E	0.000767157	0.000153054
+Phosphoribosylformylglycinamidine synthase 1	0.0215288	0.00132863
+GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE	0.000225431	0.00191815
+UniRef50_K1Y7A4	3.02816e-06	2.519e-06
+Multidrug resistance protein B	0.0122106	0.000884898
+DNA directed RNA polymerase subunit beta	2.2263e-06	1.08316e-06
+Cobalamin synthesis protein	3.6108e-06	3.38285e-06
+Adenylyltransferase and sulfurtransferase MOCS3	8.44891e-06	8.08495e-06
+UniRef50_Q9RSN4	8.07071e-05	0.00383661
+ABC transporter membrane spanning permease, arginine histidine transport, putative	0.00315243	0.00195937
+diaminopimelate decarboxylase	3.87477e-06	1.21426e-05
+Serine acetyltransferase	0.00758743	0.00321391
+Membrane spanning protein	9.82146e-05	0.00304684
+hypothetical protein, partial	0.000191407	1.13664e-05
+UniRef50_M9VCZ7	1.52684e-05	4.89673e-05
+Predicted protein	3.87622e-05	8.98837e-05
+Gnt II system L idonate transporter IdnT	1.54106e-05	3.98082e-06
+UniRef50_A5UDU8	0.000467196	6.88534e-05
+30S ribosomal protein S1	1.9518e-05	3.68787e-05
+Hmd co occurring protein HcgC	0.00153726	0.000233364
+UniRef50_K4ADF5	1.11943e-05	0.000224181
+NADPH	8.68025e-06	3.27861e-05
+Pyridine nucleotide disulphide oxidoreductase	0.00029606	0.000862913
+UniRef50_A5W887	0.000215493	0.000455244
+Cobyrinic acid A,C diamide synthase	1.35448e-05	0.000111208
+3 oxoadipate enol lactonase	2.0367e-06	7.38758e-06
+UPF0167 protein CbrC	0.00193054	0.000869305
+UniRef50_A6D355	1.55648e-05	4.17139e-05
+CobQ CobB MinD ParA nucleotide binding domain protein	2.33468e-06	3.77213e-06
+UniRef50_B2TKG7	0.000192931	0.000440479
+ABC transporter	0.000101114	1.33823e-05
+UniRef50_B2TKG9	0.000915121	0.000503328
+UniRef50_A6LPH0	0.000669016	0.000649107
+UniRef50_Q2YTW8	0.000391564	0.000381665
+Thioredoxin reductase 2	5.35523e-05	1.04704e-05
+UniRef50_U6ZY01	0.00018334	4.14465e-05
+N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase	5.63513e-06	1.77686e-05
+UPF0761 membrane protein PBPRA3489	0.00158482	0.000409549
+4 hydroxybenzoate octaprenyltransferase	0.000532121	0.000164218
+MULTISPECIES	1.41253e-05	1.26272e-05
+Transcriptional regulator MutR	0.00556363	0.00224827
+Nitric oxide synthase oxygenase	0.0153313	0.0031443
+streptomycin 3 kinase	3.60508e-05	1.67377e-05
+Colicin V production protein	0.00599757	0.0013863
+Outer membrane lipoprotein carrier protein	0.00074994	0.00256999
+P type cation transporting ATPase	4.17554e-05	3.6782e-05
+Serine  tRNA ligase	9.35177e-05	0.00129781
+Predicted protein	0.0129954	0.00220621
+Peptidyl tRNA hydrolase	0.00030049	0.00147188
+ABC transporter ATP binding protein, partial	6.05197e-05	6.37199e-05
+UniRef50_E2BKF3	3.53628e-06	6.91356e-05
+UniRef50_K4A2U8	0.000271897	2.33733e-06
+Transcriptional regulator, AraC family	0.0138882	0.0014889
+UniRef50_E3A746	0.000124957	2.8603e-05
+Predicted protein 	0.000119083	0.00013144
+Ribosomal RNA small subunit methyltransferase H	1.21789e-05	0.00193435
+MFS transporter	1.56251e-05	3.77025e-06
+ABC transporter ATP binding protein	1.65459e-05	1.87753e-05
+Transposase	0.00116771	0.000117366
+Signal recognition particle protein	0.019988	0.0033615
+Lactoylglutathione lyase	0.000606523	0.00122517
+Sensor histidine kinase GraS	0.0196695	0.000992048
+UniRef50_U6LXV1	1.13641e-05	5.08812e-06
+deoxyguanosinetriphosphate triphosphohydrolase	6.44927e-05	2.78651e-06
+UniRef50_X7ECQ0	2.66626e-06	2.03829e-06
+Os08g0537001 protein	6.4681e-05	0.000945545
+NAD synthetase	1.24515e-05	2.78455e-06
+UniRef50_A6QIL3	0.00256536	0.000870025
+UniRef50_Q8CR15	0.00282577	0.00129585
+ATP synthase subunit beta, chloroplastic 	1.93974e-05	6.74021e-06
+PREDICTED	9.33194e-06	1.33952e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2, mitochondrial	5.37877e-06	2.937e-06
+UniRef50_R4LTE6	4.03966e-05	4.00978e-05
+UniRef50_A6LZR2	0.000379404	0.000318879
+UniRef50_A6LZR6	0.000232452	0.000813622
+UDP N acetylmuramate  L alanine ligase	0.000163097	0.00370852
+UniRef50_V8B5L5	0.000769451	7.91754e-05
+Radical SAM domain protein	0.00179709	0.000319127
+UniRef50_Y1QUK6	7.25487e-05	1.87371e-05
+hypothetical protein, partial	3.5174e-05	4.49854e-05
+Histidinol phosphate aminotransferase	0.000418006	0.00287617
+UniRef50_A4WVN9	0.00258609	0.000164148
+CP4 like integrase	6.76089e-05	2.99487e-05
+lysine transporter LysE	4.8063e-05	3.67203e-05
+Uridylate kinase	7.28793e-06	1.40292e-05
+UniRef50_B1M0V9	1.19265e-05	1.19634e-05
+UniRef50_B1M0V4	3.61595e-05	3.28951e-05
+UniRef50_UPI0003C18CC4	5.87541e-05	1.09324e-05
+Membrane bound lytic murein transglycosylase A	0.000247349	7.18148e-05
+transcriptional regulator	4.02484e-06	4.47664e-06
+IolE protein like protein	0.0120605	0.0030615
+Glycosyl hydrolase family 32, N terminal domain protein	0.000264198	0.00112367
+Cna B domain protein	0.00131731	0.000499954
+DNA replication and repair protein RecF	0.000613946	0.0016111
+hypothetical protein	0.000214486	0.000141222
+Glutaminase	0.000352214	1.68113e-05
+competence protein	1.49092e-05	2.34241e-05
+UniRef50_A6LTY9	0.000359874	0.000440419
+Transketolase	0.00892157	0.00451243
+hypothetical protein	3.61854e-06	4.93802e-06
+L malyl CoA beta methylmalyl CoA lyase	0.00988442	0.00316776
+Urease	2.43438e-06	1.12179e-05
+potassium ABC transporter ATPase	5.98203e-06	5.17962e-06
+hypothetical protein	2.20293e-05	7.39832e-06
+UniRef50_D6SH06	0.0164023	0.00117241
+Oligoendopeptidase F	0.000201852	0.000799757
+Enoyl CoA hydratase	0.000219488	0.0299323
+Binding protein dependent transport systems inner membrane component	0.000137367	0.00505694
+Membrane protein like protein	0.00531057	8.58457e-05
+glycoside hydrolase family 13	1.2405e-06	6.773e-05
+Hydrogenase 2 maturation protease	0.00112864	0.00805814
+Vitamin B12 transporter BtuB	0.00258307	0.000197278
+UniRef50_R7PWN2	0.00298795	0.000266694
+UniRef50_A0A009DJS4	6.7331e-05	0.000109604
+N succinylarginine dihydrolase, partial	1.54826e-05	3.09386e-05
+Inner membrane protein YgaZ	2.49186e-05	7.16951e-06
+Tryptophan synthase beta chain	0.0347923	0.0176941
+Divalent metal cation transporter MntH	0.000475648	0.00086108
+hypothetical protein	5.66328e-06	5.00579e-05
+Oligoendopeptidase F, putative	5.82936e-05	0.0217191
+insertion element transposase	1.90105e-05	2.52425e-05
+PREDICTED	7.37759e-05	3.28034e-05
+PREDICTED	7.32502e-05	5.75445e-05
+UniRef50_N6V3L4	0.000534851	0.000135433
+UniRef50_Q46793	0.000611574	0.000137286
+phage infection protein	1.92056e-06	7.62066e-07
+hypothetical protein	8.32306e-07	2.07429e-06
+hypothetical protein	3.81081e-05	2.9693e-06
+UniRef50_V5VD88	0.000337382	0.00222282
+PREDICTED	6.66945e-06	3.37516e-06
+Rod shape determining protein MreB	0.0029497	0.000240386
+3 dehydroquinate dehydratase	0.011563	0.000882553
+UDP N acetylglucosamine pyrophosphorylase	0.000140619	0.00235995
+DNA binding protein HU 1	0.00121173	0.000332537
+UniRef50_A0A017SZJ0	6.86157e-06	0.000116896
+Transposase	0.00017593	0.000161789
+UniRef50_Q9RWI1	2.27142e-05	0.00564172
+DNA polymerase III subunit alpha	2.92726e-06	1.03829e-06
+Redox sensing transcriptional repressor Rex	0.000529161	0.000188624
+FMN binding domain protein	0.000363706	0.000425304
+Capsule biosynthesis protein, putative	4.36676e-05	0.00114782
+Virulence factor EsxA	0.00331661	0.00172663
+hypothetical protein	3.33122e-05	1.03754e-05
+HIRAN	0.000928843	0.000190085
+Probable quorum quenching lactonase YtnP	0.00681265	0.00242998
+Protein NrfD	0.00145665	0.000190425
+Pyrimidine nucleoside phosphorylase	0.000189313	0.0022662
+UniRef50_W5FVF8	6.17946e-05	0.000117556
+hypothetical protein	7.27732e-06	1.04113e-05
+hypothetical protein	0.000544145	2.45665e-05
+UniRef50_R7PY44	0.00103737	7.79088e-05
+2 methylcitrate synthase 2	1.26386e-05	6.03449e-06
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.08852e-05	4.30691e-06
+Acetylglutamate kinase	5.03906e-05	9.87315e-06
+General secretory system II, protein E domain protein	0.00187858	0.000176243
+Formyltetrahydrofolate deformylase	8.64341e-06	0.0213164
+3 5 exonuclease, partial	0.000433338	0.000312088
+Cytidyltransferase related domain containing protein	0.00267657	0.000159024
+UniRef50_M9RAZ0	4.51016e-05	2.70598e-05
+UniRef50_P32144	0.00177623	0.000560073
+Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein	0.00924776	0.00154012
+hypothetical protein, partial	1.46375e-05	4.32543e-05
+HupE UreJ family metal transporter	0.000126686	9.67385e-06
+DNA mismatch repair protein MutS domain protein	0.00957752	0.00108974
+Multidrug ABC transporter, ATPase and permease component	0.00497604	0.00266735
+UniRef50_A3JX48	0.000142553	5.02456e-05
+hypothetical protein	8.3914e-06	1.90688e-05
+DNA primase	2.90445e-06	3.75495e-06
+UniRef50_P37662	0.00439216	0.000397656
+UniRef50_P37663	0.00255543	0.000531246
+UniRef50_P37664	0.000230513	0.000986647
+Chromosomal replication initiator protein DnaA	0.00745141	0.00100229
+Ribosomal RNA small subunit methyltransferase G	2.93323e-05	1.99494e-05
+Transglutaminase domain protein	6.36105e-05	3.52475e-05
+Putative signal peptide protein	0.00014737	0.00011929
+Phenylalanine  tRNA ligase beta subunit	0.000188005	8.62628e-05
+Ribosomal protein L21	0.00116058	0.00045118
+Probable alginate O acetylase AlgI	0.00066675	0.000490772
+Peptidase A24A	0.0111367	0.000443253
+UniRef50_U5NRI8	0.000439302	0.00106484
+UniRef50_A4WPL6	0.0149751	0.00353917
+UniRef50_A3ZQR3	0.000134723	1.72523e-05
+UniRef50_W1JLJ8	0.000220282	2.07908e-05
+Peptide deformylase	1.34408e-05	1.36195e-05
+Peptidyl tRNA hydrolase	3.9373e-05	1.09151e-05
+Cystathionine beta lyase	6.88669e-05	0.00248429
+Transcriptional antiterminator, BglG	0.000196455	0.000505963
+Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD	0.00187888	0.000525693
+hypothetical protein	3.6073e-05	8.17446e-05
+Uroporphyrinogen decarboxylase	1.41711e-05	1.27308e-05
+Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase	8.80249e-05	0.00152862
+Uracil xanthine permease	0.0128514	0.00162104
+D ribose transporter ATP binding protein	3.77932e-06	3.05593e-06
+Dihydropteroate synthase	0.0255114	0.00304743
+AraC family transcriptional regulator	0.000340841	0.000303213
+Extracellular solute binding protein family 1	1.98102e-05	0.000403853
+NAD dependent epimerase dehydratase	0.00409926	0.00182253
+Oligoendopeptidase F	0.000137235	0.00257352
+Phosphatidate cytidylyltransferase	0.00573906	0.00292047
+Aminotransferase class I and II	0.00601422	0.0018631
+UniRef50_W8EXQ8	2.52877e-06	2.11368e-06
+conserved hypothetical protein	2.3153e-06	6.07314e-06
+UniRef50_R7PWY7	0.00353492	0.000335152
+Probable nitrate reductase molybdenum cofactor assembly chaperone NarW	0.00396387	0.000153741
+Formate  tetrahydrofolate ligase	0.0295777	0.0116545
+8 amino 7 oxononanoate synthase	0.000230647	0.00744665
+Amidotransferase	0.000846805	0.000197764
+UniRef50_B7RLJ4	0.00102104	5.54643e-05
+HlyD family secretion protein domain protein	0.000412827	0.00029817
+NADH quinone oxidoreductase subunit F	0.000115652	0.00311116
+UniRef50_T5JDW5	7.55701e-06	0.00013616
+Na translocating NADH quinone reductase subunit E	0.000104942	5.53709e-05
+Alanine  tRNA ligase	0.00294247	0.00101364
+5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.00945778	0.00171423
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.0094461	2.00124e-05
+Chorismate synthase	3.74624e-06	9.86786e-06
+UniRef50_A5UP06	0.00199053	0.000483045
+hypothetical protein	2.99953e-06	3.1327e-06
+Erythronolide synthase., Aspartate racemase	0.000390603	0.000607128
+UniRef50_A0A023X8X0	0.000161504	9.89715e-05
+ATP dependent Clp protease proteolytic subunit 2	0.000185938	0.00520151
+Ribosomal RNA small subunit methyltransferase H	6.06675e-06	0.00181953
+UniRef50_A5UP09	0.00174366	0.000423491
+UniRef50_X2H8Z5	0.000164975	0.00203905
+UniRef50_V7FG71	4.46425e-05	0.000137
+PREDICTED	1.75192e-06	1.48061e-05
+UniRef50_R7B346	0.00408563	0.000469713
+UniRef50_K0TNG1	6.45306e-06	2.66672e-05
+hypothetical protein	8.68558e-06	4.17504e-06
+hypothetical protein	0.000304462	5.00174e-05
+hypothetical protein	4.35016e-06	1.03491e-05
+Purine nucleoside phosphorylase DeoD type	0.00392257	0.00122323
+UniRef50_C7ZTK0	0.00975723	0.00204678
+ABC transporter permease	2.14335e-05	2.38548e-05
+Polyphosphate kinase	5.40206e-05	0.0012188
+UniRef50_C5X9K2	8.83042e-05	0.000482925
+ABC type transporter, periplasmic subunit family 3	0.000249295	0.000374887
+UniRef50_I0E8W5	7.60848e-05	0.00111116
+hypothetical protein, partial	0.000147308	9.14113e-05
+Extensin like protein	3.09077e-06	9.17129e-07
+Ribonuclease H	4.42139e-05	1.38748e-05
+UniRef50_G8VGX4	0.000367964	0.00347806
+Transcriptional regulator, GntR family	0.00424734	0.000339511
+Membrane lipoprotein lipid attachment site	0.000111791	4.82346e-06
+UniRef50_U3B280	9.36842e-06	3.6019e-05
+Periplasmic binding protein LacI transcriptional regulator	0.000423829	0.00080147
+Polyketide synthase	0.000119343	0.000114696
+Ribosomal RNA small subunit methyltransferase H	5.46615e-06	8.63448e-05
+PREDICTED	8.79073e-06	5.60004e-06
+hypothetical protein	0.000150734	3.95253e-06
+UniRef50_A9GG06	3.24951e-06	0.000115834
+Urease subunit beta	1.95695e-05	0.00179035
+Nitroreductase	0.000494924	0.000172996
+UniRef50_P75858	0.00416468	0.000434047
+Transcriptional regulator, Crp Fnr family	0.00273051	0.000526676
+NAD specific glutamate dehydrogenase	8.58411e-06	0.0016056
+Acetyltransferase, GNAT family	0.0204412	0.00329338
+cytochrome C oxidase subunit I, partial	3.35662e-05	2.81248e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.000170921	0.0021403
+Ribosomal RNA large subunit methyltransferase E	4.03353e-05	2.03603e-05
+Delta aminolevulinic acid dehydratase 1, chloroplastic	1.14004e-05	1.19515e-05
+hypothetical protein	5.04665e-06	7.74227e-06
+Ribosomal protein	7.54781e-06	0.000112011
+hypothetical protein	7.52847e-06	1.41298e-05
+Glutaryl CoA dehydrogenase, mitochondrial	2.26017e-05	0.000121874
+Lipase, putative	0.0110594	0.00262703
+UniRef50_I2HEM4	3.25811e-05	0.00032649
+L cystine uptake protein TcyP	0.00759528	0.00519744
+PREDICTED	7.32768e-07	6.75769e-07
+UniRef50_Q49ZB9	0.0208567	0.00302728
+UniRef50_W1WJ70	4.41585e-05	1.84191e-05
+Bacteriocin, lactococcin 972 family	0.00978538	0.000308539
+UniRef50_Q1R4E5	0.000771485	0.000149144
+Cyclic pyranopterin monophosphate synthase	9.48434e-06	4.03946e-05
+FAD dependent oxidoreductase	1.26712e-05	8.58642e-06
+UniRef50_M9VD00	0.000600749	0.00287137
+Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding	0.00180557	0.000246772
+hypothetical protein	0.00017807	2.09353e-05
+Phosphate import ATP binding protein PstB	1.71594e-05	9.78081e-05
+Type VI secretion protein, VC_A0114 family	3.18769e-06	3.2143e-06
+Component of chemotactic signal transduction system	0.000172131	0.00014491
+Sporulation initiation inhibitor protein soj	0.000578192	1.16912e-05
+UniRef50_C0ERG4	0.000240794	0.000160579
+hypothetical protein	3.26333e-06	2.28273e-06
+Type III secretion system inner membrane R protein	0.0130844	0.00162082
+Tryptophan specific transport protein	0.00432488	0.000488145
+UniRef50_G2JMU8	0.000216662	0.00677937
+UniRef50_B1J5I1	6.1504e-06	5.99656e-06
+UniRef50_B4VCX3	3.4756e-05	2.74458e-06
+CTP synthetase	2.94273e-06	9.89696e-06
+Phosphoadenosine phosphosulfate reductase	1.05583e-05	0.00706184
+Ribosomal RNA small subunit methyltransferase A	2.4274e-05	1.90691e-05
+UniRef50_W6KBC4	2.92444e-05	2.97575e-06
+Inner membrane transport protein YhaO	0.0022982	0.00223738
+UniRef50_R4KE37	0.00093188	0.00028436
+Substrate binding region of ABC type glycine betaine transport system	0.00820905	0.000351781
+transcriptional regulator	6.10221e-05	0.000189601
+hypothetical protein, partial	3.18137e-06	1.27446e-06
+chemotaxis protein CheW	2.52025e-05	2.42928e-05
+PREDICTED	0.00010509	3.55552e-06
+UniRef50_P30177	0.00478276	0.000650172
+PTS system lactose specific transporter subunit IIA	4.51946e-05	2.35111e-05
+Sensor protein PfeS	0.000839873	0.000104547
+ORF700 protein	0.00228291	2.94055e-05
+cystathionine beta lyase, partial	2.6184e-05	5.131e-05
+50S ribosomal protein L6	7.67954e-06	0.00013649
+UniRef50_F0VF06	9.52798e-07	8.51916e-07
+Carbohydrate diacid regulator	0.00237856	0.000283138
+hypothetical protein	3.27895e-06	2.46206e-06
+hypothetical protein	1.8336e-05	2.78733e-05
+Cryptic catabolic NAD specific glutamate dehydrogenase GudB	4.43071e-06	0.000191229
+Lysine exporter protein 	0.000446746	0.00242406
+UPF0301 protein HIMB11_01782	3.36024e-05	3.6823e-05
+hypothetical protein	1.34668e-05	2.57049e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	1.37442e-05	0.00175805
+Adhesin like protein	0.0020495	0.000241357
+hypothetical protein	1.43822e-06	4.17321e-06
+Glycolate oxidase, iron sulfur subunit	1.17088e-05	1.13713e-05
+UniRef50_L6WWY8	0.000269603	6.94425e-05
+coenzyme PQQ biosynthesis protein D	9.46888e-05	3.60392e-05
+hypothetical protein, partial	4.97063e-06	8.45598e-06
+UniRef50_K1ZX87	1.59062e-05	1.95641e-05
+UniRef50_D3QET9	0.0122438	0.00166848
+UniRef50_M5X9E3	3.06923e-05	1.35818e-05
+DNA polymerase III subunit epsilon	0.000196812	0.000365452
+UniRef50_Q0FDU0	1.95617e-05	1.14798e-05
+Acetoin	0.0103919	0.00584469
+hypothetical protein	1.78021e-05	3.22639e-06
+Multidrug resistance protein MdtH	0.0024923	0.000755225
+Metal dependent phosphohydrolase	0.000233714	0.00105021
+UPF0756 membrane protein YeaL	0.0045893	0.000206402
+Transcriptional regulator, DeoR family	0.00123879	0.000118138
+TonB dependent siderophore receptor	0.000190172	0.00487678
+hypothetical protein	1.10755e-06	1.03158e-06
+hypothetical protein	3.28684e-06	1.2722e-05
+Polyketide synthase 	0.000338938	3.41021e-05
+UniRef50_L8UIS8	7.81387e-05	2.51265e-05
+UniRef50_Q9RXC5	0.000186777	0.0197703
+Recombination associated protein RdgC	0.000759495	0.00174687
+Peptidase T	0.0288331	0.00953154
+Peptidyl tRNA hydrolase	4.04698e-05	6.59484e-06
+TetR family transcriptional regulator domain protein 	0.000192588	4.44799e-05
+50S ribosomal protein L17	6.28113e-05	4.90682e-05
+Chlamydial polymorphic outer membrane protein repeat containing domain protein	6.36436e-05	2.4927e-06
+Acyl CoA dehydrogenase	0.00462273	0.00136896
+Transporter	0.00395139	0.000516016
+UniRef50_A5UNH0	0.00200587	0.000454119
+UniRef50_A5UNH3	0.00169437	0.00109311
+Arginine biosynthesis bifunctional protein ArgJ	0.0003878	0.000576678
+hypothetical protein	3.07243e-05	2.47351e-05
+UniRef50_K2EUH3	5.07314e-05	9.38486e-06
+Ferrichrome iron receptor	0.00263468	0.000177573
+Fhu operon transcription regulator	0.00443429	0.000567896
+Uroporphyrinogen III C methyltransferase	1.88153e-05	1.5278e-05
+Tail fiber assembly protein homolog	0.00183235	1.15127e-05
+30S ribosomal protein S3	0.00429201	0.00264087
+Anaerobic nitric oxide reductase transcription regulator NorR	0.00294643	0.000101491
+Bifunctional adenylate cyclase hybrid sensor diguanylate cyclase response regulator	1.75257e-05	4.97567e-05
+Outer membrane protein	0.00013793	0.00211659
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0176721	0.0115858
+hypothetical protein	0.000230439	0.000172018
+hypothetical protein	1.22105e-06	1.15648e-05
+UniRef50_U3SZE2	0.000263162	0.0022787
+Aminomethyltransferase	3.36954e-05	7.28137e-06
+Acetylglutamate kinase	0.000784114	0.00422149
+hypothetical protein	8.96958e-06	7.93172e-05
+PREDICTED	3.19842e-06	6.98478e-06
+Blue light activated histidine kinase	3.12754e-05	1.66317e-05
+UniRef50_E3A0D4	0.000825983	0.000154535
+ATP synthase epsilon chain 1	0.00578602	0.000385343
+UniRef50_R0TGF0	0.000203399	0.00032066
+Pirin C terminal cupin domain protein 2	1.7601e-05	2.44369e-06
+hypothetical protein, partial	0.000117818	2.11243e-05
+UDP N acetylmuramate  L alanine ligase	3.5137e-06	3.59671e-06
+Translation initiation factor IF 2	0.000294944	0.0053681
+Pe pgrs family protein	6.63113e-06	3.37713e-05
+Ferrous iron transport protein B	0.000137093	0.00558493
+DNA glycosylase	6.16545e-05	2.47585e-05
+UniRef50_E2PFC0	3.69793e-05	0.000111146
+Luciferase family oxidoreductase, FMN dependent, PP_0088 family	0.0236079	0.00388427
+Secretory antigen SsaA	0.0093812	0.000112937
+Cardiolipin synthase B	0.00240221	0.000403454
+Beta lactamase like protein	3.95852e-05	4.72297e-06
+hypothetical protein	1.00615e-05	3.73481e-06
+hypothetical protein	2.42135e-05	1.58188e-06
+hypothetical protein	7.06574e-05	5.55348e-05
+Diguanylate cyclase	0.00812072	0.000367429
+hypothetical protein	7.24131e-06	2.85225e-05
+Phosphomannomutase phosphoglucomutase	0.000351882	0.000184804
+UniRef50_C8RWL5	0.000181702	5.23203e-05
+Deferrochelatase peroxidase EfeB	0.00380432	0.000158809
+Predicted protein	7.35525e-06	6.54081e-06
+UniRef50_T0I6W5	2.30446e-05	1.01536e-05
+Outer membrane protein assembly factor BamD	0.00327913	0.000603175
+UvrD REP helicase N terminal domain protein	6.00596e-05	0.00413135
+UniRef50_A1B5D2	0.00137131	0.000360272
+UniRef50_A1B5D1	5.68014e-05	1.32168e-05
+Arginine deiminase	5.81957e-06	5.97566e-06
+Glycosyltransferase 36	0.000131908	0.000147664
+Galactose 6 phosphate isomerase	0.000479087	0.00216633
+UniRef50_Q3IX62	0.00123218	5.15481e-05
+UniRef50_Q3IX61	0.00677192	0.00113641
+MazG	1.30783e-05	4.75645e-06
+UDP glucose pyrophosphorylase	4.40374e-05	7.15066e-06
+33 kDa chaperonin	0.00310056	0.00207639
+hypothetical protein	4.63334e-05	2.16016e-05
+ADP heptose  lipooligosaccharide heptosyltransferase II	0.000144029	0.00202355
+MULTISPECIES	6.10769e-06	9.99995e-05
+UniRef50_Q8DV84	0.00503854	0.00109888
+D lactate dehydrogenase	0.00110752	9.63357e-05
+NADH peroxidase	0.00773223	0.000857616
+Sulfotransferase	0.000825254	4.25118e-05
+UniRef50_W0Z1I7	0.00029357	9.89428e-05
+UniRef50_W7JJV3	0.000221414	4.10036e-05
+Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase	0.00413186	0.00223479
+Glucose and ribitol dehydrogenase homolog 2	2.31075e-05	3.1381e-05
+acetolactate synthase 3 regulatory subunit	1.11942e-05	0.000114282
+3 hydroxyacyl CoA dehydrogenase	2.11762e-06	2.52386e-06
+Competence protein transcription factor	0.00501629	0.00132818
+tRNA N6 adenosine threonylcarbamoyltransferase	5.24747e-06	6.49345e-06
+Sortase family protein	0.00487171	0.000533406
+Serine threonine protein kinase related protein	0.00021312	0.0293745
+Putative protein FhiA	0.0048849	0.000208449
+UniRef50_U6GAH2	5.89444e-06	1.63186e-06
+UniRef50_I4YVM4	2.67658e-05	9.4713e-06
+UniRef50_V9XXU2	0.00037186	0.000273227
+Protein TrpH	0.00214169	0.000655746
+PTS system mannitol specific cryptic EIICB component	0.00150444	0.000645055
+Fic DOC family protein	0.000307668	0.00018107
+hypothetical protein	7.17643e-05	0.000102343
+UniRef50_S5Y902	2.44201e-05	1.35478e-05
+proline iminopeptidase	7.37713e-06	6.27011e-06
+Integrase family protein	0.0109311	0.00140374
+Orotate phosphoribosyltransferase	0.0191082	0.00326006
+Sodium	0.000568939	6.53456e-05
+Marine sediment metagenome DNA, contig	2.16713e-05	5.31634e-06
+MULTISPECIES	1.03842e-05	3.19696e-06
+CoB  CoM heterodisulfide reductase 1 subunit B	0.00282621	0.000182861
+Stage 0 sporulation protein A homolog	0.000123278	0.000592062
+UPF0394 inner membrane protein YedE	0.00213815	0.00017781
+L arabinose isomerase	1.39157e-05	0.00295915
+hypothetical protein, partial	6.86285e-05	1.12683e-05
+Argininosuccinate synthase	3.81736e-06	3.22415e-05
+hypothetical protein	6.91344e-06	6.63962e-06
+Transporter, major facilitator family protein	0.000169247	0.00403654
+hypothetical protein	7.97432e-06	2.5997e-06
+Inner membrane protein YidI	0.00194122	0.00107628
+UniRef50_G2QV25	0.000133728	0.000114961
+glycerophosphoryl diester phosphodiesterase	5.67591e-06	6.70904e-06
+Flagellar protein, putative	0.000133694	2.91789e-05
+hypothetical protein	1.62184e-06	0.000150915
+PREDICTED	6.00661e-06	1.16122e-05
+Endonuclease 1	0.00211402	0.00099282
+Lipase	0.0203845	0.00315091
+UDP N acetylglucosamine 4,6 dehydratase 	0.00472148	0.00221931
+Putative monotil peptide	9.64601e-05	5.64942e-05
+UniRef50_U6MR10	1.86522e-05	3.80761e-06
+Heme ABC transporter	0.000131681	0.000324241
+UniRef50_E1PY25	0.000103236	0.00155221
+UniRef50_W6R6D1	3.26479e-06	2.65703e-06
+ABC transporter	0.000151565	0.00011155
+Adenylosuccinate synthetase	7.50697e-06	7.50905e-06
+Diphosphomevalonate decarboxylase	0.000415406	9.5313e-05
+UniRef50_A6LU62	0.000228945	0.000211757
+ABC transporter related	0.00202606	0.000424364
+MATE family multi antimicrobial extrusion protein	0.000288853	0.000642407
+Flp pilus assembly protein TadB	9.30723e-05	1.05674e-05
+hypothetical protein	8.44297e-06	2.61754e-06
+UDP diphosphatase	3.1811e-05	1.26289e-05
+UniRef50_K6DGD7	0.000128817	2.45947e-05
+Quinolone resistance protein NorA	0.0159964	0.00261962
+Cation diffusion facilitator family transporter	0.000262419	0.000649117
+Holliday junction ATP dependent DNA helicase RuvA	1.24195e-05	5.59556e-06
+PREDICTED	3.25004e-05	2.89947e-05
+UniRef50_F8LQS7	0.00329448	0.00129939
+membrane protein	2.49816e-05	1.01225e-05
+Lysophospholipase	0.000103025	0.000436033
+hypothetical protein	0.00133886	0.000277934
+N succinylarginine dihydrolase	0.0048871	0.00510995
+hypothetical protein, partial	0.00424441	0.000503565
+hypothetical protein, partial	5.86267e-06	9.16606e-05
+UniRef50_UPI000273E344	1.56667e-05	0.000104644
+tRNA delta isopentenylpyrophosphate transferase	5.22381e-06	3.28157e-06
+tRNA pseudouridine synthase B	0.00421347	0.0011579
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.00581e-05	2.46056e-05
+Rhs element Vgr protein	1.24377e-05	1.4642e-05
+UniRef50_Q49UP7	0.000879152	5.4698e-05
+UniRef50_E4A2Y9	0.000107738	0.000169119
+UniRef50_Q3JRD1	4.25277e-06	7.04217e-07
+Zinc import ATP binding protein ZnuC	1.63584e-05	3.17988e-06
+Glutaminyl tRNA synthetase	9.07955e-05	0.000475631
+Argininosuccinate lyase	0.00024695	0.00462447
+Phosphoribosylformylglycinamidine synthase 2	1.17802e-05	1.2286e-06
+UniRef50_Q1I3E4	3.58109e-05	4.85843e-05
+Ribosylpyrimidine nucleosidase	7.68103e-06	2.06383e-05
+Formate dehydrogenase, iron sulfur subunit	0.00248149	0.000179211
+Transposase IS66 family protein	1.47436e-05	1.76838e-05
+Transcriptional regulator	0.000131636	0.000388918
+hypothetical protein	7.83522e-06	1.34867e-06
+hypothetical protein, partial	2.24348e-05	5.13406e-05
+UniRef50_Q3JKK7	8.77023e-05	0.000178327
+Phosphoribosylformylglycinamidine cyclo ligase	0.0230146	0.00911949
+Short chain dehydrogenase	0.00016912	0.000737471
+Acyl CoA dehydrogenase family protein	0.000291629	0.000265305
+UniRef50_J1KAC8	0.00690049	0.00138271
+Polysaccharide biosynthesis protein	0.00121102	0.000845592
+PREDICTED	4.53147e-06	3.00269e-05
+Putative DNA utilization protein HofN	0.000189072	0.00148166
+3 dehydroquinate dehydratase	6.53722e-05	3.25925e-05
+UniRef50_X6KT46	6.3947e-05	4.11487e-05
+Protein NrdI	1.78471e-05	3.29424e-05
+hypothetical protein	4.63759e-06	1.52532e-05
+hypothetical protein	5.62412e-06	1.60381e-05
+Putative transposase, IS630 family	2.9705e-05	0.000235311
+GTPase Era	6.11915e-06	4.23226e-05
+UniRef50_A3VZS1	1.64517e-05	3.13543e-06
+Single stranded DNA specific exonuclease RecJ	0.00304353	0.000317266
+UniRef50_W6RJG6	7.75792e-06	8.593e-06
+Gamma hemolysin component A	0.0256139	0.00230874
+hypothetical protein	3.6947e-06	6.08424e-06
+O acetylhomoserine sulfhydrylase	0.0199868	0.00202936
+Long chain fatty acid  CoA ligase	0.00075275	0.000369311
+purine nucleoside phosphorylase	1.85391e-05	4.71199e-05
+oligopeptide transport system permease protein	4.39042e-06	2.28512e-06
+UniRef50_V4RCH7	1.8631e-05	1.43948e-05
+ATP phosphoribosyltransferase regulatory subunit	0.000335697	0.000131457
+Tandem lipoprotein	3.66375e-05	2.56394e-05
+UniRef50_W7Q3C9	2.25689e-05	4.98763e-05
+Molybdate metabolism regulator related protein	0.000105722	0.017205
+Ribose phosphate pyrophosphokinase	0.00698758	0.00132804
+Chemotaxis protein	0.000636406	0.000338063
+Voltage gated potassium channel Kch	0.00240743	0.000892572
+glutaredoxin, partial	0.000137736	6.58398e-05
+UniRef50_X3EPV1	1.55176e-05	1.22982e-05
+UniRef50_N6UFE0	3.64501e-05	0.00017584
+Adenine deaminase	0.00268834	0.000278598
+Radical SAM superfamily protein	0.00451638	0.000621567
+PREDICTED	4.08255e-06	1.89952e-06
+Major facilitator superfamiy transporter	0.00716997	0.00126156
+UniRef50_D8UEV7	3.36268e-06	2.45969e-05
+UniRef50_Q49ZY7	0.00203892	0.00212468
+Probable malate	2.74129e-06	5.2513e-06
+Adhesin like protein	8.06407e-08	1.15858e-07
+UniRef50_C6M427	0.000157932	0.000667771
+UniRef50_B0VBR0	1.09454e-05	0.00273931
+UniRef50_F2HSU2	0.000183304	0.000146523
+hypothetical protein	0.000307339	0.000157794
+hypothetical protein	3.0568e-06	1.4082e-05
+Probable cysteine desulfurase	0.0120463	0.00165145
+Aminoacylase	0.0137327	0.00064322
+PAGS 5	0.00483577	0.000229734
+hypothetical protein	1.16917e-05	8.29123e-06
+PREDICTED	1.2061e-05	5.66572e-06
+hypothetical protein	7.20496e-06	6.39803e-05
+DNA replication and repair protein	6.04281e-06	4.74458e-06
+UniRef50_I3TRT4	1.14092e-05	2.04219e-05
+UniRef50_A3PS72	0.028624	0.0125421
+ISSpo9, transposase	0.00028784	2.67231e-06
+Radical SAM domain protein	0.00326588	0.000558381
+ATP synthase subunit beta, mitochondrial	1.87636e-05	3.32272e-06
+hypothetical protein	6.68952e-06	1.54495e-05
+Outer membrane lipoprotein carrier protein	0.000182907	0.000731785
+MULTISPECIES	6.02412e-06	2.9203e-05
+tRNA  ) methyltransferase	0.015533	0.00301
+molybdenum cofactor biosynthesis protein	6.58279e-06	1.33854e-06
+Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.000426022	7.32938e-05
+hypothetical protein, partial	5.48559e-06	6.19526e-06
+Putative ribose galactose methyl galactoside import ATP binding protein 1	1.11083e-05	9.79495e-06
+Type I restriction modification DNA specificity domain protein	0.000997009	8.62487e-05
+Lipoprotein signal peptidase	7.31574e-06	1.63569e-05
+UPF0060 membrane protein SAB2216c	0.00271924	0.00101232
+Glutathione regulated potassium efflux system ancillary protein KefG	0.00613794	0.000490628
+MULTISPECIES	3.20388e-05	0.000779051
+Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial  (Fragment)	2.05065e-05	2.56315e-05
+Multi sensor hybrid histidine kinase	0.000308102	0.000297439
+Multi sensor signal transduction histidine kinase	5.75297e-05	0.000987504
+ATP dependent helicase Lhr and Lhr like helicase	0.0128107	0.0024009
+Transcriptional regulator, BadM Rrf2 family	1.68237e-05	1.27248e-05
+hypothetical protein	9.69698e-06	1.03409e-05
+MULTISPECIES	5.23424e-05	1.13369e-05
+Inner membrane protein YbhL	0.00194871	0.00141236
+50S ribosomal protein L16	0.0184062	0.00690192
+UniRef50_S3XCS7	4.90627e-06	3.82775e-05
+Adenylosuccinate lyase	2.45305e-06	4.86265e-06
+UniRef50_K0RMT8	2.12934e-05	2.20547e-05
+UniRef50_C7ZXZ9	0.0130436	0.000898842
+hypothetical protein	4.24321e-05	4.78009e-05
+D alanine  D alanine ligase	0.0163817	0.00268454
+Phosphoribosylformylglycinamidine synthase related protein 	0.00224747	0.000221596
+Alcohol dehydrogenase YqhD	0.00146832	0.00167691
+UniRef50_Q4JIU1	9.88131e-05	6.44504e-06
+Glyoxylate reductase	0.00965458	0.000450111
+Polysaccharide biosynthesis protein WbpM	0.000659999	9.24471e-05
+Nitronate monooxygenase	0.000340689	0.000137707
+PREDICTED	9.50496e-06	2.98277e-06
+putative NRPS	7.91816e-06	8.66344e-05
+Glutaredoxin 2	0.0024222	0.000375669
+HDIG domain HD domain protein	0.000533009	0.00225408
+Thioesterase superfamily protein	0.000673853	0.000168487
+High affinity branched chain amino acid transport system permease protein	0.00548414	0.00126675
+Iron dependent repressor	0.0207429	0.00389542
+hypothetical protein	5.37252e-06	3.49773e-05
+C4 dicarboxylate ABC transporter	3.42745e-06	5.11687e-06
+Prolipoprotein diacylglyceryl transferase 2	0.000825364	0.000832307
+hypothetical protein	1.31421e-05	1.08509e-05
+hypothetical protein, partial	2.62277e-06	8.52075e-06
+Putrescine aminotransferase	0.00024275	7.84833e-05
+Glutathione S transferase domain protein	0.00235778	0.000432985
+UniRef50_P0AAS6	0.00268785	0.000390223
+UPF0042 nucleotide binding protein Pden_2850	0.00624866	0.000402663
+TVP38 TMEM64 family inner membrane protein YdjZ	0.00138702	0.000258746
+hypothetical protein	0.000211416	2.07528e-05
+Cryptic beta glucoside bgl operon antiterminator	0.000851255	0.000203133
+UniRef50_V4JK35	0.00175651	8.81108e-05
+peptide ABC transporter ATP binding protein	7.74974e-06	1.74077e-05
+Orn Lys Arg decarboxylase family protein	0.0180892	0.00297929
+UniRef50_J7GCQ9	0.00228643	0.000485128
+SAM dependent methyltransferase	0.00023104	0.00298057
+Rhamnulokinase	0.000250521	0.000833225
+Sugar phosphate permease	0.0212273	0.00246467
+UniRef50_U5T5B4	0.000770686	0.00150301
+UniRef50_L5TAD4	8.90169e-05	0.000271542
+Phage protein	0.000933891	0.000316993
+Glutamate ammonia ligase adenylyltransferase	0.00112837	6.78026e-05
+UniRef50_D5AQD8	6.04517e-05	1.12032e-05
+UniRef50_K1YSK2	5.45983e-05	5.62973e-05
+GGDEF domain EAL domain protein	0.000697657	0.000224427
+Protein translocase subunit SecD	0.000573337	0.00134424
+uridine cytidine kinase	1.05848e-05	1.95242e-05
+hypothetical protein	3.45294e-05	0.000109765
+hypothetical protein	0.000140798	3.08198e-05
+Phosphate ABC transporter, periplasmic phosphate binding protein PstS	4.81896e-06	4.27649e-06
+Protein FdhD homolog	0.0148431	0.00148384
+AMP dependent synthetase and ligase	0.000814305	0.000122882
+hypothetical protein	5.38688e-06	1.6669e-05
+UniRef50_S9SK01	1.44007e-05	1.28429e-05
+Uronate isomerase	9.18492e-06	1.12774e-05
+Aspartyl glutamyl tRNA amidotransferase subunit C	0.00111433	0.000375669
+Argininosuccinate lyase	4.24015e-05	6.0813e-06
+PREDICTED	4.25314e-06	5.83208e-06
+hypothetical protein	0.000286846	6.87295e-05
+UniRef50_Q6FEF0	0.000201125	0.00321253
+Protein UshA	0.00137651	0.000115109
+hypothetical protein	2.56865e-05	3.37521e-05
+Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.0133545	0.00160093
+UniRef50_Q6FEF8	7.01143e-05	0.00293687
+UniRef50_M1MKU0	0.000457582	0.000475567
+UniRef50_D5AT19	4.1318e-06	2.40161e-06
+RNA pseudouridine synthase family protein	1.55418e-05	4.62072e-05
+hypothetical protein	2.47755e-05	5.84047e-06
+Thiamine pyrophosphate protein domain protein TPP binding	6.12278e-05	0.000522102
+UniRef50_W5LSB3	3.3453e-05	4.74018e-05
+hypothetical protein	3.38941e-05	3.77937e-05
+UniRef50_A3W953	0.000169471	6.20919e-05
+Thioesterase superfamily protein	8.61846e-06	0.000306358
+Autoinducer binding domain protein	0.00400282	0.000803371
+Urease subunit gamma beta	0.000184968	0.0130312
+Lysophospholipase	1.72804e-05	7.80233e-05
+D alanyl D alanine carboxypeptidase	7.0753e-06	6.29445e-06
+Allantoinase	8.90363e-06	7.05653e-06
+Isopentenyl diphosphate Delta isomerase	0.000805568	0.000593403
+Cell wall binding repeat containing protein	0.000325867	0.000708499
+UniRef50_W6M800	1.64494e-05	1.7961e-05
+TDP glucose 4,6 dehydratase related protein	0.000392294	0.0157965
+Mannose 1 phosphate guanylyltransferase 2	1.90457e-05	5.58465e-06
+Lipid A phosphoethanolamine transferase, associated with polymyxin resistance	0.000273252	0.0027819
+Beta hydroxyacyl ACP dehydratase	9.69486e-06	1.63827e-05
+UPF0271 protein RSp0936	0.00111558	0.00423298
+hypothetical protein, partial	1.1299e-05	1.61265e-05
+GntR family transcriptional regulator	0.0017016	0.000258002
+Replication protein C	0.000164618	1.58816e-05
+UniRef50_S2ZMR6	9.17107e-06	1.52787e-05
+Altronate dehydratase	0.00279406	0.00324638
+ABC transporter ATP binding protein	1.07836e-05	4.81261e-05
+hypothetical protein	2.26227e-05	1.46331e-05
+UniRef50_A0A035VXH8	0.000862652	0.000100697
+ABC transporter ATP binding protein	1.85842e-06	2.56394e-06
+hypothetical protein	0.000621598	0.000127354
+hypothetical protein	1.76358e-05	3.98525e-05
+L threonine 3 dehydrogenase	6.41266e-06	2.64018e-05
+UniRef50_P70971	1.96363e-05	3.19313e-05
+Plus agglutinin	3.28457e-06	1.47818e-05
+Pyrazinamidase   nicotinamidase	0.00119287	0.000684743
+UniRef50_B7V5U6	0.000230944	0.000216374
+Insoluble matrix protein	1.28155e-05	1.51404e-05
+UniRef50_Q8CT01	0.00804668	0.00211516
+Inner membrane amino acid ABC transporter permease yhdY	0.000137742	0.000118294
+UniRef50_G7ZNW2	0.0137353	0.00240731
+UniRef50_Q28RH4	0.000405556	0.000900607
+Predicted transcriptional regulator	0.000132105	1.14195e-05
+Thiol	0.00156562	0.00228453
+SKN1 domain containing protein	1.27632e-06	5.11782e-06
+Malate dehydrogenase	2.57015e-05	3.88441e-06
+hypothetical protein	3.8714e-05	6.08631e-06
+Signal transduction histidine protein kinase BaeS	0.00253124	0.000560923
+UniRef50_N4UTL9	0.000466869	0.000115417
+epimerase	0.000122738	1.5496e-05
+Coenzyme F390 synthetase FtsA	1.78827e-05	0.000175612
+Bile acid	0.00709282	0.00170165
+Chromosome partitioning protein ParA	4.95166e-06	3.89639e-06
+Carbamoyl phosphate synthase small chain	0.000268463	0.0279099
+Inner membrane transport permease YadH	0.00218309	0.000624727
+Peptidoglycan synthase FtsI	0.00233403	0.000287348
+UniRef50_Q931T2	0.0109039	0.00128887
+hypothetical protein	4.43552e-06	7.95918e-06
+Succinyl CoA ligase [ADP forming] subunit beta	0.00132354	0.000307233
+CTP synthase	2.62744e-06	2.07741e-06
+Nitrite extrusion protein 1	5.86909e-05	1.99762e-05
+von Willebrand factor type A	0.00012829	0.0309492
+Holin like protein CidB	0.0231348	0.00403727
+Transcriptional regulator, MerR family	0.00177131	0.0193286
+Type III R M system restriction enzyme	0.000152238	0.00240923
+UniRef50_N1M5F6	0.000131365	0.000134974
+UniRef50_U3SRF9	0.000593909	0.000847027
+UniRef50_X3EWC3	1.18102e-05	3.21101e-06
+Short chain dehydrogenase reductase SDR	0.00782715	0.000441974
+UniRef50_Q1NBV4	0.000988475	2.2005e-05
+Energy coupling factor transporter transmembrane protein EcfT	0.00502864	0.0022919
+Sugar binding domain protein	9.94725e-05	0.00246455
+hypothetical protein	2.66029e-06	1.86947e-05
+hypothetical protein	2.58438e-05	5.25038e-06
+Type A flavoprotein FprA	0.00621777	0.000652592
+Phage infection protein	2.40763e-06	9.54107e-07
+Proteasome subunit beta	0.000314531	0.00122304
+UniRef50_U5VGF8	0.000127481	0.000294688
+LL diaminopimelate aminotransferase	0.00374531	0.00247091
+Phosphate import ATP binding protein PstB	1.23729e-05	0.000168556
+UniRef50_Q2G260	0.00997883	0.0015734
+Translation initiation inhibitor	9.06646e-05	8.39379e-05
+Permease large protein, C4 dicarboxylate transport system	3.93407e-05	8.14006e-06
+Protein  methyltransferase, release factor specific	0.000236282	0.000528076
+Spermidine putrescine binding periplasmic protein	0.00266741	0.00011892
+UniRef50_G6CLR5	1.20572e-05	2.23878e-05
+UniRef50_D8U8L9	2.28961e-05	3.96516e-05
+AraC like ligand binding domain protein	0.00025047	0.00283738
+hypothetical protein	2.35737e-05	2.71124e-06
+Type I restriction enzyme EcoprrI M protein	0.00436624	0.00293665
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0177073	0.0023995
+Tellurite resistance protein TehB	0.00326563	0.000678184
+amino acid permease	2.19416e-05	2.6778e-05
+hypothetical protein	4.5526e-05	1.85716e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0050354	0.000498403
+Methyltransferase domain protein	0.00253153	0.00121328
+Marine sediment metagenome DNA, contig	9.37934e-05	0.000124969
+Transcriptional regulator, PadR family	7.72888e-05	1.19114e-05
+Ribonucleoside diphosphate reductase 2 alpha chain	3.39993e-05	0.00305525
+damage inducible protein CinA	1.77662e-05	4.13812e-06
+Aliphatic sulfonates import ATP binding protein SsuB	0.00347406	0.000899284
+Fructose 1,6 bisphosphatase class 3	0.00015881	5.23527e-05
+multidrug transporter	3.08273e-05	2.9228e-06
+Argininosuccinate lyase	0.0109353	0.00271948
+NADH quinone oxidoreductase subunit H 1	0.00207865	0.000406226
+Expressed protein 	1.59455e-05	8.10558e-05
+Maltose phosphorylase	0.000421206	0.00385582
+UniRef50_M7TQJ9	2.57886e-06	5.09618e-07
+thioredoxin	1.80467e-05	1.38914e-05
+hypothetical protein, partial	0.00043627	2.44979e-05
+hypothetical protein, partial	0.000424282	0.000164978
+hypothetical protein	6.56485e-06	1.08386e-05
+Anthranilate synthase component I	0.00153393	0.000497256
+Acyl CoA synthetase	0.000296704	0.000185723
+UniRef50_J8HFC8	0.000438119	3.27305e-05
+UniRef50_U7JJA9	1.3821e-05	3.33356e-05
+hypothetical protein	5.64224e-06	2.00835e-06
+DNA ligase	0.0196839	0.00330629
+UniRef50_F0KGW3	0.0028847	0.00198458
+Phosphoheptose isomerase	2.13702e-05	1.19125e-05
+ATP synthase subunit beta, mitochondrial	0.000252872	0.00286232
+2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase	9.90307e-06	1.57245e-05
+Cell division protein ZapD	0.00177503	0.00199412
+UniRef50_R6FIZ1	0.000233714	0.00175038
+hypothetical protein SMAC_10790, partial	5.1633e-05	1.54807e-05
+UniRef50_E2NSK7	1.29008e-05	0.000271436
+UniRef50_A6F174	0.000443215	4.83613e-06
+Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic	8.23379e-05	0.00341365
+UniRef50_L0BJA1	0.000233217	0.000669295
+ABC type multidrug transport system protein	0.000452038	0.000249591
+3 oxoacyl ACP synthase, partial	1.66679e-05	2.95589e-05
+Putative transport domain protein	0.00096801	0.000306433
+hypothetical protein	2.08319e-05	5.99284e-06
+UniRef50_E8SES7	0.0191329	0.00481915
+Glutamate synthase 	0.000297499	0.000375055
+possible HAD superfamily hydrolase	1.16272e-05	7.6589e-05
+UniRef50_E3EXE9	1.49115e-05	3.72035e-06
+hypothetical protein	3.4423e-05	2.76354e-05
+Heptaprenyl diphosphate synthase component 2	3.4374e-05	2.14392e-05
+UniRef50_U5WDI7	0.00010398	5.74658e-06
+UniRef50_A1B739	3.5608e-06	3.02119e-06
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.00074538	0.000168769
+UniRef50_I4E1N1	0.00323426	0.00171134
+Protein transport protein HofC homolog	0.00197457	0.000411479
+putative redox regulated molecular chaperone heat shock like  protein	1.47293e-05	7.27619e-06
+Putative replication protein A	0.0319838	0.00269187
+hypothetical protein	2.18591e-05	1.28744e-05
+AMP dependent synthetase and ligase	0.000250572	0.000147481
+Acyl CoA thioesterase 2	0.000433486	0.00385717
+UniRef50_Q9I692	6.89649e-05	0.000150682
+UniRef50_G2I8Q0	3.76217e-05	1.43412e-05
+hypothetical protein	0.000241764	8.33917e-05
+HTH type transcriptional regulator MalR	0.000163373	0.000861884
+Protein InaA	0.00293312	0.00177868
+hypothetical protein	1.73248e-05	7.25902e-05
+Putative Pre  type recombination enzyme	0.00158755	0.000333757
+UDP glucose pyrophosphorylase	0.0025289	0.000216349
+FAD dependent oxidoreductase	1.88262e-05	6.30352e-06
+hypothetical protein	2.9007e-06	8.05254e-05
+Geranylgeranylglyceryl phosphate synthase	0.0010629	0.000611911
+Phosphoadenosine phosphosulfate reductase	3.44279e-05	1.05432e-05
+ATP synthase subunit alpha	0.021422	0.00776768
+PREDICTED	4.0247e-05	2.24055e-05
+Transcriptional regulator, LuxR family protein	9.26337e-05	7.49325e-05
+Signal recognition particle protein	0.00380003	0.00551998
+Acetate kinase	0.00155307	0.000201006
+3 phosphoshikimate 1 carboxyvinyltransferase	5.97237e-06	2.7422e-06
+hypothetical protein	1.05634e-05	9.99723e-05
+Urease subunit beta	7.4287e-05	2.08093e-05
+GMP synthase, partial	1.58557e-05	1.63092e-05
+UniRef50_G8AZ63	9.07989e-05	8.07013e-05
+ATP dependent DNA helicase PcrA	1.67039e-05	5.03317e-06
+UniRef50_A7ZV50	3.66852e-05	4.57816e-05
+Serine type site specific recombinase	4.76592e-06	6.19171e-05
+Thioredoxin reductase	0.0260812	0.00735636
+Carbohydrate binding CenC domain protein	4.96794e-07	5.46525e-06
+transcription elongation factor GreA	1.63283e-05	1.54489e-05
+Valine  tRNA ligase	0.00104615	0.000404022
+UniRef50_A0A017SM38	1.75991e-05	3.19094e-05
+Saccharopine dehydrogenase	0.000451376	0.0278733
+hypothetical protein	7.98221e-05	4.41155e-05
+Penicillin binding protein 1A	0.000704803	0.000152434
+Protein DamX	0.00321928	0.000638233
+4 hydroxythreonine 4 phosphate dehydrogenase	2.98885e-05	3.32904e-05
+hypothetical protein	5.06045e-06	1.42745e-06
+ATP dependent Clp protease proteolytic subunit 2, mitochondrial	5.53787e-06	3.26404e-05
+UniRef50_Q49YA8	0.0106795	0.00200246
+UniRef50_F8K305	7.7116e-06	0.000123524
+Anaerobic dimethyl sulfoxide reductase chain A	6.1752e-05	0.000160926
+NADH	0.000166198	0.00416669
+type VI secretion protein	5.46621e-06	4.36286e-06
+hypothetical protein	4.08892e-06	7.9524e-06
+Formate dehydrogenase subunit alpha	0.00251372	0.000562309
+UniRef50_D2U3Z3	1.76852e-05	4.34779e-05
+UniRef50_U5NMC4	0.0276425	0.00217737
+UniRef50_A0A020LY90	3.5915e-05	0.000135773
+50S ribosomal protein L5	0.000834063	0.000176049
+Glycine  tRNA ligase	6.74446e-05	0.0211131
+UniRef50_F0J7L0	0.00013731	3.63435e-05
+Transketolase	0.00672146	0.00520867
+UniRef50_M5FH04	3.74687e-05	3.56863e-06
+UniRef50_D7AH61	3.75764e-05	9.98967e-06
+Inner membrane protein YjdF	0.00293379	0.000481703
+NADH quinone oxidoreductase subunit I	0.000483041	5.11513e-05
+UniRef50_I6S3Y4	0.000372387	4.7613e-05
+UniRef50_F5LY46	0.00654051	0.000172002
+Putative pyruvate, phosphate dikinase regulatory protein	0.000154854	0.0011872
+Lipoprotein	3.36743e-05	9.19055e-05
+phenylacetate CoA ligase	8.41425e-06	7.43644e-05
+Putative glutamate  cysteine ligase 2	0.00448471	0.000229475
+Integral membrane protein	0.0158928	0.00194049
+50S ribosomal protein L5	0.000120474	5.35203e-05
+Sensor histidine kinase DpiB	0.00347898	0.000890573
+Autolysin	4.50263e-06	0.000300554
+Alanine  tRNA ligase	0.00999499	0.000974331
+UPF0340 protein BH3766	0.025399	0.00319261
+Urease subunit beta	7.7864e-05	1.60203e-05
+hypothetical protein DR_0251	0.000253734	0.00194284
+UniRef50_F0F251	2.13143e-05	1.56676e-05
+UniRef50_H7CPK2	0.0169426	0.00407629
+UniRef50_V8RAR8	0.0143963	0.00357636
+UniRef50_H9KEV5	3.53714e-06	3.12354e-06
+Isoleucine  tRNA ligase	1.07293e-06	1.46075e-06
+aldehyde activating protein	9.45766e-05	0.000208977
+Ferredoxin like protein FixX	0.00175363	6.97629e-05
+Long chain fatty acid transport protein	0.00269009	0.000246961
+Serine threonine protein kinase	0.000311624	0.0160567
+Universal stress protein E	0.00224277	0.00104651
+UniRef50_T2S877	0.000123767	4.69054e-05
+Complete genome; segment 8 17	0.000392858	0.00436738
+Nucleoside diphosphate kinase	0.0190626	0.000531163
+PREDICTED	5.09237e-05	3.32619e-05
+hypothetical protein	0.000107027	0.000208282
+UniRef50_M1XGX9	8.98586e-05	7.1018e-05
+Cysteine desulfurase	0.00042024	0.000307392
+hypothetical protein, partial	5.79392e-06	0.00011116
+DNA gyrase subunit B	1.11163e-05	2.13692e-05
+Mobilization protein	0.0052608	0.000540873
+Putative sensor histidine protein kinase	0.0169003	0.00209882
+AsmA family protein	2.26935e-05	1.41722e-05
+Ribosomal protein L11 methyltransferase	5.86951e-06	1.09179e-05
+Methyltransferase type 11	0.000254159	0.000427608
+PREDICTED	4.65451e-06	1.23443e-05
+patatin	1.88227e-05	1.38321e-05
+oxidoreductase	1.15805e-05	1.39546e-05
+Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000209778	0.00194201
+PREDICTED	3.69002e-05	0.000237685
+Porin thermoregulatory protein EnvY	2.0669e-05	2.98163e-05
+Recombination associated protein RdgC	0.00170591	0.000235648
+hypothetical protein	7.00551e-06	5.12256e-06
+peptide ABC transporter permease	9.28061e-06	5.24529e-05
+FKBP type 22 kDa peptidyl prolyl cis trans isomerase	0.00376994	0.00108933
+hypothetical protein	1.21684e-05	1.49631e-05
+UniRef50_C4JA46	9.41291e-06	0.000477697
+Inner membrane protein YabI	0.00412648	0.000471312
+Phosphoenolpyruvate protein phosphotransferase	0.00276348	0.00026546
+Putative Endonuclease	0.0158161	0.00220246
+Phosphoribosyl AMP cyclohydrolase	1.18603e-05	3.15854e-05
+Riboflavin biosynthesis protein RibBA	8.99344e-06	3.97838e-06
+Predicted protein	2.53412e-06	2.13045e-06
+Dihydroxy acid dehydratase	0.0248224	0.00505485
+YhgE Pip domain protein	1.22276e-06	9.85242e-07
+UniRef50_Q5XA33	0.00800479	0.00371717
+Chemotaxis protein Che	0.000104735	0.0019923
+Lysophospholipase	0.000225273	0.000310433
+UniRef50_A6M2R6	4.12249e-05	0.000341878
+hypothetical protein	6.80195e-06	0.000188963
+DNA replication and repair protein RecF	0.000980239	0.00860522
+Isoleucine  tRNA ligase	3.39948e-05	2.88662e-06
+hypothetical protein	3.4079e-05	5.24048e-06
+RNA polymerase sigma factor, sigma 70 family	0.0078245	0.00021276
+Protein TolB	8.09011e-05	0.00109718
+Transporter	2.17378e-05	2.01792e-05
+hypothetical protein	1.81945e-05	2.9116e-05
+Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 	0.00013984	0.000394007
+UniRef50_J0HGY2	0.000543952	7.72481e-05
+UniRef50_D2SC05	2.16934e-05	3.33747e-05
+UniRef50_T0T191	1.3282e-05	1.17903e-05
+Putative 3 methyladenine DNA glycosylase	4.03311e-05	6.85113e-06
+Endo beta N acetylglucosaminidase H	0.000481554	0.00169353
+UniRef50_V6EZI7	2.4969e-05	1.11064e-05
+Ornithine aminotransferase 1	4.59244e-06	7.17084e-06
+Phenylalanine  tRNA ligase alpha subunit	0.00192367	0.000707125
+Oxygen independent coproporphyrinogen III oxidase like protein LL1139	0.00620563	0.00416233
+hypothetical protein	9.1914e-05	9.05382e-06
+Amidase, hydantoinase carbamoylase	0.000630506	0.00014366
+Piso0_001875 protein	3.7851e-06	6.11073e-05
+6 pyruvoyl tetrahydropterin synthase	4.65523e-05	0.000210309
+ citramalate synthase CimA	8.31406e-06	2.83327e-06
+NADH quinone oxidoreductase subunit L	0.000455646	7.80437e-05
+Isoform b of Enolase	9.57207e-06	2.96207e-05
+DoxX family protein	0.000270131	0.000247035
+UniRef50_E0Y1Z2	0.00564916	0.000258746
+Transposase IS4 family protein	6.10151e-05	1.29418e-05
+Nucleoside diphosphate kinase	1.51183e-05	5.53825e-05
+UniRef50_L1JUV8	5.62677e-05	1.92924e-05
+UniRef50_U2YT78	0.000179863	0.000144095
+Predicted protein	0.000381075	3.07346e-06
+Sodium	6.60763e-05	5.84537e-05
+Acyl CoA dehydrogenase like protein	9.07955e-05	0.0132623
+NADH quinone oxidoreductase subunit J	4.83431e-05	6.88797e-05
+arginine ABC transporter ATP binding protein	2.15106e-05	1.36947e-05
+ABC transporter related	0.00361236	0.000315876
+Respiratory nitrate reductase alpha chain	3.97682e-05	2.25082e-05
+Probable dual specificity RNA methyltransferase RlmN	0.000114213	0.0187551
+5 nucleotidase	1.43395e-05	4.37931e-06
+hypothetical protein	1.33206e-05	4.47039e-06
+UniRef50_C5N3B0	0.0197697	0.0041248
+ERI1 exoribonuclease 3	1.17365e-05	0.000101805
+Phosphodiesterase YaeI	0.00197764	0.00102843
+NADH	0.000604896	0.0109463
+Thymidylate synthase	9.49055e-05	1.272e-05
+PREDICTED	3.90838e-06	4.44989e-06
+HTH type transcriptional regulator	0.00673774	0.000238156
+Histidine ammonia lyase	5.3022e-06	6.86579e-06
+Cassette chromosome recombinase B	6.38739e-05	2.16791e-05
+Transketolase 2	0.00222863	0.00028975
+hypothetical protein	0.00011305	2.21888e-05
+Trigger factor	0.000287533	0.00340104
+hypothetical protein	3.97044e-06	4.14831e-06
+Peptidoglycan synthase FtsI	3.4859e-06	3.56427e-06
+MULTISPECIES	3.36756e-05	0.00217616
+excinuclease ABC subunit A	1.87091e-05	1.71157e-05
+Molybdopterin guanine dinucleotide biosynthesis protein A	2.71645e-05	0.00281803
+DEAD DEAH box helicase domain protein	0.000180187	0.00440459
+hypothetical protein	0.000818822	9.1599e-05
+UniRef50_F7WRG0	2.24487e-05	1.47218e-06
+Thioredoxin reductase 	2.91624e-05	9.12303e-06
+Lipoprotein releasing system ATP binding protein LolD	6.82108e-05	2.81518e-05
+GABA permease	1.72347e-05	1.48099e-05
+UniRef50_K0HE29	8.85654e-05	0.00409672
+Flagellar hook capping protein	7.96921e-06	6.24459e-06
+Maltose Maltotriose maltodextrin ABC transporter, MalX subunit	6.91854e-06	0.000174567
+Cystathionine gamma lyase	0.0103362	0.000891678
+UniRef50_Q32FA3	0.000228945	0.000441198
+UniRef50_Q9RVF4	0.000291895	0.00498652
+HMGL like family protein	0.00866901	0.00168608
+UniRef50_A6LQC0	0.0091786	0.000802318
+Thymidine kinase	1.37771e-05	1.6968e-05
+Homocitrate synthase subunit alpha	0.00033836	0.000293128
+Accessory gene regulator protein B	0.00638933	0.000156148
+hypothetical protein	6.76014e-05	4.21882e-05
+NADH dehydrogenase (quinone)	0.000679231	0.00421125
+3 mercaptopyruvate sulfurtransferase	3.5479e-05	6.53605e-06
+bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase, partial	7.02397e-06	1.24225e-05
+UniRef50_W0YLC7	0.000345486	0.000102969
+Single stranded DNA specific exonuclease	0.00045249	0.00153824
+UPF0265 protein YeeX	0.000306883	5.20268e-05
+WbhQ	0.000895831	0.000580282
+Lipoprotein	0.000121061	0.000950386
+Polysaccharide biosynthesis protein, MviN like family	0.00584359	0.0007829
+PTS dependent dihydroxyacetone kinase operon regulatory protein	0.00343342	0.000331299
+UniRef50_M9TX56	0.000156252	7.21676e-06
+Protein mrp homolog	0.000380236	0.000865296
+Signal peptidase I	0.00339005	0.000181384
+Adenylosuccinate synthetase	1.07784e-05	6.54337e-06
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.89082e-05	8.79326e-06
+UniRef50_V6K8C7	8.33398e-05	2.84621e-05
+NADH	0.00182249	0.0020175
+PREDICTED	6.36077e-05	5.06695e-05
+UniRef50_T1DQZ2	0.000168525	5.65789e-05
+23S rRNA  N(1)) methyltransferase	0.00247338	0.000753262
+LPS biosynthesis protein WbpG	0.00153439	7.97379e-05
+Pyruvate, phosphate dikinase	5.21322e-06	7.23233e-06
+heme peroxidase	6.59562e-06	8.65834e-07
+Tetraacyldisaccharide 4 kinase	0.000924732	0.00367432
+dipeptide transport system permease, partial	8.97285e-06	8.33694e-06
+ATP dependent Clp protease ATP binding subunit ClpX	6.55711e-06	1.05694e-05
+L threonine 3 dehydrogenase	4.86232e-05	2.2339e-05
+Choline dehydrogenase lipoprotein	0.00385014	0.000627251
+tRNA delta isopentenylpyrophosphate transferase	9.34686e-06	8.03547e-06
+UniRef50_Q8DW27	0.00409017	0.000608737
+Penicillin binding protein 1A	0.000102967	0.00153291
+ATP synthase subunit beta, mitochondrial 	2.17679e-05	1.18876e-05
+4 alpha glucanotransferase	1.0301e-05	0.00032098
+U6 snRNA associated Sm like protein LSm6	5.94264e-06	3.60621e-06
+UniRef50_A0B2R8	1.37481e-05	0.000490819
+UniRef50_R7WKM5	8.50972e-05	2.24102e-05
+UniRef50_V8G079	0.000173448	0.000602264
+Bacterial regulatory s, gntR family protein	0.000152745	0.00085169
+Leucyl phenylalanyl tRNA  protein transferase	8.25123e-06	2.92337e-05
+NADPH dependent oxidoreductase	0.0282054	0.00271039
+Thymidylate synthase	0.00193322	0.00156114
+transcriptional regulator	3.89066e-05	7.34316e-05
+UniRef50_Q9RZ67	0.00145296	0.023107
+SSU ribosomal protein S1P	4.21745e-05	0.000144405
+Peptidase M56 BlaR1	5.99552e-05	0.000484857
+thioredoxin reductase	1.39667e-05	4.02069e-06
+Polysaccharide deacetylase family protein	0.000132674	0.000400853
+HrgA like protein	0.000333689	0.00171702
+hypothetical protein	2.07691e-05	3.75904e-06
+Glucose 6 phosphate 1 dehydrogenase	0.00261637	0.000406266
+fasciclin	4.86455e-05	8.61308e-06
+Phosphoribosylaminoimidazole carboxylase	2.39585e-05	1.2307e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	1.90711e-05	1.68797e-05
+argininosuccinate lyase	3.90947e-05	1.2955e-05
+Auxin binding protein, putative	0.000176652	4.17366e-05
+YjbE family integral membrane protein	9.42355e-06	7.3234e-06
+UniRef50_A4FE07	9.8258e-05	0.000123671
+Predicted protein	5.20264e-05	4.09844e-05
+UniRef50_I1QZW6	2.07148e-05	1.61207e-05
+Regulatory protein, PpaA	0.00255644	0.00011706
+hypothetical protein	2.20445e-05	3.28088e-05
+Lysine  tRNA ligase	2.41526e-06	1.55101e-06
+Marine sediment metagenome DNA, contig	4.8641e-06	2.70838e-05
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.3314e-05	8.01828e-06
+DNA polymerase II small subunit	0.00220649	0.000126861
+Flagellar protein FlgJ	0.000140303	4.4452e-05
+Benzoate 1,2 dioxygenase electron transfer component	0.00020947	0.00363484
+UniRef50_E0TD47	0.000144462	1.21873e-05
+Ser Thr protein phosphatase family protein	0.000197196	0.000394457
+Aspartate aminotransferase	8.54907e-05	0.00038612
+UniRef50_A1B2A8	0.000438138	1.70931e-05
+hypothetical protein	0.000122773	2.07946e-05
+hypothetical protein	8.31452e-05	9.15539e-06
+UGMP family protein	4.41974e-06	4.39259e-06
+UniRef50_W7W844	0.000224094	0.000111068
+hypothetical protein, partial	4.51792e-05	4.83313e-06
+Tetratricopeptide TPR_2 repeat protein	0.000348194	0.000175511
+Lipoprotein	1.72681e-05	1.10083e-05
+integrase	0.0017373	0.0004413
+Winged helix turn helix	6.43851e-05	0.000649853
+Succinyl CoA ligase [ADP forming] subunit beta	0.00179682	0.00133374
+Prephenate dehydrogenase	0.00339939	0.00211068
+hypothetical protein	2.83795e-05	8.1733e-06
+hypothetical protein	9.75763e-06	0.000187141
+Glutamate binding periplasmic protein	0.000240333	4.01364e-05
+Isopentenyl diphosphate Delta isomerase 2	4.59342e-05	4.88386e-06
+Ribosomal large subunit pseudouridine synthase F	0.00225077	0.000117519
+Copper resistance protein A	0.000467389	0.0044779
+hypothetical protein	1.29952e-05	2.80346e-06
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	6.67647e-06	5.40093e-06
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	8.76599e-06	2.03087e-06
+hypothetical protein	0.000146066	3.82605e-05
+PRPP binding protein, adenine guanine phosphoribosyltransferase	0.00123128	0.00957492
+UniRef50_G0D380	5.14224e-05	6.6066e-06
+Probable D,D dipeptide transport ATP binding protein DdpD	0.00174848	0.000856805
+LexA repressor	0.00140258	0.000668284
+PREDICTED	2.44933e-05	7.40073e-06
+SNARE associated Golgi family protein	0.00102115	0.0189786
+hypothetical protein	0.000342258	0.000270374
+Phosphate starvation inducible protein family	0.000113316	0.00221973
+hypothetical protein	1.30875e-05	2.10342e-05
+Membrane spanning protein	0.000158004	0.000713646
+UDP N acetylglucosamine pyrophosphorylase	8.99176e-06	6.898e-06
+tRNA pseudouridine synthase B	0.0138245	0.00139811
+Translation initiation factor IF 2	7.59541e-06	6.12738e-06
+Ribonuclease P protein component 4	0.000278139	0.000761338
+amino acid	0.000114241	6.01572e-05
+hypothetical protein	2.6316e-06	4.94612e-06
+Ferric anguibactin binding protein	0.000270877	0.00298994
+Nitrogen regulation protein NtrB	1.45304e-05	1.18906e-05
+Isocitrate dehydrogenase kinase phosphatase	0.00088495	0.000167508
+Dihydroorotate dehydrogenase 	8.44612e-06	8.30731e-06
+UniRef50_B9J9J5	0.00408638	0.00159966
+UniRef50_G7M6P0	0.000255871	0.000809653
+Thymidine kinase	1.79369e-05	0.000631075
+Protein export membrane protein SecF	0.00037757	0.00242768
+Homoserine dehydrogenase	0.00103353	0.000315431
+Glycoside hydrolase	0.000121906	0.000559994
+UniRef50_D0K2M7	0.0202043	0.000241357
+Putative colanic acid biosynthesis glycosyl transferase WcaI	0.00306026	0.000239555
+Structural constituent of cell wall	1.77276e-05	3.75743e-06
+Formate dehydrogenase subunit beta	0.0018761	0.000279172
+Marine sediment metagenome DNA, contig	5.81237e-05	5.35972e-05
+hypothetical protein	3.65194e-05	3.35748e-06
+UniRef50_S1SMM7	0.000131137	5.58275e-05
+UniRef50_B5YZ54	0.000731627	1.8351e-05
+Glutathione synthetase	4.1485e-06	4.26133e-06
+hypothetical protein	3.10797e-05	7.55739e-06
+UniRef50_A2D765	1.04946e-05	1.26654e-05
+UniRef50_G3VCD6	2.94149e-05	1.65911e-05
+Integrase recombinase, phage associated protein	0.000532838	0.000181414
+Energy coupling factor transporter ATP binding protein EcfA2	0.00659343	0.000456861
+UniRef50_K0YRV5	6.45592e-06	2.25362e-05
+Chlorophyllide reductase subunit Z	0.00863836	0.00171144
+glycoside hydrolase family 3 domain containing protein	3.8512e-06	1.01423e-05
+Glycoside hydrolase family 25	0.00363043	0.00027168
+Major facilitator superfamily MFS_1	0.000465591	6.59698e-05
+Bifunctional protein PyrR	0.0103951	0.00158074
+5 hydroxymethyluracil DNA glycosylase	6.10724e-06	5.15742e-05
+Transcription elongation factor GreA	0.00346997	0.00180335
+UniRef50_X7FDX5	0.000135426	3.81041e-05
+Peptide methionine sulfoxide reductase MsrB	2.41081e-05	4.93025e-05
+UniRef50_P0A0Q1	0.00850378	0.00232493
+UniRef50_B0V512	0.0001585	0.00214894
+Formate dehydrogenase alpha subunit FdhA	0.00339195	0.000823196
+UniRef50_F0YC19	4.2349e-05	2.95626e-05
+hypothetical protein	6.07215e-06	0.000196257
+TPR repeats containing protein	1.53847e-05	1.25914e-05
+UniRef50_A0A024HEL1	0.00114493	0.000182206
+30S ribosomal protein S17	0.0177799	0.00924256
+flagellar motor protein MotA	3.42976e-05	5.49486e-05
+5 methylcytosine specific restriction enzyme B	0.00268616	0.000217565
+UniRef50_K2JGI2	3.56769e-05	5.79482e-06
+phytoene dehydrogenase	9.62768e-06	4.37525e-06
+2 dehydro 3 deoxy D gluconate 5 dehydrogenase	0.0038422	0.00118669
+UniRef50_M4R3K2	0.000261093	0.00325136
+UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase	0.00259026	4.07823e-05
+Putative membrane protein	7.61051e-05	4.45315e-05
+Ribonuclease VapC	0.00353892	0.00840453
+UniRef50_I1PF78	0.000135888	1.38468e-06
+hypothetical protein	0.00103224	0.000103348
+Alkanesulfonate monooxygenase	0.00144532	0.000395688
+Transcriptional regulator, LysR family	0.000107181	0.000113079
+Gifsy 1 prophage protein	0.0101833	0.00243415
+lysyl tRNA synthetase	6.23076e-06	4.60191e-06
+hypothetical protein	0.000107112	3.06868e-05
+tRNA dimethylallyltransferase	2.2932e-05	4.81083e-06
+Lysophospholipase L2	0.00262914	0.00108267
+Acyl CoA dehydrogenase domain containing protein 	0.000780573	0.000449334
+PTS mannose transporter subunit IID	9.13829e-06	2.02761e-05
+Fructose permease IIC component	0.00238062	0.000975897
+Flagellar biosynthetic protein FliR FlhB	0.000428988	0.000380149
+hypothetical protein	2.62684e-05	1.63519e-05
+Predicted protein	0.000143817	8.87876e-05
+hypothetical protein	8.80682e-05	1.03005e-05
+UniRef50_W6RN06	0.000297339	3.81592e-05
+acetylornithine aminotransferase	1.78286e-05	1.44197e-05
+UniRef50_B4RRC4	6.76706e-05	0.00153245
+Marine sediment metagenome DNA, contig	3.57858e-05	1.46918e-05
+UniRef50_P62087	0.0291795	0.000651176
+UniRef50_A8AZX9	0.00749175	0.00117728
+hypothetical protein	2.62566e-06	4.49435e-06
+hypothetical protein	6.58408e-06	2.40414e-06
+Lon protease	5.42211e-06	1.56627e-06
+D allulose 6 phosphate 3 epimerase	0.00289408	0.000220602
+Probable transglycosylase SceD 1	0.0279917	0.00408428
+UniRef50_U5MQS6	0.000181126	0.000145159
+Peptidase S8 and S53 subtilisin kexin sedolisin	0.00112675	0.00171283
+UniRef50_F3U1Z7	0.000668883	0.000115253
+Aminotransferase	0.00055171	0.000367759
+UniRef50_B1N6N5	0.000156809	5.05783e-05
+UniRef50_E3NW25	2.08322e-05	6.05307e-05
+diaminopimelate decarboxylase	3.65131e-06	9.76843e-06
+Transamidase GatB domain protein	0.0048571	0.000393793
+hypothetical protein	6.82235e-06	5.9433e-06
+hypothetical protein	1.0836e-05	6.52731e-06
+Major facilitator superfamily MFS_1	0.000299209	0.00357775
+ABC transporter ATP binding protein	0.00016197	9.85204e-05
+Fructoselysine kinase	0.00416069	0.000509072
+Peptide transport periplasmic protein SapA	0.00330657	0.000744801
+Purine catabolism regulatory protein family protein	2.93833e-06	0.000338583
+UniRef50_W8H188	0.0146869	0.00164753
+UniRef50_A0A024H2L6	0.000652769	0.00168804
+ADP ribosylglycohydrolase	0.00207559	0.000217418
+Aspartate  tRNA ligase	3.83922e-06	4.35336e-06
+Succinyl diaminopimelate desuccinylase	0.00324414	0.000443317
+FeS assembly ATPase SufC	2.56568e-05	8.1548e-05
+Sorbitol dehydrogenase	0.0022347	0.000452523
+PCQ3_28	3.7055e-05	2.73424e-05
+Pheromone autoinducer 2 transporter 	7.65925e-05	3.03637e-05
+hypothetical protein	6.33335e-05	3.41227e-06
+Peptide deformylase	2.15516e-05	1.13238e-05
+Predicted protein 	4.34147e-05	0.00026514
+hypothetical protein	0.00101662	0.000232603
+Protein phosphatase CheZ	0.000644979	0.000344003
+IS66 Orf2 family protein	0.00628758	0.000395639
+Peptide methionine sulfoxide reductase MsrB	1.39544e-05	3.13748e-05
+Lactate dehydrogenase and related dehydrogenases	0.000198359	0.0010958
+NADH	0.000405873	0.000244512
+enolase	0.000250359	0.000252222
+hypothetical protein	0.000391195	3.36209e-05
+Mll4564 protein	0.00603423	0.000571299
+Glucose inhibited division protein A	0.00153333	0.00122765
+Adenylosuccinate synthetase	1.72753e-05	7.50442e-06
+Short chain dehydrogenase reductase	0.000876011	0.00011394
+D alanyl D alanine carboxypeptidase, partial	2.10588e-05	5.30821e-05
+LctF	0.00518717	0.00042892
+UniRef50_S4P7C3	7.8917e-05	0.000156148
+hypothetical protein	1.46046e-05	1.63313e-05
+Cbb3 type cytochrome c oxidase subunit FixP	4.58608e-05	1.67773e-05
+hypothetical protein, partial	2.15091e-05	7.64071e-06
+amino acid permease	1.18701e-05	3.20307e-05
+UniRef50_L1K8T7	0.00337802	0.00114594
+UniRef50_Q9RUV1	0.000461025	0.0122663
+Cysteine  tRNA ligase	0.0118764	0.00185837
+IS150 orfB	1.91784e-05	1.92093e-05
+hypothetical protein	1.20206e-05	8.74605e-06
+PTS sorbitol transporter subunit IIB	0.00406191	0.000697535
+hypothetical protein	1.18273e-06	8.03312e-07
+PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK	0.00198361	0.000642253
+50S ribosomal protein L22	2.18176e-05	0.000245929
+UniRef50_M4RZJ4	0.00718521	0.00143531
+Putative outer membrane protein NMB0088	0.000162784	0.00217238
+UniRef50_E3GXS5	0.00185187	0.000233845
+L threonine dehydratase catabolic TdcB	0.00851473	0.00137504
+Glycoside hydrolase, family 3 domain protein	9.66225e-05	0.000622441
+L carnitine dehydrogenase	0.00904752	0.00180849
+ATP dependent zinc metalloprotease FtsH	0.000165938	0.000641429
+3 isopropylmalate dehydrogenase	4.22345e-05	2.53607e-06
+UniRef50_I1P669	0.00090297	0.000170728
+Serine threonine protein kinase StkP	0.00621252	0.00137031
+30S ribosomal protein S13	0.000442827	0.00029632
+Phosphoglycerate kinase, glycosomal	9.53161e-06	3.79002e-06
+Thymidylate synthase 1 2	2.60855e-05	0.000104182
+UniRef50_S5CQF3	0.000356223	0.0036234
+Outer membrane lipoprotein carrier protein	0.00180661	0.000186663
+Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase	0.00187685	0.000239413
+Serine  tRNA ligase	0.000457363	0.00621466
+Membrane protein	0.000169782	0.0043798
+UniRef50_Q8X4V6	0.00160235	0.000170906
+Lipid II flippase FtsW	0.00209812	0.000195526
+UPF0398 protein SERP1017	0.0238888	0.0020226
+UniRef50_A3PIJ2	0.0141811	0.00476451
+hypothetical protein	9.18198e-05	5.81261e-06
+UniRef50_R5IVN1	0.000673144	0.000610277
+ABC transporter permease protein YtlD	0.000630581	0.000656303
+Carnitinyl CoA dehydratase	0.00249604	0.000505527
+dihydropteroate synthase	8.18917e-06	4.69012e-06
+Bifunctional PGK TIM	2.4256e-05	3.0263e-05
+PTS system IIC component, Glc family   PTS system IIA component, Glc family   PTS system IIB component, Glc family	6.92962e-05	0.00295725
+hypothetical protein	3.32464e-05	2.22178e-05
+Amino acid ABC transporter, permease protein	0.00016912	0.000155069
+UniRef50_Q9HYZ2	0.000834418	0.000208802
+hypothetical protein, partial	0.000125407	4.65661e-05
+UniRef50_J3X3P8	8.5756e-06	0.000941702
+Shikimate dehydrogenase	6.37308e-06	1.77861e-05
+DNA polymerase I	0.000112598	0.00330603
+glutathione S transferase domain containing protein	0.000169145	7.6233e-05
+UniRef50_Q9RZD1	0.000162071	0.0197877
+hypothetical protein	3.22842e-05	0.000183418
+ArsR family transcriptional regulator	0.000266146	0.000329465
+3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00320188	0.00143017
+ThiJ PfpI family protein	0.000275859	0.00239929
+Prolyl endopeptidase	0.000171919	0.00150889
+hypothetical protein	7.21954e-06	0.000307331
+hemolysin E	1.65695e-05	6.42506e-05
+Nitrogen regulation protein NtrC	0.00212351	6.56322e-05
+Two component response regulator receiver protein	0.00755532	0.000782433
+hypothetical protein	1.02101e-05	6.78525e-06
+Phosphoglycerate kinase	3.71046e-05	4.11956e-05
+PREDICTED	6.33802e-06	7.76386e-06
+30S ribosomal protein S5	0.000927622	0.0168974
+Protein containing DUF939, bacterial 	0.000240087	0.00038977
+Transcriptional regulator, LysR family	0.00010292	0.00456144
+Transposase like protein, IS1381 ISSpn7	0.000287633	0.00635369
+UniRef50_E4ZDR8	0.000120196	0.000836758
+Phenol hydroxylase	5.25228e-06	7.86425e-05
+Autoinducer binding domain protein	0.000837459	9.72859e-05
+UniRef50_D2NRK7	2.96265e-06	4.76081e-06
+Threonine transporter	0.00016417	0.00419718
+Undecaprenyl phosphate galactose phosphotransferase	0.0159412	0.00102963
+Chromosome partitioning protein ParA	0.00146414	0.00137207
+Serine protease HtrA like	0.00641794	0.000856866
+UniRef50_R1DBW6	2.16732e-05	0.0011182
+Leucine responsive regulatory protein	0.0003185	0.00796884
+hypothetical protein	1.44115e-05	1.36088e-05
+ABC transporter related protein	0.00408499	0.000690186
+thioredoxin	5.74981e-05	1.5215e-05
+hypothetical protein	3.2085e-06	7.66994e-06
+Histidinol phosphate aminotransferase	0.010136	0.0014618
+hypothetical protein	2.02279e-05	2.86814e-05
+UniRef50_Q6G9C7	0.0507505	0.0036478
+PAS domain S box protein	0.00112231	0.000119873
+hypothetical protein	0.000190074	0.0084291
+Marine sediment metagenome DNA, contig	9.80118e-06	6.96645e-06
+UniRef50_B9TQ51	2.0917e-05	1.2109e-05
+hypothetical protein	7.29503e-06	6.20237e-06
+UniRef50_D4GML0	2.61206e-05	8.2389e-05
+isoleucyl tRNA synthase	1.16103e-06	4.80117e-06
+Cell surface antigen I II	0.00150238	0.000283247
+UniRef50_U6JYK1	1.05652e-06	4.82543e-05
+PREDICTED	3.52249e-05	1.8965e-05
+Ribonuclease 3	1.22106e-05	1.60897e-05
+Sensory box protein	0.000112616	0.00206534
+hypothetical protein	0.00114342	0.000144944
+UniRef50_I3URK7	0.0003185	8.43271e-05
+UniRef50_UPI0003840A4F	3.80224e-05	1.35482e-05
+Ribose xylose arabinose galactoside ABC type transport system, permease component	0.00443912	0.000360649
+hypothetical protein	3.80363e-06	4.93251e-05
+hypothetical protein	1.26989e-05	2.77937e-06
+ABC transporter 	3.31085e-05	4.24526e-05
+Glucose 6 phosphate isomerase	0.000315521	0.0297008
+Methionine import ATP binding protein MetN	0.00109147	0.000544037
+C4 dicarboxylate transport protein 1	0.00132108	0.00328388
+Transcriptional regulator, LysR family	0.000120916	0.00318384
+PTS cellobiose specific component IIC	0.000527294	0.000679583
+Ubiquinone biosynthesis O methyltransferase	0.000743756	0.0030974
+Putative PHA synthase	7.00396e-05	8.41612e-05
+Murein hydrolase activator EnvC	0.00269636	0.000390842
+UniRef50_E4PQ84	1.07349e-05	5.027e-06
+UniRef50_J0QIU8	5.21649e-05	2.64341e-05
+Transcriptional regulator LsrR	0.00156871	0.00017037
+hypothetical protein	0.00016912	0.000368695
+Cell wall biosynthesis glycosyl transferase GT2 family	0.0015014	0.000823129
+Trigger factor	0.017308	0.0028998
+Predicted Fe S oxidoreductase	0.00323797	0.000137496
+DNA recombination protein RmuC homolog	0.002291	0.000369795
+PREDICTED	0.000160261	3.85436e-05
+UniRef50_A6LVE6	0.000545002	8.43843e-05
+ribonuclease	1.06544e-05	3.48662e-06
+hypothetical protein	7.91157e-06	1.04783e-05
+hypothetical protein	2.9097e-06	4.07565e-07
+UniRef50_A0A046SME3	2.64079e-05	7.33341e-06
+UniRef50_F9EX65	4.22274e-06	5.38871e-05
+PREDICTED	5.75287e-06	6.65597e-06
+UniRef50_B2TRU1	0.00020274	0.00017993
+molecular chaperone GroEL	1.25759e-05	4.00926e-06
+UniRef50_A3VY81	0.000176828	4.5668e-05
+putative ATP dependent DNA helicase	0.000207718	0.000368892
+Argininosuccinate synthase	4.10486e-06	5.85276e-05
+Permease	0.000270156	0.00214177
+phytoene desaturase	4.78472e-06	3.67589e-06
+O acetylhomoserine sulfhydrylase	0.00325752	0.000542143
+hypothetical protein DICSQDRAFT_154134	4.94924e-05	1.00978e-05
+Fructose 1,6 bisphosphatase class 3	0.00821543	0.00294449
+UniRef50_M7TDD9	1.52655e-05	0.000107091
+hypothetical protein	1.31677e-05	6.08355e-06
+Marine sediment metagenome DNA, contig	6.11487e-06	1.15136e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	3.36776e-06	2.73183e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.50447e-05	0.000111126
+MULTISPECIES	4.29809e-06	6.5971e-05
+Probable chemoreceptor glutamine deamidase CheD	9.74372e-05	1.11655e-05
+UniRef50_E4BFD9	0.000549479	2.94177e-05
+sugar ABC transporter	3.48879e-06	1.40236e-05
+UniRef50_F0J4U6	0.00994879	0.000391972
+Probable N5 carboxyaminoimidazole ribonucleotide mutase	0.00194782	0.000204172
+hypothetical protein	6.29155e-05	4.74182e-05
+Membrane protein	0.000162373	0.00239284
+hypothetical protein, partial	3.355e-07	8.95084e-07
+DEAD box ATP dependent RNA helicase 7	8.33537e-07	3.98307e-05
+Molecular chaperone DnaK 	0.000143588	3.33796e-05
+Putative TRAP_TAXI	0.0001023	1.14679e-05
+Lipoprotein signal peptidase	0.00331272	0.0013821
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	3.03102e-05	3.78258e-05
+CobB CobQ domain protein glutamine amidotransferase	0.000219608	9.9761e-05
+UniRef50_D8GTF6	0.000376594	0.000131843
+ExsB family protein	0.000332733	0.000349408
+Isocitrate lyase	3.80101e-06	1.19724e-05
+UniRef50_P42597	0.00562745	0.000411864
+UniRef50_C6STB3	0.00961733	0.00104723
+UniRef50_P42591	0.00172118	0.00162493
+2,5 diketo D gluconic acid reductase B	0.0027919	0.00385419
+Biodegradative arginine decarboxylase	0.00365326	0.000434181
+4 hydroxybenzoate octaprenyltransferase	0.00379689	0.000561326
+UniRef50_P42599	0.0044136	0.000923499
+Cobalt precorrin 5B C methyltransferase	0.00232037	0.000624376
+Phosphatase	5.15226e-05	0.00290059
+Homoserine O acetyltransferase	9.66475e-06	1.95702e-05
+DEAD DEAH box helicase	3.01734e-05	1.91412e-05
+Chromosome partitioning protein ParB	0.000232102	0.000200413
+Amino acid ABC transporter membrane protein 2, PAAT family	0.0167351	0.00264777
+riboflavin synthase subunit alpha	1.49425e-05	9.25862e-06
+UniRef50_G9ETY0	9.90929e-06	3.28763e-06
+UniRef50_K2HGL3	0.000217086	3.59246e-05
+tRNA pseudouridine synthase A	0.00258592	0.000198639
+putative sugar permease	4.72965e-05	1.48093e-05
+Signal transduction histidine kinase, LytS	0.000402624	7.58318e-05
+hypothetical protein	4.61526e-06	0.00010914
+UniRef50_D0LK45	1.35568e-05	6.77904e-06
+hypothetical protein	2.99269e-05	0.00182712
+FemAB family protein	0.00264429	0.000461053
+UniRef50_N8EHW1	0.000303373	1.96313e-05
+LamB YcsF family protein	0.000173325	3.7335e-05
+N acetylmuramic acid 6 phosphate etherase	5.65648e-06	6.04062e-06
+UniRef50_U3KRA1	1.80036e-05	3.00746e-05
+peroxiredoxin	1.90827e-05	0.00074371
+Putative glutamine amidotransferase MTH_191	0.00219844	0.00032006
+UniRef50_M9REL9	0.000106991	1.26559e-05
+molybdopterin biosynthesis protein MoeB	2.74969e-05	1.99437e-05
+UniRef50_M9R8D3	0.00133286	0.000130691
+UniRef50_M0XFB3	6.0268e-06	2.50329e-05
+UniRef50_Q8DUC6	0.000110925	0.000333773
+ISPsy6, transposase	0.000180498	1.33026e-05
+cation transport ATPase, partial	3.26338e-05	1.01627e-05
+ABC transporter permease, partial	2.63175e-05	5.66384e-05
+Probable dihydroorotate dehydrogenase B ), electron transfer subunit	0.00292114	0.00035524
+Putative thioesterase	6.3688e-05	6.21079e-05
+Protein mlc	0.0040176	0.000974789
+PREDICTED	6.62193e-06	1.83115e-06
+UniRef50_A3UCU0	5.25377e-05	8.32102e-06
+Pseudaminidase	0.000797654	0.000176551
+hypothetical protein	9.19499e-05	0.000420768
+Hypothetical protein CBG15144	4.25091e-06	3.76704e-05
+CoA transferase	1.58475e-05	5.24373e-06
+UniRef50_B4D594	4.29595e-05	2.23692e-06
+PTS system transcriptional activator	0.000230328	0.00058381
+hypothetical protein, partial	0.000248917	3.75057e-05
+XRE family transcriptional regulator	0.000120123	0.00106217
+Nicotinate phosphoribosyltransferase	0.00791687	0.00405888
+Nucleoside permease	0.0106137	0.00179388
+UniRef50_J9P4X2	0.00014877	0.000453963
+UniRef50_A0A058Z6X5	2.07178e-05	1.46827e-05
+YCII related	0.00252751	0.000630069
+Potassium transporting ATPase C chain 1	0.00493917	0.00156922
+UniRef50_Q6FE54	0.000456853	0.0067185
+UniRef50_J0MDM2	0.000240391	3.59912e-05
+UniRef50_A6LW35	0.000488132	0.000361648
+UniRef50_A6LW34	0.000389073	0.000448639
+Cell surface antigen I II	0.00161617	0.000329477
+Acetolactate synthase , large subunit, IlvB	0.00249276	0.000296248
+Putative outer membrane usher protein YqiG	0.00144853	0.000326947
+hypothetical protein	2.2101e-05	0.000172666
+hypothetical protein	1.17498e-05	4.07789e-05
+ABC transporter ATP binding protein	0.0194246	0.00321543
+Phosphoenolpyruvate carboxykinase [ATP]	0.00602734	0.00178971
+Alcaligin biosynthesis enzyme family protein	0.000300643	0.0043896
+Tat  pathway signal sequence domain protein	0.00104356	0.000258389
+Exodeoxyribonuclease V alpha chain	7.87144e-05	9.37373e-05
+hypothetical protein	1.00874e-05	7.80452e-06
+molybdopterin biosynthesis MoeZ	3.18518e-05	2.58732e-05
+UniRef50_B6BAZ3	1.99363e-05	7.17697e-06
+Glycerol 3 phosphate acyltransferase	0.00297755	0.000355679
+Phosphoheptose isomerase	2.49956e-05	0.000504767
+hypothetical protein, partial	0.000326272	0.000186863
+UPF0234 protein KPK_4305	0.000687728	0.000409971
+IMP cyclohydrolase	3.24702e-06	5.75786e-06
+glycine hydroxymethyltransferase	4.84361e-05	5.98471e-05
+ATP dependent DNA helicase PcrA	2.02988e-05	1.79747e-06
+1 phosphatidylinositol phosphodiesterase	0.0109239	0.000388929
+Membrane anchored oxidoreductase	0.00282377	0.00046791
+phosphoenolpyruvate carboxykinase	3.30716e-06	1.52903e-05
+DNA invertase from lambdoid prophage e14	0.00341776	0.00107691
+Type III pantothenate kinase	0.000523439	0.00141989
+Transposase	0.000253564	0.000340275
+Lipid A palmitoyltransferase PagP	0.00130973	0.000161775
+alanine dehydrogenase	1.13897e-05	6.86614e-06
+UniRef50_D6CRU4	2.26781e-05	3.654e-06
+UniRef50_B9JWD9	5.34419e-05	2.47884e-05
+hypothetical protein	1.97686e-06	5.13134e-05
+hydrogenase nickel incorporation protein HypA	0.000770354	0.000176889
+Ribosome maturation factor RimP	0.0104953	0.0012535
+UniRef50_E3EZC8	0.00157278	0.000232633
+Bleomycin resistance protein	0.000227281	9.44762e-05
+NAD kinase	0.000121061	0.000297382
+UniRef50_C1A7Q5	0.00831391	0.000907117
+UniRef50_N6UYT1	2.0148e-05	1.83479e-06
+Dephospho CoA kinase	1.07204e-05	1.05759e-05
+PREDICTED	1.71474e-06	3.06872e-06
+Fructose 1,6 bisphosphatase class 1	0.012867	0.00133745
+glutamine amidotransferase	2.15933e-05	9.7902e-05
+hypothetical protein, partial	0.000195601	0.000288874
+UniRef50_D2J6T4	0.0130902	0.00935608
+Plasmid stabilization system protein	0.000701143	0.0006759
+UniRef50_D5MJN8	3.05811e-05	1.02239e-05
+UniRef50_U5ULW6	0.000178978	9.67922e-06
+Ribosomal RNA large subunit methyltransferase I	0.00338068	0.000888861
+UniRef50_J3CV04	0.00100359	0.000175266
+UniRef50_S5KGZ8	2.17605e-05	0.00140473
+Thiol	0.000621384	0.000138049
+Cysteine  tRNA ligase	2.2585e-06	5.33581e-06
+Plasmid pRiA4b ORF 3 family protein	5.02119e-05	6.8449e-06
+Membrane protein	0.000153083	0.00312569
+UniRef50_Q8CTK1	0.0289688	0.00262652
+Amidophosphoribosyltransferase	0.00574461	0.00140074
+hypothetical protein	2.70229e-06	2.8625e-06
+YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal	0.00279325	0.0208694
+amidohydrolase	3.59083e-06	3.45684e-05
+UniRef50_B2K1F3	0.000278655	0.000246129
+UniRef50_E0TI30	0.000128238	2.66548e-05
+hypothetical protein, partial	2.93952e-06	3.29891e-06
+Transcriptional regulator, AsnC family protein	6.38262e-05	5.70248e-05
+MarR family transcriptional regulator	1.34577e-05	1.87884e-05
+Oligoribonuclease	0.00177689	2.60865e-05
+UDP N acetylglucosamine 2 epimerase homolog	0.000856959	0.000678628
+UniRef50_P77562	0.00127859	0.000170121
+UniRef50_Q8CWZ2	0.000494924	0.000787586
+Sulfate transporting ATPase	0.00377716	0.000755574
+Methylmalonyl CoA carboxyltransferase 5S subunit	0.0049441	0.000928006
+hypothetical protein, partial	9.68165e-06	3.29264e-06
+Outer membrane protein assembly factor BamA	0.000326728	0.00212062
+Potassium transporting ATPase B chain	7.14112e-06	0.000417816
+UniRef50_C5N6G1	0.00244303	0.000298378
+Oxygen independent coproporphyrinogen III oxidase	0.000117401	0.00123867
+Ribosomal RNA small subunit methyltransferase H	1.01788e-05	0.0162844
+Ribosomal large subunit pseudouridine synthase B	1.37244e-05	0.00337064
+Adenylate kinase	0.00244586	0.000787831
+UniRef50_I4CR94	5.3669e-06	6.58228e-06
+UniRef50_U3HDX0	3.87724e-05	3.15718e-05
+UniRef50_M9S9D1	9.15113e-05	0.000162408
+Replication protein C	0.00212363	0.000148028
+Sarcosine oxidase	0.000361756	6.69038e-05
+UniRef50_R7D072	6.05037e-06	6.05665e-06
+Ribosome maturation factor RimM	0.000807717	0.000230809
+UniRef50_P78271	0.0026618	0.000628361
+Cell division protein	0.0037475	0.00157534
+CarR	5.62401e-05	0.000358545
+DNA repair protein RecN	0.000332021	0.000468064
+ErfK YbiS YcfS YnhG family protein	0.00489324	0.000482316
+UniRef50_B9KM31	0.000723652	0.000463929
+Flagellar M ring protein	0.00120753	0.000221133
+hypothetical protein	1.87516e-06	1.42796e-06
+Stress response protein	0.00453097	0.000698657
+hypothetical protein	0.000105438	1.05718e-05
+Endoribonuclease L PSP	0.00609619	0.00239435
+Putative gluconolactonase domain protein	0.000262246	0.00107705
+Thiamine phosphate synthase	0.00187284	0.0030429
+UniRef50_UPI0003318BBF	2.32168e-05	1.13692e-05
+UniRef50_J0CD84	3.02393e-05	9.59734e-05
+UniRef50_C5YXG0	1.09726e-05	9.03222e-06
+hydantoinase	3.3698e-06	3.5198e-06
+UniRef50_I4KQZ4	9.00867e-06	8.78333e-06
+PREDICTED	3.40003e-05	6.36038e-05
+UniRef50_I6RQF7	0.00127803	0.00113652
+hypothetical protein	3.78386e-06	1.75148e-05
+Acyl CoA dehydrogenase	0.000265926	0.00307718
+Chromosome replication initiation protein dnaD	0.0136647	0.00168273
+UniRef50_Q4LA96	0.00156079	0.000182451
+Diguanylate cyclase with GAF sensor	0.0023405	0.000535317
+UniRef50_P77381	0.00300142	0.000364571
+Peptidase C39, bacteriocin processing	0.00107765	0.0049118
+Transcriptional regulator, LysR family	0.000170261	0.000113079
+UniRef50_C6SR09	0.00345281	0.000364672
+Adenylate guanylate cyclase	0.000925711	0.00028421
+Putative peptidyl prolyl cis trans isomerase	6.93505e-06	0.000150787
+Glucose 1 phosphate thymidylyltransferase, putative	0.000434632	0.0331231
+ribonuclease E	1.92321e-06	1.41883e-06
+Arginine transport ATP binding protein ArtP	0.00225785	0.00107476
+UniRef50_Q1YHY0	0.000286802	2.08181e-05
+DNA polymerase III delta prime subunit	0.000632852	0.00127982
+Energy coupling factor transporter ATP binding protein EcfA2	0.000260801	0.00160717
+molecular chaperone DnaJ	9.31742e-06	1.08108e-05
+alkylhydroperoxidase	3.67505e-05	0.000129021
+S adenosylmethionine decarboxylase proenzyme 1	1.15881e-05	0.0012697
+peptide deformylase	2.21586e-05	4.44452e-05
+LPXTG motif cell wall anchor domain	0.00518029	0.00128743
+Short chain dehydrogenase reductase SDR	0.00622543	0.00153226
+3 oxoacyl [acyl carrier protein] reductase FabG	0.0014887	0.0098044
+hypothetical protein	0.000138485	7.96811e-05
+6 pyruvoyl tetrahydropterin synthase	0.000147733	5.36031e-05
+Signal transduction histidine kinase	0.000194552	0.00262738
+UniRef50_A3IDC9	0.000630609	0.000231266
+UniRef50_M4K0X3	0.000691571	0.000280365
+UniRef50_J9M4I5	5.57758e-06	7.60604e-07
+Fatty acid peroxygenase	6.43874e-06	6.55823e-06
+hypothetical protein	4.79525e-05	8.63286e-06
+SMP 30 Gluconolaconase LRE domain protein	0.000199173	0.000109095
+magnesium transporter	9.49478e-05	3.98152e-05
+Metallo beta lactamase family protein	0.000327017	0.00030634
+UniRef50_G7RAI1	0.00032995	0.00080799
+UniRef50_U6LJB2	1.51773e-05	1.77264e-05
+AraC family transcriptional regulator	7.59661e-05	5.90291e-06
+Glycerophosphoryl diester phosphodiesterase	0.00351947	0.000528782
+Folylpolyglutamate synthase 	0.000105281	0.00265438
+Surface protein G	0.00141583	8.50235e-05
+Lactate malate dehydrogenase, NAD binding domain protein	0.000203969	0.00320117
+Ribosomal RNA small subunit methyltransferase G	2.04672e-05	1.79886e-05
+transaldolase	9.0572e-05	3.51903e-05
+Chromosome partition protein MukF	0.000400523	0.000163505
+GntR family transcriptional regulator	0.00562005	0.00114305
+Glutaminase	0.000175299	0.00314603
+UniRef50_D9XFH8	0.000583947	0.00111728
+cold shock protein	2.29464e-05	9.98207e-06
+Acyl CoA dehydrogenase domain protein	0.00051538	0.00437209
+Phosphoenolpyruvate protein phosphotransferase	7.3627e-05	0.00128621
+dGTP pyrophosphohydrolase thiamine phosphate synthase	0.000487809	0.00158784
+Protein TolA	0.0011283	0.000149144
+Protein EssB	0.0106389	0.00128839
+UniRef50_C8UCL7	0.000892202	0.000180291
+Transposase ISCca5, IS5 ssgr IS5 family	3.97581e-05	6.67398e-06
+UniRef50_A0QL30	1.33171e-05	3.53073e-05
+Heat inducible transcription repressor HrcA	0.00012732	0.00037612
+hypothetical protein	5.74672e-05	4.6732e-06
+Prolipoprotein diacylglyceryl transferase	8.18469e-05	5.67954e-06
+Peptide transport system ATP binding protein SapF	0.00378082	0.000603513
+hypothetical protein	3.83976e-06	2.85556e-06
+Poly beta 1,6 N acetyl D glucosamine synthase	0.00216756	0.00303551
+UniRef50_I1FPH4	2.32373e-06	3.56224e-06
+Transcriptional regulator	0.00119907	0.000319378
+GTPase HflX	0.00330349	0.000256757
+UniRef50_F3J1W5	0.000448557	0.00154801
+hypothetical protein	4.90135e-06	3.30647e-06
+UniRef50_Q9A2A6	8.22664e-05	1.26828e-05
+MerR family transcriptional regulator	0.000462532	6.62951e-05
+transcriptional regulator	3.01193e-05	7.33841e-06
+hypothetical protein	4.16673e-06	5.61136e-06
+Acyltransferase	0.00043887	0.0038172
+hypothetical protein	1.62043e-05	1.20611e-05
+Chromosomal replication initiator, DnaA	4.01839e-05	6.1767e-06
+UPF0301 protein Mmar10_2223	2.74334e-05	1.17056e-05
+UPF0348 protein SAG1656	0.00531584	0.00121537
+hypothetical protein	1.4055e-05	7.1901e-06
+UniRef50_G7D6S7	0.000180033	3.06463e-05
+UniRef50_F7U6Q0	3.39687e-05	2.31503e-06
+RBL01243	0.00010013	0.00310398
+CMP sialic acid synthetase, NeuA	0.00362212	0.000358557
+Response regulator consisting of a CheY like receiver domain and a winged helix DNA binding domain	8.50684e-06	6.30801e-05
+Amino acid ABC transporter extracellular binding protein	0.0033964	0.00093055
+Delta aminolevulinic acid dehydratase	1.56735e-05	4.09074e-06
+Riboflavin biosynthesis protein RibD	0.000280557	0.000344547
+UniRef50_Q6G7T8	0.0059865	0.00113196
+hypothetical protein, partial	3.66825e-06	3.04916e-06
+Type II secretion system protein	0.00139203	0.00112499
+Purine nucleoside phosphorylase 1	0.00838323	0.00303138
+LemA family protein	2.40225e-05	7.06875e-06
+DeoR faimly transcriptional regulator	0.000144855	6.23101e-06
+Amino acid ABC transporter, amino acid binding permease protein	0.00694916	0.00382456
+PREDICTED	1.61373e-05	2.68971e-06
+hypothetical protein	2.10249e-05	4.3202e-06
+hypothetical protein	2.32188e-06	6.28898e-05
+hypothetical protein	1.62443e-05	1.43308e-05
+macrolide ABC transporter ATP binding protein	4.72385e-06	2.00828e-05
+rhizobiocin RTX toxin and hemolysin type calcium binding protein	2.49408e-05	2.12221e-06
+UniRef50_U3SUU9	0.00468148	0.000986827
+Sucrose phosphorylase	0.00445587	0.00430192
+UniRef50_C3Z7Q3	6.17918e-05	2.78273e-06
+Urease accessory protein UreH	0.000227911	0.00212307
+multidrug ABC transporter	5.55223e-06	1.75745e-05
+Transcriptional regulator, AraC family	0.000296468	0.000400465
+diguanylate cyclase	4.86161e-06	4.31334e-06
+Adenylate kinase	7.60586e-06	7.30448e-06
+pyrroline 5 carboxylate reductase	9.86044e-06	7.78172e-06
+Lipase	0.00694528	0.00157987
+Ribonuclease R	0.000249502	0.000946303
+Succinate dehydrogenase iron sulfur protein	3.34126e-05	6.89466e-05
+Cytochrome c oxidase subunit 1	1.84593e-05	5.25367e-06
+DNA polymerase I, partial	0.000107945	3.49119e-05
+UniRef50_Q87U89	0.000498363	0.00016254
+hypothetical protein SMAC_10214, partial	4.5326e-05	7.6263e-05
+L aspartate oxidase	0.000256809	0.000376834
+UniRef50_O31462	0.00570606	0.00174283
+UniRef50_A6QIT1	0.00137218	0.000741239
+Outer membrane transporter, ompp1 fadl todx family	1.26812e-05	2.84921e-06
+UniRef50_G9PLE0	3.18208e-05	9.11154e-05
+UniRef50_B9KU12	0.000110567	0.000262929
+histidine kinase	0.000341542	3.71883e-05
+Anthranilate synthase component 1	2.56383e-06	3.34791e-06
+Protease	0.000207746	0.000106254
+UniRef50_Q3J615	0.00980959	0.00152088
+UniRef50_Q3J617	0.0130147	0.00317942
+UniRef50_Q9RWA3	0.000179018	0.00990615
+ABC type oligopeptide transport system, permease component	0.0209199	0.00326117
+UniRef50_A6LYT7	0.000756204	0.0010096
+UniRef50_Q9RWA8	0.000327571	0.00391824
+UniRef50_A6LYT5	0.000287648	0.000127717
+UniRef50_R7LD69	1.30685e-05	0.000156432
+molybdopterin dehydrogenase, partial	1.31508e-05	2.15e-05
+hypothetical protein	0.000146551	1.60137e-05
+hypothetical protein	2.78954e-05	3.8683e-06
+hypothetical protein	2.80751e-05	2.34156e-05
+Nodulation protein NolG	0.000354346	0.00124943
+Tetratricopeptide repeat family	4.01419e-06	4.17322e-05
+UniRef50_H6NKR1	6.02468e-06	0.000403731
+Serine threonine protein kinase related protein 	0.00331097	0.000433039
+UniRef50_C5YW74	8.86211e-05	3.04006e-05
+sn glycerol 3 phosphate import ATP binding protein UgpC	0.00101421	3.50344e-06
+TROVE domain containing protein	0.000520784	0.00081994
+Methionine import system permease protein MetP	0.0183516	0.00577326
+peptidylprolyl isomerase	7.91384e-06	7.23232e-06
+UniRef50_A5INZ6	0.00747614	0.00229384
+Chemotaxis protein	0.00156142	0.000448291
+UniRef50_D4HF48	7.80706e-06	0.00142787
+MarR family transcriptional regulator	1.76566e-05	5.97792e-05
+Serine threonine protein kinase	0.000117814	0.00318962
+Oligoendopeptidase F, putative	0.000218532	0.00846762
+UniRef50_J3L6D3	0.000143365	0.000131594
+Protease HtpX	0.000203969	0.00476683
+Error prone, lesion bypass DNA polymerase V 	0.00293193	0.000448816
+UniRef50_F1XKP7	0.00023735	0.000102964
+Inner membrane transport protein YhjV	0.00112337	0.000110436
+hypothetical protein	1.88709e-05	1.12127e-05
+Transport system permease protein	5.44381e-05	2.70869e-05
+Transcriptional activator protein 	0.00863423	0.00118157
+3 phosphoshikimate 1 carboxyvinyltransferase	1.04484e-05	2.74364e-06
+PREDICTED	3.98932e-05	1.73562e-05
+Heat shock protein DnaJ domain protein	0.0110663	0.00168983
+Chemotaxis protein CheY	0.00077882	0.000823262
+Protein TolB	0.00298903	0.000439614
+ABC transporter, ATP binding protein	0.000109387	0.00295391
+Bifunctional enzyme IspD IspF	3.75354e-06	4.53329e-05
+peptide ABC transporter permease	9.63159e-06	1.62982e-05
+Prolipoprotein diacylglyceryl transferase	2.04645e-05	1.43284e-05
+Ppx GppA phosphatase	9.16194e-05	0.00381551
+Peptide transport system permease protein SapC	0.00144571	0.00041902
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.1844e-05	4.66857e-06
+UniRef50_U4V848	2.38486e-05	2.03376e-05
+2 dehydropantoate 2 reductase	0.000401499	0.00156153
+hypothetical protein	4.05817e-05	2.41367e-05
+competence protein	1.14488e-05	2.19634e-05
+Histidine transport ATP binding protein HisP	0.00611604	0.00679552
+UniRef50_M9VL55	0.000142787	0.00321035
+UniRef50_UPI0002C58260	1.12569e-06	7.58467e-05
+3 dehydroquinate dehydratase	1.29814e-05	5.3883e-05
+Pyruvate formate lyase 1 activating enzyme	0.00536597	0.000117366
+Adenylyl sulfate kinase	8.69708e-06	0.000179067
+Shikimate kinase 1	0.00468701	0.000829379
+UniRef50_S0U1N3	0.000445629	0.000239619
+L cystine binding protein TcyA	0.0102436	0.00318829
+hypothetical protein	2.15742e-05	2.26234e-05
+UniRef50_G1XC43	0.00101653	0.000141526
+Bifunctional protein PyrR	8.21972e-06	2.13865e-05
+hypothetical protein	9.22932e-05	0.000299253
+UDP N acetylglucosamine 2 epimerase	6.40219e-06	1.72463e-05
+ATP dependent protease La	0.00193949	0.000147462
+Putative regulator	1.34736e-05	2.0521e-05
+UniRef50_Q57947	0.00369189	0.000362401
+Respiratory nitrate reductase 2 gamma chain	0.00399873	0.00140071
+UniRef50_Q57942	0.0015606	0.000423829
+UPF0284 protein MTH_1426	0.00319043	0.000287048
+Histidine kinase	0.000351031	0.000273816
+UniRef50_K2AHW0	0.000524887	0.000197159
+Alkaline phosphatase	0.00118211	0.000932107
+UniRef50_I3X7J2	0.000101969	2.66594e-05
+UniRef50_C6SPX6	0.00829769	0.00113806
+UniRef50_C6SPX8	7.55829e-05	2.55797e-05
+hypothetical protein	1.46546e-05	2.02278e-05
+Aminomethyltransferase	0.000224339	0.0024821
+CDP alcohol phosphatidyltransferase	0.00818712	0.00160063
+adenosylcobinamide kinase	2.72117e-05	2.08998e-05
+hypothetical protein	1.20479e-05	5.35014e-06
+UPF0042 nucleotide binding protein ACIAD3059	0.000118922	0.00342371
+hypothetical protein	1.76829e-06	4.00254e-05
+Truncated internalin A	1.94194e-05	4.87214e-06
+Cobalamin synthesis protein P47K	4.49982e-06	4.66247e-06
+PREDICTED	1.2302e-05	5.61573e-06
+Methyl accepting chemotaxis sensory transducer	0.00034165	0.00025848
+UniRef50_N6U8E6	0.00070689	8.60833e-05
+Proline  tRNA ligase	3.76592e-06	1.45205e-05
+MFS transporter	3.02187e-06	2.48151e-06
+PREDICTED	3.25431e-06	3.36781e-06
+PREDICTED	6.41519e-05	0.000260253
+Peptidase C39 bacteriocin processing	0.00208491	0.000771535
+Transcriptional regulator, LuxR family	0.000157757	0.000799442
+Na translocating NADH quinone reductase subunit C	0.00033543	0.00130044
+UniRef50_F7XFJ7	0.000282264	6.94083e-05
+Sulfatase	0.000948047	0.00017709
+acetyl transferase	1.21552e-05	1.03309e-05
+UDP N acetylglucosamine 2 epimerase	0.0127172	0.000670731
+GTP binding protein TypA	3.92938e-06	5.33879e-06
+DNA polymerase I	0.00875692	0.00193191
+PREDICTED	1.36633e-05	6.25354e-06
+Prolipoprotein diacylglyceryl transferase	1.10014e-05	2.76593e-06
+selenocysteine specific elongation factor	7.6771e-07	3.97856e-06
+DNA polymerase IV	3.76156e-06	4.19611e-06
+UniRef50_D8ULE3	5.39629e-05	0.00054305
+Spermidine putrescine ABC transporter ATP binding protein	0.000141804	0.0151236
+Polyketide synthase module	6.62503e-06	1.81674e-06
+Sirohydrochlorin cobaltochelatase	0.000870923	0.000420751
+ABC transporter ATP binding protein	0.0113512	0.00202621
+UniRef50_W9R7E8	0.000176047	3.17457e-05
+Cupin 2, conserved barrel domain protein	0.000160172	3.36758e-05
+UniRef50_Q7R6Z1	3.59669e-05	2.07283e-05
+Methionine aminopeptidase	0.000450608	0.00163952
+hypothetical protein	1.33957e-05	6.75737e-06
+glutathione dependent formaldehyde activating protein	9.49049e-05	1.27304e-05
+UniRef50_L0GI71	2.78845e-05	6.24178e-05
+Ribonucleoside diphosphate reductase subunit beta	2.7785e-05	1.60908e-05
+Glycosyltransferase, GT2 family	0.00185245	0.000371294
+hypothetical protein	0.000147841	8.76836e-05
+Autotransported protein Lav	5.24491e-05	0.00168661
+glutamine ABC transporter permease, partial	0.000102655	3.16291e-05
+UniRef50_Q3JNJ8	6.91401e-05	7.10095e-06
+L threonine dehydratase biosynthetic IlvA	0.0167853	0.0036709
+Transcriptional repressor protein, GntR family	0.00397051	0.000701198
+Putative Holliday junction resolvase	0.000580026	1.04908e-05
+Amino acid transporter LysE	0.00019014	0.00353179
+Ornithine carbamoyltransferase, catabolic	0.0263053	0.00506271
+hypothetical protein	0.000182739	6.08278e-05
+TonB dependent receptor family protein	5.11731e-05	0.00475856
+Threonine dehydratase, mitochondrial	7.85054e-06	6.97274e-06
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	9.21474e-06	6.37104e-06
+phospholipase C	3.06674e-06	2.74146e-06
+UniRef50_UPI0003C19153	2.56046e-06	1.6472e-06
+hypothetical protein	9.24301e-05	2.46177e-05
+Peroxiredoxin OsmC	1.55889e-05	0.00114512
+Intracellular septation protein	0.0072467	0.000687275
+UniRef50_K8EXK1	0.00317286	0.00182752
+hypothetical protein	0.000127133	0.000312511
+Type I phosphodiesterase nucleotide pyrophosphatase	0.000523446	0.000420692
+Phage like baseplate assembly protein	0.000211595	0.00336047
+tRNA N6 adenosine threonylcarbamoyltransferase	4.76475e-06	2.13602e-06
+UniRef50_J9GQJ1	9.84497e-05	7.98712e-05
+NADH quinone oxidoreductase subunit B	2.9333e-05	1.60029e-05
+UniRef50_A0A024HWH6	5.85526e-06	7.79674e-06
+phosphoglyceromutase, partial	2.42921e-05	8.74068e-06
+UniRef50_K0LDS3	0.104737	0.0184471
+hypothetical protein, partial	3.69083e-05	2.95744e-05
+UniRef50_G7W9E1	0.000104626	0.000533812
+30S ribosomal protein S4	4.01112e-05	7.37781e-05
+50S ribosomal protein L9	0.00221266	0.00535308
+UniRef50_R1FCU5	5.2199e-05	0.000180489
+hypothetical protein	7.039e-05	4.2185e-06
+serine hydroxymethyltransferase	4.55897e-06	2.91488e-06
+Argininosuccinate lyase	3.25004e-06	5.74313e-06
+Division cluster competence associated protein Dca	0.00035232	0.00156219
+molybdopterin converting factor	2.54269e-05	7.77267e-05
+LysR family transcriptional regulator	3.62152e-05	0.000169469
+Acetoin utilization protein AcuA	0.00980497	0.000726945
+GTP binding protein Der	3.49855e-05	4.13363e-05
+Transcriptional regulator, GntR family with LacI sensor	9.55199e-05	0.00109633
+hypothetical protein	4.31734e-06	8.39663e-06
+Phosphoesterase PA phosphatase related protein	0.00837058	0.000546159
+Imidazoleglycerol phosphate dehydratase	0.00222684	0.000172157
+Acetyltransferase, GNAT family	0.00040548	0.00181784
+Ferrichrome ABC transporter lipoprotein	0.0155807	0.0026698
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.46482e-05	7.01288e-06
+UniRef50_R7PT43	0.00237679	0.000511167
+hypothetical protein	3.47554e-05	3.27639e-06
+hypothetical protein	6.60685e-06	7.42166e-06
+Pirin like protein YhaK	0.00285928	0.000326147
+hypothetical protein	0.000221584	0.000213285
+Holliday junction ATP dependent DNA helicase RuvA	1.06709e-05	4.71987e-06
+branched chain amino acid transporter II carrier protein	1.05497e-05	4.15748e-06
+hypothetical protein	3.64129e-06	8.33923e-06
+UniRef50_W4UAD6	0.000114588	0.000210565
+UniRef50_T1UCZ0	4.9595e-05	0.000975809
+High affinity branched chain amino acid ABC transporter permease protein	0.00027141	0.001047
+UniRef50_T2J2D2	1.29251e-05	0.000671975
+Probable HTH type transcriptional regulator YjjM	0.00232041	0.000516502
+UniRef50_M1MSH2	0.000147179	0.00028005
+alpha beta hydrolase	1.35245e-05	5.19918e-05
+Toluene efflux pump membrane transporter TtgH	0.00223483	0.000300712
+Integral membrane sensor signal transduction histidine kinase	0.000128413	0.000426522
+UniRef50_E6MUI2	8.7443e-05	0.000332784
+hypothetical protein	9.50694e-06	4.44746e-05
+UniRef50_D2N524	0.0160411	0.00230893
+Phage portal protein, SPP1	7.63149e-05	0.000954248
+Protein glutamine gamma glutamyltransferase	0.000115556	0.000107058
+ammonia channel protein, partial	4.95768e-06	9.99615e-06
+hypothetical protein	3.75491e-05	1.32215e-05
+UniRef50_A6E305	0.00104313	0.000223026
+UniRef50_B7VHW1	3.92331e-05	2.24319e-05
+UPF0324 membrane protein FN0533	0.00455234	0.00328806
+chemotaxis protein CheY	0.000189303	6.28399e-05
+UniRef50_J9NWV1	0.000130719	7.02135e-06
+exodeoxyribonuclease III, partial	0.000102744	1.6819e-05
+UniRef50_J9NWV5	0.000166157	6.65748e-05
+50S ribosomal protein L11 	0.000114088	0.000545402
+Sarcosine oxidase delta subunit heterotetrameric	0.00116431	0.00029632
+5,10 methylenetetrahydrofolate reductase	0.00291156	0.00251747
+hypothetical protein	5.28148e-06	7.31807e-06
+hypothetical protein	5.55006e-06	8.36707e-06
+Catalase	1.14771e-05	2.02195e-05
+UniRef50_U1WYS6	2.80315e-05	1.66096e-05
+Methionine import ATP binding protein MetN	4.50447e-05	3.58646e-06
+Probable transcriptional regulatory protein YedW	0.00280297	0.000330754
+UniRef50_Q7CYZ1	0.00524579	0.000350272
+hypothetical protein	1.869e-05	1.88502e-05
+hypothetical protein	9.6966e-06	2.09688e-05
+ComG operon protein 2, putative	0.00678804	0.00216611
+UniRef50_U3SS47	0.00547058	0.0014021
+UniRef50_X5X320	0.000716103	1.83914e-05
+UniRef50_X1XW63	7.68048e-07	1.88948e-05
+Hydrogenase expression formation protein hypD2	0.00212963	0.000341376
+PREDICTED	8.89661e-05	3.53147e-05
+hypothetical protein, partial	1.00829e-05	3.49978e-06
+UniRef50_C6X1R3	8.07593e-06	6.51834e-06
+diguanylate cyclase	3.13782e-06	3.05875e-06
+DeaD DeaH box helicase	9.61925e-05	0.00264561
+UniRef50_A5UMR2	0.00300285	0.000221948
+Diguanylate cyclase	0.000826866	0.000133212
+Endoribonuclease L PSP	0.000232049	5.16738e-05
+Phosphopantetheine adenylyltransferase	1.0536e-05	1.77987e-05
+Taurine uptake ABC transporter	0.00999673	0.000875997
+L lactate dehydrogenase	0.000113699	0.00673417
+Glycosidase	0.00720163	0.00105118
+UniRef50_V4XDY8	0.00033334	0.00107683
+Exo poly alpha D galacturonosidase	4.01727e-06	4.90368e-06
+recombinase	4.02979e-06	2.91043e-06
+hypothetical protein	0.000183473	2.55064e-05
+UniRef50_W5PP12	0.000123757	5.84381e-05
+Sel1 repeat protein	7.34288e-05	0.00207535
+PREDICTED	6.2451e-05	2.45613e-05
+Centromere kinetochore Zw10 family protein	2.06835e-06	5.71137e-06
+UniRef50_S5Y0K2	0.00151022	4.08351e-05
+MULTISPECIES	4.36347e-06	1.17058e-05
+Macrolide export ATP binding permease protein MacB	0.000406055	6.84239e-05
+UniRef50_R6EZ78	3.4046e-05	0.000511122
+hypothetical protein	6.22408e-06	0.000604243
+UniRef50_Y0F5P3	4.07325e-05	4.74705e-05
+major facilitator superfamily protein, partial	9.6124e-06	7.54403e-06
+Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00656771	0.000499466
+PREDICTED	7.11708e-05	2.87234e-06
+PREDICTED	2.64101e-05	9.40053e-06
+UniRef50_I1QQ05	1.46401e-05	0.000123668
+hypothetical protein	1.13777e-05	6.44811e-05
+Inner membrane protein YebE	0.00640266	0.000144349
+Type II pantothenate kinase	0.00746879	0.00252452
+UniRef50_W0A724	8.60861e-05	1.58094e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.00220802	0.000475252
+UniRef50_Q08T18	3.52863e-05	7.48189e-05
+hypothetical protein	1.14233e-05	6.82558e-06
+Multidrug resistance protein MdtN	0.00311716	0.000113796
+UniRef50_J0S1W5	0.00896183	0.00418493
+Marine sediment metagenome DNA, contig	0.000229907	0.000263383
+UniRef50_F9NYE7	7.98351e-06	3.24387e-05
+UDP N acetylmuramoylalanine  D glutamate ligase	0.0068563	0.00381069
+RNA helicase, partial	0.00452913	0.0006548
+Transcriptional regulator	0.000143824	0.00291906
+hypothetical protein	3.96491e-06	1.28575e-05
+Bifunctional protein GlmU	3.58943e-06	4.53408e-06
+Redox sensitive transcriptional activator SoxR	0.00977291	0.00246526
+Probable acetolactate synthase small subunit	3.71639e-05	0.000241568
+Probable poly beta 1,6 N acetyl D glucosamine export protein	0.0124848	0.000949776
+Acyl CoA dehydrogenase domain protein	0.00187864	0.0045568
+UniRef50_Q4FRE8	0.000132674	0.00191747
+B1065G12.2 protein	5.51765e-05	5.11886e-05
+Urease subunit beta	4.24221e-05	1.24554e-05
+UPF0736 protein OB1207	2.96021e-05	0.000120679
+UniRef50_C5N1I8	0.0074375	0.000226729
+hypothetical protein	3.13487e-05	1.04425e-05
+hypothetical protein, partial	4.84691e-05	4.9235e-05
+Folyl polyglutamate synthetase	8.2085e-05	0.000852823
+Methionine import ATP binding protein MetN	4.47088e-05	4.12747e-06
+Putative general secretion pathway protein A	0.00273267	0.000248451
+UniRef50_M0X8Z7	6.71848e-05	0.000880224
+Apolipoprotein N acyltransferase	0.00117022	0.000209777
+Epimerase family protein YfcH	0.00412448	0.00120654
+Carbon starvation protein CstA	0.000149991	0.000401321
+UniRef50_U9LZ47	0.000694353	0.000150774
+UniRef50_D9RBR2	6.31375e-05	2.6808e-05
+Choline carnitine betaine transporter	0.00665181	0.00155796
+Pyruvate kinase	0.000755495	0.000940766
+Mll9669 protein	0.00725039	0.000530548
+2 dehydro 3 deoxygalactonokinase	0.00860263	0.000459045
+UniRef50_A3M531	0.00028484	0.00427034
+UniRef50_A3M532	0.000287563	0.00833992
+NAD synthetase, partial	6.13256e-06	3.05157e-05
+hypothetical protein	0.00210343	0.000390369
+50S ribosomal protein L21	0.000316275	9.14152e-05
+UniRef50_B5XIZ5	0.000206472	0.00395618
+Cyclic pyranopterin monophosphate synthase	8.82801e-06	8.04679e-05
+Allantoinase	5.15448e-05	0.000469068
+Putative cell wall binding repeat containing protein	0.000226355	0.00154318
+UniRef50_D8R6N5	6.25931e-07	1.7366e-06
+UniRef50_Q8DU77	0.00298499	0.000987245
+Glucans biosynthesis protein G	0.00321675	0.000189847
+Leu Ile Val binding protein family	0.0129775	0.00209739
+UniRef50_E8QKJ5	0.000160261	0.000331559
+tRNA modifying protein YgfZ	0.00418292	0.000469268
+Ornithine carbamoyltransferase	0.0261946	0.00793435
+Polysaccharide biosynthesis protein	0.00747088	0.0016651
+Marine sediment metagenome DNA, contig	4.56863e-06	9.37008e-06
+UniRef50_E8TLE8	0.00149737	0.000131541
+UniRef50_I4YKM8	4.34563e-05	1.40636e-05
+Trigger factor	8.2408e-06	1.89743e-05
+Os04g0448000 protein 	5.46645e-06	6.6764e-06
+Aldo keto reductase	0.00835488	0.00246089
+Peptide deformylase	8.36864e-06	2.19873e-05
+Predicted protein	1.60456e-05	0.000151655
+Ribulose bisphosphate carboxylase small chain	0.000455316	3.30699e-05
+Endo type membrane bound lytic murein transglycosylase A like protein	0.00220753	0.00126934
+Phosphoribosylformylglycinamidine synthase 2	2.13807e-05	3.18851e-06
+UniRef50_A6LZG6	0.000118782	0.00047691
+UniRef50_Q21CR1	3.65666e-05	1.13371e-05
+hypothetical protein	2.59099e-06	5.26258e-06
+peptide chain release factor 1	2.88908e-06	1.81213e-05
+threonine dehydratase	9.05498e-06	1.95774e-05
+UniRef50_I6L918	0.00484898	0.00186947
+UniRef50_B9JG36	2.56651e-05	7.18087e-06
+phenazine biosynthesis protein PhzF	9.70983e-06	1.06513e-05
+UniRef50_B8A1Z2	0.000624161	0.000683295
+Nitrite oxidoreductase 	5.7674e-05	2.61965e-05
+Protein RdxB	0.0192027	0.00233109
+UniRef50_A0A023SBI8	4.5531e-05	1.22446e-05
+PREDICTED	6.99777e-06	6.4493e-06
+Sugar ABC transporter substrate binding protein	0.00011399	1.38946e-05
+Deoxynucleoside kinase family protein	0.0177892	0.00133682
+5 hydroxyisourate hydrolase	2.24388e-05	1.71798e-05
+UniRef50_F7ZII7	0.000947266	4.8747e-05
+Excinuclease ABC subunit B	3.89993e-05	0.000847091
+Mucoidy inhibitor A	6.59675e-05	9.24664e-05
+MULTISPECIES	3.02151e-05	5.89531e-06
+Probable outer membrane usher protein ElfC	0.00171585	0.000300098
+LuxR family transcriptional regulator	6.21141e-05	9.1537e-06
+NADH quinone oxidoreductase subunit D	6.82463e-06	7.11181e-06
+Anaerobic dimethyl sulfoxide reductase chain YnfH	0.000727855	0.00010883
+DNA ligase 2	0.000386052	0.000357056
+UniRef50_T2QCI3	2.02756e-05	3.60512e-05
+Transcriptional regulator FleQ	0.000626313	0.000328578
+Putative lipoprotein NMB1126 NMB1164	0.0027914	0.00139226
+Bifunctional enzyme IspD IspF	5.14024e-06	9.56509e-06
+UniRef50_L7WZU8	0.00785618	0.00134882
+UniRef50_K2AF52	0.000628278	0.00029953
+Phospholipase D	9.6895e-05	0.00238416
+UniRef50_B1ERT8	0.000107295	0.000696007
+Imidazole glycerol phosphate synthase subunit HisH	0.0368929	0.00329172
+Arginine regulator	0.00442451	0.00196822
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit	2.6129e-05	2.36425e-05
+PKD domain containing protein	2.50238e-06	1.40903e-05
+MaoC domain protein dehydratase	1.45762e-05	1.22268e-05
+Anthranilate synthase beta subunit 1, chloroplastic	6.11931e-06	4.82289e-06
+Cell wall biosynthesis protein, MurD like peptide ligase family	0.00370335	0.000582402
+Hemolysin type calcium binding region RTX toxin	0.00226067	0.000363719
+Aminotransferase, class IV	0.000137742	0.000614143
+UniRef50_R8A4W3	3.15496e-05	1.73802e-05
+hypothetical protein	9.76214e-06	9.75064e-06
+AsnC family transcriptional regulator	0.000156248	3.00588e-05
+PREDICTED	2.7689e-06	8.14781e-06
+UTP  glucose 1 phosphate uridylyltransferase	0.0239008	0.0026482
+Lysozyme	0.000142004	0.00235387
+hypothetical protein	2.61258e-05	3.70015e-05
+30S ribosomal protein S3	0.00353078	0.0027866
+50S ribosomal protein L10	0.0196635	0.0045933
+Integral membrane sensor signal transduction histidine kinase	0.000490572	0.000937232
+Probable L threonine 3 dehydrogenase	1.56505e-05	2.39968e-05
+RecBCD enzyme subunit RecD	0.00322207	0.000479491
+Anaerobic nitric oxide reductase transcription regulator NorR	8.0658e-05	1.97781e-05
+UniRef50_B9E7Y2	0.00420833	0.00041492
+UniRef50_E8QJ87	0.000158423	0.00207036
+hypothetical protein	3.93768e-06	1.00486e-05
+UniRef50_F2AHK1	0.000317575	2.71404e-05
+hypothetical protein, partial	5.6122e-05	5.34438e-05
+Transcriptional regulatory protein ZraR	0.00250502	0.000723733
+ribose ABC transporter permease	8.63466e-05	6.23783e-06
+Transcriptional regulator, ArsR family	0.000179333	9.34286e-05
+Alpha,alpha phosphotrehalase	0.000193977	0.00204845
+acriflavine resistance protein B	3.30492e-06	3.92292e-06
+putative 3 oxoadipate coa transferase subunit b  protein	3.82963e-05	3.63896e-05
+UniRef50_V5SS13	0.00148207	0.000532126
+UniRef50_A0A023RZV0	0.000281814	0.00283134
+Cysteine and O acetyl L serine efflux system protein	0.000152055	0.000163543
+UniRef50_M1XIF6	6.82477e-05	8.47286e-05
+1,4 alpha glucan branching enzyme GlgB	1.97913e-06	1.20777e-06
+ATPase involved in chromosome partitioning	1.46659e-05	0.000892723
+Diguanylate cyclase	2.85514e-06	2.22374e-06
+Class I monoheme cytochrome c	0.00208929	0.000274571
+Isopentenyl diphosphate Delta isomerase	6.00457e-05	7.50248e-06
+organic solvent ABC transporter ATP binding protein	0.000250568	2.85887e-05
+Two component sensor histidine kinase	0.00617841	0.00101739
+Hydrogenase 4 transcriptional activator	0.00283353	0.000137472
+hypothetical protein	9.88427e-06	8.26956e-06
+Monovalent cation H+ antiporter subunit C	0.00131149	4.73684e-05
+UniRef50_H9USG2	0.000450791	0.000197329
+UniRef50_Q09BZ8	1.79049e-05	0.000116687
+Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase	0.000461405	0.000364611
+Phosphopantetheine adenylyltransferase	0.000299381	0.000688329
+L glutamine synthetase	0.000695505	6.69038e-05
+UniRef50_R5CIR9	0.00361379	0.000506594
+UniRef50_Q4BUD1	1.49187e-05	2.95207e-05
+Hemagglutinin hemolysin family protein	3.06557e-05	0.00163494
+patatin	4.62864e-06	9.51257e-06
+Integral membrane protein	5.14959e-05	2.25177e-05
+UniRef50_Q6A8D2	8.92601e-05	0.00126442
+UniRef50_B9KV10	0.0157891	0.00249089
+Uroporphyrinogen decarboxylase 	0.000858843	0.000765512
+Outer membrane protein assembly factor BamB	0.000787514	0.00325812
+Transposase IS861	0.000292797	2.07433e-05
+AsmA family protein	2.51041e-06	2.21728e-06
+ATP binding protein	3.85982e-05	1.48215e-05
+DegV domain containing protein MW0711	0.0183597	0.00341715
+EVE domain containing protein	4.71692e-05	9.06918e-05
+Glycogen synthase	0.000474695	0.00197158
+Response regulator receiver protein	0.0193979	0.000883496
+UniRef50_K3Z8U3	4.25044e-05	3.68561e-05
+UniRef50_B0VCR0	0.000288695	0.00346356
+hypothetical protein	1.702e-05	5.21073e-06
+UniRef50_U6JY85	2.93792e-06	2.93853e-05
+Periplasmic solute binding protein	0.000657663	0.000218889
+UniRef50_D7AAV7	1.10511e-05	3.83417e-05
+2 dehydropantoate 2 reductase	0.00143029	0.000508486
+SpoIIIAH like protein	0.000892012	0.000174679
+hypothetical protein	9.71874e-06	1.40352e-05
+Homoserine O acetyltransferase	0.00146576	0.000450036
+UniRef50_G9A115	3.44586e-05	9.11493e-06
+PREDICTED	1.53114e-05	1.89658e-05
+Anthranilate 3 monooxygenase oxygenase component	6.96788e-05	2.83686e-06
+PREDICTED	4.55451e-06	2.02465e-05
+hypothetical protein, partial	3.5804e-05	0.000115258
+Resolvase	0.000547484	0.0065873
+Superoxide dismutase [Mn]	9.7545e-06	2.50056e-05
+UniRef50_D3UZU9	8.58617e-05	5.1896e-05
+UniRef50_C5LZC5	8.78735e-06	7.43808e-06
+UniRef50_M1MI36	0.000360769	0.00014229
+Peptidoglycan hydrolase FlgJ	0.000337417	0.000396376
+PfkB domain containing protein	2.87799e-05	1.39061e-05
+UniRef50_E5QV40	0.00600849	0.00174188
+Plasmid pRiA4b ORF 3 family protein	0.00397239	0.00103621
+hypothetical protein	3.85242e-06	1.45126e-05
+UniRef50_Q795R8	0.0138483	0.00252841
+hypothetical protein	0.000181359	3.27515e-05
+hypothetical protein	5.82291e-05	0.00516385
+UniRef50_P77739	0.00168012	0.000785939
+HD domain protein	6.42336e-06	2.27849e-05
+phosphoenolpyruvate dependent sugar phosphotransferase system EIIABC, glucose specific	2.21211e-05	0.000133116
+UniRef50_P77732	0.00375382	0.000644999
+UniRef50_P77730	0.00319385	0.000910887
+Metalloprotease MTH_856	0.00450005	0.00129575
+UniRef50_F0XYT4	0.000153515	0.000421585
+NADPH dependent ferric chelate reductase	0.00127016	0.000168136
+Probable alcohol dehydrogenase	0.000378273	0.000385045
+Expressed protein	5.08682e-05	1.99531e-05
+UniRef50_A9M1Y3	0.000327807	0.00490942
+TRAP dicarboxylate transporter, DctM subunit	4.45504e-06	4.35696e-06
+hypothetical protein	4.37171e-06	3.59034e-06
+DNA gyrase topoisomerase IV, A subunit	0.000214696	0.0028397
+UniRef50_A3TUW7	1.55225e-05	2.78731e-06
+Hypoxia induced protein conserved protein	2.31651e-05	2.40293e-05
+Arylsulfatase	0.000123519	0.0026611
+UniRef50_M4XE09	0.000697791	0.000461892
+MULTISPECIES	0.000115064	1.87214e-05
+UniRef50_O27566	0.00123004	0.000362048
+Glycogen debranching enzyme	2.70345e-05	3.68094e-05
+PREDICTED	3.179e-05	6.35385e-06
+ATP dependent Clp protease proteolytic subunit	9.2165e-06	5.66064e-05
+Seryl tRNA synthetase	7.93123e-05	0.000434252
+TonB dependent receptor, partial	6.94583e-06	0.000102746
+hypothetical protein	3.23139e-05	5.51762e-06
+Phosphoribosylformylglycinamidine cyclo ligase	0.000983978	0.000361838
+Stackhouse genomic scaffold, scaffold_21	0.000252144	6.0605e-05
+magnesium transporter MgtC	6.57272e-05	2.31697e-05
+DUF814 domain containing protein	1.63914e-05	1.08988e-05
+UniRef50_E4AYJ6	0.000138137	0.00228359
+Acetate kinase	0.0019329	0.000404312
+hypothetical protein	0.000841371	0.00721615
+hypothetical protein	2.05549e-05	4.5437e-06
+UniRef50_V7GTL1	0.000812039	0.000176558
+50S ribosomal protein L20	0.00685142	0.000823244
+UniRef50_Q3IV37	0.00565974	0.00103165
+UniRef50_Q3IV35	0.00855867	0.00146838
+UniRef50_Q3IV32	0.0131022	0.00168431
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.00104512	0.000152436
+UniRef50_P71310	0.000190047	0.000319519
+UniRef50_Q3JQ29	4.64346e-06	1.21234e-06
+Ribosomal RNA large subunit methyltransferase E	0.00588972	0.000425416
+UniRef50_A6LTV3	0.000627403	0.000482114
+30S ribosomal protein S12	0.000239253	0.0127037
+UniRef50_E4D6N2	0.000291805	0.00257542
+Marine sediment metagenome DNA, contig	2.80375e-05	0.000575544
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00383005	0.0013578
+UniRef50_R6IDY7	0.000124279	0.000155074
+UniRef50_Q6BA81	4.3932e-05	5.10889e-06
+ATP utilizing enzyme of the PP loop superfamily	0.00695229	0.00197672
+Protein BcsG homolog	0.00355587	0.000320049
+ABC transporter, solute binding protein	0.000254906	0.0035739
+Ribose import ATP binding protein RbsA 1	1.12307e-05	2.81062e-05
+Phosphate transport system permease protein PstC	0.00327994	0.000184743
+Alkylhydroperoxidase like protein, AhpD family	0.01118	0.000380446
+UniRef50_P76463	0.00263974	0.000359243
+UniRef50_P76462	0.00299645	0.000116001
+UniRef50_P76466	0.00333897	0.0007961
+sugar ABC transporter permease	3.86407e-05	6.41248e-06
+Cytochrome b561	0.00208377	0.00176049
+UniRef50_D4H299	2.15947e-05	9.38181e-06
+hypothetical protein, partial	7.3785e-05	1.71802e-05
+hypothetical protein	2.04498e-05	1.8381e-05
+ribonuclease D	5.03605e-05	5.00799e-06
+HipA domain containing protein	0.0116376	0.00221457
+Di and tricarboxylate transporter	0.012944	0.00231491
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.94148e-05	3.58954e-05
+Exodeoxyribonuclease V beta subunit	0.000507673	0.000128632
+Putative lysophospholipase	1.48194e-05	1.42318e-05
+High affinity branched chain amino acid transport system permease protein BraD	0.00297086	0.000701692
+phosphogluconate dehydratase	6.58446e-05	1.90035e-05
+biotin biosynthesis protein BioY	1.30867e-05	2.26696e-05
+UniRef50_B0TGJ1	5.93874e-06	3.75304e-06
+Phosphoglycerate mutase family protein	0.000151371	0.00153118
+Integral membrane protein	2.05858e-05	9.3916e-06
+UniRef50_X2NCX1	2.86975e-05	6.06338e-06
+hypothetical protein	1.31515e-05	8.16629e-07
+UniRef50_G9ZD87	1.10222e-05	7.34387e-05
+PREDICTED	3.43677e-06	3.01171e-06
+Dehydrogenase	1.36443e-05	6.48971e-05
+UniRef50_D7G0G3	0.000179533	2.39599e-05
+membrane protein	1.58567e-05	2.30191e-05
+Nucleoside permease NupC	0.00359985	0.00105236
+MarR family transcriptional regulator	0.000129928	1.08805e-05
+UniRef50_A5UNU3	0.00246269	0.00177599
+organic hydroperoxide resistance protein	2.17453e-05	0.000151522
+UniRef50_T2A3R6	0.000407115	0.00102318
+Protein translocase subunit SecD	0.00652635	0.000668351
+Zinc transport protein ZntB	0.00352272	0.000638179
+Ethanolamine utilization protein EutE	0.00257329	0.000674281
+Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB	0.00223917	0.00107721
+Diguanylate cyclase	0.000286214	6.72427e-05
+ATP dependent zinc metalloprotease FtsH	2.64095e-06	0.00155811
+Holliday junction ATP dependent DNA helicase RuvA	1.18916e-05	5.60906e-06
+Mannose 6 phosphate isomerase	0.00126255	0.000156845
+Pilus assembly protein PilV	3.28302e-05	8.40682e-05
+PTS fructose IIC component	3.75844e-05	2.14822e-05
+UniRef50_J2DPW6	7.2376e-05	6.34074e-05
+HTH type transcriptional regulator SgrR	0.00263883	0.000386823
+UniRef50_F9Z280	0.000463058	0.00292459
+Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.000153681	0.000305445
+UniRef50_K1CPP9	0.000912601	0.000260464
+Exodeoxyribonuclease I	0.00350217	0.000441945
+hypothetical protein	3.1116e-05	3.04839e-05
+MATE efflux family protein	0.000336993	0.000285536
+Histidine  tRNA ligase	0.000333787	0.00458507
+ABC transporter permease	6.96165e-05	8.51332e-05
+hypothetical protein	2.44921e-06	1.72842e-06
+UniRef50_G8VDA6	0.000400214	0.0024875
+UniRef50_U2BA89	3.49998e-06	2.68152e-05
+UniRef50_W7AYX4	4.66422e-05	1.50117e-05
+UniRef50_A6M0D8	0.000267576	0.000346527
+Amidase	0.000209151	0.0103506
+Structural constituent of cell wall	8.22251e-05	4.98628e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0182415	0.000936946
+ABC transporter permease	0.000178704	1.65746e-05
+Teichoic acid biosynthesis protein, putative	0.0101919	0.00201387
+Phosphate acetyltransferase	0.0242249	0.00571331
+PE family protein	6.59038e-05	0.000943898
+NADH ubiquinone oxidoreductase chain 6	4.71926e-05	1.28082e-05
+hypothetical protein	1.93508e-05	6.29587e-06
+UniRef50_L1K787	0.000254774	3.93318e-05
+Phosphate import ATP binding protein PstB 2	0.000170015	0.0235554
+ATPase	3.1355e-06	1.76558e-06
+50S ribosomal protein L5	0.0359129	0.00747595
+Phosphatidate cytidylyltransferase	0.00189363	0.000113796
+Chemotaxis response regulator protein glutamate methylesterase	0.000407289	0.000745303
+chromosomal replication initiator protein DnaA	3.82214e-06	5.6829e-06
+UniRef50_A3PKA4	0.000696307	0.000534267
+Formate acetyltransferase 2	0.00132316	0.000321459
+UniRef50_J9NZ66	1.98009e-05	2.93712e-06
+UniRef50_Q69K37	3.3954e-05	2.95186e-05
+UniRef50_P39342	0.00321839	0.00061729
+hypothetical protein PFL1_01799	3.93553e-06	0.000465692
+COG2931	4.02532e-06	3.79648e-05
+Maltose maltodextrin import ATP binding protein MalK 	0.000126725	3.23569e-05
+hypothetical protein AURDEDRAFT_115522	1.6383e-05	3.45481e-05
+ADP ribose pyrophosphatase	0.0147676	0.00184068
+hypothetical protein	0.00514477	0.000243562
+TRAP dicarboxylate transporter, DctM subunit, putative	0.00483528	0.000548515
+UniRef50_Q2CDM9	7.89202e-05	2.82277e-05
+YhgE Pip domain containing protein 	4.00884e-06	1.83191e-06
+hypothetical protein	1.34506e-05	1.76764e-05
+PTS system Galactitol specific IIC component	0.000574319	0.00123817
+hypothetical protein	0.00070073	0.00233645
+UniRef50_UPI0003330970	0.000369976	2.30768e-05
+Glyceraldehyde 3 phosphate dehydrogenase, testis specific	4.20251e-06	2.95572e-06
+Probable L ascorbate 6 phosphate lactonase UlaG	0.00957145	0.00244689
+Pyridoxine pyridoxamine 5 phosphate oxidase	0.00216975	0.00160078
+iron dicitrate transporter subunit FecD	1.15009e-05	1.6159e-05
+Arabinose proton symporter	0.00201084	0.00145847
+Adenosine deaminase	0.00564212	0.000683628
+xylose ABC transporter ATP binding protein	7.39294e-05	1.50264e-05
+Putative OsmC like protein	1.10441e-05	1.38141e-05
+Putative membrane protein insertion efficiency factor	0.00136439	0.000823937
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0180165	0.00355887
+Putative cyclic di GMP phosphodiesterase YlaB	0.00207185	0.000466664
+Transposase and inactivated derivative	1.99832e-05	9.4506e-06
+Putative alkyl aryl sulfatase YjcS	0.00330452	0.000720526
+Ubiquinone biosynthesis protein UbiB	0.00776549	0.000529691
+Intracellular growth attenuator protein igaA	0.00292562	0.000371809
+Methyl accepting chemotaxis sensory transducer	0.000211452	0.000480056
+Fis family transcriptional regulator	0.000579753	0.000159219
+UniRef50_B0V742	0.000221981	0.0028074
+Putative oligopeptide transport ATP binding protein oppD2	0.0167399	0.00248616
+NADH dehydrogenase ubiquinone iron sulfur	1.12024e-05	1.22962e-05
+isocitrate dehydrogenase	2.75569e-05	1.62207e-05
+Ribosomal RNA large subunit methyltransferase H	0.00329694	0.00207136
+UniRef50_Q2YVJ6	0.00903857	0.0020245
+Adenylate kinase	1.7343e-05	7.26873e-06
+UniRef50_A6M277	0.000151827	9.16172e-05
+Transporter, CPA2 family	0.00021482	0.00229988
+Integrase	0.00397025	0.000816924
+UniRef50_A6LSE2	0.000289081	0.000530688
+hypothetical protein, partial	8.68626e-06	3.41629e-06
+Multi sensor hybrid histidine kinase	0.000223019	0.00078266
+DNA gyrase subunit A	7.83347e-06	1.05154e-05
+hypothetical protein	4.10643e-05	5.25807e-05
+Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage	0.00473832	0.000654702
+Glutamyl tRNA reductase	6.38969e-06	9.76182e-05
+Endonuclease	0.00776009	0.00014743
+hypothetical protein	3.26056e-05	5.33509e-06
+Adenylyltransferase and sulfurtransferase MOCS3 2	1.97207e-05	1.31262e-05
+Transcriptional regulator, CdaR	0.000505578	0.000113948
+Transporter, lactate permease  family protein	0.00014828	0.00154563
+3 methyladenine DNA glycosylase	2.61202e-05	1.05717e-05
+hypothetical protein	2.8905e-05	5.61216e-06
+Multiple inositol polyphosphate histidine phosphatase	0.000252226	0.00399286
+UniRef50_E8PIM3	8.57085e-05	0.00326664
+mRNA endoribonuclease LS	0.00181463	0.000510683
+spermidine putrescine ABC transporter ATPase subunit	1.68349e-05	4.64846e-06
+Isochorismatase hydrolase	0.000394158	0.000280578
+3 methyl 2 oxobutanoate hydroxymethyltransferase 1	4.23444e-05	7.96285e-05
+hypothetical protein	5.01072e-05	1.90888e-05
+hypothetical protein	0.000552155	6.7034e-05
+UniRef50_C1HZT4	8.18065e-05	0.000352223
+hypothetical protein	1.44218e-05	0.000201866
+ATPase AAA	4.68147e-06	2.78912e-05
+Epoxyqueuosine reductase	0.00580149	0.00258819
+Marine sediment metagenome DNA, contig	2.98052e-05	1.88914e-05
+UniRef50_G7DLE2	0.013267	0.000630093
+UniRef50_E2PHB7	7.49488e-06	8.30974e-06
+UniRef50_R5GC07	7.2301e-06	8.41253e-05
+UniRef50_F0YDY4	0.000263361	0.000367955
+hypothetical protein	3.01404e-05	0.000495973
+RNA directed DNA polymerase	4.94579e-06	4.99697e-06
+UniRef50_W7WC52	0.000791405	0.000963613
+Uroporphyrinogen decarboxylase	1.55531e-06	3.02812e-06
+PREDICTED	2.39737e-05	2.54765e-05
+Mannosylglycerate hydrolase	0.0037484	0.000344096
+Dinuclear metal center protein, YbgI family	0.000232362	0.00308707
+50S ribosomal protein L19	0.000615781	0.001332
+Opine dehydrogenase	0.021094	0.00143902
+Marine sediment metagenome DNA, contig	1.25657e-05	1.5549e-05
+Periplasmic protein like protein	9.31229e-06	2.11019e-05
+Outer membrane specific lipoprotein transporter subunit LolC	7.29881e-05	2.29939e-05
+Marine sediment metagenome DNA, contig	1.89845e-05	3.28558e-05
+4 hydroxy tetrahydrodipicolinate synthase 2	0.000118642	0.00115606
+Fumarate hydratase class I, aerobic	0.00261251	0.000305207
+Methylthioribose 1 phosphate isomerase	0.00248183	0.000644251
+Putative transcriptional regulator MtlR	0.00448533	0.00161717
+GJ18858	9.09216e-06	2.58533e-05
+Phosphoribosylformylglycinamidine synthase 2	2.25854e-05	3.05297e-06
+UniRef50_R4GH13	9.96359e-06	9.35104e-06
+Potassium transporting ATPase A chain	8.2228e-06	0.00102463
+Polyhydroxyalkanoate synthesis protein PhaF	0.000148696	2.55929e-05
+UniRef50_Q3HKH1	0.0203635	0.003476
+UniRef50_Q3HKH3	0.00212001	0.000799622
+hypothetical protein	0.000285021	0.00047708
+UniRef50_W4TJY2	0.000171157	0.00025784
+PREDICTED	0.000501996	8.90811e-06
+Hypothetical membrane protein	0.00017416	2.6598e-05
+Sugar fermentation stimulation protein homolog	0.00265774	0.000333829
+UniRef50_R7PWU8	0.00141776	0.000536327
+UniRef50_Q2AC94	3.1405e-05	2.15457e-05
+TnpA	0.000539643	0.0001235
+UniRef50_R7PWU3	0.00260636	0.000402987
+Methionyl tRNA formyltransferase	4.08873e-06	7.30562e-06
+hypothetical protein	4.2034e-06	1.59427e-05
+hypothetical protein	1.29127e-05	1.22192e-05
+Glycoside hydrolase, family 18	0.000372915	0.000796376
+Trifunctional purine biosynthetic protein adenosine 3	3.97012e-06	1.25057e-06
+Chorismate synthase	0.0241621	0.0209319
+hypothetical protein	4.65765e-06	5.12383e-06
+LmbE family protein	1.56984e-05	8.54077e-06
+methionine aminotransferase	8.92226e-06	1.02096e-05
+UniRef50_M9RJP3	0.00183269	0.000114376
+UniRef50_F4NWK8	0.000278064	0.000435849
+hypothetical protein	3.02039e-05	1.40716e-06
+Proline iminopeptidase	0.000189473	0.00201833
+UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000195945	0.000393577
+3 oxoacyl [acyl carrier protein] synthase 3	0.000140789	1.38084e-05
+glycerol 3 phosphatase	6.88218e-06	8.30659e-06
+hypothetical protein	9.27442e-06	1.75787e-05
+Actinomycin synthetase II	0.000114579	0.0033001
+Type IV pilus assembly protein PilM	8.85654e-05	0.0168265
+UniRef50_E8SJI8	0.0493164	0.00170854
+PREDICTED	8.10461e-06	2.67659e-05
+amino acid ABC transporter permease	2.04997e-05	2.05722e-05
+UniRef50_P45579	0.00256805	0.000298064
+hypothetical protein	2.5346e-05	2.11284e-05
+Succinate semialdehyde dehydrogenase	0.000404444	0.00264059
+Isopropylmalate homocitrate synthase	0.0193052	0.00212817
+DNA directed RNA polymerase subunit alpha	0.00333349	0.000418213
+hypothetical protein	0.000225139	4.61456e-05
+RNA polymerase sigma B factor	0.0188681	0.00492018
+translation factor Sua5	2.7908e-05	2.31492e-05
+lysyl tRNA synthetase	1.27896e-05	3.72369e-06
+Sensor histidine kinase response regulator	0.00184306	0.000706405
+Sulfurtransferase	0.000484007	0.000490304
+Acetate CoA transferase subunit beta	0.000942867	0.000416404
+LysR family regulatory protein	0.000615497	0.00059465
+IS2 ORFB transposase	0.00752369	0.00147296
+UniRef50_P0AB08	0.00169034	0.000916172
+Acrylyl CoA reductase AcuI	5.38487e-06	3.79903e-05
+hypothetical protein	1.42333e-05	1.38177e-05
+UniRef50_M3DK36	0.00030528	0.000252297
+L serine dehydratase	0.000176149	0.00256206
+glycosyl transferase family 39	1.32426e-05	1.67286e-05
+Sodium	0.000276199	0.0030867
+Lysophospholipase	6.06922e-06	1.01451e-05
+WD 40 repeat containing protein	3.89968e-05	8.74734e-05
+hypothetical protein	1.65364e-05	4.03891e-06
+Magnesium chelatase subunit ChlI homolog	0.00019993	0.00253274
+Allantoate amidohydrolase	0.000207783	0.00378599
+Serine  tRNA ligase	0.00187433	0.000182854
+UniRef50_Q8DSX1	0.0105208	5.69724e-05
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.0137294	0.00602384
+Sensor histidine kinase	0.000173176	0.000201557
+hypothetical protein	2.12989e-05	2.93448e-06
+Fructose like permease IIC component 2	0.00239051	0.000821342
+Uracil DNA glycosylase	0.000290964	5.5909e-05
+UniRef50_A0A034KNE5	7.70499e-05	6.8275e-06
+Molybdopterin guanine dinucleotide biosynthesis protein B	0.000174982	0.000341387
+PREDICTED	6.83708e-06	1.91393e-05
+Arginine decarboxylase	4.92762e-05	0.000377675
+UniRef50_A7WWP7	0.0192586	0.00455552
+Transcriptional regulator, LysR family	0.00258118	0.00067102
+UniRef50_R0PPD5	0.000399069	0.000348003
+Inner membrane translocator	0.00844401	0.00068706
+hypothetical protein	0.000110034	2.11126e-05
+UniRef50_K7E2E5	0.000110225	2.94803e-05
+Putative MAGNESIUM CHELATASE domain protein	5.45275e-05	0.000256296
+50S ribosomal protein L13	0.0183091	0.00219793
+50S ribosomal protein L6	0.00464789	0.00689228
+UniRef50_A0A011QAN2	1.29663e-05	1.08384e-05
+Proline iminopeptidase	0.00735749	0.000601528
+C4 dicarboxylate transport transcriptional regulatory protein DctD, partial	0.000188719	0.000172663
+3 phenylpropionate cinnamic acid dioxygenase subunit beta	0.00789259	0.00284477
+UPF0763 protein HPSH_03535	0.000246857	0.00156229
+Transcriptional regulator, GntR family aminotransferase, classes I and II family protein	0.00215141	0.000492771
+UniRef50_A0A016QN34	2.75856e-05	0.00697647
+hypothetical protein	1.43869e-05	1.17173e-05
+Coproporphyrinogen III oxidase 	0.000437818	0.000175521
+hypothetical protein	5.93557e-06	3.80252e-06
+competence damage inducible protein A	1.57555e-05	3.91896e-06
+ribosome binding factor A	4.9515e-05	5.04712e-05
+Formate dehydrogenase O iron sulfur subunit	0.00321164	0.000392198
+Glyceraldehyde 3 phosphate dehydrogenase A	7.76629e-05	0.00167706
+hypothetical protein	4.81399e-05	4.95765e-06
+CheA signal transduction histidine kinase	0.000529155	0.0011539
+acyltransferase family protein	4.50389e-06	3.52984e-06
+UniRef50_R7PX72	0.00260225	8.50235e-05
+Archaeal glutamate synthase [NADPH]	0.00299543	0.000460557
+4 hydroxy tetrahydrodipicolinate synthase	0.00040814	0.000221045
+Transposase domain protein	0.000225776	3.54004e-05
+UniRef50_K0S542	0.000677521	5.90071e-05
+UniRef50_W9UW01	0.000152767	0.000338918
+Ribosomal RNA large subunit methyltransferase F	0.00131459	0.00112352
+UniRef50_K0Q3E4	2.93743e-05	0.00077472
+Arginine biosynthesis bifunctional protein ArgJ	2.36513e-05	0.000787815
+Putative 3 oxopropanoate dehydrogenase	0.000452455	0.00017098
+UniRef50_A4WZZ2	0.0092693	0.00349341
+glycine betaine ABC transporter ATPase	1.04408e-05	8.71452e-06
+Putative methyl coenzyme M reductase, alpha subunit	0.000870021	0.000105158
+hypothetical protein	1.6762e-05	1.35436e-05
+Miniconductance mechanosensitive channel YbdG	0.00302623	0.000347244
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO 1	6.29709e-06	2.65044e-06
+Enoyl CoA hydratase carnithine racemase	0.000268523	0.00243214
+Mannitol 2 dehydrogenase	0.00317688	0.000125883
+Putative GTP cyclohydrolase 1 type 2	0.00204519	0.000580613
+hypothetical protein	4.41356e-06	1.38409e-05
+Marine sediment metagenome DNA, contig	1.32326e-05	1.06034e-05
+Predicted protein 	6.47488e-05	7.91963e-05
+ABC transporter, periplasmic oligopeptide binding protein	0.0102415	0.00164309
+50S ribosomal protein L25	0.00839519	0.000147188
+Sterol 3 beta glucosyltransferase	0.000676771	0.000676244
+UniRef50_M1MJB2	0.000300909	0.00248317
+DNA 3 methyladenine glycosylase	2.22478e-05	1.37608e-05
+HTH type transcriptional regulator McbR	0.00274323	0.000145283
+Valine  tRNA ligase	1.85627e-06	1.04275e-06
+UniRef50_F2AE12	9.56306e-05	3.09741e-05
+PREDICTED	3.03827e-06	1.99859e-05
+UniRef50_S2ZSD0	8.41028e-06	1.01793e-05
+UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase	0.000281675	0.00214863
+hypothetical protein	4.21718e-06	1.34674e-05
+UniRef50_I1F566	2.32795e-05	2.13431e-05
+UniRef50_F8JEF7	0.000438935	6.23985e-05
+MFS transporter	8.77442e-06	2.94717e-05
+NADH quinone oxidoreductase subunit E 1	0.000400418	4.8587e-05
+Dihydroneopterin aldolase	0.000281238	0.00289629
+Penicillin binding protein 1A	0.00399928	0.00079688
+UniRef50_Q08NZ6	9.65718e-06	0.000110275
+Marine sediment metagenome DNA, contig	0.000210116	7.75295e-06
+hypothetical protein	0.000444966	6.37262e-05
+Small heat shock protein	0.016618	0.000372551
+Predicted protein	3.80814e-06	4.52726e-05
+tRNA processing ribonuclease	0.000104302	0.0026833
+cation transporter	5.61271e-06	1.19677e-05
+Heme exporter protein C	0.00564948	0.00137332
+UniRef50_E8W5Y1	0.000120053	2.48027e-05
+UniRef50_P77131	0.00307496	0.000186645
+Transcriptional regulator, LuxR family	0.00403458	0.000446474
+Lipoprotein signal peptidase	0.00336974	0.0011207
+OmpA MotB domain protein	0.00568428	0.00120097
+DNA primase	2.61702e-06	3.56492e-06
+Substrate specific component BL0695 of predicted ECF transporter	4.54557e-05	0.00271047
+UniRef50_K6XJA6	4.48429e-05	0.000263147
+AAA domain   AAA domain multi domain protein	1.66756e-05	0.00312408
+hypothetical protein	4.61345e-06	6.60838e-06
+hypothetical protein	3.86743e-05	1.58505e-05
+UniRef50_F3X0N5	3.70132e-06	7.82769e-06
+ABC type transporter ATP binding protein EcsA	0.0137455	0.00100272
+UniRef50_Q6K4U0	0.000173181	9.07577e-06
+Excinuclease	9.45652e-05	0.000209457
+Transcriptional regulator, GntR family	0.00013907	0.0032569
+Glutathione synthetase	2.02842e-06	1.33836e-05
+UniRef50_D2FKD3	0.000106635	9.34349e-06
+Molybdopterin synthase adenylyltransferase	0.00296483	0.000142876
+Beta lactamase domain protein	4.81069e-06	5.36984e-05
+PREDICTED	2.59959e-05	8.25419e-06
+Translation initiation factor 2 subunit gamma	0.00217216	0.00053849
+Acetolactate synthase	0.000512267	0.000526813
+Diaminopimelate decarboxylase	3.93107e-06	5.40469e-06
+Oxidoreductase domain protein	0.000610889	0.000167275
+Transposase InsF for insertion sequence IS3A	0.0153077	0.00686474
+Glycine betaine carnitine transport ATP binding protein GbuA	0.00040498	0.0036187
+hypothetical protein	2.66542e-05	1.71085e-05
+TraW	0.0315294	0.00502156
+PREDICTED	8.37743e-06	6.35533e-05
+Aspartokinase	0.0149528	0.0020576
+P0044F08.26 protein	0.000190488	1.60913e-05
+S layer protein, putative	9.54354e-06	0.000776547
+Fimbrial protein	1.60867e-05	2.85548e-05
+Light independent protochlorophyllide reductase subunit B	0.00304577	0.000949177
+Formiminoglutamate deiminase	0.000110223	6.8748e-05
+DNA polymerase III subunit tau	0.0032221	0.000778752
+UniRef50_R1CZX5	9.79953e-06	0.000216468
+UniRef50_A0A009JRB9	8.48442e-05	0.000471565
+hypothetical protein	3.03473e-05	4.78011e-06
+O succinylbenzoate synthase	4.22705e-05	0.00121445
+UniRef50_B9DX48	0.000283443	0.000436254
+1 deoxy D xylulose 5 phosphate synthase	1.81742e-06	5.84472e-05
+CobQ CobB MinD ParA nucleotide binding domain protein	1.69823e-05	1.55214e-05
+Lipopolysaccharide core heptose kinase RfaY	0.00130125	0.00218158
+UniRef50_U3SVH6	0.00367294	0.000773946
+UniRef50_P76269	0.00265289	0.00172861
+Transposase, IS605 OrfB family	4.68731e-05	0.000332999
+hypothetical protein	1.03547e-05	0.000652678
+Periplasmic binding protein	6.11056e-06	6.49203e-05
+ADP ribose pyrophosphatase	1.44951e-05	2.65639e-05
+hypothetical protein	2.57554e-05	2.61477e-05
+UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU	0.00453288	0.00037408
+UniRef50_K8DBK5	7.72248e-06	1.10895e-05
+C4 dicarboxylate transport protein	0.000605209	0.000804179
+UniRef50_U2ACI4	0.000103679	1.94787e-05
+UniRef50_K2FH00	4.26127e-05	1.18189e-05
+Two component sensor kinase	0.000137655	0.000678262
+UniRef50_F4REI7	1.42711e-05	0.000465344
+Permease, major facilitator superfamily	6.98717e-05	0.00251434
+5,10 methylenetetrahydromethanopterin reductase	0.00280911	0.000745629
+Major ampullate spidroin 	1.9025e-05	1.96777e-05
+UniRef50_X6L226	0.000195568	2.11036e-05
+hypothetical protein	0.000115042	2.06661e-05
+UniRef50_Q9RVN4	0.000351793	0.00241478
+Threonine synthase	0.000380295	0.000658999
+UPF0229 protein CKR_0568	0.000469488	0.00056637
+hypothetical protein, partial	7.61066e-05	9.62814e-05
+Anthranilate phosphoribosyltransferase	0.00100874	0.000306227
+UniRef50_A0A023AZW8	2.09789e-06	5.05069e-06
+Histidine kinase	0.000154384	0.000716413
+UniRef50_K7UKE5	1.5402e-06	3.92321e-06
+Sensor protein ZraS	0.0036543	0.000144178
+UniRef50_I0HXP3	1.21197e-05	1.04877e-05
+UniRef50_F2U1N7	8.13453e-06	1.03799e-05
+Flagellar basal body rod protein FlgF	0.00112874	0.000447883
+ABC transporter	6.10698e-06	2.35862e-06
+Cytochrome C type biogenesis protein DsbD	0.0017247	0.000818871
+UniRef50_W7TIW7	0.000676706	1.81032e-05
+Asparagine  tRNA ligase	0.0191214	0.00552611
+Protein map	0.000840186	5.11303e-05
+PTS system, mannose fructose sorbose specific IID component	0.000619456	0.00100487
+ATP dependent protease subunit HslV	0.00044382	0.000688025
+GM12486	0.000118087	3.5658e-06
+NUDIX hydrolase	1.31847e-05	1.69738e-05
+UniRef50_I3LMH8	6.59818e-05	1.26087e-05
+UniRef50_A0A021VVK4	2.37012e-06	4.18678e-06
+Glycoside hydrolase, family 3 domain protein	0.000675958	0.000791982
+Beta ketoacyl synthase	0.000170977	7.30552e-05
+Dimodular nonribosomal peptide synthase	1.97754e-06	5.89e-06
+Outer membrane protein assembly factor BamA	0.000809207	4.80904e-05
+UniRef50_E3A4Y7	0.000481176	0.000324483
+Delta aminolevulinic acid dehydratase	2.08128e-05	0.00426509
+PREDICTED	2.45688e-06	3.58842e-06
+Drug resistance transporter, EmrB QacA subfamily	0.00775911	0.00144515
+UDP N acetylmuramate  L alanine ligase	1.02989e-05	2.84415e-06
+30S ribosomal protein S2	5.83896e-06	1.39595e-05
+hypothetical protein	5.00196e-06	2.09717e-06
+Response regulator receiver sensor signal transduction histidine kinase	0.000279181	0.00122585
+UniRef50_P63299	0.00164244	0.00143955
+Imidazole glycerol phosphate synthase subunit HisF	0.0037292	0.000215829
+Lipolytic protein, G D S L family	0.000239253	0.00016535
+hypothetical protein	2.3314e-05	2.8491e-05
+Membrane bound lytic murein transglycosylase	0.000148477	0.000256546
+hypothetical protein	6.96606e-06	0.000298436
+UniRef50_G7ZMW5	0.0235155	0.00359378
+hypothetical protein	4.37478e-05	9.77824e-06
+UniRef50_P77219	0.000210343	0.000187052
+formyltetrahydrofolate deformylase	9.82066e-05	9.28895e-06
+UniRef50_K0RS76	0.000102574	0.000123648
+UniRef50_B9E3T3	0.000200104	0.00032178
+Tape measure domain protein	6.55959e-07	5.7706e-05
+hypothetical protein	2.44351e-05	8.74161e-06
+urea ABC transporter ATP binding protein	2.03112e-05	7.91355e-05
+hypothetical protein	2.0852e-05	4.27093e-06
+Permease for cytosine purine, uracil, thiamine, allantoin family protein	7.99403e-05	0.000377626
+Short chain dehydrogenase reductase family protein	0.00881707	0.000238472
+UniRef50_I3FPW3	0.000642099	0.000125749
+Unnamed protein product	1.25757e-05	7.45977e-05
+UniRef50_S5RNF0	0.00442041	0.000270245
+hypothetical protein	9.06842e-05	2.01705e-05
+UniRef50_I6Y0P6	5.19785e-06	1.38989e-05
+UniRef50_K7V3T8	1.41062e-05	3.1044e-06
+Cobalt ABC transporter, permease component, CbiQ	0.00351048	0.000261449
+PTS system, mannitol specific IIC component   PTS system, mannitol specific IIB component   PTS system,mannitol specific IIA component	0.00219174	0.00093978
+UniRef50_K1V9J2	6.91728e-05	6.59367e-05
+hypothetical protein	1.59018e-05	0.000302224
+ABC transporter substrate binding protein	0.0147726	0.00205462
+UniRef50_V1D3F0	0.000430162	6.00019e-05
+UniRef50_A5ITY3	0.00482588	0.000516836
+UniRef50_A5ZJT5	0.00090479	0.000338933
+Metalloproteinase, extracellular matrix glycoprotein VMP22	4.08842e-06	5.53453e-06
+Putative transposase IS66 family	4.11017e-06	8.80263e-06
+hypothetical protein, partial	2.85895e-05	2.24675e-05
+PTS system, galactitol specific IIB component	0.00103005	0.000369485
+UniRef50_I4XYD4	0.000114306	9.97651e-05
+Molybdate ABC transporter, periplasmic molybdate binding protein	0.00164161	0.001131
+Anthranilate synthase component 2	1.74936e-05	7.79106e-06
+UniRef50_U2YVN6	0.000132207	2.85825e-05
+Chromosome undetermined SCAF13832, whole genome shotgun sequence	4.70997e-05	9.92904e-06
+UniRef50_Q5VRS0	5.62774e-05	3.29144e-05
+Phosphorylase	0.00504683	0.0010841
+PREDICTED	1.20182e-05	1.15595e-05
+Late competence protein ComGA	0.0196544	0.00335435
+UniRef50_E2ZYI5	0.000194163	0.000515809
+Putative glycin rich signal peptide protein	3.27788e-05	4.05574e-06
+Mlr7561 protein	2.30103e-06	2.0503e-06
+UniRef50_W0AF71	8.73656e-05	3.2078e-05
+PREDICTED	6.98346e-06	1.99358e-05
+UniRef50_A6LZF1	0.000688532	0.000140289
+50S ribosomal protein L10	0.0191815	0.000971577
+NADH quinone oxidoreductase subunit J	0.00072099	0.000281122
+hypothetical protein STEHIDRAFT_80731	2.94298e-06	1.84791e-05
+hypothetical protein	9.94294e-06	1.51598e-05
+dihydroorotase	3.66976e-06	2.90484e-05
+BASS family bile acid	0.000391058	0.00246236
+Probable aminomethyltransferase	6.17575e-06	3.05136e-06
+LysR family transcriptional regulatory protein	0.000113699	0.00167742
+Multidrug resistance translocase	0.000235109	0.00113071
+Binding protein dependent transport systems inner membrane component	0.000164975	0.000276261
+Signal peptidase I	0.000278139	0.000526161
+Methionine import ATP binding protein MetN	2.24373e-05	1.7391e-05
+UniRef50_I6U0Z0	0.00407811	0.000486003
+hypothetical protein	1.23514e-05	2.75334e-06
+Lipoprotein releasing system ATP binding protein LolD	9.45537e-06	1.37123e-05
+UniRef50_D4M6I9	0.0116965	0.00151704
+UniRef50_H0I183	3.76009e-05	3.01565e-05
+2 isopropylmalate synthase	3.15875e-06	6.70508e-06
+Dihydroneopterin aldolase	0.000560137	0.000856357
+Multidrug ABC transporter, permease component	0.00188166	0.000192604
+Phage infection protein	2.73986e-06	0.000144072
+Sigma 54 factor, interaction domain containing protein	0.000180401	0.000620671
+Holliday junction ATP dependent DNA helicase RuvB	0.0152532	0.0169845
+UniRef50_F5LXC8	0.00411301	0.000340866
+Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family	9.33168e-05	0.00296899
+ABC 2 type transporter	0.00740225	0.000531804
+glutaredoxin	5.79575e-06	2.22985e-05
+Acyl CoA synthetase AMP acid ligases II	0.00019017	0.00314158
+UniRef50_W7Q7T2	6.80391e-05	2.33839e-05
+sugar ABC transporterATPase	4.26416e-05	4.06572e-05
+Riboflavin biosynthesis protein RibC	8.10448e-06	0.000106129
+Single stranded DNA specific exonuclease RecJ	0.00835795	0.000595685
+UniRef50_E3HWF4	0.000196336	0.000284751
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	3.83658e-05	8.91472e-06
+UniRef50_Q796Q6	0.000253805	0.00090574
+hypothetical protein	9.48733e-06	3.57173e-05
+hypothetical protein	1.23445e-05	6.41797e-06
+RsbR, positive regulator of sigma B	2.24011e-05	0.000668653
+Glutathione regulated potassium efflux system ancillary protein KefF	0.00517647	1.08563e-05
+hypothetical protein, partial	0.000138452	0.000236845
+hypothetical protein	5.91943e-06	9.91546e-07
+Marine sediment metagenome DNA, contig	2.94393e-05	3.03481e-05
+UniRef50_H0Z2E2	0.000574184	0.000160347
+ABC transporter, inner membrane subunit	0.00730119	0.00132686
+Radical SAM domain protein	0.00105494	0.000173054
+ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752	3.8651e-06	1.86126e-05
+Dipeptidase family protein	0.000365995	0.000368308
+Carbamoyl phosphate synthase small chain	0.000181826	0.000138897
+6 phospho beta glucosidase	0.00292927	0.00106514
+hypothetical protein	0.00106124	4.38155e-05
+MaoC domain protein dehydratase	0.00666155	0.00224017
+SEC C motif domain protein	0.000334519	0.000386223
+hypothetical protein	1.92861e-05	6.59588e-06
+Protein mrp homolog SalA	0.0269025	0.00444713
+UniRef50_A9B5M8	5.53628e-06	0.000135272
+UDP glucose 4 epimerase	0.00614771	0.00159532
+Zinc import ATP binding protein ZnuC	1.50564e-05	4.03456e-06
+Tyrosine  tRNA ligase	3.68824e-06	3.66377e-05
+UniRef50_A3VHM4	6.55311e-05	7.06388e-06
+hypothetical protein	1.27072e-05	2.11361e-05
+Modification methylase DpnIIA	0.00430541	0.000417837
+UniRef50_C6W622	6.70971e-05	1.65879e-05
+peptide ABC transporter permease	2.04451e-05	4.87366e-06
+DNA 3 methyladenine glycosidase I	0.000183906	0.000823714
+UniRef50_E6YU01	2.0449e-05	2.2328e-05
+General stress protein 13	0.00397673	0.000897792
+D methionine binding lipoprotein MetQ	0.00413833	0.000409912
+Putative thioesterase	1.37591e-06	0.000439735
+UniRef50_X7FDP3	0.000260103	2.54326e-05
+CAAX protease	0.000758957	0.000152695
+D serine D alanine glycine transporter	0.000700508	0.000145022
+UniRef50_M8AG73	3.28389e-05	7.40181e-06
+UniRef50_G4UTF3	1.58148e-06	8.09124e-06
+Membrane bound lytic murein transglycosylase F	0.00240065	0.000406843
+UniRef50_U1Y4T1	7.57376e-05	1.75686e-05
+Malate synthase G	0.00251931	0.000222306
+UniRef50_I0E6L1	0.000877104	0.000747414
+hypothetical protein	0.000299772	0.00013136
+UniRef50_B9KP07	0.00440684	0.000641606
+Universal stress protein family protein	0.00447585	0.00105624
+Holo [acyl carrier protein] synthase	1.87073e-05	1.01926e-05
+Cobyrinic acid a,c diamide adenosyltransferase	0.000132539	4.89458e-05
+Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.00147558	0.000214284
+50S ribosomal protein L13	0.000564758	3.90681e-05
+Marine sediment metagenome DNA, contig	1.90919e-05	2.08086e-05
+Carbohydrate esterase, family 1	1.75232e-06	6.34418e-06
+MerR family transcriptional regulator	2.23284e-05	1.32005e-05
+hypothetical protein, partial	3.61297e-05	6.83624e-05
+Bifunctional protein FolD	1.78673e-05	1.73011e-06
+Acetylornithine aminotransferase	1.10375e-05	1.98486e-05
+Anthranilate synthase component 1	1.12079e-05	9.265e-06
+UniRef50_A0A058V0Y9	0.000166578	0.000146678
+branched chain amino acid aminotransferase	0.000130449	1.30226e-05
+UniRef50_L1KZM9	7.19081e-05	0.000410098
+Phosphoglucosamine mutase	4.32258e-06	1.5005e-05
+Ferredoxin	0.000164516	0.00143194
+Cysteine desulfurase IscS	0.000270566	0.00066214
+LPS assembly protein LptD	0.000152582	0.00231093
+Transposase	0.000158529	1.48848e-05
+FlaF protein	2.24256e-05	2.02071e-05
+hypothetical protein	5.77442e-05	3.30657e-06
+hypothetical protein	3.05775e-06	4.2695e-06
+3 oxoacyl [acyl carrier protein] synthase II	0.00491803	0.00106895
+peroxiredoxin	1.63452e-05	9.69312e-05
+UniRef50_P44978	0.00354204	0.000117366
+UniRef50_A5UK42	0.00238176	0.000978345
+PREDICTED	3.09498e-05	0.000288697
+50S ribosomal protein L1	0.00448188	0.00469645
+UniRef50_W2BRM3	9.76537e-06	2.52736e-05
+UniRef50_C3YW49	3.3848e-05	7.66654e-06
+Marine sediment metagenome DNA, contig	0.000131592	4.03412e-05
+UniRef50_M2QYI1	0.000123599	7.54672e-05
+Fructose 1,6 bisphosphatase class 3	0.01113	0.00148885
+Fatty acid oxidation complex subunit alpha	5.21699e-06	5.82787e-06
+Homoserine kinase	0.000235899	0.00334604
+PE PGRS family protein	1.31322e-05	6.25308e-05
+hypothetical protein	3.65137e-05	9.36933e-06
+hypothetical protein	1.97507e-05	4.77776e-06
+Anti sigma factor, FecR family	2.15564e-05	5.16983e-06
+Uroporphyrinogen III C methyltransferase	6.24873e-05	4.57997e-06
+Sensor protein GacS	2.21389e-06	2.59344e-06
+hypothetical protein	2.6371e-06	7.73057e-06
+delta aminolevulinic acid dehydratase	4.03168e-05	1.80265e-05
+Two component transcriptional regulator, winged helix family	0.00997651	0.00116216
+UniRef50_G7M0N1	0.000578308	0.000319255
+Flagellar biosynthesis type III secretory pathway ATPase FliI	0.000481404	0.000289835
+UniRef50_G7M7Z8	0.000190499	0.000386289
+hypothetical protein, partial	1.79865e-05	4.60847e-06
+Beta gamma crystallin domain containing protein	1.15419e-05	8.54899e-06
+Thiamine biosynthesis protein ThiC 	7.34913e-06	1.57326e-05
+hypothetical protein	1.9441e-05	1.81716e-05
+Clp protease ClpS	0.00081941	0.000211604
+DNA polymerase III, delta subunit	0.000645764	9.18985e-05
+osmotically inducible protein OsmC	1.24893e-05	0.000118587
+Phosphinothricin N acetyltransferase	0.0211758	0.00320784
+Ribonuclease 3	2.13672e-05	3.42868e-05
+hypothetical protein	1.91817e-05	1.00109e-05
+Inosine uridine preferring nucleoside hydrolase	0.000248908	0.000221409
+Bifunctional protein GlmU	8.77953e-05	0.00141007
+ATP synthase subunit a	0.000836515	0.00290857
+ATPase P	3.19421e-06	8.11796e-06
+hypothetical protein	3.40516e-06	2.7655e-06
+UniRef50_U3T2I1	0.000224111	0.00357042
+hypothetical protein	0.000118091	1.47041e-05
+Coproporphyrinogen III oxidase, anaerobic	0.0156484	0.000622006
+amino acid permease, partial	3.02504e-05	4.26042e-05
+Cytochrome B6	0.000190623	0.0229982
+potassium transporter	5.25348e-06	0.00185877
+Magnesium protoporphyrin chelatase, putative	9.34881e-06	5.80376e-05
+hypothetical protein	0.00118204	0.000103584
+UniRef50_I3UM32	0.000186664	0.000120579
+UniRef50_D2ZQ55	0.000739489	0.000375669
+Putative secreted protein	4.18129e-05	3.84139e-06
+hypothetical protein, partial	0.000266012	1.99956e-05
+Thymidine kinase	4.24535e-05	1.71151e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	1.98602e-05	1.81377e-05
+UniRef50_G4R5C5	5.57782e-05	3.66461e-05
+NADH ubiquinone oxidoreductase chain 4	2.30513e-05	5.41122e-06
+UniRef50_T1Y5K7	0.00774732	0.00224555
+Putative non ribosomal peptide synthetase	0.000169119	0.00318608
+UniRef50_Q2RYK8	9.23888e-06	0.000457499
+UniRef50_U6LIK5	2.24627e-06	1.80968e-06
+Dipeptide transport ATP binding protein DppF	0.00307821	0.000823093
+UniRef50_M0RKR1	0.000205283	0.000212463
+uroporphyrinogen decarboxylase	8.60326e-06	5.27522e-06
+Paraquat inducible protein B	0.00100456	0.000184339
+cupin, partial	0.000151739	2.01573e-05
+ABC transporter substrate binding protein	7.34297e-05	1.43178e-05
+3 oxoacyl [acyl carrier protein] synthase 3 protein 2	0.0013316	0.000380717
+ABC transporter, solute binding protein	0.000203305	0.00183188
+First mannosyl transferase	0.000287171	0.0341871
+UvrC excinuclease ABC subunit C	0.00336286	0.000424497
+hypothetical protein	5.13031e-05	4.09583e-05
+Pyridoxal phosphate phosphatase YigL	0.00221821	0.000113652
+Genomic scaffold, scaffold_6	2.59633e-05	0.000236449
+diguanylate cyclase	2.80498e-06	6.60543e-06
+Cytochrome c type protein TorY	0.00243481	0.000273471
+Elongation factor G	0.0206524	0.0334639
+Ribose import ATP binding protein RbsA 2	0.000123644	4.44659e-05
+hypothetical protein	0.000142062	1.81424e-05
+ATPase like protein	0.00975025	0.00140012
+UniRef50_E3FF38	0.00021361	0.000219565
+PREDICTED	8.19976e-05	4.18741e-05
+Flagellar motor switch protein FliY	0.000164975	0.00172627
+Inner membrane ABC transporter permease protein YcjP	0.00282776	0.000150899
+hypothetical protein	8.60323e-06	0.000702388
+UniRef50_C5N0V3	0.0130019	0.00103857
+Na+ antiporter NhaC	0.0185017	0.00356985
+Glucitol sorbitol permease IIC component	0.00501374	0.00732524
+UniRef50_F5TRU1	5.14778e-05	6.69235e-05
+acetyl CoA acetyltransferase	6.60467e-06	9.56051e-05
+Probable fimbrial chaperone YehC	0.00516424	0.000148897
+UniRef50_F0LCD7	3.39522e-05	4.34652e-05
+hypothetical protein SMAC_10608, partial	0.000495248	0.000109328
+Multiple antibiotic resistance protein MarR	0.000905322	0.00278555
+UniRef50_D8UG15	8.6724e-06	3.03839e-06
+Predicted protein 	8.7777e-05	1.59001e-06
+ATP dependent DNA helicase PcrA	0.0186434	0.00361697
+ATP synthase subunit alpha	5.37703e-06	9.94396e-06
+glutathione dependent formaldehyde activating protein	8.52875e-05	1.64798e-05
+Outer membrane protein	9.07955e-05	0.00292494
+N acetylneuraminic acid outer membrane channel	0.000663236	0.000127837
+UniRef50_G9A5Y6	1.96654e-05	7.92954e-06
+cytochrome C	0.000606823	6.64389e-05
+hypothetical protein	0.00112357	5.90495e-05
+Nucleoside triphosphate pyrophosphohydrolase	0.00301047	0.000210269
+Biotin synthesis protein bioC	0.0194177	0.00187319
+Triacylglycerol lipase	0.000261909	0.00203892
+Predicted DNA binding protein	0.00153821	0.000699285
+UniRef50_Q9HYR3	0.000253044	0.000273734
+UniRef50_R7EGC5	1.60461e-05	1.15211e-05
+Transcriptional regulator, XRE family	0.000427704	0.000355268
+ABC transporter permease	5.95145e-06	4.82622e-06
+ABC transporter	9.22722e-06	3.69672e-06
+hypothetical protein	0.000139114	7.15563e-05
+Aminopeptidase N	3.87878e-05	0.00188679
+UniRef50_G8TQ95	6.50132e-06	0.000371977
+UniRef50_C5N3Z5	0.00657033	0.000526224
+Tripartite ATP independent periplasmic transporter, DctQ component	0.00775781	0.00112356
+Phage minor structural, N terminal region domain protein	0.017508	0.00196355
+UniRef50_Q0S8U9	3.80507e-05	1.16481e-05
+Truncated transposase	0.001781	0.00140426
+UniRef50_A0A023XH87	2.58817e-05	1.05188e-05
+UniRef50_I6TVV9	0.0089341	0.00157694
+Phenazine biosynthesis protein, PhzF family	0.000331698	0.000950694
+Short chain dehydrogenase reductase SDR	8.6049e-06	1.86035e-05
+PREDICTED	5.25246e-06	5.06011e-05
+D beta hydroxybutyrate dehydrogenase	0.00529622	0.00202436
+hypothetical protein	0.0190045	0.00109716
+Predicted O linked GlcNAc transferase	0.00202444	0.000187346
+hypothetical protein	2.23872e-05	8.0559e-06
+Molybdenum cofactor guanylyltransferase	0.000507452	0.00387814
+UniRef50_J0D4G5	1.49362e-05	4.7727e-05
+ABC transporter, permease protein	0.00669599	0.000913114
+UniRef50_T1JDG9	9.33395e-06	2.89251e-05
+hypothetical protein	3.86331e-06	0.000471733
+UniRef50_A6LRT5	0.000161285	0.000945366
+UniRef50_A6LRT4	0.000212834	0.00104934
+UniRef50_A6LRT6	0.000529674	0.000570582
+hypothetical protein	8.0117e-06	0.000125523
+UniRef50_G2P517	7.28719e-06	0.000270719
+UniRef50_A3PIB1	0.000737733	0.000637717
+Undecaprenyl diphosphatase	0.0207623	0.00121202
+Serine protease HtrA like	0.00762429	0.00103749
+DEAD DEAH box helicase	1.50308e-06	9.8095e-05
+Predicted acetylesterase	0.00103614	0.000291675
+Nucleoside diphosphate kinase	4.11331e-05	9.62975e-06
+UniRef50_B9J455	8.54566e-05	0.000752913
+hypothetical protein, conserved	5.50067e-06	2.56219e-06
+tRNA  2 O) methyltransferase	0.00283394	0.0123518
+hypothetical protein	2.44471e-05	0.000185796
+Guanosine 3,5 bis 3 pyrophosphohydrolase	0.000514589	0.000215594
+hypothetical protein	1.29666e-05	4.34223e-05
+FMN dependent NADH azoreductase	0.000339948	0.000322647
+Sua5 YciO YrdC YwlC family translation factor	0.00238089	0.00212772
+Ion channel	0.000405345	0.00251488
+hypothetical protein	1.46516e-06	4.9336e-05
+UniRef50_Q9RZL0	0.000159502	0.0119118
+Bifunctional dihydrofolate reductase thymidylate synthase 2	1.81469e-05	2.05571e-05
+Leucine rich repeat domain protein 	2.60592e-07	0.000895857
+UniRef50_Q9RZL3	0.000217128	0.0333503
+UniRef50_D3A510	8.8886e-05	4.87046e-06
+Siroheme synthase	2.59657e-06	1.06875e-05
+NADH quinone oxidoreductase subunit D 1	9.26052e-06	1.37126e-05
+UniRef50_A0A036LTT5	0.0160758	0.00472552
+tRNA dihydrouridine synthase A	0.00255603	0.0147068
+Acylglycerol lipase	0.000447923	0.00027775
+hypothetical protein	2.05151e-05	4.03028e-06
+Fibrocystin L like protein	6.12982e-06	8.18729e-06
+hypothetical protein	0.000106166	2.55571e-05
+UniRef50_E1XQA2	0.00347811	0.00163918
+3 dehydroquinate dehydratase 2	8.69622e-05	7.57999e-05
+Histidine ammonia lyase	4.41846e-06	3.1045e-06
+Sodium hydrogen exchanger family protein	0.0028089	0.00035622
+GGDEF family protein	0.000373411	0.0483627
+UniRef50_H9KM06	0.000182182	7.01374e-05
+UniRef50_B6XVC7	3.56063e-05	0.000749537
+Ribosome maturation factor RimM	0.00150382	0.000641522
+Tryptophan synthase beta chain	0.000372674	0.000684847
+LamB YcsF family protein	0.000210845	2.91202e-05
+50S ribosomal protein L22	2.02406e-05	0.000105603
+Methionine aminopeptidase	0.00240489	0.000152436
+Periplasmic trehalase	0.00277113	0.000340663
+uridine kinase	7.62314e-06	0.000289274
+hypothetical protein	1.0297e-05	6.2922e-06
+hypothetical protein	0.000601911	0.000241191
+NAD specific glutamate dehydrogenase	2.8231e-06	0.000158719
+Trigger factor	2.80486e-05	8.83917e-06
+Chorismate synthase	2.14047e-05	0.000105799
+1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.00113572	0.000664027
+ATP dependent DNA helicase RecQ	6.49392e-05	2.04723e-05
+Argininosuccinate synthase	0.00341817	0.00893559
+nitrogen regulation protein NR	1.21985e-05	9.59641e-06
+hypothetical protein	6.81661e-06	3.90272e-06
+UniRef50_B9V2B9	0.00723077	0.00630263
+Acetolactate synthase large subunit	1.20021e-05	0.000565691
+alpha beta hydrolase	2.52439e-05	1.96871e-05
+TadC family type II IV secretion system protein, partial	0.00200759	0.000662827
+Ribulose 5 phosphate 3 epimerase	0.000308289	0.00116166
+Diaminopimelate epimerase	0.000515046	0.000228013
+Probable N methylproline demethylase	0.00407194	0.000390142
+LuxR family transcriptional regulator	2.63281e-05	6.88782e-05
+Peptidase U35, phage prohead HK97	1.44672e-05	1.09873e-05
+UniRef50_M9RCR3	1.70634e-05	2.64001e-05
+Aminoglycoside phosphotransferase	0.00126634	0.00289994
+UniRef50_G7Z5T4	2.20575e-05	1.8966e-05
+Methanogen homoaconitase large subunit	0.00197758	0.000438144
+Glycerol 3 phosphate transporter	0.0196507	0.00272174
+UniRef50_F2U516	7.78747e-05	2.52435e-06
+UniRef50_V6QC91	0.000140367	3.39284e-05
+FKBP type peptidyl prolyl cis trans isomerase SlyD	6.54833e-05	9.80549e-06
+UniRef50_Q8DTK1	0.00250617	0.000358624
+hypothetical protein	2.76975e-06	9.82606e-06
+Band 7 stomatin like protein	0.000426805	0.000911735
+Carbonic anhydrase	0.000739239	0.000259631
+Major facilitator family transporter	8.68139e-05	0.00172457
+NmrA family protein	0.00661171	0.000861359
+hypothetical protein PFL1_03008	9.26772e-05	5.30162e-05
+Protein sirB1	0.00136803	0.000112091
+hypothetical protein	2.24354e-05	0.000249902
+TRAP proton dicarboxylate symporter, large membrane protein component	0.00769362	0.001529
+Protein translocase subunit SecD	0.000135705	0.00023197
+ATP phosphoribosyltransferase	0.0136593	0.0026205
+UniRef50_B9KLF6	0.00411137	0.000928313
+UniRef50_A7A2K7	0.000363296	5.56567e-06
+UniRef50_B9KLF4	0.0014009	9.55158e-05
+30S ribosomal protein S3	0.000755436	0.000944523
+hypothetical protein	1.15263e-05	1.89345e-05
+UniRef50_A1AH06	0.00280873	0.000177303
+Transporter, small conductance mechanosensitive ion channel family protein	0.000741402	0.00308274
+hypothetical protein	8.55118e-06	7.55958e-06
+UniRef50_V5ERF8	1.72982e-05	6.64573e-06
+S adenosylmethionine synthase	0.00663734	0.000625411
+Carbamoyl phosphate synthase small chain	9.18738e-06	0.000348106
+MpaA family protein	0.000965459	0.000209289
+lysyl tRNA synthetase	3.4647e-06	1.54179e-05
+Radical SAM domain protein	0.00452543	0.00494117
+PREDICTED	3.77232e-05	2.10987e-05
+DNA ligase B	0.00278769	0.000235597
+GGDEF family protein	0.00993651	0.00467853
+UniRef50_Q5LYF9	0.00451153	0.00149035
+Marine sediment metagenome DNA, contig	0.000407964	3.03506e-05
+hypothetical protein, partial	8.10184e-06	4.84244e-05
+transposase and inactivated derivatives	0.000196403	6.76137e-05
+Ornithine carbamoyltransferase	0.000252015	0.000413011
+UniRef50_D8U4W8	8.41276e-06	1.19488e-06
+UniRef50_B9TE37	4.71672e-05	5.93082e-05
+Glycosyltransferase, GT2 family	0.00383161	0.000396429
+3 dehydroquinate synthase	0.00268731	0.00475343
+Iron binding protein SufA for iron sulfur cluster assembly	0.00843281	0.000263299
+UniRef50_U3AME1	0.000146277	4.84453e-05
+Probable transcriptional regulatory protein SUN_1622	0.000157511	0.000927923
+transcriptional regulator	4.33099e-06	2.30847e-05
+Secretion monitor	0.00183364	0.00197985
+UniRef50_B9KRG8	0.0109512	0.00063239
+Phenylalanine 4 hydroxylase	0.00102272	0.000117213
+UniRef50_Q3J1E7	0.0162391	0.00231715
+Msr9765 protein	2.29251e-05	1.55988e-05
+UniRef50_Q094Z8	6.30186e-05	4.71147e-05
+UniRef50_Q3J1E8	0.000597423	0.000774007
+hypothetical protein	0.00105185	8.67729e-05
+hypothetical protein, partial	0.000156008	4.71226e-06
+His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region	0.00478627	0.00121713
+Transcriptional regulator	4.95828e-06	1.107e-05
+acetyltransferase	8.84702e-05	0.000110957
+UniRef50_A0A016TVG0	4.93439e-06	8.39568e-06
+Sensor histidine kinase	0.000825272	0.000145203
+ArsR family transcriptional regulator	2.04445e-05	6.26636e-06
+PREDICTED	2.55097e-06	2.69858e-06
+hypothetical protein	4.74503e-05	8.51247e-06
+Transposase	1.85121e-05	8.09688e-06
+Inner membrane ABC transporter permease protein YtfT	0.00144594	0.00084982
+Chaperone protein DnaK	0.000354615	0.00823656
+UniRef50_I0C5G1	0.0100956	0.0012519
+UniRef50_B9KUT5	0.000464677	0.000221062
+L threonine dehydratase biosynthetic IlvA	0.00833736	0.0038836
+Paraquat inducible protein A	0.00226929	0.000320879
+hypothetical protein	8.96879e-05	3.46998e-05
+UPF0280 protein Msm_0088	0.00220191	0.000384934
+Serine aspartate repeat containing protein C	0.00560807	0.00142793
+UniRef50_F9YWF3	0.00134466	0.00319462
+DNA topology modulation kinase FlaR, putative	0.0144617	0.00231062
+ATP dependent DNA helicase PcrA	2.18533e-05	5.49374e-06
+Transcriptional regulatory protein ChvI	0.00521844	0.000451452
+UniRef50_F9YWF9	0.000301387	0.00973608
+Sensor protein LytS	1.40945e-05	0.000739777
+UniRef50_D2ZQR5	0.00237694	0.000223034
+hypothetical protein	1.03812e-05	2.13738e-05
+SPFH domain band 7 family protein	0.00432944	0.000750049
+UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.0172066	0.00316777
+Dephospho CoA kinase	0.00302859	0.000149641
+Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.00873662	0.00107164
+Alcohol dehydrogenase [NADP]	6.14259e-06	6.56429e-06
+Methionine  tRNA ligase	0.00410431	0.00175774
+tRNA  methyltransferase	0.00284685	0.00137377
+AzlD	0.00366002	2.36079e-05
+Phosphate acyltransferase	0.00222298	0.000240927
+Molybdenum cofactor synthesis domain containing protein	0.000310291	0.001164
+hypothetical protein PFL1_05669	1.77901e-06	0.000150203
+Ribosomal protein alanine acetyltransferase	0.00326058	0.000496759
+UniRef50_C5N425	0.015421	0.00168986
+hypothetical protein	3.00401e-06	5.67691e-06
+putrescine spermidine ABC transporter substrate binding protein	3.34988e-05	0.000126856
+D alanine transfer from undecaprenol phosphate to the poly chain	9.4008e-05	0.00165666
+Hemolysin type calcium binding toxin	0.0012182	0.000259088
+hypothetical protein, partial	3.50309e-06	8.67456e-06
+hypothetical protein	2.67401e-05	7.49918e-06
+Biopolymer transport exbD transmembrane protein	0.000943594	0.00117602
+Protein PhnB	0.00301301	0.000331309
+4 hydroxy 2 oxo heptane 1,7 dioate aldolase	8.50605e-05	0.000266679
+Type 4 fimbrial biogenesis protein PilV	0.000492572	0.000316671
+hypothetical protein, partial	1.21595e-05	7.22984e-06
+UniRef50_Q47534	0.00283563	0.000245622
+UniRef50_Q47536	0.00165665	0.000228208
+TetR family transcriptional regulator	9.11665e-06	7.07157e-06
+hypothetical protein, partial	0.000147176	5.30274e-05
+Cytochrome c oxidase subunit 1+2	1.03307e-05	6.55037e-06
+ROK family transcriptional regulator	0.000450928	0.00238623
+hypothetical protein	1.35404e-05	4.92847e-06
+Non canonical purine NTP pyrophosphatase	4.71583e-05	1.24692e-05
+Methyltransferase type 11	0.00143063	0.000136451
+hypothetical protein	2.84085e-06	8.12766e-06
+Formate hydrogenlyase subunit 3	0.00203633	9.47098e-05
+UniRef50_K6PYD7	2.19553e-05	4.69429e-06
+Single stranded DNA specific exonuclease RecJ	0.000822645	0.00079985
+hypothetical protein	1.90631e-05	1.31759e-05
+ATPase	3.54603e-06	2.27003e-05
+hypothetical protein	7.67147e-05	3.53052e-05
+NH dependent NAD(+) synthetase	1.38632e-05	4.86654e-05
+terminase	2.88778e-06	2.14717e-05
+coproporphyrinogen III oxidase	1.46358e-05	1.20505e-05
+UniRef50_V8DSA2	0.000141995	0.000174148
+Glutamate  tRNA ligase	6.09689e-05	0.000680894
+Expressed protein 	0.000161681	4.17496e-05
+Ribonucleoside diphosphate reductase	0.000125123	0.002974
+Superoxide dismutase [Fe]	9.48933e-06	0.00167347
+UniRef50_F0Y270	0.000365913	2.20116e-05
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.30278e-06	5.80213e-06
+Xanthine phosphoribosyltransferase	0.0031647	0.000453459
+UniRef50_I4PWM5	0.000643616	7.8541e-05
+LemA family protein	7.41738e-06	5.28316e-06
+hypothetical protein	1.30404e-06	1.188e-06
+4 hydroxythreonine 4 phosphate dehydrogenase	2.70977e-05	2.1448e-05
+Phosphoribulokinase, plasmid	0.0252793	0.00221018
+hypothetical protein	6.55226e-07	1.34773e-05
+UniRef50_S1T2D6	6.6317e-05	2.30836e-05
+50S ribosomal protein L35	0.000217767	7.90593e-05
+Predicted ATPase, AAA+ superfamily	0.00146865	0.000222047
+Glycine betaine L proline transport ATP binding protein ProV	0.00298233	0.000261406
+peptide ABC transporter, periplasmic peptide binding protein	0.000100361	0.0231209
+Uptake hydrogenase small subunit	0.00944962	0.00121713
+UniRef50_C6SSY8	0.00291067	0.000655899
+UniRef50_A0A058Z0V6	2.11811e-06	3.69572e-06
+MFS family transporter	0.000165294	0.00397062
+Bifunctional protein GlmU	0.00209473	0.000491035
+NADP dependent malic enzyme	0.00740863	0.000963007
+heme ABC transporter ATP binding protein, partial	8.26543e-06	3.84284e-06
+ATP dependent zinc metalloprotease FtsH	0.00681138	0.00484387
+Polyribonucleotide nucleotidyltransferase	2.60953e-06	4.85872e-06
+rod shape determining protein MreB	3.73741e-05	4.53071e-06
+UniRef50_A7HVB6	0.0066652	0.000172002
+UniRef50_Q8FSA6	0.000256586	0.000590953
+Phosphoenolpyruvate carboxylase	3.79566e-05	0.00370579
+cold shock protein	1.92689e-05	6.67801e-06
+hypothetical protein	1.97384e-06	1.16763e-05
+UDP N acetylglucosamine enolpyruvyl transferase	0.000112207	0.000399876
+Hydrogenase Fe only	0.000199765	0.000793796
+UniRef50_G0I8I1	0.000686461	0.000223688
+Complete genome; segment 13 17	0.000267811	0.000405044
+UniRef50_V4RTL0	0.000115907	1.20563e-05
+UniRef50_P0ACA2	0.00203923	0.00014816
+Putative deoxyribose phosphate aldolase	0.00211784	0.00066137
+Benzoate specific porin	0.000211627	0.000101797
+hypothetical protein	3.69247e-05	5.91868e-06
+ABC transporter	8.00914e-06	5.02428e-06
+tRNA modification GTPase MnmE	0.0003882	0.000417255
+hypothetical protein, partial	4.94623e-06	4.70331e-06
+UniRef50_G2S6S7	1.8853e-06	6.92318e-06
+L threonine 3 dehydrogenase	0.00975901	0.014072
+tRNA specific adenosine deaminase	0.00402267	0.00301374
+Dephospho CoA kinase	0.000782457	0.00431535
+hypothetical protein, partial	7.9649e-05	0.00211052
+Membrane bound lytic murein transglycosylase D	0.00332453	0.000625905
+Ferrichrome iron receptor	0.000891249	0.000512757
+Phosphoribosyltransferase	0.000198359	0.000162067
+hypothetical protein	0.00016538	1.72127e-06
+PREDICTED	2.25213e-05	8.86654e-05
+5 nucleotidase	0.00494256	0.000914129
+Putative prophage terminase large subunit	6.53134e-05	4.45185e-06
+Alanine racemase	0.000292529	0.000262419
+UniRef50_K7EE87	0.000378749	0.000236075
+Ketol acid reductoisomerase	6.00401e-06	1.38726e-05
+HTH type transcriptional repressor PurR	0.00251488	0.000281065
+iron sulfur protein	6.87598e-06	1.27144e-05
+UniRef50_U4V1N1	7.92733e-05	7.61494e-06
+hypothetical protein	6.52561e-06	1.04289e-05
+Cytochrome oxidase assembly protein	0.000426771	0.00245411
+hypothetical protein	5.74271e-05	1.69558e-05
+Peptidase M23 family	6.21934e-06	0.00173307
+hypothetical protein	0.000116314	4.15194e-05
+Phosphoribosylglycinamide formyltransferase 2	0.000387699	0.00026376
+hypothetical protein	0.000114968	4.45081e-06
+Transcriptional antiterminator, BglG	0.000220347	0.000439604
+Prophage DLP12 integrase	0.00260284	0.000756505
+antitermination protein NusG	5.11531e-05	0.000205152
+UniRef50_P77309	0.00276243	0.000103439
+Response regulator aspartate phosphatase	9.74041e-06	9.50104e-05
+Dihydrodipicolinate reductase	0.000106503	0.00152192
+UniRef50_C6SR85	0.00445941	0.00139463
+PREDICTED	8.39765e-05	0.000280352
+DNA primase	2.9088e-06	0.000459882
+AgrC	0.0136751	0.00379167
+magnesium chelatase	6.42785e-06	1.42781e-05
+UniRef50_P76656	0.00348715	0.00108482
+UniRef50_C1CWV4	0.000371338	0.0101033
+hypothetical protein	7.18399e-06	3.14797e-05
+UniRef50_A0A059LMT5	3.58439e-06	6.22942e-06
+hypothetical protein	6.06309e-05	2.21195e-05
+UniRef50_D2NAN7	0.00677004	0.00183838
+hypothetical protein	9.09416e-06	4.14579e-06
+Bifunctional enzyme IspD IspF	1.04785e-05	7.88683e-05
+hypothetical protein	2.12726e-05	1.03167e-05
+CTP synthase	6.47999e-06	6.7349e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	6.00798e-06	2.5759e-05
+UniRef50_Q2YZ93	0.0171832	0.00345333
+TPR repeat containing Spindly family protein	0.00978499	0.000891372
+hypothetical protein	8.17809e-05	4.89753e-06
+UDP diphosphatase	3.60271e-05	2.78742e-05
+NADH dehydrogenase	0.00176102	0.000374188
+UniRef50_A6LX04	0.00017837	0.000483658
+UniRef50_V8CG00	0.00012174	7.6983e-05
+UniRef50_Q9RZS8	0.000116154	0.0219977
+UniRef50_A4WP65	0.00395411	0.000559654
+PTS fructose transporter subunit IIA	2.07745e-06	0.000142413
+Lipopolysaccharide core biosynthesis glycosyl transferase LpsC	0.000294357	0.00211884
+UniRef50_Q9RZS7	0.000155583	0.0180594
+hypothetical protein	7.65982e-06	3.45726e-06
+UniRef50_P33020	0.00190931	0.00010332
+PREDICTED	4.00483e-06	6.23434e-06
+Protein CreA	0.00378665	9.24483e-06
+hypothetical protein	4.19811e-06	4.22893e-05
+Cell envelope like function transcriptional attenuator common domain protein	0.000276531	0.00240966
+hypothetical protein	3.19624e-06	5.92304e-06
+Marine sediment metagenome DNA, contig	0.000121434	6.43836e-06
+sn glycerol 3 phosphate transport system permease protein UgpE	0.00312103	0.000219951
+UniRef50_R4K219	0.000638158	0.000290907
+hypothetical protein	1.32132e-05	1.87039e-05
+Chromosome partition protein Smc	0.000160798	0.000137341
+hypothetical protein	1.96318e-05	2.37529e-05
+Bifunctional protein PyrR	1.67932e-05	2.02141e-05
+UniRef50_U5MN80	0.000200725	0.000888439
+hypothetical protein	1.03701e-05	5.8494e-06
+Competence protein ComYD	1.54657e-05	3.07182e-05
+Transposon Tn7 transposition protein TnsB	5.06088e-05	0.00492502
+Putative Diguanylate cyclase	5.5936e-06	7.46287e-05
+UniRef50_G1Y149	0.00186002	0.000248739
+Probable acyl CoA dehydrogenase YdiO	0.00282553	0.000297097
+Proton glutamate symport protein	0.0207639	0.0373058
+Dihydroxy acid dehydratase	1.55892e-05	1.23094e-05
+membrane protein	7.49777e-05	1.11847e-05
+hypothetical protein, partial	3.56743e-05	2.99421e-05
+UniRef50_T1Y8Z5	0.0109748	0.00172216
+Xaa Pro aminopeptidase	0.000110103	0.00168627
+MULTISPECIES	4.16953e-06	2.1201e-06
+Chorismate mutase related enzyme	0.000319508	0.000760889
+Transcriptional activator protein BglJ	0.00344789	0.000132818
+DNA binding response regulator	0.000454957	0.000128264
+MerR family transcriptional regulator	0.00148544	0.000205118
+hypothetical protein	2.49872e-05	2.46471e-05
+hypothetical protein	3.21689e-06	6.86254e-05
+Cellulose synthase 	0.00327882	0.000490879
+Threonine synthase	0.00359094	0.000504161
+Exoenzyme S	0.00107686	0.000222687
+Predicted NADPH	0.00502163	0.000296586
+DNA processing   uptake protein	9.37461e-05	0.00382184
+deoxyguanosinetriphosphate triphosphohydrolase	0.000411283	3.22649e-05
+Marine sediment metagenome DNA, contig	1.69895e-05	0.000351923
+UniRef50_A7FAV9	0.000593075	0.0038005
+D alanyl D alanine carboxypeptidase endopeptidase AmpH	0.00272896	0.000736346
+UniRef50_A7FAV7	5.16179e-05	0.00512834
+UniRef50_A7FAV5	0.000203926	0.00693719
+UvrABC system protein A	0.000245635	0.0213919
+Chloride peroxidase, putative	0.00012358	0.0165245
+Sulfate thiosulfate import ATP binding protein CysA 1	5.12233e-05	1.66752e-05
+Transposase, putative	0.00200612	0.562101
+Probable transposase	0.000458924	9.98977e-05
+Putative ECA polymerase	0.00306583	0.000383771
+Transcriptional regulator LysR family	0.00341728	0.000104644
+transcriptional regulator	1.68605e-05	7.96978e-05
+Tetracycline resistance protein	3.19873e-05	1.63428e-05
+UniRef50_U3SUM1	0.00404971	0.000942366
+UniRef50_A3SI31	2.09804e-05	1.18455e-05
+UniRef50_Q1R311	0.000565493	0.000419364
+hypothetical protein	0.000278919	9.4665e-06
+UniRef50_B7UUY0	0.000355405	9.48098e-05
+cation	0.000178448	0.000371398
+Integral membrane protein, TerC family	0.000550821	0.00179515
+UniRef50_R1D0M5	1.35675e-05	3.08212e-05
+UniRef50_R1DLZ1	3.43871e-06	2.13296e-06
+Neu5Ac permease	4.89793e-06	4.84998e-06
+DNA topoisomerase	0.000625338	0.000533849
+Oxygen independent coproporphyrinogen III oxidase	0.00374029	0.000530288
+potassium transporter	4.09591e-06	2.15674e-06
+Septum site determining protein MinD	0.000217596	0.000923073
+2 isopropylmalate synthase	3.09843e-06	2.89359e-05
+Side tail fiber protein homolog from lambdoid prophage Rac	0.00329885	0.00058351
+Phosphoribosylanthranilate isomerase like protein	0.00267904	0.000710081
+UniRef50_Q9RWI2	7.4209e-05	0.0149318
+UniRef50_Q9RWI3	0.000318642	0.018637
+UniRef50_Q9RWI0	0.000250401	0.0170225
+transketolase, partial	1.16917e-05	2.48846e-06
+Thymidine kinase	0.00512569	0.00461074
+UniRef50_A3KBE5	0.000242813	8.30072e-05
+Short chain dehydrogenase reductase SDR	9.26718e-06	1.77333e-05
+Amidohydrolase family protein	0.000176617	0.00078605
+hypothetical protein	3.1914e-05	1.89738e-05
+Predicted flavoprotein	0.00396661	0.00441571
+Lactoylglutathione lyase	0.00909909	0.00199462
+UniRef50_A1B1F7	6.66927e-05	2.18984e-05
+Integrase, catalytic region	0.000528107	0.00014184
+multidrug ABC transporter ATPase	8.49676e-06	2.52479e-05
+hypothetical protein	1.09796e-05	7.59833e-06
+Thiamine biosynthesis protein 	7.6103e-06	4.74312e-05
+MFS transporter	1.47793e-05	2.83218e-06
+hypothetical protein	7.69664e-06	6.12818e-06
+UDP N acetylenolpyruvoylglucosamine reductase	0.000142733	0.00138548
+flagellar hook capping protein	6.96258e-06	5.77721e-06
+3 hydroxymyristoyl ACP dehydratase	1.0333e-05	9.72683e-06
+Cobalamin synthesis protein P47K family protein	0.000450483	0.00324434
+PREDICTED	2.55058e-06	4.15278e-06
+UniRef50_X6L0P1	0.000531945	7.5132e-05
+Spore coat protein CotS	0.000542494	0.000910135
+UniRef50_W6LXS6	6.378e-06	1.44113e-06
+UniRef50_U7RK39	6.92109e-06	6.85331e-06
+Transcriptional activator of maltose regulon,MalT	0.003514	0.00043675
+UniRef50_W4KGM2	0.000164638	0.000138412
+hypothetical protein	9.38919e-06	5.76457e-06
+N5 carboxyaminoimidazole ribonucleotide mutase	7.01721e-05	4.00912e-05
+hypothetical protein	8.54001e-06	3.23271e-05
+hypothetical protein	1.53991e-05	4.44192e-06
+UniRef50_A0A059IKA9	8.54967e-05	1.34232e-05
+Glutamyl Q tRNA synthetase	0.00264366	0.000529082
+UniRef50_R8ZHF6	0.000108099	0.000112937
+Iron compound ABC transporter, permease protein	0.016552	0.00159989
+UniRef50_H7G193	4.74613e-06	2.49038e-06
+Galactokinase	0.0065624	0.00405436
+L lactate dehydrogenase 1	0.00436013	0.00353843
+ABC transporter ATP binding protein	0.000499224	0.000637417
+Oxygen independent coproporphyrinogen III oxidase	0.00426434	0.000273755
+UniRef50_Q57493	0.000332859	0.000366123
+hypothetical protein	3.38127e-06	1.31339e-05
+hypothetical protein	5.63142e-06	4.06738e-06
+Sugar ABC transporter	0.00255734	0.000806154
+Diguanylate cyclase phosphodiesterase	4.22851e-06	1.60646e-06
+MULTISPECIES	5.863e-06	5.23719e-06
+UniRef50_B6A550	0.00882689	0.00112807
+Autoinducer binding domain protein	0.0137	0.000613535
+hypothetical protein	2.70086e-06	0.000128819
+Multiple sugar binding transport system permease protein MsmG	0.00145971	0.00323516
+Two component transcriptional regulator, winged helix family	7.57992e-05	0.000163007
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00788092	0.00119375
+ABC cobalt transporter, periplasmic binding protein CbiN	0.00210928	0.00012249
+Glutamine amidotransferase class II	0.000175591	0.00406552
+sodium hydrogen exchanger	1.49897e-05	8.90137e-06
+cold shock DNA binding protein family	9.05952e-06	1.04849e-05
+Purine nucleoside phosphorylase DeoD type 2	0.0185846	0.00413902
+UniRef50_Q6F7Y6	1.03832e-05	0.00834527
+UniRef50_B0V7N3	0.000278512	0.00307385
+UniRef50_V7CVS8	4.52162e-05	3.37258e-05
+oligo 1,6 glucosidase	1.50123e-05	7.05606e-06
+metallophosphoesterase, partial	5.55862e-05	7.84029e-05
+heme response regulator HssR	9.99924e-06	9.28598e-06
+BPS protein	0.000227429	3.21925e-05
+Transketolase central region	0.000184917	0.00305325
+tRNA dihydrouridine synthase	1.05357e-05	2.91006e-05
+Na+ H+ antiporter	1.85977e-05	0.00407827
+UniRef50_F8K072	4.28782e-06	4.21519e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0165915	0.00136463
+methyltransferase, partial	2.309e-05	1.69259e-05
+Protein EssC	0.00860406	0.000919452
+Chitinase A1	0.000343532	0.00101889
+Membrane protein involved in aromatic hydrocarbon degradation	6.85229e-06	4.9758e-06
+UniRef50_R7ZYU2	1.25935e-05	0.000196818
+UniRef50_G8S2D3	0.000729683	1.16848e-05
+UniRef50_A0A021VU42	0.000165599	1.02832e-05
+UniRef50_J9NU01	0.00027392	0.00027064
+hypothetical protein, partial	2.75753e-05	9.8398e-06
+Methionine  tRNA ligase	0.000221932	3.57064e-06
+Tagatose 6 phosphate kinase	0.0049867	0.00363372
+Pyridoxine pyridoxamine 5 phosphate oxidase	8.29198e-06	0.00039791
+Transcriptional repressor CcpN	0.00777177	0.000984885
+Transposase, putative	0.0002219	0.080053
+PREDICTED	1.41532e-05	1.46245e-05
+UniRef50_A6V0F0	0.00029656	0.000221691
+Marine sediment metagenome DNA, contig	2.09178e-05	2.24089e-05
+potassium transporter	6.72539e-05	5.39862e-05
+Non canonical purine NTP pyrophosphatase	0.0105502	0.00212473
+50S ribosomal protein L18	1.58027e-05	6.97288e-05
+Chromosome partitioning protein parA	0.000261566	0.00331684
+FIG002261	0.000244207	0.000488521
+Sulfatase family protein	0.00138107	0.000218151
+UniRef50_B5FIB5	8.54924e-05	0.000215976
+7 carboxy 7 deazaguanine synthase	0.0213981	0.00255141
+hypothetical protein	0.000133971	6.34279e-05
+Acriflavine resistance protein B	0.0025719	0.000240994
+Marine sediment metagenome DNA, contig	0.000245294	7.90842e-06
+Mobilization protein MobC	0.0895092	0.00830817
+hypothetical protein	9.99296e-05	2.21618e-05
+Modulator protein MzrA	0.00596845	0.000299283
+Restriction endonuclease	0.000609901	0.0225083
+KDP operon transcriptional regulatory protein KdpE	0.0023774	0.000446903
+Transcriptional regulator, LysR family	0.000112183	0.000304044
+hypothetical protein	1.25161e-05	1.23374e-06
+helicase Cas3	1.23893e-05	2.73523e-06
+UniRef50_A0A037ZGX3	5.75317e-05	0.000391647
+ATP synthase epsilon chain	0.0240785	0.00124544
+potassium transporter KefB	1.70767e-05	1.0184e-05
+Acetyl Coenzyme A dehydrogenase, medium chain	0.00017762	0.0214083
+hypothetical protein	3.02699e-05	1.03525e-05
+hypothetical protein	1.58437e-05	6.79009e-06
+UniRef50_D8FF08	6.57959e-06	1.1253e-05
+hypothetical protein	9.80333e-06	1.18832e-05
+PREDICTED	8.31807e-06	8.79402e-05
+UniRef50_F8JIY3	4.54964e-05	0.000105448
+UniRef50_Q3JNR9	5.87992e-05	1.46791e-05
+UniRef50_UPI0003C10C25	1.33971e-06	4.20549e-06
+UniRef50_E2ZSP5	0.00224284	0.000660183
+hypothetical protein, partial	0.000374324	0.000127484
+UniRef50_B9KR70	0.000882739	7.45952e-05
+DTW domain containing protein YfiP	0.0010364	0.00016236
+Putative NagD like phosphatase	1.84219e-05	1.47371e-05
+Transposase like protein TnpA3	0.000541068	0.000887286
+Elongation factor G C terminus family protein	2.56785e-06	1.15909e-05
+Precorrin 2 C20 methyltransferase	0.00130821	0.000643651
+UniRef50_F0Y525	0.000904458	0.000625266
+hypothetical protein	4.90496e-06	2.69362e-05
+Bifunctional protein PyrR	1.03082e-05	2.58705e-05
+MATE family drug transporter	7.9002e-05	0.00319992
+3 dehydroshikimate dehydratase	0.000253569	0.00419495
+Shikimate kinase	2.67494e-05	8.47493e-06
+Bifunctional protein PyrR	0.00024219	0.0247236
+UniRef50_Z4VVL5	8.01592e-05	0.000205534
+UDP N acetylglucosamine 1 carboxyvinyltransferase	4.46959e-06	7.50532e-06
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	5.72214e-06	5.68035e-06
+6 phospho beta glucosidase	1.14174e-05	4.20498e-05
+UniRef50_UPI0003C10787	1.90187e-06	1.9572e-06
+L serine dehydratase	6.92426e-06	3.60137e-06
+Peptide ABC transporter, permease protein, putative	0.015948	0.00290714
+Respiratory nitrate reductase 2 beta chain	0.000138541	7.5481e-05
+hypothetical protein	8.36974e-06	1.32971e-06
+NADH dehydrogenase subunit I	0.000352091	3.64977e-05
+hypothetical protein	1.39233e-05	0.000432947
+Aliphatic sulfonates import ATP binding protein SsuB 3	7.56937e-05	3.01741e-05
+hypothetical protein, partial	3.55916e-06	6.75115e-06
+3 oxoacyl ACP synthase	7.69581e-06	2.808e-06
+UniRef50_Q9RZ68	0.000265696	0.0326481
+UniRef50_Q53L87	0.000115083	0.000147916
+Chromosome 13 SCAF14566, whole genome shotgun sequence	5.14392e-06	2.23475e-05
+UniRef50_Q9RZ60	0.000161533	0.0270464
+UniRef50_Q9RZ61	0.000195289	0.0364645
+Methionine binding lipoprotein MetQ	0.00626397	0.000697278
+Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	0.000100263	3.41131e-06
+DEAD RNA helicase, putative	0.00404709	0.00233197
+30S ribosomal protein S11	0.00209639	0.000274571
+Histidine ammonia lyase	6.02692e-06	4.12271e-05
+Sterol binding domain protein	0.000419632	0.000371012
+hypothetical protein	6.74531e-05	9.79214e-05
+MULTISPECIES	0.000361803	8.09602e-05
+hypothetical protein	2.70796e-05	1.34697e-05
+Protein CBG18769	0.000547623	9.26391e-05
+MULTISPECIES	2.49003e-05	3.40662e-05
+Energy coupling factor transporter ATP binding protein EcfA2	4.76502e-06	1.42219e-05
+UniRef50_V7WX89	8.4467e-06	0.00121609
+PREDICTED	0.000260222	0.000155156
+hypothetical protein	3.45005e-05	2.70486e-06
+Phosphoglycerate mutase	0.00976369	0.00590463
+Ribonuclease D	6.86707e-05	5.68116e-06
+UniRef50_A6V1L5	5.98862e-05	0.000225999
+1,4 alpha glucan branching enzyme GlgB	2.13112e-06	2.90781e-06
+Alpha beta hydrolase fold protein	0.000861048	0.000235355
+Nitrilotriacetate monooxygenase	0.00751428	0.000872939
+4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000272255	0.00151623
+PREDICTED	6.85716e-06	3.14569e-06
+TPR domain protein	0.000252611	0.00276845
+Large conductance mechanosensitive channel	0.00447844	0.000261763
+hypothetical protein	8.23033e-06	1.54846e-05
+thymidylate synthase	1.19224e-05	0.000107108
+hypothetical protein	8.51306e-05	2.27064e-05
+Dihydrolipoyl dehydrogenase	1.83463e-05	7.18391e-06
+Peptidase, M23 M37 family protein	1.43666e-05	0.000425475
+hypothetical protein	4.20347e-06	1.68429e-05
+ISSep1 like transposase	0.14502	0.0288609
+S formylglutathione hydrolase	0.000233714	0.000214796
+Bifunctional riboflavin kinase FMN adenylyltransferase	0.000693963	0.00147262
+DNA directed RNA polymerase subunit alpha	1.40714e-05	8.69472e-06
+Disulfide bond formation protein B	0.000913834	0.0005095
+Xylose isomerase like TIM barrel domain containing protein	0.00131519	0.000306631
+Putative ATP dependent protease	2.48789e-05	1.99424e-05
+hypothetical protein	3.02349e-06	2.78898e-06
+Transcriptional regulator, LysR family	0.000453252	0.000160617
+UniRef50_Q9RZI9	2.43011e-05	0.0065949
+UniRef50_Q2GBU1	3.90824e-06	3.60314e-06
+Chemotaxis sensory transducer	0.000443885	7.10323e-05
+S glutathione dehydrogenase	0.000500786	0.0247497
+hypothetical protein	1.53751e-05	6.84526e-06
+Anaerobic dicarboxylate transport	0.0103162	0.00129239
+Protein export protein SecB	0.00398389	0.000787586
+Probable D,D dipeptide binding periplasmic protein DdpA	0.00228185	0.000719666
+Prophage ps3 protein 01, putative	0.000495483	0.0005105
+Os05g0345700 protein	4.73754e-05	0.000102106
+Branched chain amino acid uptake carrier	0.0007836	0.00256973
+hypothetical protein	2.51161e-06	3.16505e-06
+LysR family HTH type transcriptional regulator	0.0116279	0.00129499
+ribonuclease	1.21687e-05	4.11082e-06
+hypothetical protein, partial	1.44077e-05	9.36697e-06
+hypothetical protein	9.69881e-05	8.65813e-05
+Outer membrane protein OpcA	0.000663999	0.00351085
+Membrane lipoprotein	0.00900413	0.000909648
+UniRef50_W0WHZ7	0.000776355	0.000159286
+UniRef50_P45871	0.000828617	0.000483454
+Hydroxymethylglutaryl CoA reductase	0.00600226	0.00162603
+exodeoxyribonuclease III	3.01558e-05	1.24969e-05
+Shikimate kinase	2.27831e-05	1.00044e-05
+GTP binding protein 	1.64391e-05	2.59382e-05
+quinone oxidoreductase	1.02924e-05	2.61872e-05
+hypothetical protein	1.68665e-06	9.46228e-07
+Transposase	3.42224e-05	6.05779e-06
+MerR family transcriptional regulator	0.000483967	0.000320645
+Bacterial lipid A biosynthesis acyltransferase family protein	0.000119343	0.00117417
+translation initiation factor IF 2	1.69934e-05	1.86094e-05
+MFS transporter	0.000284293	0.00187201
+1 deoxy D xylulose 5 phosphate reductoisomerase	8.62945e-05	0.0012843
+Flagellar hook associated protein 1 FlgK	0.00071295	9.1812e-05
+UniRef50_U6LVU1	2.14719e-06	1.17381e-05
+MULTISPECIES	1.02598e-05	2.6272e-05
+hypothetical protein	1.73634e-05	2.52233e-05
+Esterase YjfP	0.00264735	0.00146801
+UniRef50_E3RE87	7.07966e-05	6.36595e-06
+DNA topology modulation protein	7.48771e-05	4.71536e-05
+hypothetical protein	5.56522e-05	4.3723e-05
+Metal ion transporter, metal ion  transporter (Nramp) family	0.000338791	0.00195523
+dihydroorotate dehydrogenase	3.56394e-06	3.85498e-06
+Phosphoglucomutase	0.00389858	0.00316964
+hypothetical protein, partial	3.1479e-05	0.000536384
+Phage replisome organizer, putative	0.000477724	0.00121296
+Segregation and condensation protein A	0.00478345	0.000341397
+Fe S cluster redox enzyme	3.42496e-05	6.79456e-05
+WGS CADB00000000 data, contig 91 	0.000173928	0.000841648
+Helix turn helix domain containing protein, AraC type	0.000116051	0.000453094
+NAD dependent malic enzyme	0.00183862	0.00436065
+UniRef50_E1VPQ4	7.35137e-05	1.16705e-05
+Transposase	2.63479e-05	2.78254e-05
+Glucose 1 phosphate adenylyltransferase	0.000111563	0.00847641
+ComE operon protein 2	0.0216252	0.000664719
+UniRef50_F2LGK2	6.2923e-05	3.78332e-05
+hypothetical protein	8.99108e-06	1.27915e-05
+UniRef50_E6N0Q8	1.50577e-05	0.000384903
+UniRef50_E6N0Q9	5.80227e-05	3.46976e-05
+Fumarase alpha subunit	0.00295697	0.000710023
+hypothetical protein	0.000231299	5.72734e-05
+Dimethyl sulfoxide reductase chain YnfE	0.000752668	6.62619e-05
+Bacterial low temperature requirement A family protein	0.0088653	0.000869424
+2 oxoglutarate dehydrogenase	1.54129e-06	2.19235e-06
+UniRef50_U2YEL7	6.36639e-05	7.04748e-05
+MULTISPECIES	4.62215e-06	2.18331e-06
+NADH	3.87429e-06	4.48015e-06
+shikimate kinase	2.76426e-05	2.88377e-05
+GMP synthase, large subunit	8.64004e-05	2.60376e-05
+UniRef50_S9P8Y7	2.74706e-05	3.66853e-06
+Hypothetical membrane spanning protein	0.000206598	3.13487e-05
+Phospho N acetylmuramoyl pentapeptide transferase	5.06089e-06	2.03073e-05
+UniRef50_B7MKP4	0.000192313	0.000725011
+Non canonical purine NTP pyrophosphatase	0.000208218	9.6455e-06
+phosphoglycerate mutase	1.46102e-05	2.57215e-06
+Short chain dehydrogenase	0.00957618	0.000136659
+Heme exporter protein B	0.00336904	0.000697079
+Phosphatidate cytidylyltransferase	0.00248599	0.00011706
+UniRef50_A6LYG5	0.000634	0.00103892
+UniRef50_Q9JZS9	0.000235899	0.00125904
+UniRef50_A0A011UDJ9	2.56469e-06	2.22962e-05
+UniRef50_UPI000292A56C	0.000211395	3.34426e-05
+hypothetical protein	1.45656e-05	1.34097e-05
+Siderophore staphylobactin biosynthesis protein SbnG	0.0168328	0.0029127
+NAD dependent dehydrogenase	4.00801e-05	3.94461e-05
+hypothetical protein	3.22421e-05	0.000182341
+3 isopropylmalate dehydrogenase	0.00423452	0.00406749
+D galactose binding periplasmic protein	0.000173181	0.00142682
+Amino acid ABC transporter extracellular binding protein	0.0028735	0.000682196
+Bis tetraphosphatase, symmetrical	4.76582e-06	0.00021786
+Amidohydrolase family protein	0.000128518	0.000891804
+hypothetical protein	2.23029e-05	6.59414e-05
+UniRef50_A3K1G7	5.25581e-05	3.40334e-06
+ADP heptose  LPS heptosyltransferase 2	0.0026471	0.000238002
+hypothetical protein, partial	1.52866e-05	1.48038e-05
+PAS PAC sensor signal transduction histidine kinase	9.26965e-05	0.00117413
+Transcriptional regulator, LysR family	0.000317108	0.000151153
+PREDICTED	0.00010829	4.81497e-05
+Helicase domain protein	0.000287807	0.000410085
+Predicted protein	1.44911e-05	4.02723e-05
+nucleoside diphosphate sugar epimerase	2.77172e-05	1.32492e-05
+UniRef50_Q9RRK0	9.96689e-05	0.00380632
+UniRef50_Q9RRK5	0.000135888	0.0321665
+2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.0120947	0.00590403
+UniRef50_Q9RRK7	8.50586e-05	0.0290436
+3 oxoacyl  synthase II	2.75674e-05	8.98768e-06
+UniRef50_I1QER0	4.32547e-05	4.07796e-06
+transposase Tn3 family protein, partial	1.31932e-05	0.000604357
+Flavin containing monooxygenase FMO	0.000108099	8.35986e-05
+hypothetical protein	1.53444e-05	5.08549e-05
+DoxX family protein	4.62811e-05	1.637e-05
+Multidrug efflux permease, AraJ	0.00445179	0.000334681
+Transporter trans membrane domain bacteriocin immunity protein	0.00471623	0.000565343
+zinc finger  protein, putative	1.66636e-06	6.12285e-07
+UniRef50_G7U3Z0	0.000232917	0.00189973
+Oxygen independent coproporphyrinogen III oxidase	0.000597505	0.00204573
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0106009	0.00146672
+hypothetical protein	5.18635e-05	2.18457e-05
+UniRef50_F0YGY7	0.000186254	0.000475749
+Uracil DNA glycosylase superfamily protein	0.00350495	0.000237319
+hypothetical protein	9.17789e-06	2.0773e-05
+Diguanylate cyclase	0.000737916	0.000155876
+Aminomethyltransferase	0.0123019	0.00169343
+PhbF	2.16382e-05	5.55842e-06
+M23 M37 peptidase domain protein	0.00747035	0.00104216
+Aldehyde dehydrogenase family 7 member A1	0.000423818	7.67392e-05
+RNA binding protein	0.000337674	0.000672326
+Long chain fatty acid ABC transporter	0.000279258	0.00438284
+Glucose 6 phosphate isomerase	0.00673937	0.0067219
+Exodeoxyribonuclease 7 large subunit	0.0149341	0.00271532
+ABC transporter permease	0.010002	0.00174459
+hypothetical protein, partial	2.98095e-05	3.93045e-05
+Phosphate transporter	0.000600677	0.0031758
+UniRef50_Q3JJ67	9.57938e-06	1.39554e-05
+UniRef50_P44640	0.00068978	0.00055529
+Membrane fusion protein	8.73299e-06	2.14648e-05
+Cytidylate kinase	1.39153e-05	4.96161e-05
+UniRef50_Q3JUL3	0.000290467	2.20247e-05
+Protein EsaC	0.00218137	0.00473094
+UniRef50_J0NSU5	7.69146e-06	0.00133654
+hypothetical protein	2.58563e-05	1.5612e-05
+Glycosyltransferase	0.000457693	9.75922e-05
+Hydrolase, HAD superfamily, putative	0.00599668	0.00221797
+UniRef50_N6V947	0.000138577	4.03465e-06
+UniRef50_A6LTV8	0.00020333	0.00107164
+hypothetical protein	1.90064e-06	3.41775e-06
+UniRef50_T0U2I3	0.00400944	0.00106032
+UniRef50_I4CVC3	0.000140969	6.36442e-05
+Xanthine oxidase	0.00112091	7.59512e-05
+Transcriptional regulatory protein CiaR	0.00386261	0.00127991
+NUDIX hydrolase	0.00523217	0.00138243
+Bifunctional cytochrome c biogenesis protein	0.000118559	0.00128582
+UniRef50_A6LTV7	0.000147072	0.000394592
+UniRef50_I6SU15	0.00331827	0.000399964
+hypothetical protein SMAC_07598	1.52467e-06	8.71238e-07
+UniRef50_B9E4Q8	0.000516174	0.000338442
+Phosphoglycerate mutase related protein	0.000699283	0.00149915
+histidine kinase	2.45074e-06	0.000475053
+Septation ring formation regulator EzrA	0.0035652	0.00128045
+Phosphoenolpyruvate synthase pyruvate phosphate dikinase	0.00045978	0.000421281
+UniRef50_V5BIM4	1.01382e-05	5.16702e-06
+pseudouridine synthase	5.59844e-05	8.84772e-06
+UniRef50_B7RP52	2.88708e-06	8.78993e-07
+thiamine biosynthesis protein ThiF	1.18147e-05	7.40506e-06
+hypothetical protein	0.000114691	3.69108e-05
+UniRef50_T2E0C1	0.000966375	0.000462549
+Peptidyl tRNA hydrolase	2.28838e-05	1.36482e-05
+hypothetical protein	5.90929e-06	5.85236e-06
+Thioredoxin reductase	0.000109506	0.00138978
+hypothetical protein	1.83477e-05	3.25968e-05
+Phosphatidylserine decarboxylase proenzyme	0.00150891	0.000772031
+Cation efflux system protein CusA	0.00197409	0.000250527
+hypothetical protein	0.000331791	2.94552e-05
+Glycerol 1 phosphate dehydrogenase	0.000192775	0.00181002
+peptidase M22	9.73296e-06	6.28996e-06
+UniRef50_J5IRB2	0.00031066	0.000404436
+Glycolate dehydrogenase	0.000398186	0.000233138
+UniRef50_R9SLR7	0.00306121	0.000663828
+Sulfofructose kinase	0.00280892	0.000382548
+Phage repressor protein	0.000291661	0.00121936
+UniRef50_S2W2I7	8.33176e-06	1.24894e-05
+PREDICTED	2.6657e-06	5.33885e-06
+UniRef50_C5QVZ6	0.0602336	0.00854415
+nucleoside triphosphate diphosphatase	7.23798e-06	9.90967e-06
+hypothetical protein	0.000514952	0.000157266
+UniRef50_U5NRT4	0.00572328	0.00069509
+Nitrate binding protein NasS	0.000414386	0.000172574
+iron ABC transporter, partial	1.91814e-05	2.95775e-05
+UniRef50_M9SAW1	0.000794208	0.000139915
+Hydrogenase expression formation protein HypE	0.000158004	0.00100318
+branched chain amino acid aminotransferase	0.000158508	8.92204e-06
+D ribose pyranase	0.000599938	0.00381799
+UniRef50_B1TES8	1.87625e-05	1.71606e-05
+UniRef50_P76222	0.00105196	0.00101452
+hypothetical protein	2.16124e-05	9.41731e-06
+Outer membrane protein, OMP85 family	0.000478477	0.000684715
+Mg chelatase, subunit ChlI	0.00047127	0.0012011
+UniRef50_K4NKR5	7.09021e-05	0.00146004
+Probable 9 O acetyl N acetylneuraminic acid deacetylase	0.00203388	0.000353827
+membrane protein	2.33156e-05	1.00753e-05
+Arginine regulator	1.48817e-05	0.00022846
+UniRef50_W1W6K4	0.248059	0.0318689
+UniRef50_M8EPJ5	0.00137499	0.00481728
+Phosphate import ATP binding protein PstB 2	1.28505e-05	4.43969e-05
+UniRef50_A3CQK2	0.000441272	0.000156403
+hypothetical protein	0.000157849	5.94362e-05
+Orotidine 5 phosphate decarboxylase	1.48039e-05	5.70476e-06
+UniRef50_A1B425	0.000309276	2.68396e-05
+MerR family transcriptional regulator	0.000133676	0.000256116
+UniRef50_W5X8A1	8.34319e-06	1.27563e-05
+hypothetical protein	2.51182e-05	8.94219e-06
+Signal transduction histidine protein kinase AtoS	0.00193244	0.000511359
+TetR AcrR family transcriptional regulator	0.00482203	0.00152032
+GTP binding protein HSR1 related protein	0.000505871	0.000904154
+UniRef50_F0Y8S9	0.000290238	0.000357391
+23S rRNA [guanosine 2 O ] methyltransferase RlmB	0.00060421	0.000120679
+Drug resistance transporter, EmrB QacA subfamily	0.000215491	6.94929e-05
+L fuculose 1 phosphate aldolase	0.0170198	0.00232113
+UniRef50_F8GTL5	3.63974e-06	3.55709e-06
+PREDICTED	4.78504e-06	7.64895e-06
+UniRef50_C0P4G8	0.0100295	0.00149355
+UniRef50_U9LDC5	0.000725276	0.00126161
+UniRef50_B5WFL3	5.49781e-05	5.80289e-06
+Phospholipase	0.000154616	0.00233641
+Transposase	3.05394e-05	1.49348e-05
+UniRef50_Q2IIK2	0.000399504	3.66681e-05
+GTP binding protein TypA, BipA	2.25032e-05	1.88685e-05
+5 3 exonuclease	1.94721e-05	7.29762e-05
+Flagellar protein FliT	0.00137922	0.00113652
+NADH quinone oxidoreductase subunit I	0.000262929	0.000258002
+Isocitrate dehydrogenase kinase phosphatase	0.00170544	0.000394125
+UniRef50_F4D3L6	0.000142605	0.00393731
+Protein pucC 	6.84423e-05	8.00163e-06
+MafB family adhesin protein	0.000113443	0.000415671
+Putative mucin 5ac	0.000196978	2.47055e-05
+Phosphoglycerate mutase	0.00555364	0.000933089
+hypothetical protein	2.71242e-05	1.27388e-05
+Argininosuccinate lyase	1.14098e-05	5.80141e-06
+Malate synthase G	9.36593e-05	0.0033264
+Leucyl aminopeptidase	0.00123131	0.000209874
+UniRef50_N6V8H7	5.12912e-05	0.00014306
+UniRef50_R5F4E6	0.000505972	0.000467947
+Non hemolytic phospholipase C	3.60551e-06	3.11038e-06
+hypothetical protein	3.88057e-05	9.15963e-06
+Ribonuclease E	0.000239957	0.00376072
+Predicted protein	0.000102398	9.12448e-05
+resolvase	5.87739e-05	1.98882e-05
+DNA directed RNA polymerase subunit beta	6.26916e-06	1.26187e-06
+hypothetical protein	5.7694e-05	0.00192016
+Rhamnan synthesis protein F	3.37189e-06	2.46614e-06
+UniRef50_J9NVA3	0.000375401	0.000194524
+ABC transporter, substrate binding protein, QAT family	0.00843426	0.00103738
+Branched chain amino acid	0.0187897	0.00248922
+peroxiredoxin	1.4393e-05	0.000164485
+adenylyltransferase, partial	0.000115083	4.07092e-05
+hypothetical protein	1.87011e-05	9.36032e-07
+PTS system, lactose cellobiose family IIC subunit	0.000200025	0.000465048
+SH3, type 3 domain protein	0.0132338	0.00257697
+UniRef50_Z3GHL3	0.000121597	8.47261e-05
+tRNA sulfurtransferase	0.000987032	8.24471e-05
+UniRef50_R0E2F9	5.07482e-05	8.47827e-05
+hypothetical protein	1.5986e-05	7.47757e-06
+hypothetical protein	2.45419e-05	1.24472e-05
+iron ABC transporter ATP binding protein	0.000125426	6.73747e-05
+RelA SpoT domain protein	0.0100202	0.000942159
+Tyrosine recombinase XerD like	0.00416514	0.000672655
+Formyltetrahydrofolate deformylase	0.00844653	0.000613703
+MULTISPECIES	4.75883e-05	1.18358e-05
+UniRef50_Q47702	0.00296354	0.000245314
+UniRef50_X7F5H4	1.58055e-05	7.07003e-06
+Protein TolQ	0.000922129	0.00129049
+hypothetical protein	5.33841e-05	3.3335e-06
+Phage integrase family protein	0.000105501	0.000591895
+UniRef50_Q3IV24	0.000814268	0.000590322
+PREDICTED	2.41549e-06	5.01061e-07
+hypothetical protein	4.56649e-06	4.07491e-07
+UniRef50_S2VZ33	3.26224e-06	6.38201e-06
+UniRef50_B4RKT2	0.000185597	0.00100941
+Predicted O linked GlcNAc transferase	0.00207872	0.000305335
+NADH ubiquinone oxidoreductase chain 4L	0.000394393	0.000269624
+Bifunctional protein PyrR	9.13183e-06	3.76125e-05
+Alpha 1,4 glucan	0.000135058	0.00187479
+Ferrochelatase	0.016952	0.00467581
+Proline specific permease	0.00101054	0.00021354
+Multimeric flavodoxin	0.00435886	0.000282342
+Xanthine permease XanP	0.00341655	0.000234848
+Enoyl [acyl carrier protein] reductase [NADH] FabI	0.000382812	0.00313115
+glycerol 3 phosphate ABC transporter ATP binding protein	5.76965e-05	1.0478e-05
+UniRef50_B6AV02	2.11878e-05	1.04758e-05
+hypothetical protein, partial	3.82481e-05	3.25367e-06
+UniRef50_A1UTL7	0.00144908	0.000324356
+Transcriptional regulator	0.000593923	0.000152055
+PREDICTED	4.25438e-05	6.72924e-05
+DNA helicase	0.00166026	0.000545283
+UniRef50_Q9X9H7	0.000807717	0.000718279
+UniRef50_A0A037XIK8	0.000452315	2.4155e-05
+Polyribonucleotide nucleotidyltransferase	0.000145212	0.0154053
+Abortive infection protein	0.000177755	0.000650439
+LysR	1.27388e-05	4.80422e-06
+glycine betaine ABC transporter ATP binding protein	7.2004e-05	4.05087e-06
+UniRef50_C6D465	1.49166e-05	3.93168e-06
+DNA mismatch repair protein MutL	0.000987525	0.000555613
+Transposase IS3 IS911 family protein 	0.000108523	1.75029e-05
+Transcriptional regulator, TetR family	0.000485407	0.000213266
+UniRef50_K3ZVN5	5.2855e-05	5.7137e-05
+UniRef50_A0A031GP16	0.00119835	6.53512e-05
+hypothetical protein	1.80015e-05	1.82486e-05
+Protease	0.000226753	0.00251711
+Sulfate thiosulfate ABC transporter, permease protein CysW	0.00898452	0.00532808
+LPS biosynthesis protein	0.000203816	0.00175882
+UniRef50_U5MSD8	0.000313791	0.000932936
+chromosomal replication initiation protein	3.39349e-06	3.44948e-06
+Oxidoreductase, NAD binding domain protein	0.00402564	0.00141795
+Putative ATPase	5.27409e-05	3.89893e-05
+hypothetical protein	6.7648e-06	3.97132e-05
+UniRef50_J9NYR7	0.0001945	8.14844e-05
+UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000456504	0.00275748
+UniRef50_Q8FE39	0.000147832	4.76475e-05
+Glycosyl transferase family 1	0.000360273	0.000157416
+Ferric acinetobactin transport system ATP binding protein	0.000234801	0.00330733
+succinate dehydrogenase	1.49177e-05	7.54401e-06
+hypothetical protein, partial	5.56025e-05	4.17326e-05
+MULTISPECIES	8.8501e-06	3.78105e-05
+Bifunctional glutathionylspermidine synthetase amidase	0.00331179	0.000289604
+ABC type oligopeptide transport system,, ATPase component	0.000104302	0.000404522
+geranylgeranyl pyrophosphate synthase	1.65845e-05	3.84129e-05
+PTS system mannitol specific EIICBA component family protein 	1.13046e-05	1.46399e-05
+D allose transport system permease protein AlsC	0.00350599	9.37211e-05
+hypothetical protein	7.74568e-07	6.01862e-06
+Ketoisovalerate oxidoreductase subunit VorA	0.00225397	0.000151911
+Pyruvate flavodoxin oxidoreductase	0.000243348	5.83117e-05
+3 carboxymuconate cyclase	8.88773e-05	0.000329087
+UniRef50_A6VA52	0.000584201	0.000322967
+Cation diffusion facilitator family transporter	0.0163226	0.003975
+UniRef50_K1GVU9	6.03502e-06	3.333e-06
+Non canonical purine NTP pyrophosphatase	1.41782e-05	5.95565e-06
+Anaerobic ribonucleoside triphosphate reductase NrdD	0.00309252	0.00108907
+Polyribonucleotide nucleotidyltransferase	6.24394e-05	0.00226681
+VirB8 type IV secretion protein	9.2121e-05	0.00137728
+DNA polymerase III subunit alpha	0.00211621	0.000320403
+Bifunctional dihydrofolate reductase thymidylate synthase	2.32933e-06	2.13791e-06
+2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.00049251	0.00425825
+Chlorite dismutase	2.86259e-05	0.0173136
+Integral membrane protein, putative	0.00313463	0.000893375
+Transposase for insertion sequence element IS1106	2.61882e-05	0.00013674
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.26195e-05	2.2914e-05
+Immunoglobulin G binding protein A	0.00494401	0.000398593
+LuxR family transcriptional regulator	2.97219e-05	1.03003e-05
+Nitroreductase	0.000385896	0.000983183
+hypothetical protein	3.80517e-05	0.000119914
+Potassium transporting ATPase subunit B 	1.78458e-05	0.00125649
+UniRef50_G2Y3Z8	1.3019e-06	5.70179e-05
+PREDICTED	1.48625e-05	9.12995e-05
+PREDICTED	6.52543e-06	9.82267e-06
+DNA directed RNA polymerase subunit beta	2.49078e-06	1.11966e-06
+hypothetical protein	6.82795e-05	4.17856e-05
+8 amino 7 oxononanoate synthase	4.45894e-05	2.92509e-05
+Histidine kinase internal region	5.92515e-05	0.000723269
+Phosphate acetyltransferase	2.62658e-06	0.00418408
+Glutamate aspartate periplasmic binding protein	0.00224547	0.0004919
+preprotein translocase subunit SecD	2.50472e-06	2.20993e-06
+Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial	2.26847e-06	3.15897e-06
+PREDICTED	9.7944e-05	1.55944e-05
+Actinobacterial surface anchored protein domain protein	0.000178383	0.00223423
+Anthranilate synthase component 1, pyocyanine specific	0.000565105	6.30512e-05
+ATP dependent Clp protease ATP binding subunit ClpB	0.012339	0.00367218
+UniRef50_W0V3Q1	0.000236393	3.7356e-05
+Pca operon regulatory protein	0.000141605	0.00921524
+UniRef50_U3BC68	1.14655e-05	9.53638e-06
+Transcriptional regulatory protein GlrR	0.00401423	0.00133782
+UniRef50_A0A011Q2M3	1.76175e-05	4.7976e-05
+UniRef50_A6M0L8	0.000193544	0.000605887
+Cyclohexadienyl dehydratase	0.00129715	0.000111673
+UniRef50_R5XL07	0.000686795	0.0012538
+hypothetical protein	3.59397e-06	2.44718e-05
+chemotaxis protein CheD	0.000383624	2.41088e-05
+UniRef50_B7V438	0.000163109	0.000597415
+hypothetical protein	1.92362e-05	5.09861e-06
+hypothetical protein	3.50588e-05	8.46018e-06
+Molybdopterin binding domain of aldehyde dehydrogenase protein	0.000167437	0.000453644
+UniRef50_W5DRR2	0.00109416	6.72933e-05
+Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.000534515	0.000367302
+hypothetical protein	6.96457e-06	6.74785e-06
+Colicin I receptor	0.00215168	0.000647692
+UniRef50_F0Y056	4.16392e-05	0.000316768
+UniRef50_X0P3U7	2.90196e-05	0.000732752
+23S rRNA pseudouridylate synthase	9.97903e-06	1.48279e-05
+hypothetical protein	8.66999e-06	3.08311e-06
+UvrABC system protein C	1.33081e-05	2.93792e-05
+glycosyltransferase, partial	0.00020044	6.71798e-06
+UniRef50_Q3JHX4	3.02247e-05	0.000133305
+UniRef50_R7D4E7	0.000149362	1.34847e-05
+PTS system mannitol specific EIICB component	0.000330951	0.00031521
+Cupin 2, conserved barrel	0.000199141	0.0121978
+3 hydroxyacyl CoA dehydrogenase NAD binding	0.00544818	0.000903027
+Diguanylate cyclase  domain protein	0.000110281	0.000259155
+hypothetical protein	7.23337e-05	1.37449e-05
+TRAP transporter subunit DctP	0.00468399	0.000146229
+hypothetical protein	1.12257e-05	1.72033e-05
+Adenylosuccinate lyase	0.00080607	0.00526703
+RpiR family transcriptional regulator	0.00285175	0.000951168
+Membrane protease subunit HflK	0.00532396	0.000660714
+Acyl carrier protein	4.1708e-05	9.13879e-05
+2  hydroxypropyl CoM dehydrogenase	6.04491e-06	7.47108e-06
+tRNA binding domain protein	0.00880572	0.00341169
+200 kDa antigen p200, putative	3.60869e-05	3.30127e-05
+ABC transporter permease	4.22721e-05	2.41894e-05
+cell division protein FtsE	4.68265e-06	1.32045e-05
+Putative proline betaine transporter	0.00945445	0.00149587
+S adenosylmethionine decarboxylase proenzyme	0.00027013	0.000124464
+UniRef50_R5AXK8	0.000152056	0.00022929
+malate	2.27294e-06	4.20847e-06
+UniRef50_A6LWR4	0.000262929	0.000302587
+Urease subunit gamma	5.62204e-05	0.000152638
+UniRef50_C4RQ17	2.23338e-06	2.55506e-05
+Adhesin like protein	0.00112223	9.99265e-05
+Adenylate kinase	2.29217e-05	1.17981e-05
+UniRef50_P64431	0.00295639	0.000957507
+Alpha ketoglutaric semialdehyde dehydrogenase	3.45684e-06	0.000110075
+UniRef50_S4MLD0	8.68525e-05	6.23146e-05
+Transcriptional regulator, AraC family	0.0101757	0.00238259
+peptidase A8	1.90216e-05	1.99202e-05
+3 dehydroquinate synthase	6.39065e-06	4.17768e-06
+UniRef50_R7FWE0	0.000173616	4.83162e-06
+PREDICTED	6.86889e-07	1.68476e-06
+Predicted protein	2.24349e-05	6.96851e-06
+Lipid A biosynthesis lauroyl acyltransferase, putative	0.000958094	0.000887638
+NIF3 family protein HcgD	0.00149922	0.000312839
+ABC type transporter, periplasmic subunit	0.000512403	0.000877562
+hypothetical protein	2.05853e-06	8.95943e-06
+UniRef50_U6A8G4	6.89386e-05	7.99093e-05
+16S rRNA methyltransferase	4.50511e-06	1.35321e-05
+Peptidoglycan binding domain 1 protein	0.000583516	0.000106725
+Glycoside hydrolase family 25	0.000391047	0.000116302
+Adhesion protein associated protein	1.80739e-05	0.000572177
+UPF0313 protein CPR_1216	0.000484637	0.00175448
+PREDICTED	5.80075e-06	3.06374e-05
+Polypeptide transport associated domain protein FtsQ type	0.0003886	0.000887395
+Dipeptide binding protein	0.0012323	5.6433e-05
+UniRef50_F7Y2V0	3.43371e-05	6.15972e-06
+Flagellar hook capping domain protein	8.22667e-06	6.44526e-06
+Deoxyuridine 5 triphosphate nucleotidohydrolase	0.00319834	0.0039418
+hypothetical protein	5.22806e-05	6.47728e-06
+Carbamoyl phosphate synthase large chain	1.59622e-05	6.52181e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0028662	0.00129536
+UniRef50_E2CNB5	4.6653e-05	8.88811e-06
+aspartyl glutamyl tRNA amidotransferase subunit B	6.10388e-06	2.49394e-06
+primase	6.58465e-06	2.09345e-05
+Iron sulfur cluster binding protein	0.000588876	0.00157483
+Outer membrane porin	2.46732e-05	6.35786e-06
+Diacetyl reductase [ acetoin forming]	0.0363343	0.00591059
+Endonuclease V	0.0047201	0.000771268
+hypothetical protein	3.46619e-06	5.8518e-06
+Hydroxymethylglutaryl CoA synthase	0.00327441	0.00104433
+UniRef50_J0QZG9	1.28573e-05	2.17706e-06
+hypothetical protein TREMEDRAFT_73008	2.2327e-06	4.06191e-06
+UniRef50_Q6F9W5	0.000155569	0.00278104
+Fructokinase	0.003923	0.000611586
+Phosphoglucosamine mutase	4.29027e-06	1.24231e-05
+Chain length determinant protein	0.000696418	0.000138451
+Acetyltransferase, putative	0.000165787	0.0148736
+UniRef50_Q57048	0.000758245	6.30069e-05
+RND family drug transporter	0.000369373	0.00365596
+UniRef50_R0NCH4	3.92065e-05	2.36019e-05
+Conjugal transfer mating pair stabilization protein	1.31282e-05	3.03856e-06
+hypothetical protein	9.05454e-06	0.000716495
+amino acid ABC transporter, ATP binding protein	0.000115358	3.06377e-05
+UniRef50_X5KFC2	0.000703761	9.86647e-05
+Chaperone protein DnaK 1	0.000179676	3.84589e-05
+Electron transfer flavoprotein ubiquinone oxidoreductase 	2.52538e-05	8.13644e-06
+UniRef50_A8LI45	0.014796	0.00220066
+Extracellular solute binding protein family 1	9.67366e-06	2.58815e-06
+UniRef50_F0YKH0	0.000178073	0.000116809
+Taurine  pyruvate aminotransferase	0.00748056	0.000821175
+Sulfate transporter	8.52741e-05	7.63477e-05
+hypothetical protein	1.64231e-05	5.92647e-06
+UniRef50_B9KRK1	0.00276397	0.00128522
+Ribosomal RNA small subunit methyltransferase I	1.83381e-05	1.61675e-05
+hydrolase	2.21762e-05	3.57865e-06
+Membrane bound O acyl transferase, MBOAT family protein	0.00917654	0.00078466
+UniRef50_P17994	0.00290565	0.000795006
+UniRef50_P28812	0.00869623	0.00138017
+UniRef50_C5Q6U5	0.000135828	5.06875e-05
+hypothetical protein	7.91153e-05	5.97871e-05
+P protein	1.03482e-05	0.00168258
+High affinity zinc uptake system protein ZnuA	0.00242499	0.000670154
+Penicillin binding protein, transpeptidase domain protein	7.08026e-05	0.00355198
+UniRef50_A5UNT4	0.00230824	0.000217397
+Phosphoribosylformylglycinamidine synthase, purS	0.000101949	1.71707e-05
+PilS cassette, partial	8.61021e-05	9.82471e-05
+UPF0301 protein HIMB100_00008270	1.50897e-05	1.2643e-05
+hypothetical protein	0.000385597	7.64781e-05
+UniRef50_F0KGG0	3.92674e-05	0.00436919
+Riboflavin biosynthesis protein RibD	7.12358e-06	7.57019e-05
+Sensor histidine kinase DcuS	0.0028444	0.000261025
+UniRef50_Q58633	0.00237136	0.000755775
+Probable ATP synthase y4yI	0.000624705	9.64392e-05
+hypothetical protein	3.38909e-06	1.4645e-05
+Glucose 6 phosphate isomerase	0.00285379	0.000924102
+Late competence protein, ABC transporter subunit	0.00619948	0.000493497
+UniRef50_Q58639	0.00352617	0.00111357
+Putative polyhydroxyalkanoate synthesis repressor PhaR	1.04454e-05	7.98695e-06
+Immunodominant antigen B, putative	0.00602129	0.00208634
+Zinc binding lipoprotein LraI, laminin binding protein	0.000206895	0.00349937
+UniRef50_B9E943	0.0239395	0.00277328
+Xanthine and CO dehydrogenases maturation factor like protein	5.89887e-06	1.10786e-05
+DNA mismatch repair protein MutS	0.0207167	0.00226292
+UniRef50_A0A022L535	4.93073e-06	9.661e-06
+UniRef50_Q097G2	3.72644e-05	4.99137e-06
+ATP dependent protease, Lon family	0.000447718	0.00101732
+N 6 DNA Methylase family protein	0.00045023	0.000955274
+GTPase Der	0.00413771	0.000495383
+UniRef50_Q4EKV3	0.000539917	0.000472362
+Thiazole biosynthesis protein ThiH	2.67817e-05	2.67508e-05
+UPF0255 protein KPN78578_02430	0.00410244	0.000541163
+hypothetical protein	9.96427e-05	3.65202e-05
+UniRef50_C4RDJ1	0.000588548	1.76109e-05
+branched chain amino acid ABC transporter ATPase	2.45451e-05	6.32862e-06
+hypothetical protein, partial	0.000682193	0.0047388
+Putative glycosyltransferase WbbK	0.00110769	0.000645934
+hypothetical protein	6.52629e-06	6.48795e-05
+UniRef50_A5WHU9	0.000148477	0.00215911
+SagB type dehydrogenase domain protein	0.00736993	0.000801512
+Argininosuccinate lyase	1.59983e-05	6.01499e-06
+Lon protease  C terminal proteolytic domain protein	8.25099e-05	0.00423612
+Tagatose bisphosphate aldolase	1.22671e-05	4.14091e-06
+putative transposase, partial	7.94058e-05	0.0114184
+tRNA 2 methylthio N dimethylallyladenosine synthase	0.00252781	0.000173908
+hypothetical protein	2.92421e-06	2.22873e-06
+hypothetical protein	4.08298e-06	3.01083e-06
+2 dehydropantoate 2 reductase	0.00114409	9.50104e-05
+Quinoprotein ethanol dehydrogenase	0.00058671	0.000208208
+Chromosome partitioning protein ParA	0.00016092	3.70436e-05
+amino acid carrier protein	8.99454e-06	0.000520438
+Cytochrome c oxidase subunit 3	0.0157349	0.00185312
+Delta 1 pyrroline 5 carboxylate dehydrogenase	9.21474e-05	0.00330828
+UniRef50_G0LQ70	0.0143392	0.00121849
+Oxidoreductase	3.13459e-05	0.00065229
+Ribulose bisphosphate carboxylase small chain, plasmid	0.000550068	3.69509e-05
+UniRef50_X8CBL8	1.19633e-05	5.39472e-05
+Macro domain containing protein MM_0177	0.00300247	0.0122282
+PREDICTED	6.82652e-05	5.3649e-05
+Diguanylate cyclase	6.0978e-06	1.25332e-05
+Ppx GppA phosphatase	0.000791073	0.000621878
+UniRef50_A6V2C1	0.000178068	0.000140066
+Periplasmic dipeptide transport protein	0.0174681	0.00234877
+Non canonical purine NTP pyrophosphatase	6.16313e-06	9.91034e-06
+UniRef50_Q8DSP3	0.00307771	0.000163543
+UniRef50_S6D6U3	0.000500266	2.38523e-06
+UniRef50_V5ES07	8.16413e-06	5.83185e-06
+UniRef50_D3QI46	0.00993643	0.00077346
+Chaperone protein DnaK	0.000108375	0.027285
+hypothetical protein, partial	2.0784e-05	2.65528e-05
+Sterol O acyltransferase 2 domain protein	0.000269959	0.000278835
+Enoyl CoA hydratase isomerase family protein	0.000521538	0.00525478
+Prolipoprotein diacylglyceryl transferase	0.0088288	0.00293321
+exodeoxyribonuclease III	4.29276e-05	9.57578e-06
+UniRef50_Q3IUW3	0.0365551	0.00151886
+methionine ABC transporter substrate binding protein	3.53787e-05	7.04429e-06
+TraX protein	8.231e-06	0.000583328
+ATP synthase F0, subunit I	2.41209e-05	1.58435e-05
+hypothetical protein	4.15661e-05	9.491e-05
+hypothetical protein	5.3679e-06	8.83668e-06
+theronine dehydrogenase	8.49426e-06	3.18987e-06
+Proteinase	0.00412857	0.000848019
+Carbamoyl phosphate synthase L chain, ATP binding	6.82654e-05	0.00420859
+UniRef50_K0TJQ0	6.29796e-06	2.84947e-05
+DNA polymerase sliding clamp	0.00279216	0.000626551
+UniRef50_I6U069	0.00600729	0.000552339
+Putative surface protein MW2416	0.000689726	4.93866e-05
+Marine sediment metagenome DNA, contig	1.49883e-05	1.06282e-05
+Nitrogenase molybdenum iron protein alpha chain	0.000377208	0.000873607
+UniRef50_W0IE40	0.00018978	8.62566e-05
+Crossover junction endodeoxyribonuclease RusA	0.000290964	0.000249402
+UniRef50_K0S630	5.27612e-06	7.26442e-05
+Isopentenyl diphosphate delta isomerase	0.00401986	0.000783304
+GTP binding protein YchF	1.91699e-05	4.58216e-06
+hypothetical protein	1.30299e-05	1.60414e-05
+UniRef50_F8JWN1	3.43108e-05	6.54685e-05
+hypothetical protein	1.10237e-05	5.011e-06
+Succinate dehydrogenase iron sulfur subunit	0.00144181	0.000577437
+hypothetical protein	1.20613e-05	3.97456e-05
+hypothetical protein	1.55211e-06	1.66529e-06
+UPF0125 protein PflA506_4569	2.00062e-05	2.29186e-05
+ATPase AAA	0.000217638	3.92245e-05
+UniRef50_A0A011Q9T7	0.000132579	4.27729e-05
+Putative translation initiation inhibitor	2.07868e-05	9.26273e-06
+Cytochrome c type biogenesis protein CcmF	0.000122734	4.66431e-05
+ABC transporter substrate binding protein	6.55283e-06	4.05935e-05
+UniRef50_F0Y1G4	2.78723e-05	9.54647e-05
+UTP  glucose 1 phosphate uridylyltransferase	2.46071e-05	7.27295e-06
+Cation transporting ATPase, E1 E 2 family, putative	0.00642663	0.00350683
+Flagellar hook associated protein FlgK	0.000219715	0.000778999
+Marine sediment metagenome DNA, contig	3.36902e-05	1.50368e-05
+Aminotransferase, class III	0.000671072	0.00016463
+UniRef50_H2K108	8.2179e-05	4.08397e-05
+Sulfate adenylyltransferase	5.31243e-05	4.0308e-05
+acetyl CoA carboxylase	6.28893e-06	1.80745e-06
+Protein RseC	0.00110049	0.000205929
+Carbamoyl phosphate synthase large chain	1.5342e-05	0.00288343
+hypothetical protein	0.000148818	1.81388e-05
+glucosamine  fructose 6 phosphate aminotransferase , partial	1.54221e-05	1.00108e-05
+hypothetical protein	8.74092e-06	0.000481929
+Prolyl endopeptidase	4.96384e-05	0.0119658
+UniRef50_D3BJZ9	8.51686e-07	9.43645e-06
+peptidase	4.17845e-06	4.34053e-06
+GTPase	1.65429e-05	0.00188477
+Cobalamin synthesis protein, putative	0.0223215	0.00342586
+hypothetical protein	6.71666e-05	2.6101e-05
+Alpha beta hydrolase	0.00215508	0.000122825
+DNA repair protein RadA, partial	6.52097e-06	3.0137e-06
+2 isopropylmalate synthase homocitrate synthase family protein	0.00118326	0.000323027
+ATP synthase	5.00022e-06	2.07499e-06
+Conserved membrane spanning protein	8.03858e-05	0.0030959
+Transcriptional regulator, DeoR family	0.00267659	0.000131457
+Leucine  tRNA ligase	0.00238813	0.000362027
+Unsaturated chondroitin disaccharide hydrolase	0.000573998	0.00130483
+RDD domain containing protein	1.59949e-06	4.0216e-06
+Lysostaphin resistance protein A	0.0202853	0.0024694
+Succinyl CoA	3.06627e-05	0.00178713
+Phosphate ABC transporter, periplasmic phosphate binding protein PstS	7.01092e-06	3.52755e-06
+Animal heme peroxidase	0.00315193	0.000854315
+UniRef50_Q82AZ8	8.94778e-06	0.00089889
+hypothetical protein	5.21436e-06	2.21621e-05
+UniRef50_G7FVR9	5.43238e-05	4.57223e-06
+PI 1 ancillary protein 2	0.000139647	0.000837797
+PhoH like protein 	0.000402503	0.000220061
+hypothetical protein	0.000577016	0.00104269
+UPF0051 protein MTH_1150	0.00381904	0.000373465
+PREDICTED	4.63399e-06	3.771e-06
+thiamine biosynthesis protein ThiC	2.00059e-05	3.14284e-05
+UniRef50_F8IMU7	0.0045271	0.000717505
+UniRef50_A6M039	0.000500114	0.00109534
+peptidyl tRNA hydrolase	1.60008e-05	1.34422e-05
+hypothetical protein, partial	3.46227e-05	0.000365455
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00884475	0.00245877
+hypothetical protein	7.69287e-05	4.15993e-05
+hypothetical protein	5.70557e-06	3.48263e-06
+hypothetical protein	0.000228283	7.31876e-06
+UniRef50_B9EA42	0.0221878	0.00230866
+hypothetical protein	3.2454e-05	1.20036e-05
+Ser Thr protein phosphatase family protein	0.000347419	0.000137286
+Metallo beta lactamase superfamily domain protein in prophage	0.000619817	2.09198e-05
+Cysteine synthase	2.16109e-05	4.10756e-06
+hypothetical protein	3.78996e-06	2.80036e-06
+Sodium dependent galactose transporter	0.000171126	0.000303999
+Enolase	7.15752e-06	3.25698e-05
+ZIP zinc transporter family protein	0.00371964	0.0010141
+UniRef50_T9Q7C2	0.000307819	0.000273734
+PREDICTED	9.76591e-06	0.0001235
+Multidrug resistance protein MdtG	0.00302181	0.000319112
+Binding protein dependent transport systems inner membrane component	0.00350287	0.000333927
+LPXTG motif cell wall anchor domain protein	7.02227e-05	9.57225e-07
+Tail protein	0.002472	0.000335895
+Putative esterase	5.67046e-06	5.01027e-06
+UniRef50_D4YR40	4.98443e-07	1.25031e-06
+Replicative DNA helicase	7.54593e-05	0.000917887
+UniRef50_UPI0003503BD0	0.00033477	4.43323e-05
+NADH quinone oxidoreductase subunit I	0.000194855	0.00226994
+Putative phosphoethanolamine transferase YhbX	0.00229816	0.000400368
+hypothetical protein	2.9329e-05	1.07826e-05
+UniRef50_M4WUT5	0.000818392	0.000387733
+Methyl viologen reducing hydrogenase subunit delta	0.00255745	0.000339451
+Nitrogen assimilation regulatory protein nac	0.00136009	0.00137569
+Mannose specific phosphotransferase system component IIC low	0.000257569	0.00182328
+Lipoprotein signal peptidase	0.00114704	0.00029632
+hypothetical protein	4.43769e-05	2.3216e-05
+UniRef50_B9EC33	0.0150811	0.00164391
+single stranded DNA binding protein	4.85632e-05	0.000356843
+Putative Holliday junction resolvase	0.00725681	0.00215877
+Nickel import ATP binding protein NikD, putative	0.000256907	0.000204988
+UniRef50_A0A022NSU8	5.55055e-05	4.77579e-05
+UniRef50_E6NXI7	0.00234553	0.000425319
+30S ribosomal protein S2	1.16362e-05	1.24152e-05
+Transcription elongation factor GreA	0.000315514	0.0119482
+hypothetical protein	4.10692e-05	3.7294e-05
+UniRef50_E1QYV1	7.76343e-05	0.000315111
+Carbohydrate kinase, FGGY like protein	7.06046e-05	8.60833e-05
+UniRef50_L5SRM4	0.000431059	0.000469423
+Inner membrane translocator	0.000236176	0.00117757
+Regulator of arsenical resistance	0.00122117	0.000308539
+TonB dependent receptor	0.00683966	0.00119177
+UniRef50_F7YB26	0.000198253	8.65032e-05
+Patatin	0.000121791	0.000497424
+Aldehyde dehydrogenase  family protein	0.00903411	0.000718834
+UniRef50_UPI00044220DD	1.03238e-05	1.05775e-05
+PTS system ascorbate specific transporter subunit IIC	0.0109555	0.00224116
+Iron sulfur cluster repair protein ScdA	0.0178282	0.00526439
+Homoprotocatechuate 2,3 dioxygenase	0.000386575	0.000360351
+hypothetical protein	2.7379e-06	5.91732e-06
+Ribonuclease Y	0.000118539	0.0103002
+Oxidoreductase, NAD binding	0.00013574	0.000549309
+UniRef50_X5Z4Q0	0.000801977	0.000113498
+Oxygen independent coproporphyrinogen III oxidase	0.000468137	0.00437259
+Response regulator protein	0.00648385	0.00078508
+Transposase IS66	7.50211e-05	1.57851e-05
+UniRef50_V7EIE7	5.60123e-05	1.68101e-05
+3 isopropylmalate dehydrogenase 3, chloroplastic	5.17819e-05	1.51822e-05
+chemotaxis protein CheA	2.41373e-06	1.25297e-06
+Transcriptional repressor, antitoxin for RelE like 	0.000438976	0.00233572
+Methyl accepting chemotaxis protein McpC	0.000243985	0.00293552
+PREDICTED	4.1221e-06	4.29653e-05
+LrgA family protein	0.00384903	0.000667528
+Periplasmic binding protein	0.0114233	0.00203328
+UniRef50_E6C9E2	0.000125891	0.00215494
+hypothetical protein	6.95697e-05	1.95194e-05
+hypothetical protein	2.10683e-05	2.03699e-05
+UniRef50_F9YY68	0.000178938	0.00374066
+glycerol 3 phosphate ABC transporter ATP binding protein	9.22696e-06	3.29857e-06
+Ribosomal large subunit pseudouridine synthase A	2.32338e-05	7.89439e-06
+Protein RecA	9.63402e-05	0.00253495
+Amidohydrolase	0.000181238	0.002471
+CAAX amino protease family protein	0.00267	0.000560868
+hypothetical protein	7.84304e-05	2.30624e-05
+Ferric enterobactin transport system permease protein FepG	0.00474878	0.000807579
+Ribosomal RNA large subunit methyltransferase E	0.000111396	2.62714e-05
+Autotransporter	0.000541459	8.57428e-05
+Pyridoxine pyridoxamine 5 phosphate oxidase	8.32579e-06	0.000189467
+hypothetical protein	1.71632e-05	5.07026e-06
+UniRef50_C5QLR6	2.13831e-05	1.37709e-05
+Non canonical purine NTP pyrophosphatase	1.00496e-05	5.71156e-06
+ABC transporter, permease protein	0.000393178	0.00198636
+ATPase associated with various cellular activities, AAA_5	0.00095437	0.000103439
+Nucleoside diphosphate kinase	5.14909e-05	2.03546e-05
+C4 dicarboxylate ABC transporter	1.00042e-05	1.26932e-05
+Flagellar motor switch protein FliN	8.46308e-05	0.000462671
+hypothetical protein	8.39691e-06	5.51306e-05
+UniRef50_G8LJ33	0.000102365	0.000295719
+Valine  tRNA ligase	0.00622343	0.00254259
+UniRef50_G8UTA5	2.54961e-05	7.95509e-06
+UniRef50_A1B9B4	0.00524207	0.00104614
+Hca operon transcriptional activator	0.000412745	0.000511521
+Mannitol ABC transporter, permease protein	0.0122054	0.00081848
+hypothetical protein	1.48945e-05	1.76995e-06
+50S ribosomal protein L18	6.26281e-05	8.85737e-05
+Response regulator	0.000224366	0.0357267
+UniRef50_R9YN56	0.0066107	0.000321583
+Histidinol dehydrogenase	3.40758e-06	6.36952e-06
+NH dependent NAD+ synthetase	0.000333416	2.05231e-05
+Replication initiator protein A domain protein	8.47904e-06	2.34096e-06
+Glycogen debranching enzyme GlgX	0.000303361	0.000798436
+FecCD family membrane transport protein	0.000103447	0.00258293
+UniRef50_A0NUH2	0.000392205	5.64586e-05
+UniRef50_A7AXT8	7.76146e-06	1.07478e-05
+UniRef50_K2FH80	0.000146091	0.000126972
+UniRef50_W8AHC9	3.47332e-06	0.000443619
+hypothetical protein	2.98887e-05	6.37675e-05
+S adenosylmethionine dependent methyltransferase	0.000391307	0.000762076
+CMP N acetylneuraminic acid synthetase NeuA	0.00391664	0.000226926
+ribonuclease D	6.12044e-05	5.54876e-06
+Anhydro N acetylmuramic acid kinase	0.000964246	0.000216188
+Probable fructose 6 phosphate aldolase	6.10302e-05	0.00176956
+hypothetical protein	1.81656e-06	0.000341289
+Imidazole glycerol phosphate synthase subunit HisH	3.27625e-05	0.00218337
+Glutamate aspartate transport system permease protein GltK	0.00229856	0.000134208
+Fructose bisphosphate aldolase	1.35426e-05	0.0231477
+Diaminopimelate decarboxylase	0.00797671	0.00231118
+UniRef50_Q46UT4	0.000164812	3.15602e-05
+UniRef50_A0A011GQD3	0.000684902	0.00395346
+TraN	1.31059e-05	3.03336e-06
+UniRef50_F0KLF9	0.000100864	0.00419381
+UniRef50_E3NVW5	3.7675e-05	4.76488e-06
+NADH quinone oxidoreductase subunit G	0.000399498	0.000271467
+Raf like protein	1.17729e-05	1.06477e-05
+hypothetical protein	7.09281e-05	0.000345311
+3 methyladenine DNA glycosylase	0.0104417	0.00174345
+hypothetical protein	7.2382e-07	1.24169e-05
+UniRef50_B9EAD9	0.0174583	0.00336351
+DNA uptake protein and related DNA binding proteins	0.00451856	0.00107406
+glycine cleavage system aminomethyltransferase T	4.15631e-05	1.79907e-05
+Transcriptional regulator ArgR	0.000993917	0.000158911
+hypothetical protein, partial	3.92173e-06	3.44565e-05
+Pyruvate dehydrogenase E1 component	7.89882e-05	1.80511e-05
+Dipeptide transport ATP binding protein DppD	0.000680397	0.00169129
+Fatty acid desaturase	0.000115125	0.000665987
+GTPase Obg	0.000100064	0.00436285
+UniRef50_N6VD20	1.73462e-05	6.56873e-06
+ABC transporter	5.9861e-06	4.91794e-06
+UniRef50_P64632	4.2571e-05	0.000272075
+GCN5 related N acetyltransferase	0.000893492	0.000602207
+Expressed protein 	0.000136532	0.000521611
+Propionyl CoA	0.00271292	0.00354713
+hypothetical protein	0.000462436	2.41137e-05
+UniRef50_Q9RYP5	6.52647e-05	0.00194248
+precorrin 2 C20 methyltransferase	4.72998e-05	9.27451e-06
+UniRef50_H0E6G7	4.82414e-06	4.24981e-05
+serine 3 dehydrogenase	9.35176e-06	1.73157e-06
+hypothetical protein	4.07479e-06	3.47746e-06
+CTP synthase	4.2083e-06	5.5289e-05
+Oxidoreductase	0.000347594	0.000105012
+UniRef50_F5YTP1	5.44621e-06	2.85509e-05
+SsrA binding protein	1.78597e-05	0.00047155
+UniRef50_B7QX02	7.5843e-05	2.27702e-05
+UniRef50_E8P9C7	0.000291244	0.00348952
+UniRef50_E6S2B8	8.61472e-05	0.00159044
+NADH quinone oxidoreductase subunit K	3.2861e-05	1.77397e-05
+F0F1 ATP synthase subunit beta	2.65909e-05	1.86353e-05
+2 dehydro 3 deoxygluconokinase	1.97898e-05	6.10199e-06
+Putative 3 methyladenine DNA glycosylase	1.4973e-05	1.79448e-05
+Membrane protein involved in aromatic hydrocarbon degradation	9.93233e-06	1.34931e-05
+UniRef50_T0XUL7	3.76602e-06	0.00130049
+ATP synthase subunit beta	1.52607e-05	6.47459e-06
+UniRef50_Q1QYW0	0.000241286	0.000270222
+hypothetical protein, partial	2.04381e-05	0.000111438
+UPF0246 protein Cbei_1739	0.000325788	0.000220061
+UniRef50_Q8DSK3	0.00578278	0.00433634
+Carboxynorspermidine decarboxylase	6.88073e-05	7.62998e-05
+FAD dependent pyridine nucleotide disulfide oxidoreductase, partial	0.000216739	1.71285e-05
+cytochrome P450	5.83488e-06	5.33304e-06
+Poly beta 1,6 N acetyl D glucosamine synthase	0.0161337	0.000703517
+hypothetical protein	7.69409e-07	9.97702e-07
+UniRef50_Q8DSK9	0.00111534	0.00281103
+UniRef50_H3USC3	0.00608192	0.0282655
+hypothetical protein	1.59947e-05	5.73618e-06
+transposase, partial	0.00191928	0.00028868
+UniRef50_P71285	0.000225505	0.000598725
+Tat  pathway signal sequence	0.000171417	0.00299967
+Two component sensor	0.00033915	0.000193701
+Phage head tail adaptor	2.92153e-05	1.72953e-05
+Trimethylamine N oxide reductase	0.000773599	0.000134774
+Glutamate dehydrogenase	0.00652076	0.00132244
+UniRef50_U6H7V4	1.61869e-05	1.29548e-05
+Protein translocase subunit SecA	8.64499e-05	0.00266301
+hypothetical protein	0.000588926	0.000155135
+UniRef50_R7N4P8	9.34514e-06	5.51741e-06
+Branched chain amino acid ABC transporter, periplasmic amino acid binding protein	0.00912998	0.000709082
+Triacylglycerol lipase	0.000179652	0.00386156
+UniRef50_Z5A0E9	8.14293e-06	7.97636e-06
+sodium	7.78096e-06	5.2829e-06
+UniRef50_H8MJ08	2.68918e-06	2.06109e-06
+UniRef50_Y6XNC4	0.00290678	0.000218455
+UniRef50_B0V6T3	0.000368321	0.00298146
+hypothetical protein, partial	0.000193498	3.276e-05
+UniRef50_A6LWL8	0.000448194	0.000585418
+2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein	2.67069e-06	6.8892e-06
+hypothetical protein	7.5554e-06	6.34345e-06
+Isochorismate synthase	0.014911	0.0022776
+Probable chromosome partitioning protein ParB	0.000497606	0.00299558
+hypothetical protein	0.00013117	7.80279e-06
+hypothetical protein	3.45165e-05	2.65679e-05
+UniRef50_E3D3B9	0.00036657	0.000911543
+UniRef50_Q52967	0.000164946	1.31431e-05
+heptaprenyl diphosphate synthase subunit II	3.38885e-05	1.90933e-05
+NADH ubiquinone oxidoreductase chain 6	9.89806e-05	1.47214e-05
+UniRef50_Q2JTQ1	0.000377635	0.000442014
+PTS beta glucoside transporter subunit IIABC	4.95939e-06	2.69662e-06
+hypothetical protein	4.92535e-05	8.83709e-05
+Glycerate kinase	0.000337997	0.00273879
+NADH quinone oxidoreductase subunit I 1	5.89839e-06	2.99341e-05
+UPF0234 protein TOL_2827	1.27435e-05	2.85289e-05
+biotin synthase	8.65344e-06	1.10115e-05
+Cytochrome c, monohaem	0.00175236	0.000288472
+UniRef50_H9GTR8	7.84695e-05	2.0271e-05
+Ribose import ATP binding protein RbsA 2	2.26592e-06	1.91087e-06
+Alkanal monooxygenase alpha chain	0.00816857	0.00261305
+UniRef50_A0A013LFH7	0.000214022	0.00157828
+Proteophosphoglycan ppg4 	0.000141624	0.000179967
+UniRef50_J9V068	0.000478505	0.000338811
+UniRef50_C2GIT9	2.65722e-05	1.47159e-05
+UniRef50_A6LV04	0.000870403	0.000819632
+hypothetical protein	2.20629e-06	2.04321e-06
+Predicted protein 	6.56294e-05	0.00132329
+UniRef50_K0X1N1	0.000302528	4.03371e-05
+N5 carboxyaminoimidazole ribonucleotide synthase	0.0187617	0.00362415
+hypothetical protein, partial	2.60305e-06	6.59816e-06
+Triose phosphate Transporter family protein	0.0125839	0.00245753
+Binding protein dependent transport systems inner membrane component	0.00173106	0.000349844
+Penicillin binding protein 1B	0.00282625	0.000467136
+UniRef50_R4LWQ6	5.16501e-05	1.94437e-05
+Alkaline shock protein 23	0.0054754	0.0016825
+Sensor protein kinase WalK	0.0229151	0.00317501
+UniRef50_W9HAI5	3.18881e-06	7.70526e-06
+Ribonuclease J 1	0.0212463	0.00683355
+Purine nucleoside phosphorylase DeoD type	4.37709e-05	0.0346462
+Flavodoxin	0.00895754	0.00256203
+UPF0753 protein SSP2379	0.00951813	0.00208792
+ABC transporter permease	3.20864e-05	1.48872e-05
+hypothetical protein	3.24106e-05	8.25422e-05
+Hybrid peroxiredoxin hyPrx5	1.5232e-05	0.000823543
+hypothetical protein	0.000102684	4.6335e-05
+Penicillin binding protein	0.000229924	0.00149824
+Acetyl CoA acetyltransferase, mitochondrial	4.6469e-06	2.13814e-05
+1,6 anhydro N acetylmuramyl L alanine amidase AmpD	2.9545e-05	3.92882e-05
+hypothetical protein	4.22157e-06	1.17044e-05
+Biotin synthase	4.03277e-06	7.07384e-06
+Transcriptional regulator, BadM Rrf2 family	2.64139e-05	9.73168e-05
+Transposase	0.00171876	0.000240066
+Enoyl [acyl carrier protein] reductase 	2.2766e-05	9.76092e-06
+ABC transporter ATP binding protein	0.00943293	0.000710182
+Ribose import ATP binding protein RbsA	3.70157e-06	2.43544e-06
+hypothetical protein	1.34263e-05	7.76605e-07
+UniRef50_Z9VYD6	2.79576e-05	2.48544e-05
+large conductance mechanosensitive channel protein MscL	0.000323321	4.06801e-05
+Diguanylate cyclase  domain containing protein	4.69e-05	0.000168483
+UniRef50_I6U2X8	0.0046888	0.0005788
+Oxidoreductase FAD binding domain protein	0.000448694	9.92098e-05
+ATP synthase subunit alpha, chloroplastic	3.01159e-06	3.00189e-06
+hypothetical protein	4.48978e-05	4.44986e-05
+UPF0176 protein ACIAD2917	3.96858e-06	6.20764e-06
+NADH quinone oxidoreductase subunit K 1	1.44016e-05	0.000622233
+hypothetical protein	1.06404e-05	3.47188e-06
+Probable glucarate transporter	0.00393846	0.00412304
+UniRef50_M9S4A5	0.000591344	0.0002677
+UniRef50_B9JZN3	1.00363e-06	2.7266e-05
+UniRef50_H0HWX8	0.00019966	9.19034e-05
+UniRef50_UPI0003289C1D	7.02805e-06	1.67532e-06
+Cardiolipin synthase C	0.00357214	0.000291655
+LysR family transcriptional regulator 	5.97906e-05	1.50794e-05
+Glutamate ammonia ligase adenylyltransferase	0.00035064	0.000103624
+Short chain dehydrogenase family protein	0.00020947	0.00295922
+hypothetical protein	2.27982e-05	1.00896e-05
+chemotaxis protein CheA	1.55195e-05	8.51025e-07
+UniRef50_D5AKE9	4.33099e-06	1.3389e-06
+UniRef50_Q02GV4	0.00118559	0.000235621
+Hydroxyethylthiazole kinase	0.00153285	0.000151153
+UniRef50_Q49XX5	0.0142873	0.00147084
+UniRef50_M9R1S6	4.43407e-05	4.12614e-05
+UniRef50_U8A0B9	7.9973e-06	9.76952e-06
+UniRef50_Q9HW54	0.000193604	8.78521e-05
+Riboflavin biosynthesis protein RibBA	6.60401e-06	8.62994e-06
+Thiol	0.000496205	0.00319251
+UniRef50_N9N018	7.46829e-05	8.78993e-06
+Zinc metalloprotease, putative	7.60275e-05	0.00581541
+uroporphyrin III methyltransferase	2.65842e-05	5.69405e-06
+UniRef50_W2C810	8.07116e-05	8.31819e-06
+Dihydroxy acid dehydratase	1.87404e-05	5.26676e-06
+HTH type transcriptional regulator SAB2452	0.0128564	0.00132757
+Phosphopantetheine adenylyltransferase	5.49955e-05	6.48147e-06
+Phosphoribosylamine  glycine ligase	0.000434973	0.000101797
+hypothetical protein	1.38412e-05	4.37446e-06
+hypothetical protein	5.3604e-06	8.23956e-06
+UniRef50_A7X198	0.000329913	7.38782e-06
+MULTISPECIES	0.00169464	0.000303019
+A G specific adenine glycosylase	0.000132153	0.00327916
+Urease subunit beta	7.67361e-05	1.88496e-05
+flagellar biosynthetic protein FlhB	8.83751e-05	1.1979e-05
+UniRef50_P76545	0.00119131	0.000393793
+UniRef50_R1EB69	2.16915e-06	2.14674e-05
+beta N acetylhexosaminidase	7.21739e-06	6.29745e-06
+BolA family protein	3.37315e-05	5.66484e-05
+UniRef50_D7CQX7	0.000107753	0.0210888
+Raffinose transport system permease protein	0.000468247	0.000849726
+Polyhydroxyalkonate synthesis repressor, PhaR	2.82159e-05	5.60561e-06
+RNAse E	1.18102e-05	3.87802e-06
+UniRef50_A5UKL3	0.00355006	0.000869905
+UniRef50_U5UJL0	0.0196416	0.0032356
+excinuclease ABC subunit A	7.02105e-06	1.01648e-05
+UniRef50_V4ZVN5	3.90517e-05	4.493e-05
+Shikimate kinase	0.000452756	0.0103047
+homoserine dehydrogenase	4.02667e-06	1.84811e-05
+UniRef50_Q5HRU9	0.0036841	0.00109758
+Bifunctional dihydrofolate reductase thymidylate synthase	2.03977e-05	4.47603e-05
+UniRef50_G7M1X8	0.000148042	0.000300159
+UniRef50_C5KZL8	8.64592e-06	2.71776e-06
+hydrolases of HD superfamily protein	1.65904e-05	5.18127e-05
+UniRef50_D7GDS1	0.000494925	0.00120615
+4 phosphoerythronate dehydrogenase	0.000212557	0.00307663
+Prolipoprotein diacylglyceryl transferase	0.00114793	0.000118098
+UvrABC system protein C	0.000331886	0.000806822
+UniRef50_Q2FW88	0.000446576	0.000280627
+Staphylocoagulase	0.011802	0.00134724
+Conserved membrane spanning protein	0.000104559	0.00283909
+UniRef50_B6ASY9	3.84746e-05	1.7862e-05
+UniRef50_K7KA74	1.9012e-05	1.05341e-05
+Translation initiation factor IF 2	0.000446231	0.000579732
+UniRef50_I6T4B3	5.64983e-05	3.22541e-05
+UniRef50_G8QKA4	6.1305e-05	1.04888e-05
+Prepilin type N terminal cleavage methylation domain protein	5.09386e-05	3.74655e-05
+Proton translocating NADH quinone oxidoreductase, chain M	0.000137133	0.000393503
+UniRef50_A9E7Y1	0.000799589	6.06831e-05
+UniRef50_C4JB45	5.86728e-05	3.10085e-05
+Sensor protein CiaH	0.00316161	0.00150806
+UniRef50_D8JKU2	0.000620181	0.00491371
+hypothetical protein	4.51065e-05	4.58424e-05
+Fructose 1,6 bisphosphatase inositol 1 monophosphatase	6.42897e-06	1.30644e-05
+Methylmalonyl CoA mutase, small subunit	6.81732e-05	0.0038979
+Iron ABC transporter, periplasmic iron binding protein	0.000513278	0.000126458
+UniRef50_A3SN26	3.76268e-06	3.93784e-06
+NADH	0.000123203	0.000811902
+hypothetical protein DR_A0286, partial	8.37333e-05	0.0178475
+Sugar kinase	0.000106503	0.00264379
+hypothetical protein	1.73232e-05	1.75807e-06
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial	8.09828e-05	7.98528e-06
+TRAP transporter solute receptor, TAXI family	1.25427e-05	1.29943e-05
+Ribonucleoside diphosphate reductase subunit beta	0.000508209	0.00221795
+PREDICTED	2.36505e-05	3.57606e-05
+UniRef50_J1K020	1.84219e-05	1.89728e-05
+hypothetical protein, partial	1.05861e-05	1.75335e-05
+Serine acetyltransferase, CysE	0.00233008	0.000282342
+signal peptide protein	1.966e-05	4.89363e-06
+Membrane protein, putative	0.00662793	1.0384e-05
+hypothetical protein	0.00040074	0.000139506
+DoxX family protein	0.00128815	0.000103547
+DNA topoisomerase IV subunit A	0.00314971	0.000455842
+Drug resistance transporter, EmrB QacA subfamily	9.76446e-05	0.000803119
+N5 carboxyaminoimidazole ribonucleotide synthase	3.57934e-06	0.000438099
+Phosphatidylethanolamine	0.00107015	7.67392e-05
+Pimeloyl [acyl carrier protein] methyl ester esterase	0.00061784	0.00243677
+UniRef50_J1AY66	0.0002025	0.00702854
+UniRef50_A4WX23	0.000232651	0.000204413
+hypothetical protein	2.05399e-05	7.54711e-06
+N acetylneuraminate lyase	0.000338317	0.00152273
+hypothetical protein	2.42207e-06	2.15105e-06
+Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2 3 protein complex that nucleates branched actin filaments	8.11462e-06	8.56135e-06
+Os10g0561000 protein 	5.2335e-05	0.000159222
+transposase, partial	0.0001383	1.66413e-05
+Guanylate kinase	0.000593478	0.0196441
+hypothetical protein	7.16955e-05	0.000132086
+UniRef50_Q9RTJ0	0.00027968	0.050911
+Proline glycine betaine ABC transporter periplasmic protein	0.000174691	2.76492e-06
+UDP galactopyranose mutase	0.000212782	0.0277526
+Membrane protein	0.00371005	0.00049571
+UniRef50_Q5HXL7	0.0012262	0.000430175
+UPF0061 protein YdiU	0.00349191	0.00016657
+GMP synthase	2.72822e-06	1.93549e-06
+Hydrogenase 1 large subunit	0.00125763	0.000385462
+Periplasmic binding protein LacI transcriptional regulator	8.85432e-06	4.74089e-05
+3 ketoacyl CoA thiolase, mitochondrial	7.1075e-06	8.34282e-06
+RNA binding S1	0.000608195	0.000107014
+Thymidylate synthase	1.08887e-05	2.86584e-05
+UniRef50_K8WD83	2.72659e-05	7.3782e-06
+Putative polysaccharide biosynthesis protein 	1.00618e-05	3.36869e-06
+UniRef50_P52052	0.00309407	9.25617e-05
+50S ribosomal protein L20	0.0302787	0.0087346
+Oligo 1,6 glucosidase	2.45161e-05	0.000456401
+LysR family transcriptional regulator	0.000173181	0.000304367
+Aspartokinase	0.0136776	0.00248919
+Glutamine amidotransferase, putative	0.00455931	0.000492959
+hypothetical protein	6.4311e-05	1.94513e-05
+Polysaccharide deacetylase	0.000164942	0.00443256
+protein tyrosine kinase	1.67374e-05	1.59687e-05
+AmiC protein	1.25687e-05	1.82799e-05
+Fe ions import ATP binding protein FbpC	1.71701e-05	8.4026e-06
+D tyrosyl tRNA deacylase	7.99256e-06	2.11548e-05
+L carnitine dehydratase bile acid inducible protein F, partial	8.495e-06	8.40839e-05
+Response regulator SaeR	0.0129755	0.00128828
+hypothetical protein	1.70073e-05	5.6123e-05
+UniRef50_M1WNQ8	0.000277729	0.000182968
+UniRef50_K7YE63	0.000160261	0.000669216
+3 oxoacyl [acyl carrier protein] synthase 3	2.47107e-05	9.15863e-06
+indole 3 glycerol phosphate synthase	2.0422e-05	5.89584e-06
+histidine kinase	9.36355e-05	3.6843e-05
+Probable fimbrial chaperone YfcS	0.00231801	0.00026369
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.20121e-05	1.7474e-05
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	4.95314e-06	5.79987e-06
+UniRef50_M2XTQ6	2.62862e-06	5.02157e-06
+UniRef50_D2ZNU9	0.00240748	5.73705e-05
+Methionine  tRNA ligase	7.66731e-06	8.22244e-06
+DNA directed RNA polymerase subunit beta	9.68424e-05	0.000899087
+UniRef50_D2ZNU3	0.00205342	0.000258163
+Protein VraC	0.00479924	0.00127899
+UniRef50_D2ZNU0	0.00364468	0.000768403
+Aldehyde dehydrogenase EutE	0.000188261	0.00449206
+UniRef50_G8AVK1	5.11991e-05	3.13435e-05
+Transposase	3.15619e-05	1.79454e-05
+UniRef50_W4HGN2	5.86718e-05	2.09854e-05
+Pseudouridine synthase	0.00536443	0.00549381
+hypothetical protein	2.68989e-05	2.31674e-05
+Acyl CoA dehydrogenase	0.000628298	0.000168587
+ATP dependent helicase HrpB	4.66134e-05	4.59963e-05
+Major facilitator superfamily MFS_1	0.000558894	0.000219843
+Ketol acid reductoisomerase	0.000172952	0.00259306
+hypothetical protein	9.53376e-06	1.75998e-06
+UniRef50_R7U816	8.03817e-06	1.34701e-05
+hypothetical protein	6.93455e-06	8.27196e-06
+hypothetical protein	2.3029e-06	1.72267e-05
+hypothetical protein	1.74154e-05	3.0974e-05
+ThiF family protein	0.0130629	0.00147984
+UniRef50_W7X462	3.26843e-06	0.000131186
+hypothetical protein	8.1661e-06	1.12613e-05
+UniRef50_I4VTW8	0.000118545	3.37017e-05
+UniRef50_G4P1D7	5.99052e-06	0.000726503
+UniRef50_J8V4X4	0.000118644	4.81615e-06
+B type flagellar hook associated protein 2	0.0010608	0.000135191
+V4R domain protein	0.000223373	0.000423513
+Aldo keto reductase protein	0.00382536	0.000338919
+UniRef50_G0D373	3.71095e-05	5.43137e-06
+UniRef50_P31449	0.00118323	0.000785973
+hypothetical protein, partial	3.58046e-05	8.48998e-05
+UniRef50_W4SJE9	0.000100992	1.98335e-05
+UDP 3 O acylglucosamine N acyltransferase	0.00289378	0.000327444
+UniRef50_UPI0003ACD77D	1.4663e-05	2.25008e-06
+Transcriptional regulator RofA	0.000221056	0.000126191
+Phosphoglycerate kinase	4.67434e-06	0.0027178
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	4.47717e-05	2.5741e-05
+hypothetical protein	0.000100393	2.22476e-05
+Conserved exported protein	3.9094e-05	8.40069e-06
+Diaminopimelate epimerase	0.00386352	0.00728575
+Ribonuclease 3	1.54789e-05	3.11516e-05
+Staphylococcal secretory antigen SsaA	0.0331123	0.0048969
+tRNA pseudouridine synthase D	4.79883e-06	3.74447e-06
+nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial	5.02542e-06	1.27494e-05
+Uroporphyrinogen decarboxylase	8.76771e-06	5.12614e-06
+Possible glycosyltransferase	0.00390912	0.000156693
+Elongation factor P like protein	0.00348312	0.00054614
+Stage V sporulation protein D	0.000356274	0.000763341
+Ribonuclease J	0.000152598	2.34587e-05
+hypothetical protein	0.000125906	5.19501e-05
+UniRef50_A6M3E8	0.000415338	0.00131454
+UniRef50_P50360	6.05342e-06	3.48455e-06
+UniRef50_P50361	0.00036999	3.69178e-05
+High affinity iron permease	0.0114228	0.00227493
+UniRef50_D8HC44	0.00163468	8.71698e-05
+Dolichol kinase	0.00201107	0.000392074
+3 hydroxyacyl CoA dehydrogenase NAD binding protein, partial	4.5441e-06	4.31768e-06
+Glucose 6 phosphate 1 dehydrogenase	0.00269604	0.00104597
+UniRef50_O53553	1.12502e-06	2.93462e-06
+Glycosyltransferase	0.000404557	0.0054921
+UniRef50_UPI0003DE98F5	6.82634e-06	0.000317731
+Light independent protochlorophyllide reductase subunit N	5.31904e-05	1.37875e-05
+shikimate kinase	1.4932e-05	8.37402e-06
+Probable cobalt precorrin 6B C methyltransferase (decarboxylating)	0.00245125	0.000172996
+Non canonical purine NTP pyrophosphatase	0.00551901	0.00466364
+UniRef50_Q6AIT3	1.29132e-05	0.000135822
+NADH quinone oxidoreductase subunit D	1.21625e-05	5.68509e-05
+Pleiotropic regulatory protein DegT	0.000468992	0.000784657
+TonB dependent receptor, putative	0.00115302	0.000229874
+GTP binding protein TypA	1.52178e-05	1.04118e-05
+molybdenum metabolism regulator	3.94303e-05	1.56612e-05
+UniRef50_C6S8I9	7.32689e-05	0.00248722
+hypothetical protein	0.000103164	1.33565e-05
+Endopolygalacturonase	6.33367e-06	5.22361e-06
+Phenol hydroxylase, putative	4.88129e-05	3.80865e-05
+hypothetical protein, partial	9.83559e-06	4.17723e-06
+Replication protein RepA	0.000125405	1.71973e-05
+UniRef50_U7J5E9	1.09866e-05	6.19111e-06
+UniRef50_M0YA73	0.000530524	0.000164441
+Integrase	0.00686646	0.00113598
+Bacterial type II III secretion system protein	0.0100578	0.00140655
+UniRef50_F0YCD9	0.000301893	0.000337823
+UniRef50_E2LMJ8	1.49492e-05	1.89043e-05
+hypothetical protein	1.62144e-05	9.72264e-06
+Pyrimidine specific ribonucleoside hydrolase RihB	0.00325912	0.00025757
+branched chain amino acid ABC transporter permease	4.28646e-05	6.19711e-06
+Phosphoribosylformylglycinamidine synthase 2	1.69233e-05	0.00194711
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000402445	0.00146234
+Integral membrane protein	0.0011441	0.0105851
+UniRef50_J5III2	0.000580429	0.000933669
+Flagellar hook associated protein FlgK	0.00117802	0.000465666
+UniRef50_F8JV08	0.000154625	1.25133e-05
+60 kDa chaperonin 2	0.00207016	0.00145721
+PREDICTED	0.000116228	0.000174493
+UniRef50_M9RHS9	0.000171328	0.000184103
+UniRef50_E8U7S3	0.000880941	0.0145095
+Methionine ABC transporter substrate binding protein	3.87054e-05	5.25244e-06
+hypothetical protein	4.16511e-06	3.57646e-06
+hypothetical protein	0.000591921	3.09824e-05
+UniRef50_B1VYS6	8.14888e-05	2.1717e-05
+UniRef50_P77552	0.00235394	7.42637e-05
+UniRef50_C6STR4	0.0013992	0.000322967
+UniRef50_K0TBE2	9.3877e-05	4.16828e-05
+hypothetical protein	1.03688e-05	6.07949e-05
+PREDICTED	3.06017e-06	7.87687e-05
+3 oxoacyl [acyl carrier protein] reductase	0.000154854	0.000116452
+Putative PTS system EIIBC component YbbF	1.10009e-05	6.96057e-06
+Methionine aminopeptidase 1	1.0661e-05	0.000431349
+MULTISPECIES	3.41264e-06	5.21753e-06
+Adhesin like protein	0.00310979	0.000580668
+hypothetical protein	4.57114e-06	4.11281e-07
+Uroporphyrinogen decarboxylase	4.61881e-06	4.6218e-06
+LysR family transcriptional regulator	0.000439215	0.00433475
+hypothetical protein	2.72912e-05	7.72775e-06
+UniRef50_Q3JUP4	6.61766e-05	0.000113502
+Carbohydrate kinase, FGGY family protein	0.000357076	0.00204997
+hypothetical protein	4.02584e-05	0.000265912
+geranylgeranyl pyrophosphate synthase	0.000456909	9.80322e-05
+PREDICTED	3.46306e-05	2.42035e-05
+PREDICTED	2.24232e-05	1.28636e-05
+50S ribosomal protein L22	1.78588e-05	0.000135585
+hypothetical protein	1.02902e-05	1.87172e-05
+UniRef50_Q3J1M2	0.00755874	0.00192516
+UniRef50_Q3J1M3	0.00995988	0.00224576
+rRNA methyltransferase	0.00693827	0.000643026
+UniRef50_A0A017HLL9	0.000554534	0.000128948
+UniRef50_G4ZKG2	3.5047e-06	2.00805e-05
+magnesium transporter MgtC	3.2888e-05	1.51896e-05
+PTS system, N acetylgalactosamine specific IID component	0.000129442	0.00177533
+hypothetical protein	3.34892e-05	5.22362e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	4.8823e-05	1.75641e-05
+Flagellar protein FlaF	7.03101e-05	6.42207e-05
+leucyl phenylalanyl tRNA  protein transferase	1.09774e-05	7.90698e-06
+hypothetical protein	2.47685e-05	4.96087e-05
+ATP dependent RNA helicase YqfR	0.00609251	0.000487609
+Ribosomal protein S12 methylthiotransferase RimO	0.00421033	0.000899652
+Glucose 6 phosphate 1 dehydrogenase	3.32417e-05	3.08248e-06
+UniRef50_G1LNR6	0.000156214	0.000158971
+Heat inducible transcription repressor HrcA	0.0042833	0.00277468
+hypothetical protein, partial	0.000909313	0.000561155
+riboflavin synthase subunit alpha	9.67375e-06	1.23523e-05
+fructose 1,6 bisphosphatase	1.62488e-05	4.45225e-06
+DNA primase	0.00515799	0.00262699
+Regulator of ribonuclease activity A	0.0041011	0.000586829
+Methionyl tRNA formyltransferase	0.000575723	0.0025397
+UniRef50_P31827	0.00232496	0.000166548
+Chromosomal replication initiator DnaA	9.92354e-06	3.578e-06
+hypothetical protein	1.93188e-06	6.39332e-06
+Probable chromosome 2 partitioning protein ParB	0.000937684	0.0349072
+UniRef50_F2IXW0	9.20519e-05	1.88509e-05
+Paraquat inducible protein A, putative	0.00489805	0.000204549
+Phosphoserine phosphatase, HAD family, SerB	0.00355028	0.000457568
+Adenylosuccinate synthetase	2.87255e-06	0.0093024
+UniRef50_B9TIG4	0.000206361	3.82333e-05
+Gluconate permease	0.0040116	0.000168176
+Iron responsive element binding protein 2 variant	4.82908e-06	9.96891e-05
+2 5 RNA ligase	0.00552783	0.00170071
+UvrC protein 	0.000564531	0.000583019
+nitrogen regulatory protein P II	5.49685e-05	7.90257e-05
+Lysophospholipid transporter LplT	0.00248274	0.000696812
+ABC transporter, permease protein	0.000588059	0.00208189
+FGGY family pentulose kinase	6.71754e-05	0.00268024
+Beta barrel assembly machine subunit BamF	1.93376e-05	1.03517e-05
+ABC transporter related protein	0.00107663	0.000430953
+hypothetical protein	1.49131e-05	4.84903e-05
+cation	1.44849e-05	4.86897e-05
+Aspartokinase	0.000426576	0.00744624
+PTS system, ascorbate specific IIA component	0.00621072	0.00085686
+Metal dependent hydrolase	0.000283406	0.00201982
+UniRef50_H4XIK4	0.0012741	0.000177792
+Molybdopterin oxidoreductase, alpha subunit	0.000278958	0.000122366
+UniRef50_I7DHA8	0.00650674	0.000368677
+3 oxoacyl [acyl carrier protein] synthase 3	0.000302771	8.30807e-06
+aldehyde reductase	1.10001e-05	9.0569e-06
+hypothetical protein	8.66753e-06	1.94258e-05
+UniRef50_W6RY62	9.38875e-05	4.14137e-05
+Ribonuclease 3	1.44949e-05	5.57605e-06
+hypothetical protein, partial	2.58658e-05	2.88621e-05
+PTS system beta glucoside specific EIIBCA component	0.00283224	0.000423348
+Outer membrane usher protein HtrE	0.00303236	0.000814044
+Dihydroxyacetone kinase like protein	0.00543423	0.00204377
+UniRef50_D0K567	0.00701007	0.00075629
+UniRef50_A0A059DS58	6.61645e-06	1.37056e-05
+hypothetical protein	2.71171e-05	0.000781009
+UniRef50_I0IQG7	0.00247828	0.000249402
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.78653e-05	2.73209e-06
+UniRef50_A3PRH2	0.00186344	0.000723143
+UniRef50_W9VLN3	0.00026694	5.78483e-05
+UniRef50_C5NXP6	0.00012422	1.37772e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0187484	0.00292181
+Imidazoleglycerol phosphate dehydratase	0.000176286	2.87453e-05
+Coenzyme A biosynthesis bifunctional protein CoaBC	0.00302729	0.000240031
+hypothetical protein	8.15518e-06	1.96559e-06
+UniRef50_D7BBF8	5.89852e-05	0.00102224
+Tartrate ABC transporter permease	0.000153975	0.00514019
+UniRef50_D3QMJ7	0.00169769	0.000499601
+Phenylacetic acid degradation related protein	1.59882e-05	8.91328e-06
+hypothetical protein	1.54978e-05	7.39763e-06
+Tryptophanyl tRNA synthetase	0.00032225	0.0026758
+MULTISPECIES	0.00028956	5.33101e-05
+Phosphoglucosamine mutase	3.80307e-06	2.50216e-06
+hypothetical protein	1.31082e-05	3.13295e-05
+UniRef50_G0DWG7	1.28064e-05	2.51781e-05
+Glyceraldehyde dehydrogenase small chain	3.70087e-05	3.52748e-05
+ABC transporter, ATP binding protein	0.000290128	0.00283096
+Pilus assembly protein tip associated adhesin PilY1	0.000277865	0.00503963
+peptide ABC transporter ATPase	7.49308e-05	9.69165e-06
+hypothetical protein	4.29774e-05	0.000932199
+Acetolactate synthase isozyme 3 small subunit	0.00115035	0.0034163
+Acetyltransferase	0.000543509	0.000215436
+2 octaprenylphenol hydroxylase	0.0032005	0.00104528
+UniRef50_D3RW29	0.000198712	4.323e-05
+UniRef50_A0A032NY89	3.04288e-05	2.93256e-05
+Major Facilitator Superfamily protein	7.45963e-06	7.8695e-06
+Replication protein C C terminal region Replication protein C N terminal domain containing protein	6.53599e-05	1.73704e-05
+RNA polymerase sigma 54 factor	0.000118782	0.000497273
+COG2986	7.57801e-06	0.000102727
+Transketolase	3.68378e-05	1.6251e-05
+hypothetical protein, partial	5.71463e-05	2.66746e-05
+UniRef50_M4JVT9	4.41754e-05	3.79174e-05
+Orotidine 5 phosphate decarboxylase	0.00879042	0.00041001
+Putative electron transport protein YccM	0.00301505	0.000383268
+LysM domain protein	8.80865e-05	0.0027654
+phosphoribosylglycinamide synthetase	3.38883e-06	9.38466e-07
+UPF0225 protein Reut_A0143	9.48303e-06	2.07502e-05
+UniRef50_J9GTB9	0.000193456	3.35564e-05
+ABC transporter, ATP binding protein	0.00580625	0.00407486
+hypothetical protein	4.70083e-06	1.02808e-06
+oligoendopeptidase F	6.14906e-06	1.1811e-05
+UniRef50_V9VRW6	9.00685e-06	4.08746e-06
+Methionine aminopeptidase	2.86265e-05	7.42395e-06
+UniRef50_W3XFA1	5.85614e-05	1.69612e-05
+UniRef50_G2DTB6	2.59827e-05	1.90908e-05
+ABC transporter permease	3.30801e-05	0.000156158
+Mg chelatase subunit ChlI	9.79288e-05	6.24373e-05
+AAA ATPase	0.00320751	0.000519472
+Competence damage inducible protein cinA	0.00955027	0.00166293
+Probable allantoicase 1	0.000500742	9.73805e-05
+cytochrome D ubiquinol oxidase subunit I	4.83081e-06	2.34459e-06
+NADH quinone oxidoreductase chain E	0.00173625	9.87732e-05
+UniRef50_L8UAB9	0.000531576	0.000233892
+UniRef50_E4ZDG9	0.0001585	0.00151022
+Histidine biosynthesis bifunctional protein HisIE	7.01582e-06	0.0194388
+Plasmid pRiA4b ORF 3 like protein	5.00595e-06	4.30067e-06
+TRAP transporter, DctM like membrane domain protein	1.45745e-05	1.51907e-05
+GntR family transcriptional regulator	8.9034e-05	0.00982403
+PREDICTED	2.41903e-05	5.20465e-06
+UniRef50_W5P358	0.000397679	0.000463278
+coenzyme PQQ synthesis D	0.00014771	4.72211e-05
+UniRef50_D6X9W8	6.66947e-06	0.000218455
+UniRef50_H7PTJ4	9.87565e-06	4.51903e-05
+ABC transport system, ATP binding protein	6.94392e-05	0.00267555
+Peptidyl tRNA hydrolase	0.00158069	0.00201489
+Undecaprenyl diphosphatase	0.000121607	8.26509e-06
+Orotate phosphoribosyltransferase	2.09678e-05	0.00189196
+UniRef50_C6SU74	0.0012412	0.000280578
+Methionine gamma lyase	2.21214e-05	9.20544e-06
+ribose ABC transporter permease	9.44046e-05	0.000200861
+outer membrane specific lipoprotein transporter subunit LolC	4.95656e-05	1.62804e-05
+UniRef50_J9P159	0.000129091	0.000101229
+UniRef50_J9P154	3.9325e-05	3.49706e-05
+UniRef50_V4IPG8	4.33177e-05	0.000501773
+Cyclopropane fatty acyl phospholipid synthase	0.00580187	0.00182296
+Chemotaxis protein	0.000229587	0.00181192
+UniRef50_A6LX83	0.000858775	0.00451163
+Adenylosuccinate synthetase	7.85809e-06	0.000795582
+Adenylate kinase	0.00383715	0.000173858
+DNA topoisomerase 1	0.000359795	0.00319931
+glutamine amidotransferase	1.155e-05	6.94469e-05
+Marine sediment metagenome DNA, contig	5.16964e-05	1.52041e-05
+Carbamoyl phosphate synthase large chain	1.77416e-05	7.7092e-06
+UniRef50_I3THI3	1.3199e-05	7.63591e-06
+Phosphate ABC transporter, periplasmic binding protein	4.26826e-06	3.48183e-06
+Chemotaxis protein CheW	0.000694325	0.000178854
+glycerol 3 phosphate ABC transporter ATP binding protein	4.83533e-06	4.10456e-06
+Serine hydroxymethyltransferase 2	3.77204e-05	5.46841e-05
+Cobyrinic acid A,C diamide synthase	1.03034e-05	7.5231e-05
+TENA THI 4 family	0.00063345	0.00210329
+ABC transporter, ATP binding protein	0.000855849	9.9761e-05
+hypothetical protein	2.41198e-06	2.27531e-06
+Bifunctional purine biosynthetic protein purD	2.15613e-06	1.7729e-06
+Pyrazinamidase nicotinamidase PncA	0.000269959	0.00014184
+Guanine specific ribonuclease N1 and T1	0.000424195	0.000583709
+UniRef50_P76034	0.0026927	0.000556658
+UniRef50_P76035	0.00286114	0.000439563
+UniRef50_Q6GDM0	0.00752209	0.00183701
+Glyceraldehyde 3 phosphate dehydrogenase 2	0.0135061	0.00184056
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00123448	1.46308e-05
+UniRef50_U3T7G8	6.20557e-05	0.00224714
+Resolvase, N terminal domain	0.000384551	0.000702435
+DEAD DEAH box helicase	1.70448e-06	9.24284e-06
+Anti anti sigma regulatory factor 	0.00129463	0.00217295
+Phosphoglucosamine mutase	4.52009e-06	1.59656e-05
+Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.0015246	0.000239295
+preprotein translocase subunit SecA	2.83338e-06	6.72129e-06
+SCP like extracellular	0.000204796	0.00121258
+UniRef50_R5XB78	0.000140815	0.00107392
+UniRef50_D8U956	3.08787e-05	3.02803e-06
+Protoheme IX farnesyltransferase 1	5.79021e-06	7.10954e-06
+UPF0393 family membrane protein	0.00551788	0.000953419
+Putative protoporphyrinogen oxidase	0.000179918	7.96671e-05
+UniRef50_C4J5G1	0.000114237	1.99372e-06
+Flagellar protein putative	1.66777e-05	5.93229e-06
+Thermostable alkaline protease	6.21656e-06	1.11987e-05
+UniRef50_X5RU17	0.00018749	3.00614e-05
+UniRef50_S9S7R4	1.5861e-05	1.15635e-05
+UniRef50_A6LVN7	0.000604104	0.00330049
+UniRef50_R7XG30	4.49825e-05	2.7697e-06
+Marine sediment metagenome DNA, contig	4.66522e-05	2.38728e-05
+HNH endonuclease family protein	0.00639864	0.000325615
+Prephenate dehydrogenase	0.00950471	0.000600641
+UniRef50_C6XPM3	2.51286e-06	2.18246e-06
+UniRef50_B1KWF3	0.00109941	0.000724071
+alpha L arabinofuranosidase	0.000183291	3.16953e-05
+DNA polymerase I	1.44018e-06	2.2519e-05
+PREDICTED	2.33277e-05	9.67436e-06
+Penicillin binding protein2	0.00617819	0.00154139
+Carboxy terminal protease	0.000170433	0.00367704
+UniRef50_J9P1D4	9.00601e-06	2.9263e-05
+Guanylate kinase	0.000975542	0.000283982
+Fructoselysine 6 phosphate deglycase	0.00269048	0.000898062
+Heavy metal translocating P type ATPase	0.00017619	0.00268891
+D amino acid dehydrogenase small subunit	2.85731e-05	1.16534e-05
+Inner membrane translocator 	0.0013013	4.9679e-05
+PREDICTED	3.99482e-05	1.35862e-05
+Transposase, IS605 family	0.00131868	0.000394994
+Protease ElaD	0.00170693	0.000394815
+Flagellar basal body rod modification protein FlgD	0.000800954	0.000131843
+Spermidine putrescine transport system permease protein potC	0.000199535	0.000467109
+PREDICTED	0.000350728	2.04196e-05
+Homoserine dehydrogenase	1.67498e-05	1.62505e-05
+UniRef50_M9VAR2	0.000449323	0.00172308
+hypothetical protein, partial	0.000121861	0.000606602
+MULTISPECIES	8.00585e-06	6.7471e-05
+DNA directed RNA polymerase specialized sigma subunit, sigma24	0.0295846	0.0021827
+2 keto 3 deoxy L rhamnonate aldolase, partial	0.00011297	0.000450476
+FecR protein	0.00356229	0.000830701
+Enterotoxin type A	0.0119602	0.00091462
+IS605 OrfB family transposase	0.000920323	0.000210763
+Dihydrodipicolinate synthase	0.00296369	0.00018589
+Transposase	0.000221751	8.88336e-05
+4 hydroxyphenylacetate 3 monooxygenase oxygenase component	9.16194e-05	0.0265426
+Membrane transport family protein	0.00660925	0.000336389
+sarcosine oxidase subunit delta	0.000193735	0.000180587
+UniRef50_E4N4A3	9.84516e-06	5.23668e-05
+hypothetical protein	8.67316e-06	2.70392e-05
+Ribosome maturation factor RimP	0.0263139	0.00249088
+ATPase component of various ABC type transport systems with duplicated ATPase domain, partial	1.66172e-05	2.88094e-06
+zinc ABC transporter ATPase	3.53447e-06	6.08604e-06
+UniRef50_K7RPT1	4.424e-05	0.000898442
+Marine sediment metagenome DNA, contig	1.47493e-05	8.35221e-06
+sodium	0.000118225	1.17975e-05
+UniRef50_A3M2F0	0.000314643	0.00517102
+UniRef50_T1W7J5	4.38239e-05	1.85062e-05
+UniRef50_J0NEL3	0.00646084	0.000145452
+hypothetical protein	2.54591e-06	2.15468e-05
+UniRef50_M2LA35	0.000520436	0.000150893
+ferrichrome ABC transporter permease	1.19789e-05	5.19827e-06
+Rhomboid family protein	0.000620225	0.000138131
+Ketol acid reductoisomerase	9.9982e-06	1.40535e-05
+UniRef50_X7EDB2	9.77022e-06	2.547e-06
+XRE family transcriptional regulator	0.00583919	0.000546277
+Bicarbonate transport ATP binding protein CmpD	6.01639e-05	4.38388e-06
+Internalin	8.20932e-06	0.000648229
+UniRef50_I6TW59	0.00504521	0.00140141
+UniRef50_A5VNN0	9.71134e-06	7.84199e-06
+1,2 phenylacetyl CoA epoxidase, subunit A	0.00198956	0.000593412
+Ribonucleoside diphosphate reductase	0.000466474	0.00045804
+Fe S cluster assembly protein HesB	0.000400729	4.72511e-05
+Transcriptional regulator, Fis family	8.44892e-05	0.00115705
+Zinc uptake regulation protein	0.00091483	0.00139805
+Pyruvate kinase	1.50434e-05	2.68102e-06
+Glutamate synthase [NADPH] large chain	2.86357e-06	1.62064e-06
+hypothetical protein	0.000189313	1.52603e-05
+ATP dependent deoxyribonuclease subunit A domain protein	0.00816108	0.00192404
+UniRef50_A0A017SWC8	5.91435e-05	7.79326e-05
+Tyrosine  tRNA ligase	3.10054e-05	0.00212095
+Replication protein C	5.07039e-05	8.89436e-06
+hypothetical protein	8.47393e-06	1.68807e-05
+Glucokinase	0.000414192	0.00204913
+ABC type nitrate sulfonate bicarbonate transport system, permease component	0.000624474	0.000497761
+D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8	0.00110463	0.00284098
+Thiamine diphosphokinase	0.00415914	0.000626373
+ATPase	3.27038e-05	1.56705e-05
+hypothetical protein	8.65933e-05	1.05624e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.013998	0.00262408
+FAD dependent pyridine nucleotide disulphide oxidoreductase	0.000186805	0.000104889
+Cell envelope related transcriptional attenuator	2.13271e-05	0.000651017
+UniRef50_A0A023RXV8	0.000233175	0.0027555
+Expressed protein 	0.000151091	0.000654519
+UniRef50_R7G9F0	4.34659e-05	2.1779e-05
+UniRef50_A0A023RXV6	0.000429636	0.00599094
+UniRef50_J9V1L0	0.00792121	0.000432873
+hypothetical protein	3.19578e-06	2.34104e-06
+PREDICTED	0.000419851	0.000394571
+Oligopeptide ABC transporter, oligopeptide binding protein	3.92505e-06	5.30727e-06
+DNA methyltransferase	9.28363e-05	5.01618e-05
+Adenosylcobinamide amidohydrolase, CbiZ	0.00286621	0.000816426
+hypothetical protein	5.40562e-06	8.25971e-06
+hypothetical protein, partial	3.5447e-05	4.93485e-06
+HAD superfamily hydrolase, subfamily IA, variant 1	0.000152977	0.000912309
+isoleucine  tRNA ligase	0.00151964	0.000212299
+Integral membrane protein	0.00864866	0.00352408
+High affinity gluconate transporter	0.00171411	0.000292994
+UniRef50_M4QUJ5	0.000124494	0.00190021
+nickel ABC transporter permease	0.000161018	3.56722e-05
+MFS transporter	5.0029e-06	1.78225e-05
+UniRef50_Q9RWM7	0.000132753	0.0423536
+Protein containing DUF124	0.00136724	0.00111634
+Magnesium translocating P type ATPase	0.000214785	0.00243657
+UniRef50_J9NU89	3.38998e-05	1.0553e-05
+Cation efflux family protein	0.00881845	0.0016058
+UniRef50_A4VFK3	0.000531724	0.000141531
+MMPL family protein	7.42963e-05	0.00266544
+UniRef50_Q6ZD75	0.000275108	5.79742e-05
+Shikimate dehydrogenase	2.88611e-05	0.000211065
+NADH quinone oxidoreductase subunit D	2.67674e-06	2.34145e-05
+integrase	4.34664e-05	1.3871e-05
+TRAP transporter solute receptor	8.28508e-05	4.0346e-05
+Acetylglutamate kinase	0.00526897	0.00144423
+Branched chain amino acid ABC transporter, periplasmic amino acid binding protein	8.56358e-05	0.0288918
+UniRef50_B9KTM7	0.00172589	0.0018217
+UniRef50_K7E0S8	7.44545e-06	7.11472e-07
+hypothetical protein	1.42611e-05	0.00230126
+Nucleoside diphosphate kinase	0.000115905	3.32546e-05
+EmrB QacA subfamily drug resistance transporter, partial	4.99132e-05	1.34252e-05
+FAD dependent oxidoreductase	0.0123766	0.00273061
+Multi sensor signal transduction histidine kinase	0.00029586	0.000589417
+UniRef50_Y6NBB6	0.0100105	0.000650063
+UniRef50_J9P4U3	7.33982e-05	5.93996e-06
+tagatose bisphosphate aldolase	4.50556e-06	1.84031e-05
+Probable chemotaxis protein methyltransferase	0.000155371	1.16091e-05
+MULTISPECIES	0.00106612	2.39613e-05
+Ribonuclease HIII	0.0138622	0.00271049
+Iron regulated ABC transporter siderophore binding protein SirA	0.0127688	0.000739129
+UniRef50_V4YZI7	3.7082e-05	6.3741e-05
+Bifunctional protein GlmU	3.82254e-06	2.6803e-06
+Laccase domain protein YfiH	0.00196108	0.00122055
+Predicted protein	0.000180814	3.44944e-05
+elongation factor P	1.41511e-05	1.07059e-05
+DNA ligase	0.00184916	0.000105109
+MarR family transcriptional regulator	0.000242537	2.24957e-05
+Flagellar export protein FliJ	0.000464205	0.000936635
+Diguanylate cyclase	9.16194e-05	0.000708152
+Malonyl CoA ACP transacylase	0.00355178	0.000712601
+Oxidoreductase, short chain dehydrogenase reductase family	0.000131808	0.0188211
+Cytidylate kinase	0.000438976	0.00382347
+UniRef50_D4Z2Y4	0.000302565	7.83808e-06
+Thiamin pyrophosphokinase	0.00552635	0.000542395
+PE PGRS family protein 	0.000193986	9.69494e-05
+Fumarate hydratase, mitochondrial	8.76541e-06	1.30864e-05
+UniRef50_A0A023RUB5	0.00033432	0.00443088
+DNA directed RNA polymerase subunit alpha	9.54143e-06	1.91659e-05
+Probable nicotinate nucleotide adenylyltransferase	3.43591e-06	0.00189184
+transcriptional regulator, partial	2.47668e-05	2.90565e-05
+Vanillate porin OpdK	0.000892893	0.000716388
+Transcriptional regulator, GntR family	0.000564357	6.28306e-05
+chromosomal replication initiator protein DnaA, partial	7.86751e-06	5.22289e-06
+Glutamate 1 semialdehyde 2,1 aminomutase	7.71527e-06	8.39896e-06
+Internalin A	1.14815e-05	2.93405e-06
+UniRef50_Q3JWB4	3.39969e-05	4.88566e-05
+Nitrate reductase, beta subunit 	1.43227e-05	1.4348e-05
+Glycine dehydrogenase 	1.59803e-06	2.72533e-06
+hypothetical protein	1.73698e-05	1.345e-07
+UDP N acetyl D glucosamine 6 dehydrogenase	0.000791344	0.000288718
+UniRef50_B2I0W8	7.96251e-05	0.00288965
+High affinity branched chain amino acid transport system permease protein LivH	0.00315244	0.000320089
+Peptidoglycan binding domain 1 protein	0.00513799	0.000342516
+coproporphyrinogen III oxidase, partial	4.42398e-05	1.51932e-05
+UniRef50_R6FXK3	0.000225103	0.000629588
+UniRef50_N6UDA5	5.57218e-05	2.2021e-05
+HTH type transcriptional regulator EstR	0.000120771	0.003545
+UniRef50_K2BGA3	9.37519e-06	8.12275e-06
+Urea ABC transporter, ATP binding protein UrtD	0.00607027	0.00043652
+diguanylate cyclase	1.71076e-05	0.000103811
+DNA gyrase subunit A	5.78758e-06	5.27617e-06
+Phenylacetaldehyde dehydrogenase	7.91258e-05	0.00322345
+MULTISPECIES	1.55376e-05	3.11662e-05
+UniRef50_K4NDV9	0.000103025	0.00188932
+UniRef50_A5UL24	0.00327373	0.000235039
+Efflux transporter, RND family, MFP subunit	0.000487092	0.000189591
+UniRef50_B0VDR8	0.000105833	0.00260492
+Penicillin binding protein	0.00688833	0.000711686
+biotin biosynthesis protein BioY	9.79068e-06	1.84319e-05
+UniRef50_I4E1E6	0.00335877	0.00243569
+PREDICTED	0.000154551	8.65268e-05
+Signal transduction histidine kinase	0.000326746	0.000737605
+membrane protein	7.9793e-06	1.13416e-05
+Phosphoribosylglycinamide formyltransferase	0.0150467	0.00156423
+UniRef50_B8F444	0.000135523	0.00415842
+Short chain dehydrogenase	5.44312e-06	0.000314682
+50S ribosomal protein L24	0.000113791	4.09864e-05
+phosphate transporter	5.17536e-06	3.91647e-06
+Glutamate  tRNA ligase	2.62878e-06	6.09611e-06
+UniRef50_A0A017HAI8	0.00295111	0.000141608
+UniRef50_K7T243	0.000213058	4.76627e-05
+UniRef50_A0A058ZA26	7.77877e-06	2.48918e-06
+1,4 Dihydroxy 2 naphthoyl CoA synthase	0.0253641	0.00801291
+UniRef50_R6ZTJ7	1.07972e-05	5.23305e-06
+UniRef50_T1ZU11	0.000747886	0.00278526
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.21926e-05	5.46244e-06
+Acetylornithine aminotransferase	1.22943e-05	1.00672e-05
+Haloacid dehalogenase	5.06088e-05	0.004411
+UniRef50_C1DJ65	0.00013738	7.14175e-05
+UniRef50_R3SKR3	9.96251e-05	1.61771e-05
+ISPsy24, transposase orfB	0.00263081	0.00223129
+hypothetical protein	4.77262e-05	2.30845e-05
+Transcriptional regulator, IclR family	0.000514015	0.000120194
+HesB YadR YfhF family protein	0.000221686	3.33767e-05
+hypothetical protein, partial	9.37768e-05	1.42517e-05
+UniRef50_UPI0003C18538	4.0718e-05	5.36216e-05
+Citrate lyase subunit alpha	0.00337012	0.00109435
+CheW3	0.0122631	0.00297568
+Bacillolysin	1.885e-05	0.000313179
+Periplasmic murein peptide binding protein	0.00271614	0.000526134
+UniRef50_Q2FJW9	0.00172068	6.85121e-05
+Nitrogenase molybdenum iron protein beta chain	0.000274406	0.000164823
+UniRef50_W1YLG1	0.000716061	0.00115968
+hypothetical protein	6.65164e-05	0.00709076
+Conjugative transfer pilus assembly protein	9.61748e-05	4.77261e-05
+UniRef50_G5QPS2	0.000237507	0.000215572
+UniRef50_J3IPS9	2.34021e-05	0.000150505
+UniRef50_P45545	0.0013068	9.82329e-05
+UniRef50_A4VWT1	0.000545925	0.00679543
+Transcriptional activator CadC	0.00248832	0.000348445
+thioredoxin	3.24916e-05	2.66125e-05
+GTP binding protein EngB	0.0115833	0.00197847
+Zn dependent oligopeptidase	0.000103953	0.00240184
+PREDICTED	3.95618e-06	7.56913e-06
+UPF0438 protein YifE	0.000691538	0.000482714
+UniRef50_A0A031QGZ5	0.000127518	0.000129792
+Succinyl diaminopimelate desuccinylase 1	2.70147e-06	2.88884e-06
+Methionine synthase 	3.73824e-05	3.17995e-05
+Response regulator receiver protein	0.000254237	0.000255628
+Methionyl tRNA formyltransferase	7.24552e-06	9.28281e-06
+Lytic transglycosylase catalytic	0.000307614	0.000593109
+Protein Rtn	0.00310206	0.000584976
+UniRef50_G8PUC6	8.8604e-05	1.07251e-05
+hypothetical protein	4.01324e-06	4.28213e-05
+Co chaperone protein HscB homolog	0.000241542	0.00215204
+Lysine decarboxylase, inducible	0.00279427	0.000411866
+N acetyl gamma glutamyl phosphate reductase	5.36046e-06	3.27204e-06
+Probable 3 hydroxybutyryl CoA dehydrogenase	0.000165711	0.0230366
+Anti sigma B factor RsbT	4.53746e-06	3.00427e-05
+PTS system sugar specific permease protein	7.45676e-05	0.00183744
+Triosephosphate isomerase	0.0031118	0.000127358
+UniRef50_G0N365	8.21003e-06	2.72634e-06
+UniRef50_Q2W170	2.77357e-05	5.4341e-06
+AMP nucleosidase	0.000140251	6.72042e-05
+Flagellar biosynthesis protein FlhA	0.000428268	0.000750871
+Short chain dehydrogenase reductase SDR	0.000166884	0.00895235
+hypothetical protein, partial	0.000651384	0.000288697
+UniRef50_A5IR45	0.017298	0.000477754
+UniRef50_S5XW27	0.012045	0.00213449
+quinone oxidoreductase, partial	6.63274e-06	1.16466e-05
+UniRef50_A5IR41	0.0116085	0.00102425
+UniRef50_C7BXR1	0.000339948	0.00178336
+hypothetical protein	1.46858e-05	9.11337e-06
+hypothetical protein	0.000115579	2.37773e-05
+DNA repair protein RecO	0.00333648	0.00242082
+PTS mannose transporter subunit IIB	3.0427e-06	2.3388e-06
+UDP N acetylmuramoylalanine  D glutamate ligase	0.0166723	0.003617
+Putative TonB dependent receptor	0.000159185	0.003035
+UniRef50_I6TYR1	0.00220986	0.000183985
+Formimidoylglutamase	0.000121498	0.00312218
+Cobyrinic acid a,c diamide adenosyltransferase	0.0095488	0.00275433
+Permease protein of oligopeptide ABC transporter	0.000134979	0.00261902
+hypothetical protein	0.000220865	1.54104e-05
+Stage V sporulation protein AD	9.91793e-05	0.0005548
+Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.00371779	0.00112959
+UniRef50_S5YWN2	0.00457276	0.000898262
+MtaC2	0.00220402	0.000121167
+UniRef50_R6JPB3	0.00540622	0.00194409
+UniRef50_Q9RY97	0.000204796	0.0213
+Sulfate permease	2.32378e-05	1.11965e-05
+Mitochondrial ribosomal protein l11	2.838e-05	3.02608e-05
+Lysine  tRNA ligase	6.45222e-06	4.91446e-06
+UniRef50_B3T0J2	3.95304e-05	2.58376e-05
+Binding protein dependent transport systems inner membrane component	0.0126249	0.00158196
+PREDICTED	4.50304e-05	4.89546e-05
+Methyl accepting chemotaxis sensory transducer	0.000409589	0.000220174
+hypothetical protein	1.98989e-05	1.23651e-05
+Nitrogenase molybdenum iron cofactor biosynthesis protein NifN	0.00199727	0.000106048
+UDP N acetylenolpyruvoylglucosamine reductase	0.000242031	0.00243216
+UniRef50_F0RNS6	0.000120916	0.00252537
+3 phosphoshikimate 1 carboxyvinyltransferase	0.00270141	0.00233181
+Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen	0.00246626	0.00039452
+D alanyl D alanine carboxypeptidase DacA	0.00761554	0.00238366
+Ribosomal protein S12 methylthiotransferase accessory factor YcaO	0.00179495	5.90301e-05
+hypothetical protein	3.05569e-05	8.26078e-06
+Putative universal stress protein SSP1056	0.0339699	0.00057657
+hypothetical protein	4.14925e-06	1.18752e-05
+Ribosomal RNA large subunit methyltransferase E	1.98284e-05	0.000228912
+Adenine phosphoribosyltransferase	3.32904e-05	1.98688e-05
+Phosphoenolpyruvate  protein phosphotransferase	0.000314251	8.89382e-05
+hypothetical protein	1.89415e-05	6.75745e-05
+2 dehydro 3 deoxygluconokinase	3.59635e-05	1.83506e-05
+Ribosomal RNA large subunit methyltransferase J	0.000360159	0.00604325
+PREDICTED	1.38798e-06	1.07526e-05
+RNA polymerase sigma factor RpoE, partial	0.000273643	0.000138898
+hypothetical protein	0.000347616	5.49375e-05
+UniRef50_S0FU34	0.000127409	1.65055e-05
+chemotaxis protein	7.33448e-05	4.4143e-06
+UniRef50_W4UBF2	0.000691538	0.000742024
+Adenylate kinase	9.01298e-06	8.54773e-06
+ABC transporter, permease protein	0.000134083	0.000492713
+ATP dependent helicase nuclease subunit A	1.20045e-05	0.000106008
+hypothetical protein	1.46498e-05	1.92674e-06
+hypothetical protein FG03961.1	1.78129e-06	6.52194e-06
+UniRef50_G2DUQ1	0.00104087	0.000955158
+UniRef50_U4V185	2.93909e-05	2.01493e-05
+hypothetical protein	4.95155e-06	3.36121e-06
+Chromosome 16 SCAF14537, whole genome shotgun sequence	3.72909e-06	2.86761e-05
+Cro Cl family transcriptional regulator	0.000113791	9.71947e-06
+UniRef50_V8G168	0.000345115	0.00012199
+Glutaredoxin like protein	0.000286837	4.95233e-05
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.33087e-05	6.61899e-06
+UniRef50_D2S8K3	4.37172e-05	8.71364e-05
+hypothetical protein PFL1_01934	7.78619e-05	2.32155e-05
+hypothetical protein	0.000190279	5.49419e-05
+Cell division protein FtsL	0.00669306	0.00247319
+Conserved protein	0.0026204	0.000357589
+UniRef50_C6B1R5	0.000808454	0.000132132
+S layer like array related protein	0.00011991	0.0205652
+2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	5.03045e-05	2.72993e-05
+UniRef50_A0A031H669	0.000322045	0.000171604
+hypothetical protein	2.01902e-05	2.06375e-05
+UniRef50_Q8CR42	0.0113606	0.00136567
+UniRef50_D8TXA0	7.42099e-06	3.36687e-06
+Dihydrolipoyl dehydrogenase 3	8.08882e-06	1.10144e-05
+Glycosyl hydrolases family 25	0.00449682	0.000943342
+MULTISPECIES	9.10517e-05	5.40077e-05
+UniRef50_R7PXM1	0.00288451	0.000189062
+Fic family protein	0.000151169	0.00245434
+Cell wall hydrolase autolysin	0.000523852	0.000870715
+UniRef50_UPI0002C378DF	3.36465e-05	1.51766e-05
+hypothetical protein, partial	7.81597e-06	1.42049e-05
+UniRef50_X6GHK4	0.00063511	1.0819e-05
+SufBD protein	0.00759097	0.000102846
+heme oxygenase	0.00019839	1.35562e-05
+hypothetical protein	0.000295004	2.09566e-05
+Aminopeptidase PepS	0.00073143	0.00291011
+Citrate synthase 	5.85138e-06	1.48219e-05
+UniRef50_G3VAE4	8.60541e-06	1.59333e-07
+hypothetical protein	6.81524e-05	4.48987e-05
+UniRef50_I6TZP9	0.00154573	0.000687419
+UniRef50_C0AXX7	1.45605e-05	3.8485e-05
+excinuclease ABC subunit C	3.27242e-06	8.50743e-07
+Sugar ABC transporter substrate binding protein	0.000127159	0.000227595
+L fucose mutarotase	0.00105861	0.00100882
+Transcriptional regulator homolog	0.00532142	0.00109467
+hypothetical protein	3.86978e-06	3.84563e-06
+UniRef50_I1ES83	0.000168924	1.53173e-05
+hypothetical protein	1.06208e-05	1.11332e-05
+hypothetical protein	5.28345e-05	7.9602e-05
+UniRef50_P67661	0.00175726	0.000136244
+hypothetical protein	8.00428e-05	5.74677e-06
+UniRef50_Q8E6C2	0.000167715	0.000227223
+endoribonuclease L PSP	5.10327e-05	3.60722e-05
+Short chain dehydrogenase reductase SDR	0.000137367	0.000622241
+UniRef50_I0H6C5	6.9966e-06	3.89172e-06
+Macrolide export ATP binding permease protein MacB	1.84666e-06	9.66638e-06
+UniRef50_K1E5Y4	1.85022e-06	1.1016e-05
+UniRef50_A6M300	0.000161802	0.00102723
+Putative GTP cyclohydrolase 1 type 2	0.00111429	1.53031e-05
+UniRef50_A0A018D403	0.000221395	3.05891e-05
+Aspartokinase	0.00653061	0.00147944
+hypothetical protein	2.10829e-05	2.86394e-05
+L serine dehydratase	1.41408e-05	1.88758e-05
+ATPase P	2.0224e-06	1.72915e-06
+cell division protein FtsE	2.93107e-05	4.36491e-05
+UniRef50_B9AD59	0.00154498	0.000306623
+UniRef50_A6QII5	0.00429013	0.000955158
+Peptidase S15	2.1425e-05	1.80933e-05
+PREDICTED	3.59067e-06	1.40056e-06
+ComEC Rec2 like protein	0.000469011	0.000503902
+Transcriptional regulator	0.000259549	0.000200861
+Copper export proteins	0.00371371	0.00337042
+Poly polymerase I	0.00191164	0.000154638
+Putative membrane protein	5.03118e-05	8.10733e-06
+hypothetical protein	4.11989e-06	7.88361e-06
+Biotin synthase	2.73497e-06	1.37872e-05
+Putrescine transporter subunit	0.000305996	0.000302306
+UniRef50_A6E2L5	0.00131139	0.00139799
+UniRef50_T0UNE5	7.45213e-05	9.58789e-06
+Ribonuclease R	0.00304117	0.000930519
+ATP dependent Clp protease ATP binding subunit ClpL	0.0151962	0.00465003
+Glutamyl tRNA amidotransferase subunit A	4.14964e-06	1.83529e-05
+UniRef50_D8TTJ3	1.48308e-05	1.10574e-05
+Aspartokinase	0.00145291	0.000169302
+aldehyde dehydrogenase	2.75385e-05	1.17204e-05
+hypothetical protein	3.88636e-05	1.59152e-05
+RecBCD enzyme subunit RecB	0.000116862	5.52182e-05
+UniRef50_A0A037ZMW4	0.000252497	1.96001e-05
+Shikimate kinase	3.38097e-05	6.29249e-06
+UniRef50_V5EQM5	2.64429e-05	6.04301e-06
+UniRef50_R1DWA7	8.4824e-05	5.35938e-06
+Pe pgrs family protein	1.34117e-05	2.06889e-05
+UniRef50_R6BXV0	9.9866e-05	0.00105492
+6 phospho beta glucosidase	2.67212e-06	7.46922e-07
+UniRef50_N9KV58	0.00015581	0.00404276
+DNA or RNA helicase of superfamily II	0.000204874	0.00247479
+hypothetical protein	9.55897e-05	3.17834e-05
+Peptidoglycan binding domain 1 protein	0.000147907	0.000213902
+histidine kinase	4.10677e-05	3.4769e-05
+Membrane protein	5.22051e-05	0.00213995
+50S ribosomal protein L18P	0.00207591	0.00077155
+Inner membrane ABC transporter ATP binding protein YddA	0.00160408	0.000166416
+hypothetical protein	0.000268623	0.0001138
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00232126	0.00144896
+7 cyano 7 deazaguanine synthase	0.00720649	0.00198457
+EBNA 1 protein	1.07949e-05	5.62723e-06
+sodium	6.1871e-06	4.03519e-06
+UniRef50_Q6FA05	0.00013342	0.00283579
+Stackhouse genomic scaffold, scaffold_111	2.45843e-05	7.48025e-05
+ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components	0.00413185	0.000140289
+hypothetical protein	0.000133932	4.49827e-05
+Topology modulation protein	4.96407e-05	0.000105354
+Proteophosphoglycan 5	6.30974e-06	1.62964e-05
+UniRef50_K8G8E5	2.81309e-05	1.337e-05
+UniRef50_I2BVX5	0.000444204	3.07904e-05
+hypothetical protein	9.15766e-06	8.30392e-06
+Ribonuclease H	1.20195e-05	8.46168e-06
+PreQ biosynthesis protein QueC	0.00877538	0.000357709
+Hemolysin	1.68413e-06	7.11336e-06
+UniRef50_U6JRA6	1.13822e-05	8.54297e-06
+Perfringolysin O regulator protein, putative	0.0220565	0.00307751
+4 hydroxy tetrahydrodipicolinate synthase	4.4497e-05	9.7998e-06
+leucine isoleucine valine transporter ATP binding subunit, partial	4.37741e-05	1.77273e-05
+hypothetical protein	0.000213515	1.54197e-05
+UniRef50_D8U8Q0	2.2918e-05	9.98934e-06
+UniRef50_Q8NYT6	0.0115607	0.000999414
+UniRef50_B9KNI6	0.0026181	0.00196681
+UniRef50_Q9RWM5	0.000769124	0.0284768
+ABC transporter ATP binding protein	5.33563e-05	1.22424e-05
+UPF0125 protein TK90_2052	2.83045e-05	1.35015e-05
+UniRef50_R6PLE5	1.6177e-05	1.5716e-06
+tRNA dimethylallyltransferase	2.30891e-05	4.43295e-06
+ribokinase, partial	7.17115e-06	6.51043e-06
+Amino acid permease family protein	1.24279e-05	1.2701e-05
+UPF0246 protein SAG2081	0.00568404	0.00241576
+UniRef50_X5ENZ1	0.00016417	0.000919505
+response regulator receiver GGDEF EAL domain containing protein	5.1533e-06	1.53926e-05
+UniRef50_Q3JNE0	3.91682e-05	0.000116377
+CutC family protein	0.000480784	0.00244868
+Transporter, gluconate	0.000149541	0.00129995
+phosphodiesterase	3.07878e-05	2.05328e-05
+UniRef50_W0AGC9	7.29189e-05	2.14168e-05
+Ethanolamine utilization protein EutG	0.0030487	0.000716611
+UniRef50_G8AHE6	0.000230572	0.000126755
+Probable quinol oxidase subunit 3	0.0232605	0.00420656
+UniRef50_F2ABA7	0.000338307	7.68801e-05
+RNA polymerase sigma factor RpoS	0.00268351	0.000241215
+Mannose specific PTS system IID component	0.000205213	0.00061391
+hypothetical protein	6.76612e-06	6.02007e-05
+UniRef50_Q11CZ9	0.000134419	1.57328e-05
+Heme oxygenase	2.51146e-05	1.95589e-05
+UniRef50_A2RGD6	0.00691742	0.002906
+UniRef50_P75978	0.00340369	0.00037169
+UniRef50_W8YNB5	7.86941e-05	0.00112431
+UniRef50_J3L401	1.76712e-06	3.5368e-06
+Teichoic acid biosynthesis protein F	0.00908349	0.00145336
+UniRef50_U4T249	3.16166e-06	6.42149e-06
+transporter, MFS family protein, partial	2.04072e-05	2.21525e-05
+elongation factor G	5.43787e-06	7.40815e-05
+UniRef50_H9UTM9	0.00115435	0.00065969
+Argininosuccinate lyase, chloroplastic	2.55142e-05	1.41213e-05
+UniRef50_M0RG67	7.7848e-06	3.29195e-05
+mannose 1 phosphate guanyltransferase	3.25989e-06	9.575e-06
+UniRef50_C6SR62	0.00668431	0.00203854
+Thiamine phosphate synthase	0.000262929	0.00080187
+UniRef50_P37615	0.00056189	0.00023879
+ABC transporter	0.000216978	0.00118951
+Phosphoethanolamine transferase EptB	0.00280875	0.000492565
+Cell division protein FtsZ	0.00131044	0.000107527
+ATP binding protein, partial	6.20504e-05	1.0457e-05
+Peptidyl prolyl cis trans isomerase	0.00150702	0.0268911
+NAD dependent protein deacetylase	0.0187712	0.00269042
+Fis family transcriptional regulator	9.03852e-05	2.58628e-05
+Flagellar biosynthesis type III secretory pathway protein	0.00598438	0.00111165
+adenylosuccinate lyase	1.56445e-06	6.83295e-06
+MULTISPECIES	1.76498e-06	3.60639e-05
+3 isopropylmalate dehydrogenase	0.00452086	0.000928017
+UniRef50_X8AYJ2	0.000122607	0.000171019
+UniRef50_N6UCK5	0.000415277	3.59011e-05
+UniRef50_A0A059IK34	0.000108678	4.51995e-05
+UniRef50_UPI0003C19D83	1.25845e-05	1.85148e-05
+UniRef50_I0ET87	0.000229465	0.00150609
+hypothetical protein	3.0186e-05	3.09588e-05
+Putrescine binding periplasmic protein	0.000404198	0.000425588
+UniRef50_W0RQV3	2.82889e-05	2.19625e-05
+Sugar isomerase 	0.000239848	0.000898343
+UniRef50_V5G7G2	7.37993e-05	1.86329e-06
+Succinyl CoA ligase [ADP forming] subunit alpha 2, mitochondrial	4.95749e-05	1.92645e-05
+hypothetical protein	5.89112e-06	5.27866e-06
+Bacteriophage N4 adsorption protein B	0.000527783	0.000226639
+hypothetical protein	2.56492e-05	0.000158727
+UniRef50_I1PTF2	0.000675194	3.82765e-05
+DEAD DEAH box helicase domain protein	0.00045014	0.000640101
+Probable PE_PGRS family protein	1.18292e-05	3.5546e-06
+beta ketoacyl synthase	1.70357e-05	4.68809e-05
+UniRef50_A6V1S7	0.000329554	0.000268943
+hypothetical protein	1.34444e-05	2.58475e-05
+UniRef50_W8AF54	6.02774e-05	0.000102678
+Fibrinogen and keratin 10 binding surface anchored protein	0.00242383	0.000170906
+Signal peptidase I, putative	0.00997165	0.0022946
+hypothetical protein	6.05679e-05	1.4954e-05
+UniRef50_M3YNX9	1.39247e-05	1.23828e-05
+ABC transporter permease	5.81807e-06	0.000115099
+Ornithine aminotransferase, putative	7.74862e-05	0.0183855
+GntR family transcriptional regulator	0.0032203	0.0012824
+UniRef50_G5MQF2	0.000199523	0.00131991
+hypothetical protein	7.51615e-06	7.95622e-06
+Pyruvate kinase	0.0145152	0.00496297
+NADH quinone oxidoreductase subunit B	8.44571e-06	7.15824e-05
+ABC transport system permease protein	7.03269e-06	9.95435e-06
+PAS domain S box	0.000108564	0.0026464
+UniRef50_X8JCV2	1.717e-05	5.36593e-06
+UniRef50_B8D004	2.03154e-05	1.54534e-05
+Gamma glutamyltransferase	0.013024	0.000855448
+5 amino 6 uracil reductase, partial	9.63084e-06	9.91026e-06
+DNA primase	3.29384e-06	2.06679e-06
+dTDP 4 dehydrorhamnose 3,5 epimerase	0.00286773	0.00137989
+Ferrous iron transport protein B	5.33357e-05	0.00158415
+NTP pyrophosphohydrolase	0.000737714	3.45458e-05
+hypothetical protein	9.69323e-05	9.31184e-05
+Antitoxin of type II toxin antitoxin system	0.00124285	0.000413798
+hypothetical protein	0.000989673	0.000152507
+UniRef50_D8LJ34	3.49641e-05	4.47993e-06
+Glutamyl tRNA amidotransferase subunit A	2.65175e-06	0.000244453
+Adenine specific methyltransferase	0.00584816	0.00223575
+UniRef50_A6LWI4	0.00103016	0.000518691
+Glutamate 1 semialdehyde 2,1 aminomutase	0.000521118	0.00143097
+Sensor histidine kinase	0.000409271	0.000458818
+hypothetical protein	2.87341e-06	3.01529e-06
+UniRef50_H2IGF7	3.91881e-05	0.000125511
+Taurine import ATP binding protein TauB	0.00439874	0.000682567
+UniRef50_W7W7I1	0.000507338	7.108e-05
+UniRef50_Q46786	0.00143568	0.000498805
+UniRef50_Q46787	0.00579889	0.00151577
+Sugar  transporter family protein	8.83484e-06	3.44768e-05
+hypothetical protein	9.16496e-06	5.42867e-06
+OmpA family protein	9.51598e-05	0.00202167
+33 kDa chaperonin	0.0261504	0.00386481
+UniRef50_T2EL78	0.000159257	3.39451e-05
+Glutamate 1 semialdehyde 2,1 aminomutase	4.56338e-06	0.000280105
+Putative 40K cell wall protein 	0.00168136	0.000377111
+Anaerobic C4 dicarboxylate transporter DcuA	0.00252211	0.00171191
+Tripeptide aminopeptidase	0.000685038	0.00014184
+biopolymer transporter ExbD	3.38205e-05	3.00549e-05
+hypothetical protein, partial	0.000256934	8.03781e-05
+hypothetical protein	2.15431e-05	1.05068e-05
+Propionate kinase	0.00358444	0.00099059
+PREDICTED	2.04148e-06	4.09708e-06
+UniRef50_W8WCZ2	0.000156927	0.000710683
+AFG1 like ATPase family protein	0.000460037	0.00326285
+dihydroxy acid dehydratase	2.97758e-05	1.5578e-06
+PREDICTED	1.88202e-05	5.4667e-05
+ribose ABC transporter permease	7.08383e-05	5.58576e-05
+UniRef50_Q6F700	0.000100245	4.04484e-05
+4 alpha glucanotransferase	1.04949e-05	0.000327689
+Ribulose bisphosphate carboxylase	0.00988209	0.00126659
+PREDICTED	4.9009e-05	1.74381e-05
+Diguanylate cyclase	5.18054e-06	0.000389802
+DNA polymerase III PolC type	3.16105e-06	8.68578e-07
+Alanine  tRNA ligase	0.000339919	0.0166917
+UniRef50_K2HSX3	4.69748e-05	9.2615e-06
+UniRef50_M1MML8	0.000948397	0.0018083
+UniRef50_S2ZVN1	1.50051e-06	1.25763e-06
+Minor ampullate spidroin	8.14404e-06	1.47539e-05
+Holo [acyl carrier protein] synthase	1.20299e-05	1.86079e-05
+PREDICTED	6.09151e-05	4.41689e-05
+AraC family transcriptional regulator	1.36843e-05	1.16728e-05
+Activator of osmoprotectant transporter ProP	0.000240267	6.10773e-05
+UniRef50_A6TYC4	0.0106155	0.0015331
+UniRef50_P77221	0.00278714	0.00155847
+UniRef50_P75821	0.00467895	0.000233029
+Metallo beta lactamase superfamily protein	0.00185669	6.19577e-06
+UniRef50_P75822	0.00244403	0.000142825
+UniRef50_V6UL61	3.00614e-05	4.41437e-05
+Prolipoprotein diacylglyceryl transferase	9.39531e-06	2.76953e-06
+Phosphate specific transport system accessory protein PhoU homolog	0.00196391	0.00680386
+UniRef50_L5MQQ0	3.989e-06	2.7846e-06
+4 hydroxybenzoate octaprenyltransferase	0.000125578	0.00103256
+glycogen debranching protein	3.62495e-05	6.78232e-05
+bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial	0.000436076	0.00475577
+N acetylmuramoyl L alanine amidase	0.000157757	0.000167197
+ABC transporter ATP binding protein	3.01203e-05	2.01006e-05
+hypothetical protein	1.39314e-05	2.95768e-06
+RpiR like protein	0.00428315	0.000523919
+hypothetical protein	3.51914e-05	2.05762e-05
+Triacylglycerol lipase	0.000164437	0.00385203
+Late competence protein ComGD, access of DNA to ComEA	1.05451e-05	2.19336e-05
+hypothetical protein	6.03902e-06	1.16068e-06
+NADP specific glutamate dehydrogenase 2	6.97855e-06	1.77501e-05
+type III secretion system protein InvA	1.34239e-06	1.64473e-06
+Marine sediment metagenome DNA, contig	1.6526e-05	3.58633e-05
+Transcriptional regulator, LysR family	0.000205976	2.74579e-05
+Transposase, IS4 like family protein	6.61214e-05	3.15279e-05
+hypothetical protein	0.000984507	1.29208e-06
+Aminoglycoside phosphotransferase	0.000105391	0.00108451
+UniRef50_D3QEQ2	0.0183311	0.00157267
+UniRef50_I1EWK9	7.83265e-06	2.52902e-05
+Coenzyme A biosynthesis bifunctional protein CoaBC	0.000399959	0.00362599
+hypothetical protein	6.86383e-05	1.16192e-05
+Argininosuccinate lyase	9.22302e-06	2.49615e-06
+MULTISPECIES	1.18295e-05	5.44315e-05
+Hydrolase	0.000438284	0.000445053
+PREDICTED	3.73431e-05	0.000381611
+hypothetical protein	6.14994e-06	5.16219e-06
+UniRef50_G0NWR7	5.54241e-07	4.02972e-05
+ferrochelatase, partial	7.50039e-06	2.14394e-05
+Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.0223018	0.0021779
+PREDICTED	0.00137804	7.30125e-05
+hypothetical protein	3.78452e-06	2.5464e-06
+Dihydroxyacetone kinase DhaK subunit	0.000154616	0.0044239
+LysR family transcriptional regulator	0.000389845	0.000873093
+Argininosuccinate synthase	7.57052e-06	2.57273e-05
+polyhydroxyalkanoate synthesis repressor	2.86956e-05	5.51232e-06
+Phospho 2 dehydro 3 deoxyheptonate aldolase	0.00646222	0.00451236
+UniRef50_A5UNE8	0.00782926	0.000236276
+UniRef50_E0NCD7	0.000495081	0.0020319
+Uridylate kinase	0.00277574	0.000673249
+PREDICTED	4.65512e-05	2.26143e-05
+penicillin binding protein 2B	2.9034e-06	7.7964e-06
+Aminomethyltransferase	9.2805e-06	2.81429e-05
+DNA repair protein RadA 	4.60836e-05	0.000301092
+secretion protein HylD	1.94367e-05	2.49588e-06
+UniRef50_R7PRX3	9.25914e-05	1.81846e-05
+tRNA dimethylallyltransferase	0.0148128	0.00420223
+Histidine kinase	0.000206477	0.0024
+Guanylate kinase	8.6848e-06	1.35527e-05
+Lipoprotein releasing system ATP binding protein LolD	1.41283e-05	2.76879e-05
+Integrase	0.0046864	0.00104548
+2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase	0.0229985	0.00615625
+Gamma aminobutyraldehyde dehydrogenase	0.00222107	0.000248433
+Transcriptional regulator, XRE family	0.0109157	0.00405959
+Putative peroxiredoxin bcp	1.64478e-05	0.00060442
+Permease	0.000118364	0.00291806
+Periplasmic beta glucosidase	0.00319163	0.00728852
+5 hydroxyisourate hydrolase	2.33313e-05	1.49871e-05
+Flagellar hook associated protein 3	0.00338473	0.00021453
+UniRef50_U6A8Z3	0.000683349	0.000144725
+UniRef50_A6QES9	0.000223864	0.000610781
+Nucleotide sugar dehydrogenase	0.00195345	0.00112307
+MATE efflux family protein	0.00224104	0.000320378
+molybdenum cofactor guanylyltransferase	7.9992e-06	4.71159e-06
+hypothetical protein	0.000104577	2.33163e-05
+Expressed protein 	0.000259955	0.000201866
+Glutamate 1 semialdehyde 2,1 aminomutase	4.24248e-06	0.00125274
+Peptidyl tRNA hydrolase	0.0138012	0.00118921
+50S ribosomal protein L14	0.00402655	0.000248712
+UniRef50_A1VJH7	0.000259915	3.89987e-05
+UniRef50_R1FK72	2.72622e-06	1.23862e-06
+PREDICTED	0.000169168	0.000131746
+Transcriptional regulator Dnr	0.00147313	0.000306433
+Histidinol dehydrogenase	0.0030982	0.000269492
+UniRef50_E1VIL5	5.91474e-05	0.00417079
+Histidine ammonia lyase	2.759e-06	5.67904e-06
+hypothetical protein	0.000512542	4.61958e-05
+UniRef50_M2XUJ5	8.29516e-05	3.08862e-06
+UniRef50_D2ZRP6	0.00348558	0.000253072
+Lactose specific phosphotransferase enzyme IIA component	0.00604542	0.00206485
+sarcosine oxidase subunit alpha	5.15769e-06	1.93633e-06
+Ribonuclease J1	4.30331e-05	0.00132324
+Sulfide quinone reductase	0.00707829	0.00204073
+NnrU family protein	0.000826304	0.00017744
+hypothetical protein	3.02312e-06	0.00011104
+Dihydroorotate dehydrogenase B ), electron transfer subunit	0.000148696	0.00121642
+hypothetical protein	2.24067e-06	2.49083e-06
+UniRef50_F5M5N5	0.00245974	8.31462e-05
+UniRef50_F5M5N4	0.00167584	0.00137428
+UniRef50_J7L4H8	6.79556e-06	0.000408314
+Glucitol operon repressor	0.00161028	0.000482099
+hypothetical protein	5.91007e-06	5.19719e-06
+UniRef50_Q3J0U8	0.000600751	5.32848e-05
+Putative formate dehydrogenase accessory protein	0.00247579	0.000918234
+hypothetical protein	2.5103e-06	3.57707e-05
+Tungsten formylmethanofuran dehydrogenase subunit F FwdF	0.00472102	0.000413319
+Transcriptional regulator, LysR family	0.000488597	0.00710917
+MULTISPECIES	0.000163268	2.95934e-06
+UniRef50_A5IVE5	0.00160304	0.00151869
+aldehyde oxidase	1.53877e-06	1.21008e-06
+Phosphoribosylaminoimidazole succinocarboxamide synthase	3.86987e-05	7.02802e-06
+hypothetical protein	2.55292e-06	3.86547e-06
+Alpha glycerophosphate oxidase	1.3493e-05	0.00285236
+UniRef50_V1SNF4	0.000646978	0.000208632
+pseudouridylate synthase	2.64929e-06	3.47582e-06
+hypothetical protein	1.27261e-05	0.000555975
+UniRef50_P42913	0.000415492	0.000337131
+tRNA lysidine synthase	0.020172	0.0034504
+GTP cyclohydrolase 2	0.000882555	0.00184554
+UniRef50_M7XY21	4.61999e-05	2.60333e-05
+SAM dependent methyltransferase	0.00147456	9.43118e-05
+hypothetical protein	2.72642e-05	1.67285e-05
+hypothetical protein	2.77478e-05	2.0754e-06
+Acetyltransferase component of pyruvate dehydrogenase complex	0.00278567	0.000491956
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	9.91686e-06	1.49969e-06
+Purine pyrimidine phosphoribosyl transferase	0.00351164	0.000669043
+hypothetical protein	7.98812e-06	3.53971e-06
+hypothetical protein	9.57352e-06	0.00035327
+Phenol hydroxylase, putative	0.000655577	3.56811e-05
+UniRef50_Q9RU29	0.000213005	0.0103268
+Histidinol phosphate aminotransferase 1	1.06694e-05	0.000213633
+Acyl CoA dehydrogenase	0.000863308	0.000284316
+UniRef50_C5N5E1	0.00120258	0.000269624
+UniRef50_A3M7M4	0.000260218	0.00421964
+Beta hexosaminidase	4.51287e-06	1.43238e-05
+50S ribosomal protein L7 L12	3.80105e-06	0.000249971
+Ribosomal RNA small subunit methyltransferase G	0.0122007	0.00122461
+hypothetical protein	6.84597e-05	6.19447e-06
+hypothetical protein	4.13844e-06	2.77413e-05
+Amidophosphoribosyltransferase	0.004949	0.0234412
+PREDICTED	0.00107315	5.69415e-05
+hypothetical protein	1.11059e-06	1.90907e-05
+Lipoprotein	0.000638085	0.000193989
+Recombination protein RecR	0.00352493	0.000411857
+Transglutaminase domain containing protein	0.000229824	0.000434176
+3 5 exoribonuclease 1	2.0891e-05	0.000261994
+UniRef50_E3EXY1	1.77404e-05	1.23581e-05
+Putative head portal protein, HK97 family	0.00495895	0.000722793
+Putative membrane protein	5.3009e-06	7.81519e-06
+Transcriptional regulator, LysR family	0.000270376	0.00143369
+Aldo keto reductase	0.000113443	0.000651654
+porin	0.000228909	1.20269e-05
+UniRef50_F2MU03	3.23575e-06	0.000186734
+A G specific adenine glycosylase	0.000100462	0.00203187
+Ribose transport system substrate binding protein	0.00411452	0.000697572
+PE PGRS family protein PE_PGRS6	2.24929e-06	1.14553e-05
+hypothetical protein, partial	6.57822e-05	0.000174415
+UniRef50_Q46844	0.00184398	0.000693378
+UniRef50_Q46843	0.00328515	0.000649776
+Holliday junction ATP dependent DNA helicase RuvB	1.36232e-05	0.00121519
+RND transporter, hydrophobe amphiphile efflux 1  family, permease protein	0.00254358	0.000539308
+UniRef50_Q46840	0.00258075	0.00109213
+sulfurase	5.84418e-05	2.21743e-05
+tRNA  ) methyltransferase	0.00458641	0.000519048
+NADH quinone oxidoreductase subunit D 1	4.84044e-06	1.25014e-05
+alpha amylase	2.30192e-05	1.42786e-05
+UniRef50_U3TAS5	0.000228427	0.00319206
+BasH	0.000198749	0.00450903
+hypothetical protein	0.00016716	0.00014865
+Tyrosine recombinase XerC	0.0144953	0.0017129
+2 ketogluconate reductase	0.000397966	0.00010043
+membane protease HflC	2.55322e-05	7.67002e-06
+UniRef50_J9NV26	0.000302494	2.52816e-05
+UniRef50_H8LI74	0.00669315	0.000342653
+Succinylglutamatedesuccinylase aspartoacylase	0.0205995	0.00350301
+Chemotaxis response regulator protein glutamate methylesterase	0.000100286	4.19969e-06
+Ribonuclease PH	0.00100491	0.000133424
+UniRef50_Q2G1Q1	0.0294035	0.00305965
+Exodeoxyribonuclease 10	0.00147581	0.000198201
+UniRef50_G7U431	0.000609827	0.00310818
+UniRef50_A0YEQ1	8.28649e-06	2.65926e-05
+Parallel beta helix repeat protein	3.68001e-05	0.000212898
+alkanesulfonate monooxygenase	5.02415e-06	7.0193e-06
+UniRef50_Q47688	0.00178093	0.000491922
+FAD synthase	0.00777072	0.00213688
+UniRef50_E8SJY5	1.54109e-05	1.53394e-05
+Ribosomal RNA small subunit methyltransferase H	9.97722e-06	4.66376e-06
+Alkaline phosphatase	0.00314717	0.000467495
+UniRef50_U5MT37	0.000152977	0.000461378
+MotA TolQ ExbB proton channel family protein	0.00585409	0.000420127
+hypothetical protein	2.703e-06	5.37045e-06
+Probable D,D dipeptide transport system permease protein DdpB	0.00186985	0.000513025
+Expressed protein 	0.000182303	4.75864e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	3.24684e-05	9.31328e-06
+No similarity	4.25408e-06	0.000240286
+Trk system potassium uptake protein TrkH	0.00223794	0.000510781
+D cysteine desulfhydrase	0.00215594	0.000717688
+Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	0.00463631	0.00115574
+Peptide nickel transport system substrate binding protein	0.00646894	0.000687859
+UniRef50_I3YBQ0	4.27026e-05	7.72749e-05
+UniRef50_B2IE93	0.000116375	2.18075e-05
+Glutamyl Q tRNA synthetase	5.86704e-06	4.4776e-06
+MULTISPECIES	7.70814e-06	7.48326e-06
+Putative phage terminase, large subunit	6.17219e-06	1.05293e-05
+Membrane protein	0.000207309	0.00165137
+hypothetical protein	9.49954e-06	7.67575e-06
+LysR family transcriptional regulator	2.00453e-05	1.83398e-05
+hypothetical protein	9.0847e-06	1.77088e-06
+PREDICTED	1.24224e-05	0.000322536
+NAD transhydrogenase subunit beta	0.00322846	0.000453159
+Flagellar hook capping protein	8.33984e-06	6.54009e-06
+MapA	0.00203989	0.000529026
+Phosphate acetyl butaryl transferase	0.000127159	0.000278362
+Peptide deformylase	2.11477e-05	8.54999e-06
+Predicted protein 	9.38383e-05	1.5329e-05
+Methyl coenzyme M reductase II subunit gamma	0.00345743	0.000433362
+hypothetical protein	2.64662e-05	3.34311e-05
+Cytochrome B561	0.00140841	0.00142426
+Copper exporting ATPase	0.000398833	4.55068e-05
+Amino acid amide ABC transporter substrate binding protein, HAAT family	1.03274e-06	3.21992e-06
+3D  trihydroxycyclohexane 1,2 dione hydrolase	0.000366731	0.00106504
+Deoxynucleoside kinase	0.00062573	0.012303
+UniRef50_Q3J2S9	0.00496836	0.0013062
+UniRef50_Q3J2S8	0.00571517	0.00145053
+hypothetical protein	0.000170814	0.000569294
+L lactate dehydrogenase	2.84821e-05	5.40915e-06
+UniRef50_Q3J2S1	0.00643197	0.000482714
+xylose ABC transporter ATP binding protein	1.50828e-05	2.91535e-06
+hypothetical protein	0.000241714	1.84408e-05
+UniRef50_D2ZS96	0.00243528	0.000116001
+Glutamate synthase  small subunit	0.00404214	0.000836171
+Proline dehydrogenase PutA	0.000497367	0.000118404
+Putative oligopeptide transport ATP binding protein oppF2	0.0142499	0.00246156
+GTP	0.00187151	0.00119601
+Genomic scaffold, msy_sf_2	2.13588e-06	7.32387e-06
+Carboxyl terminal protease	0.00052936	0.00190538
+UniRef50_D0K3P5	0.00901548	0.000360212
+Isoprenylcysteine carboxyl methyltransferase	0.000449598	0.000510585
+ATP dependent RNA helicase DbpA	0.000460172	0.00217713
+Marine sediment metagenome DNA, contig	3.44867e-05	5.63641e-05
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH	0.000353957	0.000439793
+UniRef50_UPI0003C4395A	0.000403417	1.6669e-05
+branched chain amino acid ABC transporter permease	1.03914e-05	9.02733e-05
+PREDICTED	3.77292e-05	0.000146468
+UniRef50_U3T459	0.000374405	0.00292847
+Putative arginyl tRNA  protein transferase	0.000364493	0.00209539
+MULTISPECIES	7.27036e-06	1.9151e-05
+Binding protein dependent transport system inner membrane component	0.000120483	0.00282606
+Geranyltranstransferase	0.0191821	0.00191036
+Short chain dehydrogenase reductase SDR 	5.98132e-05	0.000130835
+hypothetical protein	1.38076e-05	6.37343e-06
+Fad dependent oxidoreductase protein	0.000303595	0.000329154
+ABC transporter, permease protein	0.00385122	0.000791326
+hypothetical protein	6.45511e-06	1.10486e-05
+UniRef50_F1YW63	2.37347e-05	3.41355e-05
+Possible glycosyltransferase	0.00373179	0.000154005
+Ornithine carbamoyltransferase	4.82324e-06	1.45445e-05
+UniRef50_A0A024HXE7	3.97435e-06	5.91931e-05
+Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon	0.00571527	0.000958648
+ABC transporter related	0.000114732	0.000637369
+Outer Membrane Siderophore Receptor IroN	0.000210343	0.000372551
+UniRef50_Q1MJF1	4.76073e-05	2.20033e-05
+Cold shock domain protein 1	5.38777e-06	4.7535e-06
+hypothetical protein	3.03122e-05	7.84262e-05
+GTP binding protein lepA	1.59601e-05	4.5884e-05
+PREDICTED	4.68362e-06	4.00491e-06
+UniRef50_C6RGK7	2.75327e-05	2.79391e-05
+tRNA lysidine synthase	0.000198749	0.00262352
+ABC transporter ATP binding protein	0.00053232	0.00148474
+TIGR00370 family protein	0.000239013	4.97521e-05
+UniRef50_P31453	0.0018283	0.000125749
+50S ribosomal protein L2	0.00625115	0.00743118
+UniRef50_P31455	0.00276736	0.000241971
+DNA mismatch repair protein MutS	1.99087e-06	4.65127e-05
+N acetyl anhydromuramyl L alanine amidase	0.000648075	0.00051884
+Uracil DNA glycosylase	0.000149577	4.79787e-05
+Nitrate reductase Z subunit beta	3.22853e-05	3.10587e-05
+Probable transaldolase	0.000772387	0.000319751
+Chromosome partition protein MukE	0.0023209	0.000128448
+Glutathione peroxidase homolog BsaA	0.00356888	0.00143412
+hypothetical protein	0.000179141	4.44153e-05
+UniRef50_Q1GIW0	0.0016951	0.000916172
+ABC transporter, ATP binding protein	0.00807226	0.000737548
+UniRef50_I9CB55	4.29627e-05	2.90248e-05
+Valine  tRNA ligase	0.00293369	0.000666232
+Trehalose phosphate phosphatase	0.00224202	0.000875023
+Predicted protein 	7.69067e-05	1.48313e-05
+Putative bacterioferritin B	0.00234302	0.00198956
+DNA double strand break repair rad50 ATPase	0.000126376	0.0035929
+Chemotaxis response regulator protein glutamate methylesterase	0.00010313	4.83257e-06
+Menaquinone biosynthesis protein	8.49155e-05	0.0134919
+UniRef50_D3E0I7	0.00204437	0.000288101
+Energy coupling factor transporter ATP binding protein EcfA1	0.020242	0.00234102
+Cation transporter	0.0022825	0.000204184
+UniRef50_N9BB91	0.000323278	0.00240967
+hypothetical protein	6.66942e-06	2.60491e-05
+Transcriptional regulator	0.0063682	0.00051905
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	4.89911e-06	2.21551e-06
+UniRef50_G0DVU1	0.00102356	0.00143182
+Potassium transporting ATPase B chain	5.21594e-06	0.000462182
+Heme response regulator HssR	0.0240693	0.00274993
+UniRef50_Q8CUA1	0.00359455	0.00112275
+UniRef50_Q8CUA7	0.0231093	0.00690458
+PfkB domain protein	0.00362905	0.000604651
+Major facilitator transporter	0.000487296	8.16226e-05
+serine acetyltransferase	6.61981e-06	8.05377e-06
+hypothetical protein	0.00023941	6.4455e-06
+Catalase 2	1.12149e-05	1.58776e-05
+Thioredoxin	0.00243444	0.00243493
+UniRef50_B1FAB2	0.000430334	0.00019273
+ATP synthase subunit beta	1.27451e-05	0.00137191
+3 oxoacyl ACP synthase	1.35816e-05	1.30823e-05
+UniRef50_H3YRV9	0.000889426	0.00059069
+UniRef50_F5I377	1.41038e-05	1.1375e-05
+Heavy metal translocating P type ATPase	0.00276187	7.93933e-05
+O acetyltransferase OatA	0.0322832	0.00337516
+MFS transporter	4.47886e-06	7.22874e-06
+hypothetical protein	2.33983e-06	4.58023e-06
+ABC 2 family transporter protein	0.000284865	0.000276021
+Putative heme synthetase	4.14921e-05	6.64089e-05
+UniRef50_M9R255	6.16783e-05	3.80455e-05
+Peptide ABC transporter permease	9.91784e-05	2.92728e-05
+UniRef50_V9DII8	1.02501e-05	6.0723e-06
+aminotransferase class IV	9.85478e-05	1.19292e-05
+UPF0310 protein SSA_0254	0.0114689	0.000465207
+PE family protein	0.00021516	0.000219059
+hypothetical protein	0.000125698	5.04569e-05
+UniRef50_G2G9I6	0.000251109	5.73216e-05
+Spermidine putrescine import ATP binding protein PotA	1.42618e-05	2.58707e-06
+Cytochrome P450	0.000196167	0.008317
+Galactose proton symporter	0.00217437	0.000760686
+UniRef50_Q6FEE9	0.000286847	0.00353834
+Truncated methicillin resistance related surface protein	0.0020876	0.000517577
+PREDICTED	4.79674e-05	2.02668e-05
+hypothetical protein TREMEDRAFT_63328	7.71948e-06	2.79078e-06
+UniRef50_E3LBP8	1.56022e-05	7.79423e-07
+UniRef50_A0A012NRC3	0.00832211	0.000705228
+UniRef50_I4CV16	0.000317925	0.000199522
+Diguanylate cyclase phosphodiesterase domain 2	0.000221545	0.00117172
+Rrf2 family protein	2.07397e-05	1.61057e-05
+hypothetical protein	3.67955e-06	2.73853e-05
+Thiamine biosynthesis protein, putative	0.00802892	0.00217422
+UniRef50_Q1YIF1	0.000544715	0.000198276
+Site specific recombinase	0.000184242	0.000795887
+UniRef50_F2MQN5	3.29915e-05	1.83186e-05
+hypothetical protein	9.86127e-06	1.43833e-05
+methylmalonyl CoA mutase	5.67512e-05	2.7649e-05
+5 deoxy glucuronate isomerase	4.73204e-05	0.00108186
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.07394e-05	2.07456e-05
+branched chain amino acid ABC transporter ATP binding protein	9.15324e-05	3.08403e-05
+Excinuclease	8.21087e-06	0.000119588
+Glucose 1 phosphate adenylyltransferase	0.00332484	0.000894992
+ATP dependent DNA helicase	0.00317196	0.00021663
+hypothetical protein	8.57296e-05	0.000221361
+hypothetical protein	3.5498e-05	1.26918e-05
+UniRef50_K1ZGV2	0.000101677	0.000155311
+UniRef50_B9TBU0	2.0127e-05	5.11012e-05
+UniRef50_A6LWA9	0.00048745	0.000138986
+Aspartate  ammonia ligase	0.00292179	0.00176705
+Phosphomethylpyrimidine synthase	0.00281368	0.00297126
+UniRef50_R5X951	0.00159131	0.000526559
+4 diphosphocytidyl 2 C methyl D erythritol kinase	7.09194e-06	4.59015e-06
+Amino acid ABC transporter, permease protein	0.0201852	0.00243157
+Rhodanese domain protein	2.56457e-05	5.56131e-06
+UniRef50_A6QDV1	0.00996972	0.00209669
+Pe pgrs family protein	5.70473e-06	1.32418e-06
+Periplasmic protein	0.000132326	0.00105118
+UniRef50_V6U561	3.75835e-05	5.1896e-05
+UniRef50_I1WGW6	7.44028e-05	0.0022612
+aspartate ammonia lyase	2.131e-06	2.6316e-06
+cold shock protein	6.5852e-05	4.41792e-05
+UniRef50_L0LNW6	0.000570322	0.000139158
+ATPase	0.00284858	0.000473641
+UniRef50_N6Y413	4.49815e-05	7.0349e-06
+p hydroxybenzoic acid efflux pump subunit AaeB	0.00223707	0.000630035
+DSBA oxidoreductase	1.91729e-05	5.56507e-06
+aminotransferase	1.14192e-05	0.000179573
+O sialoglycoprotein endopeptidase, partial	1.16869e-05	6.92519e-06
+Probable membrane protein	0.00182856	0.000410352
+hypothetical protein	4.84257e-05	8.72975e-06
+Thermonuclease	0.00870599	0.00336224
+UniRef50_H0TU43	0.000114752	0.000120355
+UniRef50_P33346	0.00419364	0.000624568
+Phosphoribosylaminoimidazole succinocarboxamide synthase	6.74722e-05	0.00129203
+UniRef50_P44299	7.77818e-06	0.000505795
+Bifunctional protein FolD	1.154e-05	1.36146e-06
+Glutamine amidotransferase	0.00460962	0.00148382
+Iron only hydrogenase large subunit	0.000316367	0.00088893
+hypothetical protein	9.79487e-06	5.66837e-05
+Bifunctional protein FolD	0.00321502	0.000111488
+UniRef50_C6SLX9	0.000422403	0.000334587
+UniRef50_B9KRV7	0.00702487	0.000983233
+Protein UshA	0.0022054	0.000258898
+Non specific serine threonine protein kinase	0.000376296	0.000261259
+UniRef50_E3FEG1	4.39123e-06	5.82529e-06
+UniRef50_H3ZXZ3	0.000518085	2.2365e-05
+50S ribosomal protein L17	0.00214534	0.000249402
+hypothetical protein	5.78421e-05	6.59543e-07
+diguanylate cyclase	2.96811e-05	1.7197e-05
+PREDICTED	4.87566e-05	3.83987e-05
+UniRef50_U7PB07	0.000229409	0.000172425
+Succinyl CoA ligase [ADP forming] subunit beta	0.000362522	0.00243011
+Heme ABC transporter	5.73535e-05	0.000124021
+Acetate CoA transferase subunit alpha	0.00289183	0.000143886
+Integral membrane sensor hybrid histidine kinase	9.2673e-05	0.000790096
+UniRef50_Q3JI08	6.7756e-05	1.80291e-05
+hypothetical protein	8.45519e-05	0.000871618
+NrdR family transcriptional regulator	0.000144822	5.07627e-05
+Glutamate ammonia ligase adenylyltransferase	0.000914878	0.000245889
+Integral membrane sensor signal transduction histidine kinase	0.000273833	0.000218965
+UniRef50_G9ZVA2	6.2148e-05	1.76411e-05
+GGDEF family protein	0.000150218	0.0219324
+Tripartite transporter, large subunit	5.3548e-06	6.69121e-06
+nucleoside hydrolase, partial	2.52891e-05	6.87622e-06
+Sensor histidine kinase CsrS	0.000224567	6.02583e-05
+hypothetical protein	6.2902e-05	4.24806e-05
+phosphoenolpyruvate synthase	2.17724e-06	3.18457e-07
+Transcriptional regulator CtsR	0.0185103	0.000418401
+UniRef50_E3F288	1.53227e-05	8.23879e-06
+Aminomethyltransferase	4.06758e-05	0.00184943
+Mur ligase family protein	0.000418751	0.000500544
+hypothetical protein	3.68207e-06	8.8457e-06
+hypothetical protein	0.00061181	0.000121671
+CTP synthase	0.0133061	0.0351462
+Secreted protein containing YkuD domain	2.70165e-06	0.000122682
+betaine aldehyde dehydrogenase	5.67779e-06	1.03962e-05
+Acetyltransferase	0.0190237	0.00240306
+Oligopeptide transport ATP binding protein	0.00903155	0.00179528
+hypothetical protein	1.36442e-05	0.000622323
+hypothetical protein	2.60937e-05	0.00231492
+UniRef50_F1SCK4	6.36101e-05	3.19363e-05
+UniRef50_P75836	0.00147404	0.000628308
+Os02g0192900 protein 	8.10176e-05	2.9924e-05
+TerF related protein	0.000188843	0.0258219
+leucine isoleucine valine transporter ATP binding subunit	0.00013653	1.92459e-05
+Isochorismatase	0.000360494	0.00301782
+DNA gyrase subunit B	5.50139e-06	1.82254e-05
+UniRef50_C6SEB8	0.000391336	0.000529063
+UniRef50_C6SRB4	0.00309275	0.00223007
+Superoxide dismutase [Cu Zn]	0.00115462	0.000885344
+UniRef50_U3ST50	0.00689431	0.000544146
+hypothetical protein	0.000294257	6.03446e-05
+AMP dependent synthetase and ligase	0.00969894	0.00152875
+Thymidine kinase	1.17171e-05	1.16455e-05
+Periplasmic [Fe] hydrogenase large subunit 	0.000153211	0.00133494
+Polyribonucleotide nucleotidyltransferase	0.00021305	1.01857e-05
+UniRef50_K7JKT8	0.000204744	6.19718e-06
+membrane protein	2.99515e-06	1.02206e-06
+hypothetical protein, partial	0.000177213	2.65053e-05
+ABC transporter permease	0.000253044	0.000336273
+Cysteine  tRNA ligase	0.00275385	0.00027405
+hypothetical protein	4.5683e-05	3.24346e-05
+UniRef50_Q3HKE0	0.0183329	0.00103281
+SUN family protein	0.000272798	0.00214056
+UniRef50_B9KKY7	0.00225968	0.00218987
+Peptidyl tRNA hydrolase	5.12506e-05	1.47699e-05
+UniRef50_A0A015J1B9	1.63144e-05	9.85263e-06
+Cellulose synthase catalytic subunit [UDP forming]	0.00231241	0.000471296
+UniRef50_X5PU41	0.000120272	1.37159e-05
+Type IV pilus biogenesis stability protein PilW	1.79435e-05	4.52041e-05
+Methyltransferase type 12	0.00155133	0.000158072
+UniRef50_I3X0I9	0.000157275	1.25743e-05
+UniRef50_K2J734	1.03075e-05	1.67231e-05
+hypothetical protein	0.000701629	0.000106938
+hypothetical protein	0.000182252	4.28575e-05
+UniRef50_A3XC42	3.68229e-06	1.93881e-05
+UniRef50_A4WWJ4	0.000591616	0.000749148
+Oxidoreductase, GMC family	0.000469092	0.000194338
+DNA topoisomerase I	2.28077e-06	2.49774e-06
+UniRef50_R1EBF4	4.03468e-06	1.11734e-05
+Capsular polysaccharide synthesis enzyme	0.012037	0.000497206
+Aerobic glycerol 3 phosphate dehydrogenase	0.0182597	0.0027515
+Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	4.98099e-05	0.000697264
+Thymidylate kinase	0.000202585	0.000421359
+spermidine putrescine ABC transporter ATPase subunit, partial	0.000193521	4.27025e-05
+UniRef50_A7WYE6	0.000860741	2.80293e-05
+hypothetical protein, partial	0.000156896	0.00112883
+Putative insertion sequence transposase protein	0.000131835	4.36201e-05
+Extracellular solute binding protein, family 1	0.00104889	0.000827112
+UniRef50_G6DGM2	8.2278e-06	5.17295e-06
+Thermosome subunit beta	0.00313288	0.000367549
+Peptidase M16 domain containing protein	0.0156859	0.00192939
+Ornithine cyclodeaminase	0.0021381	0.000314646
+Nickel ABC transporter, periplasmic nickel binding protein	6.52226e-05	0.000181068
+Replication associated protein	0.00879042	0.00450065
+DNA repair protein RecO	0.000363182	0.00354926
+UniRef50_Q6AKT0	0.00239187	0.00185302
+Hemin import ATP binding protein HmuV	9.09302e-06	0.000934164
+Threonine  tRNA ligase	4.05272e-06	0.000286846
+Inner membrane transporter ygjI	0.00176147	0.000123841
+Catalase	9.3453e-06	9.33671e-06
+hypothetical protein	0.000178506	7.66681e-05
+hypothetical protein	1.92375e-05	3.54915e-05
+30S ribosomal protein S1	0.00017581	0.00489069
+Transporter, drug metabolite exporter family protein	0.00996954	0.00108911
+UniRef50_E7MYR2	0.00043445	0.00020783
+Alkanesulfonate monooxygenase	2.18589e-05	1.63746e-05
+UniRef50_W5X5Q8	3.17144e-05	1.57398e-05
+UPF0213 protein NGO1598	1.38769e-05	0.000399044
+Phospholipase, patatin family	0.000467278	0.00125911
+AMP binding enzyme	0.00036722	0.00103507
+hypothetical protein	2.51369e-05	0.00137698
+Acetylglutamate kinase	2.80342e-05	7.44007e-06
+ATPase histidine kinase DNA gyrase B HSP90 domain protein	0.000190449	0.00224401
+PREDICTED	0.00279347	0.00429129
+UniRef50_F7Y006	0.000164367	3.94911e-05
+Inorganic pyrophosphatase	0.000696885	0.00347893
+hypothetical protein	0.000153586	5.11358e-05
+Peptidase M24	5.74969e-05	0.00169968
+hypothetical protein	3.18282e-05	1.30292e-05
+Glutamine dependent NAD synthetase	0.000115111	0.00220148
+RNA polymerase sigma factor RpoH	0.0113448	0.00330149
+1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000345937	0.00116621
+helix turn helix domain containing protein	7.73927e-05	6.44943e-06
+UniRef50_K7YS10	9.83102e-05	0.00193772
+UniRef50_D8JIS8	0.000349693	0.00238134
+Response regulator protein	0.00944048	0.0022664
+Putative metabolite transport protein YdjK	0.00205552	0.000277597
+Flagellar motor switch protein FliG	0.000102088	0.000361882
+Sensor histidine kinase	0.000200349	0.00357399
+Short chain dehydrogenase reductase SDR	0.00103663	0.000647637
+Stage V sporulation protein R	0.000658108	0.000411453
+30S ribosomal protein S17	3.17592e-05	0.000165042
+UniRef50_D4HFJ3	7.90641e-05	0.000524366
+PspA related protein	6.17143e-05	0.000424309
+Fatty acid beta hydroxylase	0.00296914	0.000645394
+Ribonuclease D	5.28199e-05	5.48826e-06
+RNA polymerase sigma factor RpoE	0.000503494	2.11058e-05
+Phosphoglucosamine mutase	0.0286671	0.00943499
+Transcriptional regulator	0.00362026	0.00122353
+hypothetical protein	0.000109932	4.09322e-05
+hypothetical protein	1.56961e-05	4.8486e-05
+Ribonuclease M5	0.00660776	0.00172706
+hypothetical protein	5.06837e-06	3.99847e-05
+Succinyl diaminopimelate desuccinylase	0.0100825	0.00296826
+UniRef50_F2A6D1	0.000341716	4.01967e-05
+PREDICTED	9.56019e-06	3.08256e-06
+NLPA lipofamily protein	4.55624e-05	2.01375e-05
+Ribonucleoside diphosphate reductase subunit beta	0.00464395	0.00241085
+UniRef50_F0Y9Q8	7.45897e-05	5.7481e-05
+hypothetical protein	1.73918e-06	1.52268e-06
+Outer membrane porin, OprD family	0.00124553	0.000316857
+Glutathione synthetase	0.00806917	0.00242518
+30S ribosomal protein S8	0.000253044	0.0209853
+hypothetical protein, partial	2.97484e-05	8.05133e-06
+Haemin degrading family protein	0.00015533	0.000149641
+Leucyl phenylalanyl tRNA  protein transferase	1.56418e-05	7.24172e-06
+Formylmethanofuran dehydrogenase subunit E, metal binding	0.00571126	0.000956511
+UniRef50_Q9JZ25	7.32689e-05	0.00207457
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	9.94733e-06	0.000117391
+UniRef50_Q9JZ20	5.76611e-05	0.00237461
+UniRef50_V8UNT0	0.000220306	9.26572e-05
+MULTISPECIES	0.000361666	3.64628e-05
+Putative purine permease YbbY	0.00171874	0.000601092
+UniRef50_H5NY39	7.36356e-05	1.0783e-05
+Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	0.00015376	2.67444e-05
+hypothetical protein, partial	0.00162519	0.000358378
+UniRef50_R0B9U9	2.51767e-05	5.19712e-05
+Pyruvate dehydrogenase E1 component	0.000856441	0.00575206
+Sulfoquinovose isomerase	0.00342054	0.000538185
+Phosphohydrolase 	0.00350376	0.00296452
+Protein FixC	0.00138646	0.000529598
+3 oxoacyl ACP reductase	0.000148915	0.00158281
+2 hydroxy 3 oxopropionate reductase	0.00303747	0.000101567
+UniRef50_Q132J0	1.61815e-05	1.61397e-05
+hypothetical protein	7.98558e-05	8.57939e-06
+Bacterial capsule synthesis protein	0.00480539	0.00127099
+Histidine utilization repressor	0.00143567	0.00353074
+DeoX	0.000332462	0.003093
+hypothetical protein, partial	0.000191183	6.57361e-05
+Bipolar DNA helicase	0.000743233	0.000371207
+Glucose 1 phosphate thymidylyltransferase	0.0001199	9.24062e-06
+Multisubunit potassium proton antiporter, PhaD subunit	0.000165902	6.13704e-05
+DNA gyrase subunit A	4.84669e-06	4.53014e-06
+Two component system response regulator 	0.000346737	0.00332373
+Marine sediment metagenome DNA, contig	0.00038228	8.95299e-05
+Cytochrome c type protein TorY	0.00177977	0.000487511
+Cysteine desulfurase ATPase component 	2.58828e-05	2.19117e-05
+pyrroloquinoline quinone biosynthesis protein PqqD	0.000506549	0.000242522
+Nucleoside permease NupC, putative	0.00822682	0.00150703
+UniRef50_A6X846	1.84359e-05	1.80883e-05
+Multidrug resistance outer membrane protein MdtP	0.00559923	0.000422787
+Tetrahydromethanopterin S methyltransferase subunit D	0.00165283	0.000887297
+hypothetical protein	7.44538e-05	0.000175599
+DNA directed RNA polymerase subunit B	0.00318696	0.0007394
+hypothetical protein	0.000190812	1.95996e-05
+Flagellar hook capping protein	5.57231e-06	4.32576e-06
+Flagellar biosynthetic protein fliR	0.000294139	0.00191104
+Glycerol 3 phosphate acyltransferase	8.942e-05	0.00331868
+UniRef50_O27221	0.00340485	0.000286229
+PTS lactose transporter subunit IIC, partial	2.10134e-05	2.59611e-05
+Anaerobic nitric oxide reductase flavorubredoxin homolog	0.000807751	0.000340367
+UniRef50_N1QCI2	3.09754e-05	1.00224e-05
+hypothetical protein	6.10254e-06	0.000291376
+Peptidase, M23 M37	4.21534e-05	0.000182479
+tRNA pseudouridine synthase D	1.21743e-05	7.29704e-06
+DNA directed RNA polymerase subunit alpha	0.000269223	0.00125783
+Triosephosphate isomerase	5.63505e-06	5.58644e-06
+UniRef50_E3EYC8	0.000182159	3.91217e-05
+hypothetical protein	5.17081e-06	5.62582e-05
+Lipopolysaccharide biosynthesis protein like protein	0.00582607	0.000851237
+hypothetical protein	4.53182e-05	8.16969e-05
+Putative aldehyde dehydrogenase SERP1729	0.00885358	0.00183512
+UniRef50_J7Q688	0.0052492	0.000880244
+UPF0145 protein Blon_0093 BLIJ_0092	0.0055879	0.000453459
+Methionine aminopeptidase	0.0164453	0.00310568
+MgtC family protein	8.70404e-06	1.20387e-05
+UniRef50_E4RH84	0.000284407	6.17124e-05
+hypothetical protein	1.61053e-05	4.29182e-06
+DNA mismatch repair endonuclease MutH	0.00140459	0.00034269
+UniRef50_V6J5F5	0.000264786	4.68626e-05
+UniRef50_N3N816	1.99497e-05	5.45903e-06
+hypothetical protein	5.42865e-06	1.98212e-06
+UniRef50_O26311	0.00225265	0.000127899
+UniRef50_R9GEA9	0.000105914	2.78668e-05
+PTS family mannose fructose sorbose porter component IIB	0.00188472	0.0057771
+Transglutaminase like	0.00523665	9.49118e-05
+UniRef50_R4RQ23	0.00200628	0.000550209
+Flagellar hook capping protein	0.000332995	1.47695e-05
+UniRef50_W4KX88	0.000162584	0.00223291
+hypothetical protein	2.91497e-05	2.02215e-05
+PREDICTED	7.80119e-06	9.00153e-06
+Oxidoreductase	2.76213e-05	1.829e-05
+UniRef50_A6LQN9	0.000196812	0.000581342
+Oxidoreductase, aldo keto reductase family	0.00473998	0.00237983
+Valine  tRNA ligase	0.0103488	0.00339874
+iojap like protein	1.40252e-05	7.81284e-06
+CCR4 NOT transcription complex subunit 1 like protein	1.84903e-07	8.31572e-06
+hypothetical protein	3.77857e-05	0.000342094
+UniRef50_A8TYU1	0.000161954	2.01739e-05
+ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein	0.00985013	0.000497961
+UniRef50_A8TJK3	4.14552e-05	1.67249e-05
+ABC 2 type transporter	0.000334306	0.000935894
+DEAD DEAH box helicase domain protein	0.000112684	0.00286509
+hypothetical protein	1.33725e-06	7.52864e-06
+hypothetical protein	1.46306e-05	1.03469e-05
+UniRef50_P54569	0.0088477	0.00224664
+UniRef50_G3N5H8	0.000305664	8.98752e-05
+UniRef50_Q5HKG1	0.0118984	0.00266865
+hypothetical protein, partial	4.91037e-06	2.20047e-05
+hydrogenase	2.78241e-06	4.85312e-06
+UPF0304 protein YfbU	0.00148555	0.000201311
+Amine oxidase, flavin containing	0.000310098	0.00200217
+Porin	0.000593142	0.000215832
+Transcriptional regulator, DeoR family	0.000157757	0.000818995
+UniRef50_U3SVU2	0.000507116	0.000297092
+DNA replication and repair protein RecF	0.0164639	0.00170686
+UniRef50_I6STT7	0.00298373	0.00305385
+bacterioferritin comigratory protein	1.64781e-05	0.000111564
+UniRef50_M0V7T6	8.77748e-05	0.000176049
+Ferrous iron transport protein B	0.000240318	0.00185877
+cation	0.000148072	6.71922e-05
+Type I restriction modification system,specificity subunit S	0.0113831	0.00126768
+LmbE like protein	0.000682567	6.91184e-05
+Fimbrial like adhesin protein	0.00125904	0.000138986
+UniRef50_V5A3C8	0.000470917	1.69165e-05
+GntR family transcriptional regulator	0.00017014	8.60833e-05
+leucyl tRNA synthetase	4.23864e-06	7.88555e-07
+tRNA pseudouridine synthase A	0.000207746	3.78846e-06
+N acetylmuramic acid 6 phosphate etherase	6.1526e-06	0.00106557
+alpha glucosidase	4.03911e-06	1.54092e-05
+Beta glucosidase	0.00263041	0.000561737
+Glucarate dehydratase	0.00626721	0.00445339
+hypothetical protein	6.42366e-05	2.95302e-05
+Transposase	0.000115724	0.000932023
+phosphoribosylglycinamide synthetase	1.66246e-05	4.49924e-06
+UniRef50_X5F4A5	0.00101752	0.00033199
+hypothetical protein	6.77615e-05	5.33471e-06
+Inosine uridine preferring nucleoside hydrolase family protein	0.00988698	0.000878375
+Multidrug transporter 	2.94545e-05	0.000298548
+Aminomethyltransferase	1.86475e-05	3.49965e-05
+Predicted protein	5.67501e-06	9.78983e-05
+UniRef50_G7ZTG3	0.00845287	0.00232102
+Rhamnulose 1 phosphate aldolase	0.00285638	0.000655828
+pseudouridine synthase	5.18342e-06	1.22654e-05
+Endoribonuclease YbeY	0.000201125	0.000196466
+UniRef50_R1C5J1	4.67378e-05	4.00417e-05
+PTS fructose transporter subunit IIB	0.00503449	0.00131725
+UniRef50_Q9HYB2	0.00161311	0.000203721
+Putative transcriptional regulator	5.2668e-05	5.66481e-06
+Transcriptional regulator, MerR family	0.00114732	0.0159505
+Heat shock protein DnaJ domain protein	0.000184579	0.000169086
+GntR family transcriptional regulator	2.98328e-05	2.23028e-05
+Glutamine transport ATP binding protein GlnQ	0.00161509	0.00457046
+Hemin import ATP binding protein HmuV	8.61254e-06	0.000280732
+O antigen polymerase	9.54296e-05	0.00374832
+Riboflavin synthase	1.68707e-05	1.49769e-05
+hypothetical protein	6.47731e-06	5.19376e-06
+PREDICTED	1.64529e-05	7.58533e-06
+Glyoxylate reductase	0.000262723	0.000110709
+Sensor histidine kinase	0.000123278	0.00254771
+Lysophospholipase L2	6.24406e-05	0.000325972
+RNA polymerase sigma factor RpoE	0.000720747	3.9152e-05
+Deoxyribonuclease	0.0062021	0.000729632
+UniRef50_F7NPL8	3.87159e-05	6.14455e-06
+UniRef50_F0Y846	0.000135386	0.000155617
+Translation initiation factor IF 2	0.00225968	0.000769466
+PREDICTED	7.82025e-07	6.71437e-07
+UniRef50_J3QFT9	3.90977e-06	4.10524e-05
+Antitoxin	0.000343417	0.000258002
+hypothetical protein	7.59487e-05	0.00654213
+Putative cold shock protein	0.00162777	0.000208407
+Vibriobactin specific 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	7.33413e-06	1.16503e-05
+UniRef50_Q9RYM5	7.86328e-05	0.00381068
+UniRef50_Q9RYM9	1.38881e-05	0.0331291
+PREDICTED	9.28273e-06	5.55089e-05
+Kinase, PfkB family	0.00899675	0.000777692
+Galactarate dehydratase	0.00508357	0.000664811
+MFS transporter	1.4379e-05	3.57952e-06
+adenosylcobinamide phosphate synthase	2.23486e-05	5.92221e-06
+UbiC transcription regulator associated protein	0.0132306	0.00199277
+Peptidyl prolyl cis trans isomerase	0.000146414	0.00179435
+Peptide deformylase like	0.0120271	0.00257043
+UniRef50_A9LZP7	0.00025368	0.000960347
+UniRef50_Q1QLF3	0.00217571	0.000454673
+3 oxoacyl  reductase, putative	0.0114234	0.00182749
+S adenosylmethionine synthase	3.51654e-05	0.000132166
+UniRef50_Q9RT82	0.000219966	0.00887692
+HTH type transcriptional regulator IlvY	0.00307941	0.000889819
+UniRef50_W1PW22	3.4505e-05	2.62479e-05
+sugar ABC transporter	8.22787e-06	1.99129e-05
+ABC transporter permease	3.24278e-05	4.31645e-06
+UniRef50_D2NQB1	5.32086e-05	4.32019e-05
+1 acyl sn glycerol 3 phosphate acyltransferase	0.000657445	0.00542199
+UniRef50_F4GUZ8	8.13927e-06	5.89931e-06
+UniRef50_Q2CBD6	8.86386e-06	2.33151e-06
+Dipeptide transport ATP binding protein DppD	0.00417336	0.000178145
+Dihydroxy acid dehydratase	3.39987e-05	1.83867e-05
+Phosphoribosylglycinamide formyltransferase	0.00200757	0.000697391
+hypothetical protein	1.12676e-05	5.45968e-06
+Chaperone protein HscA	0.000146503	9.56937e-05
+UniRef50_W0Z408	0.000302856	0.00101879
+Imidazole glycerol phosphate synthase subunit HisF	0.00848866	0.000673345
+Nitroreductase family protein	0.00604002	0.000499362
+UniRef50_R0F7I9	0.000147267	2.3547e-05
+membane protease HflC	1.40157e-05	8.09987e-06
+Universal stress family protein	0.00810142	0.0016832
+porin	0.000194033	1.17668e-05
+Glycine cleavage T protein	0.000611299	0.00387094
+UniRef50_A0A027RVP4	0.00389235	0.000483423
+hypothetical protein	1.35814e-05	1.02912e-05
+Cobyrinic acid A,C diamide synthase	1.09284e-05	0.000173882
+Transposase IS204 family protein 	0.000170261	6.06274e-06
+ATP synthase subunit alpha, chloroplastic	3.66123e-06	1.1247e-05
+Cell envelope related transcriptional attenuator	5.89969e-06	1.55158e-05
+hypothetical protein	1.33558e-05	0.00132604
+Putative Linear gramicidin synthetase LgrC	0.000338072	0.000203965
+UniRef50_V7H7E4	6.1007e-05	1.3515e-05
+UniRef50_B1VXS1	1.06941e-05	2.45306e-05
+UPF0026 protein jhp_0109	0.000111194	0.00164442
+hypothetical protein	7.7125e-05	6.17149e-05
+UniRef50_P58409	0.00320358	0.000903646
+UniRef50_D1BK43	0.000216766	0.00221452
+UniRef50_B8EIF0	4.28553e-06	3.31136e-06
+Tat linked quality control protein TatD	0.00393414	0.000731081
+Superinfection exclusion protein B	0.00488839	0.00129692
+Permease	0.000665429	0.000273476
+UniRef50_X2M6Z7	6.37986e-05	9.78336e-06
+FemC, factor involved in methicillin resistance Glutamine synthetase repressor	0.0152438	0.00154184
+Tetracycline efflux transporter protein	0.000208009	0.00293721
+UniRef50_Q9WYG0	7.21214e-06	4.56636e-06
+Probable transglycosylase IsaA	0.0292799	0.000585733
+hypothetical protein	5.02908e-06	1.80939e-05
+Cholesterol oxidase	0.000815594	0.000102203
+PREDICTED	3.47519e-05	6.12409e-05
+UniRef50_V6Q9U1	0.00354196	0.00642726
+Metallophosphoesterase	0.000228164	0.000531513
+Histidinol dehydrogenase 	6.29414e-06	6.11625e-06
+Uro adherence factor A	0.00294007	0.000728363
+KxYKxGKxW signal peptide	2.08251e-06	2.47051e-06
+NHL repeat containing protein	8.48442e-05	0.00901917
+UniRef50_C0ZS23	8.87111e-06	9.66502e-06
+UniRef50_Q8DSK8	0.00535425	0.000772952
+Trifunctional NAD biosynthesis regulator protein NadR	0.00313588	0.000219013
+PREDICTED	2.4866e-05	1.31965e-05
+RNA polymerase sigma factor FliA	0.0021562	0.000627316
+UPF0246 protein KPN78578_00060	0.00448497	0.00237342
+Ribose 5 phosphate isomerase A	0.000307167	0.0248022
+hypothetical protein, partial	0.000138729	2.1012e-05
+UniRef50_R4MBB3	1.89704e-06	5.76255e-06
+Transcription repair coupling factor	7.23279e-05	0.00261508
+CAAX amino terminal protease family	0.00437574	0.000102846
+Thioesterase superfamily protein	1.07726e-05	0.00102156
+hypothetical protein	8.82753e-05	1.0641e-05
+NAD dependent dehydratase	4.75014e-06	8.63293e-06
+Succinate semialdehyde dehydrogenase [NAD+] Sad	0.00299244	0.000835175
+UniRef50_N0B4C8	0.000115761	1.54479e-05
+Propionate  CoA ligase	0.000699849	0.000368098
+S formylglutathione hydrolase	0.00712805	0.00116443
+UniRef50_C6STZ5	0.00391298	0.00271586
+Sulfite reductase [NADPH] hemoprotein beta component	0.0105476	0.00158277
+Acetolactate synthase, mitochondrial	7.18072e-06	5.23041e-06
+Sirohydrochlorin cobaltochelatase	0.000131636	0.00123841
+Glutathione ABC transporter permease	0.000428376	0.000482671
+hypothetical protein	8.69997e-06	7.71427e-06
+O glycosyl hydrolase	0.000416973	0.000230406
+Ribosomal silencing factor RsfS	0.00864487	0.00536626
+hypothetical protein	1.52052e-05	4.02328e-05
+UniRef50_F5XDU3	1.50325e-05	4.84521e-05
+UniRef50_D1BRB3	2.79158e-05	5.79611e-06
+UniRef50_Q2J3W0	0.000103172	4.23082e-05
+tRNA pseudouridine synthase B	0.000112558	0.000431957
+HTH type transcriptional repressor NsrR	0.000639003	0.000211258
+hypothetical protein, partial	9.93988e-07	1.62026e-06
+UniRef50_W7WQV3	8.82695e-06	2.07319e-05
+UniRef50_UPI000395618F	5.41075e-05	4.84799e-05
+UniRef50_N8K6N9	9.69815e-05	1.17556e-05
+hypothetical protein TGME49_026320	8.32493e-06	4.70612e-06
+Drug metabolite transporter superfamily protein	0.00541452	0.000410395
+hypothetical protein	7.42892e-05	2.21895e-05
+Predicted metal dependent membrane protease	0.00223313	0.000566521
+UniRef50_E6YL73	0.0009232	0.000190983
+UniRef50_R6M763	0.000691538	0.00261501
+UniRef50_M1PJ51	1.0856e-05	1.58034e-05
+UniRef50_K2JGL6	0.000129473	2.28162e-05
+preprotein translocase subunit SecB	4.50125e-05	4.97892e-05
+ABC type spermidine putrescine transport system, permease component II	0.0135665	0.00255207
+hypothetical protein	7.92928e-05	1.77912e-05
+Indole 3 glycerol phosphate synthase	1.83908e-05	6.54401e-06
+Respiratory nitrate reductase 2 alpha chain	2.55513e-06	1.51534e-05
+Alpha dextran endo 1,6 alpha glucosidase	0.000103954	0.00088591
+UniRef50_K2M7A1	0.000183911	4.57781e-05
+UniRef50_F3P2W5	5.19634e-05	1.75375e-05
+Ribosomal RNA large subunit methyltransferase K L	0.000172388	0.00293981
+HTH type transcriptional regulator TdcA	0.00260206	0.000434841
+UniRef50_R9SMW6	0.00455191	0.00031393
+hypothetical protein	0.00966915	0.00164002
+hypothetical protein	4.36458e-06	1.96024e-05
+2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	0.0278943	0.00452869
+hypothetical protein TRAVEDRAFT_69016	0.000428647	8.46628e-05
+hypothetical protein	7.70773e-05	0.000427798
+excinuclease ABC subunit B	2.81195e-05	0.00196425
+PadR family transcriptional regulator	0.000105685	1.84278e-05
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.000156909	0.0254507
+UniRef50_D2J8F1	0.00497747	3.54003e-05
+hypothetical protein, partial	5.85875e-05	3.00994e-05
+hypothetical protein	6.79877e-06	1.47229e-05
+Prolipoprotein diacylglyceryl transferase	5.81026e-05	1.64252e-05
+Ribose phosphate pyrophosphokinase 2	1.76684e-05	3.30778e-05
+UniRef50_E3NW74	3.9351e-05	1.73211e-05
+UniRef50_F3PMN2	5.34055e-05	0.000126146
+Probable transcriptional regulatory protein YebC	0.00333676	0.000249677
+PREDICTED	1.35276e-05	3.98085e-06
+hypothetical protein	3.46463e-06	3.92978e-06
+Cysteine desulfurase	0.015736	0.00247518
+N acetyldiaminopimelate deacetylase	0.00709066	0.0037559
+UniRef50_H9JHD1	1.0786e-05	2.74428e-05
+Dichlorophenol hydroxylase	0.000228071	0.00395051
+ABC transporter permease protein	0.0138118	0.00165094
+Multi sensor hybrid histidine kinase	0.000897269	3.99221e-05
+ABC type nitrate sulfonate bicarbonate transport system, ATPase component	0.000972652	0.000443279
+UniRef50_K7ECB4	6.5495e-05	5.94639e-05
+ATP dependent DNA helicase RecQ	0.00186993	0.000265427
+RNA polymerase sigma factor SigA	0.0213031	0.00615263
+UniRef50_Q31GL1	5.32183e-05	1.11625e-05
+Alkaline protease secretion protein AprE	0.000156985	0.000995143
+Ribonucleoside diphosphate reductase subunit alpha	2.56695e-06	2.64082e-05
+NADH oxidase family protein	0.00885222	0.00164928
+Pseudouridine 5 phosphate glycosidase	0.0162453	0.00124665
+Toxic anion resistance	0.00372855	0.000437657
+Inner membrane protein YiaV	0.00497972	0.000667902
+Xylose isomerase	0.00514891	0.00108328
+UniRef50_W6M578	0.000332998	9.9311e-05
+hypothetical protein	1.06232e-05	1.33903e-05
+UniRef50_X6MYI2	5.27294e-06	8.9662e-05
+hypothetical protein	1.75136e-05	9.89634e-06
+50S ribosomal protein L24	3.02867e-05	8.5199e-06
+hypothetical protein	1.0852e-05	6.60224e-06
+Non canonical purine NTP pyrophosphatase	9.41096e-05	1.72273e-05
+Alkaline phosphatase	0.000310446	0.000194539
+Tetracycline resistance protein	0.51126	0.101236
+O methyltransferase	0.000341097	0.00196349
+GntR family transcriptional regulator	5.62267e-05	1.15486e-05
+N acetylmuramic acid 6 phosphate etherase	6.58712e-06	4.85057e-06
+Prephenate dehydratase	0.0172303	0.00419481
+methionine aminopeptidase	1.86305e-05	8.10451e-06
+hypothetical protein	0.000130261	0.000605002
+Oligopeptide transport ATP binding protein OppF	0.00606991	0.00123262
+Metallophosphoesterase	0.00261442	0.000643686
+Interrupted beta D glucuronidase	0.00675326	0.000363002
+Proteophosphoglycan ppg1	2.59172e-06	3.58942e-06
+Chlorophyllide reductase 35.5 kDa chain	0.0101464	0.000497331
+UniRef50_A0A034HVJ8	0.00362867	0.000211258
+Snf2 family protein	6.63916e-05	0.00110477
+hypothetical protein, partial	2.92494e-05	0.000227377
+GntR family transcriptional regulator	1.83208e-05	1.16573e-05
+thiamine biosynthesis adenylyltransferase	6.08398e-06	6.2569e-06
+PREDICTED	1.23725e-05	5.04963e-06
+Serine aspartate repeat containing protein D	0.00242263	0.000152955
+major facilitator family transporter, partial	1.27457e-05	2.6983e-05
+Flp pilus assembly protein TadG	0.000612	6.91184e-05
+hypothetical protein	5.13681e-06	1.40694e-05
+hypothetical protein	2.27253e-05	8.49799e-06
+UniRef50_UPI0003942A9F	6.63106e-06	1.64301e-06
+Predicted polysaccharide polyol phosphate ABC transporter, permease component	0.00215535	0.000285829
+UDP N acetylmuramate  L alanine ligase	0.000163052	0.000390482
+hypothetical protein DR_1761	0.00032663	0.185976
+Probable chemoreceptor glutamine deamidase CheD	0.00011582	1.16662e-05
+Permeases of the major facilitator superfamily	0.00016078	2.51627e-05
+UniRef50_G0DRF3	0.000107638	0.00366008
+Alanine racemase	0.000760213	1.86042e-05
+Superfamily I DNA and RNA helicase like protein	0.000163211	0.00431869
+UniRef50_R7PS51	0.00345223	0.000341543
+UniRef50_J9U7Y2	0.0109128	0.00201406
+UniRef50_J7QB56	0.000637102	0.000309603
+Serine threonine protein phosphatase 2	0.00225153	0.00110038
+UPF0302 protein SA1295	0.0166734	0.0013937
+Flavin reductase domain protein, FMN binding	0.0104493	0.00206137
+Glycerol 3 phosphate acyltransferase	9.47621e-05	3.98159e-05
+30S ribosomal protein S5	0.0337092	0.00684045
+Putative oxidoreductase YceM	0.00125087	0.000292038
+uroporphyrin III C tetrapyrrole  methyltransferase	1.50471e-05	3.51828e-05
+Ornithine cyclodeaminase mu crystallin domain protein	0.000201725	4.46523e-05
+hypothetical protein	2.27008e-05	6.41274e-06
+zinc binding dehydrogenase	1.22219e-05	5.29128e-06
+oligopeptide ABC transporter, permease protein OppC, partial	3.39013e-05	3.68017e-05
+tRNA specific 2 thiouridylase MnmA	0.00428828	0.0013892
+Putative 2 hydroxyacyl CoA lyase	1.64935e-06	3.33602e-06
+3 oxoacyl ACP synthase	3.29116e-06	2.67552e-05
+ABC transporter, substrate binding protein, family 5 domain protein	0.00123565	0.000218987
+ATP synthase subunit beta	0.0396378	0.0112548
+UPF0301 protein Msil_1255	2.31198e-05	2.58479e-05
+Iron ABC transporter substrate binding protein	0.000584831	0.00364223
+NADH dehydrogenase (Quinone)	0.000345769	0.000143198
+Short chain dehydrogenase reductase SDR	0.00577131	0.000887557
+hypothetical protein	5.8544e-06	3.99027e-06
+Lipoprotein signal peptidase	9.94664e-06	9.92454e-06
+UniRef50_Q9RZC9	0.000199141	0.0148301
+tRNA dimethylallyltransferase	2.48616e-05	0.00388327
+N acetyl gamma glutamyl phosphate reductase	1.70144e-05	5.65805e-06
+Staphylococcal secretory antigen ssaA2	0.00711477	0.000936135
+UniRef50_Q9RZC7	0.000344178	0.0245698
+UniRef50_T0GNN5	0.000630595	0.000221037
+PepSY associated TM helix domain protein	0.000186281	0.0169575
+PREDICTED	1.49536e-05	1.22881e-05
+SanE	1.77997e-05	6.45733e-06
+cation transporter	3.25185e-06	7.05259e-06
+Replication protein C	0.0033253	0.000488535
+ATP dependent DNA helicase Rep	6.84923e-06	5.48453e-06
+ATP synthase subunit alpha 3	0.000402238	6.05427e-05
+Terminase, large subunit, putative	3.69745e-06	3.1938e-05
+DHHA1 domain protein	0.0220682	0.00349445
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	3.04746e-05	1.98657e-05
+PREDICTED	0.000175819	1.26538e-05
+UniRef50_I6WVI5	4.43635e-06	1.13555e-05
+Periplasmic [NiFeSe] hydrogenase small subunit	4.67568e-05	8.09219e-06
+Biotin synthase	6.37077e-06	3.06678e-05
+Chemotaxis protein methyltransferase 1	0.00146109	0.000350162
+Gm3773 predicted gene 3773	0.000108167	3.17352e-06
+glycolate oxidase	3.77826e-06	2.13399e-05
+UniRef50_B5Z805	0.000129111	0.00362517
+UniRef50_D2NRN3	3.30388e-05	0.000714804
+UniRef50_A4WT54	0.00414616	0.000719811
+UniRef50_R0TNR1	0.000555436	0.00113705
+UDP N acetylmuramate  L alanine ligase	0.000187137	0.00131416
+Putative adenylate kinase	0.00299335	0.000169726
+UniRef50_B4WIG2	7.49416e-05	2.83178e-05
+transposase	3.31802e-05	3.70118e-06
+UniRef50_K9WHG2	0.0006651	0.000133809
+UniRef50_A4XVS8	0.000146965	4.19752e-05
+CBS domain protein	0.00778058	0.00240421
+Transketolase	0.008444	0.00304567
+TetR family transcriptional regulator	0.000168837	0.00391926
+XRE family transcriptional regulator	0.000166851	6.46515e-05
+Staphylococcal complement inhibitor	0.00460519	0.000772529
+TetR family transcriptional regulator	1.03518e-05	6.55683e-05
+GTP binding protein TypA BipA	2.03121e-05	6.94137e-06
+UniRef50_B9TQ05	0.000117513	0.00071035
+UniRef50_A3KAM8	2.6989e-06	7.69378e-07
+Nitrate reductase delta chain	0.00636206	0.0019538
+Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase	8.75805e-06	0.000165909
+PpkA related protein	0.0023437	5.98167e-05
+hypothetical protein	2.82654e-05	5.73214e-06
+UniRef50_G7U5R3	0.000380467	0.00224674
+UniRef50_W5MN69	0.000206197	0.000200991
+UniRef50_D6SYK4	6.38317e-06	8.85091e-06
+hypothetical protein	2.40114e-06	1.76833e-05
+Sorbose PTS system, IIB component	0.00297538	0.0014441
+Uridine phosphorylase	0.000573409	0.00052222
+hypothetical protein	1.05388e-05	1.10403e-05
+UniRef50_H2A6W4	0.00596928	0.000763336
+UniRef50_E6QN76	0.000122252	2.00772e-06
+Cysteine synthase	9.42685e-05	6.07308e-06
+hypothetical protein	1.6841e-05	3.13622e-05
+hypothetical protein, partial	0.0012075	0.000149661
+hypothetical protein	0.00338047	0.000547885
+3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.00639455	0.000353832
+UniRef50_A5B2H7	1.07291e-05	8.36496e-06
+hypothetical protein	9.82954e-05	3.99423e-05
+Spermidine putrescine import ATP binding protein PotA	4.42593e-05	1.77123e-05
+ribonuclease D, partial	7.83737e-05	6.97706e-06
+PilT protein domain protein	0.000489842	6.07249e-05
+Beta Ig H3 fasciclin	0.0103831	0.00203219
+Orotate phosphoribosyltransferase	0.000437076	0.000591556
+resolvase	3.14875e-05	4.17402e-05
+UniRef50_B9KLM6	0.00424719	0.000191349
+general secretion pathway protein GspI	1.99629e-05	1.33718e-05
+3 deoxy D arabinoheptulosonate 7 phosphate synthase	0.000527206	0.00138679
+hypothetical protein	0.000111142	4.83105e-05
+UniRef50_B9KLM0	0.000260977	3.32783e-05
+hypothetical protein	7.39345e-06	1.21019e-05
+UniRef50_F0JDW5	6.50979e-05	1.01058e-05
+UniRef50_P32668	0.00213974	0.00174666
+GTP binding protein Der	1.12649e-05	1.07514e-05
+Type 4 fimbriae expression regulatory protein PilR	8.17527e-05	0.00019351
+preprotein translocase subunit SecG	8.26597e-05	2.24424e-05
+Spermidine putrescine binding periplasmic protein	0.0151051	0.00140461
+Autoinducer 2 binding protein lsrB	0.000531954	0.000598566
+DNA helicase II	0.00354698	0.000745921
+DNA polymerase III subunit alpha	9.25334e-05	0.00238568
+UniRef50_A1A8T2	0.000825784	0.00126019
+Phosphoribosyl isomerase A	0.000151145	0.00243821
+Phosphoserine aminotransferase	0.000101882	0.00367506
+Putative Mrr restriction system protein	0.014434	0.00205307
+UniRef50_M4WVA9	0.000468507	0.000156995
+UniRef50_Z5RZH0	4.60737e-05	4.75477e-05
+hypothetical protein	0.00015321	7.00144e-06
+UniRef50_B1KVH1	0.000870482	0.000369716
+tRNA threonylcarbamoyladenosine dehydratase	0.00267126	0.00024377
+UniRef50_A3PNX1	0.018601	0.00542668
+NADH quinone oxidoreductase chain 13	0.0128321	0.00164981
+ABC transporter permease	0.000211317	1.89649e-05
+UniRef50_UPI0003DE8355	1.19048e-05	6.45625e-06
+Terminase large subunit	0.00103025	0.00272075
+UvrD REP helicase	9.82938e-05	0.00207108
+Putative sgc region protein SgcQ	0.00302682	0.00056876
+UniRef50_P64576	0.000504823	0.000316144
+Putative hydrogen peroxide sensitive repressor	4.20434e-05	4.75096e-05
+SsDNA exonuclease RecJ2	0.00147772	0.00093094
+Hemolysin type calcium binding region	3.43169e-06	1.91804e-07
+Putative xanthine dehydrogenase YagR molybdenum binding subunit	0.00177084	0.00430777
+Leucyl phenylalanyl tRNA  protein transferase	3.84139e-05	4.97233e-05
+Oxygen insensitive NADH nitroreductase	0.00335594	0.000465795
+hypothetical protein	4.45394e-06	3.52873e-06
+Transcriptional regulator	0.00136111	0.00119047
+Peptide transport system ATP binding protein SapD	0.00154209	0.000600452
+Predicted protein	7.54528e-06	7.74937e-05
+UniRef50_G7UA10	0.000181591	0.00313661
+Diaminopimelate decarboxylase	4.67345e-06	0.00199033
+UniRef50_A0A024EEF7	2.66044e-05	3.80836e-05
+Integral membrane protein MviN 	0.000195664	0.000109039
+UPF0053 inner membrane protein YtfL	0.00253663	7.15988e-05
+Cobyrinic acid a,c diamide synthase	2.75214e-05	0.00163838
+UniRef50_M9VHF6	0.000461025	0.0029323
+GGDEF family protein	9.0389e-05	0.0361098
+hypothetical protein	0.000193027	5.89754e-05
+UniRef50_W6S1I7	0.00024506	0.000448693
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.08767e-05	3.40198e-06
+5 carboxymethyl 2 hydroxymuconate isomerase	0.00156268	0.000151153
+TraC	0.0247499	0.00475142
+UniRef50_B9KUI7	0.000461025	0.000440122
+hypoxanthine oxidase, partial	0.000597446	7.11488e-05
+translation initiation factor IF 2	3.77524e-06	8.38173e-06
+Osmotically inducible protein Y	0.00129305	0.00063435
+Lipid II	0.0184125	0.00229614
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00365566	0.00417915
+hypothetical protein, partial	3.75286e-05	1.37216e-05
+Formate hydrogenlyase subunit 7	0.00566401	0.000719875
+Probable ATP dependent helicase lhr	0.000806508	0.000132443
+DnaJ subfamily B member 5	2.40235e-05	1.58522e-05
+DEAD DEAH box helicase domain protein	0.00764837	0.000609654
+PREDICTED	4.92936e-05	0.00033161
+hypothetical protein, partial	0.000586005	3.51223e-05
+Transcriptional regulator, AraC family	0.000122828	0.00262294
+UniRef50_J1JW34	3.1343e-06	2.91312e-06
+transcriptional regulator	5.65707e-05	7.68808e-06
+Hypothetical BRO family protein	6.06136e-05	9.89462e-06
+Adenylate kinase	7.68509e-06	6.56387e-06
+UniRef50_F0XZ32	0.000387019	0.000272377
+UniRef50_M5S0G6	4.18154e-06	0.000235307
+ATP dependent DNA helicase RecG	0.00298721	0.000366584
+Extracellular solute binding protein, family 1	0.0120021	0.0020498
+Flavodoxin nitric oxide synthase	0.000226592	0.000767069
+Glucitol sorbitol specific phosphotransferase enzyme IIA component	0.000574106	0.000151991
+Homoserine dehydrogenase	4.19304e-06	0.00257664
+Formate transporter	0.00252777	0.000324122
+UniRef50_I0C2Q1	0.00727924	0.00131638
+cell division protein FtsZ	1.02723e-05	3.20591e-06
+Inner membrane protein YohC	0.000868016	0.000153478
+hypothetical protein	8.24638e-05	1.27544e-05
+CzcI	0.000254961	0.00572073
+UniRef50_P0AA97	0.00323863	0.00039381
+UniRef50_P0AA96	0.00682732	0.000245995
+UniRef50_M9LX88	2.42391e-06	3.17796e-06
+UniRef50_P0AA92	0.00383052	0.00113654
+Cytidylate kinase	0.02228	0.00815187
+Acetyltransferase, GNAT family	0.00242119	0.000346252
+Glycine betaine L proline ABC transporter, ATPase subunit	0.00784423	0.000601379
+molybdenum ABC transporter permease	3.05925e-05	9.82525e-06
+Alanine  tRNA ligase	0.000999268	0.000229043
+alkaline phosphatase	5.01908e-05	6.41506e-06
+Endonuclease III	6.24775e-06	1.41435e-05
+Bifunctional adenosylcobalamin biosynthesis protein CobP	0.000145263	7.16394e-05
+Homoserine O acetyltransferase	0.000829498	0.00103128
+UniRef50_UPI0003C1A8F4	2.7576e-05	1.43813e-05
+Nitrate nitrite sensor protein NarX	0.002815	0.000420752
+Transcriptional regulator, LysR family	0.0004707	0.000101452
+Predicted transport protein, ATPase and permease component	0.000527739	0.000302955
+SerB Phosphoserine phosphatase	0.00371996	0.00270901
+hypothetical protein	0.000316857	6.57845e-05
+UniRef50_C6SSA3	0.00228704	0.00166543
+UniRef50_V5VG42	0.000135923	0.00275207
+hypothetical protein	0.000187184	4.88059e-05
+UniRef50_C3KCK1	0.00161752	0.000564685
+ATP GTP binding protein	0.00010097	0.000156575
+LytTr DNA binding domain protein	0.00260996	0.00106249
+DNA primase DnaG	0.00335337	0.000462934
+Diguanylate cyclase YdeH	0.000339728	0.000292031
+Crp Fnr family transcriptional regulator 	0.000624411	0.000339688
+UniRef50_V6V4N6	0.000231329	0.000103918
+UniRef50_E5U2A7	0.000250676	1.7541e-05
+RNA directed DNA polymerase	0.000505862	0.000373987
+tRNA dihydrouridine synthase A	0.00393547	0.00055118
+Formamidopyrimidine DNA glycosylase	8.57286e-06	0.000771481
+hypothetical protein	1.32214e-05	0.000152819
+GntR family transcriptional regulator	2.80948e-05	2.94965e-05
+Imidazole glycerol phosphate synthase subunit hisF	0.0210299	0.000488468
+Mg dependent DNase, TatD	0.000744823	0.000485985
+UniRef50_A0YFJ4	1.31569e-05	1.41075e-05
+UniRef50_J9GKH0	2.88275e-05	0.00045576
+Isopentenyl diphosphate Delta isomerase	4.65126e-05	7.8779e-06
+hypothetical protein	0.000237881	0.000140179
+hypothetical protein	0.000260324	3.72613e-05
+UniRef50_W4LMW8	6.36143e-06	8.17656e-06
+hypothetical protein	1.66728e-05	0.000109616
+UniRef50_UPI00042CD0F4	2.8155e-05	2.92466e-05
+Sucrose 6 phosphate hydrolase	0.000157752	0.000771654
+hypothetical protein SMAC_10228, partial	0.000384152	0.000222226
+UniRef50_A0A038G2P2	0.000316159	8.95768e-05
+hypothetical protein	5.30225e-06	1.45837e-05
+Urease subunit alpha	5.93052e-06	1.44576e-05
+Phosphoribosyl 1,2 cyclic phosphodiesterase	0.00494914	0.000356289
+CagY protein	3.55012e-05	0.00114348
+UniRef50_B1X1Y0	1.69045e-05	0.000369118
+Phenylalanine  tRNA ligase beta subunit	0.000300954	0.00449753
+hypothetical protein, partial	0.000207971	3.93404e-05
+Expressed protein 	0.000191456	0.000197049
+Predicted protein	1.62674e-05	8.85908e-06
+UDP pyrophosphate synthase	6.0446e-06	6.77574e-06
+Fructose 1,6 bisphosphatase class 1	0.00150277	0.00726045
+hypothetical protein	5.45255e-06	8.22902e-06
+chemotaxis protein CheY	0.000141491	3.12151e-05
+UniRef50_P77536	0.0028758	0.0002593
+Xanthine uracil vitamin C permease	0.000450712	0.000383034
+2,5 diketo D gluconic acid reductase A	2.55695e-05	1.15792e-05
+DJ 1 PfpI family protein	0.000178698	0.00204854
+Flagellar hook associated protein FlgL	0.000137809	0.00174847
+ATP dependent DNA helicase DinG	0.000885652	0.000144454
+glycosyl transferase	4.47105e-05	4.68176e-06
+Lactaldehyde dehydrogenase CofA	0.00381008	0.000477848
+DNA directed RNA polymerase subunit A	0.00255695	0.000970717
+ATP synthase gamma chain	0.000301249	0.000768737
+hypothetical protein, partial	0.000430139	2.0757e-05
+hypothetical protein	2.21055e-05	1.48087e-05
+Amidohydrolase	0.000100965	0.00103212
+UniRef50_B2JFL4	1.61909e-05	0.000629804
+UniRef50_H8FVE2	0.000146708	4.59451e-05
+UniRef50_A9MKD9	0.000104926	0.00172663
+hypothetical protein	1.05511e-05	5.06392e-05
+Inner membrane protein YbbJ	0.00357921	0.00106266
+UniRef50_U6L2Z7	9.47081e-06	1.78686e-06
+hypothetical protein	2.2927e-05	6.5864e-06
+Thymidylate synthase	2.05253e-05	0.000216579
+Aspartate  tRNA ligase	0.000188917	0.00444144
+Transposase	0.00137941	0.000211757
+HlyD family secretion protein	0.000487276	0.000104889
+hypothetical protein	0.000362087	2.67598e-05
+hypothetical protein	3.66908e-05	6.20663e-05
+Beta lactamase domain protein	3.31711e-06	5.20253e-05
+sodium	0.000770048	0.000306025
+DGPFAETKE family protein	7.1753e-05	2.62199e-05
+UniRef50_D8S962	1.38039e-05	1.98231e-06
+UniRef50_D0KZ58	0.000148337	3.79099e-05
+Chemotactic signal response protein CheL	3.83228e-05	1.08048e-05
+Probable protein kinase UbiB	0.000254044	0.00146413
+UniRef50_Q8FJC0	0.00321551	0.000669828
+DNA gyrase subunit B	1.58728e-05	1.19761e-05
+Two component transcriptional regulator, winged helix family	0.00146207	0.00014229
+hypothetical protein	4.67144e-05	2.02708e-05
+UniRef50_Q49VN6	0.00277513	0.000319519
+Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein	0.000583961	0.000305116
+UniRef50_D8JMP7	0.000340063	0.00338826
+Adenine phosphoribosyltransferase	3.13385e-05	2.05124e-05
+UniRef50_Q79BD2	0.00022648	0.000142954
+tRNA dihydrouridine synthase	0.00553981	0.00441368
+UniRef50_Q49VN9	3.94423e-05	4.0737e-05
+hypothetical protein	7.79821e-05	1.55636e-05
+Non canonical purine NTP pyrophosphatase	9.37226e-06	1.78218e-05
+UniRef50_S2XCJ5	1.61916e-05	7.00071e-06
+Uracil phosphoribosyltransferase	0.00132897	0.000484717
+hypothetical protein	4.61606e-06	1.6451e-06
+UniRef50_C6SR38	0.0056555	0.000893941
+PTS system, fructose subfamily, IIC subunit	0.000148355	0.000232374
+Acyl carrier protein	3.17789e-05	0.000187051
+Methyl accepting chemotaxis sensory transducer	0.000119204	0.000345696
+Winged helix turn helix	2.14307e-05	0.00125975
+Transcriptional regulatory protein	0.000150022	0.00109131
+Inosine 5 monophosphate dehydrogenase	2.84735e-05	9.29601e-06
+UniRef50_B9Y1T7	3.83022e-05	0.00208907
+Mobilization protein	0.0880532	0.0095348
+Phosphonates import ATP binding protein PhnC	0.0209712	0.00212197
+Group A colicins tolerance protein	8.54184e-05	0.00285088
+Thiamine transport system permease protein ThiP	0.00123031	0.000292464
+Soluble lytic murein transglycosylase, putative	5.84286e-05	0.00108359
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000232714	0.00341081
+hypothetical protein PUNSTDRAFT_135060	4.07573e-05	1.82378e-05
+Putative 3 methyladenine DNA glycosylase	0.0123337	0.00227584
+UniRef50_F0Y296	0.000206145	0.000145318
+UniRef50_F2F9R8	8.54288e-06	0.000574178
+Shikimate dehydrogenase	0.00536355	0.000965785
+UniRef50_T2H9Z7	0.000434256	8.27717e-06
+hypothetical protein	1.99077e-06	3.00334e-06
+Chaperone protein DnaJ	0.000267558	0.00605022
+hypothetical protein	5.83334e-05	7.71139e-05
+UniRef50_Q321Q6	0.00159284	0.000623506
+UniRef50_K6QCW0	1.09131e-06	7.79203e-06
+UniRef50_U5MWF2	0.00012684	0.000482421
+hypothetical protein	4.68208e-06	0.000168183
+hypothetical protein	2.61128e-05	2.61688e-05
+UniRef50_J3N3W4	3.48653e-05	1.21432e-05
+ATP dependent DNA helicase	2.94981e-06	1.02575e-06
+DNA polymerase I	1.40452e-06	3.11839e-05
+X Pro dipeptidase	2.87131e-05	7.48504e-05
+Thymidylate synthase	0.000131636	0.00032702
+UniRef50_I1EHP5	7.04025e-05	1.87934e-05
+Succinate dehydrogenase flavoprotein subunit	0.000160439	5.68944e-05
+UniRef50_D6SC84	4.31169e-05	2.75479e-05
+FAD dependent oxidoreductase	2.64299e-06	1.17577e-06
+4 hydroxy tetrahydrodipicolinate synthase	5.32956e-06	9.13959e-06
+Hydrolase	0.0109585	0.00248796
+Heavy metal transport detoxification protein	0.000459047	0.000454065
+peptidase C39, partial	5.44989e-06	3.44165e-06
+Putative outer membrane protein	0.0152394	0.000540638
+UniRef50_Q9RY14	0.000177786	0.032468
+Sulfatase	0.00473316	0.000863745
+UniRef50_Q9RY17	0.000329855	0.0119803
+UniRef50_Q9RY11	0.000122626	0.0280233
+UniRef50_Q9RY12	0.000316503	0.0313978
+ABC transporter ATP binding protein, partial	2.05514e-05	6.49871e-06
+hypothetical protein	3.18036e-05	1.63055e-05
+histidinol phosphate aminotransferase	2.49431e-05	2.28872e-05
+Putative inner membrane protein	9.16614e-05	0.000333443
+ABC type Fe3+ siderophore transport system, permease component	0.000110344	0.000321735
+UniRef50_H7BW27	0.000144563	1.1369e-05
+hypothetical protein	0.000248884	9.00956e-05
+UniRef50_K3QZQ8	4.71444e-05	3.67333e-05
+H repeat associated protein YhhI	0.0101037	0.00190462
+hypothetical protein	1.08087e-05	4.89006e-06
+Binding protein dependent transport systems inner membrane component	0.000130953	0.000150142
+UniRef50_U1RDC8	5.59638e-06	1.74939e-05
+Phospho N acetylmuramoyl pentapeptide transferase	0.000112396	0.000664498
+Polyferredoxin, iron sulfur binding	0.00237072	0.000119395
+DNA repair protein RecN	2.64561e-06	6.29305e-06
+Signal recognition particle protein	7.63149e-05	0.00226076
+UniRef50_L0M8C5	2.18313e-06	6.41173e-06
+Shikimate kinase	3.96764e-05	1.05341e-05
+Amino acid permease AapA	0.00203871	0.0223094
+DNA directed RNA polymerase subunit beta	4.9114e-06	1.01384e-06
+hypothetical protein	5.8579e-06	1.149e-05
+Binding protein dependent transport systems inner membrane component	0.00284714	0.000114668
+UniRef50_A8HWS0	0.000201124	2.15138e-05
+Lipoprotein	1.10335e-05	5.03275e-06
+Phosphomannomutase	0.000558643	7.45585e-06
+Binding  dependent transport system inner membrane component family protein	9.13706e-05	0.000907833
+Nitrate nitrite response regulator protein narL	0.00138051	0.000637046
+UniRef50_A5UJK6	0.000272979	0.000499419
+UniRef50_A5UJK7	0.00583573	0.000680188
+FAD binding domain protein	0.000943454	0.00109443
+hypothetical protein	2.42776e-05	1.94977e-05
+Tyrosine  tRNA ligase	0.000262446	0.0250866
+Membrane protein, putative	0.0161626	0.00249418
+Glutamate  tRNA ligase	7.13027e-05	0.00298312
+Short chain isoprenyl diphosphate synthase	0.00195223	0.00131469
+SAM dependent methyltransferase	6.42935e-05	8.28391e-05
+Glycosyl hydrolase family 3, C terminal domain protein	4.49931e-05	9.16471e-05
+NADH	0.0229217	0.0020258
+Ureidoglycolate lyase	0.000758455	0.000623506
+RpoD subfamily RNA polymerase sigma 70 subunit	2.66827e-06	4.27949e-06
+PREDICTED	3.07313e-06	4.46956e-05
+Transcriptional regulator	0.0120832	0.00185857
+UniRef50_M9VCG5	0.000350571	0.00667548
+peptidase M20	4.80309e-06	9.75102e-06
+UniRef50_D4HCS1	0.000263871	0.000990719
+Putative heme dependent peroxidase SERP0235	0.018432	0.00519997
+hypothetical protein	6.2151e-06	4.90021e-06
+Glycosyltransferase alg8	0.000668758	0.000310046
+Precorrin 2 C20 methyltransferase	0.00425268	0.000697726
+ABC transporter related protein	0.000386023	0.000438747
+Aminopeptidase N 	0.000380842	0.00451204
+UniRef50_R1EVW7	0.000145578	2.25811e-05
+DegV domain containing protein SpyM3_1667	0.00931571	0.000627501
+Glycerol kinase	0.000131133	0.00413531
+PREDICTED	5.34587e-06	1.01695e-05
+Transcriptional regulator, XRE family	0.00115444	0.000249402
+PREDICTED	4.16533e-06	7.37793e-06
+Siroheme synthase	3.91545e-05	6.9893e-06
+Site determining protein	0.000581848	0.000749951
+Uridylate kinase	1.51799e-05	8.20065e-06
+chemotaxis protein CheD	0.000180774	1.46552e-05
+leucyl phenylalanyl tRNA  protein transferase	6.58172e-06	8.3766e-06
+UniRef50_A0A031GMI8	4.20375e-05	0.00010044
+hypothetical protein	5.60674e-06	5.99092e-06
+UniRef50_I1XZ29	0.000223868	0.00132706
+UniRef50_A6LYW5	0.000469137	0.000171019
+Pseudouridine synthase	0.00256365	8.4305e-05
+UniRef50_G4LRU0	0.000395243	0.00038528
+ComEC Rec2 like protein	3.18238e-05	9.20833e-05
+UniRef50_R6XPK5	2.43703e-05	0.000366355
+Beta and gamma crystallin	0.000306091	0.000217784
+cell division protein FtsZ	2.81028e-06	7.37052e-06
+Metal ABC transporter substrate binding lipoprotein	0.000109269	9.9761e-05
+hypothetical protein	0.000341259	0.00013238
+glycosyl transferase	6.63203e-05	2.66737e-05
+hypothetical protein	3.84855e-06	5.37156e-05
+hypothetical protein	6.74323e-05	5.78434e-06
+PREDICTED	1.57839e-05	1.39202e-05
+Molybdopterin oxidoreductase	9.04297e-05	0.00421651
+Endonuclease MutS2	8.4716e-05	0.00069654
+ABC transporter related protein	3.19555e-06	2.53252e-06
+Probable dual specificity RNA methyltransferase RlmN	1.7259e-05	2.25791e-05
+Divalent metal cation transporter MntH	0.00223534	0.0221257
+UniRef50_Q48C82	0.00530819	0.000252657
+Acyl carrier protein phosphodiesterase	0.00171483	0.0015403
+hypothetical protein	5.39704e-06	3.05751e-06
+UniRef50_A0A059IQC1	4.5488e-06	8.83176e-05
+hypothetical protein	0.00032609	8.37685e-05
+UniRef50_C6SKJ8	0.000263452	0.00326791
+molecular chaperone GroES, partial	8.00299e-06	7.15266e-05
+ribonucleoside diphosphate reductase	6.33976e-06	1.80311e-05
+Beta glucosidase 42	2.72028e-06	3.58471e-06
+PREDICTED	9.45961e-06	7.30087e-05
+Bifunctional purine biosynthesis protein PurH	2.57337e-06	2.66912e-05
+hypothetical protein	0.00011205	3.49004e-05
+Rhodanese like protein	3.33865e-05	3.74277e-05
+PurB	0.00333781	0.000574581
+Probable tRNA sulfurtransferase	0.0147096	0.00276103
+hypothetical protein	7.04876e-05	4.28219e-05
+UniRef50_J9NS14	0.000328969	0.00015042
+PREDICTED	1.43943e-05	7.2853e-05
+Transposase	5.30861e-05	3.9069e-06
+Mitochondrial tRNA specific 2 thiouridylase 1	2.80894e-06	3.06671e-06
+Anhydro N acetylmuramic acid kinase	0.000202281	0.00234268
+Ribosomal RNA small subunit methyltransferase A	0.0003134	0.000312322
+UniRef50_B9KU25	0.00379484	0.000767392
+Sun protein, putative	9.97674e-05	0.00209622
+UniRef50_B9KJR9	0.00642199	0.00118554
+Kef type K+ transport systems, predicted NAD binding component	0.000295288	0.00272542
+histidine kinase	1.86105e-06	1.29505e-05
+DNase	0.00183362	0.00253711
+tRNA specific adenosine deaminase	1.03247e-05	2.54362e-05
+ATP dependent Clp protease ATP binding subunit ClpA	0.000358922	0.00077582
+Putative cyclic di GMP phosphodiesterase AdrB	0.00209566	0.000298345
+GNAT family acetyltransferase	0.0442123	0.000852547
+UniRef50_U5NRK2	0.00902401	0.000241357
+NADH pyrophosphatase	0.0030859	0.000628412
+DNA polymerase III, subunits gamma and tau	0.000395006	0.00113093
+hypothetical protein	5.69393e-05	1.50445e-05
+hypothetical protein	4.86699e-05	1.81818e-05
+Putative type II secretion system protein M	0.000438976	0.000205457
+Multi sensor signal transduction histidine kinase	0.000187228	0.000587935
+Prolipoprotein diacylglyceryl transferase	0.00944796	0.00257197
+Chorismate synthase	2.54451e-05	9.63979e-05
+Phosphoheptose isomerase	8.14929e-06	5.13551e-06
+Arsenate reductase related protein	0.000328842	5.76632e-05
+Periplasmic protein	0.000144029	0.000398657
+hypothetical protein	7.40541e-06	4.65512e-06
+hypothetical protein	2.05022e-06	9.03545e-06
+1,4 alpha glucan branching enzyme GlgB	5.50194e-05	0.00229614
+UniRef50_G4B6N4	3.03878e-05	0.000335018
+ribose ABC transporter permease	0.000137674	2.48152e-05
+Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00331485	0.00305451
+Branched chain amino acid ABC transporter, permease protein, putative	0.00384167	0.000636282
+UniRef50_V5ZX98	4.41893e-05	1.41677e-05
+RND transporter, HAE1 family	0.000199021	0.00122144
+16S rRNA methyltransferase	1.25464e-05	6.81945e-06
+ABC transporter	6.32353e-06	1.80952e-05
+Tryptophan  tRNA ligase	0.000115256	0.0015767
+Malate dehydrogenase	1.78895e-05	0.000839393
+LuxR family transcriptional regulator	1.39416e-05	5.44426e-05
+tRNA modification GTPase MnmE	0.0111591	0.00151416
+UDP glucose 4 epimerase homolog	0.00186394	0.000196477
+Allantoinase	8.2301e-06	0.013617
+multidrug ABC transporter ATP binding protein	6.47103e-06	1.60054e-06
+Lactose permease	0.00105708	0.000433139
+Short chain dehydrogenase reductase SDR	0.0113133	0.001895
+UniRef50_I5C147	0.000212928	1.41741e-05
+UPF0246 protein BP2452	4.59137e-06	1.01468e-05
+UniRef50_M3Z864	6.41834e-05	0.000124523
+hypothetical protein	3.53196e-06	1.57596e-06
+DNA translocase FtsK	0.000202268	0.00204259
+Lipoprotein NlpI	0.00360055	0.000642686
+hypothetical protein	0.000993712	2.84273e-05
+hypothetical protein, partial	2.15688e-05	8.7683e-06
+hypothetical protein	7.85954e-05	4.83631e-05
+30S ribosomal protein S19, partial	3.57918e-05	1.5929e-05
+UniRef50_A0A023Y3Z5	0.000135782	2.01349e-05
+MULTISPECIES	8.45409e-05	7.4848e-06
+hypothetical protein	0.000440645	0.00994907
+hypothetical protein	0.000536716	8.13447e-06
+UniRef50_K4A616	4.97798e-06	2.56704e-06
+glutamyl tRNA synthetase	9.7446e-06	5.13416e-06
+Divalent metal cation transporter MntH	0.0197119	0.00231597
+Dual specificity phosphatase, catalytic domain protein	6.87572e-06	1.03835e-05
+Inner membrane transporter YgjI	0.0010389	7.03092e-05
+Indole 3 glycerol phosphate synthase	8.20013e-06	7.09503e-06
+Xylulokinase	0.000243318	0.00119785
+Tripartite ATP independent periplasmic transporter, DctQ component	0.00926093	0.000197764
+Phosphate import ATP binding protein PstB	5.48859e-06	4.13957e-06
+Marine sediment metagenome DNA, contig	4.78465e-05	0.000200345
+protein narU, partial	0.000111639	3.24753e-05
+Isoprenyl transferase	0.010783	0.00232503
+Ferrochelatase	0.00010398	0.00423295
+UniRef50_F4D5J0	0.000354748	0.0014618
+acetylglutamate kinase	2.20477e-05	9.03926e-06
+UniRef50_U2ZS91	8.11987e-05	2.36463e-05
+Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.00469696	0.000587466
+Short chain dehydrogenase reductase SDR	0.000597476	0.00280566
+hypothetical protein	4.81841e-05	4.09536e-05
+UniRef50_Q5HKK3	0.00104441	0.00111865
+pilus assembly protein CpaF	1.79443e-05	5.52904e-06
+UniRef50_UPI0003C1219C	6.15643e-05	6.78564e-06
+Oxidoreductase	0.00551778	0.0019369
+Iron regulated surface determinant protein A	0.00773203	0.00141525
+Glycerol 3 phosphate dehydrogenase [NAD+]	0.00246166	0.000552747
+hypothetical protein	5.9155e-06	4.90173e-06
+hypothetical protein	1.16255e-05	5.56886e-05
+hypothetical protein	0.00151094	9.82346e-05
+Tat  pathway signal sequence	1.47792e-05	1.78318e-06
+dGTPase	3.96552e-05	7.26542e-05
+UniRef50_W5B0U3	0.000250874	0.000115761
+UniRef50_P37342	0.00594777	0.000313032
+UniRef50_S6AVL7	1.31502e-05	0.000160971
+MULTISPECIES	3.86317e-05	1.39325e-05
+FoF1 ATP synthase, subunit I	3.41365e-05	3.02419e-05
+UniRef50_L7WPL2	0.0218547	0.00204815
+Transferrin receptor	0.0212081	0.00128658
+UPF0398 protein spr0331	0.00563886	0.00165191
+Two component sensor 	1.81166e-05	3.48516e-06
+Phosphomethylpyrimidine kinase	0.000135888	0.00359923
+Phosphoenolpyruvate protein phosphotransferase	0.0197747	0.00656307
+pseudouridine synthase	7.80659e-06	1.10143e-05
+UniRef50_M3BD66	0.000132848	2.71277e-05
+Peptidase M23B	0.000562582	6.24373e-05
+UniRef50_Q6FA84	0.000918863	0.00106055
+UniRef50_Q3D4U8	0.000402919	0.000151764
+hypothetical protein	0.000194725	4.45444e-05
+Ferripyochelin binding protein	3.61846e-05	1.36032e-05
+2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase	2.00356e-05	2.94699e-06
+Zinc import ATP binding protein ZnuC	1.68977e-05	4.35676e-06
+Cysteine  tRNA ligase	2.50394e-06	5.01156e-06
+UniRef50_Q8DVX1	0.00211573	0.000302858
+Trp repressor binding protein	0.00439128	0.00173976
+UniRef50_I5C5U6	2.09953e-05	2.26995e-05
+UniRef50_A4WUQ1	6.51979e-05	0.000146229
+UniRef50_P37691	0.00170708	0.000355343
+Processive diacylglycerol glucosyltransferase UgtP	9.30549e-05	0.000429378
+Nitrate reductase beta subunit 	3.34411e-05	2.88833e-05
+ malyl CoA thiolesterase	0.000162077	5.17476e-05
+Periplasmic dipeptide transport substrate binding protein	6.88238e-05	0.00194924
+Ornithine carbamoyltransferase 1, catabolic	0.00818452	0.00147563
+UniRef50_E4BBW7	0.000438976	0.000451948
+MvhA	0.00221186	0.000528027
+UniRef50_A0A058Z3Q5	4.38044e-06	1.85485e-06
+Phosphonate ABC transporter permease protein phnE1	0.0161133	0.00301402
+Methyl accepting chemotaxis sensory transducer	0.000157971	0.00056837
+polynucleotide phosphorylase polyadenylase	2.04859e-06	3.897e-06
+HD domain protein	8.76051e-06	2.39104e-05
+Phosphopantetheine adenylyltransferase	6.13637e-05	6.9241e-06
+Regulator of RpoS	0.00189901	0.000290142
+DAACS family dicarboxylate amino acid	0.0102	0.00188431
+DNA mismatch repair protein Vsr	5.23062e-05	8.77808e-06
+Arsenate reductase	0.000287648	0.00448269
+UniRef50_A6DYW3	6.09286e-05	5.93295e-05
+Conserved protein	0.000134825	0.00270161
+Predicted transcriptional regulator	0.00209344	0.000241359
+hypothetical protein	4.67999e-06	4.74356e-06
+Lipid A export ATP binding permease protein MsbA	2.53405e-06	6.64944e-06
+UniRef50_A4VGV6	5.49537e-05	4.80147e-05
+hypothetical protein	4.02489e-06	3.1981e-06
+Fibrinogen binding family protein	0.00439492	0.00100282
+RNA pyrophosphohydrolase	0.00161357	0.000184363
+UniRef50_Q3JWW0	6.30476e-06	9.04806e-05
+UniRef50_A4H7G2	1.07872e-05	2.39696e-05
+FrhB	0.00536287	0.000104889
+Chorismate synthase	1.20332e-05	6.97385e-05
+ABC type multidrug transport system ATPase component	0.00402704	0.00104325
+Penicillin binding protein 2	0.000447951	0.00185028
+hypothetical protein	0.000127132	1.38249e-05
+Probable L aspartate dehydrogenase	0.0026333	0.000411729
+Chemotactic signal response protein CheL	0.000300122	7.91957e-05
+Transcriptional regulator	1.0829e-06	2.19025e-06
+Integral membrane protein	8.78717e-05	0.00277413
+Putative extracellular nuclease	7.39453e-06	0.000198583
+UniRef50_L8GHN9	7.74786e-06	1.28259e-05
+hypothetical protein	7.03788e-05	4.75369e-05
+ABC transporter ATP binding protein	1.27613e-06	2.01844e-05
+hypothetical protein	1.39262e-05	1.91565e-05
+ATP dependent Clp protease ATP binding subunit	0.000603926	7.40429e-05
+UniRef50_D5AP52	0.000393206	2.31461e-05
+hypothetical protein, partial	8.60614e-05	1.75294e-05
+Ribosomal RNA small subunit methyltransferase I	0.000833345	0.00386343
+UniRef50_F0XYP3	8.55051e-05	3.05143e-05
+UniRef50_N1UE46	0.000353308	3.90678e-05
+UniRef50_A0A020CJ31	0.00164147	0.000413128
+UniRef50_S4MU14	0.000620554	6.22605e-05
+UniRef50_A5UP58	0.00132684	0.00018942
+RepB plasmid partitioning protein	1.97649e-06	7.7394e-06
+Macrolide ABC transporter ATP binding protein	0.0152272	0.00688724
+MFS transporter	0.000363264	0.000155702
+Nucleoside diphosphate kinase	5.62851e-05	1.0752e-05
+Lysophospholipase	2.84088e-06	2.69694e-05
+Holo [acyl carrier protein] synthase	0.000879972	0.000501591
+UniRef50_F2EXR6	0.000275846	9.0944e-05
+3 hydroxyacyl CoA dehydrogenase	4.25265e-06	7.80174e-06
+Deoxycytidine triphosphate deaminase	0.0032897	0.000638323
+hypothetical protein	8.91383e-05	4.15627e-05
+ATP dependent Clp protease ATP binding subunit ClpE	0.00438906	0.00391272
+hypothetical protein	0.000236547	0.000118474
+Glucose 1 phosphate adenylyltransferase	3.02682e-06	3.39428e-06
+hypothetical protein	1.41579e-05	3.12059e-05
+AraC family transcriptional regulator	6.30292e-05	1.40486e-05
+NADPH dependent FMN reductase	0.000188016	0.00351228
+Tryptophan synthase beta chain	7.71957e-06	3.08258e-06
+Homoserine O acetyltransferase	0.00254358	0.000207846
+Methyl accepting chemotaxis protein	0.000266245	6.38584e-05
+ATPase, partial	5.34024e-06	0.000723131
+TDP glucose 4,6 dehydratase	8.65679e-06	4.11323e-05
+N carbamoylputrescine amidase	1.34469e-05	2.40206e-05
+2 nitropropane dioxygenase NPD	0.00708087	0.00416374
+AqsR	0.000415685	0.00410499
+4 diphosphocytidyl 2 methyl D erithritol synthase, IspD	0.00218429	0.00083037
+hypothetical protein	1.10709e-05	6.66448e-05
+Porphobilinogen deaminase	0.00408715	0.00413705
+DNA polymerase III subunit gamma tau	5.82264e-05	0.00194846
+hypothetical protein	6.36373e-05	2.94166e-05
+UniRef50_A0A031H7A6	0.000123297	2.68421e-05
+Probable transaldolase	0.000120335	0.000150002
+UniRef50_A7FBR2	0.000128946	0.00286298
+UniRef50_L8E566	4.35895e-05	3.4374e-05
+hypothetical protein	2.76733e-05	2.07854e-05
+50S ribosomal protein L17	0.00600517	0.000245314
+KHG KDPG aldolase	0.000365722	0.000945182
+UniRef50_W0YS94	0.000159421	7.14278e-05
+Dihydroorotate dehydrogenase 	1.0546e-05	7.90108e-06
+Succinyl diaminopimelate desuccinylase	2.13832e-06	0.00195355
+hypothetical protein	6.11359e-06	0.000479056
+Ppx GppA phosphatase	6.13245e-06	1.47823e-05
+Peptidase M24	0.000678489	0.000410884
+Ferripyoverdine receptor	0.000158121	0.00128028
+Flagellum specific ATP synthase	0.00118953	0.000182426
+UniRef50_W4TT30	0.000669765	0.0027337
+Surfactin synthetase	0.00858155	0.0020163
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase 2	4.1411e-05	1.95183e-05
+UniRef50_W7NBP5	1.88459e-05	0.000161194
+Glutamate  tRNA ligase	0.000939903	0.00332741
+Glutamine  tRNA ligase	1.7288e-06	0.00642379
+UniRef50_V4R1X6	2.51506e-05	2.24636e-05
+DNA translocase FtsK 1	4.19288e-05	0.00103086
+DNA polymerase III, gamma and tau subunits	0.00528238	0.00414342
+2 isopropylmalate synthase B	4.19197e-06	2.38619e-06
+Phosphoenolpyruvate carboxykinase [ATP]	0.0105563	0.00151804
+Oxygenase subunit protein	0.000126681	0.0027557
+5` nucleotidase family protein	0.000123694	0.0138676
+Ascorbate specific PTS system enzyme IIC	6.78982e-05	0.00336919
+peptide ABC transporter	5.27917e-05	1.94427e-05
+PREDICTED	9.99849e-06	4.8535e-06
+Putative DNA transposase	2.24615e-05	2.21695e-05
+PAAR motif containing protein	7.87555e-05	0.000415835
+Adenine deaminase	7.70074e-06	2.42579e-06
+Calcium transporting ATPase 1	9.55807e-05	0.00116504
+Recombinase A	0.000118399	1.73301e-05
+Expressed protein 	8.49547e-05	3.37521e-05
+hypothetical protein	2.72016e-06	2.68201e-06
+Transcriptional regulator, LysR family	0.000115388	0.0022097
+UniRef50_A8Q1C8	8.03513e-05	1.38918e-05
+Heme lyase subunit CcmF	0.001966	0.000188256
+5 dehydro 4 deoxyglucarate dehydratase	0.0068654	0.00117408
+L lactate dehydrogenase [cytochrome]	0.00247148	0.00133198
+hypothetical protein	1.1848e-06	2.32212e-05
+Anion transporter	0.0187473	0.00189055
+Ribonuclease D	0.00824444	0.000637851
+PREDICTED	2.7973e-06	1.71873e-06
+tRNA specific adenosine deaminase	0.0180559	2.00368e-05
+multidrug transport protein, mfs family	3.4638e-05	0.000320763
+UniRef50_Q9RST5	0.000264305	0.0211807
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1	3.84644e-05	9.28449e-06
+Signal transduction histidine kinase	0.00310191	0.000837325
+Amino acid ABC transporter, amino acid binding protein	0.0205355	0.00347599
+macrolide ABC transporter ATP binding protein	5.96575e-06	0.000144985
+Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein	0.000119371	0.00459574
+Large conductance mechanosensitive channel	0.00327753	0.00209798
+transcriptional repressor NemR	8.37677e-05	6.3368e-06
+Flavoprotein	0.000163696	0.00760433
+UniRef50_A5UKL2	0.00258996	0.00116349
+UniRef50_G8RFW9	0.00614095	0.00302295
+D tyrosyl tRNA deacylase	0.0124275	0.00127796
+rRNA  ) methyltransferase	9.0389e-05	0.000771975
+PREDICTED	9.96536e-06	8.48371e-06
+RlpA like protein	9.95706e-05	0.0029298
+RecB family exonuclease like protein	0.00014896	3.4269e-05
+Glutathione synthetase	3.84904e-06	6.76738e-05
+UniRef50_A5ISW4	0.00192531	4.56124e-05
+Pyruvate formate lyase activating enzyme	0.0062851	0.00137846
+3 phosphoshikimate 1 carboxyvinyltransferase	4.0364e-06	3.27178e-06
+hypothetical protein	1.08318e-05	2.62944e-06
+hypothetical protein	2.23036e-05	2.66592e-06
+hypothetical protein	0.000164617	3.41437e-05
+UniRef50_F0KEU3	0.000257025	0.00262279
+Marine sediment metagenome DNA, contig	1.92656e-05	9.88846e-06
+Cobalamin synthesis protein	4.50548e-06	2.83819e-06
+UniRef50_P76176	0.00468511	0.000787589
+Glutaredoxin, putative	0.00778305	0.000924196
+Cation efflux system protein	0.00345972	0.000665931
+UvrABC system protein C	0.00597288	0.000610729
+hypothetical protein	5.75086e-06	1.59099e-05
+UniRef50_A5UP28	0.00270353	5.08768e-05
+UniRef50_V0RK41	0.000530503	4.6357e-05
+Recombination inhibitory protein MutS2	0.000344435	3.87672e-05
+UniRef50_S5EBY8	0.000157021	0.000184955
+UniRef50_UPI0003C16983	1.06955e-05	1.99883e-05
+Ribosomal protein L11 methyltransferase	5.93984e-05	0.00060841
+hypothetical protein	1.603e-05	8.51241e-06
+hypothetical protein	2.73048e-05	5.67296e-06
+UniRef50_UPI000359481D	7.38177e-05	4.08669e-05
+hypothetical protein	1.53146e-05	1.18243e-05
+Nucleoside diphosphate kinase	1.05175e-05	1.01581e-05
+Cytochrome c type biogenesis protein CcmE	0.0133282	0.000198201
+UniRef50_A0A037VGU7	3.01336e-05	2.00428e-05
+UniRef50_I2DHK5	0.000256176	0.000773809
+DNA ligase	0.000156557	0.00359367
+50S ribosomal protein L25	0.00054941	0.0217572
+Putative ammonium transporter MTH_663	0.00428274	0.000624068
+Glutathione regulated potassium efflux system protein KefC 	3.6049e-05	7.49075e-05
+flagellar hook capping protein	1.35275e-05	1.04595e-05
+Predicted glycosyltransferase, GT2 family	0.00264127	0.000348801
+hypothetical protein	1.10365e-05	3.65362e-06
+Alpha hemolysin	0.00578243	0.000578996
+Secreted protein	1.06539e-05	7.61851e-06
+Thymidylate synthase	3.4368e-05	0.00432086
+Phosphatidate cytidylyltransferase	0.0164687	0.00255879
+Protein YdgH	0.00210201	0.000689581
+PREDICTED	1.75168e-05	1.41001e-05
+Adhesive protein CupB5	0.000429958	0.000129917
+3 beta hydroxysteroid dehydrogenase isomerase	9.93746e-05	0.0038716
+UniRef50_P54453	0.00612417	0.00291289
+Alpha amylase catalytic region	0.000249863	0.00238877
+UniRef50_X7E7E5	4.69392e-06	6.82696e-05
+ATP grasp domain protein	0.000870688	0.00118401
+Radical SAM domain containing protein	0.00179655	0.000253272
+Escherichia coli IMT2125 genomic chromosome, IMT2125	7.30818e-05	8.95365e-05
+ATP utilizing enzyme, PP loop superfamily	0.0019726	0.000488812
+3 oxoadipate CoA transferase alpha subunit LinG	0.000308594	0.00354005
+Probable ribosomal RNA small subunit methyltransferase A	0.00201743	0.0004401
+DNA polymerase IV	3.3141e-06	4.76726e-06
+UniRef50_L7UII0	9.77023e-06	1.99665e-05
+Quaternary amine transporting ATPase	0.00149004	0.000427142
+hypothetical protein	6.30885e-05	3.02277e-05
+Probable nicotinate nucleotide pyrophosphorylase [carboxylating]	0.000123278	0.000980391
+Integrase family protein	0.000596395	0.000161061
+PREDICTED	5.71671e-05	1.67112e-05
+pyridine nucleotide disulfide oxidoreductase	0.000137814	6.26755e-06
+tRNA  ) methyltransferase	0.00174754	0.000122156
+Membrane protein	0.000117748	6.73617e-06
+UniRef50_J1SZC4	0.000129516	3.15661e-05
+Phospholipid glycerol acyltransferase	0.00118742	0.000363501
+Maltose maltodextrin binding protein	0.00405996	0.000758362
+Expressed protein 	0.000160692	9.92983e-05
+TRAP T family transporter, large inner membrane subunit DctM	0.00566088	0.000613245
+Uracil DNA glycosylase	0.00376697	0.00356241
+Bacteriochlorophyll synthase 33 kDa chain	0.00181906	0.000154005
+Preprotein translocase subunit YajC	0.00507624	0.00262751
+UniRef50_Q6FFG0	0.000254631	0.00264182
+hypothetical protein	8.49754e-06	7.48201e-06
+Purine nucleoside phosphorylase	0.00366918	0.000877399
+4 alpha L fucosyltransferase	0.00331006	0.000449493
+UniRef50_Q3B1T5	0.000205401	6.57436e-05
+UniRef50_M9VFM2	0.000192152	0.0026952
+Shikimate kinase	9.7481e-06	1.28394e-05
+UniRef50_A0A037ZNE7	3.30397e-06	1.03806e-06
+UniRef50_W0Z1T3	3.14201e-05	0.000164593
+Glucose 1 phosphate adenylyltransferase	6.73619e-06	9.58788e-06
+Replication protein C	5.98538e-05	1.35946e-05
+Marine sediment metagenome DNA, contig	2.97909e-05	2.25661e-05
+Serine hydroxymethyltransferase 6	3.06816e-06	1.64111e-06
+UniRef50_S4VW07	8.34954e-06	1.47354e-05
+UniRef50_Z0L1U0	0.000104727	3.32811e-05
+ABC superfamily ATP binding cassette transporter, ABC protein	6.82654e-05	0.00169811
+UniRef50_V5CIF7	0.000145903	0.00304703
+hypothetical protein, partial	0.002549	0.000772428
+Outer membrane efflux protein OprC	0.000165234	0.0036023
+UniRef50_R5IJ86	7.01205e-06	3.54921e-05
+hypothetical protein	7.6966e-05	2.22647e-05
+Dihydroorotate dehydrogenase 	0.000110553	0.00120684
+hypothetical protein	2.85441e-06	2.79234e-06
+Chorismate synthase	6.89144e-06	8.58331e-06
+Oxygen regulatory protein NreC	0.0171107	0.00377799
+RNA polymerase factor sigma 54	0.00015624	0.000564648
+MULTISPECIES	4.50016e-06	4.78704e-06
+hypothetical protein	7.28282e-06	1.51358e-05
+ABC type nitrate sulfonate bicarbonate transport systems, periplasmic component	1.02445e-05	1.76091e-05
+Bacteriocin biosynthesis docking scaffold, SagD family domain protein	4.3805e-06	1.2093e-05
+Bacitracin synthetase	0.0042085	0.0011954
+Putative TrmH family tRNA rRNA methyltransferase	0.00642816	0.0013411
+UniRef50_B9E7Z8	6.2019e-06	0.000145696
+Glutamine  tRNA ligase	0.000221559	0.000618623
+Putative transcriptional regulator	7.59118e-06	6.43872e-06
+multidrug ABC transporter ATPase	4.33993e-06	4.82546e-05
+hypothetical protein	3.46888e-06	9.92985e-06
+UniRef50_A4WNG7	0.0012467	0.000170694
+Nicotinate phosphoribosyltransferase	0.000705576	0.000912172
+hypothetical protein	8.05491e-05	0.000114896
+Membrane protein	3.28501e-06	2.18228e-05
+PREDICTED	2.24836e-06	3.59497e-06
+Putative ATPase	3.44928e-06	3.36955e-06
+Cysteine synthase B	0.00313626	0.00207188
+Putative virulence factor 	9.51846e-05	6.94648e-05
+Transposase DDE domain protein	5.17273e-06	2.03636e-05
+Segregation and condensation protein B	0.000103236	9.01454e-05
+CRISPR system Cascade subunit CasC	0.00227871	8.35208e-05
+Patatin like phospholipase family protein	0.000170261	0.00331078
+hypothetical protein	3.45472e-06	0.000115187
+50S ribosomal protein L3 glutamine methyltransferase	0.00304265	0.000469995
+Cell division protein FtsZ	0.00127749	0.00030422
+ABC transporter ATP binding protein	0.0177668	0.00222844
+hypothetical protein	8.32405e-06	1.53725e-05
+UniRef50_A3V315	3.01829e-06	7.51013e-07
+hypothetical protein	0.000338204	3.98844e-05
+Transposase, IS4 family	0.00230504	0.000145875
+UniRef50_S4YCA7	3.55184e-05	2.96395e-06
+Oxidoreductase domain protein	0.0131976	0.00111495
+Amino acid transporter	0.000506972	0.00693517
+hypothetical protein	2.79354e-05	7.35959e-05
+GntR family transcriptional regulator	0.000932553	0.000425146
+Peptide ABC transporter permease	0.00560861	0.000138557
+Exoribonuclease RNase R 	0.000466	0.0001074
+UniRef50_P0A1U3	0.00201677	0.000344494
+UniRef50_P0A1U5	0.00435692	0.000614965
+P type DNA transfer ATPase VirB11	0.000119768	0.000860883
+Leucyl tRNA synthetase	0.00632327	0.000915964
+hypothetical protein	0.000647209	0.000820696
+preprotein translocase subunit TatA	0.000149335	4.9266e-05
+DNA polymerase III subunit delta	0.00549247	0.00288682
+UniRef50_U6LS15	1.87024e-05	1.31222e-05
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000633674	0.0029497
+Nitrate nitrite transporter	0.000349209	0.00251793
+GTPase Obg	5.35043e-06	9.14658e-05
+RNA methyltransferase, TrmH family, group 3	0.000725237	0.000284884
+30S ribosomal protein S4	1.02617e-05	1.82677e-05
+sugar ABC transporter permease, partial	0.000103888	3.93283e-05
+hypothetical protein	8.32612e-06	2.15274e-05
+Peptide methionine sulfoxide reductase MsrA	7.98626e-05	3.75783e-05
+Phosphoglycerate kinase	1.61181e-05	8.89784e-06
+Transaldolase	0.00035537	0.000215871
+Dihydropteroate synthase	0.000144865	0.00349973
+Ribosomal protein alanine acetyltransferase	0.00103025	0.00207406
+Putative formate acetyltransferase 3	0.00103219	4.45361e-05
+Nucleoside diphosphate kinase	5.17595e-05	9.31025e-06
+Type III restriction enzyme, res subunit	4.36698e-05	0.00160666
+UniRef50_F0Y8H7	6.80422e-05	2.90744e-05
+Putrescine binding periplasmic protein	0.000393459	0.000168781
+hypothetical protein	0.000112043	4.70384e-06
+MCPG protein	0.00178744	0.000527895
+Aminoglycoside response regulator	0.0010145	0.000425818
+Transcriptional regulator, ArsR family	0.00884017	0.000507894
+UniRef50_U3T6X9	0.000279166	0.00333867
+Lipoteichoic acid synthase	0.0161126	0.00261473
+auxin binding protein	0.000139925	3.00012e-05
+Dimethylglycine dehydrogenase DmgdH	0.00749907	0.000894368
+Nuclease SbcCD subunit C	0.00775053	0.000914187
+Transcriptional regulator in cluster with Zn dependent hydrolase	0.0231497	0.00155504
+ABC type transport system, involved in lipoprotein release, permease component 	1.1067e-05	2.11316e-05
+Fatty acid desaturase	0.000279104	0.00240906
+IS1272 transposase, putative	0.0203279	0.000855335
+UniRef50_Q8DWA7	0.00478503	0.000637082
+Branched chain amino acid aminotransferase	0.0013414	0.00607514
+UniRef50_T0JJ14	4.41465e-05	5.56849e-05
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase, partial	0.00296413	0.000125852
+UniRef50_J9NXA3	2.88437e-05	7.66726e-06
+Beta lactamase like protein	0.000738178	0.000359819
+Protein MurJ homolog	6.84506e-05	0.00456507
+hypothetical protein	0.000270027	5.34897e-05
+hypothetical protein	0.000149228	0.000251311
+Non canonical purine NTP pyrophosphatase	8.98383e-05	9.35311e-06
+Two component response regulator	0.0031265	0.000433102
+Marine sediment metagenome DNA, contig	5.53538e-05	0.000235566
+50S ribosomal protein L18	0.00186395	0.00106098
+UniRef50_Q8NW76	0.0145545	0.00219865
+sn glycerol 3 phosphate binding periplasmic protein UgpB	0.0100764	0.00259887
+UniRef50_I9IAK6	2.70525e-05	4.89604e-05
+Methyltransferase	0.000154854	0.00432127
+UniRef50_E2BF63	5.99568e-06	2.24893e-05
+acetyltransferase, putative	0.000124737	3.39629e-05
+UniRef50_G4BY47	5.77494e-05	7.03393e-05
+Transcriptional regulator, putative	0.0235072	0.0014056
+UniRef50_A6LU14	0.000116587	0.00135053
+hypothetical protein	3.8928e-06	4.1793e-05
+DNA directed RNA polymerase subunit beta	1.02724e-05	2.34655e-06
+UniRef50_A4WZ35	0.00247597	0.00638787
+UniRef50_L7WUA4	0.0164301	0.000719917
+ISxac3 transposase	0.000110663	0.000102998
+UniRef50_A5EBB8	0.000321255	4.09817e-05
+malto oligosyltrehalose synthase	4.51207e-06	1.60189e-06
+UniRef50_X5WY92	0.00010811	2.82717e-05
+Protein msa	0.00140717	0.000231404
+UniRef50_B9JUA7	0.000112635	1.35501e-05
+UniRef50_Q09DS6	1.8918e-05	1.10477e-05
+Glycerol kinase	1.91181e-05	6.43741e-05
+Flagellar hook protein FlgE	5.63104e-05	0.00271829
+hypothetical protein	5.1272e-06	5.24105e-05
+Carbonic anhydrase	0.00186925	0.000579752
+UniRef50_M4WR94	0.00330796	0.00022788
+S glutathione dehydrogenase	0.0115973	0.00178158
+UniRef50_M4Z4L3	0.000372378	3.95076e-05
+Ribosomal RNA small subunit methyltransferase G	6.95351e-05	2.72555e-05
+UPF0344 protein NWMN_0840	0.0257839	0.000475055
+Lytic transglycosylase catalytic	2.65328e-05	4.48303e-05
+DHC, diheme cytochrome c	0.00814167	0.000242662
+phosphoadenosine phosphosulfate reductase	6.00198e-06	6.33905e-06
+Mannosyl D glycerate transport metabolism system repressor MngR	0.00487936	0.000582711
+sulfate transporter	0.000160916	3.10605e-05
+Sodium symporter family protein	0.000617348	0.000149392
+UniRef50_P77704	0.00307367	0.000741113
+PREDICTED	1.62145e-06	1.59796e-06
+UniRef50_Q9CGB9	0.0046042	0.000670328
+Phosphoribosylformylglycinamidine synthase 2	1.54468e-05	3.04855e-06
+AraC type DNA binding domain containing protein	0.00132212	0.00417779
+Dihydrofolate synthase Folylpolyglutamate synthase	0.0179377	0.00208852
+Tryptophan tyrosine permease family protein	0.00127061	0.000357795
+PREDICTED	5.21722e-06	1.85581e-05
+Translation initiation factor IF 2	3.86986e-05	0.00457176
+UniRef50_UPI0003C10D8C	6.02974e-05	8.26854e-05
+Rh like protein ammonium transporter, partial	0.000245359	0.00015874
+Antibiotic transport associated permease SpaG MutG	0.000474079	0.00130421
+Urease subunit beta	1.60766e-05	1.60975e-05
+isoleucyl tRNA synthase	1.79051e-06	1.54328e-06
+UniRef50_F8J5A0	0.00261358	0.000226164
+Coproporphyrinogen dehydrogenase 	3.98942e-05	2.88358e-05
+ABC transporter	6.86326e-06	6.70893e-06
+ATP dependent DNA helicase Rep	5.61259e-06	4.25976e-06
+PadR family transcriptional regulator	2.00682e-05	1.21561e-05
+Transaldolase	0.000108331	0.00282716
+UbiD family decarboxylase	0.00130335	6.07475e-05
+FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate  pyruvate transaminase multi domain protein	0.000262435	0.00267831
+Pyruvate dehydrogenase E1 component subunit beta	0.0242822	0.00424892
+Endonuclease	0.00297558	0.00148587
+chromosome partitioning protein ParB	2.52903e-05	0.000329263
+PREDICTED	5.23361e-05	3.44473e-05
+hypothetical protein	3.59816e-06	4.96518e-06
+UniRef50_D2ZS12	0.0032509	0.000308834
+Transaminase	0.00510867	0.00107472
+hypothetical protein	2.24185e-05	5.59248e-05
+Phosphoribosylamine  glycine ligase	0.0044465	0.000930338
+UniRef50_Q3IV08	0.013709	0.00254844
+UniRef50_A3PH60	0.00209686	0.000449246
+UniRef50_Q3IV03	0.0142006	0.0014753
+UniRef50_Q3IV02	0.00475099	0.0082217
+3 methyl 2 oxobutanoate hydroxymethyltransferase	4.68645e-05	1.29794e-05
+Glycosyl transferase	0.000199421	0.000109227
+UniRef50_N1M6P3	9.28889e-05	0.00027944
+6 phospho beta glucosidase BglA	0.0121822	0.00611458
+oligo 1,6 glucosidase	1.35969e-05	2.69673e-06
+hypothetical protein	4.86264e-05	0.00022846
+hypothetical protein	0.000227185	1.92713e-05
+Integral membrane sensor signal transduction histidine kinase	0.000316821	0.000336118
+FeS cluster assembly protein SufD	0.00243846	0.000102611
+LexA repressor	1.80836e-05	4.91225e-06
+transcriptional regulator	8.88291e-06	8.38136e-06
+Prostaglandin F synthase	1.84474e-05	0.000792952
+UniRef50_W1N7X0	8.05561e-06	3.56145e-06
+branched chain alpha keto acid dehydrogenase subunit E2, partial	1.11274e-05	9.07259e-05
+fructose bisphosphate aldolase	6.01939e-05	7.98624e-05
+MULTISPECIES	1.42352e-05	8.93697e-06
+UniRef50_E2XTA7	0.000350644	0.000347241
+flagellar protein FlgJ	3.30572e-05	1.7838e-05
+Protein DcrB	0.000913351	0.000174679
+UniRef50_U7G0Z6	1.16208e-05	5.42027e-06
+NADH quinone oxidoreductase subunit A	0.00704148	0.000452888
+PAS PAC sensor signal transduction histidine kinase	0.000417749	0.000152402
+molybdopterin biosynthesis protein MoeB	1.51542e-05	6.63958e-06
+hypothetical protein	5.1545e-06	2.8695e-06
+Lon protease	0.00990274	0.00122582
+Dienelactone hydrolase	3.9556e-05	1.83399e-05
+UniRef50_M2PIC6	6.21248e-05	0.000208373
+16S rRNA methyltransferase	9.37491e-06	8.67217e-06
+UniRef50_A0A031MCT4	3.5695e-05	5.61917e-05
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.26794e-05	7.5143e-06
+UniRef50_C5AMM3	0.000203835	3.3052e-05
+hypothetical protein	0.000158349	1.28362e-05
+UniRef50_P0AAV5	0.00169611	0.000698084
+LysR family transcriptional regulator	1.31001e-05	5.96516e-06
+Multiple antibiotic resistance  related protein	0.00236656	0.000177792
+UniRef50_A5UNV0	0.00256084	0.000914116
+UniRef50_A5UNV7	0.00483927	0.000810149
+UniRef50_A5UNV5	0.00874117	0.000247341
+UniRef50_F0RJD3	9.60652e-05	0.00471477
+UniRef50_A5UNV8	0.00268015	0.000481204
+hypothetical protein, partial	5.14147e-05	2.7001e-05
+hypothetical protein	0.00118716	0.000290523
+UniRef50_UPI0003C02B7D	8.58751e-05	3.70425e-05
+UniRef50_I0C596	0.0180158	0.00276452
+Nitrate nitrite transporter NarU	0.00743054	0.00109711
+UniRef50_R6IJD9	6.60356e-05	0.000121495
+Glucuronide carrier protein	0.00015799	0.00251212
+Acyl homoserine lactone synthase	6.32352e-05	0.000102906
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.17952e-05	2.78011e-05
+cell division protein FtsZ	1.13482e-05	1.14418e-05
+Plasmid pRiA4b ORF 3 family protein	0.000237101	1.54528e-05
+damage inducible protein	2.33336e-05	3.22146e-06
+Beta lactamase	0.0039563	0.0015614
+UniRef50_F8IME6	0.00807562	0.000380618
+Osmosensitive K+ channel histidine kinase KdpD	0.000218593	0.00250594
+UniRef50_C5XM13	0.000668136	0.000203103
+BrkB protein, putative	0.000166774	0.0173748
+UniRef50_A3VLJ6	0.000425447	1.29162e-05
+UniRef50_F3BY18	0.000203558	0.00080887
+UniRef50_A4X0R2	0.000141766	1.0345e-05
+UniRef50_E2RL98	1.31298e-05	2.23736e-05
+UniRef50_D1AC29	5.82507e-06	0.000391864
+hypothetical protein	0.000266277	0.000311902
+Undecaprenyl diphosphatase 1	0.000489556	0.0022201
+hypothetical protein	6.70506e-06	2.10167e-05
+Cytochrome c oxidase subunit 3	4.46501e-05	4.77143e-06
+Putative kinase YjjJ	0.00198877	0.000334441
+Hydrolase, alpha beta domain protein	0.00519742	0.00158626
+hypothetical protein	1.39921e-05	2.49841e-05
+Protein LET 504	1.62008e-05	1.46996e-06
+Agmatine deiminase	0.00044183	0.0195376
+Hha toxicity modulator TomB	0.000542093	0.000279704
+Glutamyl tRNA amidotransferase subunit D	0.00190013	0.000255862
+Two component transcriptional regulator	0.000587707	0.00148358
+UniRef50_E3F3T4	9.5856e-06	6.29606e-06
+Formate acetyltransferase	0.00225414	0.000362004
+multidrug ABC transporter	6.39201e-05	2.86761e-05
+UniRef50_K1Z738	1.81193e-05	0.000137482
+UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.026258	0.00668787
+Acetate kinase	0.000258124	0.00323597
+LexA repressor	2.6546e-05	7.24539e-06
+Flavohemoprotein	0.0175575	0.00396663
+Transcriptional regulator, GntR family	0.0044798	0.00124499
+DNA mismatch repair protein MutS	0.000545196	7.80305e-05
+D ribose transporter ATP binding protein	2.75926e-05	4.8057e-06
+1 deoxy D xylulose 5 phosphate synthase	2.33694e-06	5.17815e-05
+Peptidoglycan glycosyltransferase	0.000114343	0.00232591
+p aminobenzoyl glutamate hydrolase subunit B	0.00163729	0.000454396
+Hydrolase, haloacid dehalogenase like family	0.000345394	0.000828634
+Gene transfer agent protein	0.00380741	0.000374913
+Ribonuclease R 1	4.25114e-05	0.00122603
+Carbamoyl phosphate synthase large chain	1.55365e-05	7.85146e-06
+UniRef50_O33812	0.00850001	0.00195888
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	8.30251e-06	6.31441e-06
+2 dehydro 3 deoxyphosphooctonate aldolase	0.00020274	0.0015817
+hypothetical protein	1.34519e-06	1.821e-06
+Alkaline phosphatase like protein	1.29464e-05	7.33141e-06
+2 hydroxy acid oxidase	2.3053e-06	7.04438e-06
+hypothetical protein	4.38481e-06	0.000237048
+Low affinity putrescine importer PlaP	0.002664	0.00391039
+PREDICTED	2.33641e-05	3.04343e-06
+hypothetical protein	9.97997e-05	5.39195e-05
+UniRef50_S4NIZ2	0.000172224	8.92182e-05
+hypothetical protein	0.000131805	2.34772e-05
+Two component system histidine kinase	0.00508411	0.00127949
+UPF0047 protein yjbQ	1.64973e-05	1.23516e-05
+UniRef50_T2END3	0.00140943	0.000320456
+Ribonuclease 3	1.10566e-05	5.09433e-06
+UniRef50_R4ZTI0	0.000409763	5.24751e-05
+hypothetical protein	0.000945224	0.000441057
+Glyceraldehyde 3 phosphate dehydrogenase, type I	0.000400554	0.00378713
+Ring hydroxylating dioxygenase, alpha subunit	0.00243948	0.000666834
+Methionyl tRNA formyltransferase	0.00127639	9.68885e-06
+phosphoenolpyruvate protein phosphotransferase, partial	3.01814e-06	8.04133e-05
+Respiratory nitrate reductase 1 alpha chain	0.00122743	0.000219133
+Cysteine desulfurase activator complex subunit SufB 	4.80784e-05	6.01863e-05
+tRNA dimethylallyltransferase	4.30368e-06	8.49235e-06
+hypothetical protein	4.8894e-05	6.96131e-06
+Hydrolase, P loop family	0.000167715	0.00132573
+UniRef50_F4ALX4	4.39403e-05	1.10566e-05
+hypothetical protein	7.49942e-05	3.68279e-05
+transcriptional regulator	2.16906e-05	9.48969e-06
+TRAP transporter, 4TM 12TM fusion protein	0.00204972	0.000246922
+Aryl alcohol dehydrogenase )	0.000419435	0.000190438
+UniRef50_R0X4D2	0.000538012	0.000282509
+Putative phosphotransferase enzyme IIA component YadI	0.000230513	0.000204988
+MULTISPECIES	1.61106e-06	1.69057e-05
+UniRef50_Q3J385	0.00181239	0.000158395
+Bifunctional DNA directed RNA polymerase subunit beta beta	2.11468e-06	0.000863316
+Predicted protein	8.0728e-06	3.17406e-05
+UDP N acetylmuramoylalanine  D glutamate ligase	0.00258609	0.000199529
+TonB dependent receptor family protein	0.000170046	0.00152759
+hypothetical protein	1.17987e-06	2.32016e-05
+hypothetical protein	4.02751e-05	3.48391e-05
+UniRef50_I7GUS8	0.000115399	0.00343624
+Metal binding protein	0.000132499	0.00172811
+polyvinylalcohol dehydrogenase, partial	2.99381e-05	0.000750713
+ABC type sugar transport system periplasmic component like protein	8.76429e-05	0.00102088
+thioesterase	1.56333e-05	2.11831e-05
+Polyphosphate kinase 2, putative	0.00595594	0.00100172
+Methionine import ATP binding protein MetN 2	0.01496	0.00308326
+UniRef50_Q6F9B4	0.000157757	0.00253758
+UniRef50_Q8CT75	0.0099233	0.00291636
+Ribosomal RNA small subunit methyltransferase I	2.85081e-05	1.8745e-05
+DNA gyrase subunit B	1.22484e-05	8.30861e-06
+DNA polymerase PolB subunit 2	0.00124069	0.000386887
+UniRef50_UPI0003C19B5B	1.26149e-05	1.03415e-05
+hypothetical protein	1.44581e-06	1.09625e-06
+UniRef50_A0A024EA09	0.000160398	2.12076e-05
+UniRef50_G7LZT7	0.000955588	0.000772799
+Inosine 5 monophosphate dehydrogenase	2.26961e-05	2.38139e-06
+UniRef50_L1K6E3	0.00105175	6.23654e-05
+GroES like protein	4.88367e-06	2.31379e-05
+hypothetical protein	1.29621e-05	7.30978e-06
+M13 family metallopeptidase	5.39053e-05	0.002603
+UniRef50_U7NU39	8.79563e-05	6.17176e-05
+Glutamate  tRNA ligase 1	3.55632e-06	0.00395922
+Methyl accepting chemotaxis protein	0.000386866	0.000762991
+UniRef50_M5RGX7	0.000871842	0.00011795
+glycine betaine ABC transporter permease	4.02377e-05	7.18115e-06
+UniRef50_F0XWS6	9.85704e-06	9.39032e-05
+cytochrome d terminal oxidase subunit 1	8.25021e-06	6.38282e-06
+Cationic amino acid transporter APC superfamily	0.00633485	0.00210723
+Nitrogenase reductase 	0.000455783	2.32736e-05
+Histidine kinase	0.000114863	0.00100396
+alpha amylase	2.35474e-05	8.03163e-06
+ATPase AAA 2	0.000149541	0.0099562
+hypothetical protein	1.69628e-05	3.46471e-05
+Two component transcriptional regulator, winged helix family	0.00566794	0.000444564
+Chromosome partitioning ATPase, putative, ParA family	9.75503e-05	0.00981757
+hypothetical protein	7.37728e-05	1.40272e-05
+Glutamate racemase	0.00162454	0.000422607
+branched chain amino acid ABC transporter substrate binding protein	0.000125591	1.91551e-05
+L galactonate transporter	0.00416649	0.000289012
+UniRef50_Q3JG68	0.00011567	9.46266e-07
+RNA polymerase sigma 54 factor	0.000392113	0.000313615
+UniRef50_F2ZMW7	1.49464e-05	1.18148e-05
+General substrate transporter	0.000116587	0.0015946
+hypothetical protein	3.79498e-06	3.65965e-06
+Tat  pathway signal sequence	0.000128781	0.00253307
+UniRef50_T0T7Z3	0.00362088	0.00101219
+hypothetical protein	2.73292e-06	5.05692e-06
+UniRef50_Q5F507	0.000227398	0.0006062
+hypothetical protein	8.67103e-07	2.99479e-06
+Ribonuclease HII	0.00333045	0.00156711
+Flagellar FlbT family protein	0.0152241	0.000268014
+Putrescine aminotransferase	0.00184798	0.00032517
+Membrane protein, putative	0.000267409	2.07144e-05
+Hydrolase, isochorismatase family	0.000316582	0.00336588
+UniRef50_F8LGD6	0.00660886	0.000911197
+UniRef50_P0AG29	0.000521851	0.00208802
+UniRef50_A3PNN1	0.000409251	0.000153009
+hypothetical protein	6.0507e-07	1.99681e-05
+Flagellar protein FlaF putative	6.72295e-05	3.99145e-05
+UniRef50_A3M4L6	8.9587e-05	0.0042119
+UniRef50_Q3IUZ0	0.0198081	0.00174969
+UniRef50_E6SBU2	1.0312e-05	3.49718e-05
+UniRef50_R7I998	6.09951e-06	8.55717e-06
+PREDICTED	8.98152e-06	6.14124e-05
+Lytic murein transglycosylase B	0.000766726	9.95398e-05
+3 dehydroquinate dehydratase	0.00583528	0.00190156
+Marine sediment metagenome DNA, contig	2.40252e-05	0.000409066
+Protein serine threonine phosphatase	8.36822e-06	4.60005e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	6.49922e-06	6.1512e-06
+hypothetical protein	4.37607e-06	5.30049e-06
+UniRef50_R0FLE9	5.71548e-05	2.0781e-05
+hypothetical protein, partial	3.99854e-05	2.67409e-05
+UniRef50_M9RMU0	8.09192e-05	3.01861e-05
+Ribosomal RNA small subunit methyltransferase G	0.000555069	0.000125049
+PREDICTED	2.00868e-05	3.29713e-05
+Muc1p	1.10457e-06	3.06455e-06
+ABC transporter related	6.76859e-05	3.5677e-05
+Ribosomal RNA large subunit methyltransferase G	0.00364458	0.00049789
+UPF0234 protein lpg1167	1.11362e-05	1.82919e-05
+Ribosomal RNA small subunit methyltransferase I	0.0191362	0.00393392
+ABC transporter, periplasmic substrate binding protein	0.00853285	0.00100078
+UniRef50_Q3JQP4	6.24853e-05	0.000235282
+Potassium transporting ATPase A chain	3.69677e-06	0.00102447
+UniRef50_X1YF14	1.12565e-05	5.16487e-06
+Cvnh domain containing protein	3.81601e-06	3.86427e-06
+General secretory system II protein E domain containing protein	1.64837e-05	8.59768e-05
+Apolipoprotein N acyltransferase	0.000100965	0.0018613
+Arginine permease	0.000161912	0.00198713
+Catalase HPII	0.00159133	0.00021265
+Beta glucanase BglA	0.00019276	0.000685901
+hypothetical protein	8.81941e-06	1.66974e-05
+hypothetical protein	8.66573e-06	3.45815e-06
+O antigen translocase	0.000789975	0.000216801
+Single stranded DNA binding protein	0.00190761	0.000216872
+Sigma54 specific transcriptional regulator, Fis family	0.000167361	0.000630226
+shikimate kinase	1.46779e-05	5.4911e-06
+Enoyl ACP reductase enoyl ACP reductase	2.91683e-06	6.69647e-06
+Predicted oxidoreductase, aldo keto reductase family	0.00287887	0.000538138
+UniRef50_A7ZV86	0.000605939	0.00029494
+UniRef50_V9B8V8	7.57922e-05	5.19916e-06
+Dihydrodipicolinate synthetase	0.000120916	0.00354776
+hypothetical protein	7.40811e-06	4.47019e-05
+hypothetical protein	1.20675e-05	1.72913e-05
+Cadherin like beta sandwich domain protein	1.03966e-06	0.00212396
+hypothetical protein	3.71771e-06	7.16324e-06
+ABC type dipeptide oligopeptide nickel transport system, permease component	0.000207783	0.00108342
+Pyridine nucleotide disulphide oxidoreductase	0.0147667	0.00191341
+UniRef50_U2KRP8	1.73753e-05	1.22777e-05
+Predicted ATPase	0.00341364	0.000101337
+tRNA lysidine synthase	0.00270052	0.000342146
+DNA directed RNA polymerase beta subunit	0.00362174	0.000446409
+Exonuclease SbcCD, D subunit	0.000145692	0.00315311
+Purine nucleoside phosphorylase DeoD type	0.000338249	0.00105495
+UniRef50_C5MYT2	0.0112149	0.00278185
+hypothetical protein	2.58259e-05	3.50365e-05
+Signaling protein	9.68955e-05	0.000316557
+phosphate ABC transporter ATP binding protein	2.99211e-05	1.67708e-05
+Hemagglutinin	6.39421e-05	5.43845e-05
+hypothetical protein PFL1_03954	7.93141e-07	1.02125e-06
+deoxyribonucleotide triphosphate pyrophosphatase	7.39746e-06	7.26048e-06
+UniRef50_V5SVZ8	0.000671682	0.000356378
+Non canonical purine NTP pyrophosphatase	0.00472755	0.000184743
+molecular chaperone DnaK	4.07147e-06	2.11833e-06
+branched chain amino acid ABC transporter substrate binding protein	2.19166e-05	5.95337e-06
+Protein smp	0.0027161	0.000540507
+Adhesin like protein	0.0035514	0.000345245
+oligo 1,6 glucosidase, partial	2.8891e-05	8.14142e-06
+UniRef50_W9EH11	0.00093585	9.38498e-06
+ribonuclease, partial	1.6194e-05	5.35878e-06
+Cassette chromosome recombinase A	0.00933443	0.00123898
+Signal peptidase I	0.00174447	9.62324e-05
+Probable chemoreceptor glutamine deamidase CheD	0.000314471	2.73309e-05
+Rhomboid family protein	0.000242703	0.00018942
+UPF0260 protein Saro_2854	4.28253e-05	0.00222107
+UniRef50_Q3J6E0	0.00205144	0.000282342
+Acetyl CoA acetyltransferase, cytosolic	0.00196293	0.000281132
+Signal recognition particle protein	0.000340721	0.0214305
+Predicted O methyltransferase	0.00246249	0.000320856
+Chemotactic signal response protein CheL	0.000132869	3.98857e-05
+6 phosphogluconolactonase	0.00229045	0.000491079
+Nucleolar protein like protein	0.000174898	7.61298e-05
+UniRef50_K7VJY6	7.85231e-05	3.67452e-06
+Cell division ATP binding protein FtsE	0.0011016	0.00232473
+hypothetical protein	7.04116e-05	8.55705e-05
+hypothetical protein	6.975e-06	8.33229e-06
+Elongation factor P	1.98014e-05	7.64021e-05
+Chaperone protein DnaJ	0.000197138	0.000318139
+40S ribosomal protein S15	5.18105e-05	4.37645e-06
+2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	5.43795e-06	3.57607e-06
+Diguanylate cyclase	0.000150577	0.00338558
+sn glycerol 3 phosphate transport system permease protein UgpA	0.0123071	0.00168282
+Putative sporulation transcription regulator WhiA	0.000349414	0.000907215
+UniRef50_J9P3B1	2.50122e-05	5.29582e-06
+Type VI secretion protein, VC_A0114 family	0.000179598	2.53712e-06
+UniRef50_UPI000329034B	0.000110637	2.27662e-05
+Lactoylglutathione lyase	0.0177102	0.00386901
+Biosynthetic arginine decarboxylase	0.00164101	0.000838991
+HTH type transcriptional regulator CynR	0.00262906	0.000105012
+Acetyltransferase, GNAT family protein	0.0239383	0.000983046
+UniRef50_K3X5U2	0.000239822	0.000227996
+NADPH	1.65815e-05	2.46621e-05
+hypothetical protein	1.84128e-05	6.96146e-05
+ATPase component of ABC transporters with duplicated ATPase domains	0.000225362	0.00187347
+UniRef50_S6AW99	0.000168274	0.000470979
+Homoserine dehydrogenase	0.000981575	0.00444264
+SwissProt accession number P19593 like protein	1.48124e-05	4.36285e-05
+Helix turn helix domain protein	0.0142159	0.00125449
+DNA translocase ftsK	0.000680941	8.93176e-05
+Holliday junction ATP dependent DNA helicase RuvA	0.000794574	0.000882044
+hypothetical protein	0.000829375	0.000117856
+Fe S cluster oxidoreductase	0.00127762	0.00101716
+hypothetical protein	3.48812e-05	6.16087e-05
+Succinyl CoA ligase [ADP forming] subunit beta	0.0252904	0.0079662
+UniRef50_Q8CRS1	0.00137977	0.000352097
+UniRef50_R0DRQ8	3.60435e-05	1.95273e-05
+Phosphopantetheine attachment domain protein	0.000230923	0.00443215
+UniRef50_W5X2Q0	2.89185e-05	2.60883e-05
+Tetracycline transcriptional regulator YcdC domain containing protein	0.012368	0.0016601
+NrdB protein	0.00295715	0.000132509
+TRAP T family transporter, small  inner membrane subunit	0.00669267	0.000388679
+riboflavin biosynthesis protein RibF	9.0623e-06	1.64976e-05
+MULTISPECIES	3.66733e-06	5.53277e-06
+Phosphoserine phosphatase ThrH	0.00113725	0.00394239
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	9.83437e-06	5.75677e-06
+hypothetical protein	7.64902e-05	1.6712e-05
+hypothetical protein	1.97063e-06	1.95878e-06
+Thioesterase superfamily protein	2.51947e-05	0.00084016
+Transglutaminase	0.000257366	0.00315272
+MocR	0.000429347	0.00316495
+CinA related protein	0.00026089	0.00151411
+hypothetical protein, partial	0.000323486	7.30113e-05
+UniRef50_P65809	0.00183707	0.000209286
+3 isopropylmalate dehydrogenase	0.0125671	0.00434678
+glutamate	2.32947e-06	3.29522e-06
+UniRef50_P77148	0.0031023	0.00245568
+UniRef50_J3M3U5	7.25384e-06	5.1984e-06
+hypothetical protein, partial	8.89748e-06	1.43053e-05
+Major facilitator superfamily MFS	0.000320075	0.00292182
+UniRef50_W1MCV7	0.000153163	4.9223e-05
+UniRef50_R4GHX9	2.80535e-05	3.21099e-05
+hypothetical protein	1.83537e-05	6.27406e-06
+Enolase	9.9953e-06	5.32202e-05
+Membrane protein	0.00433607	0.00218006
+Cytochrome c oxidase subunit 1	3.30766e-05	4.42836e-05
+multidrug MFS transporter	5.73697e-06	5.36627e-05
+Choline transporter	0.0227399	0.0035183
+hypothetical protein	2.34148e-06	2.78907e-06
+cytochrome d ubiquinol oxidase subunit 2	7.34618e-06	2.11315e-05
+hydrogenase accessory protein HypB	6.35716e-05	1.20957e-05
+Replication protein C	3.12563e-05	8.24805e-06
+Sulfate binding protein  (SSI2)	0.00243102	0.00711301
+PREDICTED	4.72662e-06	1.32481e-05
+Phage like element PBSX protein XkdC	0.0019773	0.00214079
+Transcription termination factor NusA	0.0105295	0.00211187
+UniRef50_UPI00027F529F	0.000114245	2.06615e-05
+Endodeoxyribonuclease RusA	0.000153675	0.00182804
+UniRef50_E8JNG4	0.000186318	0.000128707
+heme biosynthesis protein HemY	1.02634e-05	7.48481e-06
+Lysophospholipase	0.000218569	0.003641
+Pilus assembly protein, PilQ	0.000645884	0.000594602
+NAD utilizing dehydrogenase	0.000639872	0.00125206
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00082085	0.00176049
+Hydroxymethylpyrimidine ABC transporter, transmembrane component	0.00914474	0.000244653
+Putative 3 methyladenine DNA glycosylase	3.02363e-05	0.00218123
+Phosphoribosylaminoimidazole succinocarboxamide synthase 	0.000297025	5.81494e-05
+Fructose bisphosphate aldolase	0.0213425	0.00628325
+ATP dependent 6 phosphofructokinase	2.07708e-05	4.09462e-06
+UniRef50_G8VQK9	0.000113571	0.00412587
+ATP phosphoribosyltransferase	0.000157757	0.0021005
+UPF0033 protein YeeD	0.00296029	0.000798088
+UniRef50_F2A7T6	0.00176127	0.000225025
+Na H(+) antiporter NhaA	0.0004186	0.00391065
+GumN family protein	4.6712e-05	1.30077e-05
+Acetylglutamate kinase	0.00267737	0.000691519
+Ribosomal RNA large subunit methyltransferase E	7.5911e-05	2.76702e-05
+Oligopeptide transport ATP binding protein OppD	0.0197516	0.00494135
+Ppx GppA phosphatase	5.82907e-06	5.01452e-06
+Formimidoylglutamase	0.0103274	0.00134363
+PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase	0.00074868	0.000761096
+UniRef50_Q6FBR2	0.000200923	0.00382697
+glycine betaine ABC transporter ATP binding protein	4.68647e-05	4.65485e-06
+peptide ABC transporter	7.48967e-05	6.34346e-06
+hypothetical protein	3.72532e-06	1.28964e-06
+Malonyl [acyl carrier protein] O methyltransferase	0.00218866	0.000453086
+hypothetical protein	1.16685e-05	3.94358e-06
+hypothetical protein	0.00011048	1.35959e-05
+UniRef50_F9YZ80	8.73518e-05	0.00446152
+Ferrochelatase	4.08921e-06	1.51863e-05
+PE PGRS family protein	0.000133456	0.000217193
+Transcription activator of glutamate synthase operon GltC	0.000112183	0.00428126
+Arginine agmatine antiporter	0.00228725	0.000466321
+UniRef50_Z5XA58	2.28734e-05	4.9305e-05
+Xylose ABC transporter, permease protein	0.00286766	0.000529423
+Betaine aldehyde dehydrogenase	0.0228173	0.00248019
+UniRef50_G2L6P6	0.000244622	0.000188624
+UniRef50_A4XTI2	3.82654e-05	0.000122059
+tRNA N6 adenosine threonylcarbamoyltransferase	1.18582e-05	1.04915e-05
+Protein pucC	0.00210069	0.000488211
+UniRef50_D9S1W5	0.000589461	0.0002694
+ABC type multidrug transport system, ATPase and permease component	0.000140108	0.000124174
+UniRef50_Q54MI4	2.28339e-06	2.53568e-06
+Putative acetyl CoA C acetyltransferase VraB	0.0236298	0.00287395
+UniRef50_V7EMW9	9.63137e-05	3.98552e-05
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.00366118	0.000142765
+VrrA protein product	3.97377e-05	0.00012166
+ABC transporter	4.11802e-05	3.62933e-05
+Phosphoethanolamine transferase OpgE	0.0034733	0.000502133
+PREDICTED	9.16669e-05	4.33751e-05
+UniRef50_A0A011RZV2	1.93672e-05	5.72247e-06
+UniRef50_W7TIH3	3.48132e-05	9.61275e-06
+Succinyl CoA	0.0157955	0.0244391
+hypothetical protein	8.25918e-05	2.02288e-05
+Holliday junction resolvase RecU	0.00993864	0.0017872
+BCCT transporter family protein	0.000129932	0.00248506
+MULTISPECIES	0.00011657	0.00525333
+UniRef50_A9MIT8	0.00649289	0.000202675
+tRNA N6 adenosine threonylcarbamoyltransferase	1.25803e-05	8.47623e-06
+UniRef50_E3A4Z7	0.00127097	0.000161853
+hypothetical protein	3.41241e-05	3.29713e-05
+UniRef50_D4FIU1	0.00291124	0.00116604
+cytochrome BD ubiquinol oxidase subunit I	3.14512e-05	2.39876e-05
+Minor ampullate spidroin like protein 	6.48265e-06	3.82985e-05
+M20 DapE family protein YgeY	9.0389e-05	0.00188179
+Poly depolymerase	0.000213456	0.00306556
+UniRef50_P39295	0.00264186	0.0019645
+UniRef50_R5TI31	8.75668e-05	0.00282488
+Foldase protein PrsA 1	0.00618435	0.00152596
+30S ribosomal protein S2, partial	1.43897e-05	2.09918e-05
+UniRef50_S9QQX6	0.000190231	1.52889e-05
+Argininosuccinate synthase	0.00531523	0.00332543
+UniRef50_A6V127	6.24907e-05	0.000865734
+UniRef50_Q9RYE9	0.000306107	0.0319592
+Serine protease SplB	0.0376449	0.00466419
+UniRef50_Q8DW55	0.00300691	0.00139808
+UniRef50_G2L1N4	0.000794128	0.000559562
+branched chain amino acid ABC transporter	9.39107e-05	1.68385e-05
+amino acid ABC transporter ATPase, partial	9.69852e-05	6.22378e-05
+RNA polymerase sigma 70 factor	2.51504e-06	0.000103885
+hypothetical protein	8.70839e-05	7.85144e-05
+ABC type Fe3+ siderophore transport system, permease component	0.000155092	0.000286262
+Glutamate  tRNA ligase 1	1.58072e-05	5.68835e-06
+5 formyltetrahydrofolate cyclo ligase	0.000200327	0.00327086
+PREDICTED	3.24059e-05	3.87207e-06
+hypothetical protein	9.62091e-07	0.00182482
+UniRef50_Q9HXH7	0.000914263	0.000441769
+hypothetical protein, partial	6.52878e-05	5.02846e-06
+30S ribosomal protein S3, partial	0.000927681	0.00107456
+Probable homocitrate synthase AksA	0.00256862	0.000334583
+Molybdenum pterin binding protein MopB	0.000592195	0.000221145
+6 O methylguanine DNA methyltransferase, DNA binding domain protein	0.0185055	0.00706643
+Oxygen independent coproporphyrinogen III oxidase like protein Rv2388c	2.59346e-05	5.00599e-06
+glutamate ABC transporter permease	3.75236e-06	1.90429e-05
+hypothetical protein	8.53081e-07	1.7854e-05
+UniRef50_K2EGX4	1.32624e-05	1.13664e-05
+Polyprenyl synthetase	0.000388878	0.00759588
+UniRef50_C0SPB0	0.0219332	0.00485296
+Flagellar protein FlgJ, putative	0.00014165	4.22757e-05
+Conserved protein	0.00366555	0.000607764
+O succinylhomoserine sulfhydrylase	0.000114009	0.00181817
+PF12769 domain protein	1.34719e-05	1.12048e-05
+Transcriptional regulator, LysR family	0.000113443	0.0001235
+Putative sucrose phosphorylase	0.00215356	0.00156842
+ATP dependent DNA ligase	0.00293883	0.000723827
+hypothetical protein	9.28153e-05	2.13785e-05
+Putative undecaprenyl diphosphatase YbjG	0.00412639	0.000387004
+PREDICTED	5.60207e-06	5.62034e-06
+Cysteine  tRNA ligase	0.00323813	0.0013555
+hypothetical protein	0.000726988	8.05564e-05
+BNR Asp box repeat protein	4.4341e-05	0.0030132
+UniRef50_Q2YYG7	0.00875188	0.000554861
+UniRef50_Q7XIT3	0.000126767	2.07364e-05
+Maltose regulon activator MalT domain protein	0.000433324	0.000387004
+hypothetical protein	1.04819e-05	3.29724e-06
+hypothetical protein, partial	4.16025e-05	9.12552e-06
+UniRef50_C3A4M2	2.62836e-05	0.000160467
+UniRef50_Q9I6G4	0.00156968	0.000289074
+ABC transporter, partial	5.14789e-05	2.26253e-05
+UniRef50_E7RTI9	5.73165e-05	2.3982e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000301115	0.00122032
+GTPase Der	0.000191749	0.00323565
+Restriction enzyme BgcI subunit alpha 	5.146e-05	0.00138489
+Alkaline protease secretion ATP binding protein AprD	0.000124956	0.000228949
+Integral membrane protein MviN	9.25828e-06	2.90334e-06
+Methyl accepting chemotaxis sensory transducer	0.00668889	0.000873608
+UTP  glucose 1 phosphate uridylyltransferase	0.00100851	0.00193329
+hypothetical protein	6.50715e-05	2.35025e-05
+3 isopropylmalate dehydrogenase, partial	8.71029e-05	3.45776e-05
+Stage 0 sporulation protein J	0.000286082	0.000471756
+Cytochrome c type biogenesis protein NrfE	0.00284838	6.80704e-05
+UniRef50_C4ZJP0	8.28832e-06	2.88834e-05
+UniRef50_H8GU51	4.32045e-05	0.0136888
+2 dehydropantoate 2 reductase	0.020254	0.00299612
+hypothetical protein, partial	7.95148e-05	0.000153601
+hypothetical protein, partial	4.28698e-05	1.14417e-05
+UniRef50_Q3JVL6	8.40257e-05	0.00021549
+UniRef50_F3AA10	3.78987e-05	6.12885e-05
+Lipopolysaccharide export system permease protein LptF	0.00214678	0.000491563
+Endonuclease V	0.000638848	0.00130412
+MoxR like ATPase	0.00126686	0.000251529
+dehydrogenase	0.000162234	5.01154e-05
+Pseudouridine synthase	0.0164385	0.00293152
+MULTISPECIES	1.506e-05	1.28284e-05
+Beta Ig H3 fasciclin	1.63724e-05	3.93269e-06
+L lactate dehydrogenase 2	0.0101314	0.00130277
+Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	4.55464e-05	3.99105e-05
+Probable chemoreceptor glutamine deamidase CheD	0.000287101	2.4843e-05
+Sigma 54 factor, interaction domain containing protein	0.000241788	0.000750698
+Ribonuclease 3	1.475e-05	1.83143e-05
+Cysteine synthase	3.84658e-05	1.12036e-05
+hypothetical protein	2.23902e-05	4.5842e-06
+UniRef50_V8MVT8	0.000437851	6.03966e-05
+UPF0597 protein YE0448	0.00201152	0.000255019
+Outer membrane protein assembly factor BamD	0.0104617	0.000128816
+UniRef50_A0A011PJY3	9.69114e-06	1.65394e-05
+UniRef50_Y8CPG9	0.00920377	0.00195594
+Glycerol uptake facilitator protein	0.00265847	0.000327903
+hypothetical protein	1.7115e-05	2.35599e-06
+polyphosphate kinase	1.87164e-06	2.42217e-05
+Glutamine synthetase	0.000480679	0.000133171
+Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase	0.000612267	0.0318299
+Metallophosphoesterase	0.0018974	0.000344597
+UniRef50_F0YF94	7.04676e-05	3.58674e-05
+UniRef50_Q094I2	1.80802e-05	1.39248e-06
+UniRef50_F0YF93	0.000134694	0.000162345
+Adenylosuccinate synthetase	1.47111e-05	6.61071e-06
+hypothetical protein	1.28951e-05	3.71448e-06
+Glucose 6 phosphate 1 dehydrogenase	0.00278719	0.00287357
+UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000650059	0.00257142
+Shikimate kinase	1.91399e-05	7.86191e-06
+PfkB domain protein	0.000106841	0.00103087
+Putative integral membrane efflux protein	2.95944e-05	0.000147442
+UniRef50_V6DRE9	5.76975e-06	0.000436377
+hypothetical protein	2.99766e-06	1.01827e-06
+UniRef50_S7S4W9	5.45051e-05	0.000127952
+D amino acid dehydrogenase small subunit	0.00025804	0.00978774
+UniRef50_D3D3X9	2.76357e-05	6.74597e-06
+Extracellular matrix binding protein ebh	4.77139e-06	3.63333e-06
+ABC transporter related	0.0042615	0.000635466
+UniRef50_S9W022	4.55297e-05	0.000135002
+Helix turn helix domain containing protein, AraC type	0.000104195	0.00127322
+Internalin family protein 	6.97442e-06	1.34301e-06
+Zinc protease	0.000448482	0.000146731
+UniRef50_R7P2I4	5.45311e-05	0.00176485
+UniRef50_I0I041	3.97325e-05	6.05896e-06
+hypothetical protein	2.44644e-05	5.47907e-05
+Thymidylate synthase	1.84237e-05	2.34649e-05
+UniRef50_W0ZC25	1.21223e-05	5.74251e-05
+UniRef50_F3Z8L2	5.47648e-05	0.000182838
+Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.0144183	0.00412245
+UniRef50_N0BBG7	0.000140656	1.65387e-05
+N5 carboxyaminoimidazole ribonucleotide mutase	0.00800445	0.000959934
+Leucyl phenylalanyl tRNA  protein transferase	2.93172e-05	1.82898e-05
+Cell shape determining protein MreC	0.0138083	0.00432941
+Glucosamine 6 phosphate deaminase	5.53819e-06	9.14556e-06
+Mobile element protein	0.000265781	6.56517e-05
+Type I restriction enzyme EcoR124II R protein	7.55391e-05	0.00195432
+Bifunctional protein PyrR	4.43106e-05	6.90288e-05
+General stress protein 26	0.019658	0.00574957
+BclA protein	1.43514e-05	1.66815e-05
+Leucine  tRNA ligase	0.00016768	0.0288074
+Serine type peptidase	7.3912e-05	0.000686586
+Fructose like phosphotransferase enzyme IIA component	0.000956862	0.000592587
+UniRef50_R1DRR6	6.17276e-05	1.29781e-05
+Phosphoenolpyruvate carboxylase	0.000456057	3.36147e-05
+PREDICTED	5.68106e-06	2.53512e-05
+UniRef50_B9KS86	0.00570012	0.00210232
+Sybindin like family domain containing protein, putative	8.32874e-06	1.95416e-05
+Methyltransferase family protein	1.16322e-05	2.68736e-05
+PA phosphatase	0.000200534	3.30598e-05
+UniRef50_B9KS80	0.00626971	0.000206402
+Phosphate import ATP binding protein PstB	0.00701674	0.000548625
+hypothetical protein, partial	1.59798e-05	6.1421e-05
+Glutamate  cysteine ligase	0.000424193	0.000122063
+hypothetical protein	2.7873e-05	0.000178852
+UniRef50_A0A059E2E8	0.000219467	6.33373e-05
+UniRef50_W4MLS6	5.75416e-05	9.61086e-05
+Paraquat inducible protein	7.15047e-05	0.00217316
+FAD linked oxidase like protein, partial	0.000691606	0.000362036
+Transcription antiterminator LicT	0.00129732	0.000697588
+UniRef50_Q1R7E0	9.68021e-05	6.42238e-05
+Poly polymerase 2	0.00125979	0.000108187
+acyl CoA dehydrogenase	4.26825e-06	1.20112e-05
+hypothetical protein	4.6522e-06	3.55576e-06
+UniRef50_P44941	0.00046226	8.19246e-05
+Conserved domain protein	0.000331031	0.000677128
+hypothetical protein	0.000849777	0.000283104
+UniRef50_E8SRI9	0.000363675	0.00131638
+N acetylmuramoyl L alanine amidase	0.000316842	6.34522e-05
+Porin, autotransporter  family	5.54574e-05	4.7784e-05
+hypothetical protein	1.19638e-06	3.42486e-06
+UniRef50_Q5HLZ6	0.00261417	0.000632288
+hypothetical protein	2.10681e-05	2.58153e-06
+Shikimate transporter	0.0020406	0.000347276
+Acyltransferase	0.000200725	0.00272004
+Enoyl [acyl carrier protein] reductase [NADH] FabI	1.30235e-05	3.02374e-05
+Lipoyl synthase	4.43285e-06	1.38585e-05
+Integrase	0.000810568	1.04783e-05
+hypothetical protein	6.71232e-05	4.22968e-05
+Polyribonucleotide nucleotidyltransferase	2.05557e-06	1.92589e-05
+Abi like family protein	0.00745018	0.000531235
+Nicotinamide nucleotide transhydrogenase, subunit alpha	9.84257e-06	9.62701e-06
+Phospho N acetylmuramoyl pentapeptide transferase	6.01299e-06	0.0010338
+hypothetical protein	3.48571e-05	0.00229242
+Predicted Rossmann fold nucleotide binding protein involved in DNA uptake	0.00480687	0.00332613
+Binding protein dependent transport systems inner membrane component	0.000139454	0.000704602
+PTS system EIIBC component SAB0132	0.0187437	0.00441097
+All0708 protein	0.000189799	4.24919e-05
+UniRef50_K2ALU5	3.49226e-06	0.000721074
+hypothetical protein	5.1029e-05	1.49876e-05
+Thiamine biosynthesis protein ThiC 	1.95593e-05	3.30156e-05
+hypothetical protein	9.26195e-06	3.24241e-06
+hypothetical protein	2.44235e-06	2.49686e-06
+hypothetical protein	2.75271e-06	1.14164e-05
+Oxidoreductase UcpA	0.00482809	0.000761257
+UniRef50_R6ZPD9	0.00604405	0.00248843
+Short chain dehydrogenase	0.000162062	0.00143904
+Helicase	0.000285211	0.000240066
+Polyketide synthase	0.00514832	0.000733849
+Putative iron sulfur protein	4.52172e-05	0.000319905
+UniRef50_F2AG83	0.000169191	0.000414117
+histidine kinase, partial	0.00253652	0.000883923
+UniRef50_G4YB17	4.1926e-06	1.13835e-05
+UniRef50_E0N9M8	0.000558229	0.00023215
+Fructose bisphosphate aldolase class 2	0.00337294	0.000249949
+Deoxyguanosinetriphosphate triphosphohydrolase 	0.000468552	0.00334892
+UniRef50_G0HCK4	3.19376e-06	2.30754e-05
+UniRef50_Q5HKT7	0.0192909	0.00268482
+UniRef50_C5N3T1	0.00800312	0.000845876
+hypothetical protein	5.56856e-05	2.08623e-05
+hypothetical protein	4.00734e-06	8.81835e-06
+major facilitator family transporter, partial	7.51016e-06	7.62923e-06
+UniRef50_C5N3T8	0.00650106	0.000477579
+Transcriptional regulatory protein, C terminal domain protein	0.000478505	0.000542018
+Prephenate dehydrogenase	7.23035e-06	1.95007e-06
+histidine ammonia lyase	4.51669e-06	4.09881e-05
+DNA topoisomerase 1	0.00311576	0.00379016
+ABC transporter ATP binding protein	1.50376e-05	4.8941e-06
+Potassium transporting ATPase B chain	8.34449e-06	0.000827773
+Arginine repressor	0.00409386	0.00127505
+UniRef50_L7WV22	3.8027e-05	3.44627e-05
+ribosomal large subunit pseudouridine synthase C	1.69294e-05	3.79844e-05
+Phosphotransferase system PTS sorbose specific IIC subunit	0.000213005	0.000731933
+Methyl accepting chemotaxis sensory transducer	0.00103776	0.000534035
+UniRef50_Q3J3Y0	0.0122919	0.000731275
+UniRef50_W7BZR4	4.03231e-05	5.16374e-05
+Acetolactate synthase large subunit	0.0162742	0.00182056
+YD repeat protein 	0.00030049	0.00154115
+Hydrogenase 1 operon protein HyaE	0.0113789	0.00225365
+hypothetical protein	6.32408e-06	1.71481e-05
+ATP dependent 6 phosphofructokinase	2.13712e-05	9.44488e-06
+hypothetical protein	6.26301e-06	1.74593e-05
+ABC transporter substrate binding protein, partial	0.000115363	7.313e-06
+Endopeptidase IV related protein	8.24874e-05	0.00475718
+UniRef50_B7LSY4	0.000494924	0.000440122
+L threonine dehydratase biosynthetic IlvA	1.54694e-05	1.20641e-05
+UniRef50_A0A022CKG6	8.7604e-05	0.00347908
+UniRef50_P0ACY5	0.00382159	0.00102791
+UniRef50_R1F809	0.000193008	0.000118836
+ComG operon protein 6	0.00542905	0.00141454
+SAM dependent methyltransferase	2.41036e-05	1.0203e-05
+MFS transporter	3.8466e-06	3.74153e-06
+Carbohydrate ABC transporter membrane protein 1, CUT1 family	0.000859067	0.000519538
+Transcriptional regulator, AraC family	0.000105833	0.000789571
+UniRef50_J9NX06	2.47454e-05	6.68073e-06
+Pyridoxine pyridoxamine 5 phosphate oxidase	6.64173e-06	4.93607e-05
+UniRef50_A0A020HGX4	0.000280895	3.07525e-05
+Cytochrome c oxidase subunit 1	2.75573e-05	7.51536e-06
+Amino acid or sugar ABC transport system, permease protein	0.00026373	0.00203986
+ATP synthase subunit alpha, mitochondrial	3.36224e-06	5.16459e-06
+UniRef50_K1C2I8	0.000442184	1.24485e-05
+UniRef50_UPI000383E572	0.000524631	0.000356289
+hypothetical protein, partial	9.39117e-06	6.79288e-06
+Homologous to beta keto acyl acyl carrier protein synthase	0.000505426	8.71698e-05
+UniRef50_B0VV71	0.000123429	0.00693153
+UniRef50_D3E1B0	0.00192528	0.000221087
+PREDICTED	0.00016358	9.49433e-05
+UTP  glucose 1 phosphate uridylyltransferase	0.000160869	0.00211621
+UniRef50_A7FAZ2	0.000315542	0.0051153
+UniRef50_Q47158	0.00180689	0.000412923
+antigen penicillin binding protein, partial	5.39446e-05	1.54787e-05
+2 oxoisovalerate dehydrogenase subunit alpha	0.00844105	0.00157334
+Ribosomal protein L11 methyltransferase	0.000107181	0.000590222
+3 oxoacyl [acyl carrier protein] reductase FabG	0.0017687	0.00703743
+UniRef50_S9Q6A0	6.10131e-06	7.07921e-06
+hypothetical protein	1.66311e-05	1.56288e-05
+UniRef50_X6HEY2	2.39318e-05	1.44465e-05
+Polyhydroxyalkonate synthesis repressor, PhaR	2.96363e-05	5.23598e-06
+Cro Cl family transcriptional regulator	0.000223373	0.000326648
+hypothetical protein	1.89543e-06	0.000653277
+UniRef50_H8H715	0.000211831	0.00269651
+Bacteriophage protein gp37	0.00520512	0.000596647
+Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.000259825	0.000309708
+Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase)	0.000127965	0.00380374
+Undecaprenyl diphosphatase 1	0.00654234	0.000121528
+Arginine ornithine antiporter	0.000773702	0.000190349
+PREDICTED	0.000143759	5.1652e-05
+hypothetical protein	7.95515e-05	6.62231e-05
+hypothetical protein	8.70804e-05	8.91608e-05
+4 hydroxythreonine 4 phosphate dehydrogenase	0.00158317	0.00469537
+cell envelope biogenesis protein TonB, partial	5.26991e-05	2.61109e-05
+UniRef50_A6LRY0	0.000232221	0.000615818
+UniRef50_A3PPF7	0.00167719	0.000197375
+Cell wall binding repeat containing protein	0.000490261	0.000242775
+carbon monoxide dehydrogenase	8.06332e-05	3.79038e-05
+NAD specific glutamate dehydrogenase	0.0111822	0.0110802
+aldehyde dehydrogenase	4.88279e-06	4.00644e-06
+Ribosomal protein serine N acetyltransferase	0.0181801	0.00209547
+Queuine tRNA ribosyltransferase	0.000287405	0.0028284
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0244177	0.00272358
+Putative fluoride ion transporter CrcB	4.13858e-05	1.96633e-05
+3 oxoadipate enol lactonase	0.00393618	0.00068856
+UniRef50_X5F4R0	0.00338187	0.000742024
+hypothetical protein	0.000186679	6.36906e-05
+Gamma glutamyltranspeptidase	0.000304158	0.00163632
+Cytidine deaminase	0.0105544	0.000455348
+Menaquinone specific isochorismate synthase	0.0023864	0.000286342
+YjeF domain protein	0.00024535	0.00189053
+PREDICTED	6.62447e-05	1.25864e-05
+Dihydrofolate reductase	1.02334e-05	3.48419e-05
+UniRef50_Q9RTK3	0.000193419	0.0236476
+Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding	4.3092e-05	0.000840257
+Lactate 2 monooxygenase	1.9331e-05	0.000635558
+Metallo beta lactamase superfamily enzyme	0.000169694	1.81603e-05
+peptide ABC transporter permease	3.85373e-05	1.49914e-05
+NADH quinone oxidoreductase subunit J	1.62891e-05	1.49608e-05
+UniRef50_Q9RZK0	0.000337674	0.00316892
+Recombinational DNA repair protein RecT	0.0157602	0.00162043
+Phosphoglycerate kinase	0.00428481	0.000484767
+hypothetical protein	1.35735e-06	4.31927e-06
+hypothetical protein	5.94066e-06	0.000372551
+hypothetical protein	4.65359e-05	7.00293e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000255705	0.0032906
+Drug transport protein	0.000161624	0.0141902
+AsnC family transcriptional regulator	0.000212005	3.28389e-05
+hypothetical protein	0.00016187	1.54278e-05
+Prolipoprotein diacylglyceryl transferase	2.1772e-05	7.14336e-06
+Pyridine nucleotide disulfide oxidoreductase	0.000288063	0.000463225
+Xanthine phosphoribosyltransferase	1.2285e-05	1.52677e-05
+UniRef50_B3E7C1	4.48524e-05	9.79162e-06
+UniRef50_D8U7R0	8.46409e-06	5.63091e-06
+Ribulose phosphate 3 epimerase	1.4803e-05	0.00117301
+UniRef50_Q3J229	0.0112469	0.00222839
+UniRef50_Q3J227	0.0260839	0.000244645
+hypothetical protein	8.9364e-06	6.99824e-06
+biotin synthase like protein	2.21939e-05	2.21967e-05
+UniRef50_M4ZJP4	0.000104735	0.000708872
+Uroporphyrinogen III synthase	0.000330553	0.00242681
+UniRef50_M1NMK8	1.30612e-05	4.22941e-05
+Marine sediment metagenome DNA, contig	8.19805e-06	0.00137077
+Xanthine uracil permease family protein	0.000821603	0.00503737
+50S ribosomal protein L15, partial	0.000159995	0.000305657
+Phosphate ABC transporter permease protein PstA	0.000743763	0.000638994
+UniRef50_K0T1H0	6.4638e-05	1.07386e-05
+UniRef50_K0WK29	0.000694752	0.0025794
+UniRef50_A4WTM8	0.00133588	5.93711e-05
+UniRef50_A1BAY3	2.57716e-05	7.88709e-06
+Mesaconyl CoA hydratase	0.00511043	0.000808107
+ATP synthase subunit beta, chloroplastic	1.75336e-05	2.28824e-05
+4 trimethylaminobutyraldehyde dehydrogenase	7.76631e-06	5.98006e-06
+30S ribosomal protein S4	4.71047e-05	1.84801e-05
+ribosomal protein S12	5.55365e-05	3.55178e-05
+Endoribonuclease L PSP	0.000139417	3.04182e-05
+hypothetical protein, partial	7.29738e-06	0.000357052
+Ribose 5 phosphate isomerase A	0.00313946	0.000439574
+nucleoside triphosphate pyrophosphohydrolase	7.71776e-06	3.05526e-06
+Gluconate permease	1.2998e-05	6.65267e-06
+CRISPR associated protein Csd1, partial	0.000632563	0.000195866
+UniRef50_K0S333	2.20594e-05	4.35261e-06
+UniRef50_A3T0X3	0.000145885	9.24792e-05
+NADPH dependent 7 cyano 7 deazaguanine reductase	8.64444e-06	0.000142065
+NAD kinase	0.00245854	0.000562022
+Hydrogenase accessory protein HypB	0.00203409	0.000283606
+Alkyl hydroperoxide reductase subunit C	0.00819356	0.00141063
+saccharopine dehydrogenase	4.30522e-05	0.00012904
+GntR family transcriptional regulator	2.92107e-06	2.48404e-06
+CoA activase	0.000303201	0.000735652
+UniRef50_E3D490	0.000599468	0.00179707
+Indole 3 glycerol phosphate synthase	0.015603	0.00288342
+UniRef50_B7V4W8	0.000635371	0.00059476
+Chemotaxis protein CheA	0.0114307	0.00236964
+Sortase family protein	0.0183144	0.00229636
+Dimethyl sulfide monooxygenase	0.000609802	0.00439441
+5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.0135978	0.000671118
+Peptidyl tRNA hydrolase	4.55703e-05	1.63507e-05
+Putative dehydrogenase XoxF	0.0105607	0.00120521
+UniRef50_U4V1U2	0.00564774	0.000196313
+Putative ABC transporter ATP binding protein LJ_1704	0.00645453	0.0011918
+UniRef50_D4MDT9	2.80841e-05	0.000317261
+Proteasome subunit alpha	0.00178519	0.000121495
+30S ribosomal protein S7	0.00317825	0.000266424
+Enoyl [acyl carrier protein] reductase [NADH] FabI	0.00298415	0.0026879
+CTP synthase 1	4.67192e-06	5.58312e-05
+Flavin reductase domain protein, FMN binding	0.000177442	0.000512623
+UniRef50_W8W2G5	9.37608e-05	0.000289007
+Fe S metabolism associated SufE	8.42784e-05	9.03118e-06
+UniRef50_P33352	0.00199038	0.000257684
+UniRef50_P33353	0.00224117	0.000369575
+UniRef50_F8JL19	4.00779e-06	0.000234176
+Nucleoside permease	0.0183025	0.00303054
+hypothetical protein	1.34317e-05	1.23503e-05
+Cytoplasmic trehalase	0.00284289	0.000770665
+General secretion pathway protein D	0.000216359	0.000148854
+UniRef50_Q1NCJ9	3.38111e-05	2.60338e-05
+ATP dependent RecD like DNA helicase	1.07221e-05	0.000457241
+UniRef50_I1QUN8	0.000202225	4.4372e-06
+Transcriptional regulatory protein 	4.04133e-05	5.88545e-05
+4 diphosphocytidyl 2 C methyl D erythritol kinase	0.00273785	0.00167379
+Alpha beta hydrolase family protein	0.00026449	0.00375978
+cytochrome c oxidase subunit I, partial	0.000139021	0.000281258
+Periplasmic [NiFe] hydrogenase small subunit 2	5.68778e-05	9.61073e-06
+FliB family protein	0.000183305	0.000748689
+Sensor histidine kinase YvrG	0.000413482	0.000565078
+Low molecular weight phosphotyrosine protein phosphatase	0.000245656	0.00399253
+UniRef50_A3LER3	0.00393572	0.000510141
+BNR Asp box repeat protein	0.000201929	0.00135331
+Leucyl phenylalanyl tRNA  protein transferase	1.69365e-05	2.87359e-05
+Glutathione peroxidase	0.000424251	0.000662003
+Magnesium protoporphyrin chelatase	1.03326e-05	5.53086e-05
+MaoC domain containing protein	3.06377e-05	1.77144e-05
+hypothetical protein	0.000140198	1.13298e-05
+UniRef50_A0A023RUE3	0.000269239	0.00159827
+UniRef50_Q3J1F8	0.000365814	0.00100082
+UniRef50_Q3J1F7	0.018584	0.00495054
+UniRef50_Q3J1F6	0.00281287	0.000697419
+UniRef50_U5T8A8	8.8707e-06	2.05528e-05
+tRNA rRNA cytosine C5 methylase	0.000331954	0.00274136
+UniRef50_A8AMK7	0.000679927	0.000518219
+Serine type D Ala D Ala carboxypeptidase	9.12056e-05	0.000626213
+ABC transporter substrate binding protein	5.57905e-06	4.7895e-06
+PTS system fructose specific EIIBC component	0.0018643	0.00373311
+Glutamate 5 kinase	5.49889e-06	1.34558e-05
+UniRef50_W1DU15	4.15167e-05	1.71752e-05
+1,4 Dihydroxy 2 naphthoyl CoA synthase	2.92609e-05	0.000904576
+hypothetical protein, partial	0.00113285	7.19321e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0133642	0.00137734
+Cation transport protein chaC	0.00202963	0.000225416
+Citrate synthase 1	0.0101376	0.00849676
+Predicted protein 	3.60932e-05	1.0949e-05
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000233662	0.00174499
+UniRef50_I0C5H5	0.0197113	0.00187019
+Multidrug resistance protein MdtC	0.000290872	3.31432e-05
+Phosphate acetyltransferase	7.48522e-05	0.000895143
+Glycoside hydrolase, clan GH D	0.000203433	0.000972805
+L fucose isomerase	0.000192313	0.00211804
+amino acid carrier protein	2.54858e-06	0.000174575
+preprotein translocase subunit SecY	3.2713e-06	0.000163762
+Macrolide export ATP binding permease protein MacB 2	2.35111e-06	2.76085e-06
+hypothetical protein	0.000101877	3.07075e-05
+PREDICTED	1.25101e-05	1.26952e-05
+MULTISPECIES	4.56125e-06	9.82763e-06
+UniRef50_D2J8Q0	0.0243883	0.00249632
+transcriptional regulatory protein LPC_0711	1.10092e-05	1.37235e-05
+UniRef50_D2J8Q4	0.0209234	0.0063185
+Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain	0.00868347	0.0021022
+MULTISPECIES	0.000192333	3.82333e-05
+Putative gluconeogenesis factor	0.000346602	0.00153558
+UniRef50_P25130	0.00481755	0.00199958
+MMPL family protein	8.35807e-05	0.00217117
+cysteine desulfurase	6.11596e-05	3.22045e-06
+alcohol oxidase	8.09853e-06	1.93375e-06
+PTS system mannose fructose sorbose family IID component	0.000380931	0.000542884
+Transcriptional regulator, AraC family	0.00805552	0.000864887
+3 isopropylmalate dehydrogenase	1.90352e-05	2.03909e-05
+UniRef50_A3V9P5	1.44004e-05	1.63418e-05
+PREDICTED	4.33912e-05	9.56001e-06
+UPF0045 protein in glkA 3region	0.00311644	0.000754495
+UniRef50_P43340	0.00487677	0.000635042
+Glutamine dependent NAD synthetase	0.00303474	0.000612398
+Marine sediment metagenome DNA, contig	1.32942e-05	2.11825e-06
+hypothetical protein	6.7116e-05	3.92151e-05
+Threonylcarbamoyl AMP synthase	0.00195459	0.000215829
+Marine sediment metagenome DNA, contig	0.000304775	6.45121e-05
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.92727e-05	2.71414e-05
+MutG	0.00445908	0.000528436
+UniRef50_D7DI05	1.05676e-05	5.74857e-05
+TRAP type C4 dicarboxylate transport system, periplasmic component	0.0118659	0.00272235
+hypothetical protein	1.10668e-05	3.17399e-05
+ABC transporter ATP binding protein	0.000214818	0.000396334
+Cell cycle protein GpsB	0.00148399	0.00103522
+aldehyde dehydrogenase	1.82316e-05	2.85699e-06
+40 residue YVTN family beta propeller repeat protein	4.7648e-06	4.65661e-06
+UniRef50_F9Y8T0	2.31678e-05	4.14886e-05
+UniRef50_E4N2K8	4.50955e-05	5.50547e-06
+UniRef50_K7WGH8	0.000165727	1.42589e-05
+hypothetical protein	9.21323e-05	1.30602e-05
+Putative outer membrane protein 	1.528e-05	2.64512e-05
+DEAD DEAH box helicase	7.95623e-05	0.00147988
+UniRef50_W6RFV5	0.000183219	4.88721e-05
+Thioesterase superfamily protein	1.12798e-05	0.00118019
+Putative tyrosine protein phosphatase CapC	0.0203878	0.00272801
+Xaa His dipeptidase	0.00436744	0.00290839
+UniRef50_R5EHV3	0.000107839	2.54619e-05
+Endonuclease, putative	0.00328239	0.000782136
+Dehydrogenase	9.2195e-05	3.6945e-06
+Glutathionylspermidine synthetase	0.000209036	0.00155244
+Quinolinate synthase A	0.000413446	0.000195088
+Undecaprenyl diphosphatase 	0.000249848	1.15851e-05
+UniRef50_R7LCT1	1.93574e-05	4.9336e-05
+UniRef50_O34546	0.0085228	0.00116634
+UniRef50_D0W2S1	0.000640398	0.00440772
+Iron  ABC superfamily ATP binding cassette transporter, ABC protein	0.00893965	0.00340612
+UniRef50_Q5X449	1.35068e-05	0.000584135
+UniRef50_L1K8B7	0.0113707	0.00151223
+Methyl accepting chemotaxis sensory transducer	0.000399642	0.000768303
+tyrosyl tRNA synthetase	2.06137e-05	2.92392e-05
+Putative amino acid ABC transporter permease protein YhdX	0.0018187	0.000741733
+RNA polymerase sigma factor RpoD, partial	1.86912e-05	5.05823e-06
+ISSep1 like transposase	0.00456285	0.00177332
+UniRef50_G8AR28	8.7719e-05	0.000163692
+Shikimate kinase	1.92728e-05	6.67334e-06
+UniRef50_W7QBC1	3.73164e-06	2.28215e-05
+Methionine import ATP binding protein MetN	0.00311386	0.0020046
+crotonyl CoA reductase	0.000344721	2.35587e-05
+Alanine racemase 1	0.0189837	0.00247118
+Triosephosphate isomerase	0.00931649	0.000536158
+NADH quinone oxidoreductase subunit I	0.0075499	0.00341976
+Fatty acid oxidation complex subunit alpha	0.00100916	0.000242524
+UniRef50_UPI00045D739F	1.63534e-05	3.21968e-05
+ABC 2 type transporter	0.00240205	0.000465614
+MltA	0.00161087	0.000180292
+Probable copper exporting P type ATPase A	3.2669e-06	3.60645e-06
+Probable manganese dependent inorganic pyrophosphatase	0.000387499	0.0287867
+UniRef50_R9SLB3	0.00337471	0.000288818
+Acyl CoA dehydrogenase, C terminal	0.00018693	4.51484e-05
+Extracellular solute binding protein, family 3	0.00866486	0.00148103
+Na+ H+ antiporter	9.62484e-05	0.00192492
+Glutamyl Q tRNA synthetase	2.77921e-05	0.00375141
+UniRef50_A0YH35	0.000208984	0.000329296
+rRNA methyltransferase	0.00015438	0.00330271
+UniRef50_N6UYS2	0.000110778	0.000122915
+methyltransferase	1.5238e-05	2.80151e-05
+alcohol dehydrogenase	6.75953e-06	2.95222e-05
+Lon protease 2	1.46051e-06	4.00016e-06
+UniRef50_J0ZPJ9	0.00032995	0.000254348
+hypothetical protein, partial	3.70238e-05	1.2952e-05
+Arylsulfatase	0.00165566	0.000482095
+UniRef50_M5F699	0.00155767	1.47959e-05
+Drug resistance transporter, EmrB QacA subfamily	0.000740055	0.00126912
+Na+ H+ antiporter	7.64556e-06	3.65869e-05
+Trigger factor	0.0175273	0.00349607
+Protein SprT	0.00371945	0.00116995
+hypothetical protein	5.47501e-06	3.89519e-06
+Cobyric acid synthase	6.81732e-05	0.000466748
+Immunogenic protein	3.72487e-05	6.43945e-06
+UniRef50_B9KM49	0.00130735	3.74993e-05
+Ribose 5 phosphate isomerase A	0.00481286	0.000120679
+Tetraacyldisaccharide 4 kinase	0.00015605	0.00175975
+UniRef50_M7WMK4	1.07145e-06	1.10985e-05
+UniRef50_Q8CTN4	0.00542011	0.00113614
+Aminotransferase, class I	0.0156034	0.00154205
+Marine sediment metagenome DNA, contig	5.32385e-05	2.13894e-05
+beta hexosaminidase	2.2729e-05	1.79079e-05
+Bll6696 protein	0.000341674	0.00300188
+Nicotinate nucleotide pyrophosphorylase	0.000587086	0.00112634
+Uncultured bacterium extrachromosomal DNA RGI02237	8.12941e-06	3.76621e-05
+Short chain dehydrogenase	0.000299841	0.00451907
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0207667	0.00363548
+ADP forming acetyl coenzyme A synthetase	0.00256949	0.000144803
+Electron transfer flavoprotein beta subunit	0.00127867	0.00015427
+hypothetical protein	4.41333e-05	1.27246e-05
+NADH quinone oxidoreductase subunit D 2	3.22256e-06	5.42623e-05
+hypothetical protein	1.2962e-05	1.23609e-05
+MFS transporter	1.89937e-05	4.05957e-05
+phosphofructokinase	1.3249e-05	4.28318e-06
+hypothetical protein	7.58026e-06	7.33503e-06
+Drug resistance transporter, EmrB QacA subfamily	0.000181338	0.000679196
+hypothetical protein	9.66038e-05	1.28824e-05
+UniRef50_C1D381	4.28087e-05	1.83628e-05
+UniRef50_R4RP03	0.00092345	0.000193012
+GTP pyrophosphokinase, partial	3.06354e-06	3.85365e-06
+hypothetical protein, partial	0.000140002	3.49339e-05
+acetylornithine aminotransferase	2.46704e-06	2.89828e-06
+ABC type multidrug transport system, ATPase and permease component	0.00377235	0.000753426
+UniRef50_E0TQE3	0.00012578	1.98932e-05
+UniRef50_R7SQ97	6.88613e-05	0.000181243
+UniRef50_W0YYF5	0.00017899	0.000163329
+Methionine import ATP binding protein MetN	0.000257703	0.000657832
+PREDICTED	1.05493e-06	3.308e-07
+Phosphopantetheine adenylyltransferase	3.22525e-05	7.94021e-06
+Transcription termination factor Rho	0.0222295	0.0029751
+UniRef50_R6FSL2	0.000112183	0.000940869
+UniRef50_UPI000344160C	0.000271202	3.6551e-06
+UniRef50_D2JFR4	0.000488042	0.000129234
+Shikimate dehydrogenase	4.20325e-05	1.85268e-05
+UniRef50_D2JFR8	0.0427456	0.00522017
+UniRef50_G4Q931	0.000280955	0.000424424
+GfdT protein	7.48885e-06	3.00084e-06
+Drug resistance transporter, EmrB QacA family	0.018972	0.0037913
+hypothetical protein	1.81314e-06	2.21655e-06
+hypothetical protein	4.15902e-05	2.27517e-06
+ATP dependent Clp protease proteolytic subunit	7.07658e-06	4.91374e-05
+UniRef50_T9PRX2	0.000771897	0.000118466
+hypothetical protein	0.000155743	7.45004e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00100656	9.95177e-05
+CoB  CoM heterodisulfide reductase subunit B HdrB1	0.0022975	0.000500504
+tRNA guanine transglycosylase	0.00269462	0.000406355
+Aryldialkylphosphatase 	0.000130533	5.6825e-05
+hemolysin type calcium binding region, partial	6.42294e-05	7.30498e-06
+Uroporphyrinogen decarboxylase	5.20189e-06	1.12786e-05
+UniRef50_X2X8I7	2.38548e-06	0.000438255
+Zinc dependent sulfurtransferase SufU	0.0189497	0.000855486
+UniRef50_D1BE57	1.37499e-06	3.63116e-05
+Digeranylgeranylglyceryl phosphate synthase	0.00273411	0.000149641
+hypothetical protein	4.98043e-05	1.30991e-05
+Octanoyltransferase	0.000353023	0.00109007
+Periplasmic binding protein of proline glycine betaine transport system	0.000396659	0.00291346
+hypothetical protein	3.60342e-06	2.46443e-06
+tRNA  ) methyltransferase	6.38135e-06	0.00127399
+hypothetical protein	0.000255156	0.000137096
+6 pyruvoyl tetrahydropterin synthase	1.80339e-05	4.45116e-05
+PREDICTED	8.15121e-06	9.80875e-06
+Exodeoxyribonuclease III	0.00541814	0.000865073
+hypothetical protein	3.7123e-06	5.51085e-06
+hypothetical protein	5.05161e-06	0.000417869
+ketose bisphosphate aldolase	5.5199e-06	2.36793e-05
+hypothetical protein	6.28459e-06	3.76478e-06
+Catalase X	2.47701e-05	0.00100326
+Exonuclease, RNase T and DNA polymerase III	0.000285575	0.000444072
+UniRef50_O33787	0.00335479	0.000201538
+Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.000499761	0.000367592
+Cell division protein DivIB	0.00886348	0.000425713
+Protein translocase subunit SecY	0.00647224	0.00193764
+hypothetical protein	1.30367e-05	1.09715e-05
+UniRef50_Q3IUV4	0.00189766	0.000475325
+Lysophospholipase Monoglyceride lipase putative	0.0148561	0.00175481
+hypothetical protein	5.35242e-06	5.75794e-06
+Malate dehydrogenase	4.47264e-05	0.000347338
+Cobyric acid synthase	0.000497362	0.000418341
+Binding protein dependent transport systems inner membrane component	0.000458509	0.000680464
+SsrA binding protein	2.4629e-05	0.000429714
+hypothetical protein, partial	4.59273e-06	1.29037e-05
+Amidohydrolase	0.0295879	0.00638301
+PREDICTED	0.000313854	9.86684e-06
+UniRef50_C6L8Z7	8.634e-06	1.69411e-05
+UniRef50_A7MHL5	0.000670751	0.000307984
+Peptide ABC transporter substrate binding protein	0.0125855	0.00194194
+Sugar isomerase 	0.018783	0.00506088
+Guanine deaminase	0.00436541	0.000282772
+Cys Met metabolism pyridoxal phosphate dependent protein	0.000302084	0.000930638
+Tetrahydromethanopterin S methyltransferase subunit C	0.00275025	0.000493193
+Techoic acid ABC transporter, permease family protein	0.0956239	0.0218142
+Adenylate kinase	2.32175e-05	1.44712e-05
+hypothetical protein	4.19673e-06	5.81011e-05
+DNA topoisomerase 4 subunit B	0.00440334	0.00437592
+UniRef50_A6LRZ8	0.000382239	0.000661869
+Replication protein	0.000704037	0.00013341
+Putative oxygen independent coproporphyrinogen III oxidase 	0.000189386	2.7922e-05
+LPXTG surface protein	0.0098723	0.000900483
+UPF0403 protein SAR1441	0.0466198	0.00298619
+UniRef50_W0YTR9	0.00018885	3.77157e-06
+Probable low specificity L threonine aldolase 1	4.96076e-06	3.9868e-06
+hypothetical protein	6.90932e-06	8.64386e-06
+hypothetical protein	5.07875e-06	5.84343e-06
+Ribosome binding ATPase YchF	0.00264989	0.00144856
+ATP dependent helicase deoxyribonuclease subunit B	0.000284139	0.000122572
+UniRef50_B9E1R4	7.59703e-05	0.000228073
+23S rRNA  C(5)) methyltransferase RlmD	7.37506e-05	0.00417625
+C4 dicarboxylate transport two component sensor histidine kinase	0.000371375	5.13643e-05
+Enolase	3.47489e-06	4.50016e-05
+Sugar transferase, WcaJ	0.00312536	0.000335586
+Multiple CBS domains containing cytosolic protein	0.024953	0.00310239
+branched chain amino acid ABC transporter substrate binding protein	1.41847e-05	1.01928e-05
+UniRef50_K2EEA8	2.66985e-05	1.6729e-05
+UniRef50_U5P8L5	0.00528658	0.00175791
+GGDEF domain protein	0.000109983	0.000775799
+ABC transporter, periplasmic binding protein	5.6658e-05	0.00167786
+trehalose phosphatase	2.2e-05	1.38968e-05
+UniRef50_E1XJQ2	0.00239158	0.000261002
+UniRef50_K6ZAZ0	0.000845161	0.000374355
+glucosamine  fructose 6 phosphate aminotransferase	2.9305e-06	1.22463e-05
+UPF0047 protein C4A8.02c 	1.52658e-05	5.02538e-05
+PREDICTED	9.99273e-06	4.68131e-06
+cytidine deaminase	6.37622e-06	1.52187e-05
+hypothetical protein	0.000107373	0.00229063
+UniRef50_Q73UK5	0.000411894	1.98188e-05
+ketosteroid isomerase	4.56094e-06	1.92002e-05
+UniRef50_X6L0W1	2.18249e-05	1.80636e-05
+Energy coupling factor transporter ATP binding protein EcfA1	3.33589e-05	4.78972e-06
+Protein GrpE	0.000177131	0.00269269
+Probable transcriptional regulatory protein Dgeo_2194	0.000390512	0.0332354
+PTS system mannose fructose sorbose family IID component	8.4348e-05	0.00122666
+Short chain alcohol dehydrogenase	0.00438915	0.000456785
+NLP P60 protein	0.00015438	0.000285105
+GtrOC2	9.85982e-05	0.00212739
+UniRef50_N7PIW9	0.000223146	1.47416e-05
+Predicted protein	4.27842e-05	0.000195894
+HTH type transcriptional activator aaeR	0.000127965	0.00324436
+hypothetical protein	1.37351e-05	2.01666e-05
+50S ribosomal protein L23	7.20746e-06	0.000351708
+hypothetical protein	5.8621e-05	1.91197e-05
+Large exoprotein involved in heme utilization or adhesion	4.2876e-06	1.64535e-06
+GntR family transcriptional regulator	7.26146e-05	1.13231e-05
+Adhesin like protein	1.34981e-05	2.75739e-06
+UniRef50_F0KJQ4	0.000141141	0.0032277
+Metallo beta lactamase domain protein	5.98957e-05	1.3796e-05
+hypothetical protein	2.4301e-05	0.000138731
+Protein PhnA	0.00487252	0.00104432
+tRNA specific adenosine deaminase	0.000934857	0.000235656
+Molybdate metabolism regulator	0.00180474	0.000421382
+di  tricarboxylate transporter	2.37438e-05	1.29468e-05
+PREDICTED	4.05766e-06	3.98549e-06
+ATP dependent 6 phosphofructokinase 2	0.000693406	0.000758056
+UniRef50_M4WU84	2.01747e-05	9.00235e-06
+Putative Holliday junction resolvase	2.29259e-05	8.7915e-06
+Acetyl coenzyme A synthetase	8.75905e-06	2.91104e-06
+UniRef50_Q8P2Z1	0.000632893	5.44465e-05
+Transcription elongation factor GreA	0.0239465	0.00057405
+UniRef50_P50736	0.0130752	0.00216334
+Peptidase M75, Imelysin	0.00422333	0.000309342
+Sec independent protein translocase protein TatB	0.00549465	0.000952992
+FKBP type peptidyl prolyl cis trans isomerase SlyD	4.54925e-05	7.43845e-06
+Oxidoreductase, short chain dehydrogenase reductase family	0.000133728	0.000661107
+UniRef50_Q57935	0.00396006	0.0006563
+UniRef50_Q57936	0.000913672	0.000200413
+1,4 alpha glucan branching enzyme GlgB	2.46796e-06	3.81281e-06
+PREDICTED	1.16518e-05	6.29701e-05
+UniRef50_W6LVB0	0.000137212	0.000262662
+Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3	1.23775e-05	5.1533e-06
+hypothetical protein	2.26383e-05	4.08949e-05
+peptide ABC transporter permease	8.01551e-06	2.0608e-05
+DNA polymerase III subunit alpha	0.00360148	0.00275226
+UniRef50_R1DWQ7	0.000135705	0.000115109
+Phosphopantetheine adenylyltransferase	1.42274e-05	7.94205e-06
+UniRef50_P96719	2.39743e-06	5.37012e-06
+thioredoxin	0.000456179	0.000260141
+30S ribosomal protein S17	4.05986e-05	0.000130083
+DNA mismatch repair protein MutS	1.72612e-06	3.61636e-05
+Uridylate kinase	1.74121e-05	0.00139236
+hypothetical protein	7.54668e-05	1.51755e-05
+Integrase	0.00632974	0.000795458
+hypothetical protein	0.000175915	8.34072e-05
+AzlC family protein	1.21966e-05	5.19266e-06
+UniRef50_A0A023LDQ6	0.000554902	0.000221691
+UniRef50_E2BB01	4.14361e-06	7.56954e-05
+Glyceraldehyde 3 phosphate dehydrogenase	9.2051e-05	3.0529e-05
+UniRef50_F9YYR4	0.000377054	0.002892
+hypothetical protein	7.94888e-06	6.69785e-06
+Glucose 6 phosphate 1 dehydrogenase	0.00883813	0.000998814
+UniRef50_E3GES0	0.000444529	0.00101251
+UniRef50_L2V487	4.27948e-05	3.99495e-05
+LysR family transcriptional regulator	0.00286577	0.000503784
+Phosphopantetheine adenylyltransferase	3.93348e-05	8.67932e-06
+UniRef50_G8NQU3	5.43338e-06	3.92748e-06
+Glycoside hydrolase, family 3 domain protein	0.0003066	0.000616819
+UniRef50_Q8DUS0	0.00491858	0.00048875
+hypothetical protein	8.94882e-05	3.95336e-05
+Uracil xanthine permease	0.000591118	0.000194426
+UniRef50_G7PJ01	6.09595e-05	1.2082e-05
+UniRef50_K0K3W4	5.42767e-07	1.10878e-06
+UDP 2,3 diacylglucosamine hydrolase	0.000291826	0.00175629
+Periplasmic binding protein LacI transcriptional regulator	0.000110737	9.11502e-06
+UniRef50_Z2DT28	1.14544e-05	0.000142516
+Protein CsiD	0.00337214	0.000192879
+autoinducer 2 import system permease LsrD	1.25308e-05	1.43597e-05
+PTS family mannose fructose sorbose porter component IID	0.00599022	0.000107656
+Glycine oxidase ThiO	4.92758e-06	6.27715e-06
+E. coli fhuB gene involved in transport of ferrichrome	0.000141291	4.22519e-05
+UniRef50_G8LJW2	9.04951e-05	4.77235e-05
+UniRef50_A0A023KKD3	0.00249553	0.00097585
+N carbamoyl D amino acid hydrolase	0.0121186	0.000888529
+TRAP T family sorbitol mannitol transporter, DctM  subunit	0.0041086	0.000808796
+Hydroxyacylglutathione hydrolase	0.00016912	0.000797204
+UniRef50_U1LA38	2.97995e-05	1.72128e-05
+hypothetical protein	4.44885e-05	7.6825e-06
+hypothetical protein	3.03642e-06	4.4168e-06
+NADPH dehydrogenase	0.000226428	0.000731726
+UniRef50_I0E927	0.000191277	0.00155063
+Maltose mannitol ABC transporter substrate binding protein	0.00056413	0.000241511
+hypothetical protein	9.44367e-06	2.92738e-06
+UniRef50_P77256	0.00475056	0.000625381
+UniRef50_A0A024KCD9	0.000173429	3.63881e-05
+Chromate transporter, chromate ion transporter  family	2.43344e-06	1.21861e-05
+hypothetical protein	1.82833e-05	3.05766e-06
+Imidazoleglycerol phosphate dehydratase	8.25223e-05	1.47514e-05
+Transcriptional regulator	0.0103215	0.00147793
+UniRef50_W7X8F4	0.00031245	1.87317e-05
+UniRef50_C0D0V3	1.10816e-05	2.58733e-06
+hypothetical protein	3.40329e-05	3.49841e-05
+UniRef50_G7M5H1	0.000673077	0.000441399
+Dihydroorotase	3.92291e-06	4.61363e-06
+N6 adenine specific DNA methyltransferase, N12 class	0.0147831	0.0025693
+NADH quinone oxidoreductase subunit A 1	4.12363e-05	2.25091e-05
+UniRef50_G8UZP9	0.0119741	0.00204443
+UniRef50_A0RBY2	0.0141761	0.00236193
+hypothetical protein	0.00024471	2.17949e-05
+Peptidase M48 family protein	0.000379225	0.000211045
+Potassium efflux system protein KefA, putative	0.000544564	8.87592e-05
+OmpA MotB	7.23782e-05	2.50912e-05
+Carbamoyl phosphate synthase large chain	8.11957e-06	4.98408e-06
+L fuculose phosphate aldolase	0.00381065	0.0003117
+UniRef50_T1W827	0.000135724	1.87971e-05
+UniRef50_H6LQV6	0.0100233	0.00103604
+Electron transfer flavoprotein subunit alpha	0.000442295	0.00120297
+hypothetical protein	0.000670243	0.00011061
+Inorganic pyrophosphatase	0.000192313	0.00268389
+PilS cassette	9.52535e-05	0.000117944
+Cation diffusion facilitator family transporter	0.00435251	0.000577039
+Probable TonB dependent receptor NMB0964	5.26131e-05	0.00132907
+Tryptophan synthase alpha chain	0.00177853	0.000267689
+UniRef50_D3E165	0.00210151	0.000405678
+Peptidase like protein	2.79652e-05	8.43747e-06
+hypothetical protein, partial	4.48936e-05	0.000115048
+hypothetical protein	0.000494452	2.02642e-05
+hypothetical protein, partial	6.85142e-05	0.000131066
+Transcriptional antiterminator, BglG	0.00015605	0.000411431
+CRISPR associated helicase, Cas3 family	1.2842e-05	5.48369e-06
+UniRef50_F2IZL0	8.7071e-05	5.49727e-05
+UniRef50_Q9RZ59	6.24551e-05	0.0154101
+UniRef50_Q9RZ58	3.05382e-05	0.0270294
+Integral membrane sensor signal transduction histidine kinase	9.99649e-05	0.00063044
+Hemolysin	0.000548784	0.00187743
+Amino acid regulated cytosolic protein	2.01314e-05	1.80614e-05
+Electron transfer flavoprotein ubiquinone oxidoreductase	3.36251e-05	3.97515e-05
+O methyltransferase family protein	0.020191	0.00238913
+Xanthine dehydrogenase, small subunit	0.000166194	6.28306e-05
+hypothetical protein	2.23583e-05	4.00279e-06
+Metal binding protein	0.000139454	0.003231
+hypothetical protein	8.50408e-06	6.4689e-06
+N acetylgalactosamine permease IID component	0.00272841	0.00106751
+UniRef50_G8LUB7	7.3643e-05	0.000704347
+hypothetical protein	4.69734e-06	5.11293e-06
+LacI family transcription regulator	0.000571246	0.00034871
+Tryptophan synthase beta chain 2, chloroplastic	4.0864e-06	4.15353e-06
+UniRef50_S9V0M4	5.40452e-06	1.70505e-05
+UniRef50_K7EAU2	0.000389751	0.000456301
+prolipoprotein diacylglyceryl transferase	1.25499e-05	3.49784e-06
+tRNA dihydrouridine synthase	0.000531078	0.000812722
+Maltodextrin phosphorylase	4.44191e-05	0.0112875
+Tail fiber protein	0.000281315	0.00411634
+DNA gyrase inhibitor	0.00107942	0.0016602
+hypothetical protein	1.61188e-05	1.21036e-05
+UniRef50_V5T0I0	0.000638945	0.000292353
+IMPACT family member HI_0722	0.00111487	0.000526457
+UniRef50_G8B031	0.000465871	1.79496e-06
+Extracellular matrix binding protein EbhA	0.00185204	0.000259653
+Enoyl [acyl carrier protein] reductase [NADH]	4.93962e-05	3.23356e-05
+transcription termination factor Rho, partial	4.1839e-05	1.18594e-05
+peptide ABC transporter permease	2.5492e-05	4.22995e-06
+2 isopropylmalate synthase	5.77365e-06	0.0174241
+acetyltransferase	0.000143287	0.000205214
+UniRef50_F5ZCF3	6.80607e-05	1.6814e-05
+hypothetical protein	4.04969e-06	2.01868e-05
+Phosphate import ATP binding protein PstB	1.34271e-05	0.00192411
+Threonine synthase	0.00832432	0.00151835
+UniRef50_C6ST49	0.00321407	0.000270436
+hypothetical protein	1.48538e-05	0.000207508
+Alanine racemase	0.000238192	0.000197257
+Sulfur acceptor protein SufE for iron sulfur cluster assembly	6.04295e-05	9.45933e-06
+Phage integrase	0.00955916	0.00165344
+Imidazole glycerol phosphate synthase subunit HisF	0.000182066	0.0101923
+Superfamily II helicase and inactivated derivatives like protein	0.0120098	0.00168125
+Mg chelatase family protein	0.000462375	0.000647433
+UniRef50_D5UED6	6.4828e-06	1.22723e-05
+Aldehyde dehydrogenase	0.000379895	8.49431e-05
+Electron transport complex subunit RnfC	0.00147075	0.000281358
+peptide ABC transporter substrate binding protein	2.32442e-05	4.03528e-06
+UniRef50_A6M1H1	0.000172885	0.000432397
+UniRef50_A6M1H0	0.000737844	0.00172743
+PREDICTED	1.52137e-05	0.000131088
+UniRef50_Q54VM1	4.44756e-06	6.84977e-06
+hypothetical protein	2.58336e-05	2.03892e-05
+Proline permease	8.57813e-05	0.00262579
+hypothetical protein PFL1_03912	3.14247e-06	2.41131e-05
+FPRL1 inhibitory protein	0.00490545	0.000248712
+histidine kinase	3.16289e-05	1.37201e-05
+50S ribosomal protein L9	0.010598	0.00106076
+TadB domain containing protein	0.000151826	0.00460885
+hypothetical protein	5.34022e-05	7.35128e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	9.66117e-05	5.25245e-06
+Outer membrane protein 33	0.000309906	0.00114441
+Putative endonuclease	0.00943811	0.00109527
+sn glycerol 3 phosphate binding periplasmic protein UgpB	1.83519e-05	4.08873e-06
+hypothetical protein	3.2077e-05	2.65923e-05
+biotin synthase	3.83554e-06	3.04053e-06
+Conserved protein	0.00607906	0.000307483
+UniRef50_U3SS39	0.00299701	0.00130731
+Glutamine synthetase	0.00267217	0.000297188
+Transcriptional regulator, AsnC family	0.00788893	0.00160907
+hypothetical protein	1.01607e-05	1.27813e-05
+UniRef50_P76419	0.00442487	0.000531475
+UniRef50_K2JKB1	0.000495424	3.30804e-05
+Probable replication protein C	0.000136489	2.30807e-05
+Proline  tRNA ligase	0.00280896	0.00031682
+PREDICTED	5.04571e-05	1.44347e-05
+UDP glucose 6 dehydrogenase	5.0286e-06	6.04593e-06
+membrane protein	6.14079e-06	4.70966e-06
+hypothetical protein	0.000389174	3.96948e-05
+Glycerol kinase	0.00212127	0.00268518
+hypothetical protein	4.59922e-06	1.86934e-06
+hypothetical protein, partial	1.08743e-05	1.31287e-05
+Protein TolB	0.00133466	0.00094323
+UniRef50_V9VVJ4	0.000331469	4.14773e-05
+Chaperone protein ClpB	4.10759e-05	0.0016616
+Dihydroorotase, mitochondrial	0.00461143	0.00187373
+L lactate dehydrogenase	0.000114084	0.000137286
+DNA polymerase IV	0.00507996	0.00175625
+hypothetical protein, partial	0.00171212	4.94256e-05
+hypothetical protein	2.31525e-06	1.61524e-06
+Transposase	0.004426	0.00166979
+PREDICTED	7.47148e-06	1.74488e-05
+UniRef50_K0RGV2	3.79774e-05	0.000569455
+UniRef50_O32254	0.00228915	0.000474709
+Putrescine transport system permease protein	0.000142004	0.00150776
+UniRef50_A0A020D651	0.0189929	0.00284389
+DNA directed RNA polymerase subunit beta	9.27514e-06	1.65694e-06
+Agmatinase	0.0048538	0.000227811
+thioredoxin	6.93699e-05	3.46388e-05
+Transcriptional antiterminator, BglG	0.000203419	0.000219543
+UniRef50_A3LGV5	0.000231886	0.000191124
+hypothetical protein	6.55902e-05	8.27927e-06
+Peptide deformylase 2	1.23447e-05	1.26618e-05
+ATP phosphoribosyltransferase regulatory subunit	0.0124884	0.000155881
+UniRef50_B8DEF0	0.000186402	0.000955158
+SAM dependent methyltransferase	0.000417992	0.00186146
+Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.00123458	0.000545766
+hypothetical protein	4.63226e-06	8.1044e-06
+UniRef50_UPI000350E4F1	2.13478e-06	1.71395e-06
+Choloylglycine hydrolase	0.0166211	0.00069067
+Type II IV secretion system protein, TadC subfamily, putative	0.0109799	0.00126074
+Two component response transcriptional regulator , putative	0.00548804	0.000152178
+homoserine dehydrogenase	2.62345e-05	9.15901e-06
+UniRef50_V5NWP2	0.000722661	0.00055089
+serine hydroxymethyltransferase	0.00021184	8.95763e-05
+UniRef50_J4KJN9	7.32417e-05	0.00338228
+UniRef50_W8KL45	2.77246e-05	2.26916e-05
+Alpha beta hydrolase fold protein	0.00274236	0.000625334
+UPF0246 protein Dshi_3333	0.00112863	0.000127899
+Diguanylate cyclase	0.00453013	0.000507993
+PcsB protein	0.00029584	9.86647e-05
+benzoate transport protein	2.67914e-05	2.0403e-05
+UniRef50_G2KZ81	0.00113915	0.000175019
+UniRef50_W7Y3S8	0.000148342	3.70875e-05
+hypothetical protein	1.6098e-05	2.07188e-05
+hypothetical protein	7.84728e-06	8.09466e-06
+Aldo keto reductase	0.000999242	0.0234652
+hypothetical protein	0.000813032	0.000182624
+Baseplate J family protein	0.00041277	0.000495503
+Fe dicitrate transport ATP binding protein FecE	0.00174415	0.00103452
+Transcriptional regulatory protein, C terminal domain protein	0.00145625	0.000208802
+RbsA	0.00358453	0.000238543
+FAD dependent oxidoreductase	2.21952e-05	7.18942e-06
+Glycine betaine ABC transporter ATP binding protein	0.00272514	0.000124701
+Penicillin amidase	0.00065901	0.00107848
+Aspartate ammonia lyase	0.000492462	0.00267758
+hypothetical protein	0.000780776	4.29954e-05
+hypothetical protein	1.20311e-05	3.25536e-06
+UniRef50_A6LPZ8	0.000588216	0.00113148
+3,5 cyclic adenosine monophosphate phosphodiesterase CpdA	0.00365528	0.000572378
+Zinc import ATP binding protein ZnuC	1.96053e-05	4.84607e-06
+UniRef50_A6LYB4	0.000294848	0.00129938
+Iron ABC transporter permease	0.000120483	0.00143658
+TelA like protein SH1505	0.0167106	0.00230627
+hypothetical protein, partial	3.76318e-06	3.29422e-06
+HlyD family secretion protein	0.00166262	0.000100995
+UniRef50_W4HIJ8	1.05497e-05	6.97825e-06
+tRNA rRNA methyltransferase 	0.000545019	0.00358135
+hydroxyethylthiazole kinase, partial	9.5961e-06	9.07795e-06
+Sulfate thiosulfate import ATP binding protein CysA	0.000292944	6.37774e-05
+UniRef50_R4QLQ3	0.000197664	0.0048446
+L ornithine 5 monooxygenase	0.000210142	9.94295e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00408072	0.000603725
+Glutamate aspartate transport system permease protein GltJ	0.000780846	0.00025429
+dTDP glucose 4,6 dehydratase	4.69817e-06	3.35845e-06
+UniRef50_Q9HZR2	0.00196749	0.000787805
+Acyl CoA dehydrogenase domain protein 	0.000127179	0.000206482
+UniRef50_J8RY92	0.000382442	0.000214069
+hypothetical protein	7.23486e-07	1.4737e-05
+TonB dependent outermembrane receptor	3.96406e-05	0.000155852
+LysR family transcriptional regulator	4.70487e-06	4.16267e-06
+UniRef50_Q9RRV3	0.00113343	0.0286849
+DNA directed RNA polymerase subunit beta	3.92441e-06	7.95927e-07
+L xylulose 5 phosphate 3 epimerase	9.30268e-05	1.85313e-05
+Periplasmic binding protein LacI transcriptional regulator	6.60601e-06	1.67801e-05
+transcriptional regulator	1.53134e-05	3.50028e-05
+ABC transporter	3.35403e-05	3.21505e-06
+Proline iminopeptidase isoform 3	6.7452e-06	5.08952e-06
+hypothetical protein, partial	3.08364e-05	2.07253e-05
+Marine sediment metagenome DNA, contig	0.000376857	3.8699e-05
+UniRef50_A8LHX0	0.00424997	0.00144725
+Predicted protein	4.7899e-05	8.401e-06
+Polyphosphate kinase	0.00995801	0.00176141
+branched chain amino acid ABC transporter permease	7.10939e-05	0.000146654
+UniRef50_F0KJN4	0.000315372	0.00368551
+UniRef50_G7U3Y8	0.000576114	0.00332716
+UniRef50_B9QYQ7	0.000326873	0.000171701
+LysR family transcriptional regulator	0.000142204	0.0031099
+Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase	0.00326436	0.000215098
+Transposase for insertion sequence element IS257 in transposon Tn4003	0.00425247	0.000734558
+UniRef50_P32703	0.00253014	0.000512594
+UniRef50_P32704	0.00240316	0.000688041
+Protein NrdI	1.40747e-05	2.39834e-05
+Protein FimF	0.00133316	0.000170047
+hypothetical protein	3.01052e-06	2.0247e-06
+hypothetical protein	0.00017545	9.36499e-05
+Bifunctional protein FolD	0.0101619	0.00252198
+UniRef50_E6JRH7	0.00134111	3.25453e-05
+metallophosphoesterase	2.59715e-05	2.88437e-05
+UniRef50_K2CFL6	1.88018e-05	4.77244e-05
+ATP dependent DNA helicase RuvA	6.57843e-06	2.76864e-05
+UniRef50_F0L985	0.00660488	0.000961433
+hypothetical protein	6.97586e-05	2.97873e-05
+Amino acid permease associated region	0.000204395	0.000260026
+UniRef50_D0L5P3	0.000134791	0.00305256
+hypothetical protein	1.07363e-05	7.70141e-06
+PREDICTED	4.50084e-06	8.45125e-07
+Signal peptidase I	0.00971026	0.00104692
+Pyridoxal biosynthesis lyase PdxS	1.40922e-05	5.27772e-06
+Protein YhjK	0.00673629	0.000496391
+Haloacid dehalogenase like hydrolase	0.000140229	0.000364422
+Transcriptional regulatory protein LiaR	0.00020796	0.0014988
+Adhesin like protein 	3.56494e-05	1.39045e-05
+hypothetical protein	4.00556e-05	8.80425e-06
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.000952496	0.000337537
+UniRef50_A6LTK4	0.000599503	0.00078999
+Glucose 1 phosphate adenylyltransferase	6.46836e-06	6.86094e-06
+hypothetical protein	7.77562e-05	1.24979e-05
+hypothetical protein	7.77922e-05	2.86016e-05
+UniRef50_A3PP31	0.00624585	0.00169926
+UniRef50_X2XBL9	2.0385e-05	2.34805e-05
+L iditol 2 dehydrogenase	4.32058e-06	1.17225e-05
+UniRef50_Q1GD82	0.000225798	2.09695e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.65378e-05	4.57664e-06
+Histidine  tRNA ligase	0.0026928	0.00108375
+Gamma aminobutyrate permease	0.000235437	0.00212567
+Protein translocase subunit SecA 2	0.00018126	0.00141317
+Phosphate binding protein PstS	0.00338883	0.000951429
+UniRef50_R6P001	9.62734e-06	7.68385e-06
+hypothetical protein	8.58806e-06	7.63711e-06
+UniRef50_A5IWE0	0.043665	0.00494616
+UniRef50_K2AF05	0.00169099	0.000415908
+UniRef50_UPI0003C10267	4.65198e-05	8.32027e-05
+UniRef50_P39393	0.00145987	0.000400753
+Formamidopyrimidine DNA glycosylase	6.94583e-06	2.81629e-05
+UniRef50_D8JEM9	9.58828e-05	0.00198061
+Putative monovalent cation H+ antiporter subunit A 	3.6493e-05	7.13414e-06
+UniRef50_F9KEG1	0.000133275	7.70657e-05
+Membrane protein	0.00288118	0.000707059
+Mercuric resistance operon regulatory protein	0.0100503	0.00170206
+ECF RNA polymerase sigma E factor	0.00777874	0.000493131
+hypothetical protein	3.03478e-05	9.79429e-06
+Chromosome undetermined SCAF13832, whole genome shotgun sequence	2.8306e-05	5.95978e-06
+UniRef50_A3Q0W3	3.67483e-05	2.27596e-06
+Queuosine precursor transporter QueT	0.00549504	0.00124327
+Probable GTP binding protein EngB	0.00127418	0.00121702
+sugar ABC transporter permease	0.000226243	0.000211053
+UniRef50_A6V513	1.79174e-05	7.14308e-06
+Aldo keto reductase	0.00456473	0.00189712
+Transcriptional regulator, GntR family	0.000755077	0.000128448
+Cold shock protein	0.003846	0.00144605
+Pyruvate ketoisovalerate oxidoreductases common subunit gamma	0.004518	0.000847027
+Reverse transcriptase	0.000169903	0.00327944
+UniRef50_D4HAZ8	0.000178539	0.00231293
+UniRef50_I6X2N5	0.000119343	0.00176815
+Type 4 prepilin like proteins leader peptide processing enzyme	0.00214132	0.0003261
+UniRef50_D5WUG2	4.73043e-05	0.000546539
+Sulfate thiosulfate import ATP binding protein CysA	0.000187325	4.63829e-05
+UniRef50_Q04DG6	1.00759e-05	2.56489e-06
+succinylarginine dihydrolase	1.01808e-05	1.97821e-05
+3 oxoacyl ACP synthase, partial	9.00739e-06	1.34052e-05
+DNA directed RNA polymerase subunit alpha	7.81625e-06	7.24566e-06
+Outer membrane protease IcsP	0.00353358	0.00041717
+haloacid dehalogenase	4.85583e-05	7.0314e-05
+Elongation factor P	0.0217263	0.0014244
+Quorum sensing regulator protein G	0.00246481	0.000143426
+UniRef50_B9JX75	1.06069e-05	9.91287e-06
+ABC transporter permease	0.000258418	1.3188e-05
+UniRef50_F0Y8P3	5.67848e-05	6.11153e-05
+UniRef50_V7EH29	1.89931e-05	2.14361e-05
+UniRef50_Q5HN04	0.00924896	0.00248443
+Dihydroneopterin aldolase	0.00207225	0.000250796
+UniRef50_Q5HN02	0.00455765	0.000766484
+UniRef50_UPI00046B8737	2.85734e-05	9.52363e-06
+hypothetical protein	1.34018e-05	6.20266e-06
+UniRef50_C0HG71	2.79622e-05	2.55073e-05
+Cystathionine gamma lyase	0.000284909	0.000107914
+translation initiation factor IF 3	1.966e-05	1.20391e-05
+Bifunctional protein FolD	2.1072e-05	1.42847e-06
+UniRef50_V4Q726	0.000147082	1.81804e-05
+UniRef50_H9KRJ0	7.71243e-05	5.50093e-05
+Porin O	0.000834689	0.000200369
+chemotaxis protein	9.87309e-05	5.6354e-06
+Arginase	0.00195397	0.000479851
+High affinity K+ transport system, ATPase chain B	1.41529e-05	1.95925e-05
+hypothetical protein	7.50553e-06	5.91262e-06
+GCN5 related N acetyltransferase	0.0383996	0.000674574
+Cation efflux system protein	0.00645903	0.000464653
+UniRef50_I7EYE9	0.000289782	3.74287e-05
+UniRef50_W8S3E2	0.000160533	2.06688e-05
+hypothetical protein	1.52646e-05	6.49231e-06
+UniRef50_J5HWF5	6.49128e-05	0.000159578
+Dihydroxy acid dehydratase	0.00679872	0.0379465
+Periplasmic nitrate reductase	0.0100775	0.00113763
+UniRef50_K4VY87	0.000953259	0.000393793
+ABC transporter ATP binding protein	2.49661e-05	4.2557e-06
+Transcriptional regulator, RpiR family	0.000142004	0.000649522
+Putative protein BeeE from lambdoid prophage e14 region	0.00380184	0.000223345
+UniRef50_D2J7Y2	0.0447079	0.00561806
+Lipoprotein, YaeC family	0.00020827	0.00050368
+UniRef50_A4EAB4	1.10656e-06	0.000159999
+UniRef50_A0A017HMY7	0.00256887	0.000140426
+hypothetical protein	9.77034e-05	1.60722e-05
+hypothetical protein	6.46258e-05	7.59508e-06
+UniRef50_A0A011PBV4	0.000383896	6.4323e-05
+Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein	0.00237069	0.000367509
+Transcriptional activator protein FnrL	0.00973966	0.00170276
+UniRef50_V9AR48	2.66172e-05	5.89717e-05
+hypothetical protein	0.000269297	0.000106434
+FlaF protein	0.0195906	0.00216865
+Acetylglutamate kinase	5.52398e-05	1.1271e-05
+ATP dependent Clp protease adapter protein clpS	0.000669113	2.32779e-05
+hypothetical protein	1.15516e-05	1.95397e-05
+DNA directed RNA polymerase subunit alpha	1.04253e-05	4.40257e-06
+Crotonyl CoA reductase	0.00967629	0.00147253
+Protein YebF	0.000285211	0.000501591
+Phosphofructokinase	0.000966566	0.000497601
+UniRef50_M9RJL9	0.000338012	2.46475e-05
+Thymidine kinase	1.70742e-05	1.46332e-05
+putative transmembrane efflux protein of the MFS type	1.24876e-05	3.51856e-06
+UniRef50_UPI00038F2DE3	1.44781e-05	3.52619e-05
+Os01g0349000 protein	1.01161e-05	3.42561e-05
+hypothetical protein	4.40275e-05	2.56182e-06
+UniRef50_A6U352	0.000764883	0.000278835
+hypothetical protein, partial	1.67177e-06	1.25196e-06
+UniRef50_X1XJA7	0.00369702	0.00217676
+Beta hemolysin	0.00814522	0.00274057
+binding protein dependent transporter inner membrane component	5.5139e-05	5.02308e-05
+Adenylate kinase	7.06591e-06	1.22876e-05
+Adenylosuccinate lyase	0.0375401	0.024938
+Threonine synthase like 2	2.98218e-06	3.71321e-06
+Protease LasA	0.00030862	0.000118294
+Fatty acid  CoA ligase, putative	6.69526e-05	0.00901514
+Carbamoyl phosphate synthase small chain	9.94725e-05	0.00158371
+UniRef50_G2QDG1	1.4088e-06	6.86783e-07
+Transcriptional regulator, BolA protein family	2.36209e-05	4.12382e-05
+UniRef50_A6UYT5	0.000244328	0.000374183
+ATP dependent helicase deoxyribonuclease subunit B	0.000440929	0.000880312
+ABC transporter permease	0.00358326	0.000912426
+Beta glucuronidase	0.00101414	0.000104411
+UniRef50_E0TN47	4.44974e-05	4.62332e-05
+UniRef50_Q09677	0.00057694	0.0014008
+UniRef50_D3QCP0	0.0154664	0.00290347
+Copper transporting ATPase 2	3.92355e-06	6.31059e-05
+UniRef50_Q3JV89	3.92954e-06	8.7524e-06
+UniRef50_F2AIV2	0.00232445	0.000117768
+cardiolipin synthetase	2.08412e-05	1.83861e-06
+competence protein ComL	0.000437538	9.72998e-05
+DNA methylase N 4 N 6 domain protein	0.000184579	0.00292076
+Prophage antirepressor	0.0066076	0.00194607
+Serine protease SplA	0.00655207	0.000256929
+AAA ATPase	0.00018397	0.000727945
+Binding protein dependent transport systems inner membrane component	0.00595758	0.000701709
+PREDICTED	4.6508e-05	3.17889e-05
+Superoxide dismutase [Mn Fe] 1	0.00666472	0.000191136
+peptide ABC transporter permease	0.000182925	5.73255e-05
+Marine sediment metagenome DNA, contig	1.5693e-05	9.82949e-06
+hypothetical protein, partial	0.000101085	0.0317035
+hypothetical protein	0.000112178	9.82172e-06
+Ribonuclease PH	0.00595039	0.00213679
+hypothetical protein	8.66485e-06	6.95659e-06
+UniRef50_V4Z1T8	3.94747e-06	1.83975e-06
+UniRef50_W7WAI9	2.06578e-05	3.29293e-06
+IucC family siderophore biosynthesis protein	0.0121706	0.00199402
+UniRef50_I1ZP85	9.91202e-06	0.00238161
+UniRef50_Q3IV82	0.0226769	0.00328498
+UniRef50_Q3IV81	0.00626645	0.00042872
+Thiamine pyrophosphate protein domain protein TPP binding	0.000611378	0.000608148
+ABC transporter related protein	0.00328272	0.000124875
+UniRef50_A5UMH6	0.00300643	0.00032181
+UniRef50_C4J6F8	7.21738e-06	7.43692e-05
+UniRef50_Q3IV88	0.00906825	0.000251997
+hypothetical protein, partial	6.98998e-05	8.81461e-06
+NADPH dependent 7 cyano 7 deazaguanine reductase	0.0147648	0.00587731
+hypothetical protein	1.36698e-05	3.89208e-06
+Hemolysin activator protein	0.000492174	7.42637e-05
+Probable deoxyhypusine synthase	0.0023367	0.001197
+PREDICTED	4.32111e-06	4.68646e-06
+3 oxoacyl [acyl carrier protein] synthase 1	0.00926426	0.00604533
+Carbamate kinase 1	0.0157416	0.00713851
+UniRef50_E4N8R6	1.1707e-05	2.96475e-05
+sodium	2.89659e-05	6.75709e-06
+Molybdopterin guanine dinucleotide biosynthesis protein MobA 	2.44724e-05	1.39092e-05
+50S ribosomal protein L3	4.53321e-06	3.65763e-05
+UniRef50_F0MZ05	0.000440083	0.000146468
+Short chain dehydrogenase reductase SDR	9.9082e-05	0.00421225
+hypothetical protein	1.05759e-05	0.00114677
+UniRef50_R5WF49	1.7724e-06	1.94055e-05
+MerR family transcriptional regulator	0.000826212	6.09951e-05
+Ribose import ATP binding protein RbsA	0.000284074	0.00074424
+UniRef50_G7SI90	7.84148e-06	7.85999e-06
+Formamidopyrimidine DNA glycosylase	7.67229e-06	0.00423501
+Na translocating NADH quinone reductase subunit B	0.000743306	0.00145767
+Dimethylmenaquinone methyltransferase	0.00472798	0.000693916
+UniRef50_D0KX67	5.49244e-06	0.000125583
+GTPase HflX	0.00030595	0.00227798
+Dihydrofolate reductase	2.14626e-05	0.000395057
+hypothetical protein	2.77071e-05	5.13968e-06
+peptidase C60	2.03533e-05	4.75625e-06
+NAD dependent epimerase dehydratase	0.000132674	0.000646498
+UniRef50_E0NNQ0	0.000220458	0.00129169
+Cyclic 2,3 diphosphoglycerate synthetase	0.00346101	0.000339432
+UniRef50_Q9RX12	0.000230679	0.021691
+replication initiation protein RepC	4.29776e-05	6.46349e-06
+Homoserine O acetyltransferase	9.45519e-05	0.00409277
+3 phosphoshikimate 1 carboxyvinyltransferase	0.0152942	0.00276451
+Ribosomal RNA large subunit methyltransferase H	0.000797326	0.00116911
+hypothetical protein	2.48051e-06	2.42699e-05
+Glycosyl transferase, group 1	0.000129838	0.00108158
+UniRef50_I1ENI9	2.70717e-05	1.62188e-05
+Tryptophan synthase alpha chain	5.38011e-06	6.64236e-06
+hypothetical protein, partial	2.23415e-05	0.000301664
+Oxygen insensitive NADH nitroreductase	0.000168274	0.000978589
+6,7 dimethyl 8 ribityllumazine synthase	0.00146325	0.0023995
+UniRef50_X9LDU8	0.00390383	0.000583274
+PREDICTED	2.09931e-05	2.04716e-05
+Replication protein B	0.018413	0.00299283
+UniRef50_C6ST62	0.00321474	0.000244253
+UniRef50_C6ST67	0.00424917	0.000786583
+dTDP 4 dehydrorhamnose 3,5 epimerase	9.26051e-06	1.74565e-05
+hypothetical protein	8.43704e-07	5.80784e-06
+Bifunctional adenosylcobalamin biosynthesis protein CobP	0.00378414	0.000329191
+PHP domain protein	0.0014594	0.000130123
+UniRef50_S9R0I2	8.8555e-05	1.18167e-05
+UniRef50_K7VG66	3.67684e-06	1.26193e-05
+PUCC protein	7.52007e-05	2.42353e-05
+PREDICTED	1.12484e-05	8.50386e-06
+UniRef50_M2WAS0	4.34901e-07	1.09092e-06
+Amine oxidase 	0.000193705	0.00329169
+Hypoxanthine phosphoribosyltransferase	0.000528234	0.000359171
+UniRef50_P75684	0.00098922	6.66961e-05
+Altronate oxidoreductase	0.000133872	0.00217615
+Porphobilinogen deaminase	0.0109393	0.00199036
+hypothetical protein	5.69602e-06	5.02501e-06
+hypothetical protein, partial	0.000120969	3.62163e-05
+Lipoprotein	0.000443262	0.000122993
+UniRef50_B5Y813	6.36069e-05	2.78006e-06
+sn glycerol 3 phosphate import ATP binding protein UgpC	0.015041	0.0019474
+acyl CoA dehydrogenase	4.94333e-06	1.37715e-05
+Glutamate 5 kinase	0.000592829	0.000701473
+Pirin family protein	8.52657e-06	3.80503e-06
+hypothetical protein	6.13921e-06	5.30561e-06
+Diguanylate cyclase  domain protein	5.01812e-05	0.00257739
+L rhamnose isomerase	0.0022001	0.00304049
+Isoform c of Nicotinate phosphoribosyltransferase	7.98853e-06	8.42433e-06
+RNA binding protein	5.13511e-06	3.05679e-06
+UniRef50_E5QTA2	9.56017e-05	3.85431e-05
+UniRef50_D8BS45	0.000102088	0.000240066
+Acetolactate synthase 2 catalytic subunit	6.09689e-05	0.000196148
+UniRef50_U3SQS3	0.00452914	0.000809058
+UniRef50_A6LWQ9	0.000329609	0.000865691
+UniRef50_A6LWQ8	0.000170261	0.000704255
+UPF0721 transmembrane protein y4hK	0.00121851	0.000363175
+UniRef50_Q4PDQ3	1.10363e-05	6.80321e-06
+UniRef50_A6LWQ2	0.000167437	0.000160044
+MULTISPECIES	4.64706e-06	4.32897e-06
+hypothetical protein	0.00127879	0.000246941
+hypothetical protein	2.68953e-06	2.31226e-06
+ChrA	8.56358e-05	0.000702436
+Glutathione transport system permease protein GsiC	0.00166893	9.79115e-05
+SpoU methylase family protein	0.000234801	0.00177486
+UniRef50_B4V0E4	1.65337e-05	9.0676e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.00016668	2.72091e-05
+excinuclease ABC subunit A, partial	8.30178e-07	3.14365e-05
+protein tyrosine kinase	1.93751e-05	1.23719e-05
+Peroxidase	0.000201125	0.00162611
+GumN family protein	2.43057e-05	6.08622e-06
+hypothetical protein, partial	0.00268686	0.000139186
+UniRef50_K0SL40	1.0352e-05	1.92374e-06
+hypothetical protein	0.000159847	3.9303e-05
+UniRef50_E3EY41	0.000558583	1.04479e-05
+hypothetical protein, partial	2.82982e-05	1.02987e-05
+hypothetical protein, partial	5.94061e-05	2.61823e-05
+GntR family transcriptional regulator	0.000259549	0.000298289
+Peptide nickel ABC transporter, permease component, DppB	0.00251226	0.000540514
+Phosphoribosyl ATP pyrophosphatase	8.50515e-05	2.62112e-05
+UniRef50_A1B4P8	0.000518962	5.08425e-05
+hypothetical protein	2.93022e-05	1.02956e-05
+Ion transport protein	0.00104927	0.000356247
+UniRef50_B0VBT1	0.00019821	0.00312446
+hypothetical protein	2.51509e-05	1.23224e-05
+carbonic anhydrase	1.48796e-05	1.20361e-05
+chemotaxis protein CheW	0.000147365	5.32096e-05
+Putative membrane protein insertion efficiency factor	0.00210995	0.00132037
+Processing peptidase	0.00544343	0.000284172
+Poly beta hydroxybutyrate polymerase domain protein	0.00698217	0.00094999
+beta lactamase	2.38991e-06	1.83911e-05
+UniRef50_W4UEC1	0.000124727	0.000418778
+Val start codon	3.56067e-05	3.02116e-05
+NADH dehydrogenase 	0.000228187	0.000395308
+Heat inducible transcription repressor HrcA	0.00735273	0.000683119
+Lipoprotein, putative	0.000448297	8.42259e-05
+Transposase orfA IS5 family element	0.000243662	0.000116381
+OadB	0.00369606	0.00100251
+Transposase	0.000320589	8.05923e-05
+UniRef50_C1D0K2	0.000614561	0.0159511
+Phosphoglucomutase  phosphomannomutase family protein	0.000309528	0.000130434
+ABC type enterochelin transporter permease, partial	8.17776e-06	1.34899e-05
+ROK family protein	0.00341005	0.000253529
+Sugar efflux transporter A	0.00346918	0.000311335
+Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase	0.000492956	0.000168136
+Probable copper transporting ATPase HMA5	1.36414e-06	2.56923e-05
+Lipoprotein	2.73071e-05	6.17954e-06
+Probable ATP dependent helicase DinG	0.0028731	0.000339233
+Inner membrane protein YghB	0.00238884	0.000171345
+ATP dependent exoDNAse , alpha subunit helicase superfamily I member	0.000227873	0.00154259
+Ammonium transporter	0.00114442	0.00358627
+Alpha beta hydrolase fold	0.00845399	0.000237746
+UniRef50_A1VLE6	3.23316e-05	1.44574e-05
+Galactosyl transferase	0.00959476	0.00129554
+UniRef50_K2DS47	1.68872e-05	4.49086e-06
+UniRef50_H6RPX4	5.66887e-06	6.07475e-05
+ATPase P	2.82671e-06	2.29687e-05
+Alpha beta hydrolase fold protein	0.000820089	0.000810511
+50S ribosomal protein L5	0.000880302	0.000284057
+Homocitrate synthase 1	5.18976e-05	4.93477e-06
+UniRef50_K0TM89	0.000107271	1.15883e-05
+histidine kinase	2.22089e-05	3.13379e-06
+Ppx GppA phosphatase family	0.000371815	0.00265911
+UniRef50_R6TT37	1.24481e-05	0.000302531
+UniRef50_H9UYD8	0.000240392	0.000256528
+Putative gluconeogenesis factor	0.00253719	0.000392563
+hypothetical protein, partial	0.000150443	5.41948e-05
+ABC transporter, permease protein	0.000427934	0.000410774
+hypothetical protein	9.51695e-06	8.11291e-07
+NADH dehydrogenase	1.58519e-06	2.88885e-06
+UniRef50_A6QE51	0.000772083	0.000629014
+UPF0354 protein SA1564	0.0174659	0.00471297
+UniRef50_B9KRF2	0.00185228	3.34216e-05
+Malonyl CoA acyl carrier protein transacylase	0.0049104	0.00153006
+MFS transporter	7.87509e-06	3.92229e-06
+Trk system potassium uptake protein TrkA	0.00560025	0.000559491
+hypothetical protein	2.75368e-05	8.22795e-06
+Regulator of kinase autophosphorylation inhibitor	0.0153614	0.000809941
+UPF0301 protein BN682_00876	3.34547e-05	3.7419e-05
+UniRef50_W4U2A1	4.50479e-05	0.000652439
+Periplasmic binding protein	1.84508e-05	0.000756341
+UniRef50_Q2RS90	1.38114e-05	6.83522e-06
+deaminase	8.11141e-06	3.49527e-05
+Probable ATP dependent RNA helicase ddx27	1.78951e-06	2.22267e-06
+UniRef50_W7K686	0.000348704	0.000110374
+Metallophosphoesterase	2.15921e-06	1.91161e-06
+Para aminobenzoate synthase, amidotransferase component PabAb	0.00986273	0.000484345
+Short chain dehydrogenase reductase	1.33042e-05	0.00212103
+Iron sulfur cluster assembly ATPase protein	2.64589e-05	7.44895e-05
+ribosomal protein S12	6.49481e-05	9.06163e-05
+Glyceraldehyde 3 phosphate dehydrogenase	4.18791e-06	1.42176e-05
+UniRef50_R7PWP6	0.00258288	0.00102781
+5,6 dimethylbenzimidazole synthase	0.00190978	6.70836e-06
+Na H(+) antiporter subunit A1	0.0166598	0.00334435
+Aspartate  tRNA ligase	6.78982e-05	0.0158356
+Guanylate kinase	0.00176896	0.000403793
+Inner membrane protein CreD	0.00290041	0.000213336
+Radical SAM domain protein	7.42933e-05	0.000364992
+UniRef50_B9T7I1	5.03372e-06	1.0071e-05
+Polysaccharide deacetylase	0.000223868	0.00114302
+50S ribosomal protein L24	0.00129076	0.000607216
+PREDICTED	5.50537e-06	7.54438e-06
+UniRef50_F8WKJ0	0.0108622	0.00123696
+Putative membrane protein 	0.000196037	4.4346e-05
+PREDICTED	1.21288e-05	4.39821e-06
+Sialic acid transporter	0.000161229	0.00419387
+hypothetical protein	3.28534e-06	5.25405e-06
+AdiY	8.87991e-05	0.00341841
+UniRef50_B9KQL5	0.00156212	0.000238437
+ABC type sugar transport system, periplasmic component	0.00688567	0.00193703
+UniRef50_M3Y9H2	9.1949e-05	9.47646e-06
+Acetyl coenzyme A synthetase	1.79749e-05	0.000117091
+Periplasmic binding protein	0.000409426	0.000591044
+drug resistance transporter, EmrB QacA subfamily protein, partial	2.3323e-05	1.62843e-05
+Lactoylglutathione lyase	0.00528202	0.000210321
+NH dependent NAD(+) synthetase	2.23472e-05	3.61028e-06
+hypothetical protein	2.99247e-06	1.93579e-05
+O succinylhomoserine sulfhydrylase	1.39924e-05	6.93493e-06
+Rod shape determining protein RodA	0.000345117	0.00246555
+alpha amylase	4.98106e-06	2.14583e-05
+Macrolide export ATP binding permease protein MacB	5.22321e-05	0.000304884
+UniRef50_A5V3U8	3.18099e-05	0.000184248
+UniRef50_R1DQP4	3.38962e-05	1.20879e-05
+Predicted phosphatidylglycerophosphatase A related protein	0.00379097	8.34432e-05
+UniRef50_I7BLG8	0.000275071	3.55194e-05
+Glycosyl transferase, group 2 family	0.00808625	0.000361022
+Nitrate reductase Z subunit alpha 	2.40073e-05	9.23159e-06
+Serine aspartate repeat protein F	0.00296519	0.000597298
+Non canonical purine NTP pyrophosphatase	2.99258e-05	1.64718e-05
+UniRef50_Z9KIC6	7.66636e-05	5.74394e-06
+ATP synthase gamma chain	0.000366645	0.0015705
+hypothetical protein	2.27314e-06	1.74157e-06
+UniRef50_K0LW41	0.00403948	0.000231518
+Flagellar L ring protein	0.00361444	0.000818691
+Thiamine monophosphate kinase	0.000308845	0.0046567
+Octapeptide repeat protein T2 	2.49728e-05	1.30984e-05
+Starvation sensing protein RspB	0.00133111	0.000480119
+hypothetical protein	1.39014e-05	1.32723e-05
+pseudoazurin	0.000467134	9.82229e-05
+Lipoyl synthase	1.27185e-05	2.4402e-05
+ATP phosphoribosyltransferase	0.00258487	0.00131845
+ATP synthase subunit delta	0.000189072	0.000969324
+UniRef50_Q8DSS6	0.00646024	0.00212154
+hypothetical protein	2.00002e-05	3.57993e-05
+2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.000471836	0.000280578
+hypothetical protein	6.02336e-05	1.17694e-05
+hypothetical protein	1.28674e-05	3.57879e-06
+PREDICTED	1.61723e-05	1.36878e-05
+UniRef50_Q2CE09	0.000730377	0.000402962
+Flagellar protein, putative	9.49308e-05	3.54928e-05
+hypothetical protein	0.000210943	1.07042e-05
+UniRef50_Q9I3V2	0.000797869	0.000196076
+Metalloendopeptidase related membrane protein	0.000591107	0.00233051
+UniRef50_R4ZBM2	0.000467122	5.91468e-05
+D alanyl D alanine carboxypeptidase DacD	0.00252314	0.000272717
+UniRef50_M3Z6H8	1.36375e-05	1.87128e-06
+Phosphoenolpyruvate protein phosphotransferase	4.71577e-05	0.00297841
+Putative glutamate  cysteine ligase 2	0.000352784	7.39579e-05
+trehalose synthase	7.28308e-06	2.51482e-05
+hypothetical protein	3.86803e-06	2.32419e-06
+Cytosine specific methyltransferase	4.22269e-05	0.00198812
+Citrate synthase 1	2.55904e-06	1.00086e-05
+UniRef50_I1JAZ8	0.00053803	0.00015642
+hypothetical protein	1.54581e-05	1.5999e-05
+binding protein dependent transport systems inner membrane component, partial	0.000400088	0.000142474
+hypothetical protein	2.05666e-06	1.26791e-06
+ATP synthase subunit beta, mitochondrial 	1.18015e-05	3.71163e-06
+UniRef50_Q62KZ5	4.67164e-05	0.000158618
+Lipoyl synthase	0.000176203	0.0057586
+Trehalose operon transcriptional repressor	0.0155573	0.00127882
+UniRef50_B4UIY8	3.24793e-05	1.27913e-05
+Aconitate hydratase	1.19965e-05	6.35554e-05
+hypothetical protein	3.10742e-06	1.01023e-05
+Phospho 2 dehydro 3 deoxyheptonate aldolase	0.011044	0.00395238
+UniRef50_W5X5A5	0.0008765	1.83044e-05
+UniRef50_I6U3N4	0.000651384	0.000431658
+UniRef50_W8YU14	0.00146738	0.00011645
+hypothetical protein	2.02669e-05	1.30959e-05
+ABC transporter related protein	0.000124532	0.00305578
+transcriptional activator, partial	2.72919e-05	3.149e-05
+Transporter, major facilitator family protein	8.74152e-05	0.00145221
+Succinylornithine transaminase	0.00672615	0.0106004
+Alginate biosynthesis sensor protein KinB	0.00124054	0.000303054
+Iron sulfur cluster assembly ATPase protein SufC	1.2729e-05	0.000119427
+GTP binding protein LepA	5.07043e-06	1.22668e-05
+ABC transporter permease	5.93229e-06	3.42085e-06
+Acetyl CoA carboxylase, biotin carboxylase	0.00278876	0.000687281
+GntR family regulatory protein	0.0036654	0.00383595
+Thiol	0.000163373	0.00913048
+cobinamide kinase	3.64606e-05	6.042e-05
+Methylthioadenosine phosphorylase	1.81211e-05	1.04022e-05
+hypothetical protein PFL1_02724	5.47298e-07	1.30831e-05
+UniRef50_I6TWK1	0.00423549	0.000415928
+UniRef50_I0C256	0.00456104	0.000453459
+UniRef50_P64549	0.00126436	1.96418e-05
+MULTISPECIES	1.48776e-05	4.72952e-06
+hypothetical protein	5.11557e-06	5.50552e-06
+Phasin family domain protein	5.91794e-06	2.3312e-05
+UniRef50_A9CRC0	0.000212745	6.1905e-05
+UniRef50_U5NMP2	0.0146814	0.00271345
+DNA mismatch repair protein MutS	2.007e-06	1.78489e-05
+Threonine  tRNA ligase	7.0029e-05	4.70571e-05
+MULTISPECIES	2.23416e-05	0.000329107
+UniRef50_L7WQ34	0.00613202	0.000200413
+O antigen polymerase	0.00232144	0.000413607
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	3.04936e-06	1.85716e-06
+UniRef50_B9DK04	2.88901e-05	1.99676e-05
+UniRef50_A0A032Y4K4	7.8388e-05	7.59738e-05
+Ribonuclease 3	1.03689e-05	1.00674e-05
+Adenylate cyclase	0.00109823	0.000165919
+UniRef50_A0A024HYE6	4.0326e-06	3.46614e-06
+peptide ABC transporter permease	6.05617e-06	1.29398e-05
+ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein	0.000350382	0.000665154
+Decarboxylase	1.43881e-05	0.00105788
+L fuculokinase	0.00259962	0.000781873
+UniRef50_P46126	9.75874e-05	6.47891e-05
+UniRef50_P46122	0.00250112	0.000688224
+MORN domain protein	8.41371e-05	7.67392e-05
+NERD domain protein	0.000243492	0.000887179
+Agmatinase	0.000114732	0.000956107
+2 keto 3 deoxy L rhamnonate aldolase	0.0012667	0.00442869
+Potassium transporting ATPase C chain	0.00141798	0.000241115
+orotidine 5 phosphate decarboxylase	2.482e-05	7.3605e-06
+Na+ H+ antiporter	0.000189378	0.000487199
+UPF0266 membrane protein YobD	0.000220929	0.000483199
+transcriptional regulator	6.41463e-06	1.35933e-05
+hypothetical protein	1.51169e-05	9.94858e-06
+UniRef50_Q57MZ8	0.000197954	0.000127136
+hypothetical protein	5.35259e-05	2.04864e-05
+DinB YfiT family metal binding protein	0.000721175	0.00275272
+PREDICTED	3.53454e-05	0.00100254
+Uroporphyrin III C methyltransferase, putative	0.00834104	0.0023699
+hypothetical protein	2.98579e-05	1.03981e-05
+Acetate CoA transferase YdiF	0.00308204	0.000434998
+UniRef50_I3TTL9	0.00153939	0.000908353
+UniRef50_A6FD16	1.15177e-05	1.09128e-05
+ATP synthase F0 subunit I	2.42032e-05	2.21346e-05
+UniRef50_Q49W05	0.0155526	0.0183638
+2 oxoisovalerate dehydrogenase subunit alpha	0.000695019	0.00016458
+ADAM metallopeptidase with thrombospondin type 1 motif, 4 	5.27844e-05	0.000300882
+Cobyrinic acid a,c diamide synthase	0.000147606	0.00308563
+NAD glutamate dehydrogenase	0.000117813	0.00298874
+D alanine  D alanine ligase	6.40471e-06	3.97945e-06
+Sporulation domain protein	3.80628e-05	1.79067e-05
+1 Deoxy D xylulose 5 phosphate synthase	1.008e-05	0.000170247
+Integral membrane protein	0.000525773	0.00204366
+Response regulator receiver protein	0.000827249	0.000217229
+Enoyl CoA hydratase   Enoyl CoA hydratase [valine degradation]   3 hydroxyacyl CoA dehydrogenase	0.0128401	0.00111904
+UniRef50_L8WI83	3.99368e-05	2.00082e-06
+amino acid decarboxylase, partial	0.000183322	3.71993e-05
+UniRef50_D8JGA5	0.000395863	0.00265886
+Adenylyltransferase and sulfurtransferase MOCS3	1.81712e-05	1.78124e-05
+MULTISPECIES	4.8727e-05	1.79104e-05
+hypothetical protein	8.34357e-06	2.16173e-05
+UniRef50_I6SLY5	0.00173844	0.000329172
+Aspartate aminotransferase	0.00222322	0.000293314
+ABC type phosphate transport system, periplasmic component	3.20458e-06	2.42945e-06
+ABC transporter	2.64065e-05	1.63612e-05
+alcohol dehydrogenase	4.20538e-05	2.7486e-05
+UniRef50_U2Z8B8	1.45516e-06	2.26032e-05
+hypothetical protein	9.01837e-06	3.84251e-05
+Radical SAM domain protein	0.000105062	0.000795385
+ATP synthase subunit b	0.00233646	0.000252915
+hypothetical protein	2.23471e-05	4.99342e-06
+UniRef50_Q6F739	0.000112936	0.00379016
+UniRef50_W0GX12	0.000441965	0.000107688
+D ribose transporter ATP binding protein	3.45804e-05	2.86787e-06
+UniRef50_Q3JRC8	3.91513e-06	4.75046e-05
+Ribosomal RNA small subunit methyltransferase G	0.0214657	0.00221276
+Alcohol dehydrogenase GroES domain protein	0.00180355	0.000355881
+1 deoxy D xylulose 5 phosphate synthase	0.00555152	0.00059742
+Thioredoxin	0.00129007	0.000260246
+UniRef50_K0RB57	1.79458e-06	5.64535e-06
+UniRef50_N6UWS6	3.87835e-06	6.95698e-05
+UniRef50_P76234	0.00268753	0.000230812
+Bifunctional enolase 2 transcriptional activator	3.00854e-06	3.50753e-05
+Mutator mutT protein	0.00021211	0.00431081
+UniRef50_S5YFQ1	2.78305e-05	1.24264e-05
+UniRef50_A6M2M5	0.000329234	0.000537041
+TetR family transcriptional regulator	0.00013347	0.000457319
+HTH type transcriptional regulator MgrA	0.0146235	0.000406268
+OsmC like protein	3.56767e-05	1.91819e-05
+hypothetical protein	5.43207e-06	7.72002e-06
+UniRef50_X6KWY4	2.17449e-06	6.44944e-07
+Diaminopimelate decarboxylase	0.00254982	0.000746176
+PREDICTED	0.000777554	0.00012394
+hypothetical protein	9.7556e-07	2.23574e-06
+Peptide chain release factor 2	0.00896861	0.00118577
+UniRef50_F0YJ84	7.70683e-06	7.08324e-06
+ATP dependent DNA helicase, UvrD REP family	0.000363717	0.00019082
+PAC2 family protein	0.000544006	0.00406598
+Cytochrome c type biogenesis protein CcsA ResC	8.65905e-05	0.00115228
+isopentenyldiphosphate isomerase	4.39774e-05	7.00438e-06
+Acetylornithine aminotransferase	0.00432883	0.000110653
+Malate dehydrogenase 	0.000514124	0.000323481
+UniRef50_Q4MN04	0.000152926	5.63894e-05
+4Fe 4S binding domain containing protein	0.00210805	0.000167822
+UniRef50_Q9RVU1	0.000169974	0.00241219
+UniRef50_UPI000329107E	6.43202e-05	5.1553e-05
+Alpha amylase	0.000193075	0.000648565
+Dihydroorotate dehydrogenase B ), catalytic subunit	1.24373e-05	0.000145518
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0110578	0.000382617
+NADH quinone oxidoreductase subunit N	8.48442e-05	0.00166349
+Operon regulator SmoC	0.00475225	0.000228433
+Adenine deaminase	0.00120295	0.000564739
+Peptide methionine sulfoxide reductase MsrA 2	0.00313189	0.000300284
+Dihydroorotate dehydrogenase 	1.07533e-05	7.76564e-06
+3 hydroxyadipyl CoA dehydrogenase	0.00276189	0.000242572
+UniRef50_P70996	0.0380574	0.00256705
+hypothetical protein	1.88295e-05	2.5594e-05
+UniRef50_C7NA93	0.000480363	0.000505743
+UniRef50_V4QCD9	0.000576413	0.000157192
+hypothetical protein	2.70421e-06	3.0668e-06
+putative helicase	3.78735e-05	5.02585e-05
+ABC transporter related	0.00695225	0.000881205
+Probable malate	3.71753e-06	5.03413e-06
+UniRef50_E7BHI6	7.87866e-07	3.98181e-05
+UniRef50_E3A2J2	3.71705e-05	1.76677e-05
+Anthranilate phosphoribosyltransferase	0.00019095	0.00132641
+UniRef50_F2R2E2	4.08189e-05	5.73768e-05
+Polyamine aminopropyl transferase 2	0.00050805	0.000163414
+hypothetical protein	1.44778e-05	1.99082e-06
+ribosomal protein L17	2.64642e-05	1.25233e-05
+Transcriptional regulator, TetR family	0.000184917	0.000149144
+UniRef50_G8VIN9	0.00107944	0.00311426
+UniRef50_R9NMN5	2.52913e-05	6.11199e-06
+Amidohydrolase 3	0.000138229	6.31843e-05
+GlpM protein	0.000297831	0.000109415
+UniRef50_Q9HTQ5	0.000170034	0.000345648
+5 Nucleotidase domain protein	0.00571386	0.00080357
+Uroporphyrinogen decarboxylase	5.96488e-06	7.20562e-06
+UniRef50_Q9HTQ9	0.000157149	0.000395914
+Copper resistance protein A	0.000134451	0.000383807
+Phosphate regulon sensor protein PhoR	0.00202853	0.000432764
+hypothetical protein	6.78447e-06	7.05193e-05
+Binding protein dependent transport systems inner membrane component	0.000629783	0.00078724
+ABC transporter permease	1.42082e-05	3.08109e-06
+Phage head morphogenesis , SPP1 gp7 family domain protein	0.0124464	0.00238815
+hypothetical protein	4.69796e-05	4.10051e-05
+UniRef50_A3PNV6	0.0132352	0.00250509
+UniRef50_S1QWB9	9.17098e-06	8.6775e-06
+Porin thermoregulatory protein EnvY	3.64752e-05	4.11477e-05
+Transcription termination antitermination protein NusG	0.023507	0.00516202
+UniRef50_M4U471	3.80914e-05	1.52284e-05
+IMP cyclohydrolase	2.75112e-06	1.21072e-05
+UniRef50_E7BFN4	2.03425e-05	6.60669e-05
+Transcriptional regulator	0.00654739	0.000425521
+UniRef50_B9E705	0.00578044	0.00198881
+Peptidase, M24 family protein	0.000139105	0.00341135
+UniRef50_Q6A853	0.000106167	0.00269039
+transposase and inactivated derivatives	0.000363823	4.99795e-06
+Replication protein C	3.56824e-05	8.26157e-06
+ATPase	4.85407e-05	7.12439e-05
+B cell receptor associated protein related protein	0.00029211	0.0117001
+hypothetical protein	2.08645e-05	2.61293e-05
+Transport protein	3.56575e-05	2.56068e-06
+UniRef50_D3NUN2	0.00146654	0.000151425
+UniRef50_D3NUN3	1.31206e-06	1.35225e-06
+Thiol	0.00325554	0.000753939
+GTPase Der	0.00662962	0.00321384
+hypothetical protein	6.74505e-05	3.54306e-05
+Membrane bound lytic murein transglycosylase A	0.00028287	9.15927e-05
+Expressed protein 	0.000465487	6.51607e-05
+UniRef50_J7QRA8	7.73068e-05	5.66528e-05
+Demethylspheroidene O methyltransferase	0.00018518	0.000171101
+MULTISPECIES	6.58649e-05	4.87127e-05
+hypothetical protein	6.36277e-05	6.73246e-05
+1 deoxy D xylulose 5 phosphate synthase	0.00016417	0.00111558
+Cysteine synthase B	0.000616054	0.00029391
+UniRef50_R6W8A5	0.000472464	0.000169633
+Aldehyde	6.06039e-05	0.000306912
+UniRef50_R7A897	0.00497835	0.00120796
+putrescine spermidine ABC transporter substrate binding protein	7.16561e-05	4.56967e-05
+Co chaperone protein HscB	0.0035765	0.000255797
+Cation transporting ATPase, E1 E2 family	0.000391328	3.27921e-05
+L malyl CoA beta methylmalyl CoA lyase	0.000572354	6.45722e-05
+ABC transporter	4.66051e-06	6.52678e-06
+UniRef50_Q16AG3	4.79566e-05	2.2427e-05
+Nitrite extrusion protein 2	2.83512e-05	0.000105491
+Molybdenum cofactor biosynthesis protein, MoaB	0.00224812	0.000261763
+Alanine  tRNA ligase	0.00414928	0.000338365
+2 iminoacetate synthase	0.00265778	0.00200381
+33 kDa chaperonin	0.000574834	0.000102028
+UniRef50_A6VEM4	0.00125614	0.000362036
+Peptide deformylase	0.0048097	0.00181495
+UniRef50_C3A4E4	1.52218e-05	0.000689578
+UniRef50_V4R261	3.56093e-05	0.000334981
+UniRef50_M1MAA9	0.000408976	0.00163159
+UniRef50_A3LL40	0.000744498	0.000779204
+cold shock DNA binding domain containing protein	1.02964e-05	8.91034e-06
+gluconokinase	4.36822e-06	4.28036e-06
+UniRef50_H0A701	2.31867e-05	3.41169e-05
+Molybdopterin biosynthesis protein  OR thiamin thiazole moiety synthesis (ThiF)	0.000133728	0.0047519
+Phospholipase D protein	7.16061e-05	0.0052752
+Transcriptional regulator, AraC family	0.00419209	0.000656725
+UniRef50_Q9HXP6	0.000821176	0.000289808
+UniRef50_S1SXR1	1.89603e-05	1.11442e-05
+Endoglycoceramidase	0.000142626	0.0022558
+branched chain alpha keto acid dehydrogenase subunit E2	2.63243e-06	2.26606e-05
+LysR family transcriptional regulator	0.000129608	0.00387733
+UniRef50_A7X0P1	0.0113223	0.00251043
+Malate dehydrogenase	3.00205e-05	1.16138e-05
+MscS mechanosensitive ion channel	0.00038232	0.00023455
+Putrescine transport system permease protein PotI	0.00428241	0.000774154
+Taurine transporting AtPase	0.00462187	0.000367372
+Fis family transcriptional regulator	0.00033075	4.2576e-05
+hypothetical protein	0.000977071	8.82041e-05
+Macaca fascicularis brain cDNA clone	0.000487899	7.98638e-05
+UniRef50_D6CV88	4.8752e-05	3.27499e-06
+hypothetical protein	1.14704e-05	5.86074e-06
+Phenol hydroxylase	0.000413418	4.31206e-05
+hypothetical protein	0.000186057	1.12049e-05
+KaiC 1	5.95574e-05	7.97892e-06
+hypothetical protein	0.000114768	2.39832e-06
+membrane protein	5.43467e-05	3.409e-05
+UniRef50_D8QF05	6.71e-06	1.57281e-05
+Adenylate kinase	2.74127e-05	2.54304e-05
+ParB like partition protein	9.87361e-05	9.67459e-06
+UniRef50_S1DY96	0.000196812	0.000349026
+permease	9.95706e-05	3.41037e-05
+hypothetical protein	0.000346544	5.80066e-05
+UniRef50_K2M4Q0	1.43336e-05	2.01688e-05
+Aminoacyltransferase FemA	0.00992805	0.00258789
+Inner membrane ABC transporter permease protein YdcU	0.00288705	0.000387863
+Membrane protein	5.08384e-05	0.00100544
+TPR repeat containing protein	6.45746e-05	7.50907e-05
+hypothetical protein	3.0296e-05	7.87625e-05
+hypothetical protein, partial	8.0245e-05	2.92311e-05
+Flagellar hook capping protein	6.40689e-06	4.97067e-06
+UniRef50_A4XQY6	0.0022395	0.000144349
+hypothetical protein	5.93296e-06	4.28809e-05
+hypothetical protein	0.000449664	0.00017399
+Signal peptidase I	0.00160254	0.000819047
+UniRef50_F8FZW4	0.000499208	0.000897849
+S layer protein, putative	3.24174e-06	9.23713e-05
+Adenine deaminase	2.22363e-05	3.69425e-06
+UniRef50_D7C3J3	2.20392e-05	0.000422266
+Integral membrane protein MviN	0.000572845	0.000170724
+hypothetical protein	2.58813e-05	1.07196e-05
+secondary thiamine phosphate synthase	1.25499e-05	1.10512e-05
+Cytochrome c oxidase subunit 3	4.78048e-05	4.69793e-06
+ATP dependent DNA helicase RuvA	1.01976e-05	4.8264e-06
+Putative osmoprotectant uptake system ATP binding protein YehX	0.00204559	0.000942558
+UniRef50_N6UWC7	9.98871e-05	5.63469e-05
+UniRef50_I0LGS3	1.06422e-05	8.73261e-06
+Sensory transduction protein LytT	0.000142807	0.000767033
+UniRef50_L1K958	0.0103999	0.00099761
+hypothetical protein	6.99253e-05	1.31841e-05
+Energy converting hydrogenase A subunit F EhaF	0.0021908	0.00061687
+hypothetical protein	7.31232e-05	1.09137e-05
+Galactosamine 6 phosphate isomerase	0.00252806	0.00272075
+hypothetical protein	5.61949e-06	1.1448e-05
+hypothetical protein	2.41417e-05	4.34946e-06
+UvrABC system protein A	0.00924277	0.0054215
+Acyl CoA dehydrogenase domain protein	0.000221721	7.49456e-05
+Phosphoribosylaminoimidazole succinocarboxamide synthase	0.013753	0.0058881
+UniRef50_R5W2L7	4.38251e-05	0.000537307
+Predicted type II restriction enzyme, methylase subunit	0.0050929	0.000315504
+Type IV pilus assembly PilZ	0.00015925	0.000294796
+NAD NADP dependent betaine aldehyde dehydrogenase	3.58077e-05	2.74103e-06
+UniRef50_Q7NYS3	0.000713455	4.44691e-05
+Anaerobic dimethyl sulfoxide reductase chain C	0.00151187	0.000647098
+DNA topoisomerase IV subunit B	0.000399165	0.000733244
+hypothetical protein	5.06438e-05	0.000137034
+Nitrogen regulatory protein	1.80216e-05	1.52945e-05
+Light independent protochlorophyllide reductase subunit N	5.69706e-05	1.11806e-05
+nitrogen regulatory protein P II 1	7.08012e-05	1.37149e-05
+Anti sigma B factor RsbT	1.70655e-05	0.00116
+UniRef50_E6PC05	6.0628e-06	3.38234e-06
+membrane protein	7.12067e-06	5.90491e-06
+ABC transporter	3.32146e-06	1.3312e-05
+Glucose fructose oxidoreductase	0.000187831	0.022615
+UniRef50_O27472	0.0032033	0.000422895
+dTDP 4 dehydrorhamnose reductase	0.00116512	0.000232593
+Drug resistance transporter, EmrB QacA subfamily	0.000447138	0.000436103
+hypothetical protein	0.000171861	0.00013945
+UniRef50_K4NLN5	8.28257e-05	0.0025693
+UniRef50_H3YKG2	0.000163094	0.000131709
+2 phosphoglycerate kinase	0.00284892	0.000980774
+NAD synthase 	6.07172e-05	0.000163489
+Arginine  tRNA ligase	0.00593901	0.00187238
+hypothetical protein	4.06951e-06	5.12884e-05
+hypothetical protein	6.40159e-05	4.86442e-05
+UniRef50_Q5HLR8	0.0169589	0.0023311
+sulfate ABC transporter permease, partial	3.69184e-05	9.55509e-06
+UniRef50_Q9JY28	7.67791e-05	0.00170555
+Capsular polysaccharide biosynthesis protein Cps4E	8.58566e-06	0.000434027
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.2772e-05	3.23503e-06
+Glycosyltransferase	0.00100443	0.000195689
+hypothetical protein	2.08207e-05	4.88401e-06
+UniRef50_R7E7K8	2.45225e-05	8.21308e-06
+Substrate specific component ThiW of predicted thiazole ECF transporter	0.0169631	0.00382737
+Ankyrin repeat protein	6.1049e-06	0.0030613
+UniRef50_Q3IW29	0.015588	0.000200413
+UniRef50_Q3IW25	0.00329341	0.000287589
+UniRef50_A7MPG3	0.00243501	0.0012847
+UniRef50_Q3IW20	0.0047756	0.00115202
+Serine acetyltransferase	0.00274891	0.000506562
+oxidoreductase, 2 nitropropane dioxygenase family protein	7.99836e-07	8.73443e-06
+hypothetical protein	1.19032e-05	6.09198e-06
+Tyrosine recombinase XerD	0.000113062	0.000231347
+Peptidase C14, caspase catalytic subunit p20	1.1311e-05	5.3476e-05
+UniRef50_Q9HU63	0.00021457	9.35953e-05
+50S ribosomal protein L33 1	0.00139745	0.000712578
+Replication associated protein RepA	0.0226609	0.00414848
+4E10_S0_1TJLC_004_N	0.000118814	8.43935e-05
+UniRef50_P76573	0.0068569	0.000464374
+hypothetical protein	5.14712e-05	1.01363e-05
+hypothetical protein	0.000731326	0.000106086
+UniRef50_S3X0W6	5.80479e-06	1.54428e-05
+UniRef50_Q4KG00	0.000823197	0.000172168
+UniRef50_B5GRY7	3.79356e-05	1.46345e-05
+UniRef50_R4GKT3	3.14267e-05	9.15104e-06
+UniRef50_A8TTI0	1.30463e-06	1.70708e-06
+ABC transporter, periplasmic solute binding protein	0.000569562	0.00017709
+UniRef50_I3TJX2	1.42924e-05	1.91753e-05
+UniRef50_P75748	0.00185618	0.000391792
+UniRef50_A5UKK3	0.00192556	0.000203849
+Pyrroline 5 carboxylate reductase	0.0137887	0.00398269
+histidine kinase	6.65269e-05	5.06582e-05
+hypothetical protein	0.000837025	0.000107922
+UniRef50_A5UKK6	0.00177407	0.000451554
+Sulfate permease	0.00020046	0.00419061
+hypothetical protein RSP_4057	0.00318432	0.000956109
+UPF0761 membrane protein NMCC_0461	0.000298824	0.00135148
+UniRef50_Q5HRH1	0.00238866	0.00034666
+Cell division inhibitor SulA	0.0036193	0.000182861
+RNA binding S1 domain protein	0.00025302	0.021722
+UniRef50_I2F4T7	2.13202e-05	2.06031e-05
+hypothetical protein	0.00173217	0.000766236
+UniRef50_I0ZAW9	1.95478e-05	1.73833e-05
+Phosphotransferase enzyme family protein	0.0177262	0.00172082
+UniRef50_T2HS98	8.31458e-05	2.94751e-05
+UniRef50_E1I6F8	0.000216662	0.000192259
+hypothetical protein	4.78008e-05	2.42837e-05
+UniRef50_Q1QAV9	0.000164706	0.00207704
+GTP binding protein TypA BipA, putative	0.00551035	0.0030081
+3 oxoacyl [acyl carrier protein] synthase 3	6.95738e-05	4.96675e-06
+3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00402657	0.000272934
+hypothetical protein	0.000237213	5.51434e-05
+Bifunctional ligase repressor BirA	0.00284422	0.000488967
+UniRef50_Q1R618	0.00303973	1.77866e-05
+hypothetical protein	1.03136e-05	1.14638e-05
+Enterobactin exporter EntS	0.00251473	7.28773e-05
+UniRef50_C2XMN3	1.23642e-05	0.000471098
+3 methyl 2 oxobutanoate hydroxymethyltransferase	4.96154e-05	1.16837e-05
+Plasmid partitioning protein RepA	0.000235438	5.25452e-05
+UniRef50_Q1R614	0.00120206	0.00149724
+Chromosome partition protein MukB	0.00035684	4.02942e-05
+EmrB QacA family drug resistance transporter	8.74178e-06	7.22241e-06
+amino acid ABC transporter ATPase	8.12523e-06	0.000135272
+UPF0178 protein Rsph17029_2512	0.00517871	0.000202127
+Hypothetical 217 kDa protein Y4HQ	0.000119271	6.38881e-06
+glutaredoxin related protein	1.01438e-05	2.9971e-06
+hypothetical protein	8.34943e-05	1.85579e-05
+UniRef50_E1Z4K9	1.0125e-06	1.30961e-06
+Amino acid permease YtnA	9.57918e-05	0.00367036
+Ribosomal RNA small subunit methyltransferase H	5.03772e-06	4.86439e-06
+UPF0701 protein HI_0467	0.00123696	0.000534143
+Bifunctional protein	0.000321903	0.00378714
+NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.62084e-05	4.31214e-05
+Zinc binding dehydrogenase family protein	0.000646562	0.000348373
+Integral membrane sensor signal transduction histidine kinase	0.000215684	8.02367e-05
+hypothetical protein	5.15608e-05	8.80443e-06
+UniRef50_B9KX95	0.00129954	0.000559123
+FliB domain protein	0.000363497	0.000244437
+UniRef50_I0C729	0.0168866	0.00308163
+UniRef50_K1ZPS1	0.000205545	0.000441588
+hypothetical protein	1.63428e-05	6.14084e-06
+hypothetical protein	0.00049961	3.5921e-05
+Holliday junction ATP dependent DNA helicase RuvA	0.0210629	0.00163691
+Bifunctional protein PyrR	5.79571e-05	0.00522986
+alpha beta hydrolase	5.71808e-05	6.123e-06
+PdmP3	0.000135408	8.5736e-05
+UniRef50_A5V451	6.9626e-06	2.49115e-06
+transcriptional regulator	1.04834e-05	7.26658e-06
+serine threonine protein kinase like protein	6.14288e-05	9.76983e-06
+hypothetical protein, partial	2.30838e-05	4.65574e-05
+MAP domain protein	0.0077525	0.000506638
+UniRef50_R9T5B9	2.25506e-06	2.35093e-05
+translation initiation factor IF 3	0.000235726	0.000184113
+Glucose 6 phosphate isomerase	0.000276439	0.00167524
+Integrase	0.00332724	0.000456695
+hypothetical protein	0.000576949	0.000178849
+phosphate starvation inducible protein PhoH, partial	8.38911e-05	3.25818e-05
+Cell wall surface repeat protein	0.000375508	0.000942726
+Alpha ketoglutaric semialdehyde dehydrogenase	0.000845365	0.0146371
+Replication initiation protein RepC	0.000623094	7.04857e-05
+Protein PilG	0.0050278	0.000263299
+Probable coniferyl aldehyde dehydrogenase	0.000546109	6.32288e-05
+Cell wall binding repeat protein	1.25164e-05	0.000582899
+UniRef50_P09996	0.00356492	0.000391113
+Glycosyl transferase family 8	0.00468526	0.000331091
+Isochorismatase	0.00217411	0.00225899
+UniRef50_A3PIG7	0.000833736	0.000753796
+UniRef50_S5VV73	4.57071e-05	0.000570804
+Two component transcriptional regulator, winged helix family	0.00229297	0.000547706
+UniRef50_S9TC28	7.73177e-05	2.54392e-06
+Ser Thr phosphatase family protein	1.69659e-06	5.8913e-06
+UniRef50_UPI0003AE0E04	2.63972e-05	3.87059e-05
+Long chain fatty acid  CoA ligase	0.000137363	0.0168457
+Porin OmpL	0.00128537	0.00044229
+hypothetical protein	3.11797e-05	4.45469e-06
+Nucleoside diphosphate kinase	6.57034e-06	2.99014e-05
+5 nucleotidase	0.0135246	0.00236031
+Ferredoxin hydrogenase	0.000693651	0.000474905
+UniRef50_Q9RTC8	6.46713e-05	0.0425267
+Multidrug resistance like ATP binding protein MdlA	0.00343826	0.000831264
+NLP P60 protein	0.000102502	0.000385696
+2 deoxy D gluconate 3 dehydrogenase	0.000869587	0.000367925
+UniRef50_F9PRQ2	5.4345e-05	6.92192e-05
+UniRef50_Q9RTC4	0.00177131	0.0285919
+UDP N acetylmuramate  L alanine ligase	7.30004e-06	6.56359e-06
+UniRef50_A0A035VZJ1	0.000256233	4.15652e-05
+Phenazine biosynthesis protein PhzA 2	0.000402249	0.0101811
+Bifunctional uridylyltransferase uridylyl removing enzyme	0.000214396	0.00186875
+UPF0001 protein YlmE	0.0107311	0.00488036
+UniRef50_A6M141	0.000192841	0.00071028
+UniRef50_A6M140	0.000456853	0.000933852
+Ferrienterobactin receptor	0.0030226	0.000349701
+UniRef50_A6M142	0.000249248	0.000674411
+Citrate synthase	0.00080719	0.000237444
+UniRef50_R1BPA7	9.40754e-06	1.17427e-05
+hypothetical protein	3.19816e-06	6.05156e-06
+UniRef50_Q9AS52	0.000342813	0.000459231
+UniRef50_UPI00046DCEE5	3.63067e-06	5.64711e-06
+hypothetical protein, partial	1.52332e-05	8.91256e-05
+hypothetical protein	4.27215e-05	1.25179e-05
+UniRef50_K7U8Q8	1.47635e-05	1.01041e-05
+NADH quinone oxidoreductase subunit K	1.53137e-05	3.98386e-05
+Low salt glycan biosynthesis nucleotidyltransferase Agl11	6.11237e-05	8.23362e-06
+Nitrate reductase delta subunit	1.99448e-05	6.05261e-05
+UniRef50_Y1QWF2	8.58538e-05	3.89185e-05
+ATP dependent clp protease ATP binding subunit clpx isoform 1	9.5395e-06	1.13024e-05
+Type VI secretion protein ImpA	0.000433605	0.000217853
+hypothetical protein	7.60654e-05	2.44075e-05
+UniRef50_M2K3R6	0.00123128	0.00116604
+UniRef50_D1DKC6	0.000152179	0.00221721
+V type proton ATPase catalytic subunit A isoform 2	0.00354741	0.000603031
+Integrase core subunit	0.000174568	1.76992e-05
+Aluminium resistance family protein	8.03858e-05	0.00062754
+UniRef50_A4TTX4	1.52646e-06	2.3997e-06
+Predicted Zn dependent Hydrolase of the beta lactamase fold	0.000115785	0.00402976
+IS911 ORF2	3.33023e-05	3.26628e-05
+UniRef50_A6L5D3	8.38336e-06	0.00297513
+UniRef50_Q8CS32	0.0045207	0.00109389
+UniRef50_A8LE49	2.43878e-05	1.13372e-05
+UniRef50_Q8CS31	0.00232817	0.000859932
+UniRef50_A5WG67	0.000127615	0.00297765
+Putative Bifunctional P 450 NADPH P450 reductase	1.04559e-05	0.000156105
+putrescine spermidine ABC transporter permease	9.12521e-05	0.000186882
+hypothetical protein	1.02259e-06	3.60235e-07
+hypothetical protein	0.000148911	1.50592e-05
+UniRef50_F3QCE5	6.33068e-05	2.83276e-05
+UniRef50_A4WXK9	0.000450503	4.82974e-05
+UPF0093 membrane protein RHOS4_28450	0.0166155	0.00242442
+hemolysin type calcium binding protein	2.47998e-05	5.36204e-06
+Transfer complex protein TraG	0.0069537	0.000278346
+tRNA delta isopentenylpyrophosphate transferase	7.31268e-05	1.65714e-05
+oxidoreductase	4.98362e-05	2.28565e-05
+CvpA family protein	0.000206486	0.00228889
+MarR family transcriptional regulator	5.34602e-06	2.52245e-05
+Xylose isomerase domain containing protein	0.000312166	3.63526e-05
+Molybdopterin guanine dinucleotide biosynthesis adapter protein	0.00374251	0.000171019
+UniRef50_E2ZPK4	0.000609238	0.00015835
+Penicillin acylase	0.000189364	0.00520725
+UniRef50_E9BW21	1.84263e-05	2.47019e-05
+Predicted chaperone lipoprotein YacC, potentially involved in protein secretion	3.95305e-05	8.62118e-05
+O antigen transporter RfbX, putative	0.000210077	0.0339954
+UniRef50_I8QM64	3.5963e-05	0.00023158
+DNA polymerase IV	0.000121206	0.000453225
+Pseudouridine synthase	0.000329035	0.00288796
+malonyl CoA ACP transacylase	8.20808e-06	5.63248e-06
+Aspartate carbamoyltransferase	0.000171417	0.00310655
+Probable nicotinate nucleotide adenylyltransferase	0.0215188	0.00111127
+Acetoin	8.4021e-06	0.00160944
+diaminopimelate epimerase	4.55697e-06	5.65997e-06
+exodeoxyribonuclease III, partial	5.83113e-05	3.37435e-05
+CDP alcohol phosphatidyltransferase family protein	0.000548428	0.00158264
+UniRef50_Q3J0W1	0.00853396	0.000333348
+hypothetical protein	8.9391e-05	3.27628e-05
+Ig domain protein, group 2 domain protein	0.000258974	0.00047016
+30S ribosomal protein S6	0.00159131	0.00834869
+hypothetical protein	0.000362967	1.39644e-05
+hypothetical protein FG07361.1	1.13632e-06	2.98517e-06
+2 oxoisovalerate dehydrogenase subunit beta	0.000505176	0.000479759
+Urease accessory protein UreD	0.000179015	0.00379205
+Spore coat U domain protein	0.000923013	0.000199522
+hypothetical protein	8.22536e-05	6.31684e-05
+2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase	0.0019227	0.000124012
+UniRef50_F6T9R8	3.079e-05	7.95965e-05
+UniRef50_A1B620	2.44608e-05	2.50892e-05
+hypothetical protein	1.11775e-05	1.01777e-05
+hypothetical protein	2.17599e-05	5.64239e-05
+ATP synthase gamma chain	0.000370593	0.00353479
+hypothetical protein	4.02973e-06	2.30961e-06
+Blr4373 protein	0.00023814	6.03799e-05
+TetR family transcriptional regulator	7.75167e-05	7.43634e-06
+UniRef50_Q16B12	0.000211114	1.59872e-05
+Adenylyltransferase and sulfurtransferase MOCS3	3.31282e-06	3.54977e-06
+Glutamate racemase	0.00206886	0.000840177
+Carbohydrate ABC transporter membrane protein 1, CUT1 family 	0.000206472	0.000383756
+NADH dehydrogenase like protein SE_0635	0.00850826	0.00191782
+phospho 2 dehydro 3 deoxyheptonate aldolase	1.19554e-05	2.77314e-06
+Carbon starvation protein A homolog	6.13021e-05	0.00127007
+Cystathionine beta synthase	1.45013e-05	3.75256e-06
+Cupin domain protein	0.000143913	6.72651e-05
+UniRef50_V5VHC2	0.000313087	0.00346286
+UniRef50_K5X3B2	5.31378e-06	5.20561e-06
+PTS system N acetylglucosamine specific EIICBA component	0.00194326	0.000104852
+Diguanylate cyclase phosphodiesterase	0.00160809	0.0003801
+UniRef50_J7LDC8	9.92479e-06	9.52034e-06
+hypothetical protein	3.04752e-05	1.25301e-05
+BLUF domain protein	0.00260584	0.000203901
+UniRef50_Q3ST27	0.000101845	1.9606e-05
+hypothetical protein	5.36126e-06	1.8653e-05
+PREDICTED	7.4158e-05	5.26927e-06
+Succinate semialdehyde dehydrogenase [NADP]	1.7974e-05	9.15708e-06
+UniRef50_M3YVF8	9.35574e-05	3.27335e-05
+FkbH like protein	0.00276708	0.000326506
+GMP synthase [glutamine hydrolyzing]	0.000112276	7.66385e-05
+UniRef50_A3M428	0.000711375	0.00344917
+UniRef50_X6MXZ9	1.86113e-05	1.47553e-05
+Primosomal protein DnaI	0.011418	0.00109984
+Type II restriction endonuclease	0.00434369	0.000375978
+Helix turn helix domain containing protein, AraC type	0.000310146	0.000104159
+Glycerate kinase	0.00036156	0.00299881
+Acetamidase Formamidase	0.000488787	0.00026383
+Ornithine carbamoyltransferase	3.65236e-06	2.64998e-05
+Cytidylate kinase	0.000459413	0.00112032
+CAG pathogenicity island protein 23	0.000300362	0.00137624
+Metalloendopeptidase like membrane protein 	0.000370521	6.25141e-06
+Pyruvate formate lyase 1 activating enzyme	0.000347636	0.000560542
+CFA I fimbrial subunit C usher protein	0.00220732	0.000327955
+Isoform 2 of 1 deoxy D xylulose 5 phosphate synthase 1, chloroplastic	7.79214e-06	7.54104e-05
+phosphoheptose isomerase	9.43809e-06	9.73174e-06
+Putative phenol degradation enzyme	9.8069e-05	1.25807e-05
+UniRef50_W7WR24	0.00197306	0.000103212
+UniRef50_P37767	0.00175446	0.000129935
+UniRef50_F2AAA0	0.000192869	7.8006e-05
+Periplasmic sensor diguanylate cyclase 	0.00115553	0.000204638
+Two component transcriptional regulator	0.000360588	0.000135422
+Glutarate semialdehyde dehydrogenase DavD	0.00579339	0.000397664
+Ribosomal RNA large subunit methyltransferase E	7.18701e-06	2.48619e-05
+Endonuclease III	0.000164437	0.000603127
+Phosphate ABC transporter, periplasmic phosphate binding protein, PstS	0.000261419	9.39172e-05
+GTPase Der	6.74398e-06	6.85526e-06
+hypothetical protein, partial	1.46453e-05	2.31829e-05
+Outer membrane protein HopG	7.62572e-05	0.00218701
+Proline  tRNA ligase	3.88242e-06	7.20262e-06
+MULTISPECIES	4.01707e-06	3.09076e-05
+UniRef50_B8IMD9	2.45109e-05	2.17968e-05
+AMP dependent synthetase and ligase	0.000448698	0.00108547
+Uracil phosphoribosyltransferase	0.0294676	0.0211966
+Hsp20 alpha crystallin family protein	0.00395554	0.000457093
+hypothetical protein	0.000314596	2.95612e-05
+UniRef50_G9AD09	6.33816e-05	1.49843e-05
+SWF SNF family helicase	0.0044239	0.000395077
+Ribonuclease PH	0.000206443	0.00136796
+Enoyl [acyl carrier protein] reductase [NADH] FabI	0.000586603	0.00034225
+UniRef50_J9NZP9	9.77401e-05	2.25559e-05
+Uridylate kinase	0.00410059	0.00143477
+Glycosyltransferase EpsJ	0.000424929	0.000485199
+Flagellar FlaF family protein	0.000188813	0.00010007
+hypothetical protein	4.84316e-05	7.55987e-06
+Thiol peroxidase	0.00236328	0.000186663
+short chain dehydrogenase	4.64754e-05	5.80875e-05
+UniRef50_T1Y9K8	0.0246038	0.00367909
+UniRef50_UPI0003C0FD80	0.000110145	5.01988e-05
+Predicted protein	3.3673e-06	3.15643e-06
+NADH dehydrogenase, NADH nitroreductase	0.00559587	0.000462183
+UniRef50_D3QJ09	0.0113035	0.000928593
+Negative transcriptional regulator, CopY	0.00263286	0.000203594
+Thymidylate synthase	2.91305e-05	5.71277e-05
+UniRef50_UPI0004431E21	0.000107981	5.45091e-05
+Amino acid permease associated region	0.000348708	0.000377496
+hypothetical protein, partial	1.29331e-06	5.04965e-06
+Coenzyme PQQ synthesis protein D	0.000244264	5.4819e-05
+Delta aminolevulinic acid dehydratase	0.00956096	0.00115857
+L aspartate oxidase	0.00366637	0.00114685
+Malate synthase, glyoxysomal	1.50199e-05	1.0721e-05
+Purine ribonucleoside efflux pump NepI	0.00203568	0.000362766
+RecA like protein 	4.06095e-05	0.000207468
+hypothetical protein	4.03678e-06	3.8453e-06
+hypothetical protein	1.64535e-05	1.55118e-05
+Urease accessory protein UreD	0.0156188	0.00189793
+PREDICTED	1.04724e-05	3.62195e-06
+Bifunctional protein PyrR	0.000368932	0.00183236
+hypothetical protein	2.75042e-05	9.05204e-05
+Ribonuclease H	5.46227e-05	1.24851e-05
+Arginine ABC transporter permease protein ArtM	0.00230245	0.00017037
+UniRef50_W1TYY5	0.000290238	0.000696007
+Aspartate  tRNA ligase	3.21933e-06	7.9215e-06
+Predicted protein 	5.10677e-06	1.91002e-06
+cation transporter	3.43317e-06	3.8558e-06
+Adenylate kinase	0.000368337	0.000907385
+L fucose isomerase	0.00257779	0.000407056
+UniRef50_P77504	0.00323477	0.000841047
+Cysteine  tRNA ligase 	0.000109937	5.64111e-05
+UniRef50_G7U7R4	2.18593e-05	0.00374368
+UniRef50_Q5HR39	0.0071077	0.0010375
+Metal dependent transcriptional regulator	0.0115317	0.00226745
+UDP N acetylenolpyruvoylglucosamine reductase, partial	1.53298e-05	2.38356e-05
+ATPase, partial	2.37964e-06	7.01416e-05
+2 keto 3 deoxy phosphogluconate aldolase	0.000571312	0.000415247
+Ribonuclease HII	0.00730452	0.00221423
+gamma aminobutyrate permease, partial	1.84022e-05	4.97357e-05
+Peptide deformylase	7.35268e-06	5.5316e-06
+Acetylornithine acetyl lysine aminotransferase	0.000170126	0.0120883
+PGA biosynthesis protein CapA	0.000209592	0.000844934
+hypothetical protein	2.959e-06	6.62637e-06
+Periplasmic aliphatic sulfonate binding protein	0.000104518	0.000104644
+hypothetical protein	4.00643e-05	7.60461e-06
+sodium	9.23569e-06	8.01858e-06
+hypothetical protein	4.44084e-06	2.24781e-06
+Probable aldehyde dehydrogenase YwdH	0.0173086	0.00283122
+UniRef50_G8PQT7	0.000112063	1.51513e-05
+hypothetical protein	4.3815e-05	2.21176e-05
+Transcriptional regulator LysR family protein	0.0144155	0.00128471
+PpiC type peptidyl prolyl cis trans isomerase	0.000807012	0.000111546
+PREDICTED	2.12048e-05	3.93105e-06
+Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily	0.00611554	0.000263694
+exodeoxyribonuclease III	3.05866e-05	1.99877e-05
+Long chain fatty acid protein, putative	7.96182e-06	1.33667e-05
+Putative NAD specific glutamate dehydrogenase	2.73171e-05	9.33909e-06
+UniRef50_A6LQ40	0.0001585	0.000869035
+Putative bile acid beta glucosidase	1.44154e-05	1.27286e-05
+UniRef50_D8LTS8	0.00015677	9.28552e-06
+hypothetical protein	1.77217e-05	0.000105405
+Peptide deformylase	0.0194118	0.00380029
+Transcriptional regulator, XRE family	0.00338097	0.000812948
+hypothetical protein	6.75445e-06	2.63339e-05
+Marine sediment metagenome DNA, contig	3.8054e-05	2.08444e-05
+Delta 1 pyrroline 5 carboxylate dehydrogenase	9.25473e-05	0.0020241
+UniRef50_A1W398	6.3228e-05	6.40004e-06
+CTP synthase	0.0294429	0.0101907
+HTH type transcriptional regulator DmlR	0.00337957	0.000573697
+Transposase	5.3093e-05	1.2242e-05
+Outer membrane usher protein fimD homolog	0.000942763	0.000115471
+Quinolone resistance protein NorB	0.0348318	0.00432083
+UniRef50_R5GDG8	3.49205e-05	3.60098e-05
+sodium hydrogen exchanger	4.26607e-06	3.31367e-06
+hypothetical protein	3.61715e-05	3.73199e-05
+hypothetical protein	1.03222e-05	2.93263e-06
+UniRef50_Q8CTV4	0.00106577	0.00113652
+UniRef50_F6D239	0.00298063	0.000399052
+UniRef50_K7EGU5	1.93711e-05	4.51471e-05
+Glycerol 3 phosphate dehydrogenase 	0.00558557	0.000995232
+Undecaprenyl diphosphatase	0.000109653	6.58873e-06
+Phosphoribosylformylglycinamidine synthase, purS	1.97614e-05	4.59468e-05
+resolvase	7.43012e-05	8.62495e-06
+Phosphoesterase PA phosphatase related protein	4.80172e-05	0.00018043
+UniRef50_P77359	0.00236164	0.000686939
+UniRef50_F4CYV0	7.51347e-05	1.80614e-05
+hypothetical protein, partial	2.66853e-05	1.03553e-05
+Carbamoyl phosphate synthase large chain	1.62502e-05	3.0507e-06
+Malate Na symporter	0.000870295	0.000387662
+Adenylosuccinate synthetase	9.79288e-05	0.001959
+Prevent host death family protein	6.51491e-05	4.1721e-05
+Phosphoglycerate kinase 2	8.27005e-06	5.91658e-06
+hypothetical protein	8.33821e-06	5.95425e-05
+Transposon tn552 dna invertase binr	0.0168613	0.00226642
+hypothetical protein	7.73807e-06	4.23116e-06
+Catalase	1.47907e-05	8.68222e-05
+UniRef50_P37757	0.00350493	0.00108335
+Methyl accepting chemotaxis transducer	0.000523319	0.000231116
+hypothetical protein	6.7554e-05	4.42821e-06
+UniRef50_L1K5S4	0.000666337	0.000202111
+Transposase IS66	0.000249393	8.50331e-05
+Response regulator receiver domain protein	0.000362147	0.00263493
+Type I secretion C terminal target domain protein	0.000319961	0.00224244
+PTS system, IIC component	0.000556421	0.000140729
+Xanthine phosphoribosyltransferase	4.73195e-05	3.19835e-05
+PREDICTED	6.56369e-06	1.86036e-06
+UniRef50_W0WCB8	0.000292651	0.000457509
+3 dehydroquinate dehydratase	0.00245523	0.00264726
+Lipoprotein signal peptidase	0.00236549	0.000915797
+UniRef50_A9MFF7	0.00198373	0.000556522
+Molybdopterin adenylyltransferase	0.00463218	3.63171e-05
+Purine cytosine transport protein	0.000141012	0.00225482
+UniRef50_D8JKV6	0.000211666	0.000405625
+Membrane protein	0.00878157	0.000514366
+transcriptional regulator	1.42576e-05	1.27455e-05
+UniRef50_Q9RZV6	0.000122608	0.0228769
+UniRef50_Q9RZV7	0.000223281	0.0194036
+RNA splicing ligase RtcB	0.0035501	0.00229855
+Phosphoenolpyruvate carboxykinase [ATP]	0.0025336	0.000440647
+hypothetical protein	0.0080906	0.000600303
+UniRef50_P33030	0.00142851	0.00041323
+UniRef50_G8AF41	1.17522e-06	1.78044e-05
+Ribosomal RNA small subunit methyltransferase A	9.91948e-06	4.03501e-06
+UniRef50_A7FBS8	0.000221414	0.00325969
+Transcriptional regulator, BadM Rrf2 family	2.67324e-05	6.33604e-06
+UniRef50_Q6FDG7	8.57813e-05	0.00196348
+hypothetical protein	4.87543e-06	5.19859e-06
+Formylmethanofuran  tetrahydromethanopterin formyltransferase like protein	0.00210448	0.000351531
+NADH quinone oxidoreductase subunit K	5.13824e-05	1.6278e-05
+UniRef50_P76004	0.00430264	0.00109845
+Subtilisin	0.000183191	0.000883583
+Phosphoglycerol transferase	5.02061e-05	0.00181795
+UniRef50_P76001	0.000525323	0.000345326
+Potassium transporter KefB	0.000275969	0.000211887
+hypothetical protein, partial	0.000107376	2.09507e-05
+Signal recognition particle receptor FtsY	0.000402374	0.00224139
+Hypoxanthine guanine phosphoribosyltransferase	0.0114371	0.00022277
+UniRef50_A3PHR5	0.00466033	0.0025637
+Virulence associated protein	9.61745e-05	1.50626e-05
+hypothetical protein, partial	2.56818e-05	4.04024e-06
+type I secretion target repeat containing protein	5.59647e-06	1.43707e-05
+UniRef50_E3A6M0	0.00252829	0.000126918
+Transcriptional regulator, GntR family	0.000747687	0.000570411
+Adenylate cyclase	8.12919e-05	0.00366709
+tRNA pseudouridine synthase A	0.00453822	0.00120498
+3 oxoacyl [acyl carrier protein] synthase 3	9.90002e-05	0.000370911
+CMP deaminase	5.04745e-06	1.19246e-05
+hypothetical protein	1.80458e-05	2.79214e-06
+UniRef50_Q16DB6	0.00916995	0.00135173
+UniRef50_Q16DB7	0.000183164	2.82528e-05
+ISSpo9, transposase	0.00160833	0.000393881
+hypothetical protein	3.08305e-06	3.48138e-06
+sugar ABC transporter ATP binding protein	7.19962e-05	6.192e-05
+UniRef50_P26158	0.00759866	0.00131658
+Mitochondrial carrier domain containing protein, putative 	3.04477e-05	7.6e-06
+ABC transporter	4.04269e-05	2.19789e-05
+TonB dependent siderophore receptor	4.64695e-05	2.42201e-06
+Galactose 1 phosphate uridylyltransferase	0.000509315	0.000261774
+UniRef50_U7IBM4	8.00324e-05	9.06262e-06
+Elongation factor Tu, mitochondrial	0.00706354	0.00865913
+Ion transport protein, putative 	0.000152776	0.000130122
+16S rRNA methyltransferase	5.17851e-05	9.79443e-06
+Excinuclease ABC subunit A	4.51677e-06	5.84503e-05
+UniRef50_X4FS17	0.000103761	3.19746e-06
+Probable M18 family aminopeptidase 2	8.01306e-05	0.00199531
+Phospholipase patatin family	0.00049258	0.000234632
+L threonine dehydratase biosynthetic IlvA	1.07747e-05	2.91774e-06
+UniRef50_Q51688	0.00020282	0.000414845
+hypothetical protein	1.6497e-05	4.0799e-06
+Transposase	0.000116328	2.99771e-05
+hypothetical protein	3.81606e-06	7.96583e-06
+AAA ATPase domain protein	0.000691144	0.000662188
+Precorrin 2 dehydrogenase	0.000278139	0.00134405
+Trk system potassium uptake protein	0.00958224	0.00156306
+Ribonucleoside diphosphate reductase large chain	2.37229e-06	1.98811e-05
+Short chain dehydrogenase	4.31666e-06	1.30514e-05
+UniRef50_Q8DT19	0.0052573	0.00130019
+hypothetical protein	1.07276e-05	6.84027e-06
+Phage protein	1.41224e-05	2.54473e-06
+Valine  tRNA ligase	1.92435e-06	1.39072e-06
+Metal dependent phosphohydrolase	0.000614065	0.00119506
+UniRef50_M1MG21	0.00022339	0.000249402
+PTS system, mannose fructose sorbose family, IID component	0.00049739	0.00217527
+ABC transporter	1.4081e-05	1.49429e-05
+5 carboxymethyl 2 hydroxymuconate delta isomerase	0.000151826	0.00204133
+Ribonuclease G	0.000347724	0.0020238
+NADH	0.000101655	1.16262e-05
+Transposase	0.00446946	0.00062904
+Mannosyl glycoprotein endo beta N acetylglucosaminidase	0.00623817	0.000153478
+hypothetical protein	3.57362e-05	1.14406e-05
+Transcriptional regulator AraC family	0.000619532	0.000383065
+HTH type transcriptional regulator CdhR	0.000103341	9.66468e-05
+Probable tyrosine recombinase XerC like	0.00199712	0.000249366
+Surface protein PspC	0.000807187	0.000834782
+Transcriptional regulator, LacI family, putative	0.0057092	0.000505251
+hypothetical protein	2.09931e-05	1.0855e-05
+UniRef50_T2EHK8	0.00918772	0.0109568
+RTX toxins and related Ca2+ binding protein like protein	1.16859e-05	2.41222e-06
+hypothetical protein	0.000119823	3.42959e-05
+Aldehyde dehydrogenase	0.000162864	0.00498006
+Dephospho CoA kinase	0.000731662	0.00145466
+Thermolysin metallopeptidase, catalytic domain protein	0.00571779	0.000188525
+hypothetical protein	0.000292152	5.87118e-05
+hypothetical protein	0.000146825	1.30034e-05
+MULTISPECIES	6.33209e-07	2.28286e-06
+Cysteine synthase	4.47589e-05	1.36658e-05
+Zinc import ATP binding protein ZnuC	2.22705e-05	4.12594e-06
+Phosphate regulon transcriptional regulatory protein PhoB	0.00299788	0.0030248
+Uridine kinase	0.000243157	0.018271
+UniRef50_K0L612	0.0037879	0.00118138
+Glucoamylase S1 S2	4.80109e-05	7.89593e-05
+DNA directed RNA polymerase subunit beta	4.63614e-06	2.52364e-06
+UniRef50_G7LYD5	0.00115721	0.000194404
+UniRef50_T9UYG2	0.000129442	0.000397569
+hypothetical protein	1.99407e-05	3.8191e-06
+D alanine  D alanine ligase A	0.0010462	0.00151524
+mRNA interferase HigB	0.000346957	0.000287772
+NADH quinone oxidoreductase subunit D 2	0.000218579	0.00138064
+LigA	8.03858e-05	7.63431e-05
+hypothetical protein	4.3815e-05	1.49666e-05
+hypothetical protein	4.41728e-06	5.00543e-06
+Conserved domain protein	0.00211652	0.000346905
+Transposase of ISAba7, IS5 family	3.91751e-05	2.20844e-05
+Phosphonoacetaldehyde hydrolase	0.000627433	0.0028465
+NagD like phosphatase	2.5064e-05	6.15747e-06
+UniRef50_Q2CIA8	1.53039e-05	0.000129419
+Zinc binding dehydrogenase family protein	0.000496746	0.00404446
+Cysteine rich protein C	0.000771194	0.000465366
+Folate dependent phosphoribosylglycinamide formyltransferase PurN	0.000186626	0.00602953
+Mig 14	0.000486504	0.00032836
+50S ribosomal protein L1	0.0280427	0.00783686
+UniRef50_B9KUB3	0.00135095	0.000382793
+Oleate hydratase	0.0258736	0.00371489
+tRNA pseudouridine synthase A	5.89514e-06	5.13439e-06
+arabinose transporter permease	4.83139e-06	6.81858e-06
+hypothetical protein	9.95641e-05	1.86653e-05
+Ribose import ATP binding protein RbsA	3.36608e-06	0.00244858
+ribosomal protein S12	6.81972e-05	5.60036e-05
+DNA directed DNA polymerase	0.000152227	0.00272306
+UniRef50_B8JA02	9.46933e-06	1.79466e-05
+UniRef50_R1GXI1	0.000171478	0.00276889
+UniRef50_Q03XB9	5.17878e-06	3.10762e-06
+UniRef50_R9HYC8	7.03194e-06	5.7996e-06
+PREDICTED	3.45268e-07	2.60937e-06
+hypothetical protein	1.63276e-05	4.47842e-05
+acetylornithine aminotransferase	3.56642e-06	0.000103525
+Molybdopterin molybdenumtransferase	0.00313527	0.000962932
+biotin biosynthesis protein BioY	1.37998e-05	0.00011396
+Ribosomal RNA small subunit methyltransferase G	4.00187e-05	5.30575e-06
+glycogen debranching protein, partial	5.53411e-05	0.000114705
+5 hydroxyisourate hydrolase	2.86187e-05	1.89229e-05
+Predicted hydrolase 	0.000156292	0.00251405
+UniRef50_Q8CU33	0.0051134	0.00207336
+hypothetical protein	0.000103198	2.63222e-05
+Adenine phosphoribosyltransferase	1.05385e-05	1.67783e-05
+Arginine exporter protein ArgO	0.000878902	0.000141616
+LexA repressor	8.43065e-05	7.77773e-06
+hypothetical protein, partial	1.69111e-05	2.15052e-05
+UniRef50_A6LT65	0.000116993	0.000986249
+hypothetical protein	2.11172e-06	2.95267e-06
+Transcriptional regulator ICP4	9.97013e-05	0.00013406
+Ribosomal RNA small subunit methyltransferase A	1.73188e-05	1.434e-05
+hypothetical protein	4.77051e-05	4.94534e-06
+UniRef50_Q6A6S0	0.000205213	0.000753443
+CRISPR associated protein Csn2	0.00203089	0.00207752
+UniRef50_G2AB04	6.4784e-05	9.18596e-05
+UniRef50_H2K8K5	0.00025919	6.14754e-05
+Methyl accepting chemotaxis sensory transducer	0.00418853	0.000296003
+Integral membrane protein 	0.000681493	0.00045465
+Uroporphyrinogen decarboxylase	4.63917e-06	1.29598e-05
+NADH quinone oxidoreductase subunit B	0.000257941	0.0021396
+5 methyltetrahydrofolate  homocysteine methyltransferase	0.00211629	0.000458271
+UniRef50_J9P4V0	3.83693e-05	0.000106633
+3 phosphoshikimate 1 carboxyvinyltransferase	3.2416e-06	4.23667e-06
+ABC transporter ATPase	7.20101e-06	5.74102e-06
+histidinol phosphatase, partial	4.21164e-05	3.20349e-05
+ABC transporter	9.23298e-06	3.99446e-05
+Delta aminolevulinic acid dehydratase, chloroplastic	0.000135971	0.00241964
+Catalase	1.65529e-05	1.72626e-05
+UniRef50_D8HFS0	0.0112736	0.000618241
+Thymidine kinase	1.61827e-05	1.32805e-05
+Isocitrate lyase	1.51621e-05	2.66994e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00359765	0.000513035
+Mobilization protein	0.0780392	0.0173392
+Tricarboxylate transport membrane protein TctA	0.000614403	0.000227585
+Lipopolysaccharide export system protein LptC	0.00195128	0.000313385
+Putative hydrolase	1.13706e-05	5.64707e-06
+Oxidoreductase, short chain dehydrogenase reductase family	0.000107295	0.00929229
+peptide ABC transporter substrate binding protein	1.69055e-05	2.98416e-05
+Transporter, NhaC family	0.000193511	0.00178748
+Phage related protein	1.49771e-05	0.000397785
+Phosphoribosylaminoimidazole carboxylase	0.00130845	0.00110378
+UniRef50_Q3DCS0	0.000230423	8.59056e-05
+Trimethylamine methyltransferase family protein	0.00395537	0.000616995
+UniRef50_I0C2I1	0.0173763	0.00358465
+Rhodanese	0.00241595	0.000191439
+Porphobilinogen deaminase	0.000111686	0.00147498
+hypothetical protein	1.55405e-06	1.85006e-06
+Pyruvate carboxylase	0.0108583	0.00304958
+Glutamate racemase	0.00342621	0.00422466
+Serine rich adhesin for platelets	0.00232102	0.000357279
+1 5 phosphoribosyl 5 methylideneamino imidazole 4 carboxamide isomerase (Fragment)	1.02325e-05	8.78182e-06
+UniRef50_K4S416	4.32685e-05	1.6888e-05
+GntR family transcriptional regulator	0.000274319	0.000532088
+McpE	0.0022983	5.81508e-05
+Ribosomal RNA small subunit methyltransferase H	9.65592e-06	4.2125e-06
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.0048613	0.000371006
+UniRef50_K0R9Z2	3.42315e-05	1.3455e-05
+UniRef50_W7Q6R7	4.00389e-06	5.94582e-06
+Lipoyl synthase	4.74661e-06	9.33056e-06
+hypothetical protein	2.69396e-06	4.23376e-06
+UniRef50_K2J3T1	0.000292526	2.0572e-05
+Marine sediment metagenome DNA, contig	0.000262873	1.61809e-05
+UniRef50_Q5YSJ6	5.41902e-06	4.70995e-06
+Precorrin 6X reductase, CbiJ	0.00144567	0.000734238
+Lipopolysaccharide export system permease protein LptG	0.00452495	0.000775237
+UniRef50_B0VDU9	0.000319508	0.00168972
+UniRef50_Q3IIQ9	7.3497e-06	9.56527e-06
+UniRef50_A3PI11	0.00217955	0.000156905
+hypothetical protein	1.15648e-05	5.37209e-06
+Methyl accepting chemotaxis protein	0.000802132	0.000423961
+UniRef50_E8U5H6	0.000219488	0.0150326
+Bifunctional dihydrofolate reductase thymidylate synthase	1.30819e-05	2.05043e-06
+Aminopeptidase C	0.00677979	0.00509617
+AAA ATPase, central domain protein	0.000122724	0.000801998
+hypothetical protein, partial	1.99782e-05	1.01301e-05
+translation initiation factor 2	0.000164606	3.67791e-05
+actetate permease	6.84913e-05	4.74901e-05
+hypothetical protein	1.40891e-05	3.91505e-06
+UniRef50_L5JBS3	0.000245656	0.000223345
+hypothetical protein	4.6029e-06	1.40228e-05
+Replication protein	0.000646175	0.000433743
+UniRef50_D5ZZ05	6.73318e-05	3.28189e-05
+UniRef50_G1X3P0	2.57767e-06	2.29892e-07
+UniRef50_UPI0003C1128E	2.16327e-05	1.73904e-06
+ATP dependent DNA helicase	4.97929e-05	8.06974e-05
+Dihydrolipoyl dehydrogenase	0.000162183	0.000423503
+Endonuclease III	0.00528757	0.00086968
+tRNA pseudouridine synthase C	0.0016532	0.000413951
+UniRef50_A7ZPF5	0.00110703	0.000168136
+Extracellular matrix binding protein EbhB	0.00393891	0.000607015
+3 dehydroquinate dehydratase	6.54568e-05	1.31926e-05
+Modification methylase NlaIII	0.000280362	0.00289119
+Probable chemoreceptor glutamine deamidase CheD	0.000181147	2.61979e-05
+hypothetical protein	7.65361e-06	1.84544e-06
+UniRef50_A5UJQ2	0.00310099	0.000399967
+peptide ABC transporter ATP binding protein	4.46821e-05	6.13151e-06
+Cytoplasmic pump proteins of the hefABC efflux system	0.000283612	0.00148611
+hypothetical protein	5.51707e-05	0.000124096
+UniRef50_C5N6U7	0.0637889	0.000367971
+UniRef50_E4ZD91	0.000255548	0.00257733
+hypothetical protein	1.46236e-05	4.02953e-05
+lactate permease	6.60339e-06	1.96858e-05
+Phosphatidylserine decarboxylase proenzyme	0.000126048	0.000105381
+UniRef50_O34318	0.0123693	0.00133735
+hypothetical protein	5.44049e-06	3.99233e-06
+UniRef50_D4H9Z1	0.000257796	0.00186769
+Acyl CoA synthetase	6.88556e-05	4.20661e-05
+hypothetical protein	1.24196e-06	1.16424e-06
+Penicillin binding protein 2	0.00201734	0.000277476
+UniRef50_UPI0003D25F22	3.68308e-05	1.74276e-05
+hypothetical protein	1.58828e-05	4.62618e-06
+UniRef50_D0UWA8	0.00139933	0.000433188
+Marine sediment metagenome DNA, contig	4.30849e-05	1.77242e-05
+Collagenase like protease	0.00558294	0.00474605
+hypothetical protein	5.70963e-05	1.15988e-05
+UniRef50_E3J760	2.62976e-05	1.17589e-05
+Hydrogenase expression formation protein HoxM	0.000816076	0.000145283
+PREDICTED	1.27882e-05	1.79253e-05
+UniRef50_I0LEQ3	0.000113238	8.54038e-05
+hypothetical protein	7.24371e-05	5.42005e-06
+hypothetical protein	3.88585e-05	2.41678e-05
+UniRef50_A6UEM2	0.00335734	0.00029219
+Recombinase	0.0186544	0.00751295
+hypothetical protein	0.000169411	6.32303e-05
+Lipoprotein	4.9204e-05	7.55462e-06
+UniRef50_E3RRY8	4.21937e-05	7.74649e-06
+UniRef50_L2LUI2	1.10538e-05	8.41522e-06
+UniRef50_S1HVV1	0.0011148	0.000113224
+50S ribosomal protein L3	7.48976e-06	0.000158692
+Polyribonucleotide nucleotidyltransferase	0.00604707	0.0033204
+UniRef50_P45804	0.00220037	0.000509886
+Lysine  tRNA ligase	6.81203e-06	4.75291e-06
+transposase	5.51863e-05	7.8392e-06
+Probable endonuclease 4	0.0241587	0.00190796
+Glutathione peroxidase homolog BsaA	0.00811997	0.000593385
+carbon nitrogen hydrolase, partial	1.57203e-05	0.000164141
+UniRef50_W8YQ25	0.000346898	8.18578e-05
+PTS system, arbutin like IIBC component	0.00937189	0.00171117
+Guanylate kinase	0.00533162	0.00118424
+peroxiredoxin, partial	1.00924e-05	1.39672e-05
+UniRef50_Q1N9Q9	2.73506e-05	8.13039e-07
+hypothetical protein	8.37443e-05	2.79102e-05
+UniRef50_I7DPQ7	7.40777e-06	2.60977e-06
+UniRef50_N6VQS5	4.68327e-05	5.63134e-06
+Probable thiol peroxidase	0.000203148	1.71727e-05
+Zinc import ATP binding protein ZnuC	1.91078e-05	4.90991e-06
+Response regulator receiver protein	0.0002229	0.000106633
+arginine ABC transporter ATP binding protein	0.000105178	2.36071e-05
+ABC type metal ion transport system protein	3.81074e-05	5.36843e-06
+UniRef50_I0C688	0.00128975	0.000313933
+UniRef50_W4NY50	8.4928e-05	1.01084e-05
+hypothetical protein	5.48571e-06	5.68626e-06
+Phosphonate ABC transporter substrate binding protein	0.0115516	0.00141969
+hypothetical protein	6.98569e-06	5.43031e-06
+Elongation factor P	9.92948e-06	1.96432e-05
+UniRef50_X1WW26	0.000278139	0.000247341
+Amino acid ABC transporter, amino acid binding protein	0.00376947	0.00101375
+hypothetical protein	8.41055e-06	2.20873e-05
+Hydroxypyruvate isomerase	0.00392886	0.000719925
+amidohydrolase, partial	7.01711e-06	1.7206e-05
+electron transporter RnfB	1.23063e-05	1.46168e-05
+Fibrinogen binding protein	0.00978342	0.000774332
+Porphobilinogen deaminase	0.000907982	0.00129465
+Binding protein dependent transport systems inner membrane component	0.000114863	0.00365961
+UniRef50_C6M8K8	0.000178068	8.89421e-05
+RelA SpoT protein 	5.31432e-05	2.65738e-05
+Cytochrome b	0.000101779	0.00116173
+Light independent protochlorophyllide reductase subunit N	9.18112e-05	1.60898e-05
+Predicted endoglucanase 	0.00272168	0.000384898
+hypothetical protein	5.22557e-06	4.95943e-06
+Indole 3 glycerol phosphate synthase 1	1.87806e-05	1.0276e-05
+D tagatose 1,6 bisphosphate aldolase subunit GatZ	0.00308378	0.00131949
+hypothetical protein, partial	5.36474e-05	9.67714e-05
+UniRef50_Q2NXB3	0.000257789	0.000230809
+UniRef50_W7T1C4	4.56835e-05	2.30331e-05
+UniRef50_U3SSK6	0.00128363	0.00039785
+Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000298894	0.0213197
+hypothetical protein	5.59239e-05	4.06374e-05
+UniRef50_R0WUD1	2.97322e-05	0.000139258
+UniRef50_I1H6Y1	9.45641e-05	1.68242e-05
+Recombination protein A 	0.00023277	0.00158388
+3 mercaptopyruvate sulfurtransferase	0.00199639	0.000270536
+UniRef50_A6QIJ6	0.0157446	0.00126321
+BolA YrbA family protein	3.27166e-05	6.04042e-05
+UniRef50_A6QIJ0	0.00393622	0.000286853
+Phenylacetic acid degradation protein paaD	7.69355e-05	3.37831e-05
+hypothetical protein	2.9952e-05	1.65981e-05
+DNA polymerase III subunit alpha	7.59787e-06	2.77742e-06
+UTP  glucose 1 phosphate uridylyltransferase	0.00254648	0.00030765
+Homoserine kinase	0.000208604	0.00150801
+Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.00270078	0.000321962
+UniRef50_C3FD24	8.63784e-05	8.09602e-05
+UniRef50_J7QJP1	0.000197744	0.000522849
+Tat  pathway signal sequence	0.000429636	0.000906918
+MsbA	1.71211e-05	1.57479e-05
+adenine permease	6.42895e-06	3.6316e-06
+5 dehydro 2 deoxygluconokinase	0.000345345	0.000394496
+ErfK YbiS YcfS YnhG family protein	0.00443301	0.000943969
+hypothetical protein	4.27622e-06	1.91775e-05
+hypothetical protein, partial	5.96092e-05	1.92576e-05
+UniRef50_A6LYJ9	0.000110586	7.29958e-05
+UniRef50_W8ZDM8	1.95672e-05	3.83965e-06
+acetyl CoA carboxylase, biotin carboxylase	2.58987e-06	4.18782e-06
+UniRef50_A3PGH2	0.0029552	0.00041842
+Serine O acetyltransferase	0.00013516	0.00255937
+hypothetical protein	2.44702e-05	2.36773e-06
+Diphthamide synthase, subunit DPH2	0.00266932	0.000231802
+N glycosidase F, putative	0.000517267	0.0298692
+NAD transhydrogenase subunit alpha	0.00963151	0.00264351
+UniRef50_V0AI23	0.00264825	0.000720065
+UniRef50_V7ENM8	6.11598e-05	3.49492e-05
+hypothetical protein	0.000948242	0.00310141
+Diacylglycerol kinase catalytic domain family protein	0.00716813	0.00126832
+UDP N acetylmuramate  L alanine ligase	0.0219317	0.00697892
+Cytoplasmic axial filament protein CafA and Ribonuclease G	0.000220929	0.000586124
+UniRef50_Q9RRN1	0.000511963	0.0175837
+Transcriptional repressor of the fructose operon, DeoR family	1.30665e-05	4.3175e-05
+hypothetical protein	1.12482e-05	4.60537e-06
+UniRef50_Q4UPB2	1.04291e-05	0.000901232
+UniRef50_P34001	0.00486038	0.000559419
+FAD linked oxidase	0.00251996	0.00028083
+Diapolycopene oxygenase	0.011101	0.000352651
+UniRef50_M9S180	0.000673097	0.000108858
+Homoserine O acetyltransferase	4.60414e-06	1.91309e-05
+ATPase family protein associated with various cellular activities 	0.00116699	0.000322108
+Hydrolase, haloacid dehalogenase like family	0.0112342	0.00217514
+Bacteriophage protein	0.000352129	0.000104867
+UniRef50_K2NZ38	2.11231e-05	1.07687e-05
+UniRef50_J7Q8S5	3.98863e-05	2.91707e-05
+UniRef50_A0YFR7	7.24553e-06	1.89613e-05
+Protein kinase	0.000121543	0.00029885
+Conserved domain protein	3.12994e-05	5.02167e-05
+UniRef50_R4MJG0	3.69009e-05	5.20041e-05
+hypothetical protein, partial	4.76859e-06	1.29046e-06
+ATP dependent DNA helicase RecQ	4.46548e-05	0.00179306
+UniRef50_Q0FEL8	0.000121057	8.32768e-06
+Sigma54 specific transcriptional regulator, Fis family	0.000624708	0.000274718
+Bifunctional protein GlmU	4.25024e-06	3.10362e-06
+Expressed protein 	5.4824e-05	2.72016e-05
+UniRef50_K0S277	2.83487e-06	4.74753e-06
+2 isopropylmalate synthase	6.32548e-06	0.000216002
+ stereoselective amidase	0.000949416	0.0004048
+Arogenate dehydratase prephenate dehydratase 1, chloroplastic	6.93434e-05	1.08127e-05
+DNA polymerase I	0.00023197	0.00135432
+Probable L serine dehydratase, beta chain	9.5698e-06	0.000359149
+UDP glucose 4 epimerase	0.0043597	0.00297232
+hypothetical protein	1.0441e-05	1.46855e-05
+Anaerobic sulfite reductase, subunit A	0.000419341	0.000442894
+Ribonuclease PH	1.72674e-05	2.07733e-05
+Pentapeptide repeat protein	9.69881e-05	0.000282279
+glycerol 3 phosphate ABC transporter permease	1.15713e-05	4.99997e-05
+MULTISPECIES	3.47733e-05	2.59274e-06
+UniRef50_U9FGT0	0.00052861	0.00103022
+long chain fatty acid  CoA ligase	6.95429e-06	2.09307e-06
+UniRef50_UPI0003C26616	5.03692e-06	5.07804e-05
+Type VI secretion protein, EvpB VC_A0108 family	0.0004896	0.00387885
+Signal transduction histidine kinase	0.00197619	0.000943919
+UniRef50_Q5P6B9	0.00138397	0.000302872
+Vacuolar iron transporter	1.0162e-05	3.56673e-06
+transcriptional regulator	0.000144387	1.78731e-05
+UniRef50_A0A059LC79	2.01377e-05	0.000356853
+Sua5 YciO YrdC YwlC family protein	0.00016417	0.00197551
+hypothetical protein	2.77123e-06	2.4597e-06
+Medium chain specific acyl CoA dehydrogenase, mitochondrial	4.11369e-06	2.33504e-05
+Phosphoribosylformylglycinamidine synthase 1	0.00254146	0.000601552
+hypothetical protein	0.000259384	8.5071e-05
+Phosphomethylpyrimidine synthase	0.000594192	0.000511745
+Aminomethyltransferase	4.93041e-05	6.16125e-06
+Putative pyridoxine kinase	0.0179172	0.00525058
+hypothetical protein	4.12721e-05	8.90558e-06
+Holliday junction resolvase RecU	0.00711467	0.000967413
+Probable transcriptional regulator YgiV	0.00306897	0.00100882
+UniRef50_R9LSU9	1.3842e-05	4.19569e-05
+Phospholipid binding protein	8.61364e-06	1.01194e-05
+Probable tartrate dehydrogenase decarboxylase TtuC	0.00301287	0.000204752
+Autotransporter, putative	0.000252322	6.51054e-05
+UniRef50_P32128	0.00190488	0.000188713
+TRAP type C4 dicarboxylate transport system	0.000550012	5.9898e-05
+hypothetical protein	3.41956e-06	4.07381e-06
+Transcriptional regulator, TetR family	0.000400999	0.0011401
+Arginine  tRNA ligase	3.688e-06	4.46787e-06
+UniRef50_S5U768	2.22597e-05	5.53385e-05
+hypothetical protein	1.18983e-05	7.98689e-05
+30S ribosomal protein S2	0.0134025	0.00103616
+AcrB AcrD AcrF family protein	0.000135779	0.00412672
+ligand binding protein SH3	0.000353895	4.86632e-05
+Multidrug resistance protein MdtA	0.000782328	0.00132888
+Malonyl CoA acyl carrier protein transacylase	0.000114084	0.005295
+Pili assembly chaperone	0.000735788	0.000141622
+Cystathionine beta lyase PatB	1.89622e-05	2.0764e-05
+ROK family protein	0.000507231	0.00200833
+Cytochrome bo ubiquinol oxidase subunit 2	0.00158715	0.000185123
+Phage infection protein	9.6693e-06	3.81924e-06
+UniRef50_L0NF86	0.000143025	1.59207e-05
+hypothetical protein	0.000189934	2.26124e-05
+Glutamyl tRNA reductase	6.6577e-06	0.000787126
+Ribosome maturation factor RimM	0.0137356	0.00180453
+UniRef50_U6M5K1	1.93461e-05	0.000127853
+TRAP type C4 dicarboxylate transport system, small permease component	4.87569e-05	1.59034e-05
+Coenzyme F420	0.00416056	0.000496044
+hypothetical protein	0.000218423	1.19963e-05
+Chaperone protein DnaJ	0.00366659	0.000642252
+H Cl( ) exchange transporter ClcA	0.000915333	0.000280521
+hypothetical protein	7.18643e-06	4.89281e-06
+Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000845454	0.000219638
+Ribose phosphate pyrophosphokinase	2.58687e-05	2.9347e-05
+hypothetical protein	6.10294e-06	1.2776e-05
+elongation factor Tu	2.4654e-05	1.06689e-05
+General L amino acid binding periplasmic protein AapJ	0.00988312	0.00193516
+Phosphoenolpyruvate carboxykinase [ATP]	2.26823e-05	0.000139748
+PTS mannose transporter subunit IID	6.91956e-06	2.69566e-05
+hypothetical protein	5.42722e-06	6.7259e-05
+Minor teichoic acid biosynthesis protein GgaB	0.000269196	0.000176049
+Major Facilitator Superfamily protein	0.000166143	0.000295188
+Methyl accepting chemotaxis sensory transducer	0.000226487	0.000604117
+UniRef50_D8U6Y2	7.56856e-05	1.3461e-05
+Urease subunit gamma	6.38467e-05	0.000133377
+UPF0173 metal dependent hydrolase DR_0006	0.000309707	0.0152758
+UniRef50_C5WIU5	0.000400382	0.000134066
+Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA	0.00125036	0.000211319
+3 dehydroquinate synthase	0.000427019	0.00289293
+UniRef50_R9JUE8	0.000169974	8.85744e-06
+Cell division protein FtsX	0.000235349	0.00131037
+Integrase	0.000282651	0.000684841
+UniRef50_P43790	0.0027541	0.000286853
+UniRef50_W4JVP7	0.000441858	5.24239e-05
+Urease subunit gamma beta	3.45722e-05	0.000115285
+UniRef50_F8GG26	2.63435e-05	1.36199e-05
+UniRef50_G1Y156	0.000127333	0.000252915
+ATP dependent DNA helicase RecQ	0.00664491	0.00228109
+UniRef50_B9KMZ8	0.0121752	0.0014895
+UniRef50_B9KMZ6	0.00118229	0.000171503
+Serine transporter	3.63117e-06	3.23222e-05
+Non canonical purine NTP pyrophosphatase	3.44497e-05	2.2168e-05
+UniRef50_D3HF85	0.00901526	0.00269878
+K+ transporting ATPase, subunit B 	8.40586e-06	0.000148768
+Oligopeptide ABC transporter permease	0.00746067	0.00064359
+UniRef50_A3U2G6	8.95318e-07	8.35804e-07
+50S ribosomal protein L35	0.000374658	0.000173951
+UniRef50_C7D895	1.27128e-05	3.70658e-06
+Cystathionine beta lyase	0.00310596	0.000905895
+Phosphoglycerate kinase, chromosomal	0.00348175	0.00399524
+peptide ABC transporter ATPase	3.43539e-05	1.86314e-05
+UniRef50_Q6GJB5	0.0229166	0.00573748
+Diaminopimelate epimerase	4.74909e-06	5.09506e-06
+UniRef50_K0RYW3	4.57857e-05	5.71397e-06
+UniRef50_F3C2H3	3.0116e-05	3.81162e-05
+RbsC	0.00292338	0.000563026
+Putative reductase PBPRA2527	0.000946016	0.00131625
+UPF0721 transmembrane protein YfcA	0.00278349	0.000522676
+Light independent protochlorophyllide reductase subunit N	6.981e-05	1.15007e-05
+CheX protein	0.00108833	0.000177486
+HEAT repeat containing protein	0.0037664	0.000888684
+peptidase	0.000207347	3.43368e-05
+Transforming acidic coiled coil containing protein 3	2.91132e-05	1.04184e-05
+hypothetical protein	4.51928e-06	9.79017e-06
+UniRef50_A5W1N9	0.000262435	0.00289088
+Phosphotransferase system protein, mannitol fructose specific IIA subunit	0.000225367	0.0028431
+Tripartite ATP independent periplasmic transporter, DctQ component	0.0317023	0.00346602
+ABC transporter, ATP binding protein	7.80855e-05	0.00112523
+Urease subunit gamma	1.33317e-05	1.13999e-05
+D galactose binding periplasmic protein	0.000666457	0.000361944
+Adenine deaminase	1.71814e-05	3.18255e-06
+Vegetative protein 296	0.0195241	0.0283368
+UniRef50_R4GHY1	1.16954e-05	0.000168294
+Aldose 1 epimerase	0.000757808	0.000838632
+UniRef50_Q49UM3	0.00725171	0.00137554
+Transcriptional regulator, GntR family	0.000616439	0.00147551
+N acetylmuramoyl L alanine amidase sle1	0.0186957	0.00156688
+UniRef50_D7C1Q5	7.74462e-05	5.9561e-05
+HCG1776376, isoform CRA_a	0.000137893	3.39027e-05
+ABC transporter, permease protein	0.00730676	0.0014231
+UniRef50_F0KFX3	0.000334789	0.00373049
+hypothetical protein, partial	2.56845e-05	4.73826e-05
+multidrug transporter	6.164e-05	6.39196e-05
+PREDICTED	5.05325e-06	1.87885e-05
+Predicted membrane protein	0.00607231	0.000726921
+Marine sediment metagenome DNA, contig	0.000292372	0.000101706
+UniRef50_W4HQ00	0.000109574	2.53802e-05
+Host cell surface exposed lipofamily protein	0.00762241	0.00327566
+Beta carbonic anhydrase 3	2.78673e-05	5.7441e-06
+N alpha acetyl L 2,4 diaminobutyric acid deacetylase	0.000257986	9.39763e-05
+Glycogen debranching protein	0.00640601	0.00102396
+Alanine racemase	0.000292651	0.00165277
+UniRef50_P75860	0.00152018	0.00217351
+hypothetical protein	0.000227073	7.015e-05
+UniRef50_A6LYW2	0.000533662	0.000482739
+UniRef50_J0H573	0.0022017	0.000561112
+Protein FimG	0.00876284	0.000178499
+UniRef50_A7MNJ8	0.00061222	0.000116553
+UniRef50_D7B2I8	7.86719e-05	5.58989e-05
+UniRef50_A6V7D9	0.000400698	0.000315035
+chemotaxis protein CheY	1.26094e-05	1.92422e-05
+Phosphoglycerate mutase	0.000328875	0.000538159
+SAM dependent methyltransferase related to tRNA	0.000134979	0.00218117
+PREDICTED	8.05095e-05	1.57084e-05
+UniRef50_G0A8S2	0.000108564	9.68553e-05
+UniRef50_M9R9T3	0.00236292	0.000214158
+hypothetical protein, partial	8.1831e-05	6.32969e-05
+UniRef50_D7GV59	4.00414e-05	3.38757e-05
+Tryptophan synthase alpha chain	1.92986e-05	5.53399e-06
+Transcriptional regulator, MerR family	0.00765088	0.00187023
+branched chain amino acid ABC transporter substrate binding protein	1.08207e-06	4.1924e-06
+UniRef50_I1ZP03	0.00730197	0.00302243
+Sigma 70 factor, ECF subfamily	0.000193419	0.000672791
+Putative transposase y4bF	0.0267428	0.00473449
+Ethanolamine ammonia lyase heavy chain	0.00245944	0.000777868
+Transcriptional regulator, XRE family	0.000691172	0.000191032
+Cyclopropane fatty acyl phospholipid synthase	0.00167052	0.000184464
+hypothetical protein	7.73014e-05	9.85307e-06
+UniRef50_K2ADQ8	0.000184415	4.13419e-05
+UniRef50_C5N2G7	0.00336034	0.000406266
+Bifunctional protein PyrR	8.30736e-06	4.07739e-05
+IS1272 like transposase, degenerate	0.017289	0.00100549
+tRNA pseudouridine synthase A	0.0192878	0.00398633
+Na H(+) antiporter NhaB	0.000493119	8.70852e-05
+UniRef50_Q6YWQ5	5.1237e-05	0.000263299
+UniRef50_Q5HJG9	0.0139681	0.000366513
+UniRef50_I6SJA3	0.00151058	0.000317833
+UniRef50_Q12PW9	6.81394e-06	0.000550827
+UniRef50_Q2NFV5	0.003104	0.00040838
+Methionine  tRNA ligase	1.02401e-05	1.1654e-05
+Glutathione biosynthesis bifunctional protein GshAB	0.000337402	0.00033705
+cytochrome B562	0.000108538	1.44845e-05
+Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive	0.00313164	0.0005253
+Capsule assembly, only in sialic acid capsules	2.59697e-05	0.00125958
+Colanic acid biosynthesis protein WcaM	0.00255876	0.000139783
+ABC transporter ATP binding protein permease	0.00013606	0.00375022
+Alcohol acetaldehyde dehydrogenase	0.00752766	0.000888857
+hypothetical protein	1.88605e-06	5.64591e-05
+Serine acetyltransferase	0.0113276	0.00244346
+UniRef50_G7M4A2	0.000158749	0.00039495
+streptomycin 3 kinase	3.00214e-05	2.6139e-05
+UniRef50_F9UF35	3.67609e-06	4.57634e-06
+ABC transporter, ATP binding protein	0.0158686	0.0023392
+Tyrosine recombinase XerD	0.00817309	0.00118126
+Putative colanic acid polymerase	0.00386678	0.000824384
+UniRef50_J1A645	0.0785136	0.0185274
+DNA polymerase III, delta prime subunit	0.00042064	0.00183566
+hypothetical protein, partial	1.74085e-06	3.36722e-06
+UniRef50_R5NMQ5	0.000342253	0.00137666
+UniRef50_A5UNF2	0.00307607	0.000121331
+UniRef50_A5UNF1	0.00417411	0.000432529
+cell division protein FtsW	5.48573e-06	6.01334e-05
+DEAD DEAH box helicase	4.2213e-07	5.48606e-05
+UniRef50_A0A059LEJ0	7.46227e-05	6.82978e-05
+Putative transcriptional regulator	0.00012857	1.6297e-05
+UniRef50_P25885	0.00585405	0.00505733
+sodium	1.10196e-05	0.00219323
+DNA directed RNA polymerase subunit beta	7.16064e-06	1.79293e-06
+hypothetical protein	5.34927e-05	3.10646e-06
+hypothetical protein	0.00015293	0.000502701
+UniRef50_S3YIQ8	1.07934e-05	0.000165836
+hypothetical protein	1.56476e-05	1.14754e-05
+Ferredoxin like protein YgcO	0.000177173	0.000237726
+Formate dehydrogenase major subunit	0.00199315	0.000469997
+rhodanese related sulfurtransferase	2.95805e-05	6.46767e-06
+hypothetical protein	3.68563e-06	1.78518e-05
+ABC type Mn2+ Zn2+ transport system, permease component	0.00394406	0.00516077
+UniRef50_D3QEN2	0.0182427	0.00504493
+hypothetical protein	1.36833e-06	6.21833e-06
+Protein L isoaspartate O methyltransferase	0.00666145	0.0016997
+Glycine  tRNA ligase beta subunit	6.04578e-05	0.00352145
+UniRef50_Q6N372	0.000110543	1.84618e-05
+UniRef50_V8HFR8	2.48681e-05	4.94388e-06
+Type II secretion system protein D	0.00032732	0.000178324
+Rubredoxin 2	0.000156604	1.55884e-05
+UniRef50_W7WXT6	0.00043209	0.000765004
+hypothetical protein, partial	7.71358e-07	5.96609e-07
+hypothetical protein	1.56612e-05	1.92309e-05
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.60762e-05	2.69873e-05
+hypothetical protein	0.000129407	6.02583e-06
+NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	9.50922e-05	1.5989e-05
+Sulfide	0.000806483	7.68875e-05
+Phage transcriptional regulator	0.00166428	0.000397278
+Acetobutylicum phosphotransbutyrylase	0.000637162	0.000506369
+UniRef50_B0VU19	0.000160516	0.00167947
+PP loop domain protein	0.00111506	0.000547774
+glycerol 3 phosphate ABC transporter substrate binding protein	1.26784e-05	2.95386e-06
+Type III restriction protein res subunit	0.000348094	0.00144114
+hypothetical protein	6.83601e-06	1.36044e-05
+HTH type transcriptional repressor NicS	9.5036e-05	5.37798e-05
+30S ribosomal protein S5	6.69235e-06	6.3946e-06
+coproporphyrinogen III oxidase	4.44948e-05	5.84049e-06
+Aspartate aminotransferase	0.000455348	0.0172911
+ABC transporter ATP binding protein	0.00349584	0.000943402
+Response regulator receiver protein	0.000303728	0.000708696
+Membrane protein	0.000479677	0.000172996
+UniRef50_Q9RXI1	6.87301e-05	0.0134376
+UniRef50_Q9RXI0	0.000264999	0.0209127
+UniRef50_Q9RXI3	0.000132501	0.0097836
+Hydrogenase 4 component E	0.00188463	0.000138557
+hypothetical protein	5.22134e-06	6.65997e-06
+hypothetical protein	1.14035e-05	3.79834e-06
+Two component response regulator CbrB	0.000563546	0.000418843
+Extracellular solute binding protein family 1	1.33538e-05	7.86447e-06
+Signal transduction protein, FIST domain protein	0.00105675	7.85519e-05
+Threonine synthase	0.00387869	0.000350953
+hypothetical protein	1.96985e-05	3.31855e-06
+branched chain amino acid ABC transporter permease	1.00647e-05	7.08918e-06
+PREDICTED	0.000138782	2.33271e-05
+Transcriptional regulator, XRE family	0.00013793	0.000748953
+UniRef50_C1CVB0	0.00117401	0.0420673
+hypothetical protein, partial	0.000101987	2.3327e-05
+NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.20268e-05	2.58999e-05
+NADH quinone oxidoreductase subunit 9	4.88411e-06	2.84457e-05
+Chromosome 13 SCAF15000, whole genome shotgun sequence	5.96451e-06	1.13357e-05
+Tetratricopeptide repeat protein	0.0189806	0.0021141
+ribose ABC transporter permease	0.000111939	2.29042e-05
+Muconate cycloisomerase 1	9.1786e-05	0.00525372
+UniRef50_D2ZXF5	7.42025e-06	0.00043616
+Fimbrial subunit CupB6	0.00046037	0.000114085
+Probable HTH type transcriptional regulator YgaV	0.000339948	0.000301291
+UniRef50_E3EZG9	1.86094e-05	1.40418e-05
+cell division protein FtsY	3.96554e-06	2.79055e-06
+hypothetical protein	7.34609e-06	4.36835e-06
+Cytochrome c 552	0.00194668	0.000610583
+long chain fatty acid  CoA ligase	8.44159e-06	1.65966e-05
+Transposase	2.66393e-06	4.85593e-06
+Hydrolase 	0.0154286	0.00402322
+hypothetical protein	4.69929e-06	4.15474e-06
+Cell division protein DivIC, putative	0.00263527	0.000270436
+UniRef50_B6VMG8	1.76555e-05	4.1252e-05
+phosphoribosylaminoimidazole succinocarboxamide synthase	3.53811e-05	9.73938e-06
+biotin synthase	4.86611e-06	4.14215e-05
+UniRef50_L1K758	0.00103689	0.00019763
+hypothetical protein SMAC_09967, partial	4.33208e-05	4.29967e-05
+winged helix family two component transcriptional regulator	9.85062e-05	8.81363e-06
+hypothetical protein	5.42387e-05	4.18376e-05
+UniRef50_Q30Q90	0.000431583	0.00155026
+Glucokinase	0.0217112	0.00197746
+hypothetical protein	1.91727e-05	5.01746e-05
+Phosphoglycolate phosphatase	0.000241116	0.000463566
+Tyrosyl tRNA synthetase	4.5787e-05	3.44841e-05
+UniRef50_D3V593	0.000184275	0.000143715
+Appr 1 p processing domain protein	1.05106e-05	5.02444e-05
+hypothetical protein	1.14452e-05	2.4277e-06
+Biotin synthase	0.00099245	0.000414069
+Anaerobic ribonucleoside triphosphate reductase activating protein	0.000617465	0.00131051
+UniRef50_F0DFZ2	1.65695e-05	1.50257e-05
+Enoyl CoA hydratase	0.000434599	0.00524195
+Serine hydroxymethyltransferase	0.000112972	8.1103e-05
+Leucine responsive regulatory protein	0.000526329	0.000108566
+Expressed protein 	3.33527e-05	0.000112749
+Bifunctional purine biosynthesis protein PurH	0.00553854	0.00606216
+UniRef50_UPI0002B4A5BA	3.17266e-06	5.8917e-06
+PREDICTED	0.000234547	3.18855e-05
+Translation initiation factor IF 3	0.000117614	0.000191643
+Sensor histidine kinase AruS	0.000408347	0.000754785
+3 oxoacyl  reductase	0.00015438	0.00374599
+hypothetical protein	6.207e-05	4.40115e-05
+UniRef50_F2JY03	0.00619765	0.00113362
+Tyrosine recombinase XerC	0.000130109	0.00169001
+polyphosphate kinase	9.00338e-06	0.000280542
+Gamma glutamyltranspeptidase	0.00151201	0.00057904
+C4 dicarboxylate transport protein	0.00372118	0.000976201
+ABC transporter related protein	5.57593e-05	4.58713e-06
+mechanosensitive ion channel protein MscL	3.19618e-05	3.24811e-05
+RNA pseudouridine synthase	4.82682e-05	2.24486e-05
+hypothetical protein	0.000110778	5.58652e-06
+UniRef50_H6SJP6	2.04705e-06	1.99347e-06
+L xylulose 3 keto L gulonate kinase	0.00197639	0.000350343
+Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial	0.00053069	0.000252879
+hypothetical protein	2.4144e-05	8.7815e-05
+NADH quinone oxidoreductase subunit B 1	1.68416e-05	0.000104174
+PREDICTED	0.000123182	2.11363e-05
+Undecaprenyl diphosphatase	0.000145692	0.0014846
+hypothetical protein	0.000222786	5.80515e-05
+zinc transporter ZitB	4.70115e-06	1.74035e-05
+hypothetical protein	1.4454e-05	2.06236e-05
+UniRef50_Q9RVR0	0.000285211	0.00384614
+UniRef50_B9KV19	0.000770049	0.00048125
+hypothetical protein	1.44728e-05	8.72094e-05
+Putative exported protein	3.04857e-05	1.36415e-05
+Flagellar protein FlgJ, putative	0.000218033	6.34995e-05
+Septation ring formation regulator EzrA	0.0148246	0.00238351
+Bll1154 protein	0.00259389	0.000114668
+Short chain fatty acids transporter	0.000989342	0.000483287
+ATPase P	3.63182e-06	3.30287e-06
+UniRef50_A9S9Z8	6.40918e-06	1.68994e-05
+hypothetical protein	1.55448e-05	1.41809e-05
+UniRef50_A5UMD9	0.00248193	0.0032795
+Aconitate hydratase	4.19288e-05	0.00169898
+dihydroxy acid dehydratase, partial	0.0010987	7.95812e-05
+UniRef50_M5AGE8	9.87864e-06	8.96834e-06
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	5.78863e-06	1.84614e-06
+Phospholipase C	1.95759e-05	2.14229e-05
+Sensory box GGDEF family protein	4.20686e-05	0.00448528
+Stringent starvation protein A	9.74197e-06	1.90008e-05
+LysR family transcriptional regulator	1.06853e-05	1.05771e-05
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	6.39781e-06	7.30512e-06
+parB like partition proteins	2.14409e-05	0.00025905
+hypothetical protein, partial	0.000337915	0.000281329
+23 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.000138688	0.00307643
+gamma aminobutyrate transporter, partial	3.622e-05	4.92789e-05
+Lactoylglutathione lyase	0.00246705	0.00590422
+Hydrolase of the alpha beta superfamily like protein	0.00143504	0.000128448
+UniRef50_B7UVW2	0.00102913	0.000209758
+hypothetical protein	0.0169196	0.00263746
+hypothetical protein	0.000108922	0.000106003
+Membrane alanyl aminopeptidase	4.39933e-05	0.00301132
+UniRef50_A2S1L9	9.0151e-05	4.48405e-05
+Transposase, IS4 family	0.000973771	0.000317241
+PREDICTED	8.08656e-06	6.70531e-06
+hypothetical protein	0.000134393	0.000108679
+SmpA OmlA domain protein	0.0119985	0.00212333
+Pseudouridine synthase	0.00278098	0.00168263
+Sodium transport family protein	0.0153578	0.00317829
+Pseudouridine synthase, RluA family	0.000113571	0.000200754
+Fe dicitrate transport protein FecA	0.00470192	0.000766497
+hypothetical protein	1.46513e-06	1.04628e-05
+FAD binding protein	1.40239e-05	0.00101201
+UniRef50_B4FJG3	3.98406e-05	7.2572e-05
+UniRef50_R7PWX3	8.50731e-06	3.84475e-07
+Dihydroxy acid dehydratase, mitochondrial	5.6736e-06	3.49955e-06
+tRNA specific 2 thiouridylase MnmA	5.05896e-06	5.32998e-06
+Lysine decarboxylase LdcC	0.00355024	0.00060358
+Valine  tRNA ligase	8.11456e-05	0.0282964
+NADH quinone oxidoreductase subunit B	1.78796e-05	7.72878e-05
+ATP synthase subunit a	0.0176573	0.00141898
+UniRef50_U3T5D5	0.000496582	0.00805733
+UniRef50_S9XSX4	1.98177e-05	0.000507844
+UniRef50_J7D104	0.00363325	0.000253613
+UniRef50_B0K6Q8	0.000135631	0.000102092
+hypothetical protein, partial	0.000160373	0.00178269
+UniRef50_A0A058ZAA4	5.67809e-06	9.90768e-08
+ATP dependent zinc metalloprotease FtsH	0.000790921	0.00351506
+hypothetical protein	9.43931e-06	1.0075e-05
+NADP dependent isocitrate dehydrogenase protein	0.000193845	6.03068e-05
+hypothetical protein	3.99452e-06	5.35694e-06
+Transposase IS66	2.25601e-05	1.75432e-05
+UniRef50_C6SRZ7	0.00407107	0.000492588
+Pathogenicity island protein	5.46898e-05	0.000280578
+Sodium	0.000196384	0.00112111
+UPF0246 protein VV0659	0.000797126	0.00217203
+Aspartate carbamoyltransferase	0.00126094	0.00338101
+Extracellular solute binding protein family 1	2.26042e-05	4.82868e-06
+RelA SpoT domain protein	0.000183906	0.00111134
+glyoxalase	5.8773e-05	9.14067e-05
+Galactose methyl galactoside import ATP binding protein MglA	0.00246051	0.000580661
+phosphoribosylanthranilate isomerase	8.08794e-06	6.65164e-06
+Dihydroorotate dehydrogenase B ), catalytic subunit	5.34668e-06	0.0010112
+UniRef50_B9KKA8	5.98773e-06	9.89554e-05
+tryptophan synthase alpha chain	1.08066e-05	3.94146e-06
+ABC transporter ATP binding protein	4.70508e-06	2.39479e-06
+Binding protein dependent transport systems inner membrane component	0.000381887	0.00195937
+Molybdopterin biosynthesis protein MoeB	0.0268335	0.00365464
+UniRef50_UPI0002B45AB9	3.09222e-05	6.5139e-06
+L lactate dehydrogenase	0.0232372	0.00611345
+Integral membrane sensor signal transduction histidine kinase	0.000478981	0.00143086
+UniRef50_K8B662	0.000116557	7.63477e-05
+transcriptional regulator	0.000152737	5.00028e-06
+BclA protein	2.09352e-05	2.65908e-05
+UPF0294 protein ETA_26410	0.00269219	0.000230032
+Probable intron encoded endonuclease bI1	0.000260742	5.66615e-05
+UvrABC system protein A	9.76702e-06	4.33394e-05
+Archaeal DNA polymerase II, large subunit	2.50351e-06	3.63284e-05
+putative ribonucleotide reductase large subunit	2.39605e-06	7.18561e-05
+hypothetical protein	5.81632e-06	5.61475e-06
+Short chain dehydrogenase reductase SDR	9.21761e-06	7.09399e-06
+Membrane bound lytic murein transglycosylase A	0.00379905	0.000659769
+PREDICTED	4.47329e-06	3.49493e-05
+Transcriptional regulator, MarR family	0.00945555	0.00327764
+PREDICTED	1.87266e-06	5.89701e-07
+arabinose ABC transporter permease	2.63298e-06	2.23166e-06
+UniRef50_A0A022P145	0.000524332	9.5594e-06
+preprotein translocase subunit SecA	4.59065e-05	1.09542e-05
+Ornithine carbamoyltransferase	0.000146114	0.026429
+Nicotinamide riboside transporter PnuC	0.00205206	0.000287772
+Malate dehydrogenase	0.0235912	0.0038297
+UniRef50_B9KQ46	0.00163618	0.000202675
+Probable metallo hydrolase M6_Spy0554	0.00460016	0.004465
+Membrane protein 	4.06505e-05	4.16192e-06
+ATP dependent DNA helicase RecQ	0.00865391	0.000877552
+NAD dependent malic enzyme 1	2.23627e-05	8.32085e-06
+30S ribosomal protein S10	0.00066207	0.0020207
+histidine phosphotransferase	5.76167e-05	1.23448e-05
+Acinetobactin biosynthesis protein	6.8906e-05	0.00253355
+UniRef50_A0A031C6N4	0.000183572	3.2554e-05
+Import inner membrane translocase	0.00448083	0.000286926
+UPF0176 protein ECA1781	0.00266458	0.000817641
+MatE efflux family protein	0.00312094	0.000330282
+Citrate synthase	0.0012035	0.000343505
+peptide permease BMEII0860	7.81975e-06	5.83386e-06
+Inosine 5 monophosphate dehydrogenase 1	2.01942e-05	4.86138e-06
+Arabinose efflux permease family protein	0.000101066	0.00211447
+hypothetical protein	2.41493e-05	1.69198e-05
+Initiation of plasmid replication	0.000650782	7.66437e-05
+Lipoyltransferase and lipoate protein ligase	0.0180474	0.00177236
+Transcriptional regulators	0.00367257	0.00209099
+UniRef50_F4CWF2	0.000111117	3.10492e-05
+Aromatic amino acid transport protein AroP 	0.0279902	0.00393319
+Proline  tRNA ligase	0.012936	0.0014879
+UniRef50_F0Y346	0.000202217	0.000122913
+UniRef50_V9VJ25	0.000224781	0.00507865
+Membrane protein	0.000124035	0.00245756
+Fructose 1 phosphate kinase	0.00212672	0.000297301
+Oligopeptide ABC transporter ATP binding protein	0.00103177	0.00041117
+TonB dependent siderophore receptor	0.000599013	0.000279445
+UniRef50_D9VJK2	5.08654e-07	8.59286e-05
+Peptide deformylase 1	1.15241e-05	4.89692e-05
+FAD linked oxidase domain protein	0.000538247	8.26748e-05
+DNA topoisomerase 3	0.00914547	0.00175405
+Putative major facilitator superfamily transporter	5.46828e-06	1.92223e-06
+Val start codon	2.96795e-05	2.97758e-05
+Tetrahydromethanopterin S methyltransferase subunit A	0.0025289	0.000257575
+ATP binding protein of ABC transporter	7.11519e-05	0.000681246
+ABC type nitrate sulfonate bicarbonate transporter, TauA	0.00850665	0.00217323
+Acetoin dehydrogenase E1 component	0.0084845	0.00236788
+Anti sigma F factor	0.00045893	0.000418577
+ribonuclease 3	1.17199e-05	3.81813e-05
+Transcriptional regulator, AraC family	0.00381514	0.000153216
+Formate dehydrogenase subunit beta	0.00328471	0.000349644
+UniRef50_H3VE51	0.000356187	0.000158201
+UniRef50_B9JCY0	7.32157e-05	2.55538e-05
+UniRef50_U5NMX6	0.0140028	0.00248362
+Marine sediment metagenome DNA, contig	1.05261e-05	6.04306e-06
+UniRef50_M8R009	0.00683258	0.000352097
+HTH type transcriptional activator TtdR	0.00219136	0.000239991
+hypothetical protein	0.000207996	0.000187046
+hypothetical protein	2.91948e-06	0.000115321
+NADH	0.00307467	0.000167538
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.0229714	0.00189625
+Tetracycline resistance protein TetM	0.000126941	4.78597e-05
+UniRef50_S4X5W3	0.000155127	5.58334e-05
+MFS transporter	1.47267e-05	5.65888e-05
+UniRef50_P36682	0.00309904	0.00125744
+Orotidine 5 phosphate decarboxylase	3.22406e-05	6.1048e-06
+Oligopeptide transport system permease protein OppB	0.00231757	0.000199257
+UniRef50_A8BSP6	0.000101141	0.000112231
+Hydrolase, haloacid dehalogenase like family	0.00509414	0.00125419
+Argininosuccinate lyase	0.00653891	0.00989071
+UniRef50_K7EGT5	3.10957e-05	0.000306229
+Type II R M system protein	3.63574e-05	0.00239581
+isoleucine  tRNA ligase	1.22617e-06	3.30125e-06
+UniRef50_A6E257	2.84702e-06	4.25333e-06
+50S ribosomal protein L2	0.00525874	0.000436113
+Adhesion protein associated protein	0.000586504	0.00358594
+Molybdenum cofactor biosynthesis protein 1	2.79537e-06	3.99244e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0156913	0.00169462
+Spermidine putrescine ABC transporter ATPase	0.000935072	0.000718952
+Probable amino acid acetyltransferase NAGS2, chloroplastic	2.55264e-06	2.70709e-06
+Primary replicative DNA helicase	4.14646e-06	3.67036e-06
+Ankyrin repeat protein A	0.000773166	9.3844e-05
+UniRef50_Q8CUB3	0.0466516	0.00591454
+UniRef50_D0K767	0.00706385	0.000331715
+UniRef50_Q8CUB1	0.00470352	0.000948551
+UniRef50_Q8CUB0	0.000613428	0.00019483
+4 hydroxyphenylpyruvate dioxygenase	0.00122315	0.000179325
+UniRef50_Q8CUB6	0.0073171	0.00389882
+UniRef50_Q8CUB4	0.0308383	0.00562187
+UniRef50_D4YZ36	8.63651e-05	2.11982e-05
+D galactose binding protein	0.000864917	0.00233874
+UniRef50_B5GNG9	2.5734e-05	0.000111929
+MULTISPECIES	8.33589e-06	5.84893e-06
+Signal peptidase I	0.000902172	0.000978529
+hypothetical protein, partial	8.01008e-05	6.71983e-06
+30S ribosomal protein S13	0.000168225	0.000515496
+uracil phosphoribosyltransferase	7.94106e-06	1.25221e-05
+Rlx protein	0.000352594	2.52519e-05
+UniRef50_Q9RUU7	6.01204e-05	0.0419999
+UniRef50_S4EU42	4.66387e-05	4.23424e-05
+molecular chaperone DnaJ, partial	1.20319e-05	9.08863e-06
+Membrane protein	0.000198385	0.000150219
+UniRef50_H9K042	5.83408e-05	6.93898e-05
+Ribose operon repressor	0.00495215	0.000956111
+Coenzyme PQQ synthesis protein E	0.000265445	0.00174018
+UniRef50_U3SUW9	0.019216	0.00208802
+acetyl CoA acetyltransferase	3.51328e-06	2.02944e-05
+Exported protein	0.00433149	0.00259708
+hypothetical protein	2.15549e-06	6.18822e-06
+Peptidase M42 family protein	0.000106503	0.000664999
+DNA binding protein iolR	0.000185938	0.00026491
+UniRef50_U9DSS6	3.75917e-05	1.00965e-05
+UniRef50_E5U235	0.000487097	0.000136873
+DNA ligase	0.00248494	0.000517516
+hypothetical protein, partial	1.42916e-05	1.54432e-05
+hypothetical protein	1.30879e-05	0.000152948
+hypothetical protein	3.69918e-06	1.41908e-05
+hypothetical protein	0.000160977	1.14451e-05
+UniRef50_M2ZV09	1.46742e-06	7.84843e-07
+Thioesterase superfamily protein	6.03019e-05	0.000508916
+TraU family protein	0.000199507	2.07303e-05
+UPF0042 nucleotide binding protein Dred_3054	0.000507595	0.00209723
+hypothetical protein	3.25797e-06	8.84757e-06
+Marine sediment metagenome DNA, contig	7.21122e-05	3.07988e-05
+homoserine dehydrogenase	4.36719e-06	8.08145e-05
+Glucan synthase 1 related protein	0.000619133	0.0211485
+UniRef50_G8WNN7	2.57509e-05	9.00566e-06
+Fasciclin domain containing protein	0.0001056	1.06219e-05
+HTH type transcriptional repressor NemR	0.0012851	0.00032595
+UniRef50_Q92UB9	0.000190516	5.16729e-05
+ferredoxin	7.02186e-06	4.40638e-06
+Two component system response regulator	0.0027023	0.000553308
+UDP N acetylglucosamine 1 carboxyvinyltransferase	2.76018e-05	0.00359242
+Phosphoadenosine phosphosulfate reductase	7.73101e-06	5.51869e-06
+UniRef50_U9V3J0	9.44898e-05	9.29881e-05
+UniRef50_Q5HNJ1	0.00820982	0.00139315
+Flagella basal body P ring formation protein FlgA	0.00269237	0.00149045
+UniRef50_F0LTE4	2.49781e-05	1.6866e-05
+40K cell wall protein	0.00224565	0.000846645
+UniRef50_A6M2E1	0.000489581	0.000233128
+UniRef50_Q1RF99	0.00326731	0.000175736
+hypothetical protein	4.7502e-05	9.91819e-06
+Methionine synthase	0.000862384	0.00186443
+HTH type transcriptional regulator CbbR	0.00215009	0.000222012
+6 phospho beta glucosidase GmuD	0.000531038	0.00356551
+Non canonical purine NTP pyrophosphatase	1.01642e-05	5.61624e-06
+Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein	0.0107819	0.00148114
+Extracellular solute binding protein, family 1	0.000210084	0.000140508
+Cro Cl family transcriptional regulator	0.000234723	1.56137e-05
+UniRef50_S8AV33	3.99731e-06	5.09211e-06
+Putative restriction  modification enzyme	3.92792e-06	0.000540955
+UPF0291 protein SE_1024	0.00251098	0.000383696
+UniRef50_B4RJ27	0.0100965	0.000212257
+PTS system, N acetylglucosamine specific IIBC subunit	0.000634931	0.000192659
+UniRef50_A0A014MC25	2.56425e-06	2.02666e-06
+hemolysin expression modulating protein	4.60991e-06	8.50899e-07
+Transketolase, N terminal subunit	0.000121498	0.00261778
+IS21 family transposase	9.40518e-06	1.05817e-05
+hypothetical protein, partial	3.29564e-05	5.17766e-05
+Hemin import ATP binding protein HmuV	8.50043e-06	0.000134097
+UniRef50_G7WK52	5.98373e-05	9.17353e-06
+UniRef50_X5MEU2	5.92807e-06	5.67975e-06
+Sucrose 6 phosphate hydrolase	0.0109171	0.00180899
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.01715e-05	4.12084e-05
+MATE efflux family protein	0.000147254	0.000556772
+Adapter protein MecA	0.00353532	0.000576684
+hypothetical protein, partial	2.88724e-05	5.19287e-05
+UniRef50_B7V3W3	5.71819e-06	0.000309603
+hypothetical protein	1.26439e-05	0.00125028
+UniRef50_R5QE34	0.000690924	0.000889327
+hypothetical protein	5.28301e-05	9.79908e-06
+PREDICTED	2.51626e-05	1.38127e-05
+UniRef50_G7U7Z2	7.96251e-05	0.00262992
+UniRef50_R5DNX0	0.000348786	0.00141269
+Ribonuclease 3	1.21083e-05	1.43325e-05
+hypothetical protein	5.66738e-05	1.16917e-05
+Acetyltransferase	0.00296862	0.000193502
+UPF0246 protein NMS_0251	9.76736e-06	1.05839e-05
+UniRef50_U6MRR8	5.54446e-05	4.93052e-05
+1 pyrroline 5 carboxylate dehydrogenase, putative	0.000487464	0.0265479
+Xylose transport system permease protein XylH	0.00337195	0.000209168
+Glutamyl tRNA synthetase	0.00385666	0.000441762
+ATP synthase gamma chain	0.00392092	0.00143659
+UniRef50_A0A038G154	1.03518e-05	3.56774e-05
+Deacetylase	0.0043879	0.000555411
+Glutamate ABC transporter, periplasmic glutamine binding protein	0.0141429	0.00149678
+ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein	0.000469461	0.000384319
+UniRef50_A0A025E7F4	0.000107848	4.19385e-05
+Peroxiredoxin Q, chloroplastic	1.06792e-05	0.000464489
+Fructose 1,6 bisphosphatase class 1 1	0.000114169	1.88704e-05
+ABC type transport system, ATP binding protein	0.000350704	0.0031882
+hypothetical protein	1.55541e-06	7.58949e-06
+Adenine deaminase	0.000348231	0.000327713
+hypothetical protein	1.82649e-05	1.75688e-05
+tRNA hydroxylase	1.39578e-05	1.10772e-05
+UniRef50_T6AKZ2	4.46035e-05	5.14555e-05
+UniRef50_A3K6W1	3.3646e-05	1.50135e-05
+UniRef50_D6XR13	4.66349e-05	0.0020212
+UniRef50_F5M2N9	0.000106083	2.65786e-05
+Uroporphyrinogen III C methyltransferase CobA	0.000876198	0.000135627
+Activating molecule in BECN1 regulated autophagy protein	1.5722e-06	3.54645e-05
+oxidoreductase	2.47388e-05	0.0035781
+hypothetical protein	8.69282e-05	2.00545e-05
+TRAP type bacterial extracellular solute binding protein	0.00995096	0.00083133
+Replication initiation protein 	0.000126987	5.02949e-05
+Aspartate  tRNA ligase	0.00590881	0.000982098
+resolvase	4.73401e-05	5.68005e-06
+DNA polymerase I	1.47304e-06	1.12194e-05
+Immunoglobulin binding protein sbi	0.00810701	0.00112027
+Peptide methionine sulfoxide reductase MsrB	0.00280276	0.00059915
+Tyrosine aminotransferase	0.00105558	0.000312159
+peptidase M24	5.06568e-06	1.19026e-05
+PREDICTED	1.5185e-06	6.01578e-07
+Tail fiber assembly protein	0.00968661	0.000948561
+PAS PAC sensor hybrid histidine kinase	0.000633788	0.000349882
+Purine nucleoside phosphorylase DeoD type	3.39447e-05	0.000115766
+UniRef50_UPI000273D5E4	7.18634e-06	0.000109828
+UniRef50_Q6FAN6	0.000103447	0.00358155
+LemA family protein	2.11428e-05	7.62796e-06
+Putative metallo hydrolase YycJ	0.00532269	0.002396
+ABC transporter permease	5.00435e-05	2.04091e-05
+Superantigen like protein	0.026213	0.00238043
+N acetyltransferase, GNAT family	0.00293316	0.000419555
+UniRef50_I3X1B7	0.000304605	7.36096e-05
+UniRef50_B9KU34	0.00451993	0.000574491
+Galactosamine containing minor teichoic acid biosynthesis protein	0.00652019	0.00209363
+UniRef50_A1B9G9	0.00092628	0.000472552
+Diguanylate cyclase	2.11424e-06	2.3849e-05
+Xanthine dehydrogenase	0.000117994	0.0262534
+hypothetical protein	1.15792e-05	3.10549e-05
+UniRef50_A3PS71	0.0146694	0.00229698
+PREDICTED	9.39698e-05	7.29765e-06
+hypothetical protein	1.52048e-05	1.33016e-05
+Basic proline rich protein	7.37692e-05	5.63778e-06
+hypothetical protein	1.278e-05	9.37745e-06
+Diheme cytochrome c napB	0.000225803	3.51366e-05
+Transcriptional regulator, TrmB	0.000280239	0.000965303
+UniRef50_C6SRE9	0.00748373	0.000847259
+Two component system histidine kinase	0.000405696	0.00125509
+single stranded DNA binding protein	1.81374e-05	0.000317731
+mannose 1 phosphate guanyltransferase	1.05612e-05	8.82168e-06
+UniRef50_Q9ZKQ7	0.000361065	0.00198863
+Undecaprenyl diphosphatase	4.17521e-06	0.00129391
+hypothetical protein, partial	9.08402e-05	6.38429e-05
+hypothetical protein	9.95969e-06	2.55606e-05
+30S ribosomal protein S8e	0.0125589	0.000331309
+hypothetical protein	7.45705e-05	3.54975e-06
+Ribosomal RNA small subunit methyltransferase A	3.5002e-06	1.08604e-05
+hypothetical protein, partial	1.0267e-05	7.46463e-06
+Leucotoxin LukDv	0.0159847	0.00102801
+Threonine dehydratase biosynthetic, chloroplastic	2.22228e-06	1.10516e-05
+Cobalamin  biosynthesis CbiG protein	0.00018062	0.000256998
+hypothetical protein	6.85623e-05	1.75134e-05
+Response regulator of two component system	0.000258221	0.00266705
+Inner membrane protein YccS	0.0030322	0.000796408
+UniRef50_D1JNF2	5.89285e-05	6.0223e-06
+Transposase IS4 family protein	8.78697e-05	1.14037e-05
+Spermidine putrescine transport system, permease protein	0.00484401	0.000485356
+UniRef50_P75750	0.00193274	0.000619777
+UniRef50_A0A059LQ22	6.57705e-05	1.13043e-05
+major facilitator transporter	1.39459e-05	4.69306e-06
+UniRef50_Q6FB59	0.000647209	0.00128771
+Alkanesulfonate monooxygenase	2.19099e-05	1.63731e-05
+FliK family flagellar hook length control protein	4.38978e-05	0.000112372
+50S ribosomal protein L35	0.000354762	0.000597491
+ATP synthase subunit beta 2	1.54158e-06	5.66736e-06
+UniRef50_W1GG81	0.000264719	0.000271136
+UniRef50_A3KA49	0.000187257	2.02963e-05
+Cobyrinic Acid a,c diamide synthase	2.52344e-05	2.58839e-05
+DNA directed RNA polymerase subunit beta	8.14574e-06	3.66805e-06
+UniRef50_C7RN78	0.000845281	0.000597587
+Metal dependent hydrolase	0.000301387	0.00359959
+Anhydro N acetylmuramic acid kinase	0.000346564	0.000163245
+hypothetical protein	3.21376e-05	8.16011e-06
+UniRef50_A0A009MS46	0.000177897	2.78055e-05
+Class B acid phosphatase	0.00173802	0.000651879
+UniRef50_A1B792	0.000314014	7.84862e-05
+Urease subunit beta	3.82431e-05	1.69596e-05
+UniRef50_A6W1Y7	0.00141225	0.000112883
+hypothetical protein	2.75426e-05	7.08473e-06
+Sensor histidine kinase RcsC	0.00301491	0.000486811
+Helicase C terminal domain protein	0.000189916	0.00268781
+DNA topoisomerase I 	0.000104654	0.000920396
+ATP dependent DNA helicase Hel308	1.6773e-06	1.34196e-06
+Multimeric flavodoxin WrbA	0.0016004	0.000613543
+UniRef50_C6SQM5	0.00363422	0.000742659
+UniRef50_B0V6S4	0.00390453	0.00492971
+ATPase	0.000640168	0.00391569
+Peptidase S14, ClpP	0.00273143	0.000115257
+UniRef50_R1G067	4.5699e-05	4.60867e-05
+UniRef50_D1BEK3	2.5192e-05	8.14808e-06
+UniRef50_A1B788	0.000116538	2.67735e-05
+UniRef50_A6VEE0	0.000650068	1.15702e-05
+Glycerate 2 kinase	0.00544661	0.000609816
+UniRef50_W1VWR4	0.00391644	0.000564489
+hypothetical protein	6.91953e-05	3.38638e-05
+hypothetical protein	9.3514e-06	4.24441e-06
+UPF0225 protein PMI1492	2.1931e-05	0.00106647
+UniRef50_F0VYF6	0.000378144	0.000271253
+Regulator of sigma E protease	0.00138121	0.000571829
+UniRef50_Q1QMX7	0.000202766	6.77804e-05
+ComE operon protein 1	0.00366822	0.000133015
+50S ribosomal protein L4	0.000336549	0.00372884
+Ribulose bisphosphate carboxylase small chain 1, chloroplastic	4.06705e-05	1.23148e-05
+UniRef50_N8WZK4	4.77734e-06	1.16685e-05
+Oxidoreductase, short chain dehydrogenase reductase family	6.77283e-06	5.75838e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00991754	0.00169926
+UniRef50_F6BZ95	0.000100286	0.000120642
+DoxX subfamily, putative	1.91332e-05	6.39541e-06
+Bifunctional protein PyrR	0.0163928	0.000193832
+Monovalent cation proton antiporter subunit E	0.00380187	0.00251845
+ATP dependent DNA helicase Hel308	0.0028653	0.000180042
+hypothetical protein	1.72619e-05	2.07012e-06
+UniRef50_S6B942	0.00391648	0.00118278
+Ferredoxin 4	0.00598147	0.00419781
+UniRef50_R3N2B8	0.000720263	0.000144466
+hypothetical protein	1.78983e-05	3.15102e-05
+Hyaluronate lyase	0.000204771	0.00281169
+UniRef50_U5WBY0	7.49949e-06	0.000286889
+hypothetical protein	3.58719e-05	2.42798e-06
+Cytochrome bd I oxidase subunit II	0.00673935	0.000251698
+MULTISPECIES	1.23284e-05	5.83438e-05
+UniRef50_V5UAT4	1.37213e-05	0.000534547
+Nucleoside diphosphate kinase	0.000572056	0.00115726
+hypothetical protein	4.78967e-05	1.47294e-05
+N acetylneuraminate lyase	0.00306123	0.000357233
+D alanyl D alanine carboxypeptidase	5.13892e-06	3.57258e-06
+Carbon starvation CstA family protein	0.0015407	0.000487961
+hypothetical protein, partial	4.25617e-05	4.54142e-06
+hypothetical protein	1.76844e-05	2.9915e-05
+hypothetical protein	1.07278e-05	7.89322e-05
+UniRef50_I1ELS0	1.28008e-05	2.51171e-05
+Triacylglycerol lipase	0.000364058	0.00298736
+organic solvent ABC transporter ATP binding protein	0.000120318	2.34885e-05
+Tetraacyldisaccharide 4 kinase	0.00170313	0.000191848
+Glycosyl transferase, group 1 family protein	0.00762639	0.00163487
+CRISPR associated endonuclease Cas9	0.00180502	0.000518403
+Transcriptional regulator CtsR	0.00926035	0.0034991
+ribonucleoside diphosphate reductase large subunit	1.38043e-06	5.01855e-05
+UniRef50_Q0BVI1	0.000127893	2.55309e-05
+acetylglutamate kinase	1.34153e-05	3.93661e-06
+Regulatory protein RecX	0.0158841	0.00120192
+Cytochrome c type protein NrfB	0.00659224	0.000171345
+Protease HtpX homolog	0.00280996	0.0010181
+potassium transporter	8.78147e-06	4.03029e-06
+Multidrug resistance like ATP binding protein MdlA	2.92228e-06	6.18666e-06
+Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.0194568	0.00272982
+Sigma 54 interaction domain protein	8.49858e-05	0.00225429
+Phosphatase, putative	0.000138118	0.00316503
+hypothetical protein	3.61248e-05	5.40515e-06
+Membrane protein	0.000202778	0.00406195
+uracil phosphoribosyltransferase	1.46761e-05	6.58698e-06
+Inner membrane protein YeeA	0.00171111	0.000476255
+Diaminopropionate ammonia lyase	0.000132499	0.0011735
+UniRef50_V9X5Q7	0.000285909	0.000251254
+UniRef50_Q08NT1	0.000248443	6.37849e-05
+Flagellar basal body rod protein FlgF	2.2773e-05	4.87736e-06
+Malonyl CoA acyl carrier protein transacylase	0.000562789	0.004535
+Uracil phosphoribosyltransferase	3.33978e-05	5.76974e-05
+Relaxase mobilization nuclease family protein	0.000388357	0.0018452
+ATP dependent 6 phosphofructokinase	0.000323613	0.00967161
+Aspartokinase	0.00195972	0.000704647
+UniRef50_C7QHR1	0.00013341	6.62234e-05
+UniRef50_C3L0M2	0.000109506	0.000544118
+N acetylmuramic acid 6 phosphate etherase	6.34584e-06	6.34508e-06
+Transporter, major facilitator family protein	0.0190168	0.00290902
+TonB dependent receptor	0.000429928	0.000242374
+hypothetical protein	0.00021816	1.77896e-05
+Cell surface protein	5.07629e-05	0.000365935
+NADP specific glutamate dehydrogenase	8.60611e-05	0.000398543
+ATP dependent 6 phosphofructokinase	1.97373e-05	0.000515424
+UniRef50_Q0SHI1	0.000156006	0.000660542
+ICESt1 ORFJ phage replication initiation factor	0.00698379	0.00120621
+hypothetical protein, partial	5.07327e-05	1.53977e-05
+Cell wall surface anchor family protein,putative	0.000245493	0.0021492
+Dehydrogenase	0.000270414	2.23361e-05
+3 propionate 3 hydroxycinnamic acid hydroxylase	0.00241278	0.000428164
+hypothetical protein, partial	9.95299e-06	6.55255e-05
+UniRef50_M9R1X4	0.000101552	4.7534e-05
+6 phosphogluconate dehydrogenase, decarboxylating	7.30569e-05	0.00253951
+1 aminocyclopropane 1 carboxylate deaminase like protein	7.08014e-06	9.19927e-05
+Nitroreductase	0.000180294	0.000559851
+Flagellar protein FlgJ, putative	9.72981e-05	3.65612e-05
+Escherichia coli IMT2125 genomic chromosome, IMT2125	0.00249468	0.000147188
+UniRef50_X1YKD9	9.26461e-07	3.28938e-06
+2 isopropylmalate synthase	0.00155874	0.00193553
+methyltransferase	7.36125e-06	6.99247e-06
+3 oxoacyl [acyl carrier protein] synthase 2	9.46501e-06	0.00189286
+hypothetical protein	1.0662e-05	1.04947e-05
+ABC transporter membrane spanning permease,Pepexport, Vex3	0.000281141	0.00351225
+Creatinase	0.00499451	0.00181747
+hypothetical protein	3.84822e-06	3.89933e-06
+Aspartate carbamoyltransferase regulatory chain	0.00340584	0.000419837
+chromosome partitioning protein ParB	4.43863e-05	0.000284805
+Glutamate  tRNA ligase	2.43786e-05	2.63103e-06
+Exported protein, conserved	0.00063398	0.000211494
+ABC transporter related protein	0.00291348	0.000494636
+ABC transporter permease	1.959e-05	3.00703e-05
+UniRef50_F5XE95	0.000366611	0.00262213
+UniRef50_W2RQC0	4.4872e-05	9.52146e-06
+hypothetical protein	0.000137826	4.58114e-06
+Ribonuclease D	0.00277264	0.000453261
+UniRef50_F7TB61	8.23542e-06	4.02718e-05
+UniRef50_U5UU73	1.17218e-05	1.87488e-05
+hypothetical protein	8.59034e-06	7.63156e-06
+Putative glutathione dependent formaldehyde activating enzyme	4.79047e-05	8.04115e-06
+Primary amine oxidase	0.000383766	0.00423077
+PREDICTED	0.000455255	7.04258e-05
+UniRef50_A3VBF6	0.000103172	6.6052e-05
+L lactate permease	0.0159462	0.00188444
+hypothetical protein	3.63625e-06	3.05076e-06
+ABC type transporter, integral membrane subunit	0.0106376	0.00167358
+PTS system subunit IIBC, sucrose specific	0.000322797	0.000575197
+Transcriptional regulator, TetR family protein	8.77447e-06	4.97361e-05
+PREDICTED	4.10258e-06	2.69879e-06
+Anthranilate synthase component 1	0.00440717	0.00341888
+UniRef50_R6U3E2	0.000374844	0.000594449
+cysteine ABC transporter ATP binding protein	2.05513e-06	9.68146e-07
+PAP2 superfamily protein	0.00281766	0.000694545
+Phosphoribosylformylglycinamidine synthase 2	7.35837e-06	1.58681e-06
+ABC transporter related protein	6.40811e-06	4.5588e-06
+Protein ORF84	2.38716e-06	3.9791e-06
+Inner membrane arginine ABC transporter permease	1.85476e-05	1.13913e-05
+shikimate dehydrogenase	3.31979e-05	1.51427e-05
+hypothetical protein	0.00022682	2.4027e-05
+phosphoesterase	0.000287979	2.8923e-05
+UniRef50_M5M5H9	8.70878e-05	6.05772e-05
+Putative protein TPRXL	8.70029e-06	9.62399e-05
+DbpA RNA binding domain protein	0.000909832	9.79968e-05
+D xylose proton symporter	0.0033567	0.00369167
+Probable chemoreceptor glutamine deamidase CheD	0.000251355	2.06264e-05
+Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.015865	0.00206756
+UniRef50_G0DXL2	0.000249295	0.00331327
+deaminase reductase	1.4629e-05	9.28845e-05
+Inner membrane transport protein YdiM	0.00314418	0.000214301
+UniRef50_A0A036SNN0	0.00106917	0.000335018
+Acyl carrier protein	2.85835e-05	0.000216753
+2 hydroxychromene 2 carboxylate isomerase	6.80979e-05	2.44704e-05
+Transcriptional regulator, GntR family	0.00299607	0.000884042
+Transcriptional regulator, LysR family	0.00150143	0.000653119
+hypothetical protein	2.7019e-05	6.96919e-05
+Peptide methionine sulfoxide reductase MsrB	0.000501465	0.0211843
+UniRef50_Q9RV85	0.000312584	0.0162065
+UniRef50_Q9RV87	7.01143e-05	0.00225026
+Probable NAD dependent malic enzyme 4	0.00805724	0.00118937
+UniRef50_A5ULC6	0.00222817	0.000102846
+Primosome assembly protein	0.0048913	0.00301353
+hypothetical protein	0.000183645	5.09278e-05
+SAM dependent methyltransferase	4.41113e-05	0.000142499
+hypothetical protein	0.00014829	4.62129e-05
+diaminopimelate decarboxylase, partial	1.60443e-05	0.000160869
+Thi4 domain protein	3.54226e-05	8.23447e-05
+Uroporphyrinogen III C methyltransferase	1.8657e-05	8.8727e-06
+IS1016 transposase	0.000980318	0.00653469
+UniRef50_D6ANF2	2.92342e-05	1.4188e-05
+Ribonucleoside diphosphate reductase subunit alpha	2.07917e-05	0.00533761
+NAD+ synthase	3.95999e-05	0.000119714
+DNA primase	2.51694e-06	2.96393e-06
+Predicted protein 	1.72695e-05	1.63333e-05
+Acyl CoA dehydrogenase 	4.06453e-05	5.54909e-06
+L sorbosone dehydrogenase	0.000151542	0.00412946
+Xanthine uracil permease family protein	0.000550276	0.00115699
+Leucine  tRNA ligase	1.92924e-06	1.64825e-06
+Phosphoserine phosphatase	0.000399867	0.00246015
+hypothetical protein	0.000121607	4.73501e-05
+UniRef50_V6AGZ8	0.00166815	0.000576746
+hypothetical protein	3.19102e-05	0.000123487
+hypothetical protein	0.000164039	9.32167e-05
+isopentenyl diphosphate delta isomerase	4.22593e-05	9.99075e-06
+hypothetical protein	5.26067e-06	2.20619e-06
+hypothetical protein, partial	1.66213e-05	6.06605e-05
+L carnitine gamma butyrobetaine antiporter	0.00254257	0.00051566
+UniRef50_A0A017KTW4	5.01132e-05	2.567e-05
+UniRef50_A0QM11	7.18609e-05	3.23422e-05
+Sensor protein KdpD	8.77953e-05	3.45459e-05
+UPF0340 protein SAS2017	0.0139903	0.000516213
+UniRef50_M5TC97	2.12035e-05	0.000398254
+hypothetical protein	1.42446e-05	2.0007e-05
+Isopentenyl phosphate kinase	0.00206388	0.000253292
+hypothetical protein	1.15167e-06	1.89531e-06
+Pyridoxine 5 phosphate synthase	0.00274808	0.002178
+Gamma glutamyl phosphate reductase	0.00626462	0.00303301
+Anion transporter	0.0211683	0.00229342
+Thermophilic aminopeptidase 1 alpha chain 	0.0231778	0.00291907
+Transporter YbhF	0.00131208	0.000312361
+hypothetical protein	7.54524e-05	1.01671e-05
+Potassium proton antiporter regulatory subunit, CPA2 family	0.000221414	0.00312015
+ATP dependent protease ATP binding subunit like protein AmiB	9.17026e-05	0.000101452
+UniRef50_C3YC75	6.34944e-07	6.57594e-06
+transketolase	1.24592e-05	2.02216e-06
+hypothetical protein	2.77562e-05	1.03015e-05
+30S ribosomal protein S3	0.000243009	0.000422709
+dihydrolipoamide succinyltransferase	7.15471e-06	3.69393e-05
+TRZ ATZ atrazine degradation family enzyme	0.000632969	0.000990438
+IS861, transposase OrfB	0.000304335	2.23042e-05
+hypothetical protein	2.95149e-05	4.4118e-06
+Transporter, anaerobic C4 dicarboxylate uptake  family	8.42073e-05	0.00299727
+UniRef50_Q5HQV6	0.0029993	0.000383696
+DNA gyrase subunit B, mitochondrial	1.99467e-06	1.16243e-05
+Putative RNA methyltransferase YpsC	0.0047557	0.00259742
+hypothetical protein	9.41627e-06	9.43229e-06
+Carbon monoxide dehydrogenase	0.000127684	0.000366204
+AAA+ family ATPase	0.000257289	7.12013e-05
+Restriction endonuclease	0.000130234	0.000482136
+Probable DNA directed RNA polymerase subunit delta	0.00685172	0.00510289
+Leucyl phenylalanyl tRNA  protein transferase	1.57824e-05	5.86635e-05
+UniRef50_R8ZDY1	0.000196238	0.000102028
+pseudouridine synthase	8.83533e-05	1.04383e-05
+UniRef50_X7E4C5	4.08956e-05	4.74267e-06
+von Willebrand factor, type A	0.000272644	0.000523551
+Phosphoheptose isomerase	4.48346e-05	7.58557e-06
+UniRef50_B9TEU6	1.34402e-05	7.63202e-05
+Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0278403	0.00330841
+Cellulase 	9.57918e-05	0.00294845
+UniRef50_C3X191	1.58107e-05	8.27314e-06
+ABC type iron transporter, substrate binding lipoprotein	9.75697e-06	5.02016e-05
+50S ribosomal protein L11	0.124104	0.00124579
+Xylulose kinase	0.00240471	0.000741846
+UniRef50_N8HI80	7.46966e-06	7.13635e-06
+Fusaric acid resistance protein	4.78505e-05	4.96598e-05
+UniRef50_Z5X6F0	1.40805e-05	4.26561e-05
+BFD like [2Fe 2S] binding domain protein	0.000417908	2.17904e-06
+Phosphoserine aminotransferase	0.00013984	9.71014e-05
+hypothetical protein	1.34405e-05	0.000103028
+UniRef50_G3W4Q5	0.00114442	2.28092e-05
+UniRef50_W7X105	0.00019993	0.00015976
+Response regulator receiver SARP domain containing protein	0.00173886	0.000854021
+hypothetical protein	4.74599e-06	8.2289e-06
+hypothetical protein	1.54188e-06	4.90745e-05
+hypothetical protein	7.96251e-05	1.33177e-05
+UniRef50_E8NRV4	9.28953e-05	9.38839e-06
+riboflavin synthase subunit alpha	2.16311e-05	8.31752e-06
+UniRef50_K7VT43	2.63439e-05	2.60514e-05
+hypothetical protein, partial	0.000160215	0.000220751
+hypothetical protein	0.000477291	4.83409e-05
+pseudouridine synthase	3.86357e-05	1.91282e-05
+D ala D ala transporter subunit	7.65469e-06	1.23156e-06
+Enoyl [acyl carrier protein] reductase [NADH] FabI	5.0179e-06	0.000708375
+ferredoxin	1.13089e-05	6.66712e-05
+hemolysin	2.79833e-05	5.35214e-06
+hypothetical protein	2.24209e-06	2.81819e-06
+hypothetical protein	1.58435e-05	6.00503e-06
+homoserine acetyltransferase	4.62167e-06	4.22507e-06
+UDP glucose 4 epimerase	0.000171197	0.002365
+UniRef50_F3FFT1	3.99039e-05	2.00058e-05
+hypothetical protein	3.70278e-06	2.79675e-06
+Membrane protein, putative	0.000269959	0.000125573
+hypothetical protein	1.80524e-05	1.17414e-05
+Glutamate dehydrogenase	0.000152962	0.000122729
+UniRef50_A0A031UV61	1.69402e-05	1.58996e-05
+hypothetical protein	9.8459e-06	3.68434e-05
+Probable elastin binding protein EbpS	0.00741897	0.00208406
+PTS system mannitol specific transporter subunit IICBA	1.44119e-06	7.329e-06
+Homocitrate synthase	4.33574e-06	4.80223e-06
+ATP dependent helicase deoxyribonuclease subunit B	0.00485679	0.000675825
+SecA DEAD domain containing protein	2.90802e-06	1.79819e-06
+Putative periplasmic ligand binding sensor protein	2.86084e-06	0.000140328
+Purine nucleoside phosphorylase	0.000462909	0.00117068
+Nitroreductase	0.000571849	0.000131843
+UniRef50_V5VAK2	0.000136067	0.00336782
+DNA helicase	1.08034e-05	5.98699e-05
+UniRef50_Q9RS08	0.000358608	0.0237963
+Acid phosphatase vanadium dependent haloperoxidase related protein	0.00152419	0.0324241
+A G specific adenine glycosylase	0.0164559	0.00234061
+50S ribosomal protein L22	0.000251156	0.0253994
+hypothetical protein	9.4154e-05	3.55457e-06
+DeoR faimly transcriptional regulator	4.76208e-05	5.59169e-06
+Aconitate hydratase	0.00395141	0.000569924
+hypothetical protein	3.85475e-06	4.08466e-06
+Sensor histidine kinase 	0.00392278	0.000935944
+SAM dependent methyltransferase	0.000343044	8.44636e-05
+UniRef50_S7N8D9	0.000333223	1.69686e-05
+UniRef50_E8SP16	1.3829e-05	7.92709e-05
+Phosphoribosylamine  glycine ligase	8.1031e-05	0.000463609
+transporter	1.67549e-06	0.00044053
+Diguanylate cyclase	5.7382e-06	2.50104e-05
+Methyltransferase type 12	0.000350571	0.000157241
+elongation factor G	1.80014e-05	1.1806e-05
+DNA gyrase subunit B	0.0049615	0.00317251
+hypothetical protein, partial	2.03092e-05	0.000218767
+UniRef50_L7UJT3	5.9041e-05	1.95185e-05
+UniRef50_Q3YS50	2.04816e-05	1.5995e-05
+Multidrug efflux permease, AraJ	0.00261382	0.000701561
+UniRef50_S1EZD1	4.22555e-06	3.98132e-06
+UniRef50_Q5NXH9	5.67807e-06	7.57855e-06
+UniRef50_I2BZE4	0.00033127	0.000303764
+UniRef50_Q49Z78	0.017645	0.00231712
+Marine sediment metagenome DNA, contig	5.633e-05	7.28871e-05
+Probable manganese efflux pump MntP	0.00454181	0.000181751
+Integral membrane protein	4.92913e-05	9.45093e-05
+Arabinose efflux permease family protein	0.00123005	0.00372555
+AraC family transcriptional regulator	6.71626e-06	3.97973e-06
+Transcriptional regulator PpsR	0.00444286	0.00068584
+Molybdopterin guanine dinucleotide biosynthesis protein B, MobB	0.00246184	8.94271e-05
+Dehydrosqualene desaturase	0.0114674	0.00125867
+Imidazoleglycerol phosphate dehydratase	0.000116956	2.90856e-05
+DNA invertase	6.54059e-05	1.01195e-05
+Maf like protein YhdE	0.00158918	0.000184743
+Oxaloacetate decarboxylase	0.000815321	0.000172911
+ABC transporter permease	0.000203842	5.41199e-06
+Fructose bisphosphate aldolase class 1	0.00196455	0.00368878
+Cobaltochelatase CobT	0.00374187	0.000217986
+Phosphoserine phosphatase	8.92512e-05	2.29547e-05
+UniRef50_D8UBN5	8.72195e-07	1.88226e-06
+UniRef50_A0A016UJ97	1.34712e-05	2.15123e-05
+hypothetical protein, partial	4.24062e-05	1.30476e-05
+BmrU protein	0.000349518	0.000549227
+N methylhydantoinase A acetone carboxylase, beta subunit	0.000541736	0.000606886
+UniRef50_Y3F751	0.00259669	0.00111531
+UniRef50_V4J8H7	8.64766e-05	1.44292e-05
+UniRef50_C6STY1	0.000634997	0.00457527
+Transposase IS66 family protein	2.11231e-05	2.50863e-05
+UniRef50_A3SMT4	1.39268e-05	8.62665e-06
+hypothetical protein	3.46436e-06	4.67178e-06
+ActP protein	3.66979e-06	7.17057e-06
+hypothetical protein	5.57976e-05	8.08526e-06
+UniRef50_P0ADT1	0.00435763	0.00071623
+DNA resolvase	6.49328e-05	8.07656e-06
+DNA replication and repair protein RecF	0.000603014	0.000717536
+3 phosphoglycerate dehydrogenase	9.2844e-06	5.74564e-06
+Marine sediment metagenome DNA, contig	2.13257e-05	1.00791e-05
+thiamine biosynthesis protein ThiF	3.49983e-06	4.41318e-06
+phosphoserine phosphatase	3.05129e-05	3.08039e-05
+23S rRNA  methyltransferase RlmB	0.00027968	0.00014229
+Transposase	2.15215e-05	2.14588e-05
+Polyhydroxyalkanoate granule associated protein	0.000222389	0.00149863
+Phosphopantetheine adenylyltransferase	0.0157677	0.00238264
+UniRef50_Z5X3K7	3.96402e-05	2.50943e-05
+NADH dehydrogenase (quinone)	0.00176377	0.0189518
+UniRef50_K2JGC9	8.40769e-06	2.7669e-06
+UniRef50_Q9HVN8	0.000444175	0.000308741
+outer membrane adhesin like proteiin	4.34362e-06	7.2353e-06
+UniRef50_Q83GU1	6.32606e-06	4.12781e-05
+GDP mannose 6 dehydrogenase	0.000893325	0.000111775
+Formamidopyrimidine DNA glycosylase	5.70048e-06	3.9606e-05
+UniRef50_D2TWU4	0.00015813	0.00135493
+Potassium uptake protein, Trk family	0.00410965	0.00211198
+Peroxisomal  2 hydroxy acid oxidase GLO5	3.54495e-06	5.43661e-05
+hypothetical protein	2.55138e-05	6.34272e-05
+Riboflavin biosynthesis protein RibD	1.32294e-05	2.39586e-05
+hypothetical protein, partial	2.34306e-05	2.90229e-05
+Endonuclease MutS2	2.30696e-06	0.000480723
+Regulatory protein HrpB	1.28349e-05	1.0271e-05
+Extracellular solute binding protein family 3	0.00153667	0.00851637
+UniRef50_X1YEM9	1.01952e-05	4.11655e-06
+UniRef50_V7EI41	2.86016e-05	1.73265e-05
+MULTISPECIES	0.000180227	0.00012194
+Flp pilus assembly protein, pilin Flp	0.000114243	3.36191e-05
+UniRef50_F8DIB1	0.00011161	4.35017e-05
+UniRef50_A3V3M4	9.87453e-05	9.40927e-06
+Transcriptional regulator of hydrogenase activity	0.000244609	0.00244684
+UniRef50_H7FEN7	9.2056e-05	8.66017e-05
+Pirin like protein	0.000237356	0.00533655
+ABC transporter related	0.000214894	0.000751498
+SAM dependent methyltransferase	0.00439876	0.00084866
+UniRef50_D2RBW1	4.82543e-06	6.77256e-06
+UniRef50_D3E362	0.000776651	0.000507259
+LacI family transcriptional regulator	0.00066215	0.00310885
+UniRef50_E8QV25	6.47209e-05	0.00271122
+Immunoglobulin G binding protein A	0.00309358	0.000313547
+Putative integral membrane protein MviN	1.19359e-05	3.15338e-06
+UniRef50_A4ECQ1	5.23519e-06	1.26261e-05
+Demethylmenaquinone methyltransferase	0.00014362	0.000336437
+hypothetical protein	5.42327e-05	0.000224557
+GTP sensing transcriptional pleiotropic repressor CodY	0.000233175	0.000585728
+UniRef50_Q3JUU4	3.07079e-05	1.78671e-05
+Alpha beta fold family hydrolase	0.000340641	0.00017709
+Oxidoreductase FAD NAD binding domain protein	0.000535858	0.000378885
+hypothetical protein	1.27461e-05	8.90002e-06
+Ferric alcaligin E	9.90666e-05	0.00297473
+BLUF domain containing protein	0.000551719	0.000245314
+UniRef50_B8GLJ6	4.51941e-06	3.8569e-06
+UniRef50_M0UCQ8	1.20276e-05	4.85574e-06
+UniRef50_Q08UF6	0.000136425	0.000122741
+hypothetical protein	3.97473e-05	3.27848e-05
+UniRef50_A0A031I5W8	8.91753e-05	3.60633e-05
+HAD family hydrolase	1.6727e-05	4.25222e-05
+hypothetical protein	1.64033e-05	3.49646e-06
+Transglutaminase domain protein	1.19716e-05	5.80199e-05
+UniRef50_S5XRZ9	0.000822924	0.000650878
+Protein bax	0.00094738	0.000142516
+Conjugal transfer protein	9.92607e-05	1.04763e-05
+Alpha amylase	0.000142324	0.0180044
+UniRef50_F2HR75	0.0131987	0.00156148
+Transcription elongation factor GreB	0.000849596	0.000244645
+Potassium transporting ATPase A chain	7.19676e-06	0.000900061
+peptide ABC transporter permease	8.58071e-05	2.90296e-05
+hypothetical protein	1.51112e-05	4.35536e-06
+hypothetical protein	3.23557e-06	3.66605e-06
+hypothetical protein	5.4953e-06	1.73343e-06
+Serine protein kinase RsbW	9.84238e-05	0.000620053
+Dihydroxy acid dehydratase	0.00719215	0.00296692
+UniRef50_B9TGU7	1.69688e-05	2.70414e-05
+UniRef50_Q57NQ3	2.86301e-05	2.13502e-05
+Tetratricopeptide TPR_2 repeat protein	0.000106841	0.00108369
+Pantothenate kinase	0.00300016	0.00352918
+magnesium chelatase	1.06992e-05	1.36939e-05
+Arylsulfatase	0.00156405	0.000851229
+Putative cyclic di GMP phosphodiesterase YliE	0.002706	0.000513328
+Phosphoserine phosphatase	8.92512e-05	2.29547e-05
+branched chain amino acid transporter II carrier protein	6.71338e-06	2.82851e-06
+Phage replisome organizer, putative	0.000167437	0.000476404
+UniRef50_D2U1P2	9.02626e-05	2.67652e-05
+UniRef50_Q30UY1	0.00955645	0.000599837
+30S ribosomal protein S17	3.74828e-05	0.000119973
+UniRef50_K2A1K8	0.00261939	0.000287109
+UniRef50_Q3JTY3	5.87003e-05	7.76111e-05
+Carbamoyl phosphate synthase small chain	2.01394e-05	3.42506e-06
+Membrane protein	1.01593e-05	1.93296e-05
+hypothetical protein	4.74664e-06	4.20445e-06
+Lipid A export ATP binding permease protein MsbA	7.5443e-06	2.4722e-06
+hypothetical protein	3.8242e-05	3.33491e-06
+Adenylosuccinate synthetase	3.44839e-06	5.97185e-06
+hypothetical protein	2.51629e-06	2.02186e-05
+Digeranylgeranylglycerophospholipid reductase 1	0.00297823	0.00209381
+Glutamate racemase	0.00065384	0.000325434
+3 ketoacyl CoA thiolase	0.00301858	0.00316049
+Ribonuclease E	0.000119184	0.0021983
+Uridine kinase	1.20238e-05	9.90842e-05
+cupin	5.80854e-05	1.10051e-05
+Hydrogenase 2 large chain	0.00278659	0.000535417
+hypothetical protein, partial	0.000140589	3.90368e-05
+UniRef50_G4LC92	0.00182691	0.000850688
+hypothetical protein	5.53553e-06	2.75751e-06
+Taurine import ATP binding protein TauB	7.59647e-06	5.24475e-06
+UniRef50_Q9RUX9	0.00120802	0.0256819
+Bacteriophage replication	0.000169225	0.00023619
+UniRef50_G6Y6C6	0.000504514	2.33449e-05
+Enoyl [acyl carrier protein] reductase [NADH] FabI	3.78469e-06	1.70432e-05
+Melibiose operon regulatory protein	0.00279261	0.000572133
+membrane protein	1.09848e-05	7.97779e-06
+hypothetical protein	1.10544e-05	0.000183226
+Thymidylate synthase	2.54362e-05	0.000106042
+UniRef50_G5FKI8	0.000153782	5.78015e-05
+branched chain amino acid transport ATP binding protein	7.75821e-06	7.40279e-05
+major facilitator transporter	5.08419e-06	1.00991e-05
+potassium transporter	1.31753e-05	7.92588e-06
+Periplasmic binding protein	6.95012e-06	6.05645e-05
+hypothetical protein	2.59347e-05	0.000180532
+tail fiber protein	6.52727e-06	1.18499e-05
+DNA mismatch repair protein MutL	2.39348e-06	3.59086e-06
+hypothetical protein	3.79692e-06	3.88466e-06
+UniRef50_K7U6X3	9.43998e-05	2.11694e-05
+UniRef50_U3SR01	0.00401461	0.00127039
+Chemotactic signal response protein, putative	0.000102658	2.98417e-05
+Peptide transporter	0.00011287	0.00359965
+Nitroreductase	0.0015533	0.000404898
+UniRef50_A9MD69	0.000845578	0.00469809
+UniRef50_Q3JNQ1	0.000180649	3.04414e-05
+Pyridoxal 5 phosphate dependent protein beta subunit	0.000128535	0.00049988
+TRAP transporter DctM subunit tripartite ATP independent periplasmic transporter solute receptor DctP family	8.64191e-05	1.23354e-05
+Transcriptional regulator	0.000517617	0.000252452
+trehalose phosphatase	2.98241e-05	1.31376e-05
+Flavodoxin reductase  family protein 1	0.000244795	0.00270184
+heme ABC transporter ATPase	2.92043e-05	2.47217e-06
+50S ribosomal protein L22	1.82266e-05	0.00018191
+UniRef50_D7DK39	2.2713e-05	8.82861e-06
+hypothetical protein	1.50671e-05	1.09184e-05
+hypothetical protein	7.13e-06	1.57539e-05
+hypothetical protein	2.04379e-05	2.90196e-05
+3 hexulose 6 phosphate synthase	1.09921e-05	9.82431e-06
+Sensory transduction protein LytR	0.00321323	0.00120862
+UniRef50_Q9RTV3	0.000325447	0.0243557
+UniRef50_F3GAC2	0.000152896	9.09128e-05
+Cytochrome c oxidase subunit 1	2.31377e-05	0.000177225
+UPF0421 protein SH1063	0.0161372	0.00204863
+Alkyl hydroperoxide reductase subunit C	0.0132282	0.00284999
+N acetylmuramic acid 6 phosphate etherase	2.3022e-06	2.85327e-06
+cytochrome C oxidase assembly protein	8.57546e-06	1.24565e-05
+Magnesium protoporphyrin chelatase 	5.07974e-05	0.000329598
+UniRef50_R0ZN34	0.000125422	0.00136118
+Prophage tail length tape measure family protein	8.99061e-05	9.21816e-05
+Phosphoribosyl AMP cyclohydrolase	3.246e-05	8.00967e-06
+hypothetical protein, partial	8.18738e-05	0.000123119
+Acriflavine resistance protein B	0.000822049	0.000126616
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.0201384	0.00196543
+3 hexulose 6 phosphate synthase	0.00859227	0.000484847
+UniRef50_U3STF6	0.00696543	0.000794177
+Indole 3 pyruvate decarboxylase	0.0189245	0.00301677
+RNA polymerase sigma factor sigW, putative	0.00407543	0.000687949
+transporter	2.26635e-05	1.54591e-05
+UniRef50_A3PHJ2	5.32901e-05	0.000203594
+Na H(+) antiporter subunit G1	0.00833701	0.00653948
+hypothetical protein	4.73958e-06	1.67249e-06
+Blr3679 protein	0.0119529	0.00191608
+Sulfate thiosulfate import ATP binding protein CysA	7.23667e-05	0.000785071
+Transcriptional regulator domain protein	1.22087e-05	6.31166e-05
+Adenine phosphoribosyltransferase	4.08362e-05	1.02312e-05
+UniRef50_A6E0W9	9.66316e-05	1.4395e-05
+Endoribonuclease L PSP	0.00140682	0.000318761
+PREDICTED	4.34858e-05	0.000137702
+Predicted transcriptional regulator	0.00230161	0.000115851
+D alanyl D alanine carboxypeptidase	0.000331244	0.000738597
+coproporphyrinogen III oxidase	3.12466e-05	2.25853e-05
+UniRef50_Q21J87	2.29458e-05	9.00412e-05
+Putative class I holin	0.00125391	0.000237526
+hypothetical protein	4.28735e-05	2.03651e-05
+UniRef50_C6SU00	0.00270186	0.00039094
+DNA repair protein RecO, partial	1.17436e-05	2.03635e-05
+hypothetical protein	1.23921e-05	0.000171496
+ADP L glycero D manno heptose 6 epimerase	0.00101166	0.00206532
+Amine oxidase	0.000252265	0.000172012
+Tpc	0.000286148	0.00110244
+protease	1.83784e-05	7.82659e-06
+ATPase AAA	4.43968e-06	4.56064e-06
+UniRef50_A6DZ03	0.00450282	0.000233493
+Ribose import ATP binding protein RbsA	2.97449e-06	6.49742e-06
+Carnitine transport binding protein OpuCC	0.0176632	0.00463708
+Elongation factor P	2.74447e-05	0.000150459
+cell wall hydrolase	1.43376e-05	2.07495e-06
+arginine ABC transporter permease	9.65268e-06	1.26088e-05
+UniRef50_S1S637	0.000147597	1.40802e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.33958e-05	5.90377e-06
+Pyruvate kinase	0.000561146	0.0298345
+Cell division protein ftsA	0.00484826	0.000524417
+UniRef50_D4GMR6	0.000266928	1.7682e-05
+GntR family transcriptional regulator, partial	3.72388e-05	4.62108e-05
+Glycine cleavage system H protein	0.00154915	0.000251498
+UniRef50_A3LIM1	0.000728477	0.000460435
+Exodeoxyribonuclease 7 large subunit	0.00598999	0.00147791
+hypothetical protein	1.12562e-05	1.02106e-05
+UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase	0.00115013	0.000231563
+UniRef50_X5ZEE6	0.000231134	8.51764e-06
+Marine sediment metagenome DNA, contig	2.32396e-05	1.46201e-05
+hypothetical protein	1.29357e-06	1.87933e-05
+hypothetical protein	1.05122e-05	1.02581e-05
+short chain dehydrogenase	1.73124e-05	2.24022e-05
+MarR family transcriptional regulator	1.19598e-05	5.45851e-05
+Sulfate thiosulfate import ATP binding protein CysA	0.000774162	0.000109827
+hypothetical protein	1.71375e-05	0.000112988
+DNA polymerase III gamma and tau subunits	0.0241408	0.00417669
+Transcriptional regulators, LysR family	0.000111934	0.00289085
+UniRef50_R6J1R9	2.02088e-05	7.91048e-06
+cupin	8.97738e-05	1.61752e-05
+N5 carboxyaminoimidazole ribonucleotide mutase	7.32335e-05	0.00653398
+hypothetical protein	1.897e-05	2.44234e-05
+DNA directed RNA polymerase subunit beta	0.000179583	0.0151291
+Adenylyl sulfate kinase	0.0114224	0.00217551
+Adhesin like protein	0.00311965	0.000661482
+Molecular chaperone small heat shock protein	0.000141218	5.40501e-05
+hypothetical protein	9.58719e-06	2.47701e-05
+Phosphoglycolate phosphatase	6.09061e-06	7.52633e-06
+Phosphonate ABC transporter, phosphate binding protein	0.0152149	0.00216164
+ATPase	2.56889e-06	4.87933e-06
+Nickel or oligopeptide transport ATP binding protein	0.000128781	0.000525058
+Thiol	0.00563309	0.00151104
+hypothetical protein	3.15181e-06	2.06743e-06
+UniRef50_Q28UZ1	1.50486e-05	6.82333e-06
+Glycosyl transferase family 4	0.000216831	0.000663433
+phenylacetate  CoA ligase	5.02426e-06	3.5281e-05
+UniRef50_L1K7B5	0.00200257	0.000507397
+Lactose transport system permease protein LacF	0.000373312	0.000100206
+UniRef50_I4Y2D8	0.000912064	0.00014323
+L threonine dehydratase biosynthetic IlvA	1.66818e-05	1.77962e-05
+cyclic nucleotide binding protein, partial	0.000112589	1.03454e-05
+UniRef50_K6BVJ8	3.7573e-06	2.00924e-05
+3 dehydroquinate dehydratase	8.3811e-06	9.47268e-05
+UniRef50_K1VMV2	0.000193854	0.000112489
+Prolipoprotein diacylglyceryl transferase	0.00863931	0.00113274
+UniRef50_R7PUB9	0.00211116	9.84483e-05
+Transport protein B	0.000357259	0.00386773
+L asparaginase I	0.000319508	0.000331309
+UniRef50_R7PUB1	0.00303727	0.000100827
+Peptide chain release factor 3	0.0128411	0.00227404
+TRAP transporter solute receptor, TAXI family	1.02742e-05	1.04418e-05
+Aminodeoxychorismate synthase component 1	0.00178589	0.000631993
+GGDEF family protein	0.000101453	0.00923218
+Phage terminase	8.33707e-06	3.73101e-05
+KpsF GutQ	0.00247048	0.000523179
+Peptide methionine sulfoxide reductase MsrA	4.57977e-05	0.00156557
+Uridine nucleosidase 1	5.38918e-06	3.6595e-06
+Tetra tricopeptide repeat family protein	0.00502171	0.00162638
+hypothetical protein	1.37971e-05	9.70573e-06
+Electron transfer flavoprotein domain containing protein	0.000505784	0.000289162
+AMP binding enzyme	0.000176741	0.00277909
+UniRef50_B9KSR7	0.00152076	0.000284015
+UniRef50_B9J5U3	0.000140615	9.17242e-06
+Entericidin EcnAB	0.000426376	0.000427372
+Triosephosphate isomerase 1	0.00344794	0.00113154
+hypothetical protein	1.03796e-06	1.06177e-06
+DNA mismatch repair protein MutS	0.000303528	0.000815993
+DNA topology modulation protein	9.45369e-06	7.4272e-05
+UniRef50_M5KBZ8	0.000368039	2.30426e-05
+UniRef50_X2GPQ0	2.22195e-06	1.99809e-05
+UniRef50_Q9RWZ0	0.0015533	0.00298673
+Cell division protein FtsP	0.00258416	0.000601614
+hypothetical protein	0.000236608	1.78179e-05
+AAA ATPase central domain protein	0.000333385	0.00541346
+Lipopolysaccharide heptosyltransferase 1	0.00329912	0.000517553
+3 octaprenyl 4 hydroxybenzoate carboxy lyase	0.00630428	0.000345609
+uroporphyrin III C methyltransferase	6.55536e-06	2.66756e-06
+Calcineurin like phosphoesterase	0.0036144	0.00041527
+Glycosyltransferase, GT2 family	0.00282941	0.000138557
+Tyrosine  tRNA ligase	7.14579e-05	8.14061e-06
+Endonuclease III	0.00032224	0.0140137
+UniRef50_X6YJ88	3.37512e-05	1.47346e-05
+PREDICTED	9.65763e-06	2.00454e-05
+Multidrug resistance protein MdtO	0.00422227	0.00035867
+hypothetical protein	4.91452e-06	1.95206e-06
+Biopolymer transport protein	0.000538285	0.000424515
+UniRef50_A0A017HLZ7	0.000164204	3.55842e-05
+UDP N acetylglucosamine 2 epimerase	0.000146114	0.00265893
+Glutamate 1 semialdehyde 2,1 aminomutase	4.18179e-06	7.45398e-06
+Polymerase	1.32217e-05	8.93749e-06
+molybdopterin biosynthesis like protein MoeZ	1.82825e-05	2.70106e-05
+DNA gyrase subunit B	4.87907e-06	9.66482e-06
+UniRef50_A0A023LIT9	0.000145111	0.000103979
+Protein smf. domain protein	0.0194377	0.00225558
+hypothetical protein	1.43577e-06	1.48701e-06
+Methyl accepting chemotaxis protein	5.2723e-05	0.00619116
+Anhydro N acetylmuramic acid kinase	0.00126479	8.65813e-05
+Glutamine  tRNA ligase	0.000144495	0.00397756
+hypothetical protein	2.6882e-06	5.83592e-06
+Cation efflux protein	0.0003497	0.000250219
+Predicted protein	4.57712e-06	2.0486e-06
+hypothetical protein	0.000135664	1.66388e-05
+N acetylmuramic acid 6 phosphate etherase	0.0135794	0.00185992
+CDP alcohol phosphatidyltransferase	0.000686106	0.00329065
+Phosphoglycerate kinase	8.73396e-05	0.000412251
+UniRef50_M9TYI3	2.2558e-05	4.31969e-05
+citrate synthase, partial	1.68743e-05	5.89907e-05
+Thiol reductant ABC exporter, CydC subunit	6.84506e-05	0.00204781
+Transcriptional regulator, TetR family	0.000351793	0.00221125
+UniRef50_B8A0L8	0.000173445	9.10313e-05
+Adhesin like protein	0.00191745	0.000561748
+Group 1 glycosyl transferase	0.00959511	0.00147174
+UniRef50_X5EKA8	0.000756527	0.000348003
+Ribonuclease Y	0.000130832	0.00248796
+Alpha,alpha trehalose phosphate synthase [UDP forming]	0.00244908	0.000538072
+Transcriptional regulator	0.000201125	0.00221397
+hypothetical protein	3.06052e-06	4.27715e-06
+Cupin	0.000161166	3.63146e-05
+Chromosomal replication initiator protein DnaA	0.0101249	0.00338773
+KHG KDPG aldolase	0.000229465	0.00159934
+tRNA  ) methyltransferase	0.0107193	0.00149973
+Phage integrase family protein	0.00227442	0.000692976
+UDP glucose 6 dehydrogenase YwqF	0.000107726	0.0007947
+UniRef50_I1HFT3	1.11701e-05	1.46968e-05
+OppC	0.011316	0.000803803
+Phage terminase, large subunit like protein	6.95272e-06	1.04167e-05
+Patch repair protein	0.00971016	0.000476506
+PREDICTED	5.19144e-05	1.17442e-05
+Peptidase propeptide and ypeb domain protein	0.0066912	0.000792211
+6,7 dimethyl 8 ribityllumazine synthase	0.0192262	0.00552965
+chemotaxis protein methyltransferase	0.000100764	2.98173e-05
+cell wall hydrolase	1.60665e-05	4.6131e-06
+Ribosomal protein S12 methylthiotransferase RimO	0.000992097	8.38308e-05
+UniRef50_D7D802	7.2237e-06	1.03201e-05
+hypothetical protein	5.47019e-05	8.52368e-06
+UniRef50_B0VU18	4.24935e-05	0.0041944
+TRAP transporter, subunit DctM	1.84348e-05	1.42763e-05
+Probable Ni Fe hydrogenase 1 B type cytochrome subunit	0.00481182	0.000172332
+transposase	1.91452e-05	0.00150892
+LigA	0.000108259	9.0462e-05
+L serine dehydratase, beta chain	6.66784e-06	6.46058e-05
+Trigger factor	0.00504674	0.00438348
+phenol hydroxylase	0.000179609	5.0908e-06
+UniRef50_A9C3K7	4.19647e-06	8.44902e-06
+TonB dependent receptor	5.16782e-06	1.40002e-06
+Elongation factor P	1.04719e-05	3.57291e-05
+hypothetical protein	0.000183706	7.19122e-05
+Methylmalonate semialdehyde dehydrogenase 	0.00206815	0.00253275
+UniRef50_Q3JID5	9.45586e-05	0.000209326
+S ribosylhomocysteine lyase	0.0462224	0.00501895
+Iron utilization periplasmic protein	0.000133375	0.00160855
+Molybdate ABC transporter ATP binding protein ModC	0.00140323	0.000558303
+Enolase 1	5.85228e-06	2.81441e-05
+GTPases 	0.0158661	0.00207932
+twin arginine targeting protein translocase	5.40269e-05	1.74455e-05
+PREDICTED	1.01204e-05	1.87039e-05
+hypothetical protein	3.98577e-06	1.29614e-05
+UniRef50_D8JW50	1.63135e-05	8.34101e-06
+8 amino 7 oxononanoate synthase	1.04948e-05	2.79552e-06
+macrolide transporter	1.96527e-06	2.47644e-06
+UniRef50_F2ETD0	0.00017964	7.80748e-05
+Flagellar biosynthesis protein FlhA	0.000147687	4.5323e-05
+UniRef50_M8D633	0.000112588	0.00581322
+UniRef50_P0AFP5	0.00315794	0.000117213
+Transposase IS861	0.000493944	3.59813e-05
+UniRef50_F9X2K4	0.00625214	0.00426719
+Metallo beta lactamase domain protein	3.23968e-05	9.72047e-06
+UniRef50_F8JIF8	0.000209611	0.00425567
+hypothetical protein	1.98502e-05	1.42374e-05
+ABC Glycine betaine L proline transporter, inner membrane subunit	0.00319545	0.000211639
+Type IV pilus biogenesis protein PilF	6.2796e-06	8.57029e-06
+Predicted tail fiber protein	6.2132e-05	6.02988e-05
+hypothetical protein SMAC_11727, partial	0.000241442	0.000176501
+UniRef50_P76501	0.00940829	0.000598566
+1 phosphofructokinase	8.75056e-06	4.37781e-06
+2 isopropylmalate synthase	2.576e-06	5.27365e-06
+Uroporphyrinogen decarboxylase	2.5123e-05	0.000262218
+Nitrite facilitator 1	8.50357e-06	3.17443e-06
+UniRef50_Q28V62	8.0315e-05	7.02713e-05
+Proteophosphoglycan ppg4	0.000139669	4.34827e-05
+UniRef50_T0HYB4	4.27337e-05	3.78996e-05
+DNA repair protein RecN	8.32354e-05	0.00248412
+UniRef50_Q3J4R2	0.000873419	0.000239331
+UniRef50_P76505	0.00105749	9.71698e-05
+tRNA dimethylallyltransferase	0.000672351	9.26572e-05
+50S ribosomal protein L22	9.47599e-06	0.000117616
+ARA1 protein	0.0112975	0.000578523
+UDP N acetylglucosamine 2 epimerase	0.00391753	0.000781403
+8 amino 7 oxononanoate synthase	3.7177e-06	2.45308e-06
+UniRef50_Q3JR64	2.7878e-06	0.000906729
+UniRef50_UPI000258DCCB	1.11599e-06	2.81177e-06
+Fosmidomycin resistance protein	0.000203446	1.92943e-05
+multidrug transporter	6.76451e-07	1.032e-06
+hypothetical protein	6.36358e-06	1.77236e-05
+UniRef50_Q8CSM5	0.00384237	0.00338151
+Type III pantothenate kinase	9.24482e-05	2.3179e-05
+UniRef50_Q8CSM3	0.00716318	0.000690289
+Nucleotidyltransferase DNA polymerase involved in DNA repair	0.000452014	0.00616493
+hypothetical protein	3.13721e-05	0.000245848
+FAD dependent oxidoreductase	0.000287716	0.000101077
+UniRef50_X2NEQ0	3.99548e-05	1.31495e-05
+hypothetical protein, partial	0.000350703	5.30083e-05
+UniRef50_Q4A065	0.0117981	0.00203764
+ATP synthase subunit a chloroplastic 	2.27883e-06	1.64227e-06
+3 oxoacyl ACP synthase	7.1943e-05	5.46319e-06
+Ethanolamine utilization cobalamin adenosyltransferase	0.00660097	0.000109095
+CoA transferase	8.19048e-06	7.38888e-05
+diguanylate cyclase	5.68675e-06	3.39918e-06
+UniRef50_A3PP83	2.74324e-05	2.25817e-05
+UvrABC system protein C	3.82214e-06	5.70168e-06
+UniRef50_P46905	0.0166843	0.00377689
+hypothetical protein	5.55389e-06	3.09586e-06
+Haloacid dehalogenase like hydrolase	0.00626775	0.00168836
+PREDICTED	1.41567e-05	8.29832e-06
+hypothetical protein, partial	0.000540697	0.000100014
+PAS PAC sensor hybrid histidine kinase	0.000271562	0.000273543
+UniRef50_Q5HME3	0.00279549	0.000904334
+Succinyl CoA ligase [ADP forming] subunit alpha	4.59322e-05	5.16617e-05
+UniRef50_Q5HME1	0.00435617	0.000545103
+Peptidase, M50 family	0.000220929	0.000494121
+Mannose 1 phosphate guanylyltransferase ManC	0.000144415	9.27395e-06
+Citrate lyase alpha chain	0.00270457	0.00125907
+UniRef50_C5N5E9	0.0071406	0.000740648
+RNA polymerase sigma factor SigA	0.000274058	0.00507823
+UniRef50_T1YCL4	0.0114142	0.000887278
+Catalase	0.00102759	0.00412035
+UniRef50_I0KW88	4.49707e-05	4.37605e-05
+Predicted surface protein	0.00159977	0.00145589
+UniRef50_C0P9U0	9.57204e-05	3.93422e-05
+Sulfotransferase	0.00287547	0.000424582
+Putative oxidoreductase YdbC	0.000880897	0.000205236
+Glycolate oxidase iron sulfur subunit	0.0025964	0.000125223
+Aldehyde dehydrogenase	0.000488846	0.00453246
+Putative PeiW related protein 	0.00302736	0.0001235
+Zinc transporter ZupT	0.00171125	0.000241809
+peptide synthetase, partial	1.06017e-05	5.65064e-06
+Putrescine ornithine antiporter	0.0016001	8.4147e-05
+UniRef50_C1DK50	0.000879288	0.000367164
+Ribonuclease 3	3.21593e-05	5.31567e-05
+Beta hexosaminidase	1.55502e-05	1.67299e-05
+ABC transporter, ATP binding protein	0.0106787	0.00271889
+UniRef50_E0P352	0.000119098	1.24678e-05
+Expressed protein 	7.85534e-05	0.000268646
+hypothetical protein	4.07378e-06	0.000599438
+deoxyguanosinetriphosphate triphosphohydrolase like protein	6.69987e-05	2.43652e-06
+ABC transporter related protein	5.89143e-05	6.6448e-05
+Phosphomethylpyrimidine synthase	0.000184921	0.00184021
+TetR family transcriptional regulator	0.00227543	0.000653117
+PREDICTED	3.03803e-05	4.73715e-05
+UniRef50_R5PZ37	0.00031385	7.94858e-05
+Universal stress protein	0.0010745	0.000110709
+KsdD like steroid dehydrogenase Rv0785	7.86328e-05	0.00535512
+ABC transporter ATP binding protein	3.91258e-05	2.06527e-05
+DNA polymerase II	0.00238133	0.000121541
+UDP N acetylmuramoylalanine  D glutamate ligase	0.000406594	0.000360986
+UniRef50_F3U2R3	0.000249565	3.74745e-05
+Expressed protein 	0.000144475	4.93216e-05
+TPR repeat containing protein	0.000929312	0.00125558
+iron dicitrate transporter subunit FecD	2.51227e-05	7.63381e-06
+Methionine  tRNA ligase	1.09604e-05	1.05112e-05
+Putataive InsB from Escherichia coli	0.00640421	0.000276261
+Inositol 1 monophosphatase	1.41681e-05	0.000897942
+Ribonuclease J	0.00288177	0.000754548
+PF05787 domain protein	0.000102088	0.00114861
+Xanthine dehydrogenase, molybdenum binding subunit apoprotein	0.00105761	4.68606e-05
+Ketol acid reductoisomerase	0.000733518	0.000284423
+Pyruvate dehydrogenase E1 component subunit beta	0.00953875	0.0012922
+Trimethylamine N oxide reductase c type cytochrome TorC	0.0134266	0.00148724
+UniRef50_M9VCX6	4.32282e-05	0.000151305
+Adhesin like protein	0.0029856	0.000456937
+UniRef50_Q9RSL9	0.0045893	0.0171016
+UniRef50_A6FNW8	4.24902e-06	1.9423e-06
+L arabinose isomerase	0.00278489	0.000245294
+UniRef50_U8LE05	0.000854711	0.000132426
+Porin B	0.00246308	0.00438028
+Maltose maltodextrin import ATP binding protein MalK	0.0067743	0.000137566
+Gamma glutamyl phosphate reductase	0.00280628	0.00175122
+multidrug transporter MurJ	4.92303e-05	2.74973e-05
+Tellurite resistance TerB	0.000448731	0.0510086
+hypothetical protein	7.30268e-06	3.44022e-06
+TRAP C4 dicarboxylate transport system permease, DctM 2 subunit	8.88555e-06	1.27668e-05
+Energy coupling factor transporter transmembrane protein EcfT	0.000289174	0.000631531
+Putative permease protein	1.08528e-05	3.41395e-06
+UDP phosphate galactose phosphotransferase	8.71162e-06	6.629e-06
+PREDICTED	7.58631e-06	3.68135e-06
+Flavoprotein disulfide reductase	0.000298903	0.00306741
+UniRef50_R5Y4C4	6.77131e-06	4.38811e-06
+UniRef50_R7PXB7	0.00297352	0.000252049
+Putative methyltransferase YqeM	1.10376e-05	1.84839e-05
+N succinyldiaminopimelate aminotransferase	0.000130614	0.00319037
+hypothetical protein	6.0479e-06	1.04429e-06
+ATP dependent DNA helicase Rep	0.00535185	0.00522399
+UniRef50_Q07HH8	2.15635e-05	5.93767e-06
+Probable nicotinate nucleotide adenylyltransferase	1.69222e-05	0.00014229
+Cell division protein SepF	0.000249912	0.00039728
+ATPase	1.5709e-05	7.00964e-06
+Putative ribosome biogenesis GTPase RsgA	0.00023121	6.86219e-06
+UniRef50_R1FQ49	0.000132153	0.0001235
+Replication associated recombination protein A	0.00012358	0.00106195
+IS1114 transposase, IS5 family protein	3.86262e-05	1.5667e-05
+UniRef50_F0MX83	0.000157666	0.000264852
+UniRef50_G4LLK3	0.00106856	0.000122657
+UniRef50_A4GA34	1.27653e-05	1.06566e-05
+UniRef50_G2AUL8	0.000185992	3.73637e-05
+UniRef50_H6NQR9	0.0011797	0.000414923
+UniRef50_Q9RYB1	0.000184987	0.00266133
+hypothetical protein	5.64677e-06	5.3534e-06
+hypothetical protein	1.9216e-05	1.62933e-05
+Hsp33 chaperonin	1.16108e-05	1.02358e-05
+UniRef50_I1PKM1	0.000675066	0.000127668
+UniRef50_Q83RK8	0.003163	0.000401383
+UniRef50_B8JEF4	3.6538e-05	0.000197653
+UniRef50_R5GFP8	0.000133551	0.000782309
+UniRef50_T2I1A7	1.92686e-05	0.000124795
+Phage terminase, large subunit	0.00429926	0.000253269
+acyl CoA dehydrogenase	6.90453e-06	4.62816e-06
+UniRef50_P0AGE7	0.00567565	0.00145374
+Isoprenyl transferase	5.64352e-06	6.46873e-06
+Histidinol phosphate aminotransferase	0.00283951	0.000658625
+hypothetical protein	5.59629e-06	4.61403e-06
+xanthine dehydrogenase	1.52172e-05	7.16323e-06
+UniRef50_B3T3L8	0.000288603	0.000243319
+UniRef50_Q9RSZ4	0.000206895	0.0069769
+hypothetical protein	6.23614e-05	3.58443e-05
+Threonine dehydratase	1.41497e-05	4.27216e-05
+DNA polymerase III subunit alpha, partial	2.00468e-05	4.6719e-06
+UniRef50_C8S240	1.27582e-05	5.13793e-06
+UniRef50_A4WY94	0.00539646	0.000855094
+UniRef50_UPI0003AB78D1	5.19893e-06	1.01094e-06
+Bacteriophage T4 late gene expression blocking protein	0.00207562	0.00010332
+UniRef50_A3M3V3	0.000463011	0.0071466
+DNA ligase	8.2879e-05	0.00148993
+UniRef50_Q8GFF2	4.46164e-05	0.000332761
+UniRef50_V2U4R3	9.83109e-05	0.00249815
+Electron transfer flavoprotein alpha subunit	3.01687e-06	2.40627e-06
+Sigma factor PvdS, controling pyoverdin biosynthesis	0.000935805	0.000359202
+Tyrosine  tRNA ligase	2.84609e-05	3.7963e-06
+hypothetical protein	5.30454e-05	6.89463e-05
+ABC transporter permease	0.000521765	0.00272685
+Marine sediment metagenome DNA, contig	0.000402019	4.89534e-05
+Phosphoribosylformylglycinamidine synthase 1	9.99614e-06	4.12156e-06
+Exopolyphosphatase	0.00299303	0.000255926
+Putative UDP N acetylglucosamine 2 epimerase	0.0203463	0.0077746
+Putative histone deacetylase 	1.5231e-06	9.00788e-06
+UniRef50_U5AK60	8.42479e-06	3.54275e-05
+UniRef50_A3CR82	0.00573641	0.000484666
+Uroporphyrinogen III synthase	0.00845625	0.000552615
+hypothetical protein	3.44677e-06	2.71569e-06
+UniRef50_Q6BA79	0.000186929	3.23249e-05
+Endonuclease III	4.53798e-06	8.44119e-06
+Acetylglutamate kinase	4.15197e-05	8.28256e-06
+UniRef50_X8A848	0.000140267	0.000149703
+AMP binding domain protein	7.25842e-05	0.000198861
+Acetylornithine aminotransferase	8.36944e-06	2.448e-05
+hypothetical protein	0.000109872	1.94955e-05
+Anthranilate phosphoribosyltransferase	0.00116816	0.000241081
+UniRef50_Q3BVS7	9.5872e-06	1.59451e-05
+UniRef50_Q1DG75	3.68782e-06	1.75935e-06
+Paraquat inducible protein A	0.000507552	0.00256192
+UniRef50_I7AAS7	0.00130111	0.00108175
+T protein	0.00186056	0.00151145
+hypothetical protein	4.99804e-05	5.42537e-05
+UniRef50_A8L089	2.20385e-05	4.38705e-05
+UniRef50_R5PFJ0	1.52916e-05	0.0019224
+hypothetical protein	1.32022e-05	3.95406e-06
+hypothetical protein	1.29097e-05	3.19791e-05
+UniRef50_Q2GSP5	5.08043e-05	9.03575e-05
+50S ribosomal protein L1	0.000219966	0.000773983
+hypothetical protein	1.33867e-06	2.96779e-05
+Predicted protein	0.00019173	4.22903e-05
+Positive alginate biosynthesis regulatory protein	0.000851441	0.000452011
+hypothetical protein	7.06355e-06	8.13405e-06
+UniRef50_Q2G505	5.59899e-05	3.35293e-05
+hypothetical protein	2.40111e-06	0.000103593
+Shikimate dehydrogenase	6.27467e-06	1.44097e-05
+cell envelope biogenesis protein AsmA	3.09341e-06	2.31367e-06
+UniRef50_B9KNT5	0.000999649	5.02082e-05
+hypothetical protein	3.06224e-05	9.60051e-06
+Osteoblast specific factor 2 related protein	9.40791e-05	1.00206e-05
+cobalt ABC transporter ATPase	6.40239e-06	5.74243e-06
+MULTISPECIES	3.44508e-06	5.19764e-05
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	3.83625e-06	3.56874e-05
+hypothetical protein	9.23888e-05	5.8599e-05
+DNA repair protein RecO	1.94261e-05	3.87681e-05
+Galactose proton symporter	7.11018e-05	0.0028559
+UniRef50_A6UF25	4.36541e-06	4.34121e-06
+valyl tRNA synthetase	2.87278e-06	1.20623e-06
+hypothetical protein	6.34589e-05	5.19212e-05
+UniRef50_A0A014FPC4	0.000215232	0.00239475
+UniRef50_A3PJ57	0.00192858	0.00050847
+glycoside hydrolase	5.21198e-05	2.1038e-05
+TraE protein	0.0484688	0.00301397
+UniRef50_L0D7B2	0.00115242	0.000343264
+D galactose binding periplasmic protein MglB	0.00039957	0.00211438
+TRAP C4 dicarboxylate transport system permease DctM subunit 	4.64336e-06	1.10125e-05
+gamma aminobutyrate transporter	0.000116378	2.08654e-05
+Ribose phosphate diphosphokinase	0.000170548	0.000270793
+UniRef50_V5SZP2	0.000301639	4.11807e-05
+UniRef50_B1IC45	0.00578351	0.00148488
+UniRef50_Y3DCZ9	0.0024999	0.000122825
+UniRef50_R5TSA7	0.00010292	0.000697135
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	4.48724e-05	0.00834261
+hypothetical protein	1.31294e-05	9.80125e-05
+Mobile genetic element	1.88946e-05	0.00132205
+Aminotransferase class I and II	0.00222015	0.000125918
+UniRef50_U3SWF7	0.00516443	0.00196065
+hypothetical protein, partial	8.6353e-05	7.63608e-06
+Rod shape determining protein MreB	0.00129254	0.00211655
+PAS protein 	0.000103927	0.000131096
+dihydroxyacetone kinase	4.17415e-05	0.000207323
+UniRef50_J2LVD6	0.0001756	6.17646e-05
+Acyl CoA dehydrogenases	0.000110696	9.99253e-06
+Exodeoxyribonuclease III	0.00315719	0.0003437
+Methylaspartate mutase	0.000194725	0.00389429
+PREDICTED	9.17449e-05	7.73348e-05
+ArfGap domain containing protein	5.50716e-06	7.06655e-05
+SAM dependent methyltransferase UbiE family	0.00127747	0.000136038
+UniRef50_P37641	0.000554423	0.000100882
+UniRef50_P37645	0.00345896	0.000884583
+citrate  synthase	4.99409e-06	3.94275e-06
+UniRef50_B9KMR2	0.00318224	0.000965035
+Isoleucine  tRNA ligase	7.26646e-05	0.00372152
+L lactate dehydrogenase	3.01476e-06	3.92778e-06
+Inosine uridine preferring nucleoside hydrolase	0.00940632	0.00249471
+2 dehydro 3 deoxyglucarate aldolase	6.53855e-06	4.30993e-05
+UniRef50_A3V6T8	0.000247685	5.74891e-05
+Ribonucleoside diphosphate reductase large subunit	2.25951e-06	4.44695e-06
+L arabinose transport ATP binding protein AraG	0.000431711	0.000953014
+alkaline phosphatase	2.24595e-06	3.16401e-06
+Elongation factor G	0.00135158	0.00028011
+LacI family transcriptional regulator	0.00521234	0.00136499
+hypothetical protein	0.000736491	0.00012776
+Bacteroid development protein BacA	0.00175272	0.0035565
+UniRef50_D8JM63	0.0013213	0.00523513
+PE PGRS family protein, PE_PGRS59	4.70324e-06	2.4105e-05
+dienelactone hydrolase	2.05709e-06	6.79371e-06
+UniRef50_Z9W2S3	2.57972e-05	2.86872e-05
+phenazine biosynthesis protein PhzF	1.32378e-05	1.22686e-05
+peptide ABC transporter ATP binding protein	2.41924e-05	4.79398e-06
+FAD NAD binding family protein	0.000148307	1.26388e-05
+Phosphoribosyl AMP cyclohydrolase	1.8837e-05	1.00027e-05
+UniRef50_F8JK27	5.71896e-05	3.7405e-05
+Peptide methionine sulfoxide reductase MsrA	7.20875e-05	6.02051e-05
+MJ0042 family finger like domain protein	0.000129442	0.00291522
+UniRef50_Q49YQ5	0.019338	0.00297864
+Signal recognition particle receptor FtsY	0.0194273	0.0021199
+hypothetical protein	9.26682e-06	0.000200094
+Thioredoxin reductase	6.9756e-05	1.67721e-05
+Cation diffusion facilitator family transporter	0.000322056	0.000818633
+UniRef50_D5AMX5	0.000145094	3.90275e-05
+peptide ABC transporter	9.18962e-06	3.01405e-05
+hypothetical protein	2.13875e-05	3.14858e-05
+Low specificity L threonine aldolase	0.0147024	0.00267433
+Dienelactone hydrolase family protein	0.000313068	0.000293206
+Phosphinothricin acetyltransferase	0.000189427	0.00208576
+UniRef50_B2IQF0	0.00024029	0.000167371
+hypothetical protein	0.000193032	4.61519e-05
+hypothetical protein	4.84057e-06	4.48701e-06
+UniRef50_G8DCQ6	4.06904e-05	5.23069e-06
+hypothetical protein	1.16541e-05	0.000184766
+Uxu operon transcriptional regulator	0.00256209	0.000181018
+hypothetical protein	0.000852176	0.000131209
+hypothetical protein	0.000478696	2.12056e-05
+Acyl carrier protein	2.02126e-05	0.000260017
+hypothetical protein	4.26544e-06	0.000275284
+hypothetical protein	4.96743e-05	2.05627e-05
+Quinone oxidoreductase, YhdH YhfP family	0.0190871	0.00257483
+UniRef50_R5IBX6	1.33627e-05	7.58089e-06
+UniRef50_A5UP26	0.00102318	0.000223345
+DEAD DEAH box helicase domain protein	0.000605614	0.000162088
+UniRef50_T0QM98	4.56179e-06	3.64121e-06
+Transposase orfA IS5 family element	2.60748e-05	2.96969e-05
+Phosphoribosyl ATP pyrophosphatase	1.37934e-05	6.80094e-05
+ABC transporter related protein	0.000189505	0.000122559
+Diguanylate cyclase YdeH	0.000416782	0.000184743
+UniRef50_K4NAI3	0.000152055	0.00102042
+Maltose operon transcriptional repressor	0.0100191	0.000839285
+Phosphoglucosamine mutase	4.21509e-06	2.7803e-06
+Thiamine biosynthesis lipoprotein ApbE	0.00307318	0.000192827
+chromosome partitioning protein ParA	6.68122e-06	1.20297e-05
+Glucosamine 6 phosphate isomerase 1	9.68637e-06	4.93052e-06
+hypothetical protein	3.13219e-06	8.61281e-05
+Bis tetraphosphatase, ApaH	3.31269e-05	8.09947e-05
+Thymidylate kinase	0.00118691	0.000744881
+hypothetical protein	4.80464e-05	3.53177e-05
+HTH type transcriptional regulator MlrA	0.00334703	0.000486251
+Respiratory nitrate reductase subunit beta	9.63838e-06	1.63615e-05
+Acyl carrier protein	3.48559e-05	7.14965e-05
+Primosomal protein n	0.000484582	8.63652e-05
+Protein translocase subunit SecA	0.00114287	0.000304006
+Hydrogen peroxide inducible genes activator	0.000753919	0.000274857
+hypothetical protein	4.93978e-06	1.13245e-05
+ABC transporter protein	0.00598839	0.00133968
+Flagellar biosynthetic protein FliP	0.000846118	0.00118503
+Phosphoadenosine phosphosulfate reductase	9.06438e-06	7.98877e-06
+Probable dual specificity RNA methyltransferase RlmN	0.00024982	0.000398555
+C4 dicarboxylate binding protein	0.012825	0.0014254
+UniRef50_A3VGU5	0.00280604	0.000694906
+UniRef50_Q8FQS8	5.1172e-05	0.000479733
+hypothetical protein	3.31202e-05	1.83796e-05
+Phage SPO1 DNA polymerase related protein	0.00112205	0.000287518
+S1 RNA binding domain protein	0.000487549	0.000128928
+aryldialkylphosphatase	0.000158868	9.65523e-05
+1,6 anhydro N acetylmuramyl L alanine amidase AmpD	0.0033525	0.000461072
+UniRef50_G7MAE0	0.000548935	0.000364173
+Probable amino acid metabolite efflux pump	0.00211516	0.00022541
+PREDICTED	5.136e-06	7.0555e-06
+Transcriptional regulator	0.000187666	0.000870008
+UniRef50_U6Z4K6	1.68649e-05	1.02206e-05
+UniRef50_A0A059IRR6	2.19902e-05	3.48759e-06
+Inner membrane protein YjgN	0.00167057	0.000996719
+Putative hydrolase of the alpha beta hydrolase fold protein	6.33896e-05	1.56045e-05
+UniRef50_P75976	0.00365592	0.00127946
+UniRef50_F8KLB6	0.00934139	0.000273734
+PREDICTED	2.10896e-05	4.01652e-05
+NMD3 family protein	0.00223011	0.000575117
+hypothetical protein	2.04324e-05	9.5098e-06
+GA module	0.00821686	0.00268802
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	3.83126e-06	3.37567e-06
+sulfate ABC transporter, inner membrane subunit CysT	3.87998e-05	4.09721e-06
+Daunorubicin C 13 ketoreductase	8.39971e-05	0.00225972
+Heat shock protein DnaJ domain protein	0.00015925	0.000321845
+Zinc transporting ATPase	5.38464e-06	6.25826e-06
+UniRef50_I3G3U5	0.00780979	0.000357321
+Putative GTP dependent nucleic acid binding protein EngD	1.51399e-05	2.71686e-05
+Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl tRNA bond	3.02639e-06	9.99681e-06
+ABC transporter, permease protein	0.005542	0.000440433
+UniRef50_V4IUE3	9.19694e-05	2.69822e-05
+Imidazoleglycerol phosphate dehydratase	0.000249816	0.00277408
+Quinohemoprotein alcohol dehydrogenase protein	1.80988e-05	1.04015e-05
+Phosphatidylethanolamine binding protein	3.80282e-05	3.91077e-06
+hypothetical protein	0.000163341	4.69018e-05
+UniRef50_S9RV98	2.64545e-05	9.75214e-06
+Periplasmic serine protease 	0.000178698	0.00267891
+UniRef50_C3DVF3	7.30234e-06	6.11767e-05
+Sulfate adenylyltransferase	0.00956649	0.00160679
+Ribonuclease 3	1.49074e-05	1.91261e-05
+hypothetical protein, partial	9.41324e-06	9.66761e-06
+hypothetical protein	3.08533e-06	6.58336e-06
+UniRef50_E0XTA9	0.0002013	0.000117252
+TRAP dicarboxylate transporter subunit DctM, partial	3.39624e-05	4.01725e-05
+hypothetical protein	2.36874e-05	0.000149341
+Leucyl phenylalanyl tRNA  protein transferase	0.00058825	0.00333983
+UniRef50_V2J6J5	2.75933e-06	2.25246e-06
+Methylhydantoinase	2.03016e-06	2.21211e-06
+UniRef50_W4WUV4	8.01875e-05	1.11489e-05
+Nitric oxide reductase subunit C	0.0171589	0.00189101
+UniRef50_C5YNI9	0.00174087	0.00063318
+large conductance mechanosensitive channel protein MscL	0.00035085	4.46765e-05
+UniRef50_A6LY57	0.000179002	0.00138121
+UniRef50_A6LY56	0.00045342	0.000754745
+ABC transporter, molybdenum transport system	0.000425544	0.00280349
+D tagatose 1,6 bisphosphate aldolase subunit KbaY	0.00286431	0.0013492
+Anthranilate synthase component 2	0.000905705	0.00187717
+hypothetical protein	2.15144e-05	1.09561e-06
+UniRef50_F7ZHD8	0.000248406	2.9199e-05
+Transposase	0.000128719	3.6245e-05
+Cell cycle protein, FtsW RodA SpoVE family	0.000224261	0.00209023
+UniRef50_D3QHZ6	3.34881e-05	3.03492e-05
+hypothetical protein, partial	8.61179e-05	2.28137e-05
+Cap8E	0.026609	0.00377581
+UniRef50_U5NN01	0.000524819	0.000598566
+Integral membrane sensor signal transduction histidine kinase	0.000201036	0.00111561
+Butyryl CoA dehydrogenase	0.000134083	0.000314839
+Additional lipoprotein component of predicted cobalamin ECF transporter	0.00255622	0.000437975
+Transporter, major facilitator family protein	0.0180012	0.00296924
+UniRef50_A0A009KXU9	0.000763797	0.00341466
+DedA	0.000644369	0.00319338
+hypothetical protein	3.73197e-05	4.42209e-06
+Transcriptional regulator, TetR family	0.00107207	0.000341
+Sulfate adenylyltransferase	8.63686e-05	2.58537e-05
+UniRef50_P76121	0.00742731	0.000231404
+UniRef50_P76123	0.00181642	0.000223402
+UniRef50_Y5PB14	0.00111566	0.000665073
+Exopolyphosphatase	2.63419e-06	9.68737e-06
+UniRef50_R5S9I0	2.12796e-05	0.00207162
+Putative protein YtqA	0.0283763	0.00486275
+Dihydroxyacetone kinase L subunit	0.000164706	0.000442644
+UniRef50_X9N846	0.00639203	0.00194329
+RND efflux system, outer membrane lipoprotein, NodT family	6.97751e-05	0.00405826
+single stranded DNA binding protein	1.61374e-05	4.4915e-05
+UDP N acetylmuramate  L alanine ligase	3.69241e-06	2.76625e-06
+Methionine import ATP binding protein MetN	0.000632286	5.09499e-06
+Enolase	0.00631975	0.00884771
+DNA translocase FtsK	0.000657564	0.000123938
+Dihydroorotate dehydrogenase 	1.05179e-05	9.73597e-06
+Terminase like family	0.000422421	0.00106135
+hypothetical protein	1.41301e-05	5.93614e-06
+UniRef50_N1MA35	0.000359969	7.28097e-05
+3 succinoylsemialdehyde pyridine dehydrogenase	0.00607696	0.000764745
+Chromosomal replication initiator protein DnaA	6.50126e-05	0.000964096
+UniRef50_N9DK24	7.11348e-05	1.14347e-05
+UniRef50_D5RTD5	1.43726e-05	1.58577e-05
+chromosomal replication initiation protein	6.06868e-06	4.23401e-06
+Spermidine N acetyltransferase	0.0103081	0.000686994
+hypothetical protein	1.25556e-05	2.49759e-05
+hypothetical protein	1.90309e-05	0.000260419
+UniRef50_A6E2Z7	1.6553e-05	8.88859e-06
+UniRef50_I0G8T6	0.000352602	9.05516e-06
+UniRef50_U1SML3	4.22415e-05	0.000797739
+Trehalose utilization	0.000207319	0.00312312
+3 isopropylmalate dehydratase large subunit 2	0.000449358	0.0223925
+Short chain type dehydrogenase reductase	0.000148259	0.000838411
+UniRef50_U4JC67	0.000106472	1.22616e-05
+Phage late control gene D protein GPD	0.000541759	0.00138548
+UniRef50_W4HIE7	7.71991e-05	3.80642e-05
+Acetolactate synthase small subunit	0.000236802	0.000176005
+hypothetical protein	0.000912644	0.000203594
+Phage tail tape measure protein, TP901 family	0.000205579	0.000883836
+LXG domain of WXG superfamily protein	0.000297139	0.000333501
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0127252	0.0032251
+Phosphoglycerate kinase 1, chloroplastic	5.16102e-06	2.24627e-05
+Transposase, IS4 like family protein	0.00373356	0.000511595
+hypothetical protein	4.62025e-05	6.87099e-05
+Magnesium transporter	0.00784587	0.000299914
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.23865e-05	2.13059e-05
+Lysine , arginine , ornithine binding periplasmic protein	0.00261741	0.000816412
+Protein EsaA	0.0107613	0.00120853
+MotA TolQ ExbB proton channel family protein	0.000655922	0.00451199
+UniRef50_A1B5F3	0.00215364	0.00018942
+Asparaginase	0.0186584	0.00219219
+L lysine 2,3 aminomutase	0.00268761	0.000261657
+hypothetical protein	3.75888e-06	2.07926e-06
+Type II secretory pathway, component ExeA 	0.000327294	7.04195e-05
+UniRef50_R1B4D2	3.50074e-05	4.16286e-05
+Glutathione synthetase	4.70095e-05	4.37807e-06
+UniRef50_U5NRL5	0.0239548	0.00507933
+UniRef50_J7L4M3	5.0382e-05	0.000797072
+UniRef50_L0NCJ2	0.00017889	1.41301e-05
+hypothetical protein	5.58084e-05	0.000140983
+Alpha monoglucosyldiacylglycerol synthase	0.00373118	0.00301112
+Lysine exporter protein 	0.00073986	0.000951213
+30S ribosomal protein S3	0.0154791	0.00220393
+UniRef50_M0X3J8	5.82638e-05	0.000965643
+Apyrase	8.65266e-06	2.60876e-06
+UniRef50_S4JHM6	0.000762333	0.000181952
+L alanine dehydrogenase like protein	5.07288e-05	0.00058693
+Sensor histidine kinase	0.000668946	0.000419046
+sugar ABC transporter permease	1.46677e-05	5.5257e-05
+putative transposase	0.000927295	0.113753
+Transporter	0.00495479	0.000650636
+Glucosyltransferase	0.00527031	0.000860019
+UniRef50_R4W4T4	0.00103917	0.000354574
+PREDICTED	4.08324e-05	3.98777e-05
+Uridine kinase	1.71558e-05	0.000280363
+DNA primase	2.28503e-05	4.24653e-05
+Zn dependent hydroxyacylglutathione hydrolase   Polysulfide binding protein	0.0114655	0.00096073
+UniRef50_B9DXD9	0.000465275	0.00474206
+hypothetical protein	4.59347e-06	2.81691e-06
+3 isopropylmalate dehydratase small subunit	2.48871e-05	2.40865e-05
+hypothetical protein PFL1_00576	4.38651e-05	4.12324e-06
+UniRef50_I0TVV6	0.000351574	8.65158e-06
+PAS PAC sensor hybrid histidine kinase	0.00729181	0.000900721
+Phage protein	0.00115377	0.00280126
+Serine alanine racemase VanTc3	0.00615307	0.000532741
+ATP binding protein of ABC transporter for glutamate_aspartate	0.000733657	0.00734911
+Succinate dehydrogenase  iron sulfur	1.3915e-05	1.83979e-05
+hypothetical protein	0.000200364	4.16906e-05
+Merops peptidase family S24	0.000191584	0.0025189
+Pyridoxine kinase	0.00421676	0.000652806
+QmcA domain protein	0.000136529	2.49575e-05
+hypothetical protein	0.000104677	1.61462e-05
+hypothetical protein	4.2558e-06	3.20964e-05
+Sugar  phosphate isomerase epimerase	0.000163373	0.00261918
+Capsule polysaccharide export protein	0.0149278	0.00217157
+SD repeat containing cell surface protein	5.25824e-06	2.53265e-06
+UniRef50_M2IQZ0	8.38603e-05	4.86415e-05
+hypothetical protein	1.11628e-05	8.68915e-06
+ATP dependent DNA helicase RecG	5.33076e-05	0.000144701
+hypothetical protein	7.43745e-06	4.2176e-06
+Chaperone protein DnaJ	0.000133375	0.00292073
+hypothetical protein	1.42681e-06	1.35877e-06
+UDP pyrophosphate phosphatase	0.00098347	0.00118809
+hypothetical protein, partial	1.01696e-05	6.572e-06
+Membrane protein	3.88308e-05	3.98153e-06
+ABC transporter component	0.00104093	0.000322487
+Phosphate starvation inducible E	3.06891e-05	1.1481e-05
+tRNA pseudouridine synthase D	9.94234e-06	1.97344e-05
+Putative colanic acid biosynthesis glycosyltransferase WcaL	0.00237957	0.000205482
+3 ketoacyl ACP reductase	4.9049e-06	8.07616e-06
+UniRef50_K1DU50	7.27261e-05	4.8159e-05
+PREDICTED	1.15362e-05	2.17295e-05
+Rhodanese domain protein	6.54527e-05	0.000244373
+Conserved protein DUF181	1.67087e-05	9.49423e-05
+Aryl phospho beta D glucosidase BglA	0.00661136	0.000464391
+hypothetical protein	8.24508e-07	2.99629e-05
+UniRef50_K1YN95	0.000132284	0.000196771
+Transcriptional regulator, GntR family	0.000486802	0.000451546
+UniRef50_G3Z0X9	5.80483e-05	9.12879e-05
+UniRef50_D8HEX2	0.0141401	0.00307663
+Metalloprotease PmbA homolog	0.00239018	0.00078448
+Peptidase M20D, amidohydrolase, putative	0.00364721	0.000643117
+Tat pathway signal sequence domain protein	9.59082e-06	0.000806238
+hypothetical protein	2.70808e-05	0.000268903
+Imidazoleglycerol phosphate dehydratase	2.58461e-05	1.5032e-05
+hypothetical protein	0.00155644	0.000712578
+Two component hybrid sensor and regulator	0.000343245	9.43929e-05
+UniRef50_UPI00033433B7	3.7406e-05	1.20295e-05
+Adenylate kinase	7.67915e-06	7.12917e-06
+Phospho N acetylmuramoyl pentapeptide transferase	0.0135054	0.00606374
+hypothetical protein	1.14245e-05	4.9561e-05
+Lipase	0.00855239	0.00159079
+4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000527712	9.91003e-05
+Sucrose 6 phosphate hydrolase	0.00336372	0.00251655
+UniRef50_U4V9A4	9.85371e-05	1.39173e-05
+Glycosyl transferases group 1	0.000197555	0.000222206
+hypothetical protein	2.9344e-06	2.59573e-06
+HTH type transcriptional regulator CymR	0.0171312	0.00557503
+UniRef50_R6AX85	7.04767e-06	6.29565e-06
+Thymidine kinase	5.29838e-06	1.53212e-05
+UniRef50_Q49UR2	0.0014688	0.00141626
+hypothetical protein TREMEDRAFT_39067	2.3286e-05	3.28483e-05
+UniRef50_Q3JRJ0	4.00477e-05	1.6616e-05
+UniRef50_A0A017TDI9	0.000203544	0.000301573
+ApbE family lipoprotein	0.000248093	0.00049682
+Putative tagatose 6 phosphate ketose aldose isomerase	0.00284484	0.000218227
+Accessory secretory protein Asp1	0.000375109	0.000485794
+Imidazole glycerol phosphate synthase subunit HisH	0.00163023	0.000785367
+UniRef50_F2A3T6	2.347e-05	1.90174e-05
+UniRef50_F2A3T7	3.71217e-05	4.73786e-05
+Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein	0.00745491	0.00121138
+UniRef50_R6MA81	0.00567613	0.00117355
+MULTISPECIES	2.02825e-05	1.03917e-05
+RNA polymerase sigma factor, sigma 70 family	0.000305029	0.00184945
+hypothetical protein	0.000717415	7.30122e-05
+sugar acetyltransferase	0.000145494	0.000159893
+Lipoprotein signal peptidase	1.15143e-05	1.7018e-05
+UniRef50_I6X4E6	0.000627109	0.00187104
+Gll1344 protein	5.53394e-05	1.22716e-05
+UniRef50_K2JVH5	0.000358273	4.10337e-05
+Tryptophan synthase beta chain 2	0.008788	0.00372523
+hypothetical protein	6.843e-07	6.62984e-05
+UniRef50_D8HDF1	0.0035923	0.000633963
+Putative membrane protein	0.000120912	9.55734e-06
+UniRef50_F2AIM8	0.00118009	0.00122632
+Diguanylate cyclase	4.48684e-06	2.70222e-05
+UniRef50_L7WXF9	0.0174938	0.00194278
+CRISPR associated protein Cas3	0.000115719	3.94996e-05
+Double stranded RNA RNA DNA hybrid binding protein	0.000106503	0.00054131
+FIG001826	0.000214528	6.32455e-05
+Hydroxyethylthiazole kinase	7.16083e-06	4.51662e-06
+NADH quinone oxidoreductase subunit B 2	8.38453e-06	6.73102e-05
+phosphoglycolate phosphatase	6.45187e-06	7.18108e-06
+Extracellular solute binding protein family 1	0.000953992	0.000237082
+ABC transporter ATP binding protein	1.93194e-05	5.9161e-06
+hypothetical protein	3.61487e-05	1.14443e-05
+hypothetical protein	1.68502e-06	6.58676e-06
+hypothetical protein	3.99785e-05	7.69191e-06
+ATP synthase subunit beta 2	0.00190498	0.000419143
+50S ribosomal protein L3	0.00181857	0.000703502
+Marine sediment metagenome DNA, contig	5.65043e-06	1.20502e-05
+succinyl CoA	4.0205e-05	3.69551e-05
+Beta lactamase regulatory protein 	0.000788895	0.000119224
+UniRef50_L9M7Y3	2.78216e-05	5.90971e-05
+UniRef50_W9GPH4	1.99731e-05	3.13778e-05
+Chromosome partitioning protein parB	0.0026338	0.000556824
+Amidophosphoribosyltransferase	8.62111e-06	3.4568e-05
+hypothetical protein	9.09145e-05	8.09517e-06
+ABC transporter permease 	0.000130412	4.7517e-05
+dTDP 4 dehydrorhamnose reductase	0.00239112	0.000292012
+hypothetical protein	0.0030923	0.000262529
+UniRef50_G7M2K9	0.000320493	0.000772915
+ABC transporter substrate binding protein	3.22113e-05	2.15924e-06
+Short chain dehydrogenase reductase SDR	0.000132326	0.000394942
+Putative signal peptide protein	0.00364625	0.00271913
+NADH quinone oxidoreductase subunit B	0.0166875	0.00129955
+Phospholipid glycerol acyltransferase	0.00136111	0.000234696
+UniRef50_T5LAM1	6.3284e-05	0.000113275
+Amino acid permease, putative	0.0172005	0.00331262
+PREDICTED	3.00758e-05	1.94496e-05
+Uridine phosphorylase	0.00645517	0.00059601
+Methylenetetrahydrofolate reductase	0.00403979	0.000967476
+hypothetical protein	3.34688e-06	0.000250019
+Thiol	0.00239923	0.000298047
+UniRef50_K8CFI0	2.93767e-05	0.000168433
+Alkylphosphonate utilization operon protein PhnA	0.0012692	0.000866199
+Repeat containing protein	7.50456e-07	2.33621e-06
+Bmlf1	4.01692e-05	0.000243981
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0053209	0.00142101
+Membrane protein	0.000550348	6.57765e-05
+hypothetical protein	8.14771e-06	3.2302e-06
+UniRef50_K1UNJ2	9.91856e-05	7.76624e-05
+Ubiquinol cytochrome c reductase iron sulfur subunit	0.00242029	0.00266549
+Purine operon repressor, PurR	0.0219425	0.00377472
+hypothetical protein	8.3191e-05	1.42363e-05
+ATP dependent DNA helicase RecQ	2.40466e-05	5.37944e-06
+Dihydroorotase	7.88786e-05	0.0034917
+Transcriptional regulator, GntR family	0.0125762	0.000885595
+hypothetical protein	2.92632e-05	1.85416e-05
+Periplasmic binding protein LacI transcriptional regulator	0.00612451	0.0010858
+hypothetical protein	1.90474e-05	1.38857e-05
+Lipid A ABC exporter family, fused ATPase and inner membrane subunits	0.000495516	5.16599e-05
+Gram positive signal peptide protein, YSIRK family	0.00262832	0.000399044
+Medium FAD binding subunit of molybdenum enzyme	0.000816295	0.000655133
+UniRef50_Q5HPD3	0.0159025	0.00281723
+N carbamoylputrescine amidase	0.000894333	0.0339357
+NADH quinone oxidoreductase subunit C	1.52977e-05	7.28161e-06
+hypothetical protein SMAC_10357, partial	2.74344e-05	5.49217e-05
+UniRef50_X4XF16	0.000190807	0.000558864
+UDP N acetylmuramate  L alanine ligase	0.00619479	0.00134392
+Holliday junction DNA helicase RuvB	1.30772e-05	6.79811e-06
+hypothetical protein	3.25736e-05	7.10649e-06
+hypothetical protein	7.43603e-06	1.9177e-05
+Na+ driven multidrug efflux pump, putative	0.000356807	6.84858e-05
+Biofilm regulatory protein A	0.00776755	0.000555745
+hypothetical protein	4.76008e-06	4.69283e-06
+UniRef50_M1M0U2	0.000714867	0.00197858
+Transketolase	0.00698489	0.00257408
+MATE efflux family protein	0.000174335	0.00107504
+UniRef50_V0VWL0	0.000146946	3.75283e-05
+UniRef50_J0I8Y3	0.000885095	0.000180354
+Macro domain containing protein RSc0334	1.09256e-05	0.000127101
+MULTISPECIES	4.87201e-06	4.85225e-06
+hypothetical protein	9.62374e-06	5.67388e-05
+UniRef50_I7F2J7	2.7196e-05	3.3435e-05
+Peptidase	6.7807e-05	0.00189941
+ABC transporter	8.70048e-05	5.25959e-05
+UniRef50_E6MXW1	3.86193e-05	0.000774146
+Cache sensor containing methyl accepting chemotaxis sensory transducer	3.49204e-05	6.29646e-05
+Oligopeptide ABC transporter permease	0.00600965	0.000540942
+UniRef50_C2MTH9	0.000161842	0.000550241
+Endoribonuclease YbeY	0.00315514	0.000526012
+Histidine kinase of the competence regulon, ComD	0.00531839	0.000833284
+Adhesin like protein	0.00238226	0.000334655
+Dihydrodipicolinate synthetase	1.99211e-05	1.6565e-05
+UniRef50_A5UNS0	0.00128152	0.000266424
+UniRef50_U5MUD4	0.000877585	0.0011045
+Extracellular solute binding protein, family 3	0.00037804	0.000675447
+UniRef50_L7WW55	0.00170846	0.000643204
+UniRef50_W4HNW2	0.00015651	3.50146e-05
+UniRef50_Q326E0	0.00207871	0.000353045
+DNA mismatch repair protein MutL	0.000253014	0.000261959
+hypothetical protein	1.4523e-05	8.40868e-06
+Metal binding protein ZinT	0.000897193	0.000140289
+Major facilitator superfamily MFS_1	0.000278577	0.000311959
+Excinuclease ABC subunit C 	0.000101882	1.48527e-05
+Phage major head protein	0.0145378	0.00210788
+Glutathione regulated potassium efflux system protein kefC	0.00127043	0.000557425
+UniRef50_A7IP37	0.00304606	0.000559864
+carbon monoxide dehydrogenase	1.47934e-06	3.97152e-06
+RNA polymerase sigma 54 factor	0.00343886	0.000601846
+Integral membrane sensor signal transduction histidine kinase	0.000415297	0.000520254
+UniRef50_Q9RW34	0.000119203	0.0661534
+hypothetical protein, partial	0.000103581	1.91393e-05
+Succinyl diaminopimelate desuccinylase	0.00115514	0.00297781
+UniRef50_I1ZJN7	0.0012612	0.00173902
+Siroheme synthase	4.51265e-06	1.1559e-05
+Conserved repeat domain	0.000609095	0.000499064
+UPF0380 protein YfjQ	0.00818864	0.00214923
+Cytochrome C assembly protein	0.000124802	0.00265124
+Probable nicotinate nucleotide adenylyltransferase	6.90775e-06	0.00105312
+UniRef50_R5DD38	0.0011273	0.000460072
+Transposase DDE domain protein	3.34566e-05	0.00114697
+UniRef50_X8FIZ9	7.75071e-05	0.0001764
+UniRef50_A0A023XW63	9.79454e-06	3.76671e-06
+hypothetical protein	3.13516e-06	2.23668e-06
+Peptidase, M61 family	0.000209834	0.00198865
+UniRef50_H7CZ41	0.000584195	0.00015976
+BolA like protein	3.64993e-05	6.15957e-05
+Putative acyltransferase Rv0859	0.00103899	0.00365201
+UniRef50_I0C833	0.00810946	0.00212529
+Dihydrolipoyl dehydrogenase 	8.45696e-06	4.76729e-06
+hypothetical protein	2.71529e-05	3.60299e-05
+Integral membrane sensor signal transduction histidine kinase	0.000158783	0.000793423
+ABC type spermidine putrescine transport system, ATPase component	0.000632755	0.000125398
+Molybdenum transport system permease protein ModB	0.00658338	0.00305904
+Phosphate acyltransferase	0.00966126	0.000400844
+D lactate dehydrogenase 	0.00035875	0.00156327
+hypothetical protein	1.53295e-06	2.37377e-06
+UniRef50_I0DWZ9	2.4608e-05	1.4207e-05
+Hemolysin type calcium binding region 	4.99395e-05	4.14378e-06
+phosphoprotein phosphatase	8.29519e-06	7.37933e-06
+UniRef50_Q4FP60	9.75254e-06	1.22391e-05
+UniRef50_Q5HP10	0.00707407	0.000377529
+Cysteine desulfurase ATPase component domain protein	1.68029e-05	2.66383e-05
+hypothetical protein	8.89644e-06	3.15815e-06
+UniRef50_I4ES52	0.00010639	0.00379762
+Trehalose synthase	4.73678e-06	8.77587e-06
+UniRef50_A0A024HWE9	3.35442e-05	2.04347e-05
+Acyl CoA thioesterase II	0.000499975	0.000144581
+UniRef50_K7UZS6	2.75501e-05	4.2605e-05
+Phospholipase D transphosphatidylase	0.0015893	0.000379771
+Peptidase M14, carboxypeptidase A	0.000687326	0.000353002
+FAD linked oxidase domain protein	0.000676151	0.00432454
+SnoaL like domain protein	0.000200209	4.27652e-05
+Two component system response regulator	0.00181023	0.000661517
+hypothetical protein	0.000150028	5.28596e-05
+Phosphomethylpyrimidine synthase ThiC	8.60117e-06	2.16339e-05
+Osmotically inducible protein C	0.000391336	0.0334503
+erythrose 4 phosphate dehydrogenase	4.29361e-05	3.40548e-05
+4 phosphopantetheinyl transferase	0.00776148	0.00204726
+Transporter major facilitator family protein	0.000106615	0.00164123
+hypothetical protein	0.00030577	0.000162185
+UniRef50_K2JWT8	2.19431e-05	1.00907e-05
+Acetoin dehydrogenase E1 component beta subunit	0.00472756	0.000426769
+hypothetical protein	1.85694e-06	1.48124e-07
+Serine  tRNA ligase	1.85947e-05	5.72652e-06
+PREDICTED	1.3705e-05	2.17968e-05
+UniRef50_S6AS82	1.08098e-06	4.78042e-06
+Nucleoside triphosphatase NudI	0.000145343	0.000212257
+Stage III sporulation protein AE	0.00027227	0.000573176
+UniRef50_Q5QW41	7.93691e-05	1.72428e-05
+Transposase, putative	0.000283459	0.00125381
+Bifunctional protein	0.0055209	0.00286112
+GTP binding protein	6.32488e-06	1.24332e-05
+Polymorphic outer membrane protein repeat  (Fragment)	0.00414785	0.000315394
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.09742e-05	0.000442455
+UniRef50_P40747	4.83332e-06	8.20804e-06
+hypothetical protein, partial	8.39509e-06	3.11632e-05
+Mlr5266 protein	0.00481138	0.000569679
+sodium hydrogen exchanger	3.266e-06	4.52131e-06
+N carbamoyl L amino acid hydrolase	0.00399274	0.000569029
+PREDICTED	1.73261e-05	2.17165e-05
+UniRef50_K0TM35	9.38513e-06	4.48335e-05
+Response regulator receiver protein	0.000585486	0.000376618
+Major facilitator superfamily  transporter	0.000250023	0.000210474
+UniRef50_A5IQJ9	0.0110657	0.0035427
+thymidylate synthase	3.30992e-05	0.000152411
+Polysaccharide deacetylase family protein	0.00345253	0.00082443
+Thymidine kinase	2.0949e-05	2.09109e-05
+UniRef50_G8VF81	0.000109983	0.00316554
+D amino acid dehydrogenase small subunit	0.00237156	0.000516292
+Peptidase T	1.76859e-05	0.00117767
+UniRef50_X1XX47	2.46937e-06	1.725e-06
+Bifunctional protein	0.000102251	0.00333474
+Phosphopantothenoylcysteine decarboxylase   phosphopantothenate  cysteine ligase	0.0162603	0.00320679
+Delta aminolevulinic acid dehydratase	0.00455996	0.000794524
+Homoserine O succinyltransferase	0.00579747	0.00139176
+MarR family transcriptional regulator	1.21299e-05	2.48577e-05
+NAD binding protein	2.00812e-05	1.10119e-05
+Uridine kinase	8.51948e-06	0.000298597
+UniRef50_G8MW75	8.59709e-05	0.00028085
+2 oxoisovalerate dehydrogenase subunit beta	0.0203996	0.00558241
+NADH quinone oxidoreductase subunit N	0.0003394	0.000129477
+UniRef50_B1T5I2	0.000770722	0.00110978
+Serine acetyltransferase	1.03665e-05	1.71789e-05
+Membrane flanked domain	0.0118874	0.00140198
+Fumarate reductase iron sulfur protein	0.00443261	0.0005326
+Octanoyltransferase LipM	0.0105156	0.000952767
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0167757	0.00207985
+PF04304 family protein	8.29916e-06	8.39554e-06
+hypothetical protein	2.03929e-05	7.04115e-06
+Inosine guanosine kinase	0.00293963	0.000211147
+Iron siderophore receptor protein	0.000486908	0.000230842
+hypothetical protein	0.000376239	0.000260942
+Anti anti sigma regulatory factor 	1.19887e-05	0.000865808
+DNA topology modulation protein FlaR	1.07229e-05	3.68645e-05
+UTP  hexose 1 phosphate uridylyltransferase	0.000196048	0.00824847
+PREDICTED	4.78517e-05	4.24888e-05
+Cytochrome c type protein TorC	0.00271448	0.000335111
+UniRef50_F4A9P0	0.000578594	0.000269624
+UniRef50_A0A024E2H8	0.000508134	0.000426368
+UniRef50_K0SEA3	0.000210922	1.16786e-05
+hypothetical protein	0.000169059	1.03883e-05
+LysR family transcriptional regulator	6.87717e-05	2.16613e-05
+Ribonuclease R	0.000500908	0.00135323
+Maf like protein SPO3892	0.000580421	0.00015192
+UniRef50_A0A025DCK3	0.0017522	0.000337077
+Xanthine uracil permease family protein	0.000516187	0.000931277
+NADH quinone oxidoreductase subunit L	0.000171725	0.00185399
+hypothetical protein	4.89613e-06	2.39545e-06
+hypothetical protein	3.0091e-05	1.26382e-05
+Teichoic acid biosynthesis protein X	0.0112386	0.00159695
+UniRef50_V6UWS0	4.11068e-05	4.87288e-05
+ADP ribose pyrophosphatase	1.43104e-05	2.09309e-05
+FAD containing monooxygenase EthA	3.86547e-06	0.000603316
+hypothetical protein	3.04096e-06	9.03555e-07
+hypothetical protein	7.08127e-06	6.64784e-06
+Molybdopterin guanine dinucleotide biosynthesis protein A	2.8614e-06	5.24937e-06
+NADH quinone oxidoreductase subunit C	2.1301e-05	2.03886e-05
+DNA mismatch repair protein MutL	0.00939016	0.00177943
+8 amino 7 oxononanoate synthase	4.20893e-06	3.31525e-06
+UniRef50_B0V8Y0	0.000807357	0.0107419
+UniRef50_C6SRM3	0.00469172	0.00138776
+hypothetical protein	3.93132e-05	5.96385e-06
+DNA helicase II	6.27109e-05	0.00176301
+HsdM N terminal domain protein	7.3011e-05	6.67896e-05
+Serine O acetyltransferase	0.0012511	0.000372744
+Peptidyl tRNA hydrolase	6.08354e-05	1.65434e-05
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.0124027	0.00136833
+Phospholipase D	0.00298922	0.000335397
+tRNA tmRNA ) methyltransferase	0.0035202	0.00313703
+N acetylmuramoyl L alanine amidase	0.00368806	0.000450341
+NADH quinone oxidoreductase subunit B 2	0.0040902	0.000602097
+UniRef50_U3T6X0	0.000105501	0.00355979
+hypothetical protein	9.42849e-06	0.000290185
+hypothetical protein	3.63688e-06	4.49735e-06
+hypothetical protein	1.87488e-05	3.17117e-06
+Pyrimidine nucleoside phosphorylase	0.00402226	0.000288914
+Uridylate kinase	1.88702e-05	1.0561e-05
+Isoquinoline 1 oxidoreductase subunit alpha	3.01594e-05	3.24966e-05
+penicillin binding protein 2B	3.67821e-06	6.01462e-06
+UniRef50_L8BQX8	1.52844e-05	0.000532956
+Adhesin like protein	0.00177381	0.000275349
+UniRef50_Q2YSH2	0.022988	0.00439873
+UniRef50_K0RL16	0.000204796	1.62708e-05
+Nitrogenase molybdenum iron protein beta chain	0.012417	0.00195852
+Protoheme IX farnesyltransferase 2	9.40931e-06	9.88077e-06
+hypothetical protein	0.000179069	5.53501e-05
+hypothetical protein	3.51215e-06	1.19492e-05
+Twin arginine translocation pathway signal	0.0109328	0.00129934
+Polyribonucleotide nucleotidyltransferase	4.50047e-05	3.04925e-06
+Metalloprotease TldD	0.00245682	0.000293768
+UniRef50_E4NBU8	2.21511e-05	1.71177e-05
+hypothetical protein	4.29637e-05	3.98984e-05
+UniRef50_W8RNL3	4.50637e-05	4.7068e-05
+Proline  tRNA ligase	0.00333247	0.00421033
+UniRef50_A4E7N7	9.11584e-06	0.000115812
+hypothetical protein	8.04806e-05	1.56951e-05
+UniRef50_P75863	0.0026364	0.000588961
+hypothetical protein	0.00848526	0.00352256
+Nucleoid occlusion factor SlmA	0.00397378	0.000417604
+Serine rich adhesin for platelets	0.0119157	0.00155798
+AsnC family transcriptional regulator, partial	0.000186978	4.68876e-05
+Probable tRNA dihydrouridine synthase 1	2.2199e-05	4.44006e-06
+Short chain dehydrogenase	0.00103293	0.000213266
+UPF0114 protein PA4574	0.000415065	0.000220602
+NAD kinase	0.00120818	0.00463585
+Protein CBG04553	5.2979e-07	4.40992e-05
+indole 3 glycerol phosphate synthase	3.33827e-06	2.29437e-06
+UniRef50_B2HWA5	0.000669233	0.00207964
+UniRef50_Q02151	0.00518933	0.000968002
+UniRef50_Q3JHC8	7.95819e-06	1.46603e-05
+Formyltetrahydrofolate deformylase 2, mitochondrial	3.57553e-06	1.0871e-05
+UniRef50_Q3JQU1	0.000322787	8.05607e-05
+Enoyl [acyl carrier protein] reductase [NADH] 2	0.0208139	0.00182624
+UniRef50_P37560	0.0220325	0.00250406
+UniRef50_A7BEA1	0.000174377	0.00199557
+Extracellular ligand binding receptor	8.85654e-05	0.000553355
+Transport protein, putative	0.00013984	0.028725
+UniRef50_I0GP22	0.00051251	0.00484235
+translation initiation factor IF 3	0.000253857	0.000174866
+Fumarate hydratase class II	5.69565e-06	1.45817e-05
+Ribosomal RNA small subunit methyltransferase H	4.95594e-06	1.52451e-05
+UniRef50_P45625	0.0170465	0.00309882
+hypothetical protein	4.36165e-06	3.59886e-06
+UniRef50_UPI000329D7B6	0.00135555	0.000207291
+Nitrate nitrite antiporter	4.76182e-06	1.0011e-05
+Fimbrial biogenesis outer membrane usher protein	0.00121851	0.000490341
+hypothetical protein TRAVEDRAFT_50483	0.00130553	0.000581378
+Dihydroxy acid dehydratase	0.00267546	0.000594705
+Integral membrane protein	9.12866e-05	3.67034e-05
+Fumarate hydratase FumA3	0.00405696	0.000291509
+Protein translocase subunit SecF	0.0161748	0.00236505
+Protein RnfH	1.90303e-05	2.6497e-05
+hypothetical protein	4.73834e-05	8.08219e-06
+Probable tRNA pseudouridine synthase D	0.00499432	0.000383853
+Cytochrome c oxidase subunit 3	8.07232e-06	9.40765e-06
+Alpha L fucosidase	0.000431913	0.0032914
+UniRef50_I4E0F8	0.00656057	0.00117048
+amino acid adenylation protein	2.28375e-05	4.47006e-06
+UniRef50_A5IUD1	0.0242719	0.00133147
+YlmE	0.00629586	0.00132717
+Protein ApaG	0.000625468	2.13373e-05
+Molybdenum ABC transporter ModA	0.000858517	0.000280776
+Toluene tolerance protein Ttg2B	0.000150605	1.68554e-05
+Translation initiation factor 3 protein isoform 4, partial	0.000109353	2.48619e-05
+ADP ribose pyrophosphatase	1.55186e-05	0.000520763
+UniRef50_C5Q752	0.00549178	0.00140929
+hypothetical protein	1.60146e-05	4.95838e-06
+hypothetical protein	3.86303e-06	2.65721e-06
+Carbon starvation protein A homolog	4.93473e-05	0.000734873
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.00278029	0.0054798
+hypothetical protein	8.71694e-05	3.53612e-05
+Predicted protein 	0.000246131	0.000231698
+Ribonuclease E	0.00372012	0.000451268
+Histidinol dehydrogenase	3.19214e-06	2.66639e-06
+UniRef50_W5BPL1	6.42788e-05	1.00199e-05
+hypothetical protein	1.09075e-05	7.02713e-06
+K12555 penicillin binding protein 2A	0.000151776	5.75913e-05
+hypothetical protein	4.83568e-06	6.53787e-05
+UniRef50_J1B0P3	0.0065	0.00284064
+DNA gyrase subunit B	6.75888e-06	1.04743e-05
+UniRef50_O34384	0.000351181	0.0553392
+Ribonuclease Z	0.00496175	0.00154079
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000367954	0.00409507
+Predicted protein	7.0413e-05	2.65494e-05
+Streptokinase like protein	0.000392134	0.000388144
+GTPase Der	0.00468883	0.000269439
+UPF0178 protein SAR0734	0.00882414	0.0032531
+UniRef50_Q1R9Q5	5.63589e-05	3.22593e-05
+UniRef50_A3UXL8	1.65928e-05	0.000156736
+RpiR family Helix turn helix domain containing protein	0.00110669	0.000363182
+Thymidylate synthase ThyA	0.0025527	0.000182861
+Ferredoxin  NADP reductase	0.0128355	0.00206276
+Uroporphyrinogen decarboxylase	3.44281e-06	3.29618e-06
+hypothetical protein	2.55775e-05	0.000255431
+UniRef50_Q3JVX1	2.4477e-05	1.35014e-05
+Aspartate ammonia lyase	6.96933e-06	0.00448116
+UniRef50_C5YPR8	8.40362e-05	1.26754e-05
+UniRef50_B2ZY73	1.03552e-05	0.000248297
+Hexose phosphate transport protein	0.00256793	0.000356392
+putative enterobactin iron transport system, ATP binding protein	3.44055e-06	0.000142365
+UniRef50_A3M517	0.000282814	0.00214406
+Two component transcriptional regulator, LuxR family	0.0011394	0.00029018
+UPF0386 protein Caul_4643	0.000573662	4.19189e-05
+UniRef50_T1B6U2	0.000129478	1.32125e-05
+UniRef50_A8TBH7	2.96893e-05	1.3735e-05
+UniRef50_F3L3B7	9.42048e-06	0.00131506
+UDP N acetylenolpyruvoylglucosamine reductase	0.000185256	0.00674114
+UniRef50_A8TBH9	2.03288e-05	9.40242e-06
+Dual specificity RNA methyltransferase RlmN	0.00170963	0.00100376
+Phosphoribosylformylglycinamidine synthase 	4.50266e-05	3.8761e-05
+UniRef50_I3XA84	4.75123e-06	9.92338e-06
+MULTISPECIES	1.15681e-05	2.03987e-05
+DNA polymerase II large subunit	4.70774e-05	5.39738e-05
+UniRef50_A8LRN8	0.00877518	1.34099e-05
+Isocitrate dehydrogenase [NADP]	0.000198756	0.000482689
+hypothetical protein	5.72102e-05	1.45353e-05
+UniRef50_J0FJU8	0.000651446	0.000198375
+UniRef50_X6EJ38	9.43878e-06	1.4987e-06
+UniRef50_F7X313	0.000169954	2.82728e-05
+Flagellar protein FlgJ	0.000161698	5.05114e-05
+Glutamate racemase	0.000118503	0.00454121
+UniRef50_H1LKH2	0.000121047	1.83202e-05
+UniRef50_F7X315	0.000160928	4.68304e-05
+membrane protein, partial	9.55437e-06	1.74626e-05
+Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein	0.000408152	0.000720973
+Endoribonuclease L PSP	0.000667138	1.86592e-05
+Pyruvate, water dikinase	0.000548087	0.000875424
+hypothetical protein	4.09972e-05	7.22505e-05
+hypothetical protein	2.80157e-05	1.22392e-05
+UniRef50_L7WWZ3	0.00119902	0.000516005
+hypothetical protein	1.20771e-05	8.9098e-06
+UniRef50_Z5LDC7	7.86335e-06	7.39806e-06
+Superoxide dismutase [Mn Fe] 2	0.0153519	0.00376053
+UniRef50_B6IVA8	0.000244986	1.11663e-05
+Probable iron export permease protein FetB	0.00172547	0.00057912
+2 amino 4 ketopentanoate thiolase	1.55481e-05	1.23511e-05
+ComE operon protein 1	0.000604466	0.00208487
+Aldehyde dehydrogenase	0.000673088	0.000546832
+UniRef50_L8GN65	6.19137e-05	0.00217111
+Helicase	0.000127886	0.00327282
+Glycosyl transferase group 1 family	0.00249541	0.000763687
+UniRef50_U6ACI3	0.00060822	0.00105012
+Glycine dehydrogenase , mitochondrial	5.84576e-06	4.35447e-06
+Marine sediment metagenome DNA, contig	9.14346e-06	9.97181e-05
+hypothetical protein	9.40739e-05	7.97033e-06
+UniRef50_F4LAH5	6.43379e-05	4.71295e-05
+Regulatory protein NosR	0.000545276	0.000136519
+hypothetical protein, partial	1.91483e-05	6.69268e-06
+UniRef50_F4C7A6	0.000118132	2.14405e-05
+Aminopeptidase N	0.00121011	0.000305583
+UPF0145 protein Lm4b_00206	0.000225542	0.0013299
+Marine sediment metagenome DNA, contig	2.00527e-05	1.57464e-05
+deoxyguanosinetriphosphate triphosphohydrolase	6.84456e-05	1.14195e-05
+3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00108218	0.000356289
+Phage shock protein A	0.00384125	0.000664355
+KAP family P loop domain	2.55071e-05	9.37414e-06
+Alpha acetolactate decarboxylase	0.0044806	0.00233195
+UniRef50_Q5HLB9	0.000360588	6.79114e-06
+HTH type transcriptional repressor CytR	0.0030845	0.000398852
+LysR family transcriptional regulator	3.01932e-05	0.000180078
+Arginine permease	0.0192009	0.00246807
+UniRef50_I6TND0	0.0133017	0.000209778
+Predicted protein	3.71075e-06	1.25637e-05
+Ribulokinase	0.00280687	0.000419997
+UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000385601	0.000173444
+hypothetical protein	5.37906e-05	2.0767e-05
+ABC transporter ATP binding protein	0.000339163	0.00427302
+inner membrane translocator	2.50071e-05	4.46764e-06
+PREDICTED	5.15919e-06	6.88464e-06
+UniRef50_K2ET09	4.57976e-05	4.41812e-06
+UniRef50_G8VFU9	0.000219103	0.00414718
+Imidazole glycerol phosphate synthase subunit HisH	0.00385335	0.000258746
+UniRef50_E8JET5	0.000623923	0.000106916
+tyrosine protein kinase	4.58969e-06	6.30811e-06
+UniRef50_F0YJ58	0.000142554	0.000218031
+LuxR family transcriptional regulator	1.18929e-05	5.46521e-05
+dTDP 4 dehydrorhamnose 3,5 epimerase	2.72588e-05	1.09635e-05
+Phosphotransferase system PTS, lactose cellobiose specific IIA subunit	0.000269239	0.000272075
+glutamyl Q tRNA ligase	0.000132499	0.00237328
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.000248441	9.27468e-06
+IS3 Spn1, transposase	0.0261731	0.00851019
+Membrane protein, putative	0.0004206	1.3354e-06
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0146677	0.00463844
+4 alpha glucanotransferase	2.88227e-06	0.00016555
+Transcriptional regulator, MarR family protein	1.81996e-05	4.64465e-05
+hypothetical protein	4.83832e-06	3.83431e-06
+Transcriptional regulator, LacI family	0.000116051	0.000100318
+40 residue YVTN family beta propeller repeat protein	8.10368e-06	7.91078e-06
+Predicted transcriptional regulator, marR family	0.000726364	0.000384934
+Proline rich protein	7.16734e-05	8.941e-06
+UniRef50_U7G864	1.66978e-05	1.37365e-05
+Cobalamin synthesis protein	3.11385e-06	2.20392e-06
+DNA polymerase III subunit alpha	2.94357e-05	0.00170331
+NADP specific glutamate dehydrogenase	0.000301262	0.0052914
+UniRef50_W1U3S2	0.000229021	0.00126252
+Sodium	1.59248e-05	1.40501e-05
+50S ribosomal protein L33	0.00122685	0.00138485
+hypothetical protein	4.05682e-05	8.23703e-06
+30S ribosomal protein S4	4.74573e-05	0.000120118
+UniRef50_Q5HRX0	0.00790206	0.00242293
+hypothetical protein	3.17175e-06	4.57761e-06
+UniRef50_M1F771	6.10696e-05	3.00771e-05
+Homocitrate synthase	4.43554e-06	0.0234284
+Pyruvate kinase 1	1.61361e-05	7.58334e-06
+NADH	0.000103172	1.97967e-05
+UniRef50_A7NJ00	6.92549e-05	6.15864e-05
+UniRef50_A4EH59	0.000411706	0.000259446
+UniRef50_I1EUA2	1.33536e-05	1.54458e-06
+Ethanolamine utilization cobalamin adenosyltransferase	0.000287239	0.000123671
+hypothetical protein	3.04882e-06	2.13574e-06
+UniRef50_P0ADK2	0.000997243	0.000429886
+UniRef50_G0DTN7	0.000141407	0.0024557
+UniRef50_H6VX72	0.00100965	0.00110593
+CoxE family protein	0.000467631	0.000617953
+Amino acid amide ABC transporter substrate binding protein, HAAT family	0.00567048	0.000386545
+ATP dependent protease ATPase subunit HslU	0.00712517	0.000724403
+dTDP glucose 4,6 dehydratase	9.46247e-05	0.0324985
+DNA translocase FtsK	0.00456114	0.00205579
+Aldehyde dehydrogenase, phenylacetic acid degradation	0.000112544	0.00322187
+hypothetical protein	8.36832e-06	8.49965e-06
+Adenylate kinase	8.86905e-06	2.8584e-05
+ABC transporter permease	1.58488e-05	0.000103996
+O acetylserine sulfhydrylase	0.00045464	0.000781321
+helicase	5.50622e-07	6.24832e-06
+Serine hydroxymethyltransferase	0.000112271	8.96049e-05
+Extracellular solute binding protein family 5	0.00026927	0.00515928
+LigA	0.000175881	0.000428559
+Probable fimbrial chaperone YraI	0.00269182	0.000262337
+UniRef50_P44992	0.000855836	0.000468267
+Coproporphyrinogen III oxidase	0.000159754	0.00186323
+urease subunit alpha	6.71814e-06	1.48939e-05
+TspO and MBR like proteins	0.0123327	0.0041703
+Cytoskeleton protein RodZ	0.00260821	0.00136887
+Bacteriophage head tail adaptor	0.00249573	0.000863316
+UniRef50_J7PFG8	8.08444e-05	0.000358904
+Carbonic anhydrase	0.00483811	0.000244777
+Catabolic 3 dehydroquinate dehydratase	0.000262929	0.00313762
+Succinate dehydrogenase flavoprotein subunit	0.000216839	0.00288446
+Trehalose 6 phosphate phosphatase	0.000535617	0.000137076
+UniRef50_I3BX28	3.47849e-05	3.60167e-05
+SEC C motif domain protein	9.07139e-05	0.000487764
+ABC transporter, ATP binding protein, partial	1.49805e-05	1.73093e-05
+Baseplate J family protein	0.000579849	0.000676383
+Gluconate operon transcriptional repressor	0.0108215	0.00439665
+ATP synthase subunit alpha	4.09792e-06	1.1348e-05
+UniRef50_M1N6Y0	0.000546544	0.000776392
+Probable deoxyguanosinetriphosphate triphosphohydrolase	0.000691712	0.000137266
+hypothetical protein	5.53009e-06	4.82931e-06
+Holo [acyl carrier protein] synthase	3.97558e-05	0.00127275
+UniRef50_S5RIC3	0.000437076	0.000385343
+hypothetical protein	5.17898e-06	0.000127244
+Acyl carrier protein	0.0015294	0.00140276
+UDP 2,3 diacylglucosamine hydrolase	0.000147394	0.000240066
+Citrate synthase	7.38051e-06	0.0195476
+Tryptophanyl tRNA synthetase	0.000551703	0.00211211
+Alpha beta superfamily like hydrolase	0.00122413	0.000738681
+Lipoprotein	2.11136e-05	2.20153e-05
+Regulatory protein RepA	0.00022288	0.00818617
+PREDICTED	2.27263e-05	2.51428e-05
+UniRef50_A0A033G8H1	2.89437e-05	2.64271e-05
+Aldo keto reductase	0.00114893	0.00520098
+Lipopolysaccharide kinase  family	0.000967594	0.000163543
+Permease	0.00051251	0.0021013
+Nitrate reductase, beta subunit 	5.16283e-05	8.61832e-06
+hypothetical protein	2.21213e-05	2.72308e-05
+GAF domain protein	1.57871e-05	0.0006555
+ABC transporter permease	0.00474747	0.000868896
+Protein yffB	6.44133e-05	2.31017e-05
+Flagellar biosynthetic protein FlhF	7.67208e-05	0.000207446
+Modification methylase XorII	0.013059	0.000864376
+UniRef50_F0XXV7	0.000368354	0.000308893
+UniRef50_E5QY81	0.00183294	8.24397e-06
+HAD family hydrolase	1.35909e-05	2.04907e-05
+Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase	7.75458e-05	0.000235703
+Glutamine synthetase 1	0.00551579	0.0121039
+UniRef50_E2NST4	0.000133609	0.00051126
+Selenocysteine specific translation elongation factor	0.00368655	0.000166268
+Oxygenase subunit of ring hydroxylating dioxygenase	0.000398206	0.00435006
+1 deoxy D xylulose 5 phosphate synthase 1	0.00449935	0.00060736
+Cyclic pyranopterin monophosphate synthase accessory protein	2.15959e-05	1.95687e-05
+Isochorismate synthase EntC	0.00300699	0.00047595
+Predicted protein	9.05864e-05	1.64528e-05
+UniRef50_G9YRQ6	1.29643e-05	1.48138e-05
+Cell wall surface anchor family protein	0.00754194	0.00196751
+UniRef50_J7MBF6	0.000285713	0.000130063
+Glycerol uptake facilitator protein	0.0111492	0.00252843
+DNA ligase	2.03499e-06	1.76054e-06
+UniRef50_T2QWI5	3.82982e-06	1.53265e-05
+UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141	0.0182849	0.00260921
+UniRef50_Q2IM08	2.48044e-05	1.06312e-05
+hypothetical protein	6.17104e-06	1.06034e-05
+Endonuclease MutS2	0.00629671	0.00315809
+O linked GlcNAc transferase	0.00296332	0.00010428
+3,4 dihydroxy 2 butanone 4 phosphate synthase	4.98917e-06	5.22184e-05
+Mitochondrial ribosomal L11 like protein	1.5247e-05	4.12174e-05
+hypothetical protein	5.91804e-06	2.02915e-06
+Periplasmic binding protein	2.14048e-06	7.34464e-06
+Permeases of the major facilitator superfamily	0.000868111	0.00348902
+hypothetical protein	3.23646e-06	3.11997e-06
+TraG	0.0337117	0.00536426
+tRNA threonylcarbamoyladenosine biosynthesis protein TsaE	0.00157993	0.000586829
+PREDICTED	1.00928e-05	5.0971e-06
+Uroporphyrinogen III cosynthase	0.000655506	0.00130805
+UniRef50_P28722	0.00063318	0.00190124
+UPF0051 protein SAR0880	0.0341315	0.0421981
+hypothetical protein	3.37224e-06	2.97432e-06
+2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase	0.00272414	0.000693198
+Tyrosine recombinase XerD	0.00061746	0.00277372
+UniRef50_A6LWP7	0.00019993	0.000174002
+Cyclodextrin ABC transporter permease protein	0.000120916	0.000842887
+UniRef50_U5MS83	0.000616816	0.000455514
+Anti sigma factor antagonist	2.63696e-05	0.00323159
+Sulfate ABC transporter substrate binding protein CysP	0.000527753	0.000892936
+hypothetical protein, partial	8.32404e-06	6.80255e-06
+Marine sediment metagenome DNA, contig	1.74145e-05	4.68792e-05
+Major facilitator transporter	0.000488058	9.87732e-05
+hypothetical protein	1.35418e-06	4.43198e-06
+PREDICTED	3.61905e-05	2.18059e-05
+Sugar binding periplasmic protein	0.00021672	0.00251859
+UniRef50_A4WZR2	0.000244861	5.49418e-05
+NADPH dependent fmn reductase	0.00393213	0.00224681
+UniRef50_R0EB23	7.7419e-06	2.62893e-05
+Hypoxanthine guanine phosphoribosyltransferase	2.95089e-05	1.34102e-05
+CoA transferase	0.000825846	0.000417811
+hypothetical protein	2.11817e-06	1.60252e-05
+hypothetical protein	2.84026e-06	3.39118e-06
+PREDICTED	0.000125641	6.46136e-05
+Sensor histidine kinase	0.00414937	0.00102411
+ABC oligo dipeptide transporter, fused ATPase subunits	0.000108401	0.000163164
+Gluconate transporter	1.84331e-05	1.47656e-05
+hypothetical protein	1.23563e-05	5.84637e-06
+Peptidyl tRNA hydrolase	6.32248e-05	1.70334e-05
+Alanine racemase 1	6.87275e-06	0.000950605
+UniRef50_J9P8Y9	2.41726e-05	1.32801e-05
+D isomer specific 2 hydroxyacid dehydrogenase NAD binding	0.00140284	0.000266449
+Copper resistance , CopA family protein	5.65945e-05	0.000764365
+NADH quinone oxidoreductase, F subunit	7.69547e-05	0.0181549
+Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation	8.63683e-05	0.000310742
+Sensory transduction protein LytR	0.00683396	0.00193206
+hypothetical protein	2.63477e-05	5.92681e-06
+3 oxoacyl [acyl carrier protein] synthase 3 protein 2	3.92356e-06	3.45915e-06
+Transcriptional regulator, DeoR family	0.00891759	0.00261736
+inosine uridine preferring nucleoside hydrolase	4.02667e-06	4.77435e-06
+hypothetical protein	7.44656e-06	1.10856e-05
+Predicted flagellar hook capping protein	7.1187e-06	5.56186e-06
+hypothetical protein	0.00017062	0.000759843
+glutamate dehydrogenase	2.59772e-05	1.32791e-06
+LysR family transcriptional regulator	3.01128e-05	3.01147e-05
+Phosphopentomutase	1.32879e-05	8.91426e-06
+Capsular polysaccharide synthesis protein	7.50324e-06	6.3381e-06
+D lactate dehydrogenase	0.00129427	0.00592549
+hypothetical protein	1.79656e-05	1.90675e-05
+Translocation and assembly module TamA	0.00221546	0.000492542
+Rod shape determining protein MreB	0.000607147	0.00147463
+UniRef50_P96662	0.00019993	0.000218815
+UniRef50_P71311	0.00445191	0.000357709
+UPF0271 protein CD630_13840	0.000930228	0.000136867
+glutamate dehydrogenase	7.89398e-06	0.000203371
+UniRef50_Q3IVA8	0.00111996	0.000204988
+UniRef50_R4Q3U4	0.00452088	0.000610781
+50S ribosomal protein L16, chloroplastic	0.000232102	0.00133475
+Elongation factor 2	1.32125e-06	9.2935e-07
+UniRef50_Q3IVA2	0.00359082	0.000555729
+UniRef50_G7WCF3	5.10438e-05	0.000558013
+Methyl accepting chemotaxis protein PctB	0.0011455	0.000287881
+Periplasmic binding protein	3.34314e-06	4.16365e-06
+Purine nucleoside phosphorylase DeoD type	0.0131506	0.00401522
+UniRef50_M4R901	0.000115125	0.00156764
+Transport processing ATP binding protein ComA	0.0172902	0.00528129
+Glucose 1 phosphatase	0.00281816	0.000627344
+Transcriptional regulator	0.000114732	0.00270527
+Putative phage tail tube protein FII	0.0346278	0.00300569
+hypothetical protein	9.69508e-06	5.17186e-06
+hypothetical protein	3.40669e-06	0.0018715
+urea ABC transporter ATP binding protein, partial	0.00029078	0.000107067
+UPF0246 protein RSSM_04267	7.75031e-06	4.24715e-06
+UniRef50_W0ACK7	3.09879e-05	3.27846e-05
+Pyruvate phosphate dikinase	0.00921904	0.00239589
+Peptide chain release factor 2	0.000766181	0.000102729
+hypothetical protein	4.69923e-05	4.36016e-05
+Urocanate hydratase	3.31142e-05	7.07524e-05
+Type II pantothenate kinase	0.00900823	0.00149218
+Glutamyl Q tRNA synthetase	3.82986e-06	2.67323e-06
+shikimate 5 dehydrogenase	4.18457e-05	2.37875e-05
+Glycerol 3 phosphate regulon repressor	0.000687364	0.000215829
+UniRef50_F0YC37	0.000163719	9.95211e-05
+Hemolysin type calcium binding protein	1.28611e-06	1.12974e-06
+Transcription repair coupling factor	0.0055305	0.00168075
+hypothetical protein	1.02302e-05	3.09991e-06
+UniRef50_Q8CS12	0.00687052	0.00238079
+50S ribosomal protein L36	8.55374e-05	0.000435849
+Ribonucleoside diphosphate reductase	8.52643e-05	0.00405188
+hypothetical protein	2.50354e-05	0.000120598
+acetoin dehydrogenase E2 subunit dihydrolipoyllysine residue acetyltransferase	3.83448e-06	5.5266e-06
+hypothetical protein	0.000130426	0.000198417
+Hydroxylamine reductase	0.00210414	0.000444765
+Lipopolysaccharide cholinephosphotransferase	0.00310452	0.000266594
+hypothetical protein	1.73534e-05	1.74238e-05
+hypothetical protein SMAC_10240	0.000127157	0.000272575
+UniRef50_Q55480	2.44719e-05	3.90263e-05
+UniRef50_L7WZA3	0.0156871	0.000516729
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	9.21706e-06	7.43611e-05
+UniRef50_B9KS54	0.00522661	0.00069045
+UniRef50_B9KS55	8.55632e-05	7.60889e-05
+ABC type cobalt transport system, permease component CbiQ related transporter	0.0163852	0.00617138
+hypothetical protein	2.09944e-06	1.65291e-06
+UniRef50_I3UM51	0.000574842	0.000148382
+Dihydroorotase	0.00140628	0.000305378
+UniRef50_F9YWS1	0.000200683	0.00173161
+Histidine kinase internal region	0.000422937	0.000329774
+hypothetical protein	0.00162754	0.00028799
+AMP binding protein	0.000257047	5.6504e-05
+UniRef50_A4XNT2	0.00104816	0.000443587
+Phosphate acyltransferase	0.00626001	0.000713123
+queuine tRNA ribosyltransferase	3.92025e-06	3.21023e-05
+Prephenate dehydratase	0.00293792	0.00333482
+Diaminopimelate decarboxylase	9.99346e-05	0.00167357
+CRISPR associated helicase Cas3	0.000153929	1.02071e-05
+hypothetical protein	4.51097e-06	2.30941e-05
+DNA primase small subunit PriS	0.00261877	0.00036939
+quinone oxidoreductase	4.84785e-06	3.01702e-05
+UniRef50_R0QWV3	6.46141e-05	0.000364234
+UniRef50_Q5HLY5	0.00461675	0.00175362
+hypothetical protein	8.83996e-06	1.60226e-05
+hypothetical protein	2.78893e-06	2.11151e-05
+Serine hydroxymethyltransferase	5.52004e-05	5.34809e-05
+UniRef50_A5IQ08	0.00179243	0.000215311
+Spore coat protein, CotS family	0.000200735	0.00102485
+hypothetical protein, partial	3.67369e-06	1.80819e-06
+FrpC, partial	2.74631e-06	1.31684e-06
+hypothetical protein	1.08787e-05	1.06543e-05
+UniRef50_U7FV20	5.70191e-05	8.12188e-06
+ABC transporter, ATP binding  permease protein	0.00415095	0.000629776
+UniRef50_D5STS9	0.0118151	0.0010922
+Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.00390827	0.000192259
+4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein	0.000153675	0.000711939
+hypothetical protein	6.86824e-06	0.00058543
+Type IV pilus biogenesis stability protein PilW	7.69616e-06	1.03601e-05
+30S ribosomal protein S13	0.0137397	0.00134914
+UniRef50_W9WZ32	1.88313e-05	1.20726e-05
+iron ABC transporter permease	1.49352e-05	1.01522e-05
+Leucine  tRNA ligase subunit alpha	2.21615e-06	4.7984e-06
+UniRef50_A0A021WYJ6	5.03601e-05	1.8416e-05
+Nucleotidyl transferase	0.00115176	0.00233175
+hypothetical protein	9.05483e-06	9.33939e-06
+3 hydroxybutyryl CoA dehydrogenase	6.99848e-05	0.000779334
+Spermidine putrescine ABC transporter, permease protein	0.000163109	0.0120952
+PREDICTED	0.00216242	0.000216712
+UniRef50_V6EZP6	1.56161e-05	8.53499e-06
+Phage related protein	6.62497e-05	0.00286474
+hypothetical protein	5.87974e-05	6.48453e-06
+Protein RfbI	9.97846e-06	8.2646e-06
+Trk system potassium uptake protein	0.00167795	0.00047534
+Molybdenum cofactor sulfurylase	8.53326e-06	5.39349e-06
+phosphoenolpyruvate protein phosphotransferase	3.4915e-06	0.000163425
+4 deoxy L threo 5 hexosulose uronate ketol isomerase 2	5.14301e-06	0.00261552
+Cysteine  tRNA ligase	2.79528e-06	5.07803e-06
+Transporter	0.00823721	0.00158848
+Phosphate starvation inducible protein	0.000248736	0.00085792
+NH dependent NAD(+) synthetase	0.0222624	0.00544019
+pseudoazurin	0.000240556	7.82651e-05
+Carboxyl terminal protease	0.000198503	0.0239082
+Tryptophan synthase beta chain	2.5509e-06	0.000550292
+O antigen polymerase	0.00529775	0.00121383
+Replication protein C	2.19839e-05	2.84159e-06
+Pili assembly protein pilC	0.000207655	0.022401
+ABC type glycine betaine L proline transporter, substrate binding lipoprotein	0.000161802	0.00232899
+Fructose bisphosphate aldolase	0.0102173	0.00235298
+7 carboxy 7 deazaguanine synthase	0.000138497	0.00109276
+Collagenase and related proteases	0.000517861	0.000595084
+Nitrate reductase	0.0107615	0.00203181
+tRNA delta isopentenylpyrophosphate transferase	1.89037e-05	5.76923e-06
+Amidase	0.000324645	0.000338559
+D lactate dehydrogenase 	3.53146e-05	0.00177792
+OmpW family protein	0.000179015	0.00244288
+amino acid ABC transporter	5.45224e-06	0.000798292
+Binding protein dependent transport systems inner membrane component	0.00525956	0.00176018
+hypothetical protein AURDEDRAFT_112432	3.41089e-06	9.28691e-07
+UniRef50_G7M1N3	0.000645835	0.000363047
+hypothetical protein	0.000249989	3.45711e-05
+PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL	0.002011	0.000550083
+UniRef50_W7D2I2	5.55614e-05	7.86527e-05
+molecular chaperone DnaJ	4.09678e-06	6.43185e-06
+Iron  ABC transporter, permease protein	0.00145402	0.000393994
+Tryptophan synthase beta chain	3.30254e-05	9.34532e-06
+GTPase HflX	0.00289844	0.000279132
+Diaminopimelate decarboxylase	0.0025743	0.00263001
+UniRef50_A1HSV6	3.21316e-05	4.93305e-05
+UniRef50_Q5F6T9	4.28067e-05	0.000272079
+lysyl tRNA synthetase	3.09861e-06	6.3872e-06
+UniRef50_Q9K0S5	0.000176821	0.000741503
+tRNA specific 2 thiouridylase MnmA	0.00282348	0.000560202
+PREDICTED	8.93708e-05	3.78425e-06
+2 isopropylmalate synthase	7.10538e-06	4.26729e-06
+PREDICTED	6.82654e-05	3.03532e-05
+Response regulator homolog	0.00457954	0.000967753
+UniRef50_C0ENU4	0.000124502	2.77507e-05
+ExbD TolR family biopolymer transport protein, putative	0.0263861	0.000384533
+deoxyguanosinetriphosphate triphosphohydrolase	4.93759e-05	1.97759e-05
+UniRef50_R9SLZ8	0.0040776	0.000151664
+hypothetical protein	0.00027968	0.000482526
+YjeF family protein 	1.01536e-05	3.68056e-05
+Oxidoreductase, short chain dehydrogenase	0.000235349	0.000327624
+Ribosomal large subunit pseudouridine synthase B	0.00216205	0.00130138
+Integrase recombinase protein	0.00189341	0.000135627
+hypothetical protein	1.94295e-05	1.28614e-05
+Glycerol dehydrogenase	0.00361721	0.000790247
+Xanthine dehydrogenase molybdenum binding subunit	0.00197391	0.000207519
+UniRef50_E4ZBB9	0.000324645	0.00102613
+SSS sodium solute transporter superfamily	0.000248144	0.0178295
+Ribosomal RNA small subunit methyltransferase G	8.9732e-06	0.00598313
+HTH domain protein	0.000552859	0.000612449
+Mobile genetic element	1.7877e-05	3.74695e-05
+bis tetraphosphatase	2.11015e-05	0.000168158
+Antibiotic transport system permease protein	9.1786e-05	0.000945873
+UniRef50_A8LJS3	1.70634e-05	3.20186e-06
+Flagellar hook associated protein 2	7.66625e-05	0.000325416
+UniRef50_A8LJS1	0.000296081	2.09174e-05
+UniRef50_X3EKE6	0.00158311	0.000281133
+UniRef50_Q01S06	0.00796467	0.000217924
+UniRef50_A3WQ21	0.000126972	0.000713681
+UniRef50_K0EZI3	5.79892e-06	9.6344e-05
+Transposase InsH for insertion sequence element IS5R	0.0218549	0.00547144
+ACT domain protein phosphoserine phosphatase SerB	8.26901e-05	0.00301635
+Teichoic acids export ATP binding protein TagH	0.0169558	0.00176933
+Probable cadmium transporting ATPase	0.00903414	0.00265335
+4 hydroxy tetrahydrodipicolinate reductase	0.00642208	0.00152335
+ATPase with chaperone activity, ATP binding subunit	0.000120331	0.00255997
+Riboflavin biosynthesis protein RibD	6.0548e-06	0.000105012
+UniRef50_F6P2R4	0.00515047	0.000653176
+Gp12	6.99888e-05	8.98426e-06
+Sensor histidine kinase YehU	0.00303673	0.000504331
+UniRef50_R7PSE2	0.00212039	0.000548928
+NADH oxidase	0.000552062	0.00122645
+2 phosphosulfolactate phosphatase ComB	0.00200192	0.000130312
+UniRef50_Q1JFV4	0.00711784	0.0023721
+hypothetical protein	1.00635e-05	8.13553e-06
+glutamate synthase  small subunit	0.000143033	8.33893e-05
+ammonium transporter	4.6102e-06	1.83164e-06
+MULTISPECIES	4.27564e-05	3.23805e-05
+Protein GrpE	0.0041669	0.000294377
+Guanosine 5 triphosphate,3 diphosphate pyrophosphatase	0.00261279	0.000420637
+UniRef50_D5HC80	2.8461e-05	8.25915e-05
+Acetate operon repressor	0.00590798	0.000552167
+Ribonuclease D	5.74802e-05	6.1564e-06
+hypothetical protein	0.000111757	5.9233e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	3.19599e-05	1.49382e-05
+Alpha beta hydrolase fold	0.00134827	0.00237467
+Phospholipase, patatin family protein	8.47729e-05	0.00325917
+hypothetical protein	1.66351e-05	0.000455342
+Riboflavin synthase	1.89361e-05	1.51016e-05
+ResB family protein	0.000346258	0.00125293
+Sirohydrochlorin ferrochelatase	0.0239663	0.00218573
+UniRef50_B1TGN6	3.2748e-05	6.43274e-05
+L threonine ammonia lyase	0.000164858	0.00105667
+UniRef50_G8B0F2	1.83584e-05	7.33381e-05
+Type IV conjugative transfer system protein TraV	1.02788e-05	9.80477e-06
+Ribosomal RNA small subunit methyltransferase I	0.00198187	0.00036083
+Dihydrolipoyl dehydrogenase	1.91131e-05	0.00304889
+Histidine kinase	0.00360535	0.000345403
+UniRef50_J3PDD9	4.49354e-05	2.04531e-05
+Polyphosphate kinase 2	2.57087e-06	0.000115717
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000462566	0.000598484
+UniRef50_B1M2H9	0.000403858	8.01064e-05
+flagellar biosynthesis protein FlhA, partial	0.000546183	0.000368256
+hypothetical protein	1.38218e-05	0.000186658
+ABC transporter substrate binding protein 	0.0119001	0.000357443
+UniRef50_Q5HRC8	0.000133744	1.71182e-05
+hypothetical protein	3.24671e-05	5.487e-06
+N acyl L amino acid amidohydrolase	1.35933e-05	8.7908e-05
+UniRef50_C0PI11	6.4863e-05	1.86582e-05
+UniRef50_U3SWE7	0.00114291	0.000235656
+ABC amino acid transporter, periplasmic ligand binding protein	0.0112247	0.00183545
+Cobalt ABC transporter, permease component	0.000407115	0.00425671
+Multidrug ABC transporter substrate binding protein	0.0026633	0.000188315
+UniRef50_X6APU4	0.000163552	2.88765e-05
+cell division protein FtsE	1.72715e-05	3.08068e-05
+UniRef50_J9NT05	1.63769e-05	0.000124341
+Probable phosphatase YPDSF_1086	0.00148579	0.000364979
+Glutathione regulated potassium efflux system protein	0.000132875	0.00112383
+Glutamate decarboxylase beta	0.00692915	0.000450046
+UniRef50_Q28PK8	1.87378e-05	2.99078e-05
+UniRef50_V4PD29	7.2259e-05	1.40748e-05
+Penicillin binding protein activator LpoA	0.00214069	0.000181177
+Ribosomal RNA large subunit methyltransferase E	2.81177e-05	1.91206e-05
+Cardiolipin synthase A	0.00142282	0.000145498
+PTS system, lactose cellobiose family IIC subunit	0.00030783	0.00203425
+hypothetical protein	3.15462e-06	2.65334e-06
+NAD dependent epimerase dehydratase	0.0156834	0.00308707
+C. briggsae CBR GEI 7 protein, partial	1.29162e-05	4.01315e-05
+UniRef50_R5UKS9	0.000233108	0.000125398
+hypothetical protein	1.90373e-05	2.31063e-05
+UniRef50_A3PHB4	0.0151882	0.000223345
+putative ATPase	0.00117951	0.000196487
+UniRef50_A3PHB0	0.00172031	0.000784282
+Magnesium transporting ATPase, P type 1	0.00225604	0.000282805
+Antiholin like protein LrgB	0.0150643	0.000256162
+4 phosphopantoate  beta alanine ligase	0.00199328	0.000614155
+Tryptophan synthase beta chain 1	4.51777e-05	1.04529e-05
+UniRef50_A4WTH7	9.51823e-05	0.000167529
+Succinate dehydrogenase hydrophobic membrane anchor subunit	0.000945564	0.000311753
+UniRef50_M9VIE6	0.000157757	0.00423552
+UniRef50_L2YGD4	5.47978e-05	1.08176e-05
+hypothetical protein	3.28612e-06	0.000346135
+UPF0313 protein PSPTO_4928	0.000721366	0.000133235
+UniRef50_UPI000328C73F	6.7659e-06	3.5299e-05
+putative cation efflux protein	1.33691e-05	4.56353e-05
+hypothetical protein	4.27338e-06	1.39297e-06
+Glutamine synthetase catalytic region	0.00197798	0.000467548
+Undecaprenyl diphosphatase	0.0049911	0.00251055
+hypothetical protein	6.36599e-05	4.27606e-06
+hypothetical protein	1.67591e-05	3.72725e-06
+UniRef50_I1AS06	0.00014911	4.33113e-05
+Uridylate kinase	2.05857e-05	1.47915e-05
+membrane protein	3.21109e-05	3.72411e-06
+Single stranded DNA specific exonuclease RecJ	0.00851149	0.00175138
+CapA related protein	0.0104599	0.00165005
+Formamidopyrimidine DNA glycosylase	0.00207634	0.00150663
+thymidylate synthase	5.24955e-05	0.000218206
+CRISPR associated helicase Cas3	8.39534e-06	5.47654e-06
+UniRef50_A5ZLG0	3.35985e-05	0.00017776
+Methionine  tRNA ligase	0.000131256	0.00477927
+Phospholipase Carboxylesterase	0.0124209	0.000911301
+Hydrogenase 4 component F	0.00148478	0.000497706
+UniRef50_K5ELG7	9.19833e-05	0.000142548
+UniRef50_A3X6J0	3.6819e-05	3.49507e-05
+Catalase	0.000253418	4.62809e-05
+Probable endonuclease 4	0.000473331	0.000638093
+molybdopterin biosynthesis protein MoeB	1.74327e-05	1.00625e-05
+SN glycerol 3 phophate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 	0.000151599	2.84616e-05
+UniRef50_G8AEH3	3.81691e-05	6.13671e-05
+alpha ketoglutarate decarboxylase	9.55527e-07	2.31624e-06
+Tyrosine  tRNA ligase	0.00355788	0.000130501
+L threonine ammonia lyase	0.000222743	0.000580219
+hypothetical protein	1.83402e-05	8.75621e-06
+hypothetical protein, partial	0.000185257	2.39895e-05
+Transketolase domain protein	0.000127094	9.02925e-06
+Low specificity L threonine aldolase	0.000407138	0.000201753
+Ribonuclease H	0.00557562	1.2424e-05
+Inosine 5 monophosphate dehydrogenase	2.11523e-05	1.84474e-06
+DNA helicase II, putative	0.00563278	0.00134504
+Porin	0.000342412	0.0023219
+Mercuric transport protein	0.00242985	0.000221145
+Acetylglutamate kinase	2.60458e-05	4.74841e-06
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.00408949	0.00138354
+Phospholipase D family protein	0.000977962	0.000226372
+RNA 3 terminal phosphate cyclase	0.00258234	0.00109363
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000135831	0.000537413
+PREDICTED	9.88234e-05	1.09433e-06
+betaine aldehyde dehydrogenase	1.43618e-05	2.50157e-05
+UniRef50_J9EAY7	0.0117602	0.000610781
+Major facilitator transporter	0.000206439	0.00314562
+Phosphoribosylformylglycinamidine synthase, purS	0.01685	3.25304e-05
+UniRef50_T0PX63	1.0724e-05	1.03125e-05
+ATP dependent DNA helicase RecQ	1.40264e-05	4.5551e-06
+4,4 diaponeurosporenoate glycosyltransferase	0.0130301	0.00118576
+Isoleucine  tRNA ligase	2.72775e-06	4.74352e-06
+UniRef50_C8PYM1	9.96545e-06	5.16248e-06
+Glutamate 1 semialdehyde aminotransferase	0.000411499	6.74567e-05
+acetyl CoA acetyltransferase	1.51783e-05	5.029e-05
+Hsp90 ATPase activator family protein, putative	1.43271e-05	7.04637e-05
+hypothetical protein	2.692e-05	7.63407e-05
+hypothetical protein	2.67675e-06	0.000321267
+Prolipoprotein diacylglyceryl transferase	1.16422e-05	3.97957e-06
+hypothetical protein	2.5117e-05	6.01875e-06
+UniRef50_X2MXQ1	0.000119266	7.84252e-05
+Polyhydroxyalkonate synthesis repressor PhaR	2.46038e-05	4.68222e-06
+Amino acid polyamine organocation transporter, APC superfamily	0.000122973	0.00100031
+Replication factor C small subunit	0.00401497	0.000855094
+UniRef50_K4AS36	3.85489e-05	8.45233e-06
+UniRef50_F5LZU0	0.000586697	0.000517307
+Periplasmic binding protein	9.41038e-06	2.74444e-05
+DNA directed RNA polymerase subunit alpha	1.85559e-05	3.45718e-05
+UniRef50_Q8DUE8	0.00725516	0.00101393
+UniRef50_Q8FBT7	0.00118932	0.000272197
+16S rRNA methyltransferase	2.02645e-05	1.13829e-05
+Cobyrinic acid a,c diamide adenosyltransferase	1.95236e-05	2.95439e-05
+Dipeptide ABC superfamily ATP binding cassette transporter, binding protein	0.000285731	0.000487961
+UniRef50_Q9I733	0.000273314	0.000387692
+hypothetical protein	1.4722e-05	0.000228209
+UniRef50_R6HVU1	9.28639e-05	0.002507
+Glycoside hydrolase family 25	0.000655125	0.000986711
+DnaD like protein	0.000282633	0.000396522
+branched chain amino acid ABC transporter permease	0.000132716	7.70189e-05
+UniRef50_R6VS65	0.000399606	0.000446368
+calcium binding protein	3.1391e-07	2.85674e-07
+UniRef50_R5QLU7	0.00159816	0.000367442
+glutamyl tRNA amidotransferase	1.04911e-05	1.11294e-05
+Transposase 	0.000487752	0.000169405
+UniRef50_F9YWL9	0.000185256	0.00412631
+Glutamate pyruvate aminotransferase AlaC	0.00276803	0.000920552
+UniRef50_F0FD43	0.000286563	6.06259e-06
+UniRef50_G0XA87	0.000982923	0.0245288
+NLPA family lipoprotein	1.09053e-05	1.60481e-05
+Rhodanese like domain containing protein	2.05358e-05	0.00118154
+Molybdopterin dehydrogenase, FAD binding	0.00216838	0.000191032
+PREDICTED	8.86337e-06	1.63483e-05
+Glucose 1 phosphate adenylyltransferase	9.99558e-06	1.38203e-05
+coproporphyrinogen III oxidase	1.76864e-05	2.53546e-05
+UniRef50_Q3JUF7	2.1911e-06	0.000129094
+UniRef50_D8HGC2	1.29179e-05	5.50709e-05
+AsnC family transcriptional regulator	0.00017742	4.46854e-05
+hypothetical protein, partial	1.45941e-05	2.37604e-05
+Putative prophage P4 integrase	0.0035602	0.000309115
+PF07120 family protein	4.27383e-06	3.8753e-06
+Thymidine kinase	1.53039e-05	6.61868e-06
+Transcriptional regulator, TetR family	0.000315777	0.00892986
+Low affinity inorganic phosphate transporter 1	0.0045529	0.000934731
+UniRef50_D0LA73	2.06146e-05	1.658e-05
+UniRef50_A0A008HNV8	3.81031e-05	3.10753e-06
+thioredoxin	3.57476e-05	1.3375e-05
+DSBA oxidoreductase	0.0193895	0.00430867
+NAD dependent epimerase dehydratase family protein	0.00464178	0.000746234
+hypothetical protein	0.0018643	0.000363072
+hypothetical protein	3.63969e-06	2.99792e-06
+Mannose 6 phosphate isomerase, type 1	0.000441494	0.0315977
+FeS cluster assembly protein SufD	0.02077	0.00370861
+Ribosomal RNA small subunit methyltransferase I 	2.58439e-05	1.76837e-05
+Beta mannosidase	0.000141272	0.00332949
+UniRef50_J0S0K6	2.03534e-06	1.66899e-06
+Aspartate carbamoyltransferase	9.58117e-06	4.3689e-06
+hypothetical protein	3.80862e-06	4.43421e-05
+MULTISPECIES	2.85717e-05	7.01477e-06
+Polyribonucleotide nucleotidyltransferase	2.00952e-06	3.03357e-06
+Energy coupling factor transporter transmembrane protein EcfT	0.0192311	0.0039389
+ThiW protein	0.000272877	0.000318386
+7 cyano 7 deazaguanine synthase	4.95422e-05	0.000217028
+PREDICTED	2.8298e-05	3.73598e-05
+N acetylneuraminate lyase	0.00834595	0.000938797
+CadX	0.0290426	0.00672762
+UniRef50_Q9I2Y8	0.000149293	0.000318386
+hypothetical protein	9.67491e-06	2.14085e-05
+IS605 IS200 like transposase	0.0103488	0.00281192
+Inner membrane protein YbjJ	0.00199884	0.000211882
+UniRef50_G7MCQ3	0.000354099	0.000351157
+Glutamine synthetase	9.19575e-06	6.97548e-05
+Hydrogenase 4 membrane subunit	0.000993676	0.000239949
+hypothetical protein	5.21551e-05	2.90057e-06
+Transporter, Sodium bile acid symporter family, macrolide resistance protein	0.00314428	0.00245155
+Short chain dehydrogenase 	1.82434e-05	1.24541e-05
+Cytidylate kinase	7.87945e-06	5.84857e-06
+UniRef50_Q6ZAM9	9.97693e-06	6.79619e-06
+Extracellular solute binding protein family 1	3.31056e-05	1.65149e-05
+hypothetical protein	1.1794e-05	1.73945e-05
+Uroporphyrinogen decarboxylase	0.00144167	0.0055195
+UniRef50_R6HIJ1	6.74379e-06	1.63683e-05
+UniRef50_C3MCT2	0.00125388	0.000235552
+Decarboxylase family protein	0.0288745	0.00238894
+PREDICTED	2.84562e-05	4.06669e-05
+Heme ABC exporter, ATP binding protein CcmA	0.0179239	0.00236141
+Aspartokinase 3	0.00475985	0.00419472
+D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase	0.000467071	0.00223364
+Formate dehydrogenase	0.00122158	0.000523962
+Sugar efflux transporter C	0.00484502	0.000639617
+Flagellar proximal rod protein FlgC	0.00161492	0.000913287
+Elongation factor Ts	0.000538076	0.00292435
+Transcriptional regulator, RpiR family	0.011278	0.000536598
+Lipoprotein	2.94384e-05	4.4586e-06
+DNA gyrase subunit A	6.2539e-06	2.52744e-06
+Long chain fatty acid  CoA ligase	1.02833e-05	0.000137686
+UniRef50_Q84630	1.42682e-05	1.2395e-05
+Valine  pyruvate aminotransferase	0.00226723	0.000881499
+UniRef50_I6S241	0.000692386	7.91754e-05
+hypothetical protein	5.13234e-05	4.6433e-05
+Protein CysZ homolog	0.00287874	0.000238344
+hypothetical protein	2.11601e-05	4.42289e-06
+UniRef50_A7V4H6	3.24716e-05	9.89376e-05
+UniRef50_P77546	0.0042445	0.000895647
+30S ribosomal protein L7Ae, putative	0.00129347	0.00571367
+Electron transfer flavoprotein alpha beta subunit	0.000216662	0.0211886
+Transposase, IS200 family, truncation	0.00243537	0.013824
+Transcriptional regulator, LysR family protein	0.014767	0.000971966
+Thioredoxin disulfide reductase	0.00058772	0.000240679
+hypothetical protein	3.81949e-06	5.62126e-06
+Aminotransferase	0.000224219	0.00366102
+UniRef50_G7M5P4	2.13299e-06	0.000350427
+UniRef50_P76633	0.00331419	0.00142387
+UniRef50_P76639	0.000843313	9.96502e-05
+CRISPR associated helicase Cas3	0.00010706	1.60616e-05
+Probable NADH dependent butanol dehydrogenase 2	9.45225e-06	0.00111843
+UniRef50_E0TGB8	0.000116308	1.48787e-05
+deoxyguanosinetriphosphate triphosphohydrolase	1.19713e-05	8.16949e-06
+Transcriptional regulator, RpiR family	0.000254567	0.000344533
+Chorismate synthase	1.65812e-05	9.31093e-05
+UniRef50_A8LS46	0.000187785	2.10356e-05
+Nucleotide binding protein	6.59617e-06	3.37842e-05
+hypothetical protein	0.000283904	0.000208107
+hypothetical protein	1.12726e-05	2.79058e-05
+Siroheme synthase	4.06264e-06	1.14381e-05
+adenosylcobinamide amidohydrolase	5.28061e-05	5.53771e-05
+hypothetical protein	3.96082e-05	1.32959e-05
+transcriptional regulator	8.79777e-06	5.54844e-05
+UniRef50_Q21AL1	0.000547465	3.41905e-05
+Pilin like competence factor	0.000150022	0.00338253
+UniRef50_A3TXU1	0.000159246	1.64088e-05
+hypothetical protein	1.71121e-05	0.000119689
+D erythrose 4 phosphate dehydrogenase	0.00300782	0.000789926
+UniRef50_S9S862	0.000440687	3.76882e-05
+hypothetical protein	0.000524769	2.66967e-05
+Ribonuclease M5	0.00790928	0.000514417
+hypothetical protein	2.43177e-06	2.0747e-06
+Siderophore staphylobactin biosynthesis protein SbnC	0.0137037	0.00123976
+diguanylate cyclase, partial	1.18482e-06	1.39294e-05
+Tn7 like transposition protein D	9.05959e-06	4.85586e-05
+Flagellar L ring protein	0.00469263	0.000196037
+Secretion protein HlyD family protein	0.000451323	0.00180562
+Putative aminotransferase AatC	2.51618e-05	0.000288144
+Oxidoreductase protein	0.0017317	0.000493834
+Glucarate permease	0.00157565	9.98719e-05
+UniRef50_J2WQI8	7.65608e-05	2.26504e-05
+Autoinducer 2 import ATP binding protein LsrA	0.00216415	0.000399271
+Transcriptional regulator, LacI family	0.000436871	0.00187061
+hypothetical protein	2.56615e-05	1.49863e-05
+UniRef50_Q9HT89	0.000885425	0.00229378
+hypothetical protein	4.83345e-06	4.65323e-06
+Methionine import ATP binding protein MetN	1.15916e-05	1.14416e-05
+UniRef50_A0A059LBR4	2.0794e-05	5.78084e-05
+UniRef50_B8C7V4	5.39613e-05	1.43244e-05
+UniRef50_D9T5Q5	1.6941e-05	3.16133e-06
+hypothetical protein	0.00183849	6.50355e-05
+hypothetical protein	2.67591e-06	7.447e-06
+Transcriptional regulator, LuxR family	0.00413933	0.000789142
+UniRef50_Q9RY69	0.000339843	0.0225565
+UniRef50_J0URR6	2.40096e-05	9.18434e-05
+UniRef50_E3A6Z3	0.000812656	0.00124895
+Acyl CoA thioester hydrolase, YbgC YbaW family	0.000666403	0.0027866
+Ribosomal RNA small subunit methyltransferase D	0.000203558	0.000725004
+Nitrogenase	0.000514923	0.000598938
+thioredoxin disulfide reductase, partial	0.000108738	4.03149e-05
+Valyl tRNA synthetase	0.000347239	3.58852e-05
+PREDICTED	5.90266e-06	1.00311e-05
+Ribulose bisphosphate carboxylase large chain	0.00787771	0.00146628
+transcription termination factor Rho	5.01372e-06	1.18924e-05
+Cytosine specific methyltransferase	0.000242943	0.00114327
+Phosphopentomutase	0.000112087	0.000726199
+30S ribosomal protein S11	0.00934912	0.0123615
+Bifunctional protein PutA	0.000730952	0.000218382
+DNA helicase	1.49878e-05	8.21088e-06
+Permease	0.000677252	0.00159018
+Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family	0.00323417	0.000410574
+Phenylacetic acid degradation like protein	8.32339e-06	8.55189e-06
+hypothetical protein	8.327e-06	8.9164e-06
+Membrane protein	1.87014e-05	3.74548e-05
+UniRef50_A5UJT5	0.00158696	0.000585817
+NADH ubiquinone oxidoreductase chain 6	0.000114606	1.58648e-05
+ABC transporter	4.16352e-06	9.172e-06
+metallophosphoesterase, partial	2.58399e-06	0.00024237
+UniRef50_K0P9U6	0.00056936	0.000159051
+UniRef50_M4X2Y6	0.00018331	2.3571e-05
+Putative 3 methyladenine DNA glycosylase	1.45362e-05	1.66381e-05
+PREDICTED	4.21645e-05	2.7404e-05
+UniRef50_X7EE68	0.000216347	2.23243e-05
+Dihydrolipoyl dehydrogenase, mitochondrial	1.84835e-05	3.23602e-05
+aldehyde oxidoreductase	1.33609e-05	5.08254e-06
+Probable transport protein HsrA	0.00443826	0.000749219
+UniRef50_R4LLL8	4.26954e-05	1.49572e-05
+UniRef50_T1XS28	0.0144983	0.00120647
+UniRef50_Q6FDP2	0.000944767	0.00253024
+Acetoacetate metabolism regulatory protein AtoC	0.000305029	0.000215829
+Adenine specific methyltransferase	0.019402	0.00233511
+Heme exporter protein C	0.00306779	0.000717796
+Multidrug resistance protein D	0.00434697	0.000391809
+UniRef50_K8M5I2	0.0020682	0.000171278
+hypothetical protein	2.67463e-05	3.92968e-06
+Adenosine monophosphate protein transferase NmFic	0.00537683	0.0011161
+hypothetical protein	5.77574e-06	5.81012e-06
+hypothetical protein	5.38394e-05	1.498e-05
+PF04507 domain protein	2.29678e-05	1.81616e-05
+Acetylornithine N succinyldiaminopimelate aminotransferase	0.00158002	0.000203462
+UniRef50_E3HI99	4.39635e-06	3.64197e-06
+Peroxisomal isocitrate dehydrogenase [NADP]	0.0213235	0.00304458
+Glutamyl tRNA reductase	0.00243004	0.000531856
+hypothetical protein	1.2537e-06	1.14461e-06
+Transcriptional regulator	0.000581259	0.000385567
+Acetyl CoA carboxylase carboxyltransferase	0.00106886	0.00264755
+carboxymuconolactone decarboxylase	3.94888e-05	0.00131903
+Transcriptional regulator	3.90081e-05	7.28533e-06
+GMP IMP nucleotidase YrfG	0.002883	0.000134408
+hypothetical protein	1.62012e-05	7.59036e-06
+Copper exporting ATPase	0.000185037	0.00227492
+Energy converting hydrogenase B subunit E EhbE	0.000524491	0.000278835
+hypothetical protein	0.00121691	0.000404436
+UniRef50_Q60DH5	0.000106696	1.27481e-05
+ISxac3 transposase	0.000684305	0.000393141
+UniRef50_E6AYN5	0.0039851	0.00139989
+transporter	5.35936e-05	3.08218e-05
+Phenylacetate  CoA ligase	8.07071e-05	0.0193
+UniRef50_F4C648	0.00258887	0.000239426
+UniRef50_K0SPN4	4.25466e-05	6.01216e-05
+Ammonia channel	0.00263006	0.000810126
+Probable ATP dependent transporter SufC	0.0218216	0.00326015
+hypothetical protein	0.00014066	1.39814e-05
+ABC type hemin transport system, periplasmic component	7.18393e-06	1.40589e-05
+UniRef50_B7IAM2	0.000135122	0.0035701
+glycerol 3 phosphate ABC transporter permease	7.49806e-06	2.77391e-05
+transketolase	2.8511e-05	6.13281e-06
+Chorismate synthase	1.37148e-05	9.97178e-05
+3 isopropylmalate dehydratase small subunit	1.10487e-05	2.13083e-05
+Exo alpha sialidase	7.03096e-05	0.00280542
+Competence protein	2.2026e-05	1.77714e-05
+hemolysin	8.78473e-06	5.89576e-06
+Probable L aspartate dehydrogenase	0.000541619	0.00249062
+D alanine  D alanine ligase A	9.72684e-05	8.96374e-05
+GMP synthase [glutamine hydrolyzing]	5.28269e-06	2.06838e-06
+glucose methanol choline oxidoreductase, partial	8.94111e-05	1.43275e-05
+Formate transporter FocA	4.69691e-05	0.000104891
+Predicted thioesterase involved in non ribosomal peptide biosynthesis	1.7783e-06	1.5132e-05
+Thiamine pyrophosphokinase	0.000179333	0.000169726
+type 12 methyltransferase	4.9913e-05	0.000124652
+UniRef50_R9ZNA1	0.000119626	0.000111396
+chemotaxis protein CheD	9.5544e-05	1.30178e-05
+UniRef50_D3HDQ8	0.00336799	0.000249195
+Probable heme iron transport system permease protein IsdF	0.0103983	0.00136348
+PREDICTED	3.01996e-06	3.67301e-06
+DNA polymerase III polC type	0.0180559	0.00241467
+hypothetical protein	1.10498e-05	4.35611e-06
+Alginate biosynthesis protein AlgA	0.000330142	0.000152755
+Ribonucleoside diphosphate reductase large subunit	2.38508e-06	0.000159031
+Pseudouridine synthase	0.000122085	0.0013733
+amino acid transporter	1.31651e-05	0.00083109
+PREDICTED	2.1116e-06	3.53089e-05
+hypothetical protein	1.58198e-06	4.01047e-05
+hypothetical protein	3.98118e-06	4.04725e-06
+tRNA  ) methyltransferase	0.000674944	0.00215665
+UniRef50_L0KY29	0.000466964	0.000137707
+UniRef50_Q9RWG0	0.000173805	0.0218415
+UniRef50_Q9RWG3	0.000179972	0.0159489
+UniRef50_E6MYP0	6.3517e-05	2.15974e-05
+Peptide deformylase	8.28745e-06	3.35513e-05
+Putative ferric uptake regulator	0.000133	1.00514e-05
+UniRef50_E5U1W5	3.83008e-05	5.71858e-05
+UniRef50_G7ZUI4	0.000124716	2.78645e-05
+KxYKxGKxW signal domain protein	3.49358e-05	3.16144e-05
+UniRef50_C7CKD2	1.29072e-05	1.24169e-05
+hypothetical protein	3.20908e-05	2.74217e-05
+50S ribosomal protein L6	0.000238965	0.000108128
+Ribosomal RNA large subunit methyltransferase E	0.00217292	0.0004076
+UniRef50_A0A013I2H1	1.49113e-05	1.15795e-05
+Bacterial regulatory helix turn helix , lysR family protein	0.000127965	0.00110482
+UniRef50_Q1MK98	3.4316e-05	2.46129e-05
+Excinuclease ABC subunit C	3.42779e-05	2.57346e-05
+UniRef50_F7ZCB4	1.72617e-05	4.60705e-06
+Peptide methionine sulfoxide reductase, PMSR 	0.000778831	0.000237061
+Na+ H+ antiporter, NhaC family protein	0.00537628	0.00114372
+aldehyde activating protein	2.44238e-05	1.5643e-05
+UniRef50_H8FT83	0.000426908	0.000152951
+hypothetical protein	9.64938e-05	3.4184e-05
+Thioesterase superfamily protein	1.42287e-05	0.000312439
+UniRef50_W9C3F0	1.14517e-05	1.00044e-05
+UniRef50_E1YHR1	4.9102e-06	2.82489e-05
+PREDICTED	3.34813e-06	7.5283e-06
+90S preribosome component RRP12	1.64707e-07	2.19941e-06
+histidinol dehydrogenase	3.43165e-06	2.98537e-06
+UniRef50_A6LU03	0.000223677	0.000774396
+ATP dependent RNA helicase	5.31217e-06	2.9357e-05
+Glycerol 3 phosphate regulon repressor	0.000166608	0.000150646
+UniRef50_T5BIS1	1.28477e-06	5.35755e-06
+UniRef50_A6LZX4	0.000226637	0.000587815
+Regulatory protein	2.99741e-06	1.55166e-05
+Phosphoribosyl ATP pyrophosphatase	0.000271864	1.62206e-05
+Phospho N acetylmuramoyl pentapeptide transferase	6.11916e-06	8.46079e-06
+UniRef50_Z9UWI7	6.64438e-05	0.000154215
+hypothetical protein	9.67192e-06	1.86587e-05
+ABC transporter related	0.000319649	0.000943351
+ABC transport protein, inner membrane component 	0.000112668	2.52296e-05
+Malonyl CoA acyl carrier protein transacylase	0.0209152	0.00400649
+UniRef50_J3ML95	7.96996e-06	4.05897e-05
+NH dependent NAD(+) synthetase	2.89388e-05	4.4901e-06
+Pseudouridine synthase	0.000460266	0.00082374
+Ribonucleotide reductase, barrel domain containing protein	6.5534e-07	2.04304e-05
+Oligoendopeptidase F	0.000547633	0.000882597
+Marine sediment metagenome DNA, contig	1.23027e-05	5.39032e-05
+Pentapeptide repeat protein	0.000128946	0.000180099
+UniRef50_I9K9U7	6.61544e-05	3.47643e-05
+Shikimate kinase	2.51855e-05	0.00250505
+Predicted permease	0.00347394	0.00138403
+GHMP kinase, N terminal domain containing protein	0.000142404	0.00398491
+hypothetical protein	0.000529198	0.000205653
+UniRef50_A0A058Z9B5	0.000112801	2.41932e-05
+UniRef50_A3WB27	0.000340161	0.000159281
+amino acid lyase	2.07891e-05	3.39701e-05
+Bis tetraphosphatase, symmetrical	2.05333e-05	0.000448426
+UniRef50_S3ZBV7	4.91551e-05	1.75545e-06
+Dihydroorotate dehydrogenase 	0.000259522	0.00048216
+AraC type transcriptional regulator domain protein	0.000336361	0.000898383
+hypothetical protein	8.67692e-06	3.90107e-06
+UniRef50_A7X1H5	0.0164353	0.00217309
+UniRef50_D6UEI8	0.00219768	0.00107566
+UniRef50_M0VCY1	7.99838e-06	0.000132333
+Predicted protein	6.40679e-05	6.1621e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0110151	0.00288302
+resolvase	5.36301e-05	7.08755e-05
+Metallophosphoesterase	0.0007583	0.0304951
+dTDP 4 dehydrorhamnose 3,5 epimerase	1.35328e-05	1.33156e-05
+hypothetical protein	6.35913e-06	1.44028e-05
+aldehyde reductase	1.39463e-05	9.2873e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0150746	0.00111448
+Outer membrane protein S1	0.00452505	0.000606734
+UniRef50_B7H4N1	0.000198319	0.0038786
+hypothetical protein	6.23407e-06	3.36041e-05
+50S ribosomal protein L5	0.000180481	0.000130841
+UniRef50_S9R870	4.21564e-05	3.67398e-06
+UniRef50_D6SE47	0.0188967	0.00215337
+2 methylacyl CoA dehydrogenase, mitochondrial	0.000177459	0.00301761
+hypothetical protein	2.54913e-06	2.77423e-06
+UniRef50_A9M410	0.000952496	0.00530377
+Diacylglycerol O acyltransferase	8.54184e-05	0.00307472
+UniRef50_F0KF01	0.00018094	0.00266407
+peptidase S11	4.78199e-06	1.22236e-05
+pseudouridine synthase	2.95875e-06	4.40266e-06
+3,4 dihydroxy 2 butanone 4 phosphate synthase	3.78197e-05	3.2843e-06
+Mating pair stabilization protein TraN	1.79807e-06	1.78527e-06
+Lin0635 protein	3.83138e-05	0.00132491
+D ala D ala transporter subunit	2.92268e-05	3.99549e-05
+ABC transporter	2.79342e-05	1.55738e-05
+Mobile element protein	4.10132e-05	9.38946e-06
+Proteophosphoglycan 5	3.7126e-05	6.25306e-05
+Cytochrome c oxidase, subunit I	0.000320428	0.0320896
+Sigma 54 factor, interaction domain containing protein	0.000251116	0.00085477
+D galactonate transporter	0.000745767	0.000110709
+Marine sediment metagenome DNA, contig	2.885e-06	1.06287e-05
+UniRef50_M2TDC8	2.11913e-05	2.16477e-05
+UniRef50_K6MT38	0.00127412	0.0102194
+Glutathione S transferase	9.8906e-05	1.03319e-05
+Phage shock protein A	0.000311619	0.00146491
+UniRef50_M9RNM4	0.00302082	2.18072e-05
+tRNA pseudouridine synthase A	0.00267582	0.00010676
+dihydroxy acid dehydratase, partial	6.52269e-06	2.41001e-05
+Siroheme synthase	0.0052015	0.00254165
+DeoC LacD aldolase family protein	0.0112523	0.00130154
+hypothetical protein	6.67202e-06	5.9451e-06
+Predicted protein 	1.47494e-05	4.22759e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0194906	0.00250397
+hypothetical protein	3.58551e-05	2.81649e-05
+Nitrate nitrite antiporter	9.57429e-06	2.81328e-06
+UniRef50_Q3JWL2	6.89744e-05	7.06001e-05
+UniRef50_N7V1R0	1.94861e-05	1.4963e-05
+UniRef50_A4VMQ2	4.32685e-05	0.00010698
+BRO family, N terminal domain protein. Phage related DNA binding protein	1.78559e-05	9.35491e-06
+UniRef50_G8AH05	2.99544e-05	3.47268e-05
+GTP pyrophosphokinase	0.0190859	0.00201448
+tRNA delta isopentenylpyrophosphate transferase	5.54853e-06	8.21272e-06
+60 kDa heat shock protein, mitochondrial	2.20299e-05	2.40313e-05
+Sensor protein evgS	0.00280396	0.000582246
+ATP binding permease fusion ABC transporter	0.000264627	0.000174982
+YALI0E18766p	7.40699e-06	6.61499e-06
+UniRef50_A6V6R4	0.000186516	0.000123841
+Glyceraldehyde 3 phosphate dehydrogenase	3.8967e-05	1.25518e-05
+Serine aspartate repeat containing protein C	0.018011	0.00226251
+PREDICTED	0.000132773	4.36994e-05
+LigA	0.000630531	9.34851e-05
+Amino acid ABC transporter, periplasmic amino acid binding protein	0.000820873	0.0282443
+UniRef50_V8BEZ6	5.98888e-05	3.50091e-05
+Glc operon transcriptional activator	0.00385618	0.00125343
+Imelysin 	1.54579e-05	5.63659e-05
+UniRef50_M1N514	0.000240148	0.000315962
+NADH quinone oxidoreductase subunit C	0.0142797	0.00235294
+multidrug ABC transporter ATPase	9.63786e-06	1.37289e-05
+6 phospho beta galactosidase	0.00293013	0.000331016
+Putative bacteriophage holin protein	7.76913e-05	2.29825e-05
+Zinc import ATP binding protein ZnuC	1.62302e-05	1.71315e-05
+ATPase AAA	2.21204e-05	1.90129e-05
+Ketol acid reductoisomerase	3.89182e-06	0.00172698
+UniRef50_D3E138	0.00285183	0.000986895
+Bifunctional protein FolD	2.36946e-05	0.00181284
+UniRef50_U6MKZ6	7.19432e-06	2.69833e-07
+UniRef50_I0C1R4	0.00142132	0.000377247
+DNA directed RNA polymerase subunit beta	0.0165622	0.00738993
+Fumarate hydratase class I, anaerobic	0.00260542	0.00210129
+5 nucleotidase SurE	0.000266397	0.00399079
+PREDICTED	0.000330329	0.000120346
+Pirin family protein	2.51035e-05	3.25936e-06
+UniRef50_B0VC75	0.000757661	0.00523385
+ABC 2 transporter family protein	0.0105438	0.00125474
+ATP synthase gamma chain	0.000227398	0.00126201
+UniRef50_R7YLT4	0.000206823	1.54793e-05
+hypothetical protein	1.03387e-05	3.19614e-05
+UniRef50_P0AA72	0.00209617	0.000199717
+UniRef50_A4EAZ9	4.08544e-05	5.45128e-06
+hypothetical protein	0.000299235	9.89162e-05
+hypothetical protein	7.80505e-05	8.15493e-05
+hypothetical protein	1.02823e-05	1.13732e-05
+UniRef50_K0LJV9	0.0026913	0.00138034
+Shikimate kinase	3.08992e-05	2.00435e-05
+hypothetical protein	1.78724e-05	2.52573e-05
+H+transporting two sector ATPase C subunit	0.00169506	0.000528146
+hypothetical protein	2.39289e-06	4.87399e-05
+UniRef50_H9K6K8	2.8552e-05	3.14967e-05
+UniRef50_J0LGW4	0.000245546	3.75396e-05
+Ribonucleoside triphosphate reductase, adenosylcobalamin dependent	0.000219443	0.000500412
+Plasmid partitioning protein RepAa1	2.81874e-05	1.1947e-05
+PREDICTED	9.60393e-05	3.54809e-05
+Uracil DNA glycosylase	0.000632414	0.00337359
+UniRef50_A5IW30	0.0161388	0.00342884
+PREDICTED	2.86847e-05	4.13614e-05
+EAL domain protein	5.61512e-06	2.95788e-05
+GTPase ObgE, partial	3.28902e-05	0.000228176
+L asparagine permease	5.22096e-06	6.91768e-06
+peptide ABC transporter permease	6.10645e-05	8.4711e-05
+Ribonuclease 3	2.24855e-05	3.51226e-05
+L carnitine dehydratase bile acid inducible protein F	0.00275706	0.00403256
+UniRef50_P33919	0.00340856	0.000495206
+Dehydrogenase	0.000174398	1.44351e-05
+AsnC family transcriptional regulator	0.000169288	5.92014e-05
+UniRef50_M9SF47	0.000224366	0.000199522
+hypothetical protein	5.1951e-05	3.64189e-05
+Beta lactamase domain protein	3.18957e-06	9.50015e-05
+Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.000306361	0.000461042
+HTH type transcriptional activator AmpR	0.00799249	0.000692779
+2 isopropylmalate synthase	0.00272891	0.000229043
+UniRef50_O07599	0.000273432	0.00081835
+DNA binding protein	0.0149265	0.00154249
+UniRef50_C9CRT7	0.000468557	0.000128164
+UniRef50_P31063	0.000245656	0.000217924
+Secretion protein HlyD family protein	0.00116566	0.000505863
+Cell division protein FtsA	0.00300525	0.000388338
+UniRef50_B9JPQ6	1.73972e-05	0.000234196
+flagellar P ring protein FlgI	1.07095e-05	6.25721e-06
+UniRef50_F3X2S2	4.09899e-06	4.66436e-05
+UniRef50_R1D4S7	0.000696413	0.00025583
+UniRef50_A6M1M3	0.000159161	0.000552766
+UniRef50_Q6AA07	7.71933e-05	0.00189902
+amino acid carrier protein, partial	2.74177e-06	3.33036e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0126233	0.00354522
+GTP binding protein TypA BipA	0.000276145	0.000468535
+UniRef50_S8FC16	8.04331e-06	4.52725e-07
+UniRef50_Q8X8V7	0.00193322	0.000349546
+Chromosome partition protein Smc	0.00998454	0.00206822
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0253659	0.0014357
+Superoxide dismutase [Mn]	8.01352e-06	0.0219088
+3 carboxy cis,cis muconate cycloisomerase	0.000103766	0.00382779
+TAXI family TRAP transporter periplasmatic solute binding protein	3.42077e-05	3.33523e-05
+Transcriptional regulator, LuxR family	0.00112773	0.000229629
+Molybdopterin guanine dinucleotide biosynthesis protein B	0.018302	0.00165416
+hypothetical protein	3.41711e-05	1.74888e-05
+FtsK SpoIIIE family protein	0.000171978	0.0012452
+UniRef50_A5UMP2	0.000872009	0.000193502
+UniRef50_S1IPQ9	0.00289013	0.0007071
+Hydrolase YbeM	0.00239042	0.000439637
+Prophage terminase large subunit	1.01521e-05	4.54095e-05
+Putative uroporphyrinogen III C methyltransferase	0.00297859	0.000854456
+UniRef50_B9KSC1	0.00127163	0.000288697
+Polysaccharide biosynthesis protein CapD	0.00943658	0.00174648
+Capsular polysaccharide synthesis	3.17448e-05	1.10817e-05
+thymidylate synthase	9.91438e-05	0.000436768
+Potassium transporting ATPase A chain	1.34494e-05	0.00202951
+Cobalamin biosynthesis protein CobIJ	1.95192e-05	5.35244e-06
+HTH type transcriptional regulator BetI	0.00199797	0.000316364
+UniRef50_R6XE72	0.000162584	0.00121145
+hypothetical protein	2.80221e-05	1.06222e-05
+beta ketoadipyl CoA thiolase, partial	5.06044e-06	0.000133503
+Transcriptional antiterminator	0.000776432	0.0019584
+UniRef50_J9NVM5	0.000283171	4.33806e-05
+Phosphoserine aminotransferase, chloroplastic	0.00114406	0.00115636
+Ribosomal large subunit pseudouridine synthase A	0.00363264	0.000149285
+UniRef50_H6NE34	0.00011241	8.73342e-06
+UniRef50_I7ENJ2	0.00113272	0.000475052
+hypothetical protein	1.60037e-05	1.90733e-05
+hypothetical protein	5.05476e-06	2.00238e-05
+acyl CoA dehydrogenase	3.77448e-06	2.01388e-05
+Membrane protein	0.00579065	0.000630968
+Bacteriophage Mu I protein GP32	9.86946e-05	0.00191106
+Glycogen debranching enzyme GlgX Isoamylase	0.000187163	0.0030644
+COG0031	0.00195852	0.000470092
+Glu tRNA amidotransferase	0.000519419	0.00347849
+Aminomethyltransferase	0.00814981	0.0026453
+Inner membrane transport protein RhmT	0.00390339	0.000471278
+DeoR family transcriptional regulator	0.000176662	0.000188896
+UniRef50_S7VF17	2.01382e-05	1.39359e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase 1	1.5155e-05	4.24396e-05
+UniRef50_Q9RXY2	0.000136071	0.0340073
+Beta galactosidase Pbg	0.000426107	0.00107485
+Pantothenate kinase	0.00354931	0.00022919
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	8.32214e-06	1.39017e-06
+UniRef50_P27840	0.00278881	0.000255797
+UPF0478 protein SH1183	0.0115174	0.00517103
+UniRef50_F1PYJ5	8.03393e-07	5.17872e-05
+PREDICTED	5.87689e-05	1.54569e-05
+HTH type transcriptional regulator SarV	0.0149978	0.00191477
+Biotin synthase	4.24572e-06	2.89806e-05
+UniRef50_W8TJK1	5.2488e-06	1.02905e-05
+Ribosome binding factor A	0.00264261	0.000271253
+CagZ protein	0.000744264	0.00174693
+Transcription termination factor Rho	0.000176511	0.00215883
+Hemolysin type calcium binding region	2.27632e-06	4.28677e-07
+Transcriptional repressor NrdR	0.00513619	0.000201311
+UniRef50_D7FSA3	0.000946814	0.000167197
+hypothetical protein	2.45344e-05	1.64113e-06
+D tyrosyl tRNA deacylase	0.00294616	0.00378894
+UniRef50_V9X558	0.00243059	0.000181888
+GroES like protein	0.00290498	0.000600959
+Dihydroorotate dehydrogenase 	0.00216875	9.01292e-06
+hypothetical protein	2.04681e-05	3.51227e-06
+D galactose binding periplasmic protein	0.000211353	8.5428e-05
+hypothetical protein, partial	1.48865e-05	2.99229e-05
+UniRef50_E3A0J6	0.00188719	0.000194481
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	9.2355e-06	2.18447e-05
+Sodium	0.000603745	0.00482589
+UniRef50_Q0FNM1	4.82562e-06	5.50685e-06
+UniRef50_G8AZY0	5.86799e-05	1.20318e-05
+hypothetical protein	7.46833e-06	7.49459e-06
+UniRef50_Q094V3	3.69984e-05	2.66442e-05
+hypothetical protein	9.92736e-05	1.67818e-05
+Glutathione regulated potassium efflux system protein KefC	0.0012462	0.000106458
+Bifunctional uridylyltransferase uridylyl removing enzyme	0.00530771	0.00143709
+Glyceraldehyde 3 phosphate dehydrogenase	0.0123017	0.0022983
+hypothetical protein, partial	2.70923e-05	1.72349e-05
+Bacteriophage integrase	0.0129913	0.00218105
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.00509879	0.000570623
+UniRef50_W5W9B3	8.04989e-05	9.7728e-06
+Lipopolysaccharide export system protein LptA	0.00321818	0.000491131
+Biopolymer transport protein	0.00272023	0.00109543
+UniRef50_A3PHB1	0.025219	0.000515389
+Glutathione reductase	0.00220288	0.000138905
+UPF0750 membrane protein YxkD	0.0109882	0.00271101
+UniRef50_J2X5J3	7.7179e-05	3.0205e-05
+Thymidine kinase	1.58772e-05	0.0101598
+Pyridoxal kinase	0.000669763	0.00383078
+LexA repressor	0.00242059	0.000890599
+Gp57	6.55376e-06	5.6962e-06
+D erythrose 4 phosphate dehydrogenase	0.000255894	7.9123e-05
+PREDICTED	0.000106808	2.70538e-05
+Membrane protein	8.24514e-05	3.25653e-05
+peptide ABC transporter permease	3.2417e-05	1.422e-05
+hypothetical protein	1.35764e-05	5.90652e-05
+UniRef50_F8I5D2	3.33179e-06	7.34071e-06
+Accessory Sec system protein translocase subunit SecY2	0.0104695	0.00129803
+AraC family transcriptional regulator	0.000171126	0.00169639
+Potassium transporting ATPase A chain	2.85467e-05	0.00259982
+UniRef50_S8VH52	2.88211e-05	2.31021e-05
+Polysaccharide export protein	0.00325169	0.000655575
+Leucyl phenylalanyl tRNA  protein transferase	2.70308e-05	4.51615e-05
+Orotidine 5 phosphate decarboxylase	2.27926e-05	3.82201e-05
+Catabolic 3 dehydroquinase	2.96679e-05	8.44653e-06
+UniRef50_A4WTH1	0.000854023	9.57751e-05
+Carboxylesterase	1.03596e-05	1.16361e-05
+ribokinase	5.63007e-06	6.59451e-06
+UniRef50_O27507	0.00198156	0.0003349
+hypothetical protein	8.86913e-06	6.23421e-05
+Non canonical purine NTP pyrophosphatase	7.95122e-06	0.000507091
+Bacterioferritin	6.41256e-05	7.79033e-05
+NAD dependent malic enzyme 1	1.15501e-05	2.96708e-06
+PTS system	9.60798e-06	1.07859e-05
+Marine sediment metagenome DNA, contig	1.21318e-05	8.83379e-05
+Citrate synthase	1.20211e-05	0.000802259
+UniRef50_P37050	0.00152359	0.000803986
+PREDICTED	0.000123128	7.60932e-06
+UniRef50_A9EUD2	1.8988e-06	4.29436e-05
+DnaC	0.00765907	0.000704194
+UniRef50_B9KNG3	4.55227e-05	0.000186408
+hypothetical protein	9.60766e-06	1.60787e-05
+Flagellar biosynthesis protein FlhA	0.00339353	0.000395244
+HAD superfamily hydrolase, partial	3.40117e-05	6.0454e-05
+tRNA dihydrouridine synthase	7.02459e-06	3.90614e-06
+UniRef50_O59428	0.000100842	0.000202252
+Spore coat polysaccharide biosynthesis protein spsC	9.92769e-05	0.000419799
+Hydroxylamine reductase	0.000780087	0.00194059
+integrase, partial	0.0002014	6.99259e-05
+UniRef50_A6LTH9	0.000253044	0.000671153
+Carbamoyl phosphate synthase large chain	0.00352947	0.0233684
+Beta ketoacyl acyl carrier protein synthase I	0.000592014	0.000809887
+G5 domain protein 	0.000314657	9.03102e-05
+UniRef50_X8A0M6	0.00119269	0.000330789
+Metal dependent phosphohydrolase	0.000253044	0.00034135
+UniRef50_Q169C1	0.000262332	1.14238e-05
+UniRef50_H9KBT1	6.64958e-06	1.08856e-05
+Dipeptide transport system permease protein	3.1157e-05	2.10921e-05
+hypothetical protein	9.59881e-06	5.94971e-06
+Radical SAM domain containing protein	0.000145538	0.000436829
+Carbohydrate ABC transporter substrate binding protein, CUT1 family	1.29659e-05	3.8575e-06
+hypothetical protein	4.22585e-06	5.54194e-06
+UniRef50_P75995	0.00107555	0.000171248
+Type 1V conjugative transfer system mating pair stabilization family protein	2.15628e-05	1.05689e-05
+Predicted aminoacid permease	0.000224095	0.000285169
+nucleoside triphosphate diphosphatase, partial	8.67182e-05	4.54022e-05
+CRISPR associated helicase Cas3	7.86619e-05	1.2864e-05
+Leucyl phenylalanyl tRNA  protein transferase	8.0721e-06	8.76478e-06
+4 alpha glucanotransferase, partial	7.0406e-06	0.000175647
+UniRef50_D9RCZ8	0.0164514	0.000369485
+Anthranilate synthase, phenazine specific	0.000566419	0.000105517
+nucleoside triphosphate diphosphatase	8.15398e-05	8.87819e-06
+Diguanylate cyclase	4.25663e-06	0.000267505
+DNA gyrase, B subunit, C terminal domain protein	9.01996e-05	0.00123531
+transporter	2.73797e-05	1.29716e-06
+D 2 hydroxyglutarate dehydrogenase	0.000156062	0.000533604
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.33313e-05	0.00533823
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.00019201	0.0225142
+Membrane protein	0.0104925	0.00308709
+DNA integrity scanning protein DisA	0.000183906	0.00275937
+UPF0062 protein slr0519	1.84532e-05	3.59776e-05
+hypothetical protein	1.6354e-05	1.21434e-05
+Polyribonucleotide nucleotidyltransferase	2.2294e-06	4.55052e-06
+Sau1hsdS1	0.00927973	0.00109859
+sugar ABC transporter ATP binding protein	0.000106745	3.81645e-05
+ABC transporter 	0.00941738	0.00285754
+OstA family protein	0.00183371	0.000794556
+Sugar ABC transporter substrate binding protein	0.000257579	0.000598873
+Phosphoglycerate kinase	1.27318e-05	1.03454e-05
+Adenine deaminase	0.000816141	0.000259575
+PAS PAC sensor hybrid histidine kinase	0.000342599	0.000338701
+HTH type transcriptional regulator AbgR	0.0026006	0.000617995
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase 	0.000153186	5.69124e-05
+hypothetical protein	4.6226e-06	9.8348e-06
+Probable cytochrome c peroxidase	0.00156073	0.0010903
+3 phosphoshikimate 1 carboxyvinyltransferase	3.79539e-06	3.05695e-06
+hypothetical protein SMAC_10438, partial	6.81071e-05	8.51629e-05
+hypothetical protein, partial	3.80894e-06	6.88358e-06
+major facilitator transporter	1.33715e-05	8.39235e-05
+hypothetical protein	5.06159e-05	5.51497e-05
+Cytochrome c oxidase subunit 3	6.7189e-05	1.38503e-05
+UniRef50_UPI00026533A3	5.02642e-06	3.69789e-05
+Fosmidomycin resistance protein, putative	9.5701e-05	0.00863027
+PREDICTED	0.000778121	0.000147378
+UniRef50_N9IA23	9.70962e-05	1.38043e-05
+Phosphoribosylaminoimidazole succinocarboxamide synthase	2.65147e-05	0.022732
+Thioredoxin domain protein	0.00120102	0.000456547
+UniRef50_Q05627	0.000130983	5.78138e-05
+N utilization substance protein B homolog	0.00540575	0.00389031
+Acetyltransferase, GNAT family	0.00448058	0.00191984
+hypothetical protein	2.334e-06	2.02822e-06
+hypothetical protein	9.47065e-06	1.61887e-05
+UniRef50_Q3J3X7	0.011803	0.00109421
+hypothetical protein	3.10528e-05	1.63948e-05
+Probable DEAD box ATP dependent RNA helicase SERP1688	0.0184065	0.00267699
+Chromosome partitioning protein ParA	8.30077e-06	3.18492e-05
+UniRef50_A0A024HNH0	0.000436471	4.99082e-05
+UniRef50_Q3J3X0	0.00831981	0.00217012
+superfamily II RNA helicase, partial	1.04101e-05	1.74907e-05
+large mechanosensitive ion channel protein MscL	0.000288322	3.94134e-05
+CSLREA domain protein	0.000183906	0.000758144
+hypothetical protein, partial	2.74259e-06	1.39269e-05
+UniRef50_H9KRI1	0.000162876	4.39764e-05
+UniRef50_Q2CG67	2.98812e-05	0.000129997
+Predicted protein	1.70014e-05	1.08375e-05
+UniRef50_H9KH51	2.66428e-06	1.99296e-06
+UniRef50_J9NXN3	2.05649e-05	9.64522e-06
+hypothetical protein	2.86165e-05	8.42258e-06
+Putative N acetylmannosamine 6 phosphate 2 epimerase	0.00258754	0.00127099
+hypothetical protein	1.48117e-05	1.08101e-05
+FHA domain containing protein	4.96215e-06	4.84283e-06
+hypothetical protein	1.41443e-05	1.11285e-05
+UniRef50_A6UZY8	0.00128518	0.000165594
+hypothetical protein TREMEDRAFT_66895	4.43021e-06	7.65527e-06
+RNA methylase	0.00232546	0.000127354
+Putative thioesterase	2.97491e-06	0.000759313
+Bifunctional protein FolD	0.000381634	0.000511469
+Sugar ABC transporter permease	0.000647026	0.00411941
+Pseudouridine synthase	0.000389825	0.00425915
+Elongation factor P	2.58177e-05	0.000145884
+Periplasmic binding protein	0.000639995	0.00015863
+UniRef50_U9TNM9	2.10466e-05	1.08621e-05
+membrane protein, partial	5.24055e-05	5.31419e-06
+Serine hydroxymethyltransferase	0.000295741	0.00338143
+UniRef50_Q65SJ3	9.95706e-05	0.000313746
+DNA mismatch repair protein MutL	0.00049567	0.00165552
+PREDICTED	3.97704e-06	3.03306e-06
+UniRef50_A9WVW5	0.00125365	0.000987532
+hypothetical protein	0.00051309	7.60889e-05
+UniRef50_G0FKS6	7.24495e-06	1.24028e-05
+UniRef50_M9RJC1	4.25427e-05	3.11326e-05
+Hemolysin type calcium binding domain containing protein	1.83472e-05	0.00148211
+Type II secretion system protein E	0.00858731	0.000824349
+UniRef50_Q08WT9	0.000135289	0.000111696
+Cell division protein FtsW	0.000238317	0.00264581
+Cellobiose PTS, EIIC	0.000574819	0.000459961
+Anaerobic ribonucleoside triphosphate reductase activating protein	0.00827888	0.00235581
+Vegetative cell wall protein gp1  (Fragment)	2.20539e-06	1.83461e-05
+Ornithine carbamoyltransferase	7.71738e-06	0.0037715
+High frequency lysogenization protein HflD homolog	0.00550147	0.000705193
+Bactoprenol glucosyl transferase homolog from prophage CPS 53	0.00315365	0.00033539
+L serine dehydratase, alpha chain	8.32671e-06	5.29612e-06
+ATP dependent zinc metalloprotease FtsH	0.00720337	0.00509594
+Polysaccharide biosynthesis protein	0.000583653	0.00044008
+Trans acting regulatory protein HvrA	0.00644326	0.00850365
+Transcriptional regulator, MarR family	0.000201929	0.0017359
+PREDICTED	4.37635e-06	5.58702e-06
+UniRef50_S6ARI5	7.30642e-05	5.20771e-05
+AzlC family protein	2.42765e-05	7.15033e-06
+Nitrite and sulphite reductase 4Fe 4S region	0.000144235	0.00045981
+hypothetical protein	2.418e-05	1.12417e-05
+AzlC family protein	0.000595227	0.00014007
+Ribosomal RNA small subunit methyltransferase E	0.00608051	0.000523414
+Cytochrome C oxidase assembly protein	0.00185272	0.000272902
+hypothetical protein	3.49718e-07	1.26502e-06
+Peptidase, U32 family	0.00490101	0.00306
+hypothetical protein	3.16241e-06	1.97501e-05
+UniRef50_C5N2R4	0.00366345	0.000462692
+UniRef50_F5SR33	1.104e-05	9.84218e-06
+sugar ABC transporter permease	0.000257451	6.94027e-05
+Outer membrane protein C	0.00190286	0.000271111
+Cobalt precorrin 3B C17 methyltransferase, CbiH	0.00329616	0.000180641
+Methyltransferase	0.00311375	0.00567754
+UniRef50_A9G928	0.000557561	9.50104e-05
+hypothetical protein	1.94952e-06	1.73563e-06
+hypothetical protein	9.06439e-05	4.64602e-05
+MFS transporter, ACS family, glucarate transporter	0.0116691	0.000305876
+Putative translation initiation inhibitor	0.000190826	4.20033e-05
+Dihydrolipoyl dehydrogenase	0.0160758	0.00351346
+Fumarate reductase succinate dehydrogenase flavoprotein domain protein	7.39353e-06	1.48847e-06
+Transcription termination antitermination protein NusG	0.0258048	0.00208542
+Malonate utilization transcriptional regulator	0.00151273	0.00163592
+UPF0716 protein FxsA	0.00641609	0.000816286
+Fructose 1,6 bisphosphatase class 3	0.000318956	0.00276759
+Thioesterase superfamily protein	0.00967726	0.00103283
+Sugar binding domain protein	0.000311805	0.00369964
+UniRef50_I6U0M8	0.00794287	0.00110948
+DegV family protein	0.00816633	0.000129747
+Guanylate kinase	1.04529e-05	1.53385e-05
+ABC transporter 	0.000224366	0.000799187
+D alanine  D alanine ligase	0.00301798	0.000344346
+Beta lactamase domain containing protein	0.00083868	0.000244428
+hypothetical protein, partial	1.51111e-06	1.42075e-06
+UniRef50_Q3JQ05	3.99421e-05	7.37703e-05
+Transcriptional regulator, TetR family	0.000206472	0.00117384
+UniRef50_N8Z5H6	1.09444e-05	1.91166e-05
+Glyoxylate hydroxypyruvate reductase A	0.00202543	0.000440233
+PREDICTED	3.61517e-05	1.1834e-05
+Cellulose biosynthesis protein BcsE	0.00206269	0.000437969
+Trans aconitate 2 methyltransferase	0.00218717	0.000250797
+UniRef50_U6MWK3	7.08937e-06	1.41477e-06
+PE PGRS family protein	4.17507e-05	0.00032442
+PREDICTED	1.91247e-05	3.37927e-06
+hypothetical protein, partial	2.59432e-06	7.85661e-06
+Sulfate adenylyltransferase	0.000240749	0.0123941
+UniRef50_G7M254	0.000221414	0.000379813
+UniRef50_P76403	0.0029664	0.00578158
+Zn ribbon protein, possibly nucleic acid binding	0.000899834	0.00024406
+Sensor protein LytS	2.32777e-05	0.000277243
+Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis	0.00199823	0.000360574
+MULTISPECIES	8.93795e-05	1.70089e-05
+Methyl accepting chemotaxis protein	0.000537957	0.000347628
+oxidoreductase	5.9182e-05	1.3231e-05
+Delta aminolevulinic acid dehydratase	5.34464e-05	0.000166531
+Asparagine synthetase [glutamine hydrolyzing] 1	0.003625	0.00287154
+hypothetical protein	6.07758e-06	1.46142e-05
+UniRef50_R7MP32	0.0047246	0.000531823
+Transcriptional regulator, LysR family	0.00132736	0.000100318
+UniRef50_I0I0C0	6.09315e-05	7.17565e-06
+chemotaxis protein CheY	0.00021025	1.20359e-05
+Periplasmic binding protein	3.85573e-05	0.00275992
+LysR family transcriptional regulator	0.000484254	0.000108962
+Methyl accepting chemotaxis sensory transducer	0.00177167	0.000589089
+PREDICTED	6.00307e-06	1.62242e-05
+hypothetical protein	5.73979e-06	2.93965e-06
+Glycine  tRNA ligase beta subunit	4.8401e-05	0.00214395
+UniRef50_A3DFY9	4.18063e-05	2.4146e-05
+Cytochrome d ubiquinol oxidase, subunit II	0.000167715	0.00328245
+UPF0272 protein Msm_0935	0.00177281	0.000479326
+UniRef50_D8JEL1	0.000286019	0.00331455
+UniRef50_L9MZ90	1.04668e-05	0.00125179
+branched chain amino acid transporter AzlC	4.06327e-05	8.54642e-06
+Exodeoxyribonuclease, XthA	0.00166473	0.000252205
+ATP dependent DNA helicase RecG	0.0158602	0.00417962
+sodium	1.38263e-05	0.000732703
+UniRef50_D7BD64	1.17222e-05	9.96354e-05
+Undecaprenyl diphosphatase	0.00015223	7.11169e-06
+hypothetical protein	4.15228e-06	2.90033e-05
+PREDICTED	3.8292e-06	3.16594e-06
+Pyrroline 5 carboxylate reductase	0.00265401	0.000500071
+Thymidylate kinase	1.00081e-05	0.000150142
+UniRef50_R0VLG7	4.94101e-05	0.000329374
+Adenylosuccinate synthetase	1.51643e-05	6.01494e-06
+hypothetical protein	7.2393e-06	2.96263e-06
+BolA family protein	4.95367e-05	0.000198566
+Pyridine nucleotide disulfide oxidoreductase family protein	0.000141244	0.000351849
+Polyhydroxyalkanoate synthesis repressor	0.0166565	0.000405057
+MULTISPECIES	4.07163e-06	8.29293e-06
+Replication initiator A protein	0.000681996	8.26963e-06
+Glutathione S transferase domain	0.000888159	0.00320511
+UniRef50_Q1YVL9	0.000103949	0.000142176
+Probable protease SohB	0.00395534	0.000568009
+Carbohydrate kinase PfkB family	0.000932623	0.000160617
+Phosphate ABC transporter membrane protein 2, PhoT family 	0.000200327	0.000940159
+hypothetical protein	2.19417e-05	9.22232e-06
+UniRef50_A5IU36	0.00851602	0.000611476
+UniRef50_M4XIN2	0.000198688	5.81132e-05
+Transcriptional regulator, XRE family	0.000365814	0.00133814
+Transcription termination factor Rho	0.000383837	0.000460981
+Cobalamin  biosynthesis CbiM protein	0.0010441	0.000311634
+DNA polymerase III subunit epsilon	0.00426231	0.000377247
+ABC transporter ATP binding protein	4.43655e-05	9.76749e-06
+Sensor protein	0.000154923	0.0044859
+amino acid ABC transporter substrate binding protein	6.69375e-06	1.17108e-05
+hypothetical protein	3.17986e-05	7.39197e-05
+PREDICTED	2.308e-05	1.13786e-05
+hypothetical protein	4.21357e-05	5.63597e-06
+Appr 1 p processing domain protein	1.29263e-05	7.91411e-05
+Riboflavin biosynthesis protein RibD	0.00257213	0.00371578
+Probable malate	3.97846e-06	7.32514e-06
+UvrABC system protein B	0.000218243	0.00114176
+Uroporphyrinogen decarboxylase	9.50828e-06	5.88331e-06
+LigA protein	2.88296e-05	8.13269e-05
+Gluconeogenesis factor	0.021739	0.00339532
+Short chain dehydrogenase	0.00368986	0.00128795
+UniRef50_I1B7Q6	0.000155092	0.000174679
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	1.47401e-05	5.3023e-06
+Glycosyltransferase	0.000386663	0.0290936
+UniRef50_K2EHC8	2.69132e-05	1.84113e-05
+UniRef50_W4LZ78	9.04896e-06	1.06975e-05
+ABC transporter related protein	0.000197887	0.0203523
+UniRef50_K2EHC4	6.85626e-06	4.50219e-05
+hypothetical protein	1.89278e-05	4.60268e-06
+hypothetical protein	2.21439e-05	0.0001543
+hypothetical protein	4.09199e-06	5.45911e-06
+Protein GrpE	0.000354262	0.0154681
+16S rRNA  methyltransferase	0.00217574	0.00172546
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	5.50301e-05	0.000139634
+UniRef50_M1VMH5	0.000436201	4.06326e-05
+Cytidylate kinase	7.51445e-06	1.09014e-05
+MULTISPECIES	8.68901e-06	1.03784e-05
+Purine pyrimidine phosphoribosyltransferase related protein	0.000188367	0.00412051
+Aspartate aminotransferase	0.00257963	0.000952339
+MULTISPECIES	9.07104e-05	6.44817e-05
+integral membrane protein	0.000137237	7.78408e-06
+Choline ABC transporter ATP binding protein	0.0190205	0.00139349
+Glutathione peroxidase	0.00126565	0.000185506
+UniRef50_U1S9N3	2.67607e-06	7.75912e-07
+UniRef50_U3SQV1	0.00541074	0.00159903
+200 kDa antigen p200, putative	1.26203e-05	0.000112314
+molybdenum cofactor biosynthesis protein MoaE	5.39495e-05	2.07255e-05
+hypothetical protein	8.87435e-05	7.94597e-06
+UniRef50_A6LWT3	0.000284186	0.0012457
+hypothetical protein	6.19195e-06	1.908e-05
+Na translocating NADH quinone reductase subunit D	0.00132103	0.00298248
+UvrABC system A domain protein	1.13412e-05	1.30614e-05
+Peptide deformylase	2.50656e-05	2.68281e-05
+ATP dependent RNA helicase RhlB	0.000636303	0.000279967
+hypothetical protein	1.81311e-05	1.86408e-05
+transcriptional regulator	6.45957e-06	1.87336e-05
+NADH quinone oxidoreductase subunit A	1.42498e-05	0.000157712
+Phenol hydroxylase	3.41834e-06	2.67599e-06
+Shikimate kinase	1.57185e-05	9.30632e-06
+Glycosyl transferases group 1 family protein	0.000501127	0.0036706
+Serine aspartate repeat containing protein D	3.14433e-05	2.76261e-05
+adenosylcobinamide kinase	9.27867e-05	8.85382e-06
+Seed specific protein Bn15D17A	0.000141622	2.4776e-05
+Crispr associated helicase Cas3	7.06635e-05	5.04632e-06
+DNA invertase	0.000286171	3.62093e-05
+Inner membrane translocator	0.00884524	0.00139671
+UniRef50_D2ZUL4	0.00116051	1.98504e-05
+Poly beta 1,6 N acetyl D glucosamine export protein	0.00234739	0.000405744
+TetR family transcriptional regulator	8.813e-05	1.00656e-05
+UniRef50_B1TBD8	0.000155579	0.000155118
+UniRef50_T0PPT5	3.13658e-05	1.42614e-05
+Proline dehydrogenase transcriptional activator	8.05131e-05	9.28484e-05
+peptidase	3.32458e-05	1.86368e-05
+DNA polymerase III subunit beta	0.00380904	0.00120835
+TonB dependent outer membrane receptor	0.000407443	0.00018839
+phytoene dehydrogenase	1.43414e-05	2.6266e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	4.27639e-05	1.0628e-05
+Efflux transporter, RND family, MFP subunit	0.000384432	0.000318768
+Chemotaxis protein	0.000215837	0.000808106
+PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III	0.000760368	9.45104e-05
+Phosphopantetheine adenylyltransferase	1.09498e-05	0.00312752
+imidazoleglycerol phosphate dehydratase	7.24704e-05	7.35865e-06
+Biotin synthase	6.22931e-06	2.0919e-05
+Hemolysin, chromosomal	5.71915e-05	2.23245e-05
+LexA repressor	9.50326e-06	7.19505e-06
+Lipoprotein	0.000395555	0.00789729
+UniRef50_P77360	0.00157858	0.000107785
+UniRef50_P40876	0.000844414	0.000690066
+Ribonuclease 3	1.02135e-05	8.69838e-06
+UniRef50_X3WN19	4.86723e-05	5.4572e-05
+UniRef50_D4HD90	0.000303563	0.00351336
+Binding protein dependent transport systems inner membrane component	0.000173479	0.000699825
+Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein	0.00684313	0.001388
+UniRef50_H8H0A6	0.000603253	0.0099769
+Bifunctional protein GlmU	3.31963e-06	0.00126713
+Blue light  and temperature regulated antirepressor YcgF	0.0033366	0.0015654
+ATP synthase subunit delta	0.000258221	0.000259494
+hypothetical protein	6.94663e-05	0.000167969
+Translation initiation factor IF 2	0.00509813	0.00306761
+sugar ABC transporter ATP binding protein	5.79505e-06	3.4325e-06
+Lipoprotein	1.3255e-05	4.67009e-06
+Exodeoxyribonuclease X, putative	0.000732064	0.0051351
+NAD kinase	0.0154609	0.0011324
+hypothetical protein	2.30816e-05	4.42002e-06
+UniRef50_Q58036	0.00336277	0.000448573
+ABC transporter permease	2.42994e-05	2.25831e-05
+Single stranded DNA specific exonuclease RecJ	0.000144422	0.000280462
+NAD transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II)	3.20016e-05	9.17739e-06
+Glutamate synthase	8.30166e-06	9.62286e-06
+Biotin synthase	4.11892e-06	8.51676e-06
+UniRef50_Q8DRX4	0.00560041	0.000353484
+Sulfate transport system permease protein CysW	0.00687536	0.00119008
+Energy converting hydrogenase B subunit O EhbO	0.00256041	8.99648e-05
+Chemotaxis response regulator protein glutamate methylesterase 1	1.77581e-05	2.96317e-06
+Predicted membrane metal binding protein	0.00506436	0.00133717
+YibE F family protein	0.000463671	0.000578111
+Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic	0.000730028	0.00161587
+UniRef50_A4WT17	0.00331048	0.000295345
+UniRef50_Q3IYW4	0.0196531	0.000230809
+multi sensor signal transduction histidine kinase	2.38373e-05	3.27986e-06
+hypothetical protein	6.73559e-05	3.17726e-05
+hypothetical protein, partial	0.000230574	2.75468e-05
+hypothetical protein	2.16559e-06	3.60373e-05
+Endoribonuclease L PSP family protein	0.000138688	2.47261e-05
+2,3 cyclic nucleotide 2 phosphodiesterase	0.000737912	0.000185028
+Cell wall surface anchor protein	1.30056e-05	0.000987891
+Blastn match against entry EMBL	0.000553871	3.87785e-05
+Undecaprenyl phosphate glucose phosphotransferase	0.000395661	0.000533264
+Fumarate hydratase FumA2	0.00402938	0.000103201
+Predicted Zn dependent peptidase	0.000516849	0.000162229
+UniRef50_D5VDZ2	0.000165325	2.03901e-05
+PREDICTED	1.75152e-05	2.88401e-05
+Transcriptional regulator, LysR family protein	0.00129918	0.000327464
+ABC transporter, ATP binding protein	0.00858974	0.000832071
+hypothetical protein	1.11482e-05	3.60727e-05
+UniRef50_G8B0Y4	4.50743e-05	3.50553e-05
+Fumarate reductase, iron sulfur protein	0.00396225	0.00013713
+Drug resistance transporter, EmrB QacA subfamily	0.000368224	0.000630204
+UniRef50_Q58691	0.00284793	0.000476537
+Molybdopterin biosynthesis protein	8.96087e-06	2.28285e-05
+Marine sediment metagenome DNA, contig	3.94695e-05	3.08335e-05
+beta subunit of citrate lyase	6.99897e-05	1.74293e-05
+Superoxide dismutase [Fe]	1.18974e-05	5.91642e-06
+S layer domain protein domain	0.000270929	0.000783769
+hypothetical protein	2.56746e-06	2.90827e-06
+Ribose import ATP binding protein RbsA	0.00015696	6.53541e-05
+Replication initiation protein	0.000101362	2.67402e-05
+UniRef50_A4WXQ6	0.00162193	0.000657839
+Phosphatase	3.40101e-06	2.07646e-05
+GTP pyrophosphokinase	8.83144e-05	0.00198988
+UniRef50_B9KQA0	0.000818906	0.000538177
+hypothetical protein	2.2913e-06	2.29325e-06
+ribosomal protein L17	2.93825e-05	2.38607e-05
+Homoserine dehydrogenase, ThrA	0.00261258	0.000245816
+APC family amino acid polyamine organocation transporter	0.0181594	0.00454935
+Aspartate carbamoyltransferase	0.000477447	0.000172996
+UniRef50_C0DVB0	4.15432e-05	3.60049e-05
+Sarcosine oxidase subunit beta	0.00044765	0.000175776
+2 oxoglutarate dehydrogenase, partial	2.67017e-06	2.83816e-06
+UniRef50_H0YYM6	1.30945e-05	3.39421e-05
+MFS transporter	8.30351e-05	1.45511e-05
+Universal stress family protein	0.000137367	0.00250718
+Nucleotide binding protein	1.43777e-05	3.09139e-05
+Polyphosphate kinase	0.00283903	0.000275719
+UniRef50_A4CBI0	1.74457e-05	0.000440018
+UniRef50_T8XWN9	0.000164266	2.91004e-05
+UniRef50_D8HJF1	9.63561e-06	1.01846e-05
+Membrane associated protein	0.000204382	0.00254866
+hypothetical protein	2.11556e-06	1.24107e-05
+FAD dependent oxidoreductase	0.00484874	0.000766291
+Inner membrane ABC transporter permease protein YdcV	0.00258481	0.000593641
+PE PGRS family protein 	9.61232e-05	0.000164928
+Glyceraldehyde 3 phosphate dehydrogenase	9.02873e-05	0.0194215
+Conserved phage related protein	0.000241542	0.0021067
+Subtilisin like serine protease	4.76473e-05	0.00352231
+hypothetical protein	1.64109e-05	7.91304e-06
+UniRef50_X5Q8M2	0.000283728	0.000129328
+Putative phage associated protein	4.00507e-06	6.73413e-05
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.00176634	0.000112689
+GTP pyrophosphokinase	4.1493e-06	1.22348e-06
+UniRef50_UPI0002B4176A	6.06573e-06	3.7261e-06
+N acetyldiaminopimelate deacetylase	2.6602e-05	0.00073359
+Periplasmic binding family protein	6.3771e-06	0.00133895
+tRNA 2 selenouridine synthase	3.64262e-05	1.07049e-05
+Zn dependent protease like protein	0.00752801	0.0013216
+Truncated replication protein RepA	6.12139e-05	4.61399e-06
+exodeoxyribonuclease III	3.3423e-05	2.59846e-05
+Pirin like protein	5.04543e-06	5.29485e-06
+hypothetical protein	7.94399e-05	1.27553e-05
+UniRef50_R9DJ31	0.00761731	0.00136038
+Spermidine putrescine transport system permease protein PotC	0.000257285	0.000867447
+UniRef50_A4WWW0	0.00178801	0.000375669
+Cyclopropane fatty acyl phospholipid synthase	0.000523759	0.000385942
+PREDICTED	7.93479e-05	1.04158e-05
+Mandelate racemase muconate lactonizing enzyme	0.00509968	0.00038081
+Release factor glutamine methyltransferase	0.0177658	0.00332173
+Integral membrane component of multidrug efflux system	0.000210423	6.52994e-05
+UniRef50_F0VCY6	1.69216e-06	2.65518e-07
+Adenylate kinase	8.33155e-06	1.28213e-05
+Exotoxin	0.00723654	0.00084811
+Cell division protein ZapE	0.00210681	0.000304587
+UDP pyrophosphate phosphatase	0.00013157	6.04772e-06
+tRNA N6 adenosine threonylcarbamoyltransferase	1.10177e-05	4.69222e-06
+hypothetical protein	8.34284e-06	8.55462e-06
+UniRef50_A8AQN0	0.00944672	5.03273e-05
+hypothetical protein	1.80361e-06	1.67924e-05
+Oxidoreductase, short chain dehydrogenase reductase family	0.00601587	0.000527182
+signal peptidase	0.000166608	2.5868e-05
+Probable phospholipid import ATP binding protein MlaF	0.00154529	0.00538749
+UniRef50_S7NJS1	0.00140742	8.13276e-05
+Xaa His dipeptidase	0.000183373	7.79382e-05
+UniRef50_F3NI62	0.000230386	0.00013472
+UniRef50_Q3J2S3	0.00261682	0.000416033
+hypothetical protein	0.000124219	5.70718e-05
+DNA topoisomerase 4 subunit B	2.28596e-06	4.9125e-06
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.77387e-05	3.2229e-05
+Carbohydrate ABC transporter membrane protein 2, CUT1 family	7.37506e-05	0.019139
+PKHD type hydroxylase Patl_2273	1.81589e-05	1.41135e-05
+NMT1 like family protein	1.61784e-05	1.22335e-05
+UniRef50_R7FRD0	0.000168032	1.21425e-05
+Transcriptional accessory protein	0.00281978	0.000238898
+UniRef50_E6Q8B0	0.000495591	0.000193369
+hypothetical protein	7.22831e-06	1.44562e-05
+Phosphoheptose isomerase	0.00114242	0.00478251
+hypothetical protein	6.63186e-06	1.45956e-05
+Stress response regulator gls24 homolog	0.000403754	0.00132893
+aspartyl glutamyl tRNA amidotransferase subunit B	3.19533e-05	1.85338e-05
+Macrolide export ATP binding permease protein MacB 2	1.99506e-06	0.00196507
+Integrase, catalytic region	0.000395125	9.22516e-06
+Lipid A disaccharide synthase	0.000153675	0.000750428
+hypothetical protein	2.01382e-05	2.5148e-05
+UniRef50_W5BGQ3	2.10482e-05	1.75895e-05
+hypothetical protein	8.85044e-06	9.99358e-06
+UniRef50_K2FSL8	9.05187e-05	0.000159478
+hypothetical protein	3.32005e-05	2.46704e-05
+Xanthine phosphoribosyltransferase	3.65688e-05	4.57276e-05
+UniRef50_F9FGU0	1.77716e-06	0.000147906
+Phosphate starvation inducible protein PhoH	0.00960615	0.00079965
+Protein MurJ homolog	0.00209927	0.00250391
+UniRef50_J3P2Z6	0.000117812	4.06644e-05
+Endonuclease 8	0.00371274	0.00101735
+Secretory lipase	1.43551e-05	0.000145985
+DEAD DEAH box helicase	0.000211075	0.0005637
+Phospho N acetylmuramoyl pentapeptide transferase	5.42575e-06	1.11932e-05
+Serine aspartate repeat containing protein E	0.0145592	0.00115983
+hypothetical protein	0.000139898	4.04364e-06
+UniRef50_I7EZZ6	0.00125454	8.51112e-05
+NADH quinone oxidoreductase subunit C	1.22907e-05	5.90151e-06
+Transcriptional regulator, LysR family	0.00763116	0.000390719
+Glutathione S transferase omega like 2	0.000307703	1.0426e-05
+Cytoplasmic aconitate hydratase	9.94692e-06	5.18757e-05
+Lipase	0.000157266	0.000453637
+Acetolactate synthase, small subunit	0.00277814	0.000756756
+Phage Terminase	0.000520766	0.00144982
+NADPH	8.75581e-06	4.17756e-05
+UniRef50_D3QFY8	0.0089856	0.000252915
+DEAD DEAH box helicase domain containing protein	0.00273024	0.000144051
+type III secretion inner membrane protein SctV, partial	6.57515e-06	7.44668e-06
+hypothetical protein	3.18405e-06	6.27259e-06
+UniRef50_F2AE31	0.000357246	5.05018e-06
+Transcriptional regulator, AraC family	0.00353271	0.00101691
+Flavin mononucleotide phosphatase YbjI	0.00114465	0.000218455
+HIT family protein	0.00331509	0.00221262
+Transposase IS66	0.000146013	3.17207e-05
+Dihydrolipoyl dehydrogenase	0.00856788	0.00144938
+hypothetical protein, partial	3.8528e-06	3.60915e-06
+NADH quinone oxidoreductase subunit D 1	0.000217431	0.00163175
+Type F conjugative transfer system protein TraW	2.49584e-05	1.4016e-05
+pseudouridine synthase	1.4665e-05	3.32677e-05
+Hydrogenase transcriptional regulatory protein hupR1	0.00179879	0.0002602
+PTS system, fructose specific IIABC component	0.00426008	0.0017618
+Cell division protein FtsQ	0.00203797	0.000666779
+Outer membrane protein HopZ	0.000178155	0.00192003
+Toprim domain protein	0.0169972	0.00103467
+Peptide chain release factor 3	0.00456005	0.00424966
+Potassium transporting ATPase A chain	2.33761e-06	0.000604621
+Iron ABC transporter	0.000156777	0.00489646
+phospho 2 dehydro 3 deoxyheptonate aldolase, partial	7.46524e-05	4.37627e-05
+mechanosensitive ion channel protein MscL	2.21236e-05	1.03432e-05
+Oxidoreductase	0.000177468	0.00139535
+hypothetical protein	4.45172e-06	2.52266e-05
+Amidohydrolase 3	0.000587941	0.000392896
+Adhesin like protein	0.00259766	0.000347783
+iron transporter FeoB	1.4408e-05	6.64134e-06
+UniRef50_K5W0W9	0.000101092	1.12395e-05
+Integral membrane protein	0.000186529	0.000844564
+hypothetical protein	3.69281e-05	0.000119031
+Nitrite oxidoreductase beta subunit 	3.70406e-05	1.18477e-05
+Methionine aminopeptidase	0.000941556	0.00112757
+UniRef50_M1Q6R0	8.18746e-06	1.21017e-06
+UniRef50_J3JP50	0.000925928	0.000353384
+UniRef50_D2PTZ5	1.76442e-05	4.73442e-06
+Putative cell wall binding repeat containing protein	0.00140229	0.000399044
+hypothetical protein	9.90647e-06	4.2412e-06
+Chromosome undetermined SCAF15041, whole genome shotgun sequence. 	8.80792e-05	1.69249e-05
+Mammalian cell entry related domain protein	0.0110376	0.0016908
+hypothetical protein	1.31174e-05	2.0802e-05
+Permease family protein	0.00216264	0.00031517
+CCA adding enzyme	0.00262397	6.99804e-05
+Hydrogenase expression formation protein hypD	0.000106503	0.00162679
+BioY family protein	0.0142614	0.0027856
+Thymidylate kinase	1.11992e-05	0.00190644
+Adenosine deaminase	0.00293906	0.000503852
+Anti sigma B factor antagonist	0.00290802	0.00240471
+Tyrosine  tRNA ligase 1	9.43311e-05	1.28362e-05
+Serine  tRNA ligase	3.18407e-06	3.14775e-06
+1,4 alpha glucan branching enzyme GlgB	0.00783313	0.000867832
+Chorismate synthase	1.43256e-05	0.000101378
+Choline ethanolamine kinase	0.00388859	0.000227303
+UniRef50_X5ZST2	3.93844e-05	0.000172174
+Peptidoglycan bound protein	1.13681e-05	0.000107136
+hypothetical protein	3.64849e-05	1.24266e-05
+UniRef50_Q8TX14	0.00595781	0.000172457
+Cobalt transport protein CbiM	0.00527798	0.000213425
+GTP cyclohydrolase FolE2	0.00714443	0.00158424
+UniRef50_A1SSZ0	2.00774e-05	2.10743e-05
+PREDICTED	2.06173e-05	0.000468506
+Transposase, IS111A IS1328 IS1533	0.000324035	0.000717316
+UniRef50_B6AM37	1.10122e-06	9.16256e-07
+Malonyl CoA acyl carrier protein transacylase	0.000115125	0.0005435
+UniRef50_B9AH82	0.0014434	0.000424955
+UniRef50_B9AH81	0.000767259	4.4361e-06
+FAD binding molybdopterin dehydrogenase	0.000201104	0.000201627
+hypothetical protein	3.66596e-06	1.41509e-06
+succinylarginine dihydrolase	1.09271e-05	2.27597e-05
+UniRef50_C4RAQ9	7.20291e-05	0.000754526
+UniRef50_Q47QV2	0.000179598	0.000400322
+UniRef50_E1ZQF3	7.21945e-06	9.34817e-06
+UniRef50_H6RSF4	7.66805e-05	1.1712e-05
+Arginine  tRNA ligase	7.98768e-05	0.00352188
+Nucleoside diphosphate kinase	0.0133495	0.000743984
+hypothetical protein	1.74461e-05	3.71234e-06
+UniRef50_J9P031	0.00017291	4.00842e-05
+UniRef50_P76241	0.0020699	0.000347851
+hypothetical protein	0.0019448	7.25266e-05
+Bifunctional protein TrpGD	0.000596551	6.24136e-05
+Heat shock protein 70	0.00020014	2.22141e-05
+Holliday junction ATP dependent DNA helicase RuvA	2.38188e-05	5.60272e-06
+Transposase	0.00118543	4.95921e-05
+Phosphopentomutase	9.15849e-06	1.03261e-05
+UniRef50_B3PJZ1	0.000453844	0.000432236
+Outer membrane protein assembly complex, YaeT protein	0.00111082	0.000152188
+UniRef50_A6M2H1	0.000476478	0.00152733
+UniRef50_A6M2H8	0.00673097	0.000338811
+UniRef50_X6L2P2	0.000276331	8.68744e-05
+UniRef50_Q04KA6	0.00394048	0.000392566
+hypothetical protein, partial	1.92921e-05	2.05e-06
+UniRef50_R4LGH4	8.85434e-06	1.44311e-05
+ABC transporter related	0.000967793	0.000452334
+nitrate reductase	8.1595e-06	3.09956e-06
+hypothetical protein	7.7703e-06	1.11152e-05
+hypothetical protein	7.86594e-07	1.90779e-07
+30S ribosomal protein S12	0.00155734	0.000279704
+Pyridine nucleotide disulfide oxidoreductase	0.000431229	0.000127354
+hypothetical protein	4.35415e-05	4.94961e-05
+ABC transporter, permease protein	0.000220567	0.00221888
+ABC transporter, substrate binding protein, aliphatic sulfonate 	2.62553e-05	2.0761e-05
+Nitrate reductase, alpha subunit	0.00308327	0.000794481
+Aerobic cobaltochelatase subunit CobN	0.0001991	2.3981e-05
+Inner membrane protein YeaI	0.00330883	0.00133445
+UniRef50_A5ULS0	0.00290564	0.00083916
+Transcription elongation factor GreA	0.00042153	0.00225184
+Putative sulfoquinovose importer	0.00404222	0.000704089
+Fumarate hydratase, mitochondrial	0.03657	0.0352349
+NatC	0.000278176	0.00210238
+Peptidase M56, BlaR1	0.000152474	0.000715733
+2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	2.51478e-05	9.63206e-06
+hypothetical protein	1.71782e-06	4.49935e-06
+ABC transporter ATP binding protein	0.000190662	2.29555e-05
+UniRef50_E2ZV83	4.19293e-05	4.24418e-05
+Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	4.03438e-05	2.45494e-05
+Lipoprotein	0.000120235	1.72087e-05
+UPF0237 protein SMU_72	0.000422446	0.000362036
+Regulatory protein, TetR	0.000446746	0.00164312
+Glucose 6 phosphate 1 dehydrogenase	4.07369e-06	0.0075078
+Excinuclease ABC subunit A	8.42515e-05	8.56687e-05
+dihydroxyacetone kinase	6.83868e-06	0.00057039
+N acetyl gamma glutamyl phosphate reductase	5.36328e-06	9.79207e-06
+Tfp pilus assembly pathway, ATPase PilB	0.000215789	0.015047
+Formamidopyrimidine DNA glycosylase	1.00827e-05	1.16874e-05
+Outer membrane lipoprotein LolB	0.00124973	0.000988576
+DNA topoisomerase 1	0.000118893	0.00279381
+hypothetical protein	3.42438e-06	1.5405e-05
+hypothetical protein	2.52257e-05	1.27183e-05
+Putative protein RhsE	0.00293444	0.000513027
+Superoxide dismutase [Mn], mitochondrial	8.86448e-06	5.68748e-05
+AraC family transcriptional regulator	8.344e-05	0.000104523
+UniRef50_Q9HTT0	0.00120889	0.000233815
+UniRef50_J9YQC3	0.000391655	5.68618e-05
+UniRef50_A0A045ECZ1	4.92455e-05	7.12868e-06
+UniRef50_B9E3J2	0.000246595	0.000518634
+Cupin superfamily protein	1.93111e-05	2.36467e-05
+hypothetical protein	3.43885e-05	5.00154e-06
+Probable thiol peroxidase	0.00966046	0.00108174
+UniRef50_F8JFK7	0.00169286	0.00497966
+Membrane bound O acyl transferase MBOAT family protein	6.59038e-05	0.000431102
+Peptidase M56 BlaR1	4.63353e-05	0.000540015
+UniRef50_Q9I5Z5	0.000286831	0.000196037
+hypothetical protein	5.39972e-06	8.96675e-06
+Adenylosuccinate lyase	0.0027321	0.000440082
+UniRef50_K1V508	0.000280018	0.000260052
+UniRef50_X6P3I6	3.50537e-06	4.9918e-06
+Cell wall surface anchor family protein	5.79591e-06	0.00094906
+Putative dehydrogenase	0.000124879	5.53886e-05
+Anaerobic C4 dicarboxylate transporter DcuB	0.00364415	0.000363205
+replication initiation protein RepC	5.14083e-05	1.60899e-05
+UniRef50_D9REY1	0.0401201	0.00248863
+UniRef50_Q2CKE9	2.46783e-05	1.16268e-05
+Proline iminopeptidase	0.000116792	0.001527
+UniRef50_F9HJK1	2.43984e-05	1.27816e-05
+Prolipoprotein diacylglyceryl transferase	1.75067e-05	1.60458e-05
+Trehalose 6 phosphate hydrolase	0.0120691	0.00126564
+UniRef50_X1YC61	2.34666e-06	4.37106e-06
+Aspartate semialdehyde dehydrogenase	0.00237743	0.000272411
+N succinylarginine dihydrolase	1.24339e-05	2.25401e-05
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	3.78058e-06	0.00095558
+Shikimate dehydrogenase	4.82446e-05	9.11286e-06
+UniRef50_A0A024HXE1	2.90643e-05	7.4232e-06
+Transposase	0.00763228	0.000470078
+Phytoene dehydrogenase 	2.26837e-05	0.000271612
+TonB domain containing protein	0.0002324	0.000356646
+30S ribosomal protein S2, partial	1.62011e-05	9.35099e-06
+PREDICTED	2.51512e-05	1.32193e-05
+Protease HtpX homolog	0.00447607	0.000515489
+DoxX family protein	5.22846e-05	1.44163e-05
+ATP dependent chaperone ClpB	0.000303638	0.00557865
+UPF0053 protein BU323	0.00181865	0.000376151
+UniRef50_M1Z917	1.11772e-05	3.81281e-05
+polyphosphate kinase, partial	2.37623e-06	2.70771e-05
+bacteriocin ABC transporter ATPase	6.29917e-06	4.21619e-06
+UniRef50_Q46911	0.0031657	0.000348332
+Marine sediment metagenome DNA, contig	9.43874e-06	3.50345e-06
+UniRef50_G2T0A1	0.00367918	0.000390759
+Deoxyribodipyrimidine photolyase	0.0167515	0.00193949
+UDP N acetylglucosamine 1 carboxyvinyltransferase	1.97223e-05	5.6885e-06
+ISSod1 transposase	0.000140898	9.08311e-06
+hypothetical protein	8.34277e-06	5.9241e-06
+Polyketide synthase 	0.000292037	0.000257352
+Replication initiation protein	0.857353	0.165635
+N5 carboxyaminoimidazole ribonucleotide mutase	6.65863e-05	4.49053e-05
+UniRef50_B9DYP5	0.000260172	0.000771576
+Arginine  tRNA ligase	0.00826568	0.000831386
+Marine sediment metagenome DNA, contig	0.00013938	2.69693e-05
+CoB  CoM heterodisulfide reductase iron sulfur subunit A	0.00267313	0.000341866
+hypothetical protein	0.000199684	5.35246e-05
+Lon protease	0.000138251	0.0144899
+UniRef50_Q6AAY2	0.000305566	0.00387479
+UniRef50_Q6AAY0	0.000320179	0.00568298
+UniRef50_A3U7W4	1.97777e-05	0.00125097
+Indole 3 glycerol phosphate synthase	0.00347211	0.00615102
+USG 1 protein	0.00208188	0.000649885
+trehalose 6 phosphate phosphatase, partial	9.54599e-05	0.00011453
+2 deoxyribose 5 phosphate aldolase , DeoC	0.00454389	0.00101792
+UniRef50_D2ZQG6	0.00283157	0.000208756
+Cell wall binding repeat containing protein	0.000309613	0.000755972
+UniRef50_UPI0002C33B71	5.51792e-05	3.56276e-06
+Chitin binding protein CbpD	0.000218241	0.000126102
+PTSINtr with GAF domain, PtsP	0.00555284	0.000524786
+UniRef50_A9EDR0	0.00021167	4.82259e-05
+Chromosome 2 SCAF15004, whole genome shotgun sequence	1.00759e-05	3.91902e-05
+UniRef50_J3HVJ5	0.000203779	0.000107548
+UniRef50_D8HCA2	0.00180329	0.000270436
+Adenine deaminase	0.000973734	0.00050578
+UniRef50_UPI0003C1ADBB	5.56124e-06	3.15134e-06
+UniRef50_F8C6I4	6.98234e-05	2.65855e-06
+hypothetical protein	5.02606e-06	5.30662e-05
+hypothetical protein	1.13131e-05	6.53969e-06
+UniRef50_R1CD42	8.17377e-05	1.30778e-05
+Phosphoglucosamine mutase	4.30099e-06	1.28866e-05
+UniRef50_Q53058	0.00194783	0.000375185
+4 hydroxythreonine 4 phosphate dehydrogenase	3.2943e-05	4.03895e-05
+Prepilin type N terminal cleavage methylation domain protein	2.20211e-05	0.00207351
+UniRef50_A3UGH3	4.91185e-05	3.57423e-05
+UniRef50_J9P8Q4	1.89446e-05	2.73438e-05
+Acyl CoA dehydrogenase	0.000120406	0.00295489
+UniRef50_U3T9B5	0.000160772	0.00240538
+2 dehydro 3 deoxygluconokinase	1.34263e-05	8.63356e-06
+Transcriptional regulator	0.00230203	0.00642738
+Hydrogenase expression protein HypA	6.41737e-07	3.49132e-06
+UniRef50_S8ENL7	4.88328e-07	5.11623e-06
+Sensor response regulator hybrid	0.000667086	0.000258728
+Elongation factor P 1	9.38463e-06	8.87297e-06
+hypothetical protein	0.0274908	0.00276667
+Aliphatic amidase	0.00101343	0.00198626
+Beta lactamase	0.00786519	0.00228852
+MoxR like ATPase	0.00210517	0.000334967
+UniRef50_F0KI93	0.000288089	0.00249751
+UniRef50_F4PTN3	1.40736e-05	0.00014659
+Integral membrane sensor signal transduction histidine kinase	0.000234127	0.000204755
+Acetoacetate metabolism regulatory protein AtoC	0.00241858	0.000297418
+UniRef50_L1K929	0.000956662	0.000159748
+FtsK SpoIIIE family protein	0.001617	0.000306433
+UniRef50_Q9I2K3	0.00041894	0.000151408
+PREDICTED	1.90167e-05	6.61881e-05
+3 oxoadipate enol lactonase	9.4382e-06	2.18023e-05
+UniRef50_V9C7N3	0.000174077	0.000159193
+Putative 1,2 phenylacetyl CoA epoxidase, subunit D	0.0019085	9.08378e-05
+UniRef50_A6LS79	0.00037667	0.000629067
+hypothetical protein	3.4734e-06	8.03402e-06
+serine threonine protein phosphatase	1.00201e-05	7.26475e-06
+30S ribosomal protein S19e	0.000754873	0.00112911
+UniRef50_W4TX83	0.000169207	0.00244881
+UniRef50_A6LS70	0.000257691	0.000144581
+UniRef50_UPI0003C14FAA	0.000148587	2.1387e-05
+Peptidoglycan glycosyltransferase	0.000688405	0.000474282
+general secretion pathway protein I	2.88974e-05	1.13275e-05
+ABC transporter	7.16237e-05	1.58492e-05
+Methylenetetrahydrofolate reductase	0.000407115	0.000287772
+hypoxanthine phosphoribosyltransferase	2.85115e-05	2.5125e-05
+UniRef50_P77658	0.00166424	0.000591999
+Isovaleryl CoA dehydrogenase	0.00540118	0.000646835
+DNA polymerase III subunit beta	0.000765837	0.00277888
+UniRef50_UPI0002C34F8A	4.17355e-06	2.80768e-06
+UniRef50_E0MMN1	1.41363e-05	2.21172e-05
+Thioesterase family protein	9.71525e-06	0.000404777
+UniRef50_P77657	0.00160807	0.000968133
+hypothetical protein	3.33445e-05	0.00014532
+CheBRA	0.00589651	0.000596356
+Aspartate semialdehyde dehydrogenase	0.00749913	0.00590449
+50S ribosomal protein L11	0.0401749	0.0358727
+Osmolarity sensor protein EnvZ	0.00151568	0.000148974
+UniRef50_K1E414	0.000153101	7.22794e-05
+Phage integrase family protein	0.00133542	9.06003e-05
+hypothetical protein	3.97471e-06	8.34357e-05
+ABC transporter substrate binding protein, partial	1.39533e-05	0.000585592
+hypothetical protein	5.4057e-06	2.71538e-05
+peptide ABC transporter permease	5.12253e-05	3.04063e-05
+ArsR family transcriptional regulator	0.000123204	3.27468e-05
+UniRef50_H1KC86	2.15447e-05	3.44628e-05
+8 amino 7 oxononanoate synthase	4.17367e-06	2.62272e-06
+Transcriptional regulator, TetR family	0.000487752	0.000376801
+UniRef50_P44917	0.00352871	0.00174508
+Sortase	0.0103925	0.00208717
+PREDICTED	9.89615e-06	2.02751e-06
+Flagellar biosynthesis protein FlhA	4.5893e-05	0.0017191
+ATP synthase subunit b 2	0.00350302	0.000392998
+Protein C37C3.1, isoform a	3.37503e-05	8.33067e-06
+UniRef50_Q5HLQ2	0.00729525	0.00176022
+UniRef50_Q5HLQ1	0.00499255	0.0019409
+Lipoprotein signal peptidase	9.67555e-06	7.94686e-06
+succinate semialdehyde dehydrogenase	4.58278e-06	7.80556e-06
+Hypoxanthine guanine phosphoribosyltransferase	0.000965946	0.000163245
+UniRef50_I7DNF2	0.000409242	2.0415e-05
+UniRef50_D3E4Q3	0.00278135	0.000102846
+UniRef50_Q5HLQ8	0.0176901	0.00394071
+HpcH HpaI aldolase	0.00138946	0.00101673
+Ribosomal RNA small subunit methyltransferase G	3.36491e-05	2.05586e-05
+Gram positive signal peptide protein, YSIRK family	0.00145204	0.000372926
+2 oxoglutarate dehydrogenase	1.31493e-05	1.15209e-05
+LPXTG motif cell wall anchor domain protein	6.40438e-06	3.48367e-07
+Queuine tRNA ribosyltransferase	4.96584e-06	8.54256e-06
+UniRef50_UPI0002B45411	2.38133e-05	7.55229e-06
+Transposase and inactivated derivative	4.38e-06	4.36375e-06
+Tellurite resistance protein TehA	0.00223558	0.000475464
+tRNA dihydrouridine synthase B	0.00252078	0.00019792
+Serine hydroxymethyltransferase	7.5699e-05	5.24299e-05
+Head tail adaptor protein	0.000133886	2.35637e-05
+NADH ubiquinone oxidoreductase chain 6	0.000138516	1.82743e-05
+Hydrogenase expression formation protein HupH	0.00136423	0.000276798
+Ribose 5 phosphate isomerase A	0.00120108	0.0016735
+UniRef50_P77656	0.00953621	0.000292459
+Small GTP binding protein	0.000445532	0.000490214
+UniRef50_A6LWF4	0.000591211	0.0011124
+Superoxide dismutase [Fe]	7.03189e-06	1.36785e-05
+Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS	0.00242162	0.000120679
+Putative metabolite transport protein YjhB	0.00159537	0.00032578
+chemotaxis protein CheY, partial	6.18161e-05	2.1384e-05
+Membrane protein	0.000138412	3.12767e-05
+hypothetical protein	6.34786e-05	1.87533e-05
+UniRef50_B0V8D4	0.000167807	0.00370718
+hypothetical protein	0.000149135	0.00110793
+dihydrofolate reductase	1.7624e-05	1.42302e-05
+Prolipoprotein diacylglyceryl transferase	7.59184e-05	1.2229e-05
+short chain dehydrogenase	6.807e-06	3.75128e-06
+SAM dependent methyltransferase	0.000759539	0.000112795
+Predicted protein 	5.30715e-05	0.000204544
+Glycosyltransferase	0.000153771	6.50144e-05
+UniRef50_N1ZDW1	2.6238e-05	4.97784e-05
+Cysteine  tRNA ligase	2.16659e-06	0.00486393
+Glyoxalase family protein	1.09189e-05	1.60815e-05
+MFS type transport protein	0.00138442	0.000186093
+ABC transporter permease	3.23463e-06	6.34904e-05
+Sensor histidine kinase ResE	0.000334503	0.000607379
+Methionine  tRNA ligase 1	4.61196e-06	2.28516e-06
+hypothetical protein	9.80065e-07	6.25473e-07
+DNA polymerase IV	3.60568e-06	4.10427e-06
+3 oxoacyl  reductase	1.65832e-05	1.50694e-05
+UPF0394 inner membrane protein YeeE	0.0215889	0.00297911
+alpha glucosidase	3.60302e-05	1.64959e-05
+Ribosomal large subunit pseudouridine synthase D	0.0029862	0.000999367
+ATP dependent Clp protease proteolytic subunit	0.0050842	0.000155876
+ribose ABC transporter permease	4.749e-05	8.9435e-06
+dTDP glucose 4,6 dehydratase	4.67995e-06	3.16775e-06
+UniRef50_K1YIN2	3.57599e-06	2.47352e-06
+Stage II sporulation P	0.000217959	0.000433035
+Urease subunit gamma	0.000230403	0.000257885
+RF 1 domain containing protein	2.51122e-06	2.09384e-05
+3 phosphoglycerate dehydrogenase	3.55449e-05	1.72574e-05
+XRE family transcriptional regulator	6.62855e-05	0.000141439
+Phosphoadenosine phosphosulfate reductase 	1.30737e-05	7.97521e-06
+UniRef50_Q6FAE6	0.000282024	0.00294081
+PREDICTED	0.000117949	6.78416e-05
+DEAD DEAH box helicase domain protein	4.98596e-06	0.00313623
+hypothetical protein	8.89183e-05	0.00165059
+hypothetical protein	0.000161898	4.35093e-05
+UniRef50_R5AUS4	1.3555e-05	1.19995e-05
+Helix turn helix domain protein	0.0014854	0.000145992
+amino acid ABC transporter ATPase	0.000119072	6.81173e-06
+Flavoprotein oxidoreductase	0.00210343	0.0224462
+UniRef50_P52037	0.00113699	0.000507606
+Transcriptional regulator 	0.000594055	8.81325e-05
+UniRef50_I3THN3	0.000749928	0.000249665
+Adhesin like protein	0.00219111	0.000178129
+UniRef50_U6M3I8	2.85752e-05	1.46443e-05
+Putative prolin rich exported protein	1.637e-05	2.87826e-06
+PREDICTED	7.36268e-06	4.94851e-05
+Aspartate carbamoyltransferase	0.0117397	0.00428427
+UniRef50_A9GWZ1	0.000651537	0.000129345
+ABC transporter ATP binding protein	7.73237e-05	3.67076e-06
+N acetylmuramic acid 6 phosphate etherase	6.53747e-06	4.66651e-06
+hypothetical protein	0.000526328	0.000184951
+Protein TolA	0.00358535	0.000385867
+Antisigma factor antagonist, STAS	0.000844604	0.000185134
+ABC type metal ion transport system, periplasmic component surface adhesin	0.000149356	0.00753871
+Peptidoglycan binding domain 1 protein	7.71296e-06	2.56625e-06
+UniRef50_Q17WK7	0.000726342	0.00107595
+UniRef50_J9GTY9	0.00108773	4.19832e-05
+Transposase	3.24285e-05	1.49057e-05
+UniRef50_A0A037ZJL2	0.000152207	6.73015e-05
+Probable 3 phosphoshikimate 1 carboxyvinyltransferase	0.00248001	0.000437682
+UniRef50_G7U4Y3	0.000171417	0.00151882
+UniRef50_W0N4N9	0.000180633	9.4652e-05
+Protein RecT	0.00213426	0.000927967
+Sulfite oxidase subunit YedZ	6.32568e-05	1.31482e-05
+UniRef50_Q5HGR8	0.00217112	0.000355873
+hypothetical protein	5.02595e-06	0.000169339
+DNA mismatch repair protein MutT	8.815e-06	3.35045e-05
+Probable siderophore biosynthesis protein SbnA	0.0132518	0.000858769
+UniRef50_A0A022P693	0.000507508	0.000224829
+Transcriptional regulator, GntR family	0.00151433	0.00099844
+UniRef50_U5WK69	0.000870578	9.85564e-05
+Glycosyl transferase	0.000249848	0.000196362
+hypothetical protein	2.8772e-05	2.28775e-05
+UniRef50_Q8CS03	0.00845115	0.00146014
+UniRef50_Q8CS02	0.00167923	0.000277114
+ATP binding permease protein CydD	0.00204192	0.000559615
+UniRef50_Q8CS00	0.00923404	0.00151595
+hypothetical protein	0.000964763	9.64496e-05
+O acetylhomoserine  lyase	0.0158197	0.00598312
+UniRef50_Q8CS04	0.00281501	0.000299034
+UniRef50_M4BT40	0.000130932	0.000210252
+Signal transduction histidine kinase	0.00480164	0.000871445
+UniRef50_Q9RTF4	0.00092628	0.0035774
+Fibronectin type III domain protein	1.04426e-06	1.11049e-05
+hypothetical protein	9.36788e-06	8.06283e-06
+hypothetical protein, partial	1.49035e-05	1.05722e-05
+UPF0753 protein BLi00845 BL00917	7.70376e-06	0.000249236
+UniRef50_Q9RTF9	0.000156534	0.00661864
+SsrA binding protein	0.000213005	0.0168106
+Oxidoreductase FAD binding domain protein	0.0125338	0.00339197
+DNA directed RNA polymerase	0.000117644	0.00101763
+Transcriptional regulatory protein YycF	0.00982041	0.00284956
+3 oxoadipate enol lactonase 2	0.000552799	0.00243955
+Endonuclease III	0.00444747	0.000211258
+Coenzyme A disulfide reductase	0.00704256	0.000387024
+Chorismate synthase	1.85096e-05	0.000106872
+Chaperone protein ClpB	0.00476016	0.00112031
+Dihydroxy acid dehydratase	0.00335286	0.000322212
+FhuE receptor	5.82936e-05	0.00252753
+Marine sediment metagenome DNA, contig	1.8411e-05	2.83277e-05
+Nitric oxide reductase, NorZ apoprotein	0.000303522	0.00274799
+Opine oxidase subunit A	0.000117674	0.00612018
+GMP synthase [glutamine hydrolyzing] subunit B	0.00255599	0.000959228
+Transcriptional regulator, LysR family	0.000110465	0.00157598
+Protein YdgA	0.00208683	0.000353122
+Radical SAM domain protein	0.00280386	0.000491408
+Marine sediment metagenome DNA, contig	2.04357e-05	1.51797e-05
+hypothetical protein	0.00010689	6.72943e-05
+UniRef50_R5SU23	7.15647e-06	3.19246e-06
+macrolide ABC transporter ATP binding protein	1.33476e-05	3.266e-05
+Bifunctional protein PyrR	1.20224e-05	4.49388e-05
+BolA	2.68934e-05	5.12165e-05
+Ribosome recycling factor	0.000194537	0.0179529
+ABC type transporter, integral membrane subunit	0.000547401	0.000706587
+Bifunctional purine biosynthesis protein PurH	2.36144e-06	8.97632e-06
+UniRef50_H1G027	1.39186e-05	1.2319e-05
+Peptidase, M16 family	0.000202131	0.00338919
+PTS system, galactitol specific IIC component	0.000774931	0.000506481
+UniRef50_U8B0J7	0.000461988	0.000174283
+hypothetical protein	4.45662e-05	0.00029739
+hypothetical protein	1.56642e-05	1.00375e-06
+hypothetical protein	4.85863e-05	3.71474e-06
+UniRef50_C6SNZ9	0.00438829	0.000363356
+Cytidylate kinase	1.21502e-05	1.22928e-05
+hypothetical protein	1.09804e-05	6.41459e-05
+Glycosyl transferase	0.013333	0.000806759
+Bifunctional imidazolonepropionase histidine ammonia lyase	1.39724e-06	2.15906e-05
+Hydrogenase accessory protein HypB	0.00132818	0.000348981
+3 isopropylmalate dehydratase small subunit	0.0156639	0.00109318
+Glycerate kinase	0.00138352	0.00122926
+hypothetical protein	2.06632e-06	0.000211284
+Aspartate  tRNA ligase	2.78443e-06	0.00418438
+ATP phosphoribosyltransferase	0.00908813	0.00337541
+MULTISPECIES	2.94002e-05	2.96917e-05
+Iron hydroxamate binding protein FhuD	0.00185854	0.000401973
+Zinc finger protein 341	6.98042e-05	4.00508e-05
+Ubiquinone biosynthesis O methyltransferase	0.000131293	0.000142408
+Glutathione import ATP binding protein GsiA	0.00242207	0.00046387
+Chemotaxis transducer	0.000932959	0.000199009
+Peptide deformylase	5.74928e-06	7.3395e-06
+UniRef50_J3N076	2.60063e-05	0.000138712
+UniRef50_V4V1N3	0.000293502	0.000136451
+replication initiation protein	0.000189232	4.78888e-05
+Marine sediment metagenome DNA, contig	7.99912e-06	3.29244e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00814714	0.00147194
+O acetylhomoserine sulfhydrylase	0.000335369	0.000455926
+Predicted ATPase involved in DNA repair	0.00217948	0.000261972
+Histidinol dehydrogenase	3.51206e-06	3.05609e-06
+Autoinducer 2 kinase LsrK	0.00193108	0.000277114
+hypothetical protein	2.27824e-05	8.42021e-06
+ATP dependent 6 phosphofructokinase isozyme 2	0.00261984	0.000201764
+Marine sediment metagenome DNA, contig	0.000120465	1.64323e-05
+Replication initiator protein A protein	5.77601e-06	2.59388e-06
+Polyphosphate kinase	0.000101591	0.00286391
+UniRef50_G0DRX2	0.00033432	0.000440122
+UniRef50_R6ESV1	1.82759e-05	1.24909e-05
+ABC transporter	2.18807e-06	1.97933e-06
+hypothetical protein	3.23214e-06	1.00473e-05
+hypothetical protein	0.00508831	0.00043858
+hypothetical protein	2.28045e-05	2.1347e-06
+Holo [acyl carrier protein] synthase	0.00320069	0.000261763
+Teichoic acid biosynthesis protein B family protein	0.0211929	0.00240334
+Azaleucine resistance protein AzlC	4.18222e-05	1.59825e-05
+UniRef50_V6U6B5	0.000287428	0.000187337
+UniRef50_B0SW92	0.000153168	3.74958e-05
+UniRef50_J0CH97	2.82144e-05	1.2727e-05
+Adenine phosphoribosyltransferase	2.89673e-05	8.26398e-06
+Transposon protein	0.00571835	0.000358318
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000188901	0.0032882
+UniRef50_D1B2W6	3.75029e-05	3.19666e-05
+hypothetical protein	8.88541e-05	2.76305e-05
+AAT family amino acid transporter	0.000535866	0.000128733
+Threonine synthase	0.00025857	0.0194248
+UniRef50_K4S1D1	0.000135705	1.43926e-05
+hypothetical protein	2.26707e-05	1.31556e-05
+3 dehydroquinate dehydratase	0.000489728	0.0413832
+PREDICTED	9.2379e-05	1.55247e-05
+hypothetical protein	9.89843e-05	0.000380309
+2 dehydro 3 deoxy 6 phosphogalactonate aldolase	0.00152226	0.000642905
+UniRef50_V6MLI1	3.78088e-05	9.28107e-05
+hypothetical protein	7.00076e-05	0.000107529
+Light independent protochlorophyllide reductase subunit B	0.000226954	8.08082e-06
+UniRef50_D2ZR32	0.00283114	0.00148044
+UniRef50_E4UD93	6.5227e-05	2.34646e-05
+Lon protease	0.000128626	0.00123221
+Probable GMP synthase [glutamine hydrolyzing]	2.47028e-06	1.92938e-06
+CTP synthase	5.55836e-06	0.000102227
+Protease Do	0.00111441	0.000283441
+ABC transporter substrate binding protein	8.9865e-06	6.85054e-06
+signal recognition particle, partial	6.35021e-06	1.22067e-05
+Biotin synthase	4.11603e-06	9.15006e-06
+transposase ISSod13	1.31698e-05	3.1967e-05
+Lipoprotein	0.000544429	0.000209463
+phospho 2 dehydro 3 deoxyheptonate aldolase	2.13899e-05	2.20998e-06
+UniRef50_I0C5E5	0.00969711	0.000404449
+Formate dehydrogenase H	0.0033035	0.000489284
+UniRef50_J1E3J1	0.00132585	0.000493323
+SPFH domain   band 7 family protein	0.000539286	0.000453774
+heat shock protein Hsp33	0.000241234	0.000110687
+UniRef50_P32051	0.000249052	5.85193e-05
+Alcohol dehydrogenase GroES domain protein	0.00015605	0.000966487
+hypothetical protein	7.59593e-05	2.47706e-06
+UniRef50_R1ALN2	0.000215276	0.000162067
+hypothetical protein	6.22826e-06	6.36209e-06
+MFS transporter	4.73369e-06	7.91614e-06
+UniRef50_U3T7W9	0.000835035	0.00291155
+Ribosomal RNA small subunit methyltransferase A	4.67679e-05	1.11545e-05
+Marine sediment metagenome DNA, contig	2.48193e-05	1.71447e-05
+hypothetical protein	3.90649e-06	3.36491e-05
+chemotaxis protein CheR	0.000203288	5.13857e-05
+UniRef50_K2F9K7	0.000158672	0.000139717
+UniRef50_M8DGK3	0.0028847	0.00751518
+UniRef50_C6WMT0	7.14525e-05	1.99087e-05
+Ribonuclease PH	1.31755e-05	1.11682e-05
+porin	0.000175863	2.38916e-05
+UniRef50_H9KFK6	9.14524e-07	1.2544e-06
+34.2 kDa protein in rubredoxin operon	0.000338939	0.00118702
+tagatose bisphosphate aldolase, partial	6.35681e-06	0.000102612
+Drug resistance MFS transporter, drug	0.000166878	0.00151442
+UniRef50_H1R8C9	0.00228176	0.00123417
+NAD kinase	0.000164706	0.00496249
+PREDICTED	8.48708e-05	1.84146e-05
+hypothetical protein	0.000122318	5.121e-06
+UniRef50_F0KFU5	4.78134e-06	0.00286459
+Regulatory protein RecX	0.00379969	0.00221904
+Single stranded DNA binding protein DdrA	0.000161543	0.00527846
+DNA polymerase IV	2.72468e-06	3.13186e-06
+phosphopantetheine adenylyltransferase	1.29224e-05	9.01353e-06
+tRNA dimethylallyltransferase	4.78522e-06	3.72044e-06
+UniRef50_Q8CT65	0.013035	0.00355595
+Transcriptional regulator, MarR family	0.000260218	0.00112587
+UniRef50_Q5HL47	0.00943141	0.00182964
+Hypothetical_protein	1.56921e-05	1.99899e-05
+N acetyl anhydromuranmyl L alanine amidase	0.00290576	0.00115722
+2 cys peroxiredoxin, subunit A	0.000436134	0.000226158
+UniRef50_Q49WA8	0.00754963	0.00040143
+NADH ubiquinone oxidoreductase chain 6	0.000139435	1.97344e-05
+Insertion element IS1 protein InsB	0.000343417	0.00123945
+Molybdate binding periplasmic protein	0.00458229	0.000358488
+UniRef50_F3ZLD3	0.00016252	0.000104439
+Transcriptional activator	0.00436707	0.000442452
+cobinamide adenolsyltransferase	5.16015e-05	0.00172682
+L fucose proton symporter	0.00132863	0.000261637
+Putative NADH nitroreductase Spy0809	0.00517368	0.0032885
+Glutamine  tRNA ligase	0.000202087	0.000296561
+UniRef50_W6K439	4.57156e-05	5.71563e-06
+hypothetical protein	2.11488e-05	6.46952e-06
+PTS system, 3 keto L gulonate specific IIB component	0.000722468	0.000385343
+Sulfite reductase  alpha subunit	0.0221563	0.00227786
+YhhN family protein	0.000440071	0.000288844
+3 hydroxybutyrate dehydrogenase, partial	0.000196941	0.000163182
+C4 dicarboxylate binding periplasmicprote in	0.0101692	0.00135027
+UniRef50_Q2NGX7	0.000528614	0.00032649
+UniRef50_D5RU63	6.99262e-06	3.30673e-05
+Nogalamycin resistance protein SnorO	3.13236e-06	1.97206e-05
+Lactate dehydrogenase	0.00220045	0.000192405
+PfkB domain protein	0.000367119	0.000332157
+hypothetical protein	9.95771e-05	4.40436e-05
+Alkyl hydroperoxide reductase	0.000103775	9.65978e-05
+ABC type multidrug transport system, permease component	0.00657965	0.000122156
+UniRef50_O34512	0.000676022	0.00301118
+Metal dependent phosphohydrolase	0.00177037	0.0013197
+hypothetical protein	4.73541e-05	3.8593e-06
+Rep1	0.0043865	0.000427486
+UniRef50_L1K8E5	0.00172034	5.45592e-06
+UniRef50_Q3IVQ7	9.72844e-05	0.000126284
+Surface protein G	0.00157125	0.00114107
+hypothetical protein PFL1_00672	8.77916e-05	1.79111e-05
+hypothetical protein, partial	1.22234e-05	2.7491e-05
+Biofilm synthesis protein	9.46365e-05	0.00214389
+Lipoyl synthase	0.00666359	0.000429669
+Proline iminopeptidase	0.000219451	0.000194474
+UniRef50_Q2YV92	0.0115348	0.00134086
+hypothetical protein	9.84307e-05	8.07268e-06
+hypothetical protein	3.24566e-05	1.33115e-05
+S adenosylmethionine synthase	0.00552152	0.000477102
+PREDICTED	1.86085e-05	1.45607e-05
+Major facilitator superfamily MFS_1	0.00100666	0.000418605
+ATPase	4.93434e-05	2.12007e-05
+UniRef50_B9AGK2	0.00573053	0.000229783
+hypothetical protein	6.28022e-05	1.46676e-05
+Dephospho CoA kinase	0.000554174	0.000198201
+Probable N acetyl gamma glutamyl phosphate reductase, chloroplastic	5.37678e-05	2.14832e-05
+UniRef50_Q1CV54	0.000460471	0.00104196
+Solute carrier family 39 , member 1 2 3	2.35603e-05	9.16109e-05
+hypothetical protein	3.04269e-05	2.71925e-06
+cystathionine beta lyase	8.68081e-06	7.16423e-06
+Alpha beta hydrolase	0.0035736	0.000765716
+AsmA family protein	1.37012e-06	8.87855e-07
+dehydrogenase	1.52619e-06	5.8933e-06
+Phage integrase family protein	0.000157021	0.000468062
+NADH quinone oxidoreductase subunit D	2.43384e-05	2.88455e-05
+UniRef50_A3QJ60	3.26205e-05	8.81675e-06
+UniRef50_X2H5U3	0.000635707	0.00184659
+PREDICTED	0.000274365	0.000266327
+Chromosome partitioning protein ParA	2.54495e-05	4.01395e-05
+Aminomethyltransferase	1.86753e-05	1.09702e-05
+Carbamate kinase 2	0.0123057	0.00195887
+UniRef50_A9CLS9	1.35882e-05	0.000369873
+4 alpha glucanotransferase	0.000344436	0.00140313
+ATP dependent RNA helicase RhlB	0.00159573	0.00029203
+CheA signal transduction histidine kinase	0.00026403	0.000594038
+C4 dicarboxylate ABC transporter	5.4416e-06	6.95242e-06
+Bacterioferritin	0.00013661	0.00535741
+Biotin synthase	0.00202494	0.00418426
+Fucosyltransferase	0.000187901	0.0036466
+deoxyguanosinetriphosphate triphosphohydrolase	0.000104639	1.21213e-05
+UniRef50_Q0AM89	4.67002e-06	0.000262336
+UDP glucose 4 epimerase, putative	0.000193049	0.0162463
+hypothetical protein	7.82895e-05	5.27321e-06
+Glutamate racemase	0.000507869	0.000210516
+hypothetical protein	1.1629e-06	1.17052e-05
+flagellar basal body P ring protein, partial	6.72145e-05	2.34751e-05
+Phenylalanine  tRNA ligase alpha subunit	0.0226096	0.00746015
+hypothetical protein	4.1356e-06	3.42773e-05
+Hydrolase, alpha beta fold family	0.000122085	0.000435888
+peptide ABC transporter permease	3.8881e-05	2.56912e-05
+Putative transposase	0.0188514	0.00150193
+UniRef50_Q57N58	5.8262e-05	0.000275093
+PREDICTED	8.23946e-06	2.21e-05
+hypothetical protein	0.000219762	0.000150899
+glycosyl transferase	1.40901e-05	7.11244e-06
+UniRef50_S3ANI4	9.3444e-05	1.99183e-05
+UniRef50_B9KTI2	0.000321252	0.000181776
+PREDICTED	4.70247e-06	8.07219e-05
+PREDICTED	0.00257921	0.000398282
+riboflavin synthase subunit alpha	1.60828e-05	7.727e-06
+Signal transduction histidine kinase regulating citrate malate metabolism	0.000794357	0.000714217
+UniRef50_C5N6M7	0.00917459	0.000120679
+UniRef50_W6VNR8	5.35147e-05	6.85227e-05
+UniRef50_Q6YTQ3	0.000291752	0.000214102
+DNA directed RNA polymerase subunit alpha, partial	4.62192e-06	5.62068e-06
+UniRef50_D3QGV6	0.0108134	0.00265518
+GntR family transcriptional regulator	0.00114294	0.00168547
+6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB	0.00247387	0.000253946
+ABC transporter permease	1.89233e-05	6.21534e-05
+hypothetical protein	9.87298e-06	3.25949e-05
+Transcriptional regulator	3.25898e-06	6.12317e-06
+ binding domain protein	0.0147689	0.00171872
+Phage associated cell wall hydrolase	0.000897463	0.00110431
+membrane protein	1.73528e-05	2.63008e-05
+UniRef50_A8B5Y9	0.000101467	0.000313837
+UniRef50_J8PEK3	1.95484e-05	1.71036e-05
+2 oxoglutarate dehydrogenase E1 component	1.80514e-06	4.26086e-06
+UniRef50_A3JLI9	1.33854e-05	5.0149e-06
+hypothetical protein	0.000364432	0.000210031
+Glycosyltransferase stabilizing protein Gtf2	0.0115877	0.000736257
+hypothetical protein	3.65617e-06	0.000153993
+UniRef50_K8CED6	8.10269e-05	6.56491e-05
+UniRef50_B9XI35	2.58851e-05	4.51835e-05
+Chemotaxis protein methyltransferase	0.0016915	0.000227822
+UniRef50_A7FAU8	0.00025872	0.00761298
+ThiC associated domain protein	1.36196e-05	2.24221e-05
+gas vesicle protein GvpS	0.000288793	8.60592e-05
+Cell wall binding repeat containing protein	0.000107067	0.00130611
+Probable proline iminopeptidase	6.08677e-06	4.94592e-06
+UPF0374 protein LSL_0370	0.0249147	0.00693052
+UniRef50_F6ZMA7	3.46133e-05	1.44857e-06
+Carbamoyl phosphate synthase small chain	1.41743e-05	3.77717e-06
+UniRef50_A6LX23	0.000355929	0.000479634
+UniRef50_A1SUY3	6.03867e-05	1.39756e-05
+UniRef50_U3SUB6	0.00363043	0.00147686
+L cystine transport system permease protein TcyB	0.000336756	0.00244814
+UniRef50_Q9RZU0	9.7345e-05	0.0109843
+Lanthionine synthetase C family protein	8.58021e-05	1.13693e-05
+Divalent cation transporter mgtE family	0.00160735	0.000144814
+Anthranilate phosphoribosyltransferase	3.29457e-05	2.03175e-05
+membrane protein	5.18325e-05	3.13244e-05
+Formate acetyltransferase	0.0273727	0.00780919
+hypothetical protein	4.25556e-05	1.77429e-05
+hypothetical protein	7.70674e-06	3.61514e-06
+hypothetical protein	3.89342e-06	0.000224271
+UniRef50_R9ITT5	1.08569e-05	7.20228e-06
+Penicillin binding protein 1B	0.000857997	0.000252206
+UniRef50_U9T899	1.53061e-05	4.45819e-06
+hypothetical protein	2.49048e-05	0.000129311
+ATP dependent helicase nuclease subunit A	2.79635e-06	0.000244012
+Carboxynorspermidine carboxyspermidine decarboxylase	0.00629097	0.000601845
+1 deoxy D xylulose 5 phosphate synthase 1	1.74652e-05	6.06011e-05
+cysteine protease	1.22688e-05	2.82561e-05
+UniRef50_D3P107	2.04056e-05	4.57394e-05
+ABC sugar transporter, periplasmic ligand binding protein	0.011317	0.000577831
+hypothetical protein	7.7226e-06	8.69892e-06
+Expressed protein 	0.000143049	3.83746e-05
+UniRef50_D3P109	6.90896e-06	2.35468e-06
+Peptidase, M42	0.000159754	0.000955827
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.27307e-05	1.4688e-05
+2 oxoglutarate dehydrogenase	9.43645e-06	3.47297e-05
+Protein rlx	0.172956	0.0229895
+UniRef50_E5ZTR3	9.05098e-05	0.000119976
+UniRef50_G8B0S1	1.10268e-05	4.75807e-05
+LuxR family transcriptional regulator	1.27585e-05	1.22142e-05
+UniRef50_K7UNI1	7.32706e-06	6.34614e-05
+Capsule polysaccharide modification protein LipA	0.000199676	0.0018076
+UniRef50_V4QFM6	0.000117088	4.91096e-05
+Type F conjugative transfer system protein TraW	5.18496e-05	1.44124e-05
+Antitoxin RnlB	0.00391374	0.000243319
+Integral membrane protein	2.07e-05	0.000664746
+UniRef50_E4HNQ2	4.12866e-05	0.000143808
+UniRef50_F7XC63	0.000391269	6.74207e-05
+Anhydrase, family 3 protein	0.000432493	0.00126536
+Oxoglutarate dehydrogenase , E1 component	0.00307645	0.000592059
+Isoform 2 of DNA gyrase subunit B, mitochondrial	8.73166e-06	1.71341e-05
+Alpha ketoglutarate dependent taurine dioxygenase	0.00154959	0.000477362
+Expressed protein 	3.68281e-05	7.01416e-05
+PhoH like protein	0.00321864	0.000961978
+D galactose binding periplasmic protein MglB	0.000103766	0.000491441
+multidrug ABC transporter permease	2.62249e-06	1.9696e-06
+Threonine  tRNA ligase	2.76626e-05	0.000910074
+DNA gyrase subunit B	0.000111563	0.00178474
+UniRef50_M4XCL5	2.2942e-06	8.26045e-06
+D allose binding periplasmic protein	0.00113003	9.81255e-05
+UniRef50_A5UJ66	0.0010601	0.000218455
+hypothetical protein	3.20176e-06	6.74173e-06
+isopropylmalate isomerase	1.00424e-05	7.33545e-06
+anthranilate synthase, component I, partial	1.48359e-05	1.16526e-05
+NLPA lipoprotein	9.41911e-05	3.63169e-05
+Leucine  tRNA ligase	0.0021505	0.000804617
+ABC superfamily ATP binding cassette transporter, ABC protein	0.00446901	0.00046499
+UniRef50_G2LWG0	0.000364541	7.94054e-05
+UniRef50_O31775	0.0170722	0.00193979
+UniRef50_A2SNG4	1.15213e-05	5.75022e-06
+Leucine efflux protein	0.000914923	0.000650615
+Phage terminase like protein large subunit	0.00695616	0.000579956
+UDP N acetylmuramoylalanine  D glutamate ligase	1.93823e-06	7.29591e-06
+Formamidopyrimidine DNA glycosylase	6.3512e-06	2.08086e-05
+Membrane associated protein	1.18575e-05	0.000258416
+xanthine phosphoribosyltransferase	3.37644e-05	1.55505e-05
+Sensor histidine kinase	0.00141885	0.000524756
+WGS project CAID00000000 data, contig chromosome 01 	6.67738e-06	3.16371e-06
+Diaminopimelate decarboxylase	0.000297158	6.2312e-05
+UniRef50_Q8DT21	0.000437076	0.000764882
+UniRef50_Q8DT20	0.00394711	0.000914078
+CreA family protein	0.00232081	1.57681e-05
+UniRef50_D8LC87	2.96388e-05	1.62383e-05
+Ribonuclease H	3.63222e-05	1.53236e-05
+UniRef50_Q5KQI9	5.30413e-05	0.00019561
+Lipase	0.000470396	0.00112426
+Adenylosuccinate lyase	0.000202233	0.000224067
+Arginine repressor	1.90798e-05	0.000200861
+hypothetical protein	4.88047e-06	4.30704e-06
+NAD NADP dependent betaine aldehyde dehydrogenase	3.58974e-05	3.32629e-06
+hypothetical protein	3.77436e-05	9.29846e-05
+exodeoxyribonuclease III, partial	6.27221e-05	3.37454e-05
+PREDICTED	6.54731e-05	2.00829e-05
+UniRef50_D3QFS6	0.00928543	0.00123246
+hypothetical protein	3.30857e-05	1.86678e-05
+Cobalt precorrin 8X methylmutase	0.00451336	0.000152695
+Excinuclease cho	0.00175214	0.000825709
+Fructan beta fructosidase	0.00546905	0.000987416
+UniRef50_R7PXR3	0.00319329	0.00068984
+3 dehydroquinate dehydratase	5.51971e-05	5.96849e-05
+Ferrous iron transport protein B	0.00531632	0.000666026
+ABC transporter, permease protein	0.000289213	0.0045105
+Marine sediment metagenome DNA, contig	5.18148e-05	1.65539e-05
+Chaperone protein HtpG	0.000459381	0.000661207
+Ribonuclease PH	2.76525e-05	0.00051664
+hypothetical protein	2.21224e-06	1.68896e-05
+Conjugative relaxase domain protein, TrwC TraI family	1.01271e-05	3.99538e-06
+UniRef50_M5ABW2	0.000147855	0.000319022
+Transposase, IS4	3.25344e-06	5.67528e-06
+UniRef50_K2BFW3	8.60444e-05	1.16e-05
+UniRef50_G2LBA7	0.00018467	7.651e-05
+3 dehydroquinate dehydratase	1.05223e-05	1.02551e-05
+UniRef50_Q8CU45	0.0093377	0.00200777
+UniRef50_Q8CU48	0.00716411	0.00344895
+50S ribosomal protein L18	2.91768e-05	0.000270067
+Protein translocase subunit SecA	0.00968581	0.00098093
+UniRef50_X6L0R0	7.28328e-06	2.71396e-06
+Foldase protein PrsA	7.39684e-06	1.08562e-05
+MATE efflux family protein	0.00245114	0.000226346
+membrane protein	3.51103e-06	5.71369e-06
+Tagatose 6 phosphate kinase	0.0232248	0.00380319
+Cation transport protein ChaC	5.75895e-06	2.88574e-06
+1,4 Dihydroxy 2 naphthoyl CoA synthase	2.44048e-05	0.00410875
+UniRef50_V0ULY3	0.000356203	8.23377e-05
+NADH dehydrogenase (Quinone)	0.0113367	0.00170582
+UniRef50_R1DJN2	2.41609e-05	3.51408e-05
+UniRef50_B9KJM8	3.40594e-05	1.40147e-05
+Possible lipoprotein	0.00011552	0.00159182
+Hydroxyethylthiazole kinase	6.97012e-06	5.46076e-06
+Membrane protein, putative	0.00063757	0.000370661
+UniRef50_V7HHQ1	0.000430939	0.000111628
+Ribose import ATP binding protein RbsA 1	0.000153504	2.66977e-05
+hypothetical protein	0.000115705	2.48306e-06
+UniRef50_W0HY15	7.21331e-05	1.4941e-05
+4 amino 4 deoxychorismate lyase	0.000109467	1.43138e-05
+Type VI secretion associated protein	0.000554472	1.26468e-05
+UniRef50_P40398	0.0210956	0.00396941
+Glyoxalase family protein	2.5103e-05	3.94672e-05
+coproporphyrinogen III oxidase	6.71943e-05	1.73783e-05
+ASCH domain protein	9.02489e-06	8.58487e-06
+iron ABC transporter substrate binding protein	3.97171e-05	1.10004e-05
+Probable N succinyldiaminopimelate aminotransferase DapC	6.30318e-06	7.69025e-05
+Signal peptidase IB	0.0161592	0.00358627
+hypothetical protein	2.32874e-06	5.03451e-07
+type II and III secretion system protein, partial	7.94745e-06	3.83665e-06
+UniRef50_H2JSU9	5.19962e-05	0.000255426
+hypothetical protein	3.31681e-05	6.28649e-06
+Aspartate  tRNA ligase	0.000342632	7.04195e-05
+Nucleoside diphosphate kinase	0.000162861	9.81816e-05
+Exoenzyme S synthesis regulatory protein ExsA	0.000129775	0.00017993
+Signal transduction histidine kinase	0.0128341	0.00073678
+Adenylyltransferase and sulfurtransferase MOCS3	8.49687e-06	4.0554e-06
+NnrU family protein	0.0226922	0.00135064
+DNA polymerase	0.00335237	0.000294337
+Butyrate kinase	0.000753661	0.00116959
+Holliday junction ATP dependent DNA helicase RuvA	6.5499e-06	8.51919e-05
+sugar ABC transporter ATP binding protein	3.32631e-05	1.32432e-05
+Phosphoglycerate mutase	0.0136201	0.000844679
+tRNA uridine 5 carboxymethylaminomethyl modification protein	1.50187e-05	6.12929e-06
+Ferric mycobactin receptor, FemA	0.000540559	4.43382e-05
+hypothetical protein	0.00033357	6.50008e-05
+Galactose 1 phosphate uridylyltransferase	0.0046136	0.00446825
+DNA helicase, UvrD REP family	0.00211148	0.000385418
+Acetylornithine aminotransferase	3.62529e-06	0.000462549
+Chemotaxis response regulator protein glutamate methylesterase	7.16214e-05	4.17183e-06
+UniRef50_B7GSK0	0.000527357	0.000871642
+calcium ABC transporter ATPase	1.19691e-05	7.95554e-06
+BcepGomrgp35	9.63723e-06	1.20903e-05
+UniRef50_Y8DMX3	0.000144191	2.13379e-05
+glycerophosphoryl diester phosphodiesterase	1.45606e-05	5.21529e-06
+D galactonate dehydratase family member Ent638_0932	0.000307604	0.0011418
+Extracellular matrix binding protein	0.0014518	9.68103e-05
+DNA polymerase II large subunit	0.00346547	0.000537995
+2 oxoisovalerate dehydrogenase	2.81118e-06	2.372e-05
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial	2.83504e-05	4.35514e-06
+hypothetical protein	1.18736e-05	0.00039819
+PTS system, mannitol specific IIC component	5.37046e-05	0.0026374
+hypothetical protein	6.50075e-06	5.12872e-06
+Taurine binding periplasmic protein	0.00250269	0.000547372
+Metal dependent phosphohydrolase	0.000312734	0.000388803
+Toxin antitoxin system, antitoxin component, HicB family	5.69725e-05	0.000108541
+hypothetical protein	7.63259e-05	6.71173e-05
+UniRef50_K0R8M8	2.68978e-05	4.42343e-05
+Acyl CoA dehydrogenase	0.000273802	0.000157933
+Phage integrase family protein	0.000403858	0.0014728
+zinc ABC transporter ATPase	4.52294e-06	1.81872e-06
+UniRef50_M9VF55	0.000294357	0.00310274
+hypothetical protein	2.91455e-05	5.11417e-05
+Uridylate kinase	1.51799e-05	8.20065e-06
+UniRef50_Q52742	0.000210873	1.91503e-05
+hypothetical protein AURDEDRAFT_182094	4.60575e-05	1.88659e-05
+Transcriptional regulator, AraC family	0.00916266	0.00219867
+Elastin binding protein EbpS	0.00665983	0.000896955
+Transcriptional regulator, GntR family	0.014988	0.00299042
+UniRef50_D8HFV1	0.0180666	0.00347328
+hypothetical protein	8.98071e-06	5.85307e-06
+UniRef50_B8A150	8.55927e-05	0.000241385
+PREDICTED	4.47521e-05	5.76925e-06
+Arabinose efflux permease family protein	0.000561993	0.00123878
+UniRef50_O41971	1.39979e-05	8.3249e-06
+hypothetical protein	3.7755e-05	0.000234001
+UniRef50_F0YD72	0.000151984	0.000190579
+Transcriptional regulator 	0.000713332	0.000691718
+Elongation factor Tu	0.0125035	0.00187613
+Probable cyclic pyranopterin monophosphate synthase accessory protein	0.00287137	0.000540873
+nuclease PIN	5.43349e-06	1.43268e-05
+UniRef50_U5NMR3	0.00549074	0.000440122
+UniRef50_I0C1G6	0.0160488	0.00121893
+3D G5 domain protein	0.000257902	0.000462606
+Phosphonates import ATP binding protein PhnC	3.60825e-05	7.06545e-06
+AsnC family transcriptional regulator	0.000109019	2.05755e-05
+HI0933 family protein	0.00010382	0.000153585
+Putative aldehyde dehydrogenase SAUSA300_2076	0.0106538	0.0010617
+Putative membrane protein	0.000417047	0.000317255
+UniRef50_I0IAE1	9.33438e-05	8.74071e-06
+Sodium	0.000105171	0.00104611
+UniRef50_Q6ABT4	0.000999649	0.00118138
+Putative zinc binding oxidoreductase	9.26339e-05	5.70179e-05
+UniRef50_V9AUV8	1.49625e-05	5.48957e-06
+ppGpp synthetase I SpoT RelA (Fragment)	8.69492e-06	1.333e-05
+UniRef50_Q9I3X3	0.000741431	0.000155876
+Pyridine nucleotide disulfide oxidoreductase	0.00017584	0.00310305
+adenylate kinase	7.53371e-06	3.15586e-05
+alanine glycine permease, partial	3.70126e-05	0.00191184
+Non canonical purine NTP pyrophosphatase	0.000182417	1.61796e-05
+Chemotaxis protein methyltransferase 2	5.44807e-05	2.34487e-05
+Acetolactate synthase	0.0250516	0.00747096
+UniRef50_Q1LCM1	0.0168244	0.00215812
+hypothetical protein	5.01983e-06	2.91259e-05
+Efflux transporter, RND family, MFP subunit	0.00233118	0.00044581
+Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome	0.000210252	4.5313e-05
+excinuclease ABC subunit A	6.12443e-06	8.53617e-06
+hypothetical protein	1.74852e-05	9.66356e-06
+UniRef50_A6V0D0	4.60365e-05	0.00464221
+UniRef50_Y6JBS8	0.000194133	3.26296e-05
+Signal transduction histidine kinase	0.000180616	0.00224694
+Exodeoxyribonuclease V gamma subunit	0.00280484	0.000427083
+UniRef50_C5Y406	0.000111736	4.62941e-05
+Membrane protein	0.0141836	0.00234782
+Coenzyme A disulfide reductase	0.00857318	0.00124434
+3 phosphoshikimate 1 carboxyvinyltransferase	3.99268e-06	3.85286e-06
+Diaminopimelate decarboxylase	5.65102e-06	0.00335787
+3 dehydroquinate dehydratase	1.04465e-05	2.77511e-05
+Aryl phospho beta D glucosidase BglH	0.000205973	0.00113756
+Aspartate semialdehyde dehydrogenase	2.56368e-05	0.00286997
+Isoleucine  tRNA ligase	5.45983e-05	0.00203101
+Marine sediment metagenome DNA, contig	1.40952e-05	2.96648e-05
+Amino acid amide ABC transporter membrane protein 2, HAAT family	0.00902648	0.00158665
+Protein Veg	0.00173568	0.000344003
+ApbE family lipoprotein	0.000140034	0.00165191
+UPF0403 protein SAR1592	0.0295722	0.00950511
+UniRef50_Q6FB03	0.000320082	0.00281265
+D alanine aminotransferase	0.0153244	0.0013603
+Restriction endonuclease	0.000277375	0.000180654
+UniRef50_Q6FB06	7.17119e-05	0.000485537
+Putative allantoin permease	0.00286994	7.67392e-05
+sugar ABC transporter substrate binding protein	4.74126e-06	1.53277e-05
+UniRef50_R8ZKN1	0.000205825	0.00016862
+UniRef50_Q9RZ80	0.000150919	0.0249052
+hypothetical protein	0.000421402	2.77786e-05
+hypothetical protein	3.51207e-06	4.58823e-06
+Dehydrogenase	0.0186737	0.00259602
+hypothetical protein	4.41766e-05	9.62469e-06
+Peptidyl tRNA hydrolase	7.25742e-05	1.98758e-05
+molybdenum cofactor synthesis 1 isoform 1	8.30149e-06	1.52425e-05
+Nonribosomal peptide synthase	0.000107419	0.00115307
+hypothetical protein	1.50172e-05	5.08186e-06
+FAD binding molybdopterin dehydrogenase	0.000113942	0.000215401
+Sorbitol 6 phosphate 2 dehydrogenase	0.00555442	0.000252205
+LamB YcsF family protein	0.000145414	2.8399e-05
+UniRef50_F0L271	0.000152502	2.73623e-05
+1 phosphofructokinase, partial	3.95634e-05	0.000167008
+L ribulose 5 phosphate 4 epimerase UlaF	0.00873376	0.00278097
+Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	0.00831118	0.0015072
+Shikimate dehydrogenase	2.13517e-05	1.05731e-05
+UniRef50_C5N6P2	0.00345735	0.00123188
+UniRef50_B6FWG5	0.000523412	0.00139177
+hypothetical protein	0.000222328	7.78616e-05
+Glutathione dependent formaldehyde activating enzyme	0.000119007	1.75497e-05
+40 residue YVTN family beta propeller repeat protein	0.000296373	0.000539745
+Nogalamycin resistance protein SnorO	3.03907e-05	1.1112e-05
+N acetyl gamma glutamyl phosphate reductase	0.0073408	0.00101714
+Ribonucleoside diphosphate reductase 2 subunit beta	0.00224187	0.00181591
+delta aminolevulinic acid dehydratase	9.12636e-06	9.77869e-06
+UniRef50_M7ADI3	1.55465e-05	1.16003e-05
+Hydrolase, HAD superfamily	0.00234072	0.000395854
+UniRef50_K0R081	3.07317e-05	0.000173747
+UniRef50_J0F9K3	0.0096535	0.00364004
+Thymidylate kinase	0.00537124	0.00138341
+Aminoglycoside phosphotransferase	0.0003836	0.00043235
+ABC type spermidine putrescine transport system, ATPase component	0.000206418	0.00505787
+hypothetical protein	4.17498e-06	4.42613e-06
+Lipid A disaccharide synthase	0.000251749	0.000121825
+Amidophosphoribosyltransferase	7.29901e-06	5.6247e-05
+UniRef50_J9P1J0	2.03703e-05	1.02135e-05
+Cysteine synthase	0.000771231	0.000250891
+RND transporter	0.000311135	0.00415225
+microcin ABC transporter permease	4.47802e-05	8.40179e-06
+ABC transporter, permease component	0.0036263	0.00027202
+Glycine betaine L proline ABC transporter permease substrate binding protein	0.00209258	5.95785e-05
+Na translocating NADH quinone reductase subunit E	0.000106055	4.57763e-05
+iron transporter FeoB	1.24094e-05	2.00371e-06
+UniRef50_A6M1E2	0.000115583	0.000602028
+NADH quinone oxidoreductase subunit B 2	2.12136e-05	8.62421e-05
+MltA interacting protein	0.00360923	0.000337537
+Uridine cytidine kinase B	6.90278e-06	4.34559e-05
+Putative 3 methyladenine DNA glycosylase	0.000721175	0.00444331
+UniRef50_B1ZDM1	3.57277e-05	5.57144e-06
+AP endonuclease	8.13496e-05	3.81099e-05
+Cysteine  tRNA ligase	4.08235e-06	5.85206e-06
+UniRef50_N3MBX3	0.00058682	0.00012627
+Putative type VI secretion protein VasE	5.56594e-06	4.65726e-06
+UniRef50_A7FB19	8.4348e-05	0.00103674
+Methionine synthase 	0.0055637	0.00151602
+UniRef50_M4R2Z9	2.21396e-05	0.000248604
+Complete genome; segment 8 17	0.000164706	0.00324008
+UniRef50_V4JEN2	0.000478999	6.19652e-05
+Sporulation initiation inhibitor protein Soj	2.99014e-06	1.55559e-05
+UniRef50_E4B644	7.61494e-05	0.000381481
+methyltransferase	3.06186e-05	0.000361497
+Histidine ammonia lyase	0.000155224	0.00948428
+Type IV prepilin peptidase	0.00490342	0.00123602
+DNA protection during starvation protein	0.000408899	0.00173203
+Glycerophosphoryl diester phosphodiesterase	8.60738e-05	0.000358526
+4 phosphoerythronate dehydrogenase	0.00105958	0.00148627
+UniRef50_W7U7T7	0.00021677	0.000138194
+UniRef50_M3YRF2	1.53998e-05	4.35329e-06
+3 keto L gulonate 6 phosphate decarboxylase SgbH	0.0020836	0.00053654
+Putative zinc metalloprotease SA1105	0.0117289	0.00229357
+Ribonuclease P protein component	0.000280457	0.000285939
+UniRef50_D3HGD1	0.00840817	0.00043278
+Acyl CoA thioesterase I	0.00174891	0.00055587
+Chromosome partitioning protein	3.53645e-06	0.00209716
+TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor	0.0107487	0.00147029
+hypothetical protein	1.21227e-05	3.57726e-05
+UniRef50_F4M5Y2	9.37911e-05	7.50813e-05
+UniRef50_K0T360	9.40468e-06	8.65849e-06
+Os08g0101500 protein 	0.00032862	0.000142044
+hypothetical protein	9.57861e-05	0.000124265
+hypothetical protein	1.67397e-05	8.36223e-05
+UniRef50_U6MJL8	0.000157478	3.10709e-05
+Anaerobic ribonucleoside triphosphate reductase	0.000317814	0.000979485
+hypothetical protein	2.00876e-05	1.94417e-05
+Ribosomal RNA small subunit methyltransferase H	1.00671e-05	4.14567e-06
+HTH type transcriptional regulator DsdC	0.00219517	9.81255e-05
+hypothetical protein	8.98932e-06	9.77371e-06
+hypothetical protein	3.23505e-06	0.000238133
+hypothetical protein	2.57194e-05	3.55838e-06
+UniRef50_T0IDY3	5.32898e-05	5.36986e-05
+Metal ABC transporter substrate binding lipoprotein	0.0037939	0.00440874
+hypothetical protein	4.40239e-06	1.28354e-05
+hypothetical protein	5.02552e-05	0.00142737
+Methyl accepting chemotaxis protein	1.11071e-05	1.01445e-05
+Transposase, IS4 family	4.54546e-05	6.8474e-06
+UniRef50_G9A7N2	1.69167e-05	1.86747e-05
+UniRef50_G3XD65	0.00161594	0.000172996
+UniRef50_D5AU05	2.78057e-05	1.89036e-05
+UDP glucose 6 dehydrogenase	2.25562e-05	1.07312e-05
+UniRef50_D5AU02	0.0133614	0.00115508
+Nitrogen regulation protein NIFR3	3.14554e-05	4.00754e-05
+UvrABC system protein C	0.0125667	0.00457785
+hypothetical protein	1.32015e-05	0.000157547
+Cation transporting P ATPase PacL	0.00208413	0.000437909
+UniRef50_Q07ML1	0.00123383	9.85564e-05
+Hypoxanthine phosphoribosyltransferase	0.000217128	0.00121454
+MIP family channel proteins	0.00624444	0.000304101
+Phage colicin tellurite resistance cluster TerY protein	0.00253354	0.000695149
+Peptidase U35, phage prohead HK97	2.37349e-05	1.78961e-05
+Replication protein 	0.000109451	3.4793e-05
+PREDICTED	1.45754e-05	4.32058e-06
+Glutamate  tRNA ligase	3.84952e-06	3.0311e-06
+Carboxymuconolactone decarboxylase	0.00555596	0.00132502
+UniRef50_A6QIG4	0.00165906	0.000908754
+DNA packaging protein NU1 homolog	0.00180356	0.00014865
+Glutamine  tRNA ligase	0.00219616	0.000410335
+Homoserine O acetyltransferase	1.03386e-05	1.36436e-05
+UniRef50_Q5HIW9	0.0151497	0.00159784
+Dipicolinate synthase subunit A	5.46857e-05	0.000441443
+RNA splicing ligase RtcB	8.59273e-05	0.00587225
+UniRef50_A6LYE0	0.00100452	0.00116875
+Mll4969 protein	1.35393e-05	7.19933e-07
+S ribosylhomocysteine lyase	1.36299e-05	0.00191299
+N5 carboxyaminoimidazole ribonucleotide mutase	3.43333e-05	3.05949e-05
+UniRef50_M9VMX1	0.000155092	0.00431335
+Methionine aminopeptidase 2	0.000148696	0.00380584
+UniRef50_A3PGE5	0.0155964	0.00151123
+ABC polyamine transporter, periplasmic substrate binding protein	0.00941622	0.000800391
+Diguanylate cyclase	0.000130783	0.000556775
+ATP synthase subunit alpha, mitochondrial	0.00942607	0.00758159
+Signal recognition particle protein	9.05512e-05	0.00252746
+CG6695, isoform B	2.73563e-05	6.75243e-06
+Carbonic anhydrase 1	0.00337495	0.00108741
+30S ribosomal protein S4	0.00272945	0.000772363
+Nicotinate phosphoribosyltransferase	2.67342e-06	3.28431e-06
+Agmatinase	0.000575016	0.000129187
+multidrug ABC transporter ATP binding protein	5.41831e-06	1.32811e-05
+TonB dependent siderophore receptor	0.00064629	0.000400775
+Small conductance mechanosensitive channel	0.00584573	0.00139542
+Aquaporin Z	0.00417614	0.00136853
+UniRef50_UPI000329DC11	1.48837e-06	6.00143e-06
+hypothetical protein	1.84203e-06	2.65948e-06
+UniRef50_K0UFN2	9.58815e-05	0.000350657
+hypothetical protein	0.000152119	5.57531e-05
+Proline rich extensin like family protein	4.84096e-05	1.07518e-06
+thioredoxin	5.18514e-05	2.16296e-05
+UniRef50_Q9RXQ6	0.000158004	0.0325173
+Chemotaxis response regulator protein glutamate methylesterase of group 1 operon	6.40319e-05	4.80226e-06
+Motility protein A	0.0120679	0.000875162
+chemotaxis protein	4.18361e-05	6.15962e-06
+SagD family bacteriocin biosynthesis protein	4.02783e-06	1.05221e-05
+UniRef50_I1F0D0	2.60534e-05	4.22411e-05
+Extracellular matrix protein binding protein emp	0.0100764	0.000697593
+hypothetical protein	1.32744e-05	4.85205e-05
+UniRef50_A0A011RWZ7	9.94725e-05	8.94271e-05
+Outer membrane protein expression inhibitor	0.000103025	0.000254892
+Periplasmic protein CpxP	0.00733099	0.00104843
+Phosphoesterase	4.11475e-05	0.000220602
+UniRef50_A6LZM9	0.000109625	0.000866769
+6 phospho beta glucosidase AscB	0.00713306	0.00573288
+UniRef50_P43984	0.0110392	0.000552494
+30S ribosomal protein S1	0.000120843	0.00320253
+Staphylokinase	0.00668799	0.00073519
+Beta lactamase co inducer 	0.00115221	0.000154926
+hypothetical protein	7.73451e-06	2.91785e-06
+Putative manganese efflux pump MntP	0.00252224	0.00059069
+ABC transporter ATP binding protein	0.0031193	0.000583683
+UniRef50_A4WVG7	0.000246533	0.000126297
+Putative prophage CP4 6 integrase	0.00151287	0.000308681
+UniRef50_F3SV15	0.000736397	0.000367971
+UniRef50_A4WVG4	0.00682872	0.000223902
+UniRef50_Q6F7B6	0.000319339	0.00488309
+UniRef50_R5K1D1	0.0010105	0.00298877
+Excinuclease ABC, A subunit	1.69382e-05	6.51073e-06
+Foldase protein PrsA	0.0129107	0.00182636
+Peptidase M14, carboxypeptidase A	0.00177395	0.00144379
+cytochrome bd I ubiquinol oxidase subunit 2 apoprotein	4.09475e-06	6.907e-06
+Binding protein dependent transport systems inner membrane component	0.00965732	0.000985174
+UniRef50_K1ZWG6	8.83006e-05	0.00011617
+hypothetical protein	8.87967e-06	0.000909104
+B type flagellin	0.00071723	0.000347114
+hypothetical protein	4.73391e-05	6.69191e-06
+N5 carboxyaminoimidazole ribonucleotide mutase	6.45255e-05	4.34487e-05
+Elongation factor Ts	0.000198359	0.0240353
+phosphoenolpyruvate synthase	2.11483e-06	5.14808e-05
+UniRef50_F7ZIC0	4.56957e-05	7.73068e-06
+NAD kinase	0.00185434	0.000128816
+UniRef50_A6LTP4	0.000520436	0.000155606
+Oligopeptide transport ATP binding protein OppF	0.014655	0.00225251
+Acetolactate synthase small subunit 1, chloroplastic	1.06276e-05	0.000137648
+Predicted protein	0.000659372	0.000180868
+Histidinol dehydrogenase	3.93896e-06	3.2747e-06
+Diacylglycerol kinase	0.0203468	0.00243361
+Formate hydrogenlyase transcriptional activator	0.00191359	0.000150719
+Exonuclease SbcD, putative	0.000245361	0.0110675
+ComG operon protein 4	0.00341745	2.00221e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000246456	0.00204319
+Transcriptional regulator	0.0018724	0.000143656
+UniRef50_F0YAA2	0.000200189	0.000136471
+UniRef50_P75910	0.0019138	0.00183122
+DNA ligase	0.00302224	0.00018094
+Gas vesicle synthesis GvpLGvpF	0.0147332	0.00190872
+Adhesin like protein	0.00241228	0.000334999
+Chromosome partitioning ATPase, putative, ParA family	8.81907e-05	0.00720604
+Predicted oxidoreductases of the aldo keto reductase family	0.00347009	0.000592379
+Nucleotidyltransferase DNA polymerase involved in DNA repair	7.79048e-05	0.000235279
+Uridylate kinase	7.70347e-06	5.33418e-06
+Aida related Type V secretory pathway adhesin	5.24219e-05	0.000833199
+Lysine  tRNA ligase	3.29491e-06	5.74878e-06
+Serine hydroxymethyltransferase 2, mitochondrial	3.68597e-05	9.51026e-06
+Phage baseplate assembly protein	0.00112078	0.000181751
+hypothetical protein	1.67533e-05	0.000138676
+UniRef50_X1YA55	4.72285e-06	7.99011e-06
+hypothetical protein	1.65722e-05	1.54825e-05
+UniRef50_N8D5Y6	0.00175106	7.25053e-05
+Putative transposase	0.000207232	4.97323e-05
+hypothetical protein	9.11123e-05	4.65971e-05
+hypothetical protein	0.000286845	9.89178e-05
+Superoxide dismutase [Mn] 3 	5.92129e-06	1.45083e-05
+DNA polymerase III, alpha subunit	0.00832675	0.00211147
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.000630932	0.00146861
+Citrate transporter	0.000242925	0.00116458
+tRNA N6 adenosine threonylcarbamoyltransferase	0.000135295	0.000517772
+UniRef50_U7NE48	5.39419e-06	4.48924e-06
+glutathione ABC transporter permease, partial	0.000438556	6.702e-05
+UniRef50_D4HAW3	0.000203969	0.000772825
+Fructokinase	0.0110147	0.000962807
+hypothetical protein	1.67752e-05	1.54423e-05
+hypothetical protein	5.37746e-05	1.53108e-05
+PREDICTED	2.20767e-05	1.79114e-05
+UniRef50_A1B402	1.7057e-05	3.348e-05
+ABC transporter ATP binding protein	2.09154e-05	4.50015e-06
+membrane protein	6.14857e-06	1.36347e-06
+Putative AgrB like protein	0.000181265	0.00046305
+UniRef50_H0G932	0.000407523	0.000121614
+UniRef50_X5EAP1	0.00130084	0.00023632
+Replication initiator protein A	0.0036639	0.00724906
+UniRef50_V4JMR5	0.000204995	5.08815e-05
+UniRef50_Q2G8P8	6.5291e-05	1.99862e-05
+dTDP 4 dehydrorhamnose 3,5 epimerase	0.00836495	0.00135241
+Alkylmercury lyase	0.0122709	0.00264351
+Ribonuclease D	0.000175325	9.62324e-05
+N5 carboxyaminoimidazole ribonucleotide synthase	5.6468e-06	4.52477e-06
+CAAX amino terminal protease family protein	0.006137	0.000199966
+AraC type transcriptional regulator family protein	1.10655e-05	4.1239e-05
+hypothetical protein	3.8842e-05	5.74632e-05
+ketol acid reductoisomerase	1.06395e-05	6.06452e-06
+UniRef50_G8REC3	3.62099e-05	3.81145e-05
+YhgE Pip domain protein	3.22128e-06	2.4866e-06
+threonyl tRNA synthetase	5.34116e-05	0.000261636
+UniRef50_Q9PD20	3.47887e-06	6.33944e-06
+tRNA dimethylallyltransferase	0.00458871	0.00208263
+Phosphoribosylformylglycinamidine cyclo ligase	4.8605e-06	4.67727e-06
+Alpha beta hydrolase fold protein	0.000446955	0.0172322
+DNA repair protein RecN	7.15047e-05	0.00174772
+hypothetical protein	1.62472e-05	5.62877e-05
+Guanylate kinase	0.000961567	0.000617846
+hypothetical protein	5.06929e-06	5.19035e-06
+glycosyltransferase	5.06981e-05	1.12392e-05
+MerR family transcriptional regulator	0.000157743	1.7814e-05
+Type 2 DNA topoisomerase 6 subunit B	0.00187664	6.81738e-05
+MATE efflux family protein	0.00523895	0.00130472
+SpoVR family protein	1.32136e-05	0.000136723
+Transcriptional regulator, TetR family	0.0228803	0.00162132
+UniRef50_A7ZJW5	0.0015632	0.000508286
+Lactoferrin binding protein A	7.9512e-05	0.00200571
+Lysine  tRNA ligase	0.00172629	0.000306103
+Ribosomal RNA large subunit methyltransferase E	2.61139e-05	1.66336e-05
+UniRef50_A6LUF8	0.000170548	0.00028622
+hypothetical protein	5.64656e-05	1.40404e-05
+PREDICTED	3.07025e-05	3.94484e-05
+UniRef50_G7M8A4	0.000114994	0.000545137
+NADH quinone oxidoreductase subunit B 1	2.9255e-05	5.89067e-05
+Putrescine transport system permease protein PotH	0.00173829	0.000573404
+Hydrogenase urease accessory protein	3.66647e-05	6.55823e-06
+UniRef50_Q3JXY3	4.39915e-05	0.000183005
+phosphopentomutase, partial	2.69929e-05	1.50874e-05
+Electron transport complex subunit RsxC	0.00170848	0.000518794
+PREDICTED	5.49568e-06	2.87394e-07
+UniRef50_W9T5C9	7.21411e-06	6.84344e-05
+4 alpha glucanotransferase	1.12159e-05	0.000348552
+Transposase	0.00250784	6.08711e-05
+Valine  tRNA ligase	6.35492e-06	1.87222e-06
+Zinc transporter ZitB	0.00441215	0.000346441
+UPF0249 protein Cbei_4037	0.000477508	0.000432435
+Spermidine putrescine import ATP binding protein PotA	0.000426168	0.000756726
+2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase	0.000237006	0.000838609
+hypothetical protein	3.39101e-06	3.29294e-06
+UniRef50_F8XHG2	0.000140421	5.22511e-05
+4 aminobutyrate aminotransferase	0.0164467	0.00349737
+Aliphatic amidase regulator	0.00218861	0.00103417
+Transferase	0.000185597	0.00343038
+Putative transcriptional regulator	4.55645e-05	6.1452e-06
+ABC transporter	1.14226e-05	9.24453e-06
+Alcohol dehydrogenase	0.000255247	0.0111468
+LysR family transcriptional regulator	0.000146964	0.00305018
+UniRef50_A0A012DIE8	6.00036e-05	1.01354e-05
+Putative N acetylgalactosamine permease IIC component 2	0.000529027	0.000675074
+UniRef50_B9JHG8	0.00447124	0.00155585
+Chorismate synthase	4.0219e-06	7.10074e-06
+ABC transporter related	0.00241042	0.000109896
+ATP dependent RNA helicase	2.25091e-06	2.8739e-05
+UniRef50_E5QR85	0.00805044	0.000382543
+Anti sigma B factor RsbT 	6.21546e-05	0.00129898
+Poly beta 1,6 N acetyl D glucosamine export porin PgaA	0.00125937	0.000136612
+NADH quinone oxidoreductase subunit D 1	1.37758e-05	4.01978e-05
+chemotaxis protein	5.64026e-05	5.09582e-06
+UniRef50_D3P499	7.43391e-05	1.16285e-05
+Aminopeptidase Y	0.000723143	0.000128337
+NrdI protein	1.05144e-05	2.71305e-05
+UniRef50_D7BFI6	0.000375333	0.026956
+Beta barrel assembly enhancing protease	0.00251667	0.000472586
+Competence protein ComEC, putative	0.0075979	0.000943892
+D 3 phosphoglycerate dehydrogenase	0.0152087	0.00163145
+hypothetical protein	0.000267461	0.00011575
+Integral membrane protein MviN 	5.89161e-05	2.3909e-05
+UniRef50_F3ZC85	2.76047e-06	2.88837e-05
+DNA uptake protein	0.000203589	0.000301142
+Type II secretion system protein D	0.00164175	0.000437688
+Ribonuclease HII	0.000284808	0.00110067
+Chemotaxis response regulator protein glutamate methylesterase	0.000738792	0.00134309
+UniRef50_A3VZA4	0.00278475	0.000410029
+hypothetical protein	9.82122e-06	6.09967e-05
+Modulator of DNA gyrase family protein	0.000428802	0.000563866
+UniRef50_W1YWP9	6.08302e-05	0.00132045
+ParB family protein	0.000146573	1.67264e-05
+UniRef50_M9WZ57	4.77595e-06	8.88064e-06
+Tyrosine protein kinase etk	0.00256494	0.000370183
+Predicted protein 	0.000320202	2.07932e-05
+Enolase	9.96284e-06	0.00147197
+Methylmalonyl CoA epimerase	4.58012e-05	1.3477e-05
+UniRef50_D8AI56	0.000360109	0.000190025
+Protease Do	0.00596247	0.00066489
+UniRef50_A7M2I7	0.000101043	3.0709e-05
+Anthranilate synthase component 2	9.18218e-06	0.000491815
+hypothetical protein SMAC_10559	6.54892e-05	1.32182e-05
+Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family	0.00236415	0.000348603
+D alanine  poly ligase subunit 1	8.66649e-05	0.000483382
+2 keto 4 pentenoate hydratase	0.00204342	4.48405e-05
+hypothetical protein	4.29577e-06	3.94227e-06
+hypothetical protein	0.0001323	8.86186e-05
+PREDICTED	6.29064e-06	4.99633e-05
+Exported protein	0.00962074	0.000849677
+hypothetical protein, partial	1.00629e-05	1.5455e-05
+ATP synthase subunit a	0.00629908	0.000898246
+UniRef50_W6EGR2	0.0286414	0.00210696
+ABC transporter permease protein	0.000157511	0.000786398
+Polymorphic outer membrane protein repeat  (Fragment)	0.00312432	0.000695082
+UPF0125 protein Mfla_1143	1.78327e-05	1.55807e-05
+Biotin carboxylase	0.00305921	0.00135369
+Phosphopantetheine adenylyltransferase	0.00348154	0.00112582
+FCD domain protein	0.000156777	0.00229238
+D hydantoinase	0.00125785	0.000199335
+UPF0225 protein Franean1_5815	1.31452e-05	4.33118e-05
+Aspartate ammonia lyase	0.00331357	0.00113164
+UniRef50_B9TEB7	0.000205675	7.8731e-06
+serine threonine protein kinase	4.55282e-06	0.000563385
+Inner membrane protein YjiG	0.00383136	0.00200911
+BKRF1 encodes EBNA 1 protein like	1.97299e-05	0.000108044
+Cis 2,3 dihydrobiphenyl 2,3 diol dehydrogenase	1.07727e-05	6.57471e-06
+UniRef50_P77288	0.00126742	0.00130123
+UvrB UvrC domain protein	0.0146585	0.00281298
+3 isopropylmalate dehydrogenase	5.48174e-05	0.00487219
+hypothetical protein	0.000118994	4.13162e-05
+Sua5 YciO YrdC YwlC family protein	0.0194251	0.00349805
+UniRef50_Q28W83	9.34696e-05	1.00534e-05
+ketol acid reductoisomerase	6.5791e-06	1.11912e-05
+SAF domain family	0.000121791	0.000111396
+Outer membrane OprD family porin	0.000861109	0.00121645
+DNA single strand annealing protein 	2.75599e-05	4.0448e-05
+RecBCD enzyme subunit RecC	6.32861e-05	5.59987e-05
+Lon protease	0.000558632	0.000441357
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	5.61786e-05	1.75025e-05
+Replication protein C	2.3312e-05	2.6883e-06
+Type II secretion system protein K	0.000105501	0.00350888
+UniRef50_R0DQ91	2.15145e-05	3.08462e-05
+hypothetical protein	3.49127e-06	0.000209689
+hypothetical protein	2.33375e-05	6.72926e-06
+hypothetical protein	4.10203e-05	5.64537e-06
+Holliday junction ATP dependent DNA helicase RuvA	0.0033859	0.000980148
+Phenol hydroxylase	0.000878777	0.000335511
+hypothetical protein	2.35525e-06	2.75567e-05
+UniRef50_A5UNK2	0.00319584	0.000245314
+4 hydroxy tetrahydrodipicolinate synthase	0.000142204	0.00252245
+Dihydroorotase	3.70533e-06	0.000990541
+RNA ligase of LigT family	0.00033543	0.00991478
+Thymidylate synthase	2.37646e-05	4.77584e-05
+Single stranded DNA specific exonuclease RecJ	4.5893e-05	0.000140263
+histidine kinase	2.91038e-06	8.36688e-06
+relaxase	1.2636e-05	2.66803e-06
+UniRef50_A0A033ZCU2	0.000156712	4.25782e-06
+UniRef50_P76481	0.00329407	0.00036068
+DNA 3 methyladenine glycosylase III	0.00203986	0.000162654
+UniRef50_Q02H50	0.000990603	0.000302016
+UniRef50_P76486	0.00112445	0.000144349
+UniRef50_P76485	0.000148896	0.000213266
+UniRef50_P76484	0.00424104	0.000177792
+Nitrite extrusion protein 	4.88922e-05	1.61019e-05
+Dimethlysulfonioproprionate lyase DddL	0.0177623	0.000699507
+Sel1 repeat protein	0.000309707	0.00347777
+DNA mismatch repair protein MutS	2.06707e-06	1.05499e-05
+UniRef50_A3JNX6	0.00021067	1.28613e-05
+UniRef50_R5AYM2	1.56363e-05	9.80956e-05
+UniRef50_A3JNX5	0.000278291	1.51661e-05
+amidohydrolase	5.38608e-06	1.94029e-05
+RNA polymerase subunit sigma 24	0.000106385	1.64953e-05
+BadF BadG BcrA BcrD ATPase family protein	0.00033532	0.00279487
+Na translocating NADH quinone reductase subunit E	1.31461e-05	2.17596e-05
+UniRef50_S4XM14	6.45382e-06	2.62653e-05
+Segregation and condensation protein B	0.00493765	0.00080375
+thioredoxin	2.8882e-05	4.05764e-06
+Proline  tRNA ligase	4.82693e-06	7.80123e-06
+L serine dehydratase iron sulfur dependent alpha subunit	7.8643e-06	6.18429e-06
+UniRef50_S5YFS5	0.000204687	3.04046e-05
+UniRef50_Q1GN45	0.000458778	9.77342e-05
+UniRef50_A0A059LCY3	0.000119485	5.64005e-05
+UniRef50_D9SMI0	8.25291e-05	0.000491944
+RNA methyltransferase, TrmH family, group 1 family protein	0.000168555	0.00354569
+UniRef50_A0A023RS70	0.000673097	0.00329122
+Aldehyde dehydrogenase	7.92501e-05	0.0240441
+UniRef50_Q4EF29	0.000474938	0.000114098
+Energy converting hydrogenase A subunit L EhaL	0.00087766	0.000604612
+Type I phosphodiesterase nucleotide pyrophosphatase	8.95076e-05	0.00261867
+Glutamyl Q tRNA synthetase	6.8766e-06	5.80136e-06
+3 isopropylmalate dehydrogenase	4.45161e-05	0.000747235
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.130783	0.0158908
+hypothetical protein, partial	2.3942e-05	2.15497e-05
+Cobyrinic acid ac diamide synthase	3.64308e-06	1.39362e-05
+UniRef50_U7GP52	0.000444021	6.82978e-05
+Probable cobyric acid synthase	0.00164485	0.000642448
+hypothetical protein, partial	4.36911e-06	3.73779e-06
+UniRef50_A3PFT3	0.0107885	0.000989789
+UniRef50_L0A0P5	3.16409e-05	2.12687e-05
+Fe dicitrate binding periplasmic protein	0.00225521	0.000537814
+UniRef50_V6YIB9	1.03328e-05	4.6897e-05
+hypothetical protein	6.46419e-05	1.08513e-05
+UgpB	1.18595e-05	3.52307e-06
+PREDICTED	4.62077e-06	5.27862e-06
+Nitroreductase family protein	0.0335215	0.00266955
+UniRef50_A6QEY2	0.015901	0.00187051
+UniRef50_V4QDF6	9.80754e-06	7.45818e-06
+Heat shock protein DnaJ 	2.21987e-05	1.58327e-05
+UPF0457 protein SSP0714	0.00846304	0.000888959
+UniRef50_C7CIU9	0.000182579	2.31741e-05
+Maltose maltodextrin binding protein	0.000468775	0.0278911
+Fumarate hydratase class II	6.80607e-06	5.47123e-06
+Isoprenyl transferase	6.43771e-06	6.54258e-06
+hypothetical protein, partial	3.37979e-07	1.50781e-06
+Porin thermoregulatory envY domain protein	3.53017e-05	3.19914e-05
+hypothetical protein	1.41595e-05	2.5833e-06
+Putative inner membrane protein	9.31718e-06	9.26522e-06
+Chloramphenicol O acetyltransferase	0.0015062	0.000177792
+Leucyl phenylalanyl tRNA  protein transferase	1.46143e-05	2.0588e-05
+Thymidine phosphorylase	0.00245259	0.000454847
+UniRef50_A5UJ64	0.00153087	0.000312839
+Phosphopentomutase	1.24341e-05	7.68547e-06
+Replication initiation factor	0.000122978	0.00444986
+UniRef50_A0A034MYR1	0.00724981	0.000455838
+UniRef50_A4X046	3.69261e-05	9.27829e-06
+Fumarate hydratase, mitochondrial	6.85216e-06	1.4565e-05
+C4 dicarboxylate transporter malic acid transport protein	0.000231597	0.000683267
+methionyl tRNA synthetase	8.49921e-06	8.41032e-06
+UniRef50_A3M9C4	0.000103447	0.00273702
+2 isopropylmalate synthase	0.00774275	0.00161494
+hypothetical protein	0.000136091	2.53024e-05
+ABC transporter, fused ATPase and inner membrane subunits	0.0031019	0.000561209
+tRNA dimethylallyltransferase	6.55013e-06	4.49674e-06
+UniRef50_F8LKP2	0.00456805	0.00136015
+UniRef50_Q1QNK0	0.0185377	0.0048299
+Na+ solute symporter	0.00774553	0.00087948
+succinylglutamate desuccinylase	0.000124649	6.83913e-06
+UniRef50_A0A024RXB9	0.000550183	3.20634e-05
+Oxygen independent coproporphyrinogen III oxidase like protein YqeR	1.86365e-05	7.92452e-05
+hypothetical protein	2.94389e-05	7.17874e-06
+Acetyl coenzyme A synthetase	0.000113141	0.00197446
+hypothetical protein, partial	1.47372e-05	1.07002e-05
+Transposase IS4 family protein	5.02721e-05	8.48473e-06
+Ribosomal large subunit pseudouridine synthase B	0.00060603	6.12202e-06
+O ureido L serine synthase	5.15877e-05	4.9392e-06
+UniRef50_M3DVL4	8.08525e-06	2.10485e-06
+Transcriptional regulator	0.00368652	0.000500104
+Nitrite extrusion 1 domain protein	3.66803e-05	1.91597e-05
+DNA polymerase III subunit alpha	1.58468e-06	5.6668e-06
+Methyl accepting chemotaxis sensory transducer	0.000323557	0.000292223
+hypothetical protein, partial	2.79753e-05	2.3787e-05
+Tetrahydromethanopterin S methyltransferase subunit H	0.00410721	0.000213266
+hypothetical protein	3.35554e-05	1.33076e-05
+Phosphate acetyltransferase	3.23785e-06	6.55552e-06
+OpuCB protein	0.00832457	0.00291587
+GTP binding protein TypA	0.000358948	0.00280757
+hypothetical protein	7.1216e-06	1.24426e-05
+UniRef50_R7PVW1	0.00469075	0.000405259
+UniRef50_Q9RU45	5.7959e-05	0.000979796
+succinyl CoA synthetase subsunit alpha	7.15921e-06	3.17238e-06
+Glycine D amino acid oxidases family	0.00464344	0.00216823
+Protoheme IX farnesyltransferase	0.00316167	0.000475699
+MULTISPECIES	3.01825e-06	1.24613e-05
+Tellurium resistance protein	7.62528e-05	0.000143306
+UniRef50_A4WRY9	0.00529179	0.0150728
+N acetylmuramic acid 6 phosphate etherase	6.30882e-06	5.60881e-06
+UniRef50_S4MRC0	3.79323e-05	0.000404399
+Two component response regulator	0.0165519	0.00319206
+Hemin import ATP binding protein HmuV	2.09243e-05	0.000141382
+Ribulokinase	0.000141585	0.00210493
+hypothetical protein	3.25162e-05	7.09993e-05
+FDHD protein	0.00108228	0.000534909
+UniRef50_A1VV51	3.92486e-05	3.91372e-06
+Acyl CoA synthetase	0.000585199	0.000117336
+Pathogenesis related protein 1 like protein	4.24318e-06	2.17149e-05
+UniRef50_U3SRT7	0.00165187	0.000965573
+UniRef50_X7Z2N8	0.00191533	0.000947991
+BirA	0.00105652	0.00026728
+Diguanylate cyclase	0.000181428	0.000731434
+Putative ribitol 5 phosphate dehydrogenase	0.00834119	0.00103842
+UniRef50_A3JXP6	8.02834e-06	2.87415e-06
+DNA replication protein DnaD	0.00765976	0.00319154
+PREDICTED	4.46871e-06	4.14037e-05
+Tetratricopeptide TPR_2 repeat containing protein	0.000267077	0.000158914
+acetyl CoA acetyltransferase	4.84862e-06	7.89701e-05
+Lysine  tRNA ligase	0.0251734	0.00547902
+hypothetical protein	0.000319748	5.24993e-05
+Transposase, IS605 OrfB family	0.000123128	0.0207021
+hypothetical protein	3.25685e-06	4.56853e-06
+Kinase, PfkB family protein	0.000433423	0.0025123
+Transposase	0.000625368	0.000233945
+ABC transporter, periplasmic solute binding protein	0.00628588	0.000182751
+UniRef50_R9YM38	0.00304468	0.000525058
+UniRef50_H3USA6	0.0042663	0.00057859
+DNA binding protein	5.14255e-05	0.00016729
+UniRef50_D0WAX6	0.000154971	0.00089686
+DNA repair protein RadA 	6.50721e-06	3.0921e-05
+UniRef50_D3EY08	0.00774147	0.000367971
+Integral membrane protein	0.000164751	2.10636e-05
+Phage transcriptional regulator, RinA family	0.0214041	0.00148196
+Glutamate  tRNA ligase 2	4.06082e-06	6.59524e-06
+UniRef50_Q1QJ73	0.000104393	1.62184e-05
+Hemolysin type calcium binding protein	0.00323779	0.00050685
+N succinylarginine dihydrolase 1	1.24232e-05	2.37896e-05
+ATP synthase subunit beta 1	2.13053e-05	2.85337e-05
+ABC type metal ion transport system, periplasmic component surface adhesin	0.000345274	0.000206077
+Cyclic nucleotide binding domain protein	0.000168837	0.00194401
+hypothetical protein	1.48107e-05	6.64932e-06
+UniRef50_B9C0V9	4.84805e-05	0.000293108
+UniRef50_J0EHT6	0.025385	0.00316947
+hypothetical protein	6.03936e-05	7.45624e-06
+UniRef50_B9KQI2	0.00407359	0.000921795
+Zinc transport system ATP binding protein AdcC	0.00662776	0.0056179
+Fibronectin binding A domain protein	0.000245898	0.00105742
+multidrug transporter	3.15022e-06	6.18677e-05
+peptidyl tRNA hydrolase	1.58835e-05	2.24168e-05
+Acetolactate synthase small subunit 2, chloroplastic	1.6674e-05	0.000165367
+UniRef50_V7C557	2.17285e-05	4.19601e-07
+UniRef50_A6LYZ3	0.000211184	0.000408875
+UniRef50_B0V8I1	0.000101676	0.00256923
+Glucans biosynthesis glucosyltransferase H	0.00600007	0.000826076
+Orotate phosphoribosyltransferase	2.55533e-05	0.00195157
+Cysteine desulfurase IscS	0.00333113	0.000542029
+Phage integrase	0.000416854	0.00275161
+GE15000	7.1454e-05	6.36772e-05
+Hydroxymethylglutaryl CoA reductase	0.0232916	0.00274898
+Binding protein dependent transport systems inner membrane component	0.0165946	0.00161124
+PTS system mannitol specific EIICB component	6.4688e-06	0.000788779
+Ribose import ATP binding protein RbsA 1	5.1001e-05	3.3356e-06
+3 phosphoshikimate 1 carboxyvinyltransferase	0.0059914	0.00344052
+UniRef50_A3PN67	0.00450329	0.00110949
+Argininosuccinate synthase	3.15064e-06	3.46977e-05
+SsrA binding protein	0.0326825	0.00284411
+Valine  tRNA ligase	2.88368e-06	1.32298e-06
+Probable chemoreceptor glutamine deamidase CheD 2	3.48268e-05	8.82208e-06
+Anthranilate synthase component 1	0.000937134	7.00891e-05
+hypothetical protein	1.45018e-05	3.97466e-06
+hypothetical protein	2.05204e-05	2.17363e-06
+Ribosomal RNA large subunit methyltransferase E	0.000295088	5.20724e-05
+PREDICTED	9.23711e-06	8.4364e-06
+Transcriptional regulator, LysR family	0.00339736	0.000494551
+hypothetical protein	0.000162463	0.000106909
+transposase	9.1081e-05	0.00874253
+hypothetical protein	7.90268e-05	2.09881e-05
+Protoheme IX farnesyltransferase	6.86618e-06	0.00153519
+Hydroxyacid oxidase 1	4.49339e-06	5.07244e-05
+Response regulator receiver sensor signal transduction histidine kinase	0.000628852	0.000610864
+UniRef50_A4WXL5	0.00408302	0.000515056
+hypothetical protein	1.94998e-05	2.9194e-05
+hypothetical protein	0.00109101	0.000130535
+Alcohol dehydrogenase	0.000153209	0.00312526
+Isocitrate dehydrogenase, mitochondrial	0.000318752	6.9174e-05
+UniRef50_A0A038FV36	3.39828e-05	1.2993e-05
+hypothetical protein	1.80339e-05	0.000553864
+2 nitropropane dioxygenase NPD	0.000315117	0.00319246
+Putative branched chain amino acid aminotransferase	0.000115586	1.56793e-05
+hypothetical protein	1.44232e-05	1.91017e-05
+Sensor histidine kinase YesM	0.000324863	0.000883053
+Chemotactic signal transduction system component	0.000166879	0.00372886
+ABC type Fe3+ transport system, periplasmic component	9.89199e-05	4.17004e-05
+hypothetical protein, partial	0.000852702	0.0545391
+adenylosuccinate synthetase	2.34772e-05	1.22299e-05
+Spermidine putrescine import ATP binding protein PotA	0.00013454	3.07279e-05
+epimerase	5.75382e-06	2.13684e-05
+UniRef50_M9SCU9	0.000293502	0.000116001
+UniRef50_F7P1G2	4.41114e-05	1.52898e-05
+putative enterobactin synthetase component A 	4.68891e-06	6.04303e-06
+Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain	0.0111832	0.0217775
+UniRef50_Q02KY6	0.00286514	0.00415459
+30S ribosomal protein S8	0.00393393	0.000702861
+ABC transporter, ATP binding protein	0.00154292	0.00017996
+UniRef50_G8LHY7	0.00367166	0.000604867
+UniRef50_W4KP08	9.3292e-05	1.95843e-05
+Chromosomal replication initiator protein DnaA	0.000136355	0.00295674
+hypothetical protein	1.35459e-06	1.16902e-05
+hypothetical protein	7.28056e-05	2.95695e-05
+UniRef50_P39308	0.00276231	0.000124701
+Tryptophan  tRNA ligase	6.91668e-06	3.2292e-06
+NADH	8.28937e-05	0.00399504
+ABC transporter permease 	8.94718e-05	3.66365e-05
+Protein disulfide isomerase, thioredoxin related	0.0103655	0.00114728
+UniRef50_V2DIK3	2.99039e-05	1.57025e-05
+Peptidyl prolyl cis trans isomerase cyp18	0.000232102	0.000620333
+imidazoleglycerol phosphate dehydratase	0.00010143	1.17729e-05
+2 succinylbenzoate  CoA ligase	0.00790134	0.000630048
+UniRef50_A0A017HIG9	4.25902e-05	5.91401e-06
+Glyceraldehyde 3 phosphate dehydrogenase 2	4.46339e-05	8.73188e-06
+TRAP transporter solute receptor TAXI family protein	9.57525e-05	4.93645e-06
+DNA gyrase subunit A	2.19288e-06	2.15035e-06
+coproporphyrinogen III oxidase	7.5942e-06	4.80334e-06
+Putative hydrolase SMU_367	0.00250243	0.000789052
+hypothetical protein, partial	1.7017e-05	0.000102547
+glycosyltransferase family 4	9.17621e-06	1.40959e-05
+Conserved membrane protein	0.000235899	0.00276282
+PKD domain containing protein	3.52989e-06	1.83247e-06
+Putative hydroxypyruvate isomerase YgbM	0.00306944	0.000601074
+Major myo inositol transporter IolT	0.000352256	0.000962676
+Dihydrodipicolinate synthase	0.000786061	0.000889134
+hypothetical protein	1.28766e-05	6.5654e-06
+hypothetical protein	3.64499e-05	9.8622e-05
+Extracellular solute binding protein, family 3	0.000228556	0.00132463
+Acetolactate synthase small subunit	3.33739e-05	0.000324525
+UniRef50_Q1M3I8	0.00372569	0.000101223
+Membrane protein	7.65498e-05	0.00109441
+hypothetical protein	3.60479e-05	9.89938e-06
+tail fiber protein	2.45128e-06	4.53059e-06
+Cobyrinate a,c diamide synthase   hydrogenobyrinic acid a,c diamide synthase 	5.2402e-06	4.40375e-05
+hypothetical protein	6.63289e-05	2.75642e-05
+hypothetical protein	1.85175e-06	7.17116e-06
+Integral membrane protein MviN	3.29546e-05	1.47362e-05
+Serine hydroxymethyltransferase	0.000113664	8.45e-05
+Outer membrane porin protein	0.000207106	0.00436801
+hypothetical protein	1.09561e-05	8.52858e-06
+ABC type transporter, periplasmic subunit	2.87087e-06	1.96303e-05
+UniRef50_Q8CRR5	0.0106334	0.00175981
+amino acid ABC transporter permease	4.94857e-05	3.78638e-05
+UniRef50_U5NMU5	0.0128312	0.00129073
+UniRef50_U5NMU8	0.00529189	0.00146124
+Peptidoglycan binding LysM	0.000308577	0.0011799
+Peptidoglycan binding LysM	0.000215276	0.00270633
+UniRef50_D0DDK5	0.00187301	0.000171003
+UniRef50_Q26HR0	0.000266957	0.000193939
+Oxidoreductase	4.90209e-05	0.000154081
+Oxidoreductase	7.89402e-05	7.28773e-05
+hypothetical protein	5.54446e-05	5.82775e-06
+Prephenate dehydrogenase	0.0003689	0.001323
+ATPase	4.34886e-06	1.45465e-06
+NADPH dependent 7 cyano 7 deazaguanine reductase	0.00408315	0.0003561
+Adenosylhomocysteinase	0.00283698	0.000263481
+Bacteriocin biosynthesis cyclodehydratase, SagC family	0.00703826	0.00195278
+Probable GMP synthase [glutamine hydrolyzing]	1.29847e-05	7.8806e-06
+ATP phosphoribosyltransferase regulatory subunit	0.000104844	0.00541481
+Peptide deformylase	2.02726e-05	3.06959e-05
+PREDICTED	4.63168e-05	1.87835e-05
+hypothetical protein	9.05602e-06	1.87693e-05
+NADPH	0.000161028	0.000186679
+Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit	1.85663e-05	3.12798e-05
+NADH quinone oxidoreductase chain 10	0.000282373	3.8671e-05
+Electron transport complex protein RnfB	0.00052404	0.000628775
+hypothetical protein	7.00212e-05	1.31598e-05
+Guanosine 3,5 bis 3 pyrophosphohydrolase	4.14174e-06	1.45653e-06
+xanthine permease	1.12714e-06	4.05857e-05
+Periplasmic binding protein LacI transcriptional regulator	0.000330462	0.000630065
+UniRef50_D2JDC8	0.0507916	0.00546491
+Acetylglutamate kinase	4.2665e-05	8.48625e-06
+acetyl CoA carboxylase carboxyl transferase subunit alpha	6.62021e-06	1.63863e-05
+UniRef50_UPI0003C369DA	3.94638e-07	6.7536e-06
+Extracellular solute binding protein family 1	0.000181819	0.000686223
+Lipoprotein VsaC	0.00699218	0.00143174
+Transcriptional activator protein LasR	0.000455657	0.00012628
+Deoxyadenosine deoxycytidine kinase	0.0076506	0.000284599
+ketol acid reductoisomerase	3.07261e-06	3.34768e-06
+hypothetical protein	2.90573e-05	7.15237e-06
+UniRef50_A0A023VR15	0.00341028	0.000782162
+CreA family protein	0.000316832	9.5421e-05
+hypothetical protein	4.44763e-05	1.18369e-05
+Cell division protein ZipA	0.000313875	0.00131538
+Formyl coenzyme A transferase	0.00258186	0.000292424
+5 nucleotidase SurE	0.00109926	0.00013461
+Proton translocating NADH quinone oxidoreductase, chain M	1.42609e-05	1.81416e-05
+MULTISPECIES	4.41822e-06	4.05959e-06
+Putative long chain fatty acid CoA ligase VraA	0.0089569	0.00155384
+PREDICTED	3.88411e-06	5.1596e-06
+UniRef50_D2JC88	0.00244517	0.000195887
+Carbamoyltransferase HypF	0.00168444	0.000128401
+hypothetical protein	2.8273e-05	4.22556e-05
+ABC type Fe3+ siderophore transport system, periplasmic component	4.46135e-05	0.00616263
+Transcription repair coupling factor	1.76776e-05	2.5132e-05
+UniRef50_W1YIT0	4.66119e-05	1.1108e-05
+NADH quinone oxidoreductase subunit D 2	1.37224e-05	2.05817e-05
+Cell division protein FtsQ	0.00013907	0.000833167
+Putative lipoprotein 	9.76996e-05	0.000521561
+Glycosyl transferase family 2	0.000148696	0.000641072
+Imidazoleglycerol phosphate dehydratase	0.000155746	2.8314e-05
+hypothetical protein	1.56138e-07	6.73661e-07
+UniRef50_A6LZ95	0.000768562	0.000910763
+UniRef50_X6GZW0	5.72959e-05	2.57467e-05
+3 deoxy D manno octulosonic acid transferase	0.00183148	0.000223545
+hypothetical protein	3.91394e-05	6.7293e-05
+hypothetical protein	9.39385e-05	0.000900372
+Peptidase M16	0.00673977	0.00173252
+Tyrosine  tRNA ligase	2.24023e-05	6.18119e-06
+Thiazole synthase	0.00012829	0.00111096
+hypothetical protein	5.79061e-06	9.58613e-06
+Thiamine biosynthesis protein ThiC	1.0692e-05	2.60902e-05
+UniRef50_UPI0003345F86	2.14926e-05	1.59263e-05
+Short chain fatty acid transporter	0.000556821	0.00372125
+Cysteine synthase, plasmid	0.0308546	0.00607279
+UniRef50_UPI0003C1981F	1.47909e-05	8.2477e-06
+Extracellular solute binding protein family 1	1.31435e-05	2.76079e-06
+PREDICTED	6.28336e-05	0.000369057
+Metallophosphoesterase	0.000299967	0.000603343
+Radical SAM protein, TIGR01212 family	2.29396e-05	0.00115027
+Transcriptional regulator	0.00418372	0.00276563
+Peptidyl tRNA hydrolase	3.86601e-05	3.01929e-05
+UniRef50_A4WR48	0.000188016	0.000145518
+hypothetical protein	3.4095e-05	1.13315e-05
+CRISPR associated helicase, Cas3 family	5.07799e-05	1.75336e-05
+Flagellar P ring protein	0.000847237	0.000267822
+UniRef50_M4MLW3	8.50766e-05	7.28751e-05
+UniRef50_A7ZJK9	0.00112068	0.00015017
+amino acid permease	6.66923e-05	5.03944e-06
+UniRef50_K2IJJ6	1.43212e-05	2.26193e-05
+UniRef50_A0A020BC98	5.37526e-05	4.97814e-05
+Membrane protein insertase, YidC Oxa1 family	0.00118654	0.000125749
+Putative pyrimidine permease RutG	0.00294865	0.00104512
+Siderophore interacting protein	1.85786e-05	0.000630491
+Glycerol kinase 1	4.45265e-06	1.81174e-05
+hypothetical protein	5.36969e-06	2.67392e-06
+tRNA  2 O) methyltransferase	0.000968397	0.000655364
+hypothetical protein	0.000957334	0.000217617
+ATP dependent 6 phosphofructokinase, platelet type	2.20271e-06	3.12075e-06
+Inosine 5 monophosphate dehydrogenase related protein I	0.00369341	0.000574286
+Protein PilJ	0.00113468	0.000255209
+Transcription initiation factor IIB	0.00321531	0.000199522
+hypothetical protein	3.88152e-05	6.38501e-06
+Rhamnan synthesis F	2.98217e-06	2.44776e-06
+UniRef50_G9ZUA1	6.45046e-05	1.07378e-05
+50S ribosomal protein L17	3.10236e-05	4.21532e-05
+Lipoprotein	0.0109683	0.00115452
+UniRef50_D2ZVP2	0.000451672	0.00201478
+Chaperone protein DnaJ 1	0.000113062	0.00343916
+hypothetical protein	5.10388e-05	9.62971e-06
+xylose ABC transporter permease	4.98205e-05	5.20835e-06
+UniRef50_M2CG06	5.23839e-06	1.96186e-05
+UniRef50_Q6F9L9	0.000240966	0.00343641
+Succinyl CoA ligase [ADP forming] subunit beta	2.92229e-06	6.06868e-06
+UniRef50_W8YZG7	0.000143124	0.000135298
+Response regulator with CheY like receiver domain and winged helix DNA binding domain	0.000213908	0.000396958
+UniRef50_V7WI05	0.00040182	0.000103367
+UniRef50_J3MZQ8	1.43802e-05	4.87062e-05
+UniRef50_G7U7Y1	9.56104e-05	0.00295568
+Anthranilate phosphoribosyltransferase	0.000536724	0.000203536
+UniRef50_W0YKM5	0.000275695	0.000152525
+UniRef50_U6AG49	6.96141e-05	0.000126191
+hypothetical protein	8.65743e-06	2.28668e-05
+N acetyltransferase, partial	2.64792e-05	1.0809e-05
+UniRef50_T0IVY5	6.45551e-05	5.78133e-05
+UniRef50_R4ZTG2	0.000704205	0.000345934
+Serine acetyltransferase 1, chloroplastic	5.54005e-06	4.18953e-06
+UniRef50_G9EEV4	5.34437e-05	3.73531e-05
+ATPase, ParA type	0.000248247	4.87327e-05
+Transcription repair coupling factor	0.00323683	0.000751822
+MOSC domain containing protein	0.00361307	0.00013341
+HupU protein	6.64539e-05	3.80358e-06
+Cof like hydrolase	0.0198393	0.00209678
+UniRef50_N6UD17	0.000553681	0.000129672
+UniRef50_A0A011NGP1	1.79712e-05	3.76074e-06
+ParB like partition protein	8.78758e-05	1.02634e-05
+Histidinol phosphate aminotransferase 2	0.000887797	0.000120033
+Glycoside hydrolase, family 1	0.000456458	0.000465146
+Ribonuclease HIII	2.1886e-05	0.000197546
+UniRef50_H1S0G1	6.53721e-05	4.95213e-06
+Biotin biosynthesis bifunctional protein BioWF	0.0001764	0.00311892
+hypothetical protein, partial	7.93539e-05	0.000109681
+L 2 hydroxyglutarate oxidase LhgO	0.00412457	0.000991101
+Flagellar hook associated protein	0.00525333	0.000485906
+Regulatory protein	0.0110005	0.00105921
+UniRef50_D8TNG9	2.73016e-06	1.32745e-05
+UniRef50_J9P0I4	5.73435e-05	2.93396e-05
+2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	1.58233e-05	0.000639062
+Poly gamma glutamate synthesis protein PgsA	0.00558575	0.00125435
+UniRef50_H5YRD9	1.2967e-05	0.000135743
+hypothetical protein	0.000164012	6.2355e-06
+hypothetical protein PFL1_01203	1.0982e-05	2.07567e-06
+Bis tetraphosphatase, symmetrical	0.00145247	0.000146468
+UniRef50_M5R4A6	4.44652e-05	4.2131e-05
+UniRef50_U3SRI3	0.00338722	0.000309423
+Protein ImpB	2.50943e-05	0.000308539
+UniRef50_Q6GE71	0.00443876	0.000218987
+UniRef50_E7TI03	0.00109881	0.000464175
+Anti sigma factor antagonist	2.27047e-05	0.000749086
+3 deoxy D manno 2 octulosonate transferase	0.00025909	0.00292691
+UniRef50_E7TI06	0.000125906	9.2342e-06
+Adenylate kinase	1.65942e-05	1.45103e-05
+Tyrosine  tRNA ligase	1.47793e-05	8.16793e-06
+Acetylglutamate kinase	2.92205e-05	8.11696e-06
+UniRef50_I7AAC7	0.000562997	0.000135422
+Probable bifunctional oligoribonuclease and PAP phosphatase NrnA	0.00420894	0.00314192
+ATPase AAA	9.9673e-06	2.98149e-06
+Potassium transporting ATPase B chain	0.0108576	0.0102644
+Amidohydrolase 2	0.00888472	0.000354403
+UniRef50_U3AFY8	0.000703186	8.83295e-05
+Argininosuccinate lyase	1.50402e-05	1.03709e-05
+AraC type DNA binding domain containing protein	0.000332729	0.00246797
+hypothetical protein	2.14174e-05	7.55969e-05
+sodium	4.48021e-05	6.65163e-06
+sodium	3.74951e-06	4.08183e-06
+Dihydroorotate dehydrogenase B ), catalytic subunit	0.000373925	0.0052697
+ABC transporter periplasmic binding protein YphF	0.00149104	0.000699623
+hypothetical protein	4.97533e-05	1.49389e-05
+MgtC SapB transporter	0.000263615	0.000902932
+Amidohydrolase	0.00240808	0.000181633
+UniRef50_B4RE78	0.000160605	5.22914e-05
+UniRef50_A4WQR7	0.000240672	5.4707e-05
+Glutamate 1 semialdehyde 2,1 aminomutase	0.00029375	0.000358867
+Integrase	0.000120339	0.00440479
+Superoxide dismutase [Mn], mitochondrial	9.98225e-06	5.35336e-05
+UniRef50_W1S795	5.88178e-05	1.94653e-05
+UniRef50_Q080M3	6.59633e-06	5.73786e-06
+PREDICTED	3.6502e-05	9.46606e-06
+Probable TonB dependent receptor NMB1497	0.000151754	0.0015503
+UniRef50_P64618	0.000394393	0.000995155
+UniRef50_R5CFG0	0.00117154	0.000814987
+hypothetical protein	2.40371e-05	7.79049e-06
+peptidase, partial	2.6121e-05	2.21059e-05
+HGWP repeat containing protein like	8.89293e-06	6.07629e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	1.46497e-05	1.24287e-05
+hypothetical protein	3.89251e-06	7.71149e-06
+UniRef50_A0QVM6	8.00425e-05	3.10654e-05
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase 1, chloroplastic	6.60024e-06	1.62486e-05
+UniRef50_I7G695	1.86612e-05	2.25927e-05
+UniRef50_Q9RYR4	0.000284622	0.00130978
+hypothetical protein	3.0926e-06	6.79343e-06
+GMP synthase [glutamine hydrolyzing]	2.13772e-05	1.56981e-05
+Predicted protein	0.000215394	0.000858339
+Putative anti FlhCFlhD(4) factor YdiV	0.00238964	0.000462199
+hypothetical protein	2.97728e-06	2.69614e-06
+UniRef50_R5BWI2	0.000757771	0.00247374
+hypothetical protein	5.02031e-06	2.02351e-06
+hypothetical protein	5.3282e-06	6.14867e-06
+ribosomal protein L2	2.08712e-05	6.11692e-05
+hypothetical protein	6.23549e-06	3.77297e-05
+Tyrosine  tRNA ligase	0.0260606	0.00955815
+UniRef50_P75764	0.00228738	0.000137935
+UniRef50_P75769	0.00157319	0.000156967
+D lactate dehydrogenase	0.0132374	0.00206864
+UniRef50_E6S2D5	0.000150938	0.00156934
+UPF0042 nucleotide binding protein CGSHiEE_06315	0.00209779	0.000572492
+Response regulator receiver domain protein	0.0166991	0.00354504
+ORC1 type DNA replication protein	0.00328221	0.00032412
+excinuclease ABC subunit A	8.25492e-06	1.16832e-05
+Lipopolysaccharide 1,3 galactosyltransferase, putative	0.0132566	0.00126425
+Amidohydrolase	0.000532341	0.00499125
+Predicted protein 	0.000162682	9.46897e-05
+50S ribosomal protein L22	0.037103	0.00136096
+Putative phospholipase A1	9.36592e-05	0.00140509
+Transcriptional regulator, LysR family	0.00254823	0.000362133
+30S ribosomal protein S13	0.00410468	0.00175298
+UniRef50_S9THQ0	0.000128737	9.80184e-05
+UniRef50_A6QF95	0.00985923	0.000340094
+Probable glutamine synthetase 2	0.000383176	0.00422393
+Cysteine  tRNA ligase	0.0313962	0.00925299
+Universal stress protein	0.0171126	0.00437235
+PTS system transcriptional activator	0.000621162	0.000766545
+Crotonobetainyl CoA dehydrogenase	0.00312289	0.000370906
+DNA polymerase III, delta subunit	0.0154226	0.00113126
+hypothetical protein	7.45222e-06	7.47709e-05
+Phosphoribosylformylglycinamidine synthase, putative	0.00642959	0.00152429
+3 ketoacyl  reductase	0.000145064	0.00290448
+UniRef50_J9P2V2	1.6066e-05	4.51713e-06
+UniRef50_I1AVP4	8.65158e-05	1.38226e-05
+Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system	1.18953e-05	3.68627e-06
+TetR family transcriptional regulator	6.719e-05	6.04422e-06
+Acyl homoserine lactone acylase QuiP	0.000612151	4.31866e-05
+hypothetical protein	0.000115046	1.56136e-05
+hypothetical protein	2.09157e-05	8.88846e-06
+UniRef50_M1YUE3	0.000140958	0.000120321
+UniRef50_W4TKZ4	3.21445e-05	0.000165983
+UniRef50_Q9I602	0.000245846	8.16226e-05
+hypothetical protein	1.00628e-05	6.46691e-06
+Transposase	0.000827068	0.000544724
+hypothetical protein	4.81829e-06	1.15577e-05
+Nucleoid occlusion protein	0.0110392	0.00166455
+UniRef50_I6U3X8	0.0050575	0.00123099
+Membrane fusion protein, HlyD family	0.000869737	0.000179461
+UniRef50_A8ARB7	0.000534204	0.00108116
+Primosomal protein DnaI	0.00530052	0.00314984
+Acetyltransferase  family protein	0.000228945	0.00296844
+hypothetical protein, partial	2.63567e-05	0.00677391
+Molybdate ABC transporter permease protein	0.00195075	0.000978203
+hypothetical protein	1.41929e-05	2.36048e-05
+Thymidine kinase	0.011826	0.000316727
+hypothetical protein	0.00108517	0.000112464
+UniRef50_Q0ARE0	2.59492e-05	8.68117e-05
+UniRef50_A6LV67	0.000139261	0.000402362
+Chromosome undetermined SCAF10201, whole genome shotgun sequence. 	1.54477e-05	2.99534e-06
+30S ribosomal protein S4, partial	6.18119e-06	0.00106518
+glutaminyl tRNA synthetase	3.98712e-06	1.65885e-06
+UniRef50_UPI0003C15EA6	4.23854e-05	6.70384e-06
+tRNA 2 thiocytidine biosynthesis protein TtcA	0.00173844	0.0341985
+hypothetical protein	3.86484e-06	3.29765e-06
+hypothetical protein, partial	0.000209541	0.0117087
+hypothetical protein, partial	6.04148e-05	5.15333e-05
+Diguanylate cyclase	5.49051e-06	0.000150088
+hypothetical protein	4.7996e-05	0.00011405
+PREDICTED	5.17413e-06	2.98636e-06
+Acyl ACP thioesterase	0.000144029	0.000352226
+GNAT family acetyltransferase	0.000101559	1.38722e-05
+Morphine 6 dehydrogenase	5.65228e-06	1.17126e-05
+Beta lactamase	0.00206338	0.000429906
+Mannitol specific phosphotransferase enzyme IIA component	0.00950816	0.000137298
+RNA polymerase binding transcription factor DksA	0.00117401	0.000400825
+UniRef50_H8FSH1	0.000839829	8.99947e-05
+spermidine putrescine ABC transporter ATP binding protein	1.2733e-05	7.4968e-06
+hypothetical protein	3.81387e-05	2.32427e-05
+helicase	2.26139e-06	3.52253e-06
+Alanine  tRNA ligase	4.08929e-05	0.00170438
+Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic	5.11554e-05	3.6107e-06
+UniRef50_A9CR53	0.0035192	0.00110846
+DNA polymerase I	8.44161e-05	0.00218948
+CBS domain containing protein	0.0176575	0.00170276
+Inosine 5 monophosphate dehydrogenase	0.0219747	0.0262492
+Cytochrome bd I ubiquinol oxidase subunit 2	0.000588537	0.00230078
+Transposase for insertion sequence like element IS431mec	0.0228495	0.00476371
+UniRef50_D5AUS5	6.29735e-05	8.31509e-06
+Recombination protein RecR	0.000321543	0.00356397
+DNA transfer protein ComE	0.000240644	0.00150442
+Pts system fructose specific eiibc component	2.93231e-05	0.000172704
+YD repeat protein 	0.000334749	0.00151564
+Phosphate binding protein	3.11606e-06	3.27443e-06
+hypothetical protein	1.61776e-05	6.82384e-06
+Nitrite reductase H), small subunit	0.00274465	0.000298289
+Ribonuclease J	9.00433e-06	2.19935e-05
+Fructose bisphosphate aldolase	2.18635e-05	2.38928e-05
+UniRef50_P0ADL0	0.00027968	0.00045118
+hypothetical protein	2.10453e-05	3.04481e-06
+PREDICTED	2.74418e-05	1.35444e-05
+Acyl CoA dehydrogenase	0.000234783	0.0123209
+cAMP activated global transcriptional regulator CRP	0.00204172	0.000305832
+UniRef50_S9TKQ0	5.54446e-05	0.00010924
+glutathione ABC transporter permease	8.89718e-05	3.33497e-05
+hypothetical protein	8.66154e-06	0.000129082
+ComEC Rec2 related protein 	7.60994e-06	6.08124e-05
+acyl CoA synthetase	1.50257e-05	6.95239e-06
+UniRef50_I1AQX6	3.44653e-05	4.67763e-05
+Peptidase S16, lon domain protein	0.00867602	0.000775926
+UniRef50_J8RSG4	2.38496e-05	5.16828e-05
+Lipoprotein	0.00138064	0.000264913
+Threonine  tRNA ligase	5.31392e-05	0.00205394
+UniRef50_L1K7L5	0.000329836	0.000480654
+UniRef50_Y4SN89	0.0294734	0.00601339
+Phosphoribosylformylglycinamidine synthase 2	2.25015e-05	2.90736e-06
+Diguanylate cyclase  domain containing protein	0.000290727	0.000459771
+FK506 binding protein 2	1.54126e-05	1.11483e-05
+LicC protein	0.000247462	0.00167144
+Sigma 54 factor, interaction domain containing protein	0.000316783	0.00038482
+Formyltetrahydrofolate deformylase	0.00176798	0.000235656
+Probable 3 mercaptopyruvate sulfurtransferase	0.000118503	0.000167822
+Fis family transcriptional regulator	0.000178562	4.7547e-05
+Transcriptional antiterminator, BglG family	0.0063461	0.000710972
+Diguanylate cyclase	5.48163e-06	9.79484e-05
+DNA polymerase IV	0.00353406	0.000201704
+Alkaline protease secretion protein AprE	0.000513067	0.000255107
+UniRef50_V8AQW0	0.0070799	0.000494016
+DNA 3 methyladenine glycosylase	2.17156e-05	5.42626e-05
+Phage related integrase	0.00273642	0.000772339
+membrane protein	5.59795e-05	8.9934e-06
+UniRef50_C1D040	2.48703e-05	0.0173476
+DNA polymerase III subunit delta	0.00264338	0.000701461
+UniRef50_Q8FFR0	0.00166419	0.00293434
+ butanediol dehydrogenase	0.000391804	0.00082966
+UniRef50_C0PLL4	4.41298e-05	4.02976e-05
+prephenate dehydratase	6.73208e-06	0.00012334
+Phytoene desaturase 	8.31545e-05	0.000104568
+Putative NADH oxidase	0.00356633	0.000499123
+Polyphosphate kinase	2.82016e-06	7.55864e-05
+Orf513	0.000169392	0.00599324
+Extracellular serine proteinase	0.000293865	0.0028405
+hypothetical protein	1.39864e-05	1.7817e-05
+Two component response regulator	0.00461934	0.00267975
+Fructose bisphosphate aldolase	0.0217905	0.0030116
+Conserved hypothetical membrane protein Msm_1739	0.00310685	0.000155337
+Rhamnosyltransferase	0.00363796	0.000102964
+hypothetical protein	2.52308e-05	2.43855e-05
+Glycogen debranching enzyme GlgX	0.00801903	0.00107208
+N succinylglutamate 5 semialdehyde dehydrogenase	0.0023652	0.000535531
+UniRef50_B9KN09	0.000311983	5.3092e-05
+3 isopropylmalate dehydrogenase	0.000907885	0.00161674
+DNA binding response regulator, LuxR family	0.000869638	0.00014184
+UniRef50_B9KN06	0.00300594	0.0003835
+UniRef50_B9KN07	0.019237	0.00235895
+UniRef50_V0AP01	0.00301328	0.000614369
+hypothetical protein	1.1227e-05	0.00011967
+Aldose 1 epimerase	0.000112936	0.0202593
+hypothetical protein	1.57866e-05	8.53658e-05
+UniRef50_Q5HKI6	0.0272996	0.000183985
+Lactoylglutathione lyase	1.36446e-05	8.64013e-06
+hypothetical protein	1.94943e-06	0.000250191
+hypothetical protein	9.84495e-06	1.51635e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	7.23417e-06	6.83247e-06
+hypothetical protein	2.11054e-05	1.35092e-05
+hypothetical protein	1.44007e-05	8.10835e-06
+GDP L fucose synthase	0.000334338	0.00133748
+Heme d1 biosynthesis protein NirF	0.000127642	6.12875e-06
+Integrase	0.00168132	8.18458e-05
+Septum site determining protein MinD	0.00330151	0.00330508
+RecF RecN SMC N terminal domain protein	8.33832e-05	0.00164074
+PucC family protein, putative	1.34515e-06	4.39988e-06
+4 hydroxy tetrahydrodipicolinate reductase	0.00549408	0.000384427
+UniRef50_D3CU37	8.89909e-06	1.06559e-05
+UniRef50_K2FAW5	2.95182e-05	4.50541e-05
+Ribosome recycling factor	0.0135388	0.00186831
+Na Pi cotransporter II like protein	0.00988071	0.00205947
+Divalent metal cation transporter MntH	0.000245136	0.000364736
+hypothetical protein	0.000297544	0.000129102
+UPF0750 membrane protein YpjC	0.000117401	0.000444999
+Transposase IS66	1.99217e-05	3.05871e-06
+UniRef50_A0A010ZU52	3.66877e-05	2.60628e-05
+hypothetical protein, partial	1.77235e-05	5.5887e-06
+UPF0126 inner membrane protein YicG	0.00234567	0.00386483
+Catalase	1.59609e-05	2.56285e-05
+UniRef50_E8WXY4	5.87694e-06	3.41319e-06
+Sensor histidine kinase YpdA	0.00192196	0.00017459
+Nucleotide sugar dehydrogenase	7.82065e-05	0.000141061
+Transcriptional regulator of sugar metabolism	2.44184e-05	6.43128e-05
+Asparagine synthetase	0.0167476	0.002309
+Transcriptional regulatory protein, C terminal family protein	0.000105171	0.0020509
+Prophage LambdaSa1, reverse transcriptase maturase family protein	0.00013198	7.62828e-05
+Endoribonuclease l psp	0.000183877	5.77656e-05
+Hydroxymethylglutaryl CoA synthase	0.0108257	0.00265679
+UniRef50_P75826	0.00172038	0.000427928
+UniRef50_E6YJH1	0.000172228	3.81536e-05
+glutamate racemase Nucleoside triphosphatase	5.33412e-06	2.80049e-06
+Short chain dehydrogenase reductase SDR	6.86512e-06	2.43534e-06
+UniRef50_G5IIY2	1.76526e-05	3.73877e-05
+hydroperoxidase	2.04258e-05	1.79822e-05
+hypothetical protein	4.15553e-05	3.04133e-05
+CRISPR associated endonuclease Cas1	0.0018509	0.000316766
+UniRef50_X8FKW3	9.87292e-05	8.26084e-06
+UniRef50_M4WYD7	0.00053291	2.86017e-05
+Nucleotidase	0.0166532	0.00469783
+glutaredoxin, partial	0.000424582	9.50872e-05
+UniRef50_F4AQK9	3.7675e-05	9.14336e-06
+Immunogenic protein	9.94344e-05	1.03769e-05
+Winged helix turn helix	3.65776e-05	0.00146175
+hypothetical protein	3.72104e-06	1.06893e-05
+UniRef50_G5FKQ3	0.000772418	0.000237324
+Alanine  tRNA ligase	0.00518496	0.000780218
+Surface protein G2	0.000421976	7.31147e-05
+Aminotransferase, class II	0.00705526	0.00119923
+Phosphoglucomutase phosphomannomutase family protein	0.00046226	0.000795678
+UniRef50_M4QZL8	1.93133e-05	0.00104552
+Peptidase B	0.00281218	0.000176082
+UniRef50_M4QZL0	0.000237596	0.00251765
+Transketolase, C subunit	0.00167266	0.00268454
+Sporulation protein YunB	0.00161768	0.000186663
+Thymidylate kinase	8.18617e-06	1.55587e-05
+Acyl carrier protein	0.000132879	0.00105629
+hypothetical protein	0.000138672	4.05337e-05
+hypothetical protein, partial	1.53297e-05	2.48016e-05
+Phosphoribosylformylglycinamidine synthase 1	2.42961e-05	1.40726e-05
+UniRef50_E4NK07	6.15697e-05	0.00264681
+membrane protein	1.05425e-05	1.73169e-05
+UniRef50_T2AJH5	1.4308e-05	8.04629e-06
+Flagellar protein FlgJ, putative	0.000117665	3.27804e-05
+DNA topoisomerase IV subunit B	0.000298256	0.00250993
+Fumarate and nitrate reduction regulatory protein	0.00517841	0.0011561
+LuxR family transcriptional regulator	1.75057e-05	1.49184e-05
+hypothetical protein	0.000125313	4.353e-05
+Peptidase, M24 family protein	0.000194765	0.000582008
+Nitric oxide reductase transcription regulator NorR1	2.58387e-06	7.20918e-06
+ABC transporter, ATP binding domain protein	9.95762e-05	0.00344028
+UniRef50_Y1B2H8	0.000666953	0.000241792
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	9.27983e-05	0.0028443
+hypothetical protein	2.02379e-05	1.17771e-05
+hypothetical protein, partial	1.00291e-05	7.23273e-06
+Sulfate adenylyltransferase subunit 2	0.00394623	0.00876162
+UniRef50_W1YEB9	0.00613335	0.0015511
+Macrophage infectivity potentiator related protein	3.78879e-05	0.00017037
+hypothetical protein	1.03287e-06	1.01051e-05
+Transketolase 2	0.00650428	0.00145768
+ABC transporter ATP binding protein	0.0102775	0.00190128
+ABC transport system permease protein	0.00422376	0.000634117
+Nucleoside diphosphate kinase	4.74712e-05	5.38488e-05
+UniRef50_J8VUX1	0.000141674	1.46186e-05
+UniRef50_R7I3D6	7.42362e-05	8.41408e-06
+Replication initiator protein	3.77911e-05	2.97744e-06
+Membrane protein	0.000368668	5.5844e-05
+UniRef50_D3FRH5	7.2923e-06	6.24051e-06
+hypothetical protein	1.7527e-06	9.81775e-06
+Prolipoprotein diacylglyceryl transferase	0.000353904	0.00283661
+UniRef50_W8UXR7	0.00191368	5.54377e-05
+UniRef50_P58664	0.00529961	0.000404501
+UniRef50_S5YW82	1.04175e-05	8.17285e-06
+S ribosylhomocysteine lyase	0.000164569	0.000709465
+fusaric acid resistance protein	2.53611e-06	3.17192e-06
+GDP mannose 4,6 dehydratase	0.0165643	0.00751176
+UniRef50_E3JA76	2.1762e-05	8.95327e-07
+UniRef50_R0S9J4	2.74806e-05	0.00078412
+UniRef50_A1B2V6	0.000124133	4.52633e-05
+Adenine cytosine DNA methyltransferase	0.00325078	0.000157241
+UniRef50_S8F0C2	4.35817e-07	8.0205e-06
+NAD synthetase	3.20196e-05	8.68808e-05
+hypothetical protein, partial	3.22751e-05	3.14646e-06
+hypothetical protein	4.9179e-05	4.42726e-05
+Response regulator receiver protein	0.00368601	0.000468446
+hypothetical protein	7.46602e-07	1.53118e-05
+hypothetical protein	1.12714e-05	2.3782e-06
+UniRef50_F4DLN9	0.000242121	0.000149641
+Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	3.31035e-06	4.13197e-06
+UniRef50_A4WZY2	0.000636453	0.000255797
+hypothetical protein, partial	2.01847e-05	6.14977e-05
+alcohol dehydrogenase	1.18088e-05	0.000257263
+spermidine putrescine ABC transporter substrate binding protein	1.70947e-05	7.5495e-05
+Lipoyl synthase	1.26998e-05	2.034e-05
+PREDICTED	3.13243e-05	5.39149e-06
+D 3 phosphoglycerate dehydrogenase	0.00368528	0.000790557
+3 keto L gulonate 6 phosphate decarboxylase, partial	1.52148e-05	1.67095e-05
+ABC transporter ATP binding protein	3.24822e-05	3.46331e-06
+excinuclease ABC subunit A	9.52948e-06	1.58736e-05
+ABC transporter related protein	0.000141308	0.000115605
+hypothetical protein, partial	6.88137e-06	1.19945e-05
+Mannose 1 phosphate guanylyltransferase	1.87069e-05	2.59002e-06
+ribosomal large subunit pseudouridine synthase A	0.000110508	1.416e-05
+UniRef50_F0KHF7	0.000225872	0.00274248
+Glutathione peroxidase	0.0261599	0.0101028
+Abortive infection protein	0.000307407	0.000739122
+UniRef50_W9D4Z0	3.52341e-05	1.05313e-05
+UniRef50_K0HMC2	0.00020361	0.00252608
+UniRef50_UPI0003C10DF6	1.26856e-05	1.96646e-05
+UniRef50_N3NX82	0.00149328	0.000505893
+Xanthine uracil vitamin C permease	8.41371e-05	0.00137137
+NADP dependent glyceraldehyde 3 phosphate dehydrogenase	0.00504962	0.00381612
+tRNA 2 methylthio N dimethylallyladenosine synthase	0.000104626	0.000787877
+UniRef50_J9S761	2.96881e-06	3.21334e-06
+hypothetical protein	1.33568e-05	1.12585e-05
+inner membrane translocator	2.21394e-05	7.21708e-06
+DNA primase	2.24878e-06	3.0855e-06
+UniRef50_K6VMV8	9.01555e-07	1.85394e-05
+Inorganic pyrophosphatase	0.00460481	2.64321e-05
+Pirin domain protein	7.46231e-05	0.000132887
+Putative mannosyl 3 phosphoglycerate phosphatase	0.00219768	0.000876206
+Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic	1.02103e-05	3.57427e-05
+Sensor protein SrrB	0.019722	0.00190892
+50S ribosomal protein L22	2.5096e-05	0.000214237
+hypothetical protein, partial	7.24127e-05	5.27167e-05
+diguanylate cyclase	1.80416e-05	1.34037e-05
+Modulator of drug activity	0.000515125	0.00353573
+UniRef50_Q49Z27	0.00774809	0.00242538
+Transcriptional regulator, LysR family	0.00582394	0.00043245
+Sporulation integral membrane protein YlbJ	0.000395957	0.000402744
+UniRef50_A4WYU2	0.00208424	0.000233793
+PAS sensor Signal Tranduction Histidine Kinase	0.00509012	0.000805786
+UniRef50_A4WYU6	0.0104369	0.000556542
+Malate	0.00445195	0.00320522
+hypothetical protein	2.45326e-05	3.709e-05
+UniRef50_A0A028V4R5	6.2596e-05	2.18781e-05
+hypothetical protein	3.30939e-05	1.59885e-05
+Zinc import ATP binding protein ZnuC	4.56139e-05	3.72574e-05
+3 dehydroquinate dehydratase	7.22191e-06	8.72538e-05
+hypothetical protein	1.11674e-05	2.03378e-05
+hypothetical protein	3.95289e-05	7.5814e-06
+hypothetical protein, partial	6.60388e-05	6.4518e-05
+UniRef50_F0Y0F0	4.79188e-05	0.000181712
+Tricorn protease	3.63705e-05	0.0034655
+DSBA oxidoreductase	0.00023193	0.000254348
+Adenine deaminase related protein	4.88932e-05	1.39152e-05
+ABC transporter substrate binding protein	0.000156826	8.23385e-05
+Glucose 1 dehydrogenase	9.62797e-06	5.95534e-06
+UniRef50_E5U6M9	1.44996e-05	2.09142e-05
+hypothetical protein	2.99501e-06	2.55276e-06
+UniRef50_A5UN83	0.00294021	0.000129747
+UniRef50_A5UN84	0.00710575	0.00100465
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0149732	0.000645934
+UniRef50_S0GCD5	3.95809e-05	0.000582159
+Probable dual specificity RNA methyltransferase RlmN	0.000232029	0.00517444
+Multidrug resistance outer membrane protein MdtQ	0.00153615	0.0004828
+Hydrolase 	0.0200264	0.00535909
+UniRef50_B6C5I5	4.13072e-05	4.57315e-05
+hypothetical protein	2.42845e-05	1.33298e-05
+TonB dependent receptor protein	0.000138202	0.000469295
+MEMO1 family protein Msm_1438	0.00303744	0.000325831
+Major facilitator superfamily MFS_1	0.000446091	0.00077948
+UniRef50_E7C3U5	6.22729e-05	2.62623e-05
+Phosphoglucomutase	0.0188857	0.0036001
+DNA helicase II	5.85793e-06	4.80141e-06
+hypothetical protein	5.46113e-05	5.67926e-05
+Putative ATP dependent RNA helicase	3.11493e-06	1.44973e-05
+Transcriptional repressor PaaX	0.00308105	0.000194726
+UniRef50_D9RB01	0.00355364	0.000683964
+UniRef50_J2X6M2	0.000138688	4.20394e-05
+TRAP transporter solute receptor, TAXI family	1.4348e-05	4.24897e-06
+Iron complex transport system, substrate binding protein	0.000506604	0.00029438
+Phosphoglycerate kinase	0.000159981	0.00337046
+Redox sensing transcriptional repressor Rex	0.00494375	0.000608218
+hypothetical protein	5.13851e-05	1.26966e-05
+hypothetical protein, partial	2.95537e-05	2.45181e-05
+Phosphoserine phosphatase	5.73608e-06	4.21184e-06
+Fis family transcriptional regulator	1.08821e-05	1.62668e-05
+PREDICTED	3.17975e-05	4.98943e-06
+Putative sporulation transcription regulator WhiA	0.00476922	0.00345696
+PREDICTED	2.52691e-05	3.9697e-06
+DNA polymerase	1.48094e-06	7.2763e-06
+hypothetical protein	7.81975e-05	1.12024e-05
+hypothetical protein, partial	0.000162748	0.00487005
+Oxidoreductase Fe S binding subunit	0.000177442	0.000539292
+S layer y domain protein	8.73343e-06	0.000102884
+Probable tRNA dihydrouridine synthase 2	0.0187222	0.00356568
+Phage tail fiber assembly protein	0.000745318	6.25971e-05
+Protein YibB	0.000443102	0.000270519
+ROK family protein	0.0116573	0.000435963
+Histidine biosynthesis bifunctional protein HisIE	9.68564e-06	2.05451e-05
+ATP dependent helicase	0.00261654	0.000436786
+UniRef50_A0A011P8Z8	8.52422e-06	1.6622e-05
+50S ribosomal protein L20	4.23449e-05	0.000114261
+UniRef50_Q8CQW2	0.00166682	0.000715628
+Glycerol 3 phosphate dehydrogenase [NAD+]	0.0251959	0.00472948
+30S ribosomal protein S2	1.74411e-05	4.41896e-06
+UniRef50_A6V6R8	0.00169391	0.000136659
+UniRef50_C7RQ14	0.00740725	0.000356453
+hypothetical protein	9.18351e-06	6.91632e-06
+Exosome subunit	0.00160121	0.000172996
+UniRef50_P42314	0.000490153	0.00364624
+tRNA modification GTPase MnmE	7.50108e-05	0.00160026
+3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC	0.00157429	0.000169373
+Pyruvate kinase	0.000373291	0.000459259
+Probable guanine deaminase	0.000153008	0.00315853
+2 hydroxyacid dehydrogenase	0.0184124	0.00679518
+MULTISPECIES	8.13104e-06	1.19288e-05
+Adenylate kinase 	0.00010978	6.03975e-05
+hypothetical protein, partial	0.000299684	3.51694e-05
+UniRef50_R8BHP6	1.48024e-05	1.11456e-05
+UniRef50_E6AX10	0.000110972	0.000199914
+Oxidoreductase	0.017091	0.00176708
+hypothetical protein, partial	3.938e-05	6.00915e-05
+TonB dependent receptor family protein	5.59981e-05	0.00315427
+Argininosuccinate lyase	2.47117e-05	1.18356e-05
+hypothetical protein	8.53604e-06	8.45316e-06
+CoA transferase	6.96342e-06	7.07263e-05
+glutamine amidotransferase	2.36924e-06	1.001e-05
+UniRef50_L0NM51	5.60381e-07	8.25983e-06
+Exonuclease V, alpha subunit	0.000272052	0.00352341
+Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.00212102	0.000202675
+Tyrosine  tRNA ligase	4.58407e-06	8.60312e-06
+UniRef50_Q2YV14	0.00098475	1.2179e-05
+UniRef50_A1AYM7	0.00054296	1.34916e-05
+UniRef50_L7KRU0	7.56515e-06	3.77802e-06
+XRE family transcriptional regulator	0.00454392	0.0012738
+UniRef50_X7YQG6	6.51695e-06	1.31485e-05
+Molybdopterin biosynthesis protein	0.000106278	0.00331508
+Flagellar basal body rod modification protein FlgD	8.40184e-06	6.566e-06
+Chorismate synthase	0.000158954	0.00310698
+30S ribosomal protein S5	7.03846e-06	6.42792e-06
+UniRef50_M3ZEB7	4.60942e-05	1.18668e-05
+UniRef50_R9SLQ2	0.00302176	0.0012204
+Dihydroorotate dehydrogenase 	9.05477e-06	3.41494e-05
+UniRef50_B7KV96	6.71324e-05	5.72808e-06
+general secretion pathway protein I	1.53337e-05	9.48808e-06
+Aspartate  tRNA ligase	2.93634e-06	8.35538e-06
+butanol dehydrogenase, partial	1.30575e-05	1.46609e-05
+4 diphosphocytidyl 2 C methyl D erythritol kinase	0.0258931	0.00288801
+UniRef50_A6LTZ1	0.000908234	0.000671061
+UniRef50_S8N5S2	1.2284e-05	7.52017e-06
+Short chain dehydrogenase reductase SDR	0.00479399	0.000261207
+NADH quinone oxidoreductase	0.000503963	0.000215829
+Aliphatic sulfonates import ATP binding protein SsuB	5.10973e-05	7.51244e-06
+3 phenylpropionate cinnamic acid dioxygenase ferredoxin  NAD reductase component	0.00391079	0.000444863
+Xanthine phosphoribosyltransferase	3.8874e-05	2.77236e-05
+UniRef50_D8IIA8	0.00734868	0.00304016
+ribosome binding factor A	0.000115003	8.09713e-05
+UniRef50_Q1R421	0.000178416	0.000301415
+tRNA uridine 5 carboxymethylaminomethyl modification protein	1.92926e-05	7.83979e-06
+UniRef50_G4AEU2	1.05158e-05	0.000293672
+Nitrogen regulation protein NIFR3	0.000152189	3.97819e-05
+alcohol oxidase	1.0635e-05	4.12011e-06
+Beta lactamase regulatory sensor transducer BlaR1	0.000209703	0.00144402
+hypothetical protein	5.64225e-06	1.82698e-06
+Transposase, IS4 family	0.000101135	0.00017113
+Periplasmic iron binding protein	0.011995	0.00222295
+TRAP transporter, DctM like membrane protein	0.000191816	5.90473e-05
+Isoaspartyl dipeptidase	0.00228352	0.000324961
+Phosphopantetheine adenylyltransferase	9.60412e-06	0.0513167
+Short chain dehydrogenase reductase SDR	0.0140766	0.00248711
+Serine rich adhesin for platelets	0.000299676	2.19953e-05
+Glutathione peroxidase	0.00556689	0.00136038
+Membrane protein	8.33041e-05	0.00177867
+Lipoprotein	0.0010668	0.000242008
+Alpha glucosidase	0.000334506	0.000670897
+Pseudouridine synthase	0.000712533	0.000180962
+Fimbrial protein	0.000457658	0.000613787
+Acetylglutamate kinase	0.00833111	0.00219894
+Alpha L glutamate ligase like protein	0.000298209	0.000264426
+UniRef50_F8JNJ0	1.92431e-05	1.28224e-05
+UniRef50_V6XU76	0.0121449	0.000304355
+Peptide methionine sulfoxide reductase MsrB	1.27104e-05	2.22519e-05
+hypothetical protein	6.30531e-06	3.30357e-05
+ABC transporter 	0.0104468	0.00158108
+ABC transporter	7.1335e-06	3.80836e-05
+Iron regulated surface determinant protein H	0.00829655	0.000979305
+Multisubunit Na+ H+ antiporter, MnhB subunit	5.80514e-05	6.31222e-06
+Transcriptional activator, TenA family	0.00078181	0.000297301
+electron transporter RnfC	0.000382799	9.23512e-05
+UniRef50_B2EBN8	0.000437742	0.000580221
+Type VI secretion protein, VC_A0114 family	4.49206e-06	4.17351e-06
+UniRef50_X0P1E3	3.21323e-06	0.000803708
+UniRef50_I1EQF0	2.99228e-06	9.46708e-05
+50S ribosomal protein L4	0.00018094	0.000836517
+hypothetical protein, partial	3.4002e-05	2.08441e-06
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.35868e-05	1.52753e-05
+Dehydrogenase	0.000138308	0.00328206
+Ornithine carbamoyltransferase	0.0038174	0.00431587
+Binding protein dependent transport systems inner membrane component	0.000860641	9.96502e-05
+UniRef50_G7M273	0.000221535	0.000221367
+UniRef50_W7WNN7	3.47658e-05	0.000161371
+hypothetical protein	5.19739e-06	4.43519e-07
+hypothetical protein	1.07052e-05	5.18672e-05
+Putative pilus assembly protein PilF, TPR repeat	5.66639e-06	5.88976e-06
+hypothetical protein	4.23942e-05	1.41833e-05
+UniRef50_A6LUF1	0.000165787	0.00126434
+PREDICTED	1.0719e-05	4.95158e-06
+Transcriptional regulator, LacI family	0.00015438	0.00252901
+Elongation factor Ts	0.0111807	0.00115503
+UniRef50_D2P385	0.0233452	0.00105979
+Transcriptional regulator	0.000141286	3.11364e-05
+UniRef50_C2DNC2	0.000227154	5.80164e-05
+Transposase, IS4	4.02098e-06	0.00169402
+Alcohol dehydrogenase GroES domain protein	0.000710442	0.000458967
+hypothetical protein	1.19354e-05	8.19156e-05
+UniRef50_X6KYR9	1.05874e-05	2.35543e-05
+hypothetical protein	6.83395e-06	0.00115884
+UniRef50_Q3JP83	2.47313e-05	1.42266e-06
+Twin arginine translocation pathway signal	0.000217014	9.491e-05
+ABC type glycine betaine transport, ATP binding protein	0.000132674	0.00493263
+Translation factor 	0.000334131	0.00023534
+acyltransferase	0.000288566	3.95549e-05
+UniRef50_A0A010V7A5	0.000146751	0.00389297
+hypothetical protein, partial	9.05928e-05	2.1817e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial	1.16391e-05	3.70795e-05
+hypothetical protein	4.06491e-05	1.85951e-05
+UniRef50_P76057	0.000447364	0.000421525
+UniRef50_U5N033	0.000250517	0.000747197
+5 keto 4 deoxyuronate isomerase, partial	8.74032e-06	4.66814e-06
+Diguanylate cyclase  domain containing protein	4.70397e-06	5.76089e-05
+hypothetical protein	5.41425e-06	8.63771e-05
+Uridine kinase	9.16348e-06	4.64625e-05
+hypothetical protein	7.78038e-05	4.61557e-05
+UniRef50_E4BE72	0.000141998	4.70555e-05
+NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.78543e-05	0.00270348
+Thioesterase	0.00359558	0.000516754
+UniRef50_UPI0003AEA946	7.74818e-06	7.02802e-05
+UniRef50_G1RN76	0.000153244	0.00011112
+Heat shock protein 70	3.14139e-05	5.59518e-06
+DNA polymerase I 	1.43641e-05	5.13947e-05
+Metalloproteinase, extracellular matrix glycoprotein VMP28	1.22447e-05	1.05645e-05
+UniRef50_R7PYE0	0.00189271	0.000414178
+3 methyl 2 oxobutanoate hydroxymethyltransferase	3.62099e-05	8.50998e-06
+Ribonuclease 3	3.02551e-05	2.44305e-05
+Arginine ornithine antiporter	0.00947904	0.00157712
+Hemin import ATP binding protein HmuV	1.58489e-05	0.00072899
+UniRef50_D3D4M2	7.22547e-05	4.86803e-05
+para aminobenzoate synthase	5.96529e-06	9.71305e-06
+D tyrosyl tRNA deacylase	7.96842e-06	2.36381e-05
+YhgE Pip C terminal domain containing protein	1.99676e-06	1.73976e-06
+UniRef50_Q8DS55	0.00317664	0.00094844
+Spermidine putrescine import ATP binding protein PotA	0.000118816	2.10134e-05
+L pipecolate dehydrogenase	0.000112936	8.15485e-05
+Putative molybdenum transport ATP binding protein ModF	0.0026395	0.000275012
+ABC transporter	0.000282673	0.00230075
+UniRef50_I1EII6	8.93598e-06	2.10501e-05
+LigA	2.23358e-05	6.58368e-05
+hypothetical protein	1.30016e-05	1.07444e-05
+Putative GTP binding protein typA bipA	1.42393e-05	1.66711e-05
+Mobilization protein	1.56559e-05	9.20445e-06
+D ribose pyranase	0.0189863	0.00663045
+Pirin family protein	0.000160516	0.000143198
+hypothetical protein	4.95281e-05	0.00208467
+UniRef50_V4JV50	0.000754248	0.000165448
+Putative NAD specific glutamate dehydrogenase	0.000482245	0.000205396
+hypothetical protein	8.1969e-06	5.04758e-05
+L1332.3a protein	0.00112834	0.000125889
+UniRef50_Q6MER0	4.43359e-05	4.20008e-05
+UniRef50_G8VKT7	0.000181918	0.00261729
+UniRef50_E1VFK2	0.00013381	0.000113256
+UniRef50_F8LS47	0.000936299	0.00122786
+S adenosylmethionine synthase isoform type 1	4.05927e-05	0.000128563
+Peptide methionine sulfoxide reductase MsrA	0.00992325	0.00208864
+UniRef50_G7R477	0.000108043	1.41683e-05
+UniRef50_A3C947	0.000350876	0.00039003
+Na translocating NADH quinone reductase subunit A	0.000335039	0.00177963
+ABC transporter, periplasmic substrate binding protein	0.0052496	0.000740102
+hypothetical protein	8.36516e-05	4.12046e-05
+hypothetical protein	2.59654e-05	1.91189e-06
+LigA	4.9708e-05	2.37462e-05
+hypothetical protein	2.05265e-05	0.000837001
+Phosphoribosylformylglycinamidine synthase 1	1.02911e-05	5.74293e-06
+3 isopropylmalate dehydrogenase	9.74315e-06	2.19017e-05
+NADH ubiquinone oxidoreductase 49 kDa subunit, mitochondrial	1.76942e-05	1.90043e-05
+Dipeptide ABC transporter, permease protein DppC	0.00742236	0.00136152
+UniRef50_Q9RWW2	7.19633e-05	0.00773649
+FruR	0.00432319	0.00303994
+hypothetical protein	8.41376e-06	1.36145e-05
+Histidinol phosphate aminotransferase	0.000132674	0.00156321
+FAD containing monooxygenase EthA	7.57964e-06	0.000774634
+UniRef50_B7I5R6	0.000144682	0.00206146
+hypothetical protein	0.000228241	3.62126e-05
+Multidrug resistance efflux pump	9.05512e-05	0.00111522
+NADPH dependent FMN reductase	0.000160516	0.000150899
+50S ribosomal protein L1	0.00282307	0.000717641
+UniRef50_Q5GWU5	0.000156884	0.00100104
+Acetolactate synthase isozyme 3 small subunit	8.77774e-05	0.00022394
+hypothetical protein	0.000404991	2.25047e-05
+ABC type transporter, periplasmic subunit	4.54901e-05	0.00710329
+50S ribosomal protein L5	0.00137759	0.00208806
+PTS fructose transporter subunit IIA	2.37144e-06	0.000172965
+Phosphoribosylformylglycinamidine synthase	0.000288784	0.00346371
+Short chain dehydrogenase reductase SDR	0.000530814	0.00680782
+Acyl carrier protein	0.00113443	1.80396e-05
+UniRef50_P36879	0.00198326	0.000197376
+Thioredoxin reductase	0.00041708	0.000946292
+UniRef50_A8A033	0.000531337	4.09666e-05
+Imidazole glycerol phosphate synthase subunit HisH 2	0.00274952	0.000169086
+fatty acid  CoA ligase	3.28943e-05	5.04406e-06
+uroporphyrin III methyltransferase	1.12991e-05	9.90777e-06
+Glutamyl Q tRNA synthetase	4.74207e-06	4.33234e-06
+UniRef50_B9KJE5	0.0002634	0.000104755
+UniRef50_C0PP08	5.74272e-05	7.10663e-06
+Hyperosmolarity resistance protein Ebh	0.00700127	0.00202782
+hypothetical protein	0.000303515	6.82283e-05
+Shikimate dehydrogenase	0.000149799	0.000452379
+alcohol dehydrogenase	3.28038e-06	7.03919e-06
+cation diffusion facilitator family transporter	1.65138e-05	1.02042e-05
+Holliday junction ATP dependent DNA helicase RuvB	1.25203e-05	5.92677e-06
+Multicopper oxidase mco	0.00791063	0.00146486
+Phosphate ABC transporter permease	0.000103873	0.00390992
+Putative copper transporting P type ATPase B	0.00584912	0.000877447
+Transcriptional regulator	1.57222e-05	1.40547e-05
+Nucleoside diphosphate kinase	6.82666e-05	1.26291e-05
+60 kDa chaperonin 1	0.000146206	0.00209603
+DNA replication protein	0.000178068	0.0192012
+succinate semialdehyde dehydrogenase	4.47579e-06	8.4948e-06
+Polar amino acid ABC transporter, inner membrane subunit	0.00423038	0.00155523
+L fucose proton symporter	7.57424e-05	0.00181917
+hypothetical protein	4.81321e-06	2.62986e-06
+UniRef50_H0A168	0.00023618	7.29374e-05
+UniRef50_D9VMY8	4.07569e-05	0.00173532
+Putative carbamoyl transferase, NodU family	6.55189e-05	0.000388762
+UniRef50_G9ZBL9	0.00025228	0.000490927
+UniRef50_G7U641	0.000110707	0.0020604
+iron ABC transporter permease	1.03401e-05	3.71435e-05
+Alpha ketoglutarate dependent taurine dioxygenase  (Sulfate starvation induced protein 3) (SSI3)	0.000229726	0.00131373
+hypothetical protein	1.50748e-06	7.98609e-07
+3 isopropylmalate dehydratase small subunit	3.96954e-05	3.17655e-05
+hypothetical protein	1.78338e-05	8.18051e-07
+hypothetical protein	1.84733e-05	4.4372e-06
+UniRef50_C5QMF5	0.000244594	6.24064e-05
+Inner membrane protein YdgK	0.000947145	0.000418762
+Acetylglutamate kinase	0.000179744	0.000887336
+Abortive infection family protein	0.0162954	0.00270791
+Tryptophan synthase alpha chain	1.03325e-05	1.66691e-05
+UniRef50_X2M4D8	0.000686834	0.000237139
+UPF0246 protein AM1_4276	4.15273e-06	4.30395e-06
+Endoribonuclease L PSP	0.000324091	7.84486e-05
+Cell envelope biogenesis protein AsmA 	9.88665e-06	6.34499e-06
+UniRef50_X2H351	2.53875e-05	1.44557e-05
+UniRef50_U6KK83	4.43605e-05	4.30434e-06
+hypothetical protein	4.40745e-05	1.14641e-05
+hypothetical protein	2.89884e-06	2.3875e-06
+1,4 alpha glucan branching enzyme GlgB	3.51441e-06	1.66174e-06
+hypothetical protein	7.73728e-06	4.32555e-06
+hypothetical protein	1.23893e-05	5.52644e-06
+hypothetical protein	0.000213305	3.83435e-05
+Fructose specific permease	0.0223537	0.00444217
+AMP dependent synthetase	1.03967e-05	1.47035e-05
+Cell wall hydrolase	0.000494924	0.000308325
+UniRef50_Q5LWG6	0.00900114	0.000766435
+Phage major capsid protein, HK97 family	0.000290395	0.000408423
+UniRef50_C5N1T2	0.0036659	0.000477579
+Flagellar protein FliL	0.000669273	0.00191032
+Thioredoxin reductase	4.74534e-05	9.0866e-06
+Cell envelope integrity inner membrane protein TolA	0.000130614	0.000177046
+hypothetical protein	1.61029e-05	8.50536e-05
+UniRef50_B9KW07	0.000604038	0.000456609
+UniRef50_C0PKV4	9.86903e-05	0.000200354
+UniRef50_I4E8E6	5.45559e-05	2.21207e-05
+ISSoc3 transposase	0.000243876	0.00260635
+Accessory Sec system protein Asp1	0.0127152	0.00106922
+sulfonate ABC transporter ATP binding protein	6.23201e-05	3.83083e-05
+Beta 1,6 galactofuranosyltransferase WbbI	0.00218929	0.000465966
+Siderophore biosynthesis protein, IucA IucC family	0.0104365	0.00119421
+UniRef50_V5VD99	0.000225367	0.0031695
+Major facilitator transporter	0.00020364	7.82098e-05
+Branched chain amino acid aminotransferase 6	6.71777e-06	1.13773e-05
+NADH quinone oxidoreductase subunit N	7.09519e-05	0.0114519
+Transposase	0.000105461	3.35401e-05
+UniRef50_Q1G0V6	0.000163651	0.00134941
+UniRef50_Q1G0V5	0.000168921	0.00026608
+UniRef50_X6AX71	0.000870678	6.43829e-05
+Alkanesulfonate monooxygenase	2.2001e-05	1.64137e-05
+Putrescine binding periplasmic protein	0.00177054	0.000630123
+hypothetical protein	3.35226e-05	5.82743e-06
+NADH quinone oxidoreductase subunit B	1.74667e-05	0.00142312
+hypothetical protein	4.53845e-05	5.1083e-05
+UniRef50_A6LQN1	0.000121791	0.00111019
+hypothetical protein	9.75839e-06	9.20502e-06
+hypothetical protein	0.000221234	2.23991e-05
+UniRef50_A1KU02	0.000150245	0.000127174
+leucyl phenylalanyl tRNA  protein transferase	9.17928e-06	1.12191e-05
+UniRef50_P77596	0.00110035	9.93989e-05
+hypothetical protein	0.000137985	2.38469e-05
+UniRef50_A5VRG1	0.000340991	9.72367e-05
+hypothetical protein	2.79439e-05	0.000122331
+Glutathione reductase	0.00260911	0.000956063
+Protein RecA	0.00494962	0.00199571
+Universal stress protein	0.0113124	0.000434972
+UniRef50_E6MZX2	0.000130146	0.00181271
+Outer membrane lipoproteins carrier protein	0.000186971	0.000577867
+FhaC protein	0.000117677	0.0027562
+LuxR family transcriptional regulator	1.28587e-05	4.7526e-05
+Sulfate transport system permease protein CysT	0.00219628	0.00432843
+UniRef50_W9GLM8	0.000208604	5.51477e-05
+Simple sugar transport system permease protein	0.0116732	0.000843057
+hypothetical protein	2.16655e-05	1.13088e-05
+UniRef50_G7M4C6	0.00133986	0.000404925
+Expressed protein 	0.000236536	6.07887e-05
+FMN binding oxidoreductase	0.000572419	0.00168142
+UniRef50_K0RRH8	0.00116526	0.0047806
+Response regulator receiver modulated diguanylate cyclase phosphodiesterase	0.00107546	0.000157087
+hypothetical protein	0.000264507	3.16048e-05
+hypothetical protein	1.45035e-05	2.22188e-06
+Estradiol 17 beta dehydrogenase 8	1.56363e-05	2.34037e-05
+Cyclic di GMP binding biofilm dispersal mediator protein	0.00338268	0.000444488
+Galactose oxidase 	0.000406678	6.66336e-05
+Thiazole synthase	0.00932058	0.000517149
+Dihydroorotase	0.0203569	0.00258036
+tRNA pseudouridine synthase B	0.000753251	0.00397784
+Farnesyl diphosphate synthase	1.66644e-05	0.000277611
+Putative antiporter subunit mnhB2	0.0079473	0.00456832
+ROK family protein	0.000287549	0.000675724
+Silver exporting P type ATPase	3.6106e-06	7.45772e-06
+ATP dependent helicase HrpA	0.00119374	0.00032353
+hypothetical protein	1.46176e-05	6.86683e-06
+Multidrug transporter	6.16766e-05	0.00175591
+Xaa Pro aminopeptidase 1	3.25009e-06	4.08828e-06
+UniRef50_W5XIY9	0.000372413	3.67097e-05
+hypothetical protein	7.19183e-05	2.14997e-05
+UniRef50_K7T5I3	2.51386e-05	1.29341e-05
+UniRef50_G7U9V5	1.0939e-05	0.000650615
+hypothetical protein	0.000410469	9.97784e-05
+CRISPR associated helicase, Cas3 family	4.59978e-05	9.53153e-06
+Xanthine dehydrogenase accessory protein XdhC 	5.62178e-06	1.86003e-05
+Bifunctional purine biosynthesis protein PurH	3.17501e-06	2.88088e-06
+Glutamate dehydrogenase	7.20886e-06	0.000339237
+Extradiol ring cleavage dioxygenase, class III enzyme, subunit B	0.00289362	0.00127419
+PTS system, cellobiose specific IIC component, partial	3.12199e-05	2.37048e-05
+Protein phosphatase PhpP	0.00786868	0.00151326
+CO dehydrogenase flavoC terminal domain protein	0.000134142	0.000145359
+hypothetical protein	5.8174e-06	2.60259e-06
+Rhamnulose 1 phosphate aldolase	9.18002e-06	0.000620153
+Protein FrlC	0.00374546	0.000245314
+Serine protease Do	7.96879e-05	0.00234024
+UniRef50_N6VEV1	0.000226595	0.000266853
+UniRef50_B8EMC7	1.04139e-06	1.24667e-05
+Cysteine rich extensin like protein 1	0.000107279	2.105e-05
+Protein FixA	0.0016054	0.000120033
+Phosphoesterase family protein	0.00735513	0.00094626
+Aldehyde Dehydrogenase	0.000260239	0.00380162
+UniRef50_R7RGB1	0.000366038	2.34457e-05
+Histidine ammonia lyase	0.00573614	0.000796531
+Sua5 YciO YrdC YwlC family protein	0.000348872	0.00294606
+UniRef50_M1MLW9	0.000482493	0.000520492
+hypothetical protein, partial	1.69234e-05	2.46331e-05
+Peptidyl prolyl cis trans isomerase	0.00199395	0.000308539
+Cyanate transport protein CynX	0.00236556	0.00222631
+UniRef50_A5KZA1	0.000186661	0.000239997
+UniRef50_W0H3E7	0.000221581	8.02592e-05
+Urease subunit gamma beta	7.63328e-06	6.33221e-05
+Riboflavin synthase	2.4505e-05	0.00622934
+Tellurium resistance protein	0.000521101	0.0351999
+Heptaprenylglyceryl phosphate synthase	0.0135179	0.00177788
+DNA polymerase III epsilon subunit like 3 5 exonuclease	0.000263516	0.000715791
+N acetylmuramoyl L alanine amidase AmiD	0.0026804	0.000480914
+hypothetical protein	0.00108454	0.000325698
+Binding protein dependent transport systems inner membrane component	0.00753412	0.00199301
+Flagellar biosynthetic protein flhB	0.00709964	0.000987491
+Malate synthase	1.24058e-05	1.08085e-05
+acyl CoA dehydrogenase	6.08831e-06	8.31341e-05
+Threonine dehydratase catabolic	9.2037e-05	0.00284024
+UniRef50_L0DM84	1.54644e-05	3.78804e-06
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.1211e-05	9.35959e-06
+Glucose sorbosone dehydrogenase	0.00710692	0.000390377
+iron ABC transporter ATP binding protein	9.5142e-06	0.000212752
+Transposase related protein 	0.000220929	0.000945481
+hypothetical protein	3.78461e-06	3.89051e-06
+UniRef50_F8JB05	1.14429e-05	9.23744e-06
+cold shock protein	1.00052e-05	3.0949e-06
+MarR family transcriptional regulator	1.12836e-05	2.09667e-05
+hypothetical protein	0.000114137	4.40446e-05
+Alanine dehydrogenase 2	0.0240121	0.0177895
+Probable potassium transport system protein kup	7.41841e-05	0.00330869
+UniRef50_R5T303	0.000161047	2.19555e-05
+UniRef50_A9AQT5	0.00613124	0.000255071
+UniRef50_L1NZZ4	0.000418627	0.000277741
+UniRef50_Z6HHY0	9.48915e-05	4.43368e-05
+cysteine desulfurase	1.97745e-05	5.16061e-05
+UniRef50_A2XBC4	0.00203696	0.000111396
+hypothetical protein	9.8809e-05	2.46774e-05
+Pleiotrophic effects on 3 hydrogenase isozymes	0.00249821	0.000345772
+Starvation sensing protein rspA	0.00235113	0.000266059
+Histidine kinase	0.000175343	0.00260159
+Predicted protein	5.65059e-06	0.000223741
+Ribonucleoside diphosphate reductase large subunit	2.62062e-06	0.000119896
+Alkaline phosphatase H	0.000862406	0.000282275
+UniRef50_A0RU57	7.42338e-06	3.74301e-05
+Gamma glutamyltranspeptidase	0.00031458	0.000154072
+Heavy metal translocating P type ATPase	0.00302387	0.000385826
+ABC transporter	3.15139e-05	3.70722e-05
+UniRef50_H5IZ71	0.000762066	0.000457282
+UniRef50_F9YXP6	0.000421671	0.00207943
+transcriptional regulator	2.41364e-05	1.62792e-05
+hypothetical protein	2.51845e-05	1.11979e-05
+Transcriptional regulator	0.00565665	0.00143965
+hypothetical protein	0.000169742	5.75482e-06
+UPF0758 protein BcerKBAB4_4299	0.0128261	0.00344446
+UniRef50_M9VBP8	0.000170261	0.00156861
+LexA repressor	3.91378e-05	5.48364e-06
+hypothetical protein	5.50414e-05	2.76094e-06
+Ferrichrome ABC transporter subunit	0.00876801	0.00130495
+TRAP dicarboxylate transporter, DctP subunit	0.00988798	0.000907379
+hypothetical protein	1.39924e-05	2.31912e-05
+Dihydroorotate dehydrogenase B ), catalytic subunit	0.0013317	0.000147672
+UniRef50_Q9RSA9	0.000164706	0.0152803
+OmpW family outer membrane protein	0.0177764	0.000518988
+replication factor A	9.23183e-06	2.0792e-05
+Transcriptional activator domain protein	4.71927e-06	1.0842e-06
+UniRef50_D4HCR0	0.000233454	0.00284091
+ComE operon protein 1, putative	0.00641753	0.000441648
+Bifunctional thioredoxin reductase thioredoxin	0.00010281	9.24126e-05
+UniRef50_R4LUX8	6.40539e-06	7.2832e-06
+Xanthine and CO dehydrogenase maturation factor, XdhC CoxF family	1.05158e-05	9.29747e-06
+UniRef50_R6BD47	3.57685e-05	1.59627e-05
+Phosphoserine phosphatase	4.29312e-06	4.75271e-06
+multidrug ABC transporter	6.50067e-06	3.26298e-05
+UniRef50_U2SYT7	1.3989e-05	1.45985e-05
+TolC family type I secretion outer membrane protein	0.000647614	0.000149401
+UniRef50_K7R3S2	5.76305e-05	7.30983e-06
+UniRef50_S3P9S1	0.000135433	0.00345627
+UniRef50_I7DPT5	0.0082443	0.000937182
+hypothetical protein	2.83275e-06	2.52638e-06
+UniRef50_Q8CR25	0.00259776	0.000722022
+PE PGRS family protein	1.85881e-05	1.02993e-05
+UniRef50_H3VJS7	0.00696559	0.00116479
+UniRef50_A6M1M4	0.000213005	0.000444252
+Sulfate adenylyltransferase subunit 1	0.000118503	0.00278814
+inner membrane translocator	0.000389875	3.49606e-05
+UniRef50_E1Z5M0	4.21247e-05	6.8218e-05
+Glutamate  tRNA ligase	3.381e-06	2.28215e-06
+hypothetical protein TREMEDRAFT_32941	3.81824e-05	8.33266e-05
+hypothetical protein	3.67027e-05	4.20069e-06
+hypothetical protein	9.30059e-06	7.29237e-05
+Isoleucine  tRNA ligase	0.000247741	0.000638943
+hypothetical protein	0.000185484	3.63976e-05
+Enolase	6.93075e-06	5.21446e-05
+leucyl tRNA synthetase	0.00681007	0.00135081
+Autolytic lysozyme	0.000665638	0.00260806
+cation	0.00467632	0.000731332
+UniRef50_W4LU01	6.184e-05	3.783e-05
+Potassium efflux system KefA	0.000467867	0.000116373
+Ribosomal protein S9 isoform 1	3.06675e-05	3.73301e-05
+UniRef50_Q9RRE8	0.000275859	0.0127867
+UniRef50_I1E9S6	7.67091e-05	6.61459e-06
+hypothetical protein	3.4938e-06	0.000152504
+Inner membrane transport protein YdhP	0.00424921	0.00510588
+phosphoenolpyruvate synthase	1.64159e-06	9.93611e-05
+UniRef50_B8IW50	6.90432e-06	3.65552e-06
+hypothetical protein, partial	1.08522e-05	1.35991e-05
+UniRef50_S6AW69	0.000134929	6.16158e-05
+Peptide chain release factor 2	0.00046558	0.024076
+UniRef50_D2V1D7	5.21953e-05	1.29062e-05
+Pyruvate, phosphate dikinase	4.67758e-06	6.905e-06
+Helix turn helix domain protein	0.000371665	0.000100882
+hypothetical protein	3.36503e-06	1.51734e-05
+UniRef50_A6M324	0.000379241	0.0007389
+Ferrous iron transport protein B	0.000324204	0.000672274
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	4.79238e-06	5.50864e-06
+Thiamine import ATP binding protein ThiQ	7.76895e-06	1.18737e-05
+UniRef50_I0E580	0.000166501	0.00162973
+50S ribosomal protein L3	1.04652e-05	0.00019357
+UniRef50_C6SQB8	0.00245857	0.000466543
+hypothetical protein	7.16915e-06	1.6181e-05
+Uronate isomerase	6.62292e-06	0.00260685
+CRISPR associated endonuclease Cas1	0.00539215	0.00157719
+5 methyltetrahydrofolate  homocysteine methyltransferase, putative	0.00018696	0.00156179
+UniRef50_W1VEW5	4.91975e-05	9.17224e-05
+Flagellar biosynthetic protein FliP	0.00703106	0.00150066
+Glyoxalase family protein	0.000153681	3.58253e-05
+RDD family protein	0.000135523	0.00525444
+UniRef50_B9ECE2	0.000365968	2.63574e-05
+Protein RecA	0.000658678	0.00202841
+UniRef50_M9VGZ5	0.000243142	0.00142636
+Drug resistance transporter, EmrB QacA subfamily	0.000233344	0.000204056
+Outer membrane protein HopL	2.85776e-05	0.00212282
+UniRef50_S4MVA0	4.07156e-05	5.12456e-06
+UniRef50_E4BBY5	0.000181591	0.000163543
+Rrf2 family transcriptional regulator	2.64438e-05	2.35799e-05
+Anthranilate synthase component 2	0.000516677	0.00180552
+hypothetical protein	7.41787e-06	4.34537e-05
+UniRef50_W5E0V3	3.78538e-06	1.61696e-05
+Fibronectin fibrinogen binding protein	0.000482185	0.00114403
+UniRef50_Z0CP45	0.00119971	0.000124356
+UniRef50_T2LAG0	0.00011022	0.000121203
+UniRef50_UPI0003C1315E	9.23943e-06	3.21491e-06
+Delta aminolevulinic acid dehydratase	1.44662e-05	1.25935e-05
+hypothetical protein	4.55338e-06	3.047e-05
+Gnt II system L idonate transporter	0.00243642	0.000416279
+UniRef50_B8C850	1.46127e-05	1.9355e-06
+DNA replication and repair protein RecF	0.00175235	0.000132426
+Chaperone protein ClpB1	0.00412139	0.0233937
+UniRef50_Y5GWB2	0.00155559	3.77348e-05
+ABC transporter permease protein	0.00558366	0.00073005
+phosphate ABC transporter ATP binding protein	8.47911e-06	1.09161e-05
+UniRef50_G9NBA4	2.8586e-05	7.70996e-06
+two component hybrid sensor and regulator	1.05918e-05	3.8632e-06
+Elongation factor G, mitochondrial	9.92694e-06	4.68911e-06
+Serine hydroxymethyltransferase 3, chloroplastic	7.64051e-05	2.41779e-05
+UniRef50_A6LTX4	0.000126364	0.000252892
+UniRef50_Q08Q97	2.8481e-05	6.44081e-05
+Molybdopterin molybdenumtransferase	0.0184964	0.00352464
+Magnesium and cobalt efflux protein CorC	1.85863e-05	0.00025629
+HD domain protein	0.00343871	0.00271843
+hypothetical protein	0.000117268	2.37225e-05
+30S ribosomal protein S4, partial	3.76373e-05	8.77021e-05
+Type IV conjugative transfer system protein TraN	4.37425e-06	1.68207e-06
+Superoxide dismutase [Mn Fe]	0.00897631	0.00118058
+Cytochrome c oxidase	0.00121837	0.000108971
+Complete genome segment 14 17	3.69092e-05	0.000110798
+Type VI secretion protein, VC_A0114 family	3.20572e-06	3.42379e-06
+hypothetical protein	7.88193e-05	2.79414e-05
+UniRef50_A0A014PLF9	5.2861e-05	0.000752051
+NADH quinone oxidoreductase subunit A	1.35069e-05	9.12888e-05
+Transport protein 	0.000623912	0.00321455
+UniRef50_N6UGZ5	5.40437e-06	9.60313e-06
+Amidophosphoribosyltransferase	0.0195402	0.00468392
+UniRef50_R7PYG7	0.00253727	0.000998189
+NAD kinase	0.000226378	0.00275679
+2,5 diketo D gluconic acid reductase	1.09877e-05	4.06869e-05
+UniRef50_A4VV94	0.000327807	0.00104098
+hypothetical protein	7.01013e-06	5.84176e-06
+S adenosylmethionine synthase	4.45599e-05	0.000228977
+Constitutive fructose permease	0.00711097	0.000198639
+DNA polymerase IV	3.59489e-06	4.54324e-06
+hypothetical protein	4.03526e-05	5.19527e-05
+Putative antiporter subunit mnhG2	0.00648853	0.00292421
+hypothetical protein	0.00660772	0.000696403
+Acetylglutamate kinase	8.33661e-06	2.86639e-06
+hypothetical protein SPOA0411	0.000215359	0.000109595
+Ribonuclease HII	0.00512109	0.00114244
+Citrate transporter protein	0.00440551	0.00104084
+hypothetical protein	2.10329e-05	1.19079e-05
+Probable copper transporting ATPase PacS	7.20208e-06	5.52231e-06
+Ribonuclease Z	0.015428	0.00389363
+UniRef50_G4B7N4	3.1351e-05	8.03187e-05
+UniRef50_B9KWM7	0.00212635	0.000196227
+Cytosine deaminase	1.02407e-05	6.30512e-05
+Binding protein dependent transport systems inner membrane component	0.00227815	0.000362626
+hypothetical protein	1.72003e-05	2.10917e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000119461	7.9998e-06
+hypothetical protein	8.24211e-06	1.10686e-05
+Ni Fe hydrogenase, large subunit	7.51224e-05	0.00136024
+Marine sediment metagenome DNA, contig	0.00017613	2.3925e-05
+Protein rlx	0.000576395	6.9031e-05
+UniRef50_E7C7F3	3.51257e-05	1.18994e-05
+3 isopropylmalate dehydratase small subunit	0.0128261	0.00573176
+Inner membrane protein YjeH	0.00254133	0.000495357
+UniRef50_M0NFH7	0.000367288	0.000136297
+UniRef50_A0A038J3C7	0.00014621	3.88814e-05
+UniRef50_Q65JD4	5.22224e-05	0.000156967
+Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1	3.66344e-06	7.514e-06
+Major facilitator superfamily protein	0.00358248	0.000263228
+[Ni Fe] hydrogenase, small subunit	0.000555747	0.00145849
+UniRef50_R6MP39	3.40237e-06	1.84952e-05
+L serine dehydratase 1, truncated, partial	2.08287e-05	3.01879e-05
+Lytic murein transglycosylase	0.00133437	0.000171559
+Cytosol aminopeptidase	0.00396627	0.000475915
+UniRef50_C5MZL4	0.0148958	0.00196304
+chromate transporter	2.32185e-05	7.13144e-05
+Ribosome biogenesis GTPase A	0.00534478	0.00112904
+reverse transcriptase	3.85326e-06	5.17379e-06
+Holo [acyl carrier protein] synthase	2.94274e-05	5.5207e-05
+UniRef50_P45423	0.00379899	0.00115193
+Clamp binding protein CrfC	0.00340106	0.000290582
+UniRef50_P45421	0.00235867	0.00326628
+UniRef50_P45420	0.00171669	0.000715497
+hypothetical protein	4.03423e-06	0.000178054
+UniRef50_Q6FA27	0.000677615	0.00156996
+membrane protein	6.52222e-06	9.63878e-06
+hypothetical protein	3.88422e-06	1.50232e-06
+Glycosyltransferase involved in cell wall biogenesis	0.00080795	0.000263181
+Predicted protein	1.03062e-05	5.87373e-05
+Pirin family protein	4.34254e-06	6.69495e-06
+UniRef50_X1YG35	4.71335e-06	7.00985e-07
+Ribonuclease I	0.00171884	0.000836246
+Alcohol dehydrogenase [acceptor]	5.31552e-05	3.24838e-05
+hypothetical protein	0.000231875	5.55273e-05
+MULTISPECIES	4.59365e-05	5.93533e-05
+Flagellar transcriptional activator flhC	0.000435192	0.00195184
+UniRef50_D5WDT4	0.0012859	0.000560452
+hypothetical protein, partial	2.86198e-05	1.86117e-05
+Putative acetyltransferase	0.00749458	0.000214796
+DNA mismatch repair protein MutS	2.19747e-06	4.98781e-06
+UniRef50_M4S5A3	0.000105104	2.34637e-05
+PfkB family carbohydrate kinase	0.000144441	0.00112127
+hypothetical protein	1.15427e-05	1.69402e-05
+Maltose transport system permease protein MalG	0.00121764	0.000221735
+Putative membrane bound acyltransferase YkrP	7.38115e-06	4.85778e-06
+DNA topoisomerase 	0.000355801	0.0236204
+hypothetical protein	3.8174e-06	3.20639e-05
+hypothetical protein	1.87391e-05	1.72219e-05
+Replication initiation protein	0.00154634	0.00025694
+Leucine , isoleucine , valine , threonine , and alanine binding protein	0.0014854	0.000393208
+Protein translocase subunit SecD	0.00288888	0.000362412
+GntR family transcriptional regulator	0.00200102	0.00105272
+UniRef50_B7VAJ2	0.000753467	0.000906918
+hypothetical protein	0.000158736	0.000136671
+Arginine decarboxylase	0.000407019	0.00162915
+UniRef50_I4XMD7	0.00128782	0.000749842
+Bacteriophage replication gene A protein  (Fragment)	0.00055206	0.00326642
+Hydrogenase isoenzymes formation protein HypE	0.003578	0.000138771
+AsnC family transcriptional regulator	5.53215e-05	2.9374e-05
+hypothetical protein	4.27776e-06	6.11802e-06
+UniRef50_G3XZQ5	2.9898e-06	0.000134576
+UniRef50_A0RG68	0.000495297	0.000786351
+UniRef50_Q5M378	0.00543258	0.00381296
+Singapore isolate B  whole genome shotgun sequence assembly, scaffold_1	5.02666e-05	0.000577142
+DEAD DEAH box helicase	2.04997e-05	4.38035e-05
+UniRef50_Q1I665	1.04141e-05	1.01536e-05
+Ribonuclease E	0.000278418	3.01089e-05
+UPF0297 protein LGAS_0422	0.00172425	0.00111344
+UniRef50_U9DMQ5	6.54764e-05	5.85299e-05
+hypothetical protein	1.2324e-05	1.42039e-05
+hypothetical protein	6.07224e-05	4.03896e-05
+1 deoxy D xylulose 5 phosphate synthase	1.80293e-06	2.82224e-05
+Glutamate  tRNA ligase 1	0.0117337	0.000813436
+UniRef50_U8XD19	0.000277012	0.000224688
+3 dehydroquinate dehydratase	5.97807e-05	9.88585e-06
+hypothetical protein	4.0749e-05	6.90832e-06
+Peptidase M19	0.000262159	0.000380845
+Acetylornithine aminotransferase	0.00239993	0.000453291
+YihY family protein	0.000632346	0.00133696
+30S ribosomal protein S19	0.000819038	0.00271493
+tRNA  N(2)) dimethyltransferase	0.00305601	0.000243817
+hypothetical protein	0.000144981	6.69085e-05
+UniRef50_Q49UJ3	0.00128209	0.000522005
+UniRef50_A7WZX4	0.00775538	0.00132716
+Phosphoenolpyruvate protein phosphotransferase	6.07123e-05	0.00135752
+Trans 2 enoyl CoA reductase 	0.000317999	0.00248587
+Drug resistance transporter, Bcr CflA subfamily protein	0.000111317	0.00187163
+hypothetical protein	3.32014e-05	2.49155e-05
+hypothetical protein	2.4346e-05	1.70884e-05
+Stage II sporulation protein D	0.00107611	0.000695098
+Urease accessory protein UreG	0.00228017	0.000981647
+MULTISPECIES	7.84886e-06	1.35443e-05
+potassium transporter Kef	2.60165e-05	1.48611e-05
+UniRef50_P76559	0.00473335	0.000422131
+UniRef50_D3E189	0.00316387	0.000360644
+MULTISPECIES	4.59853e-06	4.53182e-06
+UniRef50_M9SFA8	0.00313626	0.000232617
+UniRef50_Q5HQ84	0.003251	0.00191032
+Quaking protein 3 	0.000118084	0.000127275
+UniRef50_W5IC94	0.000106841	0.000193088
+N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979	0.00980899	0.00145033
+Glucose 1 phosphate adenylyltransferase	9.9077e-06	4.14788e-06
+Pyruvate carboxylase	0.0099329	0.000790074
+Purine nucleoside phosphorylase DeoD type	2.37263e-05	3.65099e-05
+UniRef50_K1YAY7	2.93991e-05	0.000404519
+UniRef50_D3QIQ9	0.00753193	0.000881515
+Xanthine permease	0.000345878	0.000525013
+PTS system N acetylglucosamine specific IIBC component	0.0154338	0.00296002
+selenocysteine specific translation elongation factor	1.10275e-06	1.26708e-06
+Carbamoyl phosphate synthase small chain	9.85188e-06	3.77741e-06
+Lipoprotein releasing system transmembrane protein LolC	0.00523515	0.000570486
+UniRef50_E6EBC0	4.63397e-05	0.00158606
+tRNA lysidine synthase	0.00399693	0.000636772
+Cadmium, zinc and cobalt transporting ATPase	0.000220355	0.00255235
+UniRef50_Q3DT06	0.00137571	0.000458363
+Dihydroxy acid dehydratase	2.01583e-05	1.36909e-05
+UniRef50_K1JKI8	6.19166e-05	6.71978e-05
+Periplasmic serine endoprotease DegP	0.00474874	0.00030285
+Y_Y_Y domain containing protein	0.000415942	0.000655835
+Isoform GCH 4 of GTP cyclohydrolase 1	5.91307e-05	2.20548e-05
+UniRef50_A0A059DR32	0.00019606	3.67547e-05
+Valine  tRNA ligase	0.000355991	0.00268717
+Putative serine threonine protein kinase	0.000122495	0.00019735
+UniRef50_F2I2C3	3.86611e-05	1.05335e-05
+Alanine racemase	0.000151371	0.00244441
+excinuclease ABC subunit A	1.42265e-05	2.13954e-05
+Chorismate synthase	1.27201e-05	0.000115768
+UniRef50_N6VDK8	0.00050546	2.01868e-05
+UniRef50_N9IGS7	0.000188942	0.000788721
+N acetylgalactosamine specific phosphotransferase enzyme IIB component 1	0.0110312	0.00282662
+Glyoxalase bleomycin resistance protein dioxygenase	0.000457478	0.000188624
+Marine sediment metagenome DNA, contig	9.5631e-06	2.12742e-05
+Chemotaxis response regulator protein glutamate methylesterase	0.000447002	0.000212678
+Transcriptional regulator	0.000181918	0.000360954
+Aspartate  tRNA ligase	0.0062891	0.00490784
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.0225066	0.00252651
+Oligopeptide ABC transporter, permease protein	6.01292e-06	5.11733e-06
+Predicted protein	4.04445e-06	4.35306e-06
+UniRef50_H3CH15	4.92868e-06	3.96533e-06
+Membrane protein, putative	0.0184921	0.00230247
+UniRef50_K4R856	2.62381e-05	6.25678e-05
+Alpha beta fold family hydrolase	0.000330841	0.000687371
+UniRef50_C1ABB1	2.22544e-05	9.76634e-06
+Threonine  tRNA ligase	8.552e-06	0.000125842
+hypothetical protein	7.22976e-06	1.37336e-05
+UniRef50_B4EC93	0.00849349	0.000576668
+UniRef50_H1D9R7	2.6585e-05	3.46518e-05
+Colicin V producing membrane protein	0.000925573	0.00801479
+Chemotaxis histidine protein kinase	0.00541084	0.00058477
+hypothetical protein	8.8149e-06	5.92095e-06
+Probable malonic semialdehyde reductase RutE	0.000704975	0.000676237
+hypothetical protein	6.20685e-05	2.49565e-05
+UniRef50_E0XZI6	6.39348e-05	3.82729e-05
+UniRef50_I1QQ98	7.02953e-05	0.000255071
+UniRef50_D1A708	2.42612e-06	3.56112e-06
+Choline sulfatase	0.00495498	0.000208095
+Long chain acyl CoA synthetase	0.000330482	0.00308674
+UniRef50_K1VAT6	1.05458e-05	3.82625e-06
+hypothetical protein	7.87574e-05	6.11386e-06
+hypothetical protein	0.000235061	2.79543e-05
+Probable enoyl CoA hydratase echA8	0.000420067	0.0023391
+Chemotaxis response regulator protein glutamate methylesterase 2	5.83612e-05	5.02542e-06
+hypothetical protein	0.000103776	9.3368e-06
+UniRef50_F0G430	0.000314818	6.48307e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.48715e-05	5.71453e-06
+DegV domain containing protein SpyM3_0586	0.000120339	0.00234033
+Aldo keto reductase	4.58748e-06	1.87548e-05
+Nitrate reductase, alpha subunit	8.53015e-05	0.00239833
+NnrS family protein	0.00211563	0.000235631
+UniRef50_P30143	0.0054577	0.00280119
+Probable N acetylneuraminic acid outer membrane channel protein NanC	0.00405354	0.000371909
+Cof family hydrolase	0.000474884	0.00378452
+Truncated Pre protein	0.00486026	0.00075123
+UniRef50_F2FAF1	1.80401e-06	1.20901e-06
+XRE family transcriptional regulator	0.000219581	1.7849e-05
+hypothetical protein	1.02236e-05	6.37129e-05
+UniRef50_E1WQ62	0.0152467	0.00112692
+UniRef50_F7WET4	4.25576e-05	1.8573e-05
+Iron compound ABC transporter,iron compound binding protein	0.00515974	0.000830335
+Ribose import ATP binding protein RbsA	3.38968e-05	5.22482e-06
+UniRef50_R7ESR9	0.00620427	0.00555188
+Tex like protein	0.000518618	8.35918e-05
+Phosphate binding protein PstS 1	0.0044404	0.000332962
+UniRef50_D3QES6	0.0184699	0.00262827
+hypothetical protein	4.75909e-05	1.56481e-05
+AraC type DNA binding domain containing protein	0.000121206	0.0050269
+2Fe 2S ferredoxin	1.43219e-05	1.3749e-05
+UniRef50_D3QES1	0.00744567	0.00326389
+HEAT repeat containing protein	0.00141878	0.000257741
+Capsular polysaccharide type 5 biosynthesis protein cap5A	0.00807568	0.00100177
+Acetyl CoA acetyltransferase	9.5698e-06	4.27694e-05
+ABC transporter related protein	0.0153828	0.00372375
+Glycerol kinase	2.5269e-05	4.86573e-05
+hypothetical protein	7.58824e-06	3.74687e-06
+UniRef50_A0A024YRW3	4.3892e-05	1.67183e-05
+hypothetical protein	4.63454e-06	3.0787e-06
+PREDICTED	3.23522e-06	1.08499e-05
+Binding protein dependent transport systems inner membrane component	0.000832584	0.00018589
+UniRef50_A0A011UHJ8	0.000523864	9.07836e-05
+UniRef50_Q45480	0.00887951	0.00482629
+UniRef50_A4X0G8	0.00134854	0.000147643
+Phosphomethylpyrimidine synthase	0.00263031	0.000341375
+50S ribosomal protein L10	0.00036068	7.98299e-05
+UniRef50_F5ZH68	0.00345751	0.000655523
+UniRef50_M1V0X7	6.342e-05	0.00379206
+Methionine import ATP binding protein MetN	0.000306861	6.63799e-06
+Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH	0.00346439	0.00124627
+UniRef50_Q9RXL0	0.000567217	0.00678581
+UniRef50_A5UNK7	0.000525582	0.000137496
+UniRef50_Q15W23	1.14108e-05	1.85496e-05
+PREDICTED	2.06429e-05	1.33066e-05
+UniRef50_C5N3N0	0.00510732	0.00158497
+Pyridine nucleotide disulfide oxidoreductase	0.000147368	0.000973141
+cell division protein FtsX	3.66684e-06	2.39525e-05
+UniRef50_G2TDB8	3.68368e-05	7.60069e-06
+hypothetical protein	7.7929e-06	2.34624e-05
+Protein gp55	0.00286277	0.000564685
+hypothetical protein	9.06414e-05	2.5218e-06
+Bacterioferritin	0.0220953	0.000851791
+Vitamin B12 import system permease protein BtuC	0.00152437	0.000862359
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.83437e-06	1.73476e-06
+Xylose binding protein	0.0016763	0.000923681
+Protein MeaA	0.00698221	0.000804168
+siderophore ABC transporter permease	1.25772e-05	1.56325e-05
+Marine sediment metagenome DNA, contig	3.07673e-05	0.00103758
+UniRef50_N6JKR1	7.50592e-05	0.000157854
+Cobalamin  biosynthesis CbiX protein	0.000168348	0.00356014
+UniRef50_I1DXB2	8.90825e-05	1.48466e-05
+Cysteine synthase	3.19982e-05	0.00133965
+Transcriptional regulator	0.000160261	0.00282132
+hypothetical protein	1.02868e-06	1.267e-06
+3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase	0.00358809	0.000460412
+DNA polymerase III subunit beta	0.000478898	0.000111951
+Copper chaperone CopZ	0.00398386	0.00253471
+UniRef50_P39408	0.00193665	0.000952767
+50S ribosomal protein L21, partial	1.212e-05	0.000284055
+Cytosolic 5 nucleotidase 1B	6.07291e-05	4.13898e-05
+hypothetical protein	5.50905e-05	1.57401e-05
+NADH quinone oxidoreductase subunit N	0.00248749	0.000293954
+sodium	1.38811e-05	0.00105253
+UniRef50_Q28LX4	4.38685e-05	4.75443e-05
+Malto oligosyltrehalose synthase	0.00403629	0.000635704
+Glucose 6 phosphate 1 dehydrogenase	5.4141e-06	3.36148e-06
+Uronate isomerase	0.000300863	0.000791907
+Putative fructoselysine transporter FrlA	0.00337592	0.000478814
+DNA gyrase subunit B	1.92341e-05	5.95347e-05
+UniRef50_A3PPA1	0.0018102	0.000937528
+UniRef50_A3PPA7	0.000276087	0.000106875
+Putative colanic acid biosynthesis acetyltransferase WcaF	0.00321445	0.000338561
+Iron ABC transporter, permease protein	0.000386651	0.00292819
+Methionine import ATP binding protein MetN	8.19065e-06	0.00134566
+DNA repair protein RecO	0.000152977	0.00371939
+UniRef50_Q3IX14	0.00693227	0.00166921
+UniRef50_K7UZK8	3.03691e-05	0.000144515
+Transposase	5.04546e-05	1.48977e-05
+UniRef50_D8TPB8	3.1182e-05	2.05776e-05
+DNA invertase	0.000144732	2.115e-05
+UniRef50_S9S3Z7	9.93228e-05	3.27891e-05
+UniRef50_Q8DV78	0.0044717	0.00196307
+Predicted membrane protein with CBS domains	0.0213366	0.00214113
+hypothetical protein	1.4683e-05	1.66452e-05
+Ribose operon repressor, putative	0.0159537	0.00281949
+amno acid ABC transporter ATPase	3.12964e-05	1.45368e-05
+UniRef50_Q8DV75	0.00739856	0.00126291
+UniRef50_E8Q7C4	0.00595912	0.00421066
+Arsenical pump membrane protein	0.00344146	0.00114042
+Putrescine importer PuuP	3.56291e-06	2.16587e-05
+Magnesium chelatase subunit H	0.00424094	0.000727336
+4 deoxy L threo 5 hexosulose uronate ketol isomerase 1	9.32894e-06	7.10121e-06
+Sugar transferase	0.00356567	0.00106441
+Isoform 2 of RNA binding protein MEX3B	0.000255607	0.000290834
+ParB family protein	0.000104455	9.22518e-06
+Flagellar biosynthesis protein FlhA	0.00386578	0.000379344
+hypothetical protein	1.1177e-05	3.63932e-05
+UniRef50_A3PQH3	0.00594356	0.000492581
+UniRef50_P22787	0.00420106	0.000560167
+ABC transporter permease	5.63124e-06	8.7206e-06
+Thioesterase superfamily	1.26373e-05	0.0032317
+UniRef50_A0A024RXJ7	0.000158616	1.96327e-05
+Catabolic 3 dehydroquinase	9.16458e-05	4.57792e-05
+Cytochrome bd II ubiquinol oxidase subunit 1	0.00156397	0.000115496
+UniRef50_D8U5B8	1.13373e-06	2.52828e-06
+Glycolate oxidase subunit, GlcD	7.15047e-05	0.00701431
+large conductance mechanosensitive channel protein MscL	0.000227201	0.000178442
+UDP N acetylenolpyruvoylglucosamine reductase	0.000129608	0.00126318
+MarR family transcriptional regulator	1.45064e-05	4.8281e-05
+hypothetical protein	2.98034e-06	7.90944e-06
+Two component sensor histidine kinase	0.00743515	0.00120094
+hypothetical protein	0.000161562	7.78153e-06
+Lipopolysaccharide biosynthesis protein WzxC	0.00188378	0.000127143
+GTP binding protein TypA BipA homolog	7.9002e-05	0.0238372
+hypothetical protein	0.000120471	1.46009e-05
+UniRef50_O27830	0.00267628	0.000247451
+UniRef50_L7F3W2	0.00017645	0.000121004
+response regulator	3.32586e-05	1.36275e-05
+UniRef50_Q9I1P8	0.00167464	0.000386798
+hypothetical protein, partial	1.24181e-05	9.27174e-06
+elongation factor G	1.03951e-05	5.39134e-05
+hypothetical protein	3.27054e-06	5.40287e-06
+UniRef50_R6H780	5.19449e-05	5.99361e-05
+Marine sediment metagenome DNA, contig	1.11324e-05	1.38215e-05
+UniRef50_C6SLG1	0.000623238	2.5236e-05
+Bifunctional protein PyrR	2.11312e-05	3.46063e-05
+Ribonuclease 3	2.05427e-05	3.63216e-05
+ABC type dipeptide oligopeptide nickel transport system, permease component	9.67094e-05	0.023394
+UDP N acetylmuramate	0.00256328	0.000187984
+UniRef50_W7WWN9	0.000240191	3.75847e-05
+RNA methyltransferase, TrmA family	0.00054458	0.00214591
+Polysaccharide deacetylase	0.00177483	0.000122323
+hypothetical protein	2.64891e-06	2.36242e-06
+Quinate shikimate dehydrogenase	0.00341082	0.000442634
+Chromosome undetermined SCAF2249, whole genome shotgun sequence. 	0.00125141	5.61326e-05
+Carbamoyl phosphate synthase large chain, N terminal section	2.67906e-05	1.0198e-05
+UniRef50_C7D5Q5	4.07794e-05	1.10147e-05
+ATP dependent Clp protease proteolytic subunit	8.8555e-06	7.22198e-05
+ABC transporter	0.000154843	1.60514e-05
+monovalent cation H+ antiporter subunit A	0.000181246	3.70671e-05
+UniRef50_F2UDL8	2.82726e-05	4.63055e-05
+Methyl accepting chemotaxis sensory transducer	0.000245966	0.00116315
+hypothetical protein	0.000201526	0.00465108
+UniRef50_A4VRC5	1.23984e-05	9.24794e-06
+UniRef50_A4VRC6	5.94091e-05	2.17136e-05
+UniRef50_Q0G053	9.36433e-05	1.94036e-05
+UniRef50_T1ZL16	1.82372e-05	1.7179e-05
+Probable galactose dehydrogenase GalD	0.00427706	0.000451219
+ApbE	6.64917e-06	0.00161367
+Isoprenyl transferase	7.2749e-06	6.25077e-06
+UniRef50_B8NR51	4.04567e-06	1.97417e-06
+urea ABC transporter permease	6.72046e-06	8.57337e-05
+Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000721669	0.000471946
+UniRef50_C0B0T0	4.39635e-05	3.23098e-05
+hypothetical protein	3.64755e-05	5.34522e-05
+Ribosome maturation factor RimP	0.000385361	0.0298728
+Poly polymerase	8.01306e-05	0.00548791
+Phosphoribosylamine  glycine ligase	0.00126177	0.00486449
+Adhesin like protein	0.00276261	2.01171e-05
+Molybdopterin biosynthesis protein, MoeA	0.0028478	0.000241795
+hypothetical protein	1.60442e-05	3.18887e-05
+Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein	9.8424e-05	0.00016699
+hypothetical protein	1.24872e-05	5.83054e-05
+bifunctional ppGpp synthetase II  guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase	2.09137e-06	2.20977e-06
+4 phosphopantetheinyl transferase	1.43727e-05	1.76181e-05
+magnesium transporter MgtC	7.15658e-06	2.11064e-05
+Membrane protein	2.00923e-05	0.000135491
+Sugar isomerase 	0.000192313	0.00108385
+hypothetical protein	7.44839e-06	7.71934e-06
+binding protein dependent transport systems inner membrane component, partial	2.34227e-05	4.04698e-05
+Formamidopyrimidine DNA glycosylase	6.07901e-06	5.34208e-06
+HlyD secretion family protein	0.0265359	0.00222002
+Dipeptide transport ATP binding protein DppF	0.00227892	0.000122657
+Cytochrome B561	0.00233704	0.00017709
+hypothetical protein	2.74634e-05	3.63004e-06
+UniRef50_Q9RT80	0.00020947	0.00446914
+2 dehydro 3 deoxygluconokinase	8.07644e-06	6.55488e-06
+Major facilitator superfamily MFS_1	0.000173202	0.000169613
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000446082	0.00460416
+Porin P	0.000524204	0.00018387
+Dehydrogenase	0.0129043	0.00162471
+PREDICTED	7.12228e-06	6.02705e-05
+ATP dependent RNA helicase HrpA	0.000116105	0.000126194
+Antibiotic biosynthesis monooxygenase	0.0269959	0.00211566
+ABC transporter related protein	5.38191e-05	0.00326764
+hypothetical protein	8.56611e-06	4.21086e-06
+hypothetical protein	5.85803e-06	4.00953e-06
+UniRef50_L7WXE6	0.00663155	0.0021089
+UniRef50_A0A017T7C4	2.11097e-05	3.19588e-05
+ATPase	0.00490852	0.000685732
+Lysine  tRNA ligase	3.99589e-06	4.47947e-06
+MULTISPECIES	1.57688e-05	0.00105881
+UniRef50_J6JBM8	5.662e-05	1.62167e-05
+60 kDa chaperonin	0.000224972	0.00378842
+3 oxoadipate CoA transferase subunit B	2.74241e-05	1.2758e-05
+Transcriptional regulator	0.00909241	0.000824358
+ABC transporter membrane protein subunit and ATP binding protein	0.00520684	0.000917535
+UniRef50_A4E7V0	8.43473e-05	8.76907e-05
+xanthine dehydrogenase, partial	2.03549e-05	6.66437e-06
+UniRef50_Q3J2Q4	0.0118758	0.00098906
+Uroporphyrinogen decarboxylase	6.08504e-06	7.32709e-06
+Threonine dehydratase medium form	5.66755e-06	6.33803e-06
+UniRef50_C5AVJ7	0.000162462	0.000356289
+Phosphotransferase system, EIIC	7.2846e-05	0.00301439
+UniRef50_UPI00035123E6	6.80356e-05	1.7141e-05
+RNA polymerase binding transcription factor DksA	0.00216442	0.00118138
+UniRef50_A5UM65	0.000426011	0.00018942
+Teichoic acid biosynthesis protein F	0.00794533	0.00294893
+Thiol	6.67755e-05	0.00216807
+Potassium uptake protein, TrkH family protein	0.000646856	0.00336961
+Inosine 5 monophosphate dehydrogenase related protein III	0.00242873	0.000147188
+Acylphosphatase, putative	1.89581e-05	2.69855e-05
+TatA E family twin arginine targeting protein translocase	0.000107061	5.6341e-05
+hypothetical protein	5.86091e-05	7.9335e-06
+Type I restriction modification system, restriction enzyme	8.10931e-05	0.00211388
+ISxac3 transposase	0.000111057	0.000226916
+hypothetical protein	1.13663e-05	1.11482e-05
+ribonuclease III	5.286e-06	1.50748e-05
+HAD superfamily hydrolase	0.000457208	0.000943684
+Acyl CoA dehydrogenase	0.000119003	0.000279529
+hypothetical protein	3.51854e-05	3.55549e-06
+hypothetical protein, partial	5.64872e-06	9.10765e-07
+Nucleoside specific channel forming protein tsx	0.00160389	0.000750139
+Thioredoxin	0.000459167	0.00554183
+Glutamate synthase [NADPH] small chain	0.00191398	0.000786914
+Gamma glutamyl phosphate reductase	0.000499887	0.00321824
+DNA directed RNA polymerase subunit beta	7.56566e-06	8.9787e-07
+UniRef50_A5IS43	0.00205649	0.0018075
+TRAP transporter, DctM subunit	5.45446e-05	1.49566e-05
+hypothetical protein, partial	0.000238846	5.10657e-05
+Elongation factor 1 alpha	0.00231378	0.000501137
+Sulfur carrier protein ThiS adenylyltransferase	0.00113043	0.000279178
+3 carboxymuconate cyclase	9.05358e-06	3.89989e-05
+Elongation factor P	1.55525e-05	0.000137971
+SLH family protein	0.000110223	0.0151206
+Inner membrane transport protein YdiN	0.00217663	0.000661567
+CDP glycerol glycerophosphotransferase	0.00952161	0.000365076
+AfsA like protein	0.000113827	0.000350713
+UPF0176 protein DR_1100	0.000226887	0.0100428
+HTH type transcriptional regulator BetI	0.000162584	0.00437887
+Citrate transporter	0.000720111	0.00436022
+Aspartate  tRNA ligase	2.51994e-06	1.74819e-06
+Predicted protein	4.06216e-05	3.6713e-06
+Inner membrane ABC transporter permease protein YnjC	0.00329805	0.00111747
+Lysyl tRNA synthetase	0.000176607	0.00342669
+ribonuclease	1.18016e-05	7.22006e-06
+hypothetical protein	8.09157e-07	1.48126e-06
+N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase	5.11364e-06	5.74422e-05
+nitrogen regulatory protein P II	0.000690089	1.64697e-05
+UniRef50_UPI000441EF2C	0.000276284	5.82387e-05
+UniRef50_A3PLF5	0.000734793	0.000107555
+Acyl coenzyme A dehydrogenase	0.00281584	0.000408567
+Proton sodium glutamate symporter	0.000140815	0.000301768
+alkaline phosphatase	2.76792e-06	1.11671e-05
+hypothetical protein	2.90796e-05	5.88243e-06
+Transcriptional regulator, TetR family	0.000981076	0.000475655
+UniRef50_I7EDS2	0.000673012	9.54228e-05
+UPF0098 protein YbhB	0.000853834	0.0271283
+16S rRNA methyltransferase, partial	1.08609e-05	8.75743e-06
+UniRef50_Q3DN63	3.39731e-05	6.08108e-06
+hypothetical protein	6.47388e-06	2.59087e-06
+UniRef50_V9VP30	4.75038e-05	3.73864e-05
+Dicarboxylate symporter family protein	4.2836e-05	0.000162557
+DeoR family transcriptional regulator	0.00521967	0.00161421
+Glycerol 3 phosphate acyltransferase	6.81705e-06	2.49542e-05
+Lipopolysaccharide cholinephosphotransferase, LicD family	0.00298617	0.000271874
+Polyribonucleotide nucleotidyltransferase	2.06172e-06	2.10319e-06
+UniRef50_V5U2H7	0.000482516	0.000244691
+Prephenate dehydratase	0.000144029	0.0162479
+hypothetical protein	2.20273e-05	7.44628e-05
+Phospho 2 dehydro 3 deoxyheptonate aldolase	0.000121498	0.00359696
+hypothetical protein	6.86669e-06	6.11921e-06
+Glycosyl transferase, family 2	0.000499745	0.000599153
+hypothetical protein	0.000177169	1.53412e-05
+Heme acquisition protein HasAp	0.00016417	0.000182861
+hypothetical protein, partial	2.52121e-05	1.386e-05
+Trk system potassium uptake protein TrkA	0.000166334	0.00265708
+Oligopeptide ABC transporter	0.00407152	0.000705545
+Ribosome binding ATPase YchF	0.000152284	0.00223953
+Rubredoxin	0.000794068	0.00101431
+Chemotaxis response regulator protein glutamate methylesterase of group 2 operon	0.00607217	0.000941721
+Coagulation factor 5 8 type domain protein	5.54446e-05	0.000397874
+Aspartate carbamoyltransferase	0.00416183	0.000875235
+Pyruvate dehydrogenase E1 component subunit alpha	0.00789175	0.00100325
+Singapore isolate B  whole genome shotgun sequence assembly, scaffold_6	0.000188784	0.000135729
+DNA gyrase subunit B	0.00316899	0.000271049
+UniRef50_P0AAP6	0.00240686	0.000550827
+UniRef50_P31433	0.003246	0.000396846
+hypothetical protein	1.04743e-05	1.18775e-05
+Primosome assembly protein PriA	0.000362985	0.000346238
+hypothetical protein	1.03876e-05	2.88946e-06
+UniRef50_S9UZE8	0.000101676	0.000114331
+Penicillin binding protein 1A	0.0048877	0.000711027
+ATP	0.00160916	0.00018942
+UniRef50_I4F260	4.63727e-05	4.30253e-06
+Transposase	0.00353028	0.000275801
+Short chain dehydrogenase	0.000293502	0.00205938
+ribosome binding factor A	9.65671e-05	0.000101621
+AsnC family transcriptional regulator	0.000280457	0.000227303
+DoxX family protein	5.38129e-05	1.54376e-05
+hypothetical protein	2.47203e-06	6.53918e-06
+Immunogenic protein 	9.87277e-05	3.59199e-05
+Outer membrane specific lipoprotein transporter subunit LolC family protein 	5.16776e-05	4.89838e-05
+UniRef50_L1IEH2	7.61963e-06	8.38174e-06
+UniRef50_T1FJ63	2.96225e-06	4.25539e-07
+cytochrome C transmembrane protein	0.00013297	3.80527e-05
+Rhamnan synthesis F	3.44998e-06	3.08064e-06
+UniRef50_R6JHL0	8.78471e-06	5.81624e-06
+hypothetical protein	3.41236e-06	3.09858e-06
+Adenylate cyclase	0.00527595	0.00451169
+UniRef50_F0RLL2	6.84042e-05	0.0109542
+hypothetical protein	1.6974e-05	0.00012964
+argininosuccinate lyase	2.07271e-05	6.3542e-06
+Zinc knuckle containing protein like	6.40425e-05	8.03432e-05
+Translation initiation factor IF 2	0.000164122	0.0020185
+hypothetical protein	0.000121905	1.51025e-05
+hypothetical protein	3.65925e-06	3.2359e-06
+Appr 1 p processing domain protein	1.14879e-05	0.000149844
+UniRef50_V6JJY2	3.47139e-05	0.00046624
+6 carboxy 5,6,7,8 tetrahydropterin synthase	0.0128999	0.000653968
+PREDICTED	0.00419279	0.00113735
+Molybdate metabolism regulator	0.000375877	0.000553178
+hypothetical protein	0.00140271	7.60509e-05
+DNA repair protein RecO	1.99321e-05	4.11518e-05
+peptide ABC transporter ATP binding protein	2.79842e-05	4.29286e-06
+Succinate semialdehyde dehydrogenase, mitochondrial	0.0031926	0.00175201
+UniRef50_Q8CS01	0.00459507	0.0056036
+Inosine 5 monophosphate dehydrogenase	0.000243649	0.00244038
+Heavy metal RND efflux membrane fusion protein CzcB family protein	0.000171666	0.00442685
+Putative epstein Barr nuclear antigen 1 	8.97105e-05	0.000101378
+UniRef50_F7V1W3	0.000299828	3.5112e-05
+UniRef50_Q04KQ9	0.00246399	0.00127743
+DNA primase	0.000152724	0.013166
+heme ABC transporter ATP binding protein	1.20902e-05	2.12703e-05
+phosphoenolpyruvate protein phosphotransferase PtsP	1.06949e-05	2.72381e-05
+Heavy metal atpase 5 isoform 1	1.47463e-06	7.92106e-07
+UniRef50_F5M5U6	0.00121775	0.000438485
+Bifunctional enzyme IspD IspF	1.04382e-05	8.12069e-06
+UniRef50_G4LIC7	0.000989067	0.000102494
+UniRef50_UPI000252B7A9	3.24459e-05	2.14448e-05
+Putative transposase	3.58256e-05	1.18492e-05
+Transcriptional regulator, LysR family	0.00155718	0.00109545
+UniRef50_M9VAV5	0.000237816	0.00208654
+nitrogen regulatory protein P II 1	2.14785e-05	2.71649e-05
+hypothetical protein	4.84566e-06	5.17615e-06
+UniRef50_B0VPR2	0.000125891	0.00549559
+Putative lipoprotein	1.42694e-05	5.70403e-06
+Degenerate transposase 	0.000253752	0.000870707
+L serine dehydratase alpha chain	1.40911e-05	1.79187e-05
+Rubrerythrin 	0.00174422	0.00016535
+hypothetical protein	7.13858e-06	6.05217e-06
+UniRef50_Q3J096	0.00253923	0.000510676
+UniRef50_Q3J090	0.00747545	0.000353484
+secretion system protein E	1.04422e-05	5.06282e-06
+UniRef50_Q6F957	0.000424554	0.00330294
+UDP glucose 6 dehydrogenase	0.00195986	7.29958e-05
+UniRef50_K4KNP7	0.000348154	0.00053512
+PpiC type peptidyl prolyl cis trans isomerase	0.000748562	7.3234e-05
+Light independent protochlorophyllide reductase subunit N	4.38031e-05	1.04563e-05
+Imidazoleglycerol phosphate dehydratase	0.000462083	0.00387527
+Pyridoxine pyridoxamine 5 phosphate oxidase	0.000350196	3.5967e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 	4.08177e-06	8.34354e-06
+hypothetical protein	0.00178344	0.000369485
+Glycosyltransferase, Succinoglycan biosynthesis protein exoL	0.000863908	0.000116604
+hypothetical protein	4.7096e-05	5.25046e-06
+hypothetical protein	0.000829776	2.91235e-05
+Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 	0.000196103	1.72808e-05
+ABC transporter permease protein	0.000257563	0.000693887
+Cupin 2 conserved barrel domain protein	0.000117463	4.59122e-05
+Amino acid transporters	0.000358627	0.00122877
+spermidine putrescine ABC transporter ATP binding protein	5.82358e-05	1.64556e-05
+UniRef50_Q9RVX3	0.000172591	0.0151755
+Catalase	1.11505e-05	2.24565e-05
+Transcriptional regulator, TetR family	0.000349028	0.000167197
+peptidase S11	3.46703e-06	9.65057e-06
+Competence protein CglA	0.00663913	0.00345125
+UniRef50_V2Y8C8	0.000131243	2.28354e-05
+UniRef50_A4WXA6	0.00502118	0.00249402
+5 oxoprolinase	0.0064238	0.00069436
+Protein CbbY	0.000145903	0.000414938
+PREDICTED	2.62555e-06	2.373e-05
+Putative phage terminase, large subunit	8.56862e-06	4.72236e-05
+RepA 	0.000143812	1.83164e-05
+hypothetical protein	8.5505e-06	0.000136774
+Purine catabolism regulatory protein	2.14293e-05	0.000801608
+UniRef50_Q4MM88	0.000394393	0.000101703
+Relaxase mobilization nuclease domain protein	0.000122699	2.68879e-05
+hypothetical protein	1.06163e-05	7.40119e-06
+Transcriptional regulator	0.000104816	4.56366e-06
+hypothetical protein	3.29579e-06	8.32387e-06
+Amino acid carrier protein AlsT	0.0199799	0.00204655
+UniRef50_Q28VF6	0.00116777	0.000381149
+hypothetical protein	5.71177e-06	9.28427e-06
+Probable acetyl CoA acetyltransferase	0.00247443	0.000557844
+UniRef50_R5UAF2	5.1705e-05	3.63768e-06
+Radical SAM superfamily protein	0.000918157	4.31243e-05
+Methionine synthase	6.52024e-07	9.25168e-06
+Elongation factor Ts	0.0226846	0.00261179
+hypothetical protein	1.01931e-05	4.66832e-06
+Putative tape measure protein	0.00108425	0.00023641
+Urease subunit gamma	3.32003e-05	0.000113436
+Geranylgeranyl diphosphate reductase	0.00500107	0.00117454
+UniRef50_B0V8T9	0.00023104	0.00335083
+Permease of the major facilitator superfamily	0.00749029	0.00262144
+UniRef50_P75818	0.00308286	0.000303327
+potassium transporter KefB	1.91261e-05	3.54439e-05
+3 deoxy D arabino heptulosonate 7 phosphate  synthase	0.000106954	0.00163933
+UniRef50_A5V3C2	0.00019288	3.02991e-05
+Glycosyltransferase	7.42933e-05	0.00342976
+Glutathione dependent formaldehyde activating, GFA	0.00998541	0.00290798
+UniRef50_C5AV20	8.24324e-06	9.31548e-06
+PREDICTED	1.17495e-06	5.51384e-06
+Ferrochelatase, HemH	5.77931e-05	0.00319022
+Serralysin	0.00042276	7.53861e-05
+hypothetical protein	1.60627e-05	2.13099e-05
+UniRef50_F7CYV8	8.15157e-06	3.7704e-05
+Putative hemagglutinin hemolysin related protein	0.000275508	0.00200381
+UniRef50_Q6A889	0.000182907	0.00212694
+hypothetical protein	3.5844e-05	5.66699e-05
+thioredoxin	0.00010072	7.91185e-05
+hypothetical protein	2.55129e-05	1.33333e-05
+Protein McrC	0.00292565	0.000325435
+hypothetical protein, partial	4.31412e-05	2.4484e-05
+adenosylcobinamide kinase	8.78714e-05	4.98387e-05
+5 carboxymethyl 2 hydroxymuconate isomerase	9.15997e-06	1.84363e-05
+Two component sensor histidine kinase	0.00299523	6.45934e-05
+Putative SLIT ROBO Rho GTPase activating protein 1 like protein 	0.00724202	0.00212221
+UniRef50_E2NSL6	0.000135595	0.000567201
+hypothetical protein	9.77365e-05	1.82904e-05
+chemotaxis protein CheY	7.87701e-06	1.88253e-05
+UniRef50_Q8DSA7	0.00324825	0.000594502
+Splicing coactivator subunit like protein	1.30483e-05	5.9064e-05
+nucleoside triphosphate diphosphatase	6.93315e-05	7.76117e-06
+F420 0	0.00262118	0.000725409
+ABC transporter, ATP binding protein	0.000349783	0.00233445
+NAD dependent aldehyde dehydrogenase like protein	0.000142476	0.000670499
+UniRef50_F5XNW0	3.01069e-05	0.000294105
+hypothetical protein	5.53113e-06	9.74519e-06
+Dipeptide transport system permease protein DppB	0.0128623	0.00128521
+Oligopeptide binding protein oppA	0.00875532	0.00104286
+hypothetical protein	7.96124e-06	9.54975e-06
+hypothetical protein	1.3004e-05	3.27512e-06
+hypothetical protein	9.53135e-05	1.1412e-05
+Porphobilinogen deaminase	0.00379674	0.00063296
+UDP glucose 4 epimerase	0.00358678	0.00149926
+Ribosomal RNA small subunit methyltransferase A	0.00945376	0.00144182
+UniRef50_P65560	0.00400069	0.00063727
+Malate dehydrogenase	0.000391563	0.00252456
+UniRef50_Q62KH7	1.7915e-05	3.32746e-05
+UniRef50_E6E0D9	7.74537e-05	0.000174319
+TRAP transporter solute receptor, TAXI family	6.79765e-06	0.000169438
+Transcription termination antitermination protein NusA	0.000370377	0.0034035
+UniRef50_E6E9X3	0.000162062	0.00014229
+Phosphate specific transport system accessory protein PhoU	0.0103759	0.000880814
+Acyl CoA dehydrogenase domain protein	0.00740788	0.00145982
+hypothetical protein	5.64958e-05	1.22544e-05
+UniRef50_R4XNN0	0.00273686	0.000161354
+CRISPR associated endonuclease Cas3 HD	3.92553e-05	7.28033e-05
+UniRef50_M5EKG8	0.000137445	3.01494e-05
+hypothetical protein	3.27993e-05	3.87916e-06
+hypothetical protein	4.62441e-05	1.36025e-05
+UniRef50_B7H2D5	0.000278139	0.016498
+Integral membrane protein 	1.77121e-05	0.000138016
+UniRef50_Q8CLS1	7.25736e-05	0.00033402
+Transcriptional regulator, LysR family	0.00033075	0.000103439
+UniRef50_R7DG92	8.30328e-05	3.94916e-05
+UniRef50_S4XSR0	3.71885e-05	6.90518e-05
+Type I restriction enzyme, R subunit	0.000292194	0.00299925
+hypothetical protein	1.25465e-05	4.83231e-06
+Bifunctional autolysin	0.00093705	5.19461e-05
+Rhizobactin siderophore biosynthesis protein RhbE	0.000118503	0.004429
+Long chain fatty acid  CoA ligase	0.0136211	0.00167346
+hypothetical protein	2.27405e-05	2.25593e-05
+threonine dehydratase	3.91694e-06	3.70521e-06
+multidrug transporter	0.0089106	0.00138505
+PREDICTED	5.67872e-06	2.8306e-06
+Peptidase S8 and S53, subtilisin, kexin, sedolisin	0.000162053	0.000597439
+ABC transporter	4.68954e-06	4.42623e-06
+Magnesium transporter	0.000245867	0.00196606
+UniRef50_C9A5A3	5.94147e-06	0.00096865
+PAS PAC sensor signal transduction histidine kinase	0.000608841	0.000638482
+D alanyl D alanine carboxypeptidase DacF	1.98001e-05	0.000179929
+monovalent cation proton antiporter subunit MnhG PhaG	3.70488e-05	0.00027083
+ComEC late competence protein 3	0.00751227	0.00193922
+UniRef50_Q4EJM8	0.000338418	0.000170365
+Conserved domain protein	0.00214453	0.000559015
+acetoin dehydrogenase, partial	2.69749e-05	8.9744e-06
+UniRef50_A0A008LUF2	5.23579e-05	3.96545e-05
+UniRef50_W1IWA4	2.28256e-06	5.44273e-06
+Site specific recombinase XerD	0.00690369	0.00375547
+Glycine betaine proline transporter, membrane component of ABC transporter	0.00109338	0.00033862
+Formate nitrite transporter	0.00344975	0.00110609
+UniRef50_D4HFJ4	0.000159699	0.00181329
+Phage related protein	0.000903053	0.000403039
+Precorrin 4 C methyltransferase	0.00452542	0.00173437
+single stranded DNA binding protein	0.000249295	0.0223116
+ISSep1 like transposase	0.000624331	6.07548e-05
+Binding protein dependent transport systems inner membrane component	0.00988728	0.000284714
+UniRef50_UPI000273DF52	2.31643e-05	2.62588e-05
+UniRef50_A0A059IL14	0.000211367	1.84338e-05
+hypothetical protein	0.000148144	1.24018e-05
+HTH type transcriptional regulator XapR	0.00529759	0.000287825
+Oxidoreductase domain protein	0.00134601	0.000939883
+UniRef50_F3U531	0.00195364	0.000616964
+PREDICTED	7.70467e-06	1.46635e-05
+Cobalt dependent inorganic pyrophosphatase	0.000658607	0.000224701
+UniRef50_F3U537	0.00122195	0.000223345
+UniRef50_B6IP81	0.00609245	0.00138079
+hypothetical protein	5.04397e-05	1.22388e-05
+nitrogen regulatory protein P II	9.87869e-06	2.81932e-05
+hypothetical protein	1.15911e-06	3.46826e-05
+UniRef50_P52048	0.00515345	0.000401013
+ferredoxin, partial	9.65145e-05	0.000221255
+TraW protein	0.000100344	3.5126e-06
+UniRef50_H4VIE3	0.00274183	0.000480133
+GGDEF family protein	0.000139859	0.00655924
+Marine sediment metagenome DNA, contig	0.000155359	6.81367e-05
+hypothetical protein	0.000719732	0.000110013
+5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase	0.00715725	0.000755701
+Phosphate binding protein, putative	4.34674e-06	3.20665e-06
+Electron transport complex subunit D	9.9866e-05	0.000145048
+Pur operon repressor	0.00281095	0.00208302
+UniRef50_M4FTZ0	3.59712e-06	3.16077e-05
+UniRef50_I9KL58	1.10386e-05	3.17504e-06
+hypothetical protein	0.000232264	7.82916e-05
+UniRef50_S6AYL1	0.000391135	0.000109761
+PREDICTED	5.85264e-06	5.4985e-06
+Peptidase U35 phage prohead HK97	8.50224e-06	6.78098e-06
+AsmA family superfamily protein	1.57423e-06	1.044e-06
+Soluble aldose sugar dehydrogenase YliI	0.00529429	0.000439724
+UniRef50_U5R0R0	0.000258311	0.000179173
+Glucosamine 6 phosphate deaminase	0.0024903	0.00197886
+diguanylate cyclase	1.29593e-06	2.08947e-05
+L xylulose 5 phosphate 3 epimerase	3.3525e-05	1.72609e-05
+cytochrome C	3.37027e-06	2.19702e-05
+hypothetical protein	1.44583e-05	2.47817e-06
+Chaperone protein ClpB	0.00637414	0.00181789
+Extracellular solute binding protein, family 1	0.00019017	0.000531551
+hypothetical protein, partial	7.22237e-05	6.90656e-06
+Expressed protein 	0.000238551	2.5352e-05
+Binding protein dependent transport systems inner membrane component	0.000150919	0.000574574
+UniRef50_M9VB01	0.000747886	0.00106306
+Non canonical purine NTP pyrophosphatase	0.00794812	0.00172362
+Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00522533	0.000323677
+Peptidase C14, caspase catalytic subunit p20 	3.93722e-06	0.000166984
+ABC transporter	0.000991835	0.00313687
+chemotaxis protein	8.5035e-05	8.37009e-06
+5 nucleotidase SurE	0.000857205	0.000670359
+amino acid ABC transporter substrate binding protein permease, partial	1.26231e-05	1.2307e-05
+hypothetical protein	0.00044473	3.71165e-05
+PREDICTED	1.52901e-05	1.46587e-05
+Sensor protein LytS	0.0204634	0.00348369
+Putative chitinase	0.000240443	0.000224526
+UniRef50_M9RU26	0.000386454	8.92494e-05
+tRNA pseudouridine synthase D	5.19147e-06	6.45914e-06
+Glycosyl transferase, group 1 family protein	0.0148493	0.00352904
+Phosphate import ATP binding protein PstB 1	3.02337e-05	0.00087772
+UniRef50_F0ML51	6.43086e-05	0.00112198
+Thymidylate synthase	1.92045e-05	3.95385e-05
+thioredoxin	0.000195262	0.00023373
+Iron containing alcohol dehydrogenase	0.000201527	0.0033491
+GAF domain protein	3.96504e-05	0.000852606
+malonyl CoA ACP transacylase	4.30317e-06	2.41688e-05
+hypothetical protein	3.23751e-06	5.32374e-06
+hypothetical protein	4.21184e-05	4.39165e-05
+Putative amino acid ABC transporter binding protein YhdW	0.00193668	0.000394497
+UniRef50_M5AC54	0.00445304	0.00211316
+LysR family transcriptional regulator	0.000114994	0.000368822
+UniRef50_R7CZZ3	1.04995e-05	1.04071e-05
+Integral membrane protein	0.00557637	0.00135926
+UniRef50_M5EV42	0.000429087	3.69743e-05
+Elongation factor G	0.00748069	0.00317941
+Outer membrane protein	0.00073347	0.000477594
+UniRef50_C6SP66	0.00200111	0.00055767
+TonB dependent siderophore receptor	0.000567217	0.000167509
+hypothetical protein	2.03275e-06	1.48425e-06
+UniRef50_Q6FEZ0	0.000107409	0.00382488
+UniRef50_W0H6X8	3.75057e-05	2.39103e-05
+UniRef50_R6YEM1	6.83565e-06	0.000350935
+Dihydrolipoyl dehydrogenase	0.00453272	0.000738621
+tRNA pseudouridine synthase B	0.0032934	0.0011057
+Group II intron encoded protein LtrA	0.000614548	0.00217498
+Peptidase C14, caspase catalytic subunit p20	0.000279283	0.000131436
+Winged helix turn helix domain protein	5.77645e-05	0.000322125
+UniRef50_U6JQ37	1.2163e-06	2.92459e-05
+Catabolite control protein A	0.0205153	0.00192603
+Cysteine desulfuration protein SufE	0.00015143	1.16071e-05
+Gp79	7.00137e-06	6.08524e-06
+Fumarate hydratase class II	0.00269144	0.000611709
+Chromosomal replication initiator, DnaA	3.58097e-05	6.59434e-06
+DEAD DEAH box helicase domain protein	0.000108915	0.000498275
+MULTISPECIES	5.15787e-06	8.25221e-06
+Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC	7.38045e-05	0.0020678
+UniRef50_G8VHB7	0.000225026	0.00137756
+hypothetical protein, partial	1.2441e-05	1.64794e-05
+UniRef50_A6KYV3	3.29827e-05	0.00251692
+UniRef50_Q8CQY5	0.0103613	0.00135187
+UniRef50_G0DXI1	0.00048292	0.00780016
+ATP dependent RNA helicase DDX50, putative	9.86186e-07	3.12087e-06
+hypothetical protein	1.02765e-05	9.45509e-06
+UniRef50_C6SS95	0.0123527	0.000319624
+UniRef50_Q8CQY8	0.00765065	0.00119787
+pseudouridine synthase	2.18165e-06	3.54303e-06
+UniRef50_C5WGK5	0.00083605	0.00109536
+Capsule polysaccharide export outer membrane protein CtrA	8.89556e-05	0.00169539
+hypothetical protein	5.19181e-05	2.29444e-05
+Expressed protein 	2.62064e-05	2.50376e-05
+Filamentous hemagglutinin, intein containing	0.00010797	4.50954e-05
+Putative cell surface adhesin domain protein 	0.0015583	0.000318106
+UniRef50_K5HQD7	0.000408763	0.000318386
+Rrf2 family transcriptional regulator	2.34094e-05	1.22863e-05
+Pts system fructose specific eiibc component 	2.82634e-05	0.000273255
+UniRef50_UPI00042CC86F	2.60493e-05	6.63035e-05
+AAA domain protein	1.33847e-05	1.1779e-05
+UniRef50_P54542	0.0188805	0.00353263
+Surfeit locus 1 family protein	3.5512e-06	8.31006e-06
+hypothetical protein	3.5615e-06	1.69994e-05
+UniRef50_U2T0K4	7.07344e-05	0.000144537
+DEAD DEAH box helicase family protein	0.000165651	0.00398937
+Sodium proton antiporter ChaA	0.00215756	8.35208e-05
+LysR family transcriptional regulatory protein	0.00580647	0.00069199
+LigA	1.05514e-05	1.4207e-05
+hypothetical protein	8.83617e-06	2.41534e-05
+Antitoxin YafW	1.33684e-05	0.000301291
+DMSO TMAO sensor hybrid histidine kinase	0.00647801	0.000738595
+MULTISPECIES	1.64812e-05	6.95347e-05
+glyoxal reductase	2.7812e-05	1.97119e-05
+UniRef50_I1ZNC1	0.000113443	0.000483022
+oligopeptide ABC transporter ATP binding protein	7.07776e-06	3.40333e-06
+gluconate transporter	5.26374e-06	5.80952e-06
+UniRef50_A6UZP9	0.000178698	4.6516e-06
+Clp protease	8.15426e-06	1.45253e-05
+Substrate binding region of ABC type glycine betaine transport system	0.000428141	0.00020462
+UniRef50_A1D4H8	0.000109107	0.000279987
+ABC transporter substrate binding protein QAT family	0.000383427	0.000627578
+hypothetical protein	0.000141558	1.42017e-05
+Dihydroorotate dehydrogenase 	0.000111391	0.00164944
+hypothetical protein	1.12368e-05	2.43522e-05
+Adenylate kinase	3.0394e-05	3.36135e-05
+N acetylmuramic acid 6 phosphate etherase	0.00676494	0.00160819
+DNA gyrase subunit A	7.18064e-06	4.49619e-06
+UniRef50_Q6FAU5	0.000193419	0.00244791
+signal recognition particle	6.91116e-06	4.88482e-05
+Dimethyl sulfoxide trimethylamine N oxide reductase	0.00724514	0.00107573
+Chorismate synthase	5.8426e-06	9.3383e-06
+Ribosomal RNA large subunit methyltransferase K L	0.00356541	0.00028227
+Iron transport system substrate binding protein	0.00020605	0.0027728
+LytTR family transcriptional regulator	1.78432e-06	2.16594e-06
+hypothetical protein AURDEDRAFT_166722	6.08634e-07	8.27062e-07
+PREDICTED	0.000211674	1.74731e-05
+Tyrosine recombinase XerD	0.00171521	0.000278575
+UniRef50_Q67WC5	0.000136163	7.03018e-05
+UniRef50_Q4FQA2	1.54112e-05	4.00812e-05
+Protein NrdI	1.23942e-05	3.00249e-05
+LacI family transcriptional regulator	0.000541097	0.000366177
+hypothetical protein	4.66582e-06	4.70053e-06
+Metallo beta lactamase domain protein	3.88829e-06	7.00505e-05
+Cysteine  tRNA ligase	3.23728e-06	7.25716e-06
+Metabolite transporter YdjK	0.00126959	0.000301068
+UniRef50_A7KA93	4.73188e-05	7.23339e-05
+Universal stress family protein	0.0150117	0.000196897
+hypothetical protein	2.63072e-05	1.51637e-05
+Dephospho CoA kinase	0.00041894	0.000176742
+Putative ABC transporter ATP binding protein MA_1418	4.241e-05	5.51398e-06
+Flagellar basal body rod protein FlgC	0.00757968	0.000309603
+DNA recombination protein RecO	1.96627e-05	3.91117e-05
+Epoxyqueuosine reductase	0.0159693	0.0022225
+Hpt protein	0.00325692	0.000516005
+Polysaccharide export transporter, PST Family	0.00181283	0.000320535
+UniRef50_Q3JX83	0.000383395	2.15028e-05
+Iron ABC transporter membrane protein	0.000307181	0.0052595
+UniRef50_W7W788	0.000328159	1.15914e-05
+S adenosylmethionine uptake transporter like protein	0.00376137	0.000271318
+Enolase 1 2	7.17428e-06	9.22341e-06
+UniRef50_A5N5L0	0.000220616	0.00158666
+amino acid transporter	1.44876e-05	1.35193e-05
+O antigen polymerase family	0.000692922	0.00125545
+hypothetical protein, partial	0.000229132	5.40325e-05
+CBS domain protein	0.00489826	0.000619609
+Glutamate  tRNA ligase	3.44652e-06	6.36695e-06
+hypothetical protein	4.36805e-06	3.82461e-06
+Universal protein YeaZ	0.000303197	0.00139417
+hypothetical protein	2.71869e-05	5.91917e-06
+UniRef50_R1FS00	1.10227e-05	5.30733e-05
+hypothetical protein	9.08957e-05	0.000523394
+Branched chain amino acid aminotransferase 2	0.0239032	0.00328462
+hypothetical protein	2.19434e-06	2.39454e-06
+UniRef50_K1RE18	5.6004e-06	3.09202e-06
+Bisphosphoglycerate mutase	5.56146e-06	5.48615e-06
+UniRef50_F0XXU5	7.79796e-06	5.73165e-05
+UniRef50_F0YHA3	0.000210787	6.28775e-06
+histidine kinase	0.000100374	3.28715e-05
+Nitrate reductase	0.013424	0.00625697
+UniRef50_F9Z138	0.000196048	0.00219662
+phosphoenolpyruvate carboxykinase	7.15126e-06	0.000217115
+tRNA N6 adenosine threonylcarbamoyltransferase	4.80332e-06	4.47554e-06
+UniRef50_E2NSW7	4.05021e-05	3.41026e-05
+Heme oxygenase	0.0388174	0.00189125
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA	0.000594598	0.000781248
+UniRef50_Q16BP5	6.83086e-05	3.07557e-05
+Binding protein dependent transport systems inner membrane component	0.000206895	0.00223247
+Secreted protein containing YkuD domain	9.59461e-06	8.74654e-05
+ABC type phosphate transport system, permease component	0.00667381	0.00121914
+Coenzyme F420 reducing hydrogenase, beta subunit	0.000209073	0.000389576
+hypothetical protein	1.75455e-05	4.68272e-05
+Proline  tRNA ligase	4.14693e-06	1.01316e-05
+Non canonical purine NTP pyrophosphatase	0.00613961	0.000512719
+hypothetical protein, partial	0.000124758	8.20151e-05
+hypothetical protein	9.22822e-05	0.000299208
+UniRef50_B2UXE1	0.000305953	0.000335338
+Microcin C7 resistance MccF related protein	0.00361106	0.00041615
+N anthranilate isomerase	0.00579972	0.00177399
+LexA repressor	2.82306e-05	5.61541e-06
+Toluene tolerance protein ttg2D	0.000438451	0.000644783
+Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK	0.000545755	0.000395461
+Xylose isomerase domain containing protein TIM barrel	0.00200533	0.000518473
+Transposase, putative	0.000110087	0.0217394
+Inner membrane protein YccF	0.00153656	0.000261763
+Alkyl hydroperoxide reductase  Thiol specific antioxidant  Mal allergen	0.000168274	0.000719798
+WD repeat containing protein 87	7.21313e-07	1.6394e-07
+hypothetical protein	9.07884e-06	1.44786e-05
+nucleoside triphosphate diphosphatase	0.000104636	2.55761e-05
+Acetylglutamate kinase	0.000137437	4.299e-05
+UniRef50_Q5P1C8	7.42299e-05	8.27874e-05
+Marine sediment metagenome DNA, contig	0.000611421	5.6905e-05
+UniRef50_Q07GR3	0.014783	0.00125743
+SbmA BacA like family protein	0.000144029	0.000893052
+Putative NADH ubiquinone oxidoreductase 40 kDa subunit	6.56373e-05	4.36483e-06
+GMP synthase	5.49161e-06	4.48647e-06
+PREDICTED	0.000100619	4.80179e-05
+Glycerol 3 phosphate dehydrogenase [NAD+]	0.00034396	0.00197991
+Poly D alanine transfer protein	0.0195329	0.00183141
+Sialidase	8.76429e-05	0.00247206
+4 hydroxy tetrahydrodipicolinate synthase	4.53772e-06	1.04382e-05
+hypothetical protein, partial	0.000115364	0.00582516
+3 isopropylmalate dehydratase small subunit	2.74001e-05	2.79727e-05
+NAD kinase	0.00575777	0.00071948
+Imidazole glycerol phosphate synthase subunit HisF	0.000674557	0.00237463
+GAF domain protein	0.0120892	0.00285885
+UniRef50_Q8ZRF8	0.00264979	0.00077025
+Glycosyl transferase GT2 family	0.00732343	0.000546446
+Transmembrane protein	0.00613355	0.00098142
+nitrate ABC transporter ATPase	4.04366e-05	6.44944e-06
+Predicted protein	4.42629e-05	5.70989e-05
+hypothetical protein	0.000205663	3.40435e-05
+UvrB2	3.37219e-05	4.51669e-05
+Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen	0.000248078	0.000116139
+Chromosome partition protein Smc	3.18199e-05	0.00154386
+50S ribosomal protein L24	0.00149824	0.0108906
+hypothetical protein, partial	3.29431e-05	1.4561e-05
+Probable glycine dehydrogenase  subunit 2	0.0213026	0.00302684
+Putative tho complex subunit 2 protein	6.07208e-06	0.000356407
+Bacteriohemerythrin	0.000870384	0.00219525
+Ethanolamine utilization protein EutP	0.00670199	0.000706563
+UniRef50_Q6ZG43	4.8893e-05	4.9703e-05
+Glycerophosphoryl diester phosphodiesterase	0.00376995	0.00165502
+Transcriptional regulatory protein TyrR	0.00552867	0.000686852
+Thiamine phosphate synthase	0.00561109	0.0080091
+Sucrose operon repressor	0.00021415	0.00097907
+Polyribonucleotide nucleotidyltransferase	0.000162947	0.00361928
+UniRef50_A0A024HFG1	0.000958618	0.000125395
+UniRef50_H3WBP5	0.00184267	0.000246612
+Adenosylmethionine 8 amino 7 oxononanoate transaminase	0.00310709	0.000931212
+UniRef50_R5BEJ3	6.18655e-05	0.000824779
+UniRef50_A6LVT5	0.000149892	0.00047969
+UniRef50_I2DH65	0.000100362	0.000593473
+hypothetical protein	6.08013e-06	2.54362e-05
+hypothetical protein	6.74718e-05	8.79084e-06
+Zinc iron permease	0.00813512	0.00218472
+Endonuclease III	0.000912826	0.00106456
+hypothetical protein	6.0643e-05	1.968e-05
+Membrane protein PfoR	0.0186634	0.00329255
+Na H(+) antiporter NhaA	0.000192677	0.00143334
+hypothetical protein	1.91215e-06	3.58688e-06
+TonB dependent outermembrane heme receptor HasR	0.000255517	3.76141e-05
+UniRef50_T7JW17	0.000700706	0.000127354
+Porin	0.00232705	0.000887424
+UniRef50_P44700	0.000658243	6.60183e-05
+hypothetical protein	1.29336e-05	3.97866e-06
+hypothetical protein	1.96809e-06	2.55221e-06
+Chitinase like protein	5.62233e-06	7.73008e-06
+UniRef50_H1SFP6	0.000126353	4.32242e-05
+Glutamate  cysteine ligase	0.00183997	6.8122e-05
+UniRef50_F7XAZ8	0.000176732	2.13621e-05
+Peptidase M48	1.23617e-05	7.15198e-06
+DNA gyrase subunit B	3.92281e-06	6.20989e-06
+Arabinose efflux permease family protein	0.000106278	0.0104175
+UniRef50_A5ULL7	0.00264992	0.000359139
+hypothetical protein	1.13115e-05	2.5421e-05
+Lactose transport regulator 	1.36886e-05	3.28475e-05
+Dephospho CoA kinase	0.00849733	0.00239446
+hypothetical protein	0.00017734	5.65698e-05
+PREDICTED	2.19705e-06	4.26763e-06
+UniRef50_I0EKZ4	0.000196048	0.00282473
+Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000401752	0.000601667
+Ribulose phosphate 3 epimerase	0.000389825	0.00433158
+NADH dehydrogenase	6.11714e-05	6.44599e-05
+Cytoplasmic membrane protein fxsA	0.000209036	0.00205797
+UniRef50_C4J1H3	0.000365161	0.000506296
+Serine  tRNA ligase	0.00959016	0.000148134
+Integral membrane protein MviN 	0.000273377	0.000100784
+Putative phage associated protein	4.15372e-05	0.00230761
+UniRef50_Q8CUF7	0.0982705	0.0230386
+Cobalt transport protein	0.000169404	0.00304544
+Predicted kinase	0.00021278	0.000330168
+hypothetical protein	7.77894e-06	4.75761e-06
+UniRef50_L0LQZ5	0.000662432	0.000222793
+UniRef50_B5SF72	2.22079e-05	1.60521e-05
+Transposase	3.69794e-05	1.36662e-05
+hypothetical protein	4.91241e-06	1.32787e-05
+Membrane protein	0.00036302	0.000167509
+UniRef50_H8FXB7	0.00013305	3.80273e-05
+UniRef50_H8FXB4	0.000208933	7.15655e-05
+Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.0181503	0.00216188
+hypothetical protein, partial	1.22165e-05	6.00833e-06
+UniRef50_S5SFD1	2.30027e-05	1.42381e-06
+hypothetical protein	6.92844e-06	1.02622e-06
+UniRef50_H3WII0	0.000687552	3.84826e-05
+Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region	0.000276615	0.000161775
+UniRef50_B7V7H6	0.000497362	0.000498805
+DNA polymerase III subunit epsilon like protein	0.000662808	0.000273617
+UniRef50_B7V5S0	0.000701005	0.0001561
+UniRef50_A9B1M6	3.13058e-05	2.14226e-05
+UniRef50_K8ETB2	9.74959e-05	0.000672545
+Sulfate adenylyltransferase	8.04304e-05	2.58661e-05
+Error prone DNA polymerase	0.000375565	6.38556e-05
+Diguanylate cyclase	0.000286339	6.83009e-05
+Aromatic amino acid aminotransferase	0.000525135	0.000401502
+NADH quinone oxidoreductase subunit D	1.00765e-05	1.20212e-05
+uroporphyrinogen decarboxylase	5.64219e-06	9.54814e-05
+Cro Cl family transcriptional regulator	0.000216351	1.41579e-05
+Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.000124307	2.11648e-05
+UniRef50_A1ASQ4	9.61758e-06	1.83868e-05
+oxidoreductase	3.66439e-05	3.04801e-06
+peptide ABC transporter ATP binding protein	8.50936e-06	4.84584e-06
+UniRef50_Q05626	0.000691538	0.000510141
+hypothetical protein	0.000724939	0.000525387
+Phi ETA orf 24 like protein	0.00122366	0.000413755
+UniRef50_O26935	0.00149957	0.000192671
+23S rRNA  C(5)) methyltransferase RlmC	0.00256149	0.000396859
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial	3.36302e-06	2.94174e-06
+hypothetical protein, partial	1.18276e-05	8.59972e-06
+PREDICTED	6.72924e-05	0.000161489
+UniRef50_G2KYU1	0.000557528	0.000115657
+hypothetical protein, partial	0.0001166	1.61073e-05
+ABC type multidrug transport system, ATPase component, partial	3.13933e-05	6.6671e-06
+hypothetical protein	0.000205302	6.55051e-05
+glutathione synthetase	4.62317e-05	4.06651e-05
+Plasmid and phage replicative helicase	0.00814055	0.00118965
+Phosphate import ATP binding protein PstB 2	1.04261e-05	7.49094e-05
+Major facilitator superfamily MFS_1	7.05553e-05	0.00153614
+hypothetical protein	2.07607e-05	1.87062e-05
+CTP synthase	6.25272e-06	4.31064e-05
+Rhamnosyltransferase 1 subunit A	0.00100956	0.000359042
+Type 1 restriction enzyme EcoKI specificity protein	0.00258875	0.000641942
+N anthranilate isomerase	9.85993e-06	3.29682e-05
+cation	0.000177463	0.000359739
+hypothetical protein	2.35007e-05	2.80963e-05
+CRISPR associated endonuclease Cas1	0.00376641	0.000218704
+Cys Met metabolism pyridoxal phosphate dependent protein	0.000830389	0.00112463
+hypothetical protein	0.000102679	3.23452e-05
+hypothetical protein	0.00674613	0.000702804
+Electron transfer flavoprotein	8.95266e-06	6.9823e-06
+Copper transporting ATPase copA	4.76698e-05	0.00127588
+Porin thermoregulatory protein EnvY	6.32262e-05	6.10042e-05
+Transcriptional regulator, XRE family	0.000607065	0.000165564
+hypothetical protein	9.05054e-06	8.72452e-06
+hypothetical protein	3.22366e-05	0.000109627
+UniRef50_J3M965	0.000394751	0.00112874
+Integral membrane protein	3.89546e-05	0.000382944
+UniRef50_Q8CUF1	0.00383362	0.00109591
+Vanillate O demethylase oxygenase subunit	0.000102398	0.00291783
+D allose import ATP binding protein AlsA	0.005592	0.00247272
+Bifunctional protein GlmU	3.73253e-06	2.57075e-06
+SufE protein probably involved in Fe S center assembly	1.7013e-05	8.52118e-06
+Carboxynorspermidine carboxyspermidine decarboxylase	9.18127e-05	4.20948e-06
+hypothetical protein	3.2948e-05	1.23666e-05
+UniRef50_F0Y457	0.000172455	0.000416631
+UniRef50_Q3J3X6	0.00470876	0.00026888
+Chemotaxis protein methyltransferase	0.0143501	0.00229411
+GCN5 related N acetyltransferase	0.000209906	0.00110285
+UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase	0.0021604	0.000291364
+Menaquinone specific isochorismate synthase	0.000147609	0.00326391
+UniRef50_UPI0003C1484E	3.05284e-06	7.77361e-07
+NADH quinone oxidoreductase subunit I	1.97537e-05	4.11104e-05
+hypothetical protein	7.64151e-05	3.15968e-05
+UniRef50_U2Z6J9	1.67972e-05	2.60332e-05
+Xanthine phosphoribosyltransferase	0.013689	0.00186178
+hypothetical protein	8.60152e-05	0.00010348
+2 oxoglutarate dehydrogenase E1 component	0.0166157	0.00202044
+hypothetical protein	0.000170146	1.83164e-05
+Triosephosphate isomerase	1.714e-05	0.00247453
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0211906	0.00381654
+Protein ElaA	0.0309206	0.000576554
+Lytic transglycosylase	0.00116605	0.00079907
+ATP phosphoribosyltransferase regulatory subunit	0.00601461	0.00200339
+UniRef50_V9U722	0.00493867	0.000735941
+O antigen polymerase	0.00023445	0.00486151
+Alpha beta hydrolase	0.00176763	0.000438429
+ABC transporter permease	2.30113e-05	1.69274e-05
+HTH type transcriptional repressor AllR	0.00235515	0.00183452
+HAD family hydrolase	4.69873e-05	8.78807e-05
+ABC transporter	0.000365814	0.00153382
+Maltose maltodextrin ABC permease	0.0035486	0.000856892
+sodium	5.6788e-05	0.000190762
+UniRef50_D8LB80	1.46683e-05	1.45186e-06
+hypothetical protein	5.31613e-06	2.32111e-05
+UniRef50_X3EKF3	4.42333e-05	3.00274e-05
+UniRef50_W4HLY6	0.000183923	1.54982e-05
+UniRef50_Q3J3X8	0.0159328	0.00196834
+UniRef50_K4PQW7	0.000863275	0.000354881
+hypothetical protein	1.2747e-05	8.47095e-06
+Pyridine nucleotide disulfide oxidoreductase	0.000317703	0.0028725
+UniRef50_D3QHT0	0.00824896	0.000976032
+UniRef50_F9EIZ7	0.000355061	0.000677235
+ABC type proline glycine betaine transport system periplasmic component	0.000117236	4.54288e-05
+UniRef50_M4RA06	0.000131123	0.00389376
+Carbamate kinase 1	0.00979646	0.00097083
+1 deoxy D xylulose 5 phosphate reductoisomerase	8.01958e-05	7.75385e-06
+DEAD box ATP dependent RNA helicase CshB	0.00527641	0.00411243
+Mlr6427 protein	0.0116109	0.00183144
+UniRef50_Q9RZE0	0.000108915	0.00736637
+Cysteine desulfurase	0.000102191	0.00123844
+TonB dependent receptor protein	0.000168964	0.00193869
+major facilitator transporter, partial	5.84184e-06	1.05357e-05
+1,4 alpha glucan branching enzyme GlgB 1	1.82758e-06	1.36819e-06
+Pyridoxal 5 phosphate dependent protein beta subunit	8.40745e-06	5.35902e-06
+Diguanylate cyclase with GAF sensor	2.47927e-05	2.08978e-05
+Lipoprotein	1.41315e-05	1.32303e-05
+UniRef50_M2CCG1	0.00318165	0.000640366
+Histidine kinase	5.20825e-05	7.51371e-05
+3 demethylubiquinone 9 3 methyltransferase	0.00195265	0.000192259
+Lytic murein transglycosylase	0.000109312	0.00461469
+Two component sensor	4.96628e-05	0.00149159
+Marine sediment metagenome DNA, contig	9.93025e-06	1.78812e-05
+Zn dependent hydrolase	3.14625e-06	9.7834e-06
+ATP synthase gamma chain	0.000119343	1.46962e-05
+Radical SAM domain containing protein	0.00189868	0.000255884
+hypothetical protein	0.000195343	2.52735e-05
+UniRef50_G7M580	0.000443224	0.000344717
+UniRef50_E6MYM9	0.000721175	0.00237896
+hypothetical protein	0.000233979	0.000139316
+N acetyl gamma glutamyl phosphate reductase	0.0092372	0.00284957
+thioredoxin reductase	6.25867e-06	1.45729e-05
+UniRef50_R5RVQ5	1.98792e-05	4.12191e-05
+UniRef50_L0HHM1	0.000147153	1.8368e-05
+ABC transporter related	0.0048698	0.00673914
+Glutathione S transferase	0.000133905	0.00218269
+hypothetical protein	0.000292331	3.10199e-05
+UniRef50_I2BCP0	5.84656e-05	0.00014928
+UniRef50_D2NNT4	2.46149e-06	4.72463e-06
+hypothetical protein	1.05272e-05	5.8371e-06
+Trigger factor	0.000794536	0.000523244
+Transcriptional regulator, LysR family	0.000507376	0.000213161
+Methionine aminopeptidase B	2.19084e-05	0.014182
+Nicotinate phosphoribosyltransferase and like protein	7.01143e-05	0.000282769
+Dihydrolipoyl dehydrogenase 3	2.96722e-05	3.23539e-05
+hypothetical protein	3.71783e-06	5.26778e-06
+Chorismate synthase	0.0030745	0.0063938
+Anhydro N acetylmuramic acid kinase	4.81513e-06	1.26014e-05
+hypothetical protein	1.06066e-05	6.47089e-06
+UniRef50_A3PRF9	0.0106901	0.00106922
+Arabinose efflux permease family protein	0.000180365	0.000759396
+3 methyl 2 oxobutanoate hydroxymethyltransferase 1	5.33878e-06	4.49307e-06
+Glycerophosphodiester phosphodiesterase	0.0100936	0.00144772
+hypothetical protein	3.52935e-06	2.49652e-05
+2,3 dihydroxybenzoate AMP ligase	7.82883e-06	0.000136309
+UniRef50_F8F763	0.0161629	0.00407388
+UniRef50_G7ZLK0	0.0163288	0.00125786
+membrane protein, partial	2.21651e-05	2.65835e-05
+Thiamine import ATP binding protein ThiQ	6.88982e-06	7.38681e-06
+hypothetical protein	1.68506e-05	5.64706e-06
+Holliday junction ATP dependent DNA helicase RuvA	0.006501	0.00222743
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0176775	0.000801651
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00575712	0.00149053
+Riboflavin synthase	4.54369e-05	2.82154e-05
+UniRef50_Q8CZ55	1.27289e-05	0.0013997
+UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.0295881	0.0103671
+hypothetical protein	0.000104087	4.62809e-05
+Outer membrane protein C	0.00688349	0.000559822
+UniRef50_P44068	0.00237831	0.00476711
+Large conductance mechanosensitive channel protein	0.00141238	0.00023879
+UDP 3 O acylglucosamine N acyltransferase	0.00394859	0.00063456
+Glutamyl tRNA reductase	7.71311e-05	0.00161695
+hypothetical protein	5.82567e-06	3.18454e-05
+Lysine N methylase, homolog	9.73622e-05	0.00104643
+Catalase	7.52905e-05	0.0024792
+hypothetical protein	2.84837e-05	1.61911e-05
+UniRef50_F0MZQ2	1.99244e-05	4.23399e-05
+hypothetical protein	0.000202316	3.63355e-05
+Retrotransposon protein, putative, Ty3 gypsy subclass, expressed	6.94061e-06	6.47655e-05
+UniRef50_H3UXX3	0.00246565	0.000260852
+Flagellar biosynthesis regulatory protein FlaF	8.04822e-05	4.77652e-05
+hypothetical protein	1.89658e-06	2.51055e-06
+UniRef50_K0HHI0	0.000151371	0.0024954
+MULTISPECIES	7.44069e-06	9.20685e-06
+hypothetical protein	7.96378e-06	7.3118e-06
+cold shock protein	4.72802e-05	3.53337e-05
+UniRef50_A6LVD8	0.000338807	0.000682445
+hypothetical protein	0.000110639	8.63053e-05
+UniRef50_P64558	0.00371208	0.000193086
+N5 carboxyaminoimidazole ribonucleotide synthase	4.24781e-06	4.53974e-06
+Glycosyl transferase	0.000309464	0.00064352
+UniRef50_T9UBD7	0.000238945	1.88928e-05
+Polyprenyl synthetase	0.000449301	0.00157505
+Peptide methionine sulfoxide reductase MsrB	1.33159e-05	0.000417604
+hypothetical protein, partial	9.63769e-06	0.000795591
+Synthase [glutamine hydrolyzing]	0.000107563	5.55002e-05
+UniRef50_U3AMR8	8.33419e-06	3.65155e-06
+Transcriptional regulator, LuxR family	0.000175591	0.000715101
+TPR domain containing protein	5.60899e-06	0.000253058
+hypothetical protein	1.30956e-05	1.55675e-05
+Sorbitol dehydrogenase	0.017253	0.00256348
+Phosphate ABC transporter, permease protein	0.00782872	0.00078188
+hypothetical protein	0.00183771	5.69691e-05
+UDP N acetylenolpyruvoylglucosamine reductase	1.61399e-05	0.000427309
+Phage integrase	0.000149135	2.20097e-05
+Endoribonuclease L PSP	0.000759132	0.00164005
+UniRef50_A6E7D3	0.00017722	0.000120027
+magnesium chelatase; methanol dehydrogenase regulator, partial	4.81763e-05	9.54039e-05
+UniRef50_A5IPN7	0.000204283	6.1905e-05
+Phosphate starvation inducible E	5.0227e-05	1.67009e-05
+UniRef50_K0JY23	2.05872e-05	3.60043e-06
+Mannitol dehydrogenase domain protein	0.000503887	0.000651258
+DNA repair protein RadA	0.00275795	0.0049501
+6 phospho beta glucosidase	4.9119e-06	1.0036e-05
+UniRef50_A3PQ11	0.00572632	0.000232398
+Anaerobic sulfatase maturating enzyme homolog AslB	0.0017079	0.000756868
+Diguanylate cyclase DosC	0.00236959	0.00018103
+Acetyl CoA acetyltransferase, mitochondrial	4.28306e-06	4.40566e-06
+hypothetical protein, partial	3.71211e-05	1.16782e-05
+Virion core protein	5.26188e-07	4.74692e-07
+3 methyl 2 oxobutanoate hydroxymethyltransferase	5.65306e-06	5.04814e-06
+Putative hemin transport system permease protein HrtB	0.0202371	0.004259
+hypothetical protein	1.14039e-05	6.31406e-06
+UniRef50_B9FT55	9.29264e-05	2.05407e-05
+UniRef50_C6STC0	0.00420381	0.00014816
+Transcriptional regulator	1.05259e-05	6.43988e-06
+Alpha beta hydrolase fold protein	0.000590348	0.000596482
+UniRef50_X5QUZ2	9.55834e-05	0.000271034
+UniRef50_A4WPB0	0.000531061	0.000196466
+tRNA N6 adenosine threonylcarbamoyltransferase	5.17923e-06	5.93409e-06
+UniRef50_I0EL02	0.000165516	0.00289187
+UniRef50_A3JC42	2.93181e-05	9.72556e-05
+Putative GTP cyclohydrolase 1 type 2	8.19104e-06	0.00077479
+UniRef50_Q1D054	7.92096e-05	1.40165e-05
+Polyphosphate kinase	1.12233e-05	0.00028142
+hypothetical protein	3.46978e-05	2.85356e-06
+FeS cluster assembly protein SufD	0.000308744	0.000211385
+Membrane protein 	0.000397341	7.56246e-05
+acetyltransferase	0.00010536	5.92102e-05
+Replicative DNA helicase DnaB	0.000379988	0.025953
+Probable dual specificity RNA methyltransferase RlmN	1.36941e-05	1.1333e-05
+Phospholipase, patatin family	0.000130445	0.00320786
+hypothetical protein	1.90409e-05	9.1539e-06
+Polyprenyl diphosphate synthase	9.40956e-05	0.00182943
+Protein pelota homolog	0.00293789	0.000407923
+BolA family protein	4.97342e-05	0.00087584
+Transposase IS861 orfB	6.00273e-05	1.49448e-05
+glucose 1 phosphate adenylyltransferase	3.6432e-06	2.9874e-05
+Putative polysaccharide export protein GfcE	0.00593802	0.000469665
+UniRef50_G2I4D0	7.12579e-06	1.09849e-05
+hypothetical protein	0.000102683	1.5155e-05
+S ribosylhomocysteine lyase	5.99361e-05	0.0295556
+UniRef50_X2LN33	4.60578e-05	7.0185e-06
+NADH quinone oxidoreductase subunit A	6.0114e-05	0.00282999
+Cytoplasmic protein	0.0123371	0.00149599
+Inner membrane protein YcdZ	0.000813291	0.000201311
+2 isopropylmalate synthase	3.63914e-06	1.77538e-05
+ORC1 type DNA replication protein 2	0.0018186	0.000611275
+Xanthine phosphoribosyltransferase	3.21674e-05	1.91065e-05
+hypothetical protein	3.36123e-05	8.63298e-06
+ImpA family type VI secretion associated protein	4.46934e-06	4.57533e-06
+NADH dehydrogenase	4.01378e-06	3.81343e-06
+WGS project CABT00000000 data, contig 2.35	1.75405e-06	5.04517e-07
+2,3 dihydroxybenzoate 2,3 dehydrogenase, partial	3.70838e-05	1.88101e-05
+UniRef50_B9KTW7	0.00378233	0.000252403
+adenosylcobinamide phosphate synthase	1.99324e-05	4.83143e-05
+phosphomethylpyrimidine synthase	3.95266e-06	7.19371e-06
+UniRef50_C0H3V8	7.0088e-05	3.44629e-05
+Anthranilate synthase component II	0.00607429	0.000819521
+UniRef50_D4HEY5	0.00058361	0.00055767
+tRNA N6 adenosine threonylcarbamoyltransferase	0.0234363	0.00776088
+UniRef50_Q5CQR3	1.36753e-05	3.32458e-05
+Potassium transporting ATPase C chain	0.000334321	0.00535348
+Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0101939	0.00109512
+X Pro dipeptidyl peptidase C terminal non catalytic domain protein	0.0139882	0.00176566
+UniRef50_G7R7B9	0.00103284	0.00025836
+hypothetical protein	4.76029e-05	3.24613e-05
+D ribose binding periplasmic protein	0.00452302	0.000424389
+metallophosphoesterase	3.21736e-06	0.000319079
+Predicted ATPase, AAA+ family	0.00262944	0.000358292
+CRISPR associated protein Csn1, partial	0.00163975	0.000208314
+60 kDa chaperonin	0.0238941	0.00705495
+Type I restriction enzyme EcoKI M protein	0.00156843	0.000562141
+UniRef50_Q98QK7	0.000248665	0.000257136
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00471343	0.00277716
+Ascorbate specific phosphotransferase enzyme IIA component	0.00259485	0.000571146
+Putative homocitrate synthase AksA	3.39281e-06	4.23236e-06
+Thiosulfate sulfurtransferase YnjE	0.00171049	0.000519042
+Bacterial regulatory helix turn helix protein, AraC family protein	0.000211223	0.0049604
+ATP synthase subunit beta 1	1.17711e-05	0.0014727
+Tagatose 1,6 diphosphate aldolase	0.0104661	0.000940503
+Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit	8.44252e-06	8.96387e-05
+hypothetical protein	0.000189622	1.40655e-05
+UniRef50_S4C0T0	2.56742e-06	0.0004719
+phosphohydrolase	3.8139e-06	6.59538e-06
+Anthranilate 1,2 dioxygenase electron transfer component AntC	1.91898e-05	6.53399e-06
+Marine sediment metagenome DNA, contig	0.000100951	7.95438e-06
+molecular chaperone GroEL	1.1804e-05	4.41218e-06
+hypothetical protein	2.91105e-05	1.22541e-05
+UniRef50_Q2SEB7	3.18615e-06	2.70832e-06
+Cell division protein, FtsW RodA SpoVE family	0.0182227	0.00313136
+Penicillin binding protein activator LpoB	0.00559239	0.000140729
+UniRef50_K3XR47	5.93487e-06	5.0434e-06
+Ribonuclease HII	0.00116617	0.00239975
+Arginine  tRNA ligase	2.43956e-06	0.000676469
+UniRef50_L3UJQ1	0.000364681	0.000277763
+Ribonuclease Y	8.37185e-05	0.00238326
+Conserved protein	0.00056061	0.000995064
+LexA repressor	0.00843206	0.00246328
+Urea ABC transporter ATP binding protein	0.00384018	0.00113307
+Serine acetyltransferase	8.15714e-06	1.61992e-05
+hypothetical protein	9.00153e-05	1.8991e-05
+Cupin	0.000115514	2.07479e-05
+Capsular polysaccharide synthesis enzyme	0.0100484	0.00110488
+UniRef50_A3MA53	0.000226378	0.0031549
+Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein	0.0029562	0.00046856
+UniRef50_A4WX60	0.00410171	0.000131264
+Periplasmic binding protein LacI transcriptional regulator	0.000209688	0.000311886
+hypothetical protein	0.000267015	2.3283e-05
+Putative acetyltransferase SACOL0827	0.0174768	0.000992955
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	8.28562e-06	4.33172e-06
+UniRef50_D3E0S2	0.00480725	0.000126815
+Sugar binding protein	0.00030286	0.000105838
+Capsular polysaccharide synthesis protein CapM homolog	0.0147848	0.000814692
+Cysteine desulphurase	0.00174338	0.000768157
+hypothetical protein	2.16581e-06	8.29394e-05
+Methyl accepting chemotaxis sensory transducer with Cache sensor	4.88933e-05	0.000415301
+UniRef50_Q8CTH3	0.000312087	3.05745e-05
+UniRef50_B5HEJ3	0.000142356	6.32963e-05
+hypothetical protein	0.000192414	2.00658e-05
+Phosphomethylpyrimidine kinase	0.00706349	0.00118922
+UniRef50_P14503	2.80319e-05	8.33448e-06
+hypothetical protein	4.93378e-06	0.000239247
+Bifunctional protein PyrR	1.72268e-05	2.30574e-05
+ABC transporter	2.36805e-06	2.84434e-06
+Pyruvate flavodoxin oxidoreductase	0.000429417	0.00157997
+LysR family transcriptional regulator	0.00172677	0.000597377
+ABC transporter transmembrane region	0.00019682	0.00155084
+Dehydratase	8.74113e-05	0.000182119
+hypothetical protein	0.000882258	3.3942e-05
+Mannonate dehydratase	0.0029098	0.000336427
+Sec independent protein translocase protein TatC	0.0141497	0.00142124
+UniRef50_E0XRZ7	4.5354e-05	1.51569e-05
+porin	2.66034e-05	6.20953e-05
+Bacterial SH3 domain containing protein	0.000148477	0.00647901
+UniRef50_Q9RZJ6	0.00125149	0.000227303
+DNA gyrase subunit A	8.03023e-06	9.90331e-06
+Peptidyl prolyl cis trans isomerase B	4.19186e-05	1.89446e-05
+Holo [acyl carrier protein] synthase	2.09253e-05	3.3126e-05
+Inner membrane protein, putative	3.03192e-05	2.15605e-05
+hypothetical protein	7.31261e-05	3.69781e-05
+UPF0246 protein Shew185_1115	1.59356e-05	1.48068e-05
+Phosphoribosylformylglycinamidine synthase	0.00287092	0.00133452
+ArsR family transcriptional regulator	6.47918e-05	2.30244e-05
+UniRef50_H9KKZ5	1.46095e-05	2.37929e-06
+Hemolysin	9.25554e-06	0.00940726
+RDD domain containing protein	0.00119876	0.000579257
+ATP binding protein	8.58413e-05	0.00228389
+hypothetical protein	1.82483e-05	4.089e-06
+hypothetical protein	1.47246e-06	1.12205e-06
+Replication associated recombination protein A	0.00297692	9.4411e-05
+branched chain amino acid ABC transporter, ATP binding protein, putative, partial	0.0001074	2.11832e-05
+Nod factor export ATP binding protein I	0.00753518	0.000993135
+hypothetical protein	2.0376e-05	0.000482714
+Transposase Tn3 family protein	7.91436e-06	0.000136456
+UniRef50_A3VKI4	7.74212e-06	9.18003e-06
+D alanyl D alanine carboxypeptidase DacB	0.00191499	0.000310003
+UniRef50_B9KM28	0.000805484	9.98099e-05
+Low affinity zinc transport protein	3.60315e-06	2.58715e-06
+UniRef50_P76395	0.00364081	0.000611264
+UniRef50_P76393	0.00144329	0.000305978
+Protein translocase subunit SecA	8.15373e-05	0.00133742
+UniRef50_D8JKX1	0.000171005	0.00335408
+hypothetical protein	8.43459e-06	1.77607e-05
+hypothetical protein	6.73058e-05	6.53879e-06
+hypothetical protein	0.000109124	9.73846e-06
+UniRef50_L8GXF4	3.47599e-06	7.96126e-07
+4Fe 4S binding domain protein 	0.000684355	0.000183234
+histidine kinase	6.97262e-05	7.57778e-06
+UDP glucose 6 dehydrogenase	4.40671e-06	3.43252e-06
+UniRef50_M3A5Y8	4.54202e-05	1.44446e-05
+DNA polymerase IV	0.000283023	0.00196039
+uroporphyrinogen decarboxylase	3.93431e-06	9.87813e-06
+UniRef50_UPI0003D25C42	1.83511e-06	1.8897e-06
+ADP ribose pyrophosphatase	2.61921e-05	0.000807074
+Tetrahydromethanopterin S methyltransferase, subunit H, MtrH	0.00417578	0.000612164
+UniRef50_U9QRW9	0.000278538	0.000213195
+Major facilitator superfamily MFS_1	0.000266474	0.000155292
+NAD NADP dependent betaine aldehyde dehydrogenase	0.0066094	0.00372082
+Ribosomal small subunit pseudouridine synthase A	0.00585213	0.000556722
+acetolactate synthase large subunit, biosynthetic type	3.83844e-06	7.62818e-06
+UniRef50_V9VYZ6	0.00303885	0.000854944
+hypothetical protein	2.39445e-05	9.86667e-06
+ABC transporter permease	7.04911e-05	3.49736e-05
+Accessory gene regulator A	0.000276995	0.000706867
+UniRef50_Q6GCF0	0.0128208	0.000686348
+Transcriptionalregulator, CopG family	0.000709011	0.000847027
+cytochrome C peroxidase	5.47942e-06	2.93735e-05
+hypothetical protein, partial	1.45078e-06	7.69439e-05
+HAD superfamily hydrolase	0.000757109	0.0024936
+5 formyltetrahydrofolate cyclo ligase	0.00792173	0.00138081
+phosphoadenosine phosphosulfate reductase	8.48196e-05	2.28228e-05
+hypothetical protein, partial	0.00133555	0.000302365
+Putative phosphoenolpyruvate synthase regulatory protein	2.14432e-05	1.70402e-05
+Putative site specific recombinase	0.011127	0.00115293
+UniRef50_E0XYI3	7.38626e-05	4.44375e-05
+NAD dependent epimerase dehydratase	0.00214553	0.000210023
+Putative proteophosphoglycan ppg3	4.79995e-05	0.000128502
+hypothetical protein	0.000243636	4.64571e-05
+DNA glycosylase	0.000120471	2.81629e-05
+hypothetical protein, partial	9.76975e-06	3.82753e-06
+hypothetical protein	1.85354e-05	3.45503e-05
+UniRef50_D2NAU9	0.00294535	0.000525058
+UniRef50_Q8CSJ5	0.00801243	0.000428146
+UniRef50_B2A1L0	1.95332e-05	1.32182e-05
+UniRef50_M2E1P6	0.00515422	0.000964626
+Glutamine  tRNA ligase	4.15403e-06	1.1065e-05
+hypothetical protein	4.57244e-06	3.93357e-06
+UniRef50_W8YH03	0.000132398	8.64201e-05
+GMP synthase [glutamine hydrolyzing]	2.44303e-05	1.74584e-05
+UniRef50_U6GVJ1	2.25999e-07	1.07367e-06
+S layer protein, putative	0.000275521	0.0218386
+UniRef50_F8DJB0	0.00422391	0.00215844
+Cyclic pyranopterin monophosphate synthase	4.34694e-06	8.32192e-05
+Aspartate  tRNA ligase	3.49564e-06	1.92147e-06
+hypothetical protein SMAC_10519, partial	6.86313e-05	1.41919e-05
+ATPase	4.8027e-06	2.6627e-05
+Transcriptional regulatory protein DpiA	0.00709194	0.00053174
+hypothetical protein	4.95689e-06	1.44566e-06
+NADPH	6.69784e-06	1.83177e-05
+hypothetical protein	1.44445e-05	1.05148e-05
+Beta hexosaminidase	4.40413e-06	1.35875e-05
+Pseudouridine synthase	0.000162062	0.00295288
+UniRef50_R5AKD9	3.33093e-06	3.13384e-06
+hypothetical protein	3.33146e-05	2.49637e-05
+Diaminopimelate epimerase	0.00291652	5.5713e-06
+UniRef50_Q3J219	0.00817803	0.00597018
+Zinc import ATP binding protein ZnuC	3.51349e-05	5.04765e-06
+hypothetical protein	0.000347289	7.17332e-05
+30S ribosomal protein S3, partial	0.000590075	0.00117426
+Glutamate racemase	0.0107306	0.00136574
+Bifunctional biotin  [acetyl CoA carboxylase] synthetase biotin operon repressor	0.00620464	0.0018895
+UniRef50_Q6FDU5	0.000131808	0.00443781
+hypothetical protein	0.000495883	4.57881e-05
+UniRef50_D5ALJ9	0.00347069	0.000228997
+UniRef50_D5ALJ7	0.000800594	5.95503e-05
+NADH dependent butanol dehydrogenase B	0.000268052	0.000283876
+Phosphoglycerate mutase 2	6.05942e-06	5.34563e-06
+branched chain amino acid ABC transporter ATP binding protein	6.50496e-06	3.1931e-05
+UniRef50_Q9RSI5	0.000481482	0.0368168
+HTH type transcriptional regulator ChbR	0.00117035	0.000231298
+Reaction center 	0.00129844	0.000262449
+3 oxoacyl [acyl carrier protein] synthase 3 protein 1	0.00972271	0.00134394
+hypothetical protein	4.57747e-05	2.45205e-05
+Thymidine kinase	0.0162095	2.13899e-05
+APC family amino acid polyamine organocation transporter	0.0184374	0.00207334
+Isoleucine  tRNA ligase	3.12101e-05	0.0123966
+thioredoxin	5.93167e-05	0.000113018
+DNA translocase FtsK	0.0147765	0.00229107
+Thiamin phosphate synthase	3.5756e-05	1.95353e-05
+TENA THI 4 family protein	0.000143212	0.00409022
+Cell envelope related transcriptional attenuator	4.60206e-06	2.08424e-05
+Malate dehydrogenase	4.99844e-05	8.33522e-06
+Outer membrane autotransporter barrel domain protein	0.00072774	0.000164055
+UniRef50_E2CRM4	9.33151e-05	2.83922e-05
+Antiholin like protein LrgA	0.0184405	0.00249986
+UniRef50_T0TSZ1	0.0051381	0.00145304
+Molluscan shell protein 1	8.90681e-06	3.97847e-06
+Putative GAF sensor protein	7.84979e-06	0.000400491
+hypothetical protein	7.11599e-05	2.75779e-05
+Methionine biosynthesis protein	0.000369834	0.0011378
+UniRef50_K2BFX5	9.66834e-06	9.28255e-06
+Mll1647 protein	2.87928e-06	1.41441e-06
+Protein RnfH	1.76511e-05	1.57099e-05
+NAD synthetase	3.39552e-06	6.55597e-05
+Ribonuclease J	1.65308e-05	0.00153242
+hypothetical protein	6.0235e-05	1.24334e-06
+6 phosphogluconate dehydrogenase, NAD binding protein	0.000217128	0.00391345
+PREDICTED	0.000189332	5.7118e-05
+UniRef50_F0KC60	0.000465275	0.00191971
+Cytochrome c oxidase, cbb3 type, subunit II	0.00209388	0.000803817
+S ribosylhomocysteinase	2.22376e-05	0.000330077
+PHA synthase PhaC	9.51598e-05	0.00306732
+Plasmid partitioning protein ParA	0.000145916	2.29334e-05
+UniRef50_U3SUV7	0.00199485	0.0012272
+sugar ABC transporter permease	4.36786e-05	1.8076e-05
+hypothetical protein	9.42611e-06	1.49691e-05
+UniRef50_U5UN27	0.0156449	0.00132574
+hypothetical protein	2.43526e-05	2.84482e-05
+hypothetical protein, partial	0.000314531	0.000127227
+Citrate synthase	0.00198006	0.000202538
+riboflavin biosynthesis protein RibF	9.07669e-06	2.53076e-05
+molybdopterin biosynthesis protein MoeA	4.59274e-06	4.23542e-06
+NADH quinone oxidoreductase subunit B	1.12863e-05	3.85084e-05
+Diphthine synthase	0.00214457	0.000110846
+UniRef50_N8Y2G0	2.66341e-05	2.09005e-05
+hypothetical protein	8.95102e-05	7.87413e-05
+Type 4 fimbrial biogenesis protein FimU	0.00243179	0.00172653
+Tetratricopeptide TPR_1 repeat containing protein	0.000336641	0.00110605
+UniRef50_G2JI43	0.000309619	0.00497074
+hypothetical protein	6.19935e-06	1.56879e-05
+Hydrogenase 1 operon protein HyaF	0.00412214	0.000321343
+30S ribosomal protein S4	5.88073e-05	5.19714e-05
+HTH type transcriptional regulator GadX	0.0023658	0.000938707
+riboflavin synthase subunit alpha	1.79739e-05	2.55215e-05
+glycerophosphoryl diester phosphodiesterase, partial	5.69869e-05	0.00155479
+Ribosomal RNA large subunit methyltransferase H	0.0219509	0.000196466
+Putative endoribonuclease	8.83004e-05	2.5032e-05
+UniRef50_W9CAE9	6.30621e-06	4.61021e-07
+30S ribosomal protein S4	4.49421e-05	1.01488e-05
+Transposase	0.000114939	3.13059e-05
+2 methylcitrate dehydratase, MmgE PrpD family	0.00290837	0.000483388
+Singapore isolate B  whole genome shotgun sequence assembly, scaffold_1	7.65893e-06	8.13544e-06
+Putative peptide transport system permease protein BruAb2_1031	0.0116696	0.00306037
+Thymidylate synthase	4.08447e-05	0.000205153
+hypothetical protein	2.74592e-06	2.71005e-06
+Putative HTH type transcriptional regulator YkgA	0.00156257	0.000106003
+UniRef50_F0XZT5	0.000139724	0.000121515
+UniRef50_B9KPM1	0.00395501	0.000437634
+Chromosomal replication initiator DnaA	3.75148e-05	4.38509e-06
+hypothetical protein	0.000767791	0.00118138
+UniRef50_UPI0003C168CC	0.00673962	0.00131711
+Nicotinate phosphoribosyltransferase	0.00376152	0.00057381
+Thiamine biosynthesis lipoprotein	0.0110373	0.00205625
+Dihydrolipoyl dehydrogenase	5.24125e-05	0.00148844
+UniRef50_G2L441	0.00111839	0.00054944
+hypothetical protein	3.215e-06	2.88519e-06
+PREDICTED	4.7979e-05	2.47796e-05
+Gp20	1.96481e-06	0.000529179
+Type 1 fimbriae regulatory protein FimE	0.00280051	0.000593189
+MULTISPECIES	8.10965e-06	7.56051e-06
+UniRef50_Q3JPQ2	6.29519e-05	1.44058e-05
+Chorismate synthase	5.82092e-06	1.32731e-05
+UniRef50_E2ZXQ0	0.00508675	0.000769076
+UniRef50_D6AIG0	0.000165261	0.000159042
+UniRef50_B9KLD6	0.00897429	0.00529353
+PTS system mannitol specific transporter subunit IIBC	2.60172e-06	1.89417e-06
+Nitrite reductase small subunit	0.000233362	0.00414349
+hypothetical protein	7.75103e-06	5.196e-05
+UniRef50_K0R863	1.6626e-05	8.58222e-05
+hypothetical protein	6.07007e-06	4.20198e-06
+Cell division protein FtsA	0.000404258	0.00183659
+Archaeal glutamate synthase [NADPH]	0.00429435	0.000576234
+chemotaxis protein CheY	0.000183874	3.72391e-05
+ATP dependent helicase HrpA	2.82418e-05	0.00234897
+Aspartokinase	8.66649e-05	0.000503966
+Endonuclease III	0.0141117	0.00175604
+RloF	4.96873e-05	0.00121291
+NADH quinone oxidoreductase subunit B	2.3478e-05	0.000106028
+Aspartate semialdehyde dehydrogenase	0.00358484	0.00351424
+hypothetical protein	0.000254494	0.00091681
+UniRef50_G8S8P0	8.30902e-06	6.91497e-05
+UniRef50_Q0FH14	0.000143883	0.000189895
+Beta lactamase	0.0913856	0.014354
+Folate transporter FolT	0.00439947	0.000160044
+shikimate kinase	2.298e-05	5.73641e-06
+Ribosome recycling factor	0.0129536	0.00175369
+Conserved protein	0.000345769	0.000731497
+gluconate transporter	1.0025e-05	0.000257753
+Choline dehydrogenase, mitochondrial	2.93006e-05	1.66319e-05
+Putative sialic acid transporter	0.000721175	0.000371012
+Integrase recombinase	0.000883548	0.000174988
+Sulfurtransferase TusD homolog	0.000521095	0.000122499
+Alkaline phosphatase	0.000310164	0.00475518
+UniRef50_U3THX2	1.10711e-05	9.30547e-06
+6,7 dimethyl 8 ribityllumazine synthase	0.000442827	0.0307827
+Arabinose 5 phosphate isomerase KdsD	0.00352612	0.00208989
+Immunodominant staphylococcal antigen B	0.00793091	0.00109391
+Serine protease HtrA	8.62208e-05	7.60889e-05
+Oxygen independent coproporphyrinogen III oxidase like protein HI_0463	0.00145416	0.000148349
+Putative groESL operon	3.06428e-05	2.01219e-05
+Nucleotidyl transferase	0.000607942	0.000663449
+Glutamine synthetase catalytic region	0.000250891	0.000935068
+F420 dependent methylenetetrahydromethanopterin dehydrogenase	0.00172071	0.00106509
+F420 non reducing hydrogenase subunit G	0.0043459	0.00060164
+UniRef50_L0I338	3.0929e-05	2.03886e-05
+Protein tyrosine phosphatase, low molecular weight	0.000123992	3.74362e-05
+Phage protein	0.0156406	0.00289748
+PREDICTED	1.74821e-05	1.8394e-05
+UniRef50_G0J3B6	6.54446e-05	1.07399e-05
+hypothetical protein	1.34117e-05	0.000158982
+ABC 1	0.00233145	0.00020218
+hypothetical protein	1.51937e-05	3.55356e-06
+hypothetical protein	2.91929e-06	5.97611e-05
+Glycosyl hydrolase family 38 N terminal domain containing protein	0.000105466	0.00332278
+UniRef50_J7TWG6	1.98529e-05	1.55791e-05
+Protein YqjC	0.000551719	0.000244645
+RepB plasmid partition	1.47901e-06	5.85994e-06
+hypothetical protein, partial	2.43696e-05	2.6105e-05
+Beta ketoadipyl CoA thiolase	0.00329303	0.0047209
+ABC transporter	5.12388e-06	1.37743e-05
+Protein lysine acetyltransferase	0.00089945	0.000109883
+Probable anaerobic dimethyl sulfoxide reductase chain YnfG	0.00175905	0.00261758
+UniRef50_Q8DVZ6	0.0057069	0.00048543
+UniRef50_Q8DVZ9	0.00441861	0.000778679
+hypothetical protein	5.55108e-06	1.60249e-05
+Response regulator	9.65458e-06	0.000462751
+UniRef50_G7ZT64	0.00482401	0.00064132
+ABC type dipeptide oligopeptide nickel transport system, permease component	0.0132669	0.0027366
+UPF0053 inner membrane protein YfjD	0.00342882	0.00055121
+Glutamate  cysteine ligase	0.00215663	0.000248024
+DNA gyrase subunit B	3.11254e-06	1.29796e-06
+UniRef50_A4EM47	5.07002e-05	8.20982e-06
+Phosphopentomutase	1.1836e-05	0.00271127
+Phosphoenolpyruvate synthase	0.0038301	0.000468619
+hypothetical protein	1.14372e-05	3.98014e-05
+3 ketoacyl CoA thiolase	0.00298162	0.000686214
+Formate acetyltransferase	0.00708046	0.00428323
+30S ribosomal protein S3	0.0125499	0.00142386
+hypothetical protein	0.00016147	0.000113332
+Serine hydroxymethyltransferase, cytosolic	0.000136782	9.33191e-06
+hypothetical protein	5.89741e-05	4.51377e-05
+citrate lyase	4.7887e-05	1.60344e-05
+PEGA domain protein	0.000197024	5.29405e-05
+NADH dehydrogenase	7.21691e-05	1.13183e-06
+hydrolase	9.03062e-06	7.814e-06
+Type VI secretion protein, VC_A0107 family	2.36517e-05	0.00143088
+UniRef50_R7PUK9	0.00186866	0.000662949
+UniRef50_W5GWD8	1.79836e-06	4.41875e-05
+Lactose phosphotransferase system repressor	0.0264547	0.00323067
+UniRef50_E0XR78	0.000136192	0.000198398
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.000325104	0.00406181
+thioredoxin	0.000200883	8.21608e-05
+SSU ribosomal protein S1P	0.000228016	0.00017037
+hypothetical protein	0.000132326	9.41602e-06
+Probable anthranilate synthase component 1	4.18402e-06	4.9871e-06
+Aspartate carbamoyltransferase	0.0027806	0.000293777
+thioredoxin	0.000193983	0.000207652
+UPF0301 protein MXAZACID_13641	1.82291e-05	1.06636e-05
+SCCmec staphylococcal cassette region, isolate CMFT201	0.0114087	0.00158691
+Bacteriophage replication gene A protein 	0.00251391	0.000349073
+Acetate CoA transferase YdiF	0.00854723	0.00116673
+UniRef50_Q099I3	0.000431393	0.000111142
+iron ABC transporter permease, partial	6.31874e-05	7.33059e-05
+UniRef50_I6AH85	6.37958e-05	3.73956e-05
+Biofilm PGA synthesis lipoprotein PgaB	0.00241638	0.000475349
+hypothetical protein	0.000177534	4.02536e-06
+S adenosylmethionine	0.0248481	0.00705525
+hypothetical protein	1.88994e-05	2.02675e-05
+hypothetical protein	1.66455e-05	6.14611e-05
+UniRef50_A5UP74	0.00286029	0.000498805
+UniRef50_A5UP75	0.00142678	0.000375669
+UvrABC system protein C	0.0107752	0.00159118
+Superoxide dismutase [Fe], chloroplastic 	1.3023e-05	1.51032e-05
+Acyltransferase 3 family	0.0193297	0.00256587
+UniRef50_U2YI39	5.56327e-06	1.01266e-05
+3 hydroxyacyl CoA dehydrogenase	2.17037e-05	5.5614e-05
+Drug resistance transporter, EmrB QacA subfamily	0.000258946	0.000204672
+ATP dependent Clp protease proteolytic subunit	8.60791e-06	0.0176397
+D alanyl D alanine carboxypeptidase DacA	0.00365614	0.000400577
+PREDICTED	2.32895e-06	6.04244e-07
+regulator	1.02677e-05	9.30755e-06
+UniRef50_S6STB0	0.00016403	9.76889e-05
+Multidrug efflux transporter, putative	9.39205e-05	0.0150798
+Triosephosphate isomerase	6.03062e-06	4.42942e-06
+oxidoreductase	4.02604e-05	3.07544e-05
+FAD dependent oxidoreductase	2.06092e-05	0.0010228
+hypothetical protein	2.75069e-05	1.56802e-05
+Ribosome biogenesis GTPase A	0.00940868	0.00134259
+PREDICTED	1.1034e-05	8.10461e-07
+UniRef50_UPI00027F40A7	1.79339e-05	1.43158e-05
+UniRef50_W6IDM0	1.19286e-05	1.27076e-05
+hypothetical protein	1.08753e-05	8.22436e-05
+Stackhouse genomic scaffold, scaffold_401	8.30202e-05	6.8356e-06
+PTS system, glucitol sorbitol specific, IIBC component	0.00164683	0.00022224
+hypothetical protein, partial	3.73151e-06	2.57334e-05
+Aminotransferase	0.0127053	0.00147293
+ABC transporter, binding protein	0.00022223	5.70775e-05
+MULTISPECIES	2.64229e-05	0.000119572
+2 isopropylmalate synthase	6.65298e-06	4.3847e-06
+Superoxide dismutase [Mn], mitochondrial	1.92403e-05	2.09273e-05
+UniRef50_A8IJ48	3.15847e-05	2.52642e-05
+Phosphate import ATP binding protein PstB	5.80438e-06	8.90898e-05
+UniRef50_UPI00046E069E	3.87053e-06	7.18919e-06
+peptide ABC transporter substrate binding protein	4.9131e-06	3.17545e-05
+Erythrocyte binding protein 2	0.000243815	0.000162006
+Transporter, Na+ H+ antiporter family	0.0165012	0.00229707
+ABC transporter permease	9.12157e-06	1.55678e-05
+Transcriptional activator GpuR	0.000731785	9.79115e-05
+UniRef50_A0LFA0	6.00497e-06	1.13863e-05
+Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.0144954	0.00120647
+hypothetical protein, partial	3.74225e-06	3.74202e-06
+UniRef50_F6W1A6	8.85413e-05	7.90246e-06
+4 hydroxy 2 oxovalerate aldolase 1	0.00215301	0.000473963
+UPF0187 protein YneE	0.00421948	0.000187834
+PHP domain protein	0.00473901	0.00129482
+Transcriptional regulator, AraC family	0.000200725	0.000687689
+Tyrosine recombinase XerC	0.00027886	0.000617181
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000120898	5.1571e-06
+Putative Holliday junction resolvase	2.89198e-05	1.07741e-05
+Serine aspartate repeat containing protein F	0.00471802	0.000858375
+Histone acetyltransferase HPA2 related acetyltransferase	0.00578561	0.00442836
+Beta eliminating lyase	0.00912507	0.000227136
+Nucleoside diphosphate kinase	8.60871e-05	2.69408e-05
+S adenosylmethionine synthase	6.97324e-06	8.09581e-05
+Putative reductase	0.00201357	0.00273642
+molecular chaperone Hsp33	1.56198e-05	3.6873e-05
+hypothetical protein	2.88675e-05	7.28631e-06
+Transcriptional regulator, LacI family	0.00045028	0.00339576
+Acyl CoA dehydrogenase, middle domain protein	0.000406526	0.000486503
+Tripartite ATP independent periplasmic transporter, DctQ component	0.000235874	5.66007e-05
+SadB	0.0010093	8.36765e-05
+30S ribosomal protein S3, partial	5.68484e-05	2.64053e-05
+GCN5 related N acetyltransferase	0.00207262	0.00114818
+UniRef50_G8VGQ5	4.90266e-05	0.000229847
+Peptidyl prolyl cis trans isomerase	0.00412911	0.00146183
+UniRef50_W7QF52	0.000259476	1.50471e-05
+FeoA domain protein	0.000476891	0.000209289
+Phosphoserine aminotransferase	0.00962825	0.00132108
+ABC transporter permease protein	0.000373699	0.000371182
+ABC transporter, permease protein	0.000603848	0.00112051
+Probable diguanylate cyclase YeaP	0.00230513	0.00036914
+lipase	2.23635e-05	0.000209919
+DivIVA protein 	5.70681e-05	2.97368e-05
+probable MoxR related protein, partial	1.45919e-05	1.81716e-05
+UniRef50_H2ZBA2	3.24884e-05	8.66334e-06
+Oligopeptide ABC transporter permease protein	0.0178507	0.00163453
+UniRef50_C6M3G0	4.86012e-05	0.000115624
+hypothetical protein	1.17541e-05	0.000110043
+Peptidase U32	0.000270422	0.000522309
+UniRef50_Q9RSR0	0.000646942	0.0242344
+hypothetical protein	3.12295e-06	3.01314e-06
+UniRef50_A0A024HX85	2.02535e-06	4.84694e-05
+3 oxoacyl [acyl carrier protein] synthase 3	8.5649e-06	6.15448e-06
+UniRef50_A5UMS9	0.00347744	0.000319624
+acetolactate synthase catalytic subunit, partial	5.50173e-06	8.96776e-06
+Protein Soj homolog	0.000902876	0.00101473
+hypothetical protein	1.8665e-05	1.50375e-05
+Uracil DNA glycosylase superfamily	0.000528578	0.00254146
+SPP1 family phage portal protein	0.0136616	0.00110928
+diguanylate cyclase	1.3525e-05	0.000380972
+DNA directed RNA polymerase subunit beta	1.95316e-06	8.12391e-07
+UPF0070 protein NGO0425	0.000339353	0.00105249
+methionyl tRNA synthetase	5.3108e-06	8.38266e-06
+hypothetical protein	1.14181e-06	3.60264e-05
+Glycosyltransferase	0.00300337	4.98805e-05
+Predicted AAA ATPase	0.00528638	0.000893851
+UniRef50_A6LY87	0.000710197	0.000406547
+Polyphosphate kinase	0.00165557	0.000460682
+hypothetical protein	1.20072e-05	6.6882e-06
+hypothetical protein	0.000395837	7.53389e-05
+UniRef50_K7U2F6	0.000109773	5.60802e-05
+ABC transporter multidrug efflux pump	0.000268582	0.00338311
+Cag pathogenicity island protein I	0.000179894	0.00195373
+Expressed protein	1.81351e-05	1.37868e-05
+UniRef50_M4UIL6	0.00031772	1.96144e-06
+TRAP transporter solute receptor, TAXI family	3.73538e-05	3.38621e-06
+UniRef50_F2IFK9	8.00363e-06	0.000565853
+UTP  glucose 1 phosphate uridylyltransferase	0.00028679	9.24394e-05
+branched chain amino acid transporter AzlC	7.05056e-05	4.27284e-05
+Protein NagD homolog	0.0218495	0.00412166
+PhoH like protein	0.000200851	0.00298959
+Diguanylate cyclase	5.23575e-06	2.37947e-05
+hypothetical protein	4.00477e-06	4.50748e-06
+hypothetical protein	4.07913e-05	6.14478e-06
+UniRef50_Q9RRP2	0.000490198	0.0248417
+UniRef50_Q9RRP3	6.1342e-05	0.00957574
+Hydroxyethylthiazole kinase	0.0193196	0.00242922
+molybdenum cofactor biosynthesis protein A	5.92155e-06	0.00369142
+Phosphoribosyl AMP cyclohydrolase	0.00536855	3.74308e-05
+UniRef50_B0JMB5	4.13703e-05	5.83688e-06
+hypothetical protein	0.000316702	4.57414e-05
+Stage III sporulation protein AA	0.000549897	0.00117236
+UniRef50_R4M6A1	4.27e-05	1.92414e-05
+hypothetical protein	1.39094e-05	6.35944e-05
+Dextranase	0.00567476	0.000746952
+hypothetical protein	0.000113345	7.67072e-05
+UniRef50_W1VLC3	3.68935e-06	3.24079e-06
+UniRef50_S2WM30	4.68485e-06	3.72954e-05
+hypothetical protein	1.47852e-05	4.54343e-06
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	1.48173e-05	1.26687e-05
+Cytochrome P450	0.000316688	0.000207848
+AzlC family protein	3.49805e-05	7.50704e-06
+Arabinose binding protein	9.88879e-05	0.000557181
+Nuclease SbcCD subunit D	0.00424109	0.000454012
+50S ribosomal protein L18	5.72018e-05	0.000212339
+HAD hydrolase, family IIB	0.00123469	0.00233
+UniRef50_E2ZT41	0.000912534	0.000182119
+PREDICTED	3.742e-05	6.41067e-05
+UniRef50_I2ZU82	0.000717992	9.51964e-05
+Zinc metalloproteinase aureolysin	0.0106087	0.00147616
+Molybdenum cofactor biosynthesis protein B	0.000508527	0.000248663
+UniRef50_Q4YEI4	0.000982795	0.000354981
+MFS permease	0.000172375	0.00303976
+D galactose binding periplasmic protein MglB	0.00067521	0.00133525
+N5 carboxyaminoimidazole ribonucleotide mutase	7.75905e-05	0.000731595
+Glycosyl transferases group 1 family protein	0.000628946	0.000850593
+N acetyltransferase	3.01868e-05	2.22147e-05
+hypothetical protein	8.96239e-06	5.39052e-06
+UniRef50_U5N662	1.19976e-05	2.29018e-05
+Pyruvate flavodoxin ferredoxin oxidoreductase domain protein	7.23242e-05	0.000193323
+UniRef50_Q4L4Y4	0.0101213	0.00150273
+recombinase	5.08454e-05	6.08787e-06
+isoleucine  tRNA ligase	2.09875e-06	1.52391e-06
+Serine transporter	9.26483e-06	5.95516e-06
+UniRef50_M9VGG3	0.00400079	0.00206376
+Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	4.13586e-05	5.72862e-06
+UniRef50_Q9AA76	2.06803e-05	1.21498e-05
+UniRef50_I1EHK4	0.000112433	0.000822353
+Divalent metal cation transporter MntH	8.62945e-05	0.00203312
+UniRef50_E3E667	6.06373e-06	0.000358851
+Dihydroorotase	0.00120845	0.000331671
+CvhA	6.38152e-06	6.47525e-05
+hypothetical protein	4.49769e-05	2.21169e-05
+Nitrogen regulation protein NIFR3	0.00120783	3.43323e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.0079118	0.0018708
+Aldehyde dehydrogenase	0.00148794	0.000366796
+UniRef50_C8X7N2	0.000226611	6.13497e-05
+hypothetical protein	5.29886e-06	4.13004e-05
+Riboflavin biosynthesis protein RibD	0.000133199	0.00191442
+hypothetical protein	1.22934e-05	8.33818e-06
+Fibronectin binding protein A	0.0110345	0.00173139
+MFS transporter	0.000105062	0.00308748
+Excinuclease ATPase subunit 	3.53174e-05	0.000132639
+LOC767890 protein 	2.9705e-05	3.35442e-05
+Mannosyltransferase	0.00017319	9.60561e-06
+Serine  tRNA ligase	4.10445e-06	6.47737e-06
+UniRef50_I0Z518	2.5046e-06	1.8226e-06
+Triosephosphate isomerase	2.94988e-05	3.81247e-05
+Ribosomal RNA small subunit methyltransferase G	1.7806e-05	1.36165e-05
+UniRef50_A6V312	5.66739e-06	2.822e-06
+GDP mannose 4,6 dehydratase	0.00111085	9.24664e-05
+adenylate kinase	1.00269e-05	2.04445e-05
+hypothetical protein	1.04501e-05	0.000150815
+UniRef50_C4Z2L9	0.000310777	0.000166268
+UniRef50_E4B7L0	0.00054282	0.000824564
+PTS multi domain regulator	6.32214e-05	0.00209926
+Cobyrinic acid ac diamide synthase	3.3828e-06	5.78624e-06
+PREDICTED	2.57025e-06	6.5688e-06
+Chromosome initiation inhibitor	0.00184476	0.000181384
+Cell envelope related transcriptional attenuator	9.15363e-05	0.00794088
+Transketolase 	6.34303e-05	6.35024e-06
+Arsenate reductase	0.000124013	0.000100655
+Cell wall binding repeat containing protein	0.000442812	0.000284651
+UniRef50_K2RRG6	9.76451e-06	1.06687e-05
+Caspase family protein	0.00479253	0.000685596
+UPF0342 protein SE_1526	0.005904	0.000262529
+DNA directed RNA polymerase subunit beta 	4.46919e-05	2.17552e-05
+UniRef50_A7N872	1.64799e-05	2.79188e-05
+Marine sediment metagenome DNA, contig	2.83214e-05	2.28281e-06
+UPF0435 protein SERP1418	0.00205457	0.000440122
+ABC transporter	0.0107332	0.000424083
+hypothetical protein	4.33424e-06	1.04723e-05
+Transposase	3.93483e-05	8.92526e-05
+Transposase	0.000302607	2.91046e-05
+hypothetical protein	1.06301e-06	3.09193e-06
+hypothetical protein	3.71921e-06	6.03489e-06
+UniRef50_A3M7C9	0.000111194	0.00424365
+hypothetical protein	1.16423e-05	9.80482e-06
+UniRef50_Q9I1X8	0.000722832	0.000232002
+Phosphoribosylformylglycinamidine synthase	0.000147217	5.11715e-05
+hypothetical protein	9.50679e-06	2.23938e-05
+Putative ankyrin repeat protein B	0.000481956	0.000321805
+Major facilitator superfamily MFS_1	0.000217221	0.000782883
+leucyl phenylalanyl tRNA  protein transferase	7.22771e-06	1.76522e-05
+UniRef50_G7ZQT1	0.0146173	0.00165386
+polysaccharide biosynthesis protein	9.68599e-06	1.66639e-05
+UniRef50_A6W4G4	0.00011856	3.47567e-05
+Zinc import ATP binding protein ZnuC	0.000176355	1.24853e-05
+UniRef50_A0A011P1A0	0.000157232	2.71514e-05
+Thiazole biosynthesis protein ThiH 	0.00013139	5.5628e-05
+Bifunctional protein PyrR	0.000394782	0.00131755
+Superoxide dismutase [Fe]	1.22783e-05	1.09735e-05
+septation ring formation regulator EzrA	1.65871e-05	1.028e-05
+UniRef50_A3KVE3	0.000778918	0.000200189
+1,4 alpha glucan branching enzyme GlgB	0.00037669	0.0169231
+Tyrosine  tRNA ligase	0.000237171	0.000670647
+HTH type transcriptional activator AaeR	0.00340899	0.000645006
+UniRef50_W8T7R1	0.00231059	0.000163543
+UniRef50_Q1XG21	0.000249982	4.30017e-05
+flagellar biosynthesis protein FlhA	1.28074e-06	1.8551e-06
+UniRef50_F7ZDL0	6.85879e-06	1.21868e-05
+Macrolide export ATP binding permease protein MacB	2.57306e-06	6.62468e-06
+Aspartate aminotransferase	0.000736264	0.00429617
+Isoaspartyl dipeptidase	0.000445954	0.000291253
+Type II secretory pathway, component PulF	5.48261e-06	0.0011445
+UniRef50_F5M175	0.000239935	3.37709e-05
+UniRef50_X4ZX80	0.00999007	0.00123202
+Phosphomevalonate kinase	0.0192068	0.00376439
+UniRef50_R8A3B5	0.000296453	3.40282e-06
+Putative amino acid decarboxylase	5.52486e-06	1.497e-05
+LexA repressor	7.60422e-05	6.06412e-06
+cysteinyl tRNA synthetase	8.23047e-06	1.76857e-05
+glyoxalase	1.06907e-05	1.52261e-05
+Dihydroorotate dehydrogenase , mitochondrial	3.46437e-06	5.69831e-06
+UniRef50_N9J1H3	0.000108798	0.00122874
+Acetylornithine aminotransferase	0.0142517	0.00245661
+Accessory gene regulator A	0.0192258	0.00110678
+Ribosomal RNA small subunit methyltransferase H	2.06075e-05	6.45979e-06
+UniRef50_H2JCD9	0.000292087	0.000617109
+peptide chain release factor 3	1.5916e-05	2.93103e-05
+Polysaccharide deacetylase	0.000211223	0.00235589
+Lipid A export ATP binding permease protein MsbA	2.71938e-06	2.28238e-06
+tRNA specific adenosine deaminase	9.74785e-06	2.12661e-05
+UniRef50_W1CRU3	6.11615e-05	4.79974e-05
+DNA topoisomerase 4 subunit B	0.000389622	2.40208e-06
+Replicative DNA helicase	0.00174655	0.0023225
+UniRef50_A7ZM93	0.00220946	0.000271976
+Phospho N acetylmuramoyl pentapeptide transferase	0.00692868	0.00115579
+hypothetical protein	5.73029e-06	7.90305e-05
+3 oxoacyl ACP synthase	8.14811e-06	2.21154e-05
+aldehyde dehydrogenase	2.87452e-06	1.01312e-05
+UniRef50_X3K6P1	5.83113e-05	5.13849e-05
+UniRef50_Q3J3U2	0.00164159	0.000121167
+Histidine  tRNA ligase	0.00231197	0.00242257
+hypothetical protein	2.17859e-06	2.8136e-06
+UDP N acetylenolpyruvoylglucosamine reductase	0.0262615	0.00555166
+TonB dependent receptor	0.000104655	0.00380525
+Methyl accepting chemotaxis protein II	0.0052368	0.000797358
+Magnesium chelatase subunit ChlI	0.000179015	0.00287647
+hypothetical protein	5.04077e-06	7.01335e-06
+PREDICTED	5.2618e-06	8.9091e-06
+Aminotransferase class I and II family protein 	0.00140229	0.000421525
+UniRef50_E2YZE2	0.00954931	0.00396486
+UniRef50_F0KG57	0.000111563	0.00309969
+hypothetical protein, partial	1.46843e-06	1.61947e-07
+LysR substrate binding domain protein	0.00013984	0.0033203
+UniRef50_Q7MME5	3.90487e-05	3.37188e-05
+UniRef50_C6SHL5	2.38367e-05	0.0001389
+Phospholipase C, phosphocholine specific	0.00015119	0.0038338
+Truncated cell surface fibronectin binding protein	0.000442833	0.000268356
+hypothetical protein	2.32193e-06	3.45769e-06
+4 diphosphocytidyl 2 C methyl D erythritol kinase	1.85082e-05	0.00135814
+hypothetical protein	7.02062e-05	1.64301e-05
+ATP dependent Clp protease proteolytic subunit 1	0.0181198	0.00734622
+Putative frv operon regulatory protein	0.00256074	0.000166584
+hypothetical protein	3.48049e-05	2.22941e-05
+Excinuclease ABC subunit A	0.000325727	0.00302592
+Amidohydrolase family protein	0.0092576	0.00157738
+Cobalamin biosynthesis protein CobN	2.85533e-05	0.00242363
+UniRef50_P77493	0.00221613	0.000768815
+hypothetical protein	2.09621e-05	4.11542e-06
+ binding protein	5.01137e-05	5.00184e-06
+hypothetical protein	9.21287e-05	5.08679e-05
+hypothetical protein	3.22096e-05	2.14073e-05
+Cell division protein FtsZ	0.00657579	0.00304327
+pyruvate kinase	1.60079e-05	6.35163e-06
+UvrABC system protein A	0.00798642	0.00058269
+hypothetical protein PFL1_03459	2.37185e-05	4.91304e-06
+UniRef50_Q5HL03	0.00113547	0.0134469
+Predicted permease	0.00143429	0.000608736
+UniRef50_M9VI15	0.000386468	0.00183713
+UniRef50_B9DW22	0.000545754	0.000507259
+Dehydrogenase	0.0049319	0.00109848
+PE PGRS family protein	0.000846106	0.000774101
+Amine oxidase	0.000318975	0.00125989
+UniRef50_G8XHV9	0.000112575	1.23688e-05
+PTS system, IIC component	0.00365665	0.00258084
+Marine sediment metagenome DNA, contig	2.12795e-05	0.000228996
+UniRef50_P77721	0.00123219	0.000608764
+hypothetical protein	2.84439e-05	9.39081e-06
+hypothetical protein	1.57795e-05	8.93155e-06
+Regulator of sorbitol operon	0.000195576	0.00228336
+DNA topoisomerase I	0.000509793	0.000653672
+Chemotaxis protein	0.000527225	0.000149661
+UniRef50_H8Z498	9.85962e-05	5.2134e-06
+UniRef50_A3TUV5	0.000551478	8.73387e-05
+Methionine import ATP binding protein MetN 4	1.46685e-05	0.00115543
+Putative Oleandomycin polyketide synthase, modules 5 and 6	6.44004e-05	1.36269e-05
+Phosphoglucosamine mutase	0.000459227	0.000675043
+Putative permease MJ0326	0.00117572	0.0012374
+hypothetical protein	1.90144e-05	4.42911e-06
+Cobalt zinc cadmium resistance protein CzcA	3.68081e-05	0.00145611
+Multiple sugar binding protein	0.00467488	0.00112666
+UniRef50_G7M9H8	0.000126048	0.000897611
+PIN domain protein	0.0105993	0.000516052
+flagellar motor switch protein FliN	0.000107094	2.00267e-05
+Thiosulfate binding protein	0.00174909	0.000611562
+UniRef50_W9G6K5	4.54144e-05	2.40586e-05
+Protein LemA	0.00910911	0.000279704
+Two component transcriptional regulator, winged helix family	0.000372726	0.00283027
+UniRef50_C6SRE4	0.00446097	0.00112886
+Glycosyl hydrolase family 20, catalytic domain protein	0.000472936	0.00300112
+hypothetical protein	0.00017962	4.4879e-05
+hypothetical protein	1.39339e-05	3.44477e-06
+Membrane protein, putative	0.000132499	0.000125049
+X Pro dipeptidyl peptidase  family protein	0.00043054	0.000237629
+hypothetical protein	9.35629e-06	3.22306e-05
+Pantothenate synthetase	0.0215207	0.00224917
+Two component transcriptional regulator, LytTR family	0.000148696	0.00105207
+Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI	0.000715	0.000183378
+hypothetical protein	4.80257e-06	4.85468e-05
+polyphosphate kinase	7.46295e-06	0.000103178
+transposase IS200	7.09014e-05	5.42871e-05
+Glycine glutamate dipeptide porin OpdP	0.00095154	6.56802e-05
+23S rRNA  C(5)) methyltransferase RlmD	0.000282318	4.97231e-05
+UniRef50_Q3IV20	0.03105	0.000653258
+UniRef50_Q3IV23	0.00146768	0.000762354
+UniRef50_Q3IV22	0.000751476	0.000439808
+FAD containing monooxygenase EthA, partial	1.96397e-05	2.4891e-05
+UniRef50_Q3IV27	0.00537842	0.000230461
+Orn DAP Arg decarboxylase 2	0.00242331	0.000367093
+O acetylhomoserine aminocarboxypropyltransferase	1.45613e-05	4.802e-06
+D 3 phosphoglycerate dehydrogenase	0.000124303	0.0152737
+UniRef50_C6ST04	0.00415253	0.00290398
+Formin like protein 6	3.13549e-06	2.08197e-06
+Putative acid  amine ligase YjfC	0.00302406	0.000127535
+UniRef50_W5X567	6.42797e-05	8.51203e-06
+NAD dependent epimerase dehydratase	0.000103116	0.000100616
+hypothetical protein	3.33857e-06	6.98242e-06
+Ribonucleoside diphosphate reductase 1, beta subunit, B2	0.00209855	0.000685166
+Multi sensor signal transduction histidine kinase	0.000261069	0.000900207
+C di GMP phosphodiesterase A	0.000104605	0.0091112
+Sodium serine  transporter	0.000900025	0.000478678
+PTS glucose transporter subunit IIB	1.55481e-05	4.65383e-05
+Molybdopterin biosynthesis protein, MoeB	0.00249992	0.000322042
+NAD dependent oxidoreductase	0.000136439	0.000270568
+chemotaxis protein CheY	1.25324e-05	4.36705e-05
+Methionine ABC transporter substrate binding protein	0.00585912	0.0015419
+Metal dependent phosphohydrolase with GAF sensor	9.85982e-05	0.0134045
+L sorbosone dehydrogenase	0.0115979	0.00129028
+UniRef50_K9ZX43	0.000131123	0.0117306
+Methyl accepting chemotaxis protein	0.00107224	0.000382063
+ribonuclease 3	8.71625e-06	4.80742e-06
+UniRef50_P45955	0.00171832	0.000345158
+UniRef50_X5E195	0.00481482	0.000258002
+Putative transcriptional regulator, Crp Fnr family	4.14052e-05	1.84102e-05
+DNA topoisomerase I subunit omega	1.57291e-05	9.96267e-05
+DNA gyrase subunit A	0.0147414	0.00272955
+UniRef50_D5RPK9	1.57967e-05	2.82752e-05
+HTH type transcriptional regulator IscR	0.0161355	0.000184743
+UniRef50_Q0G4L4	0.000100735	9.86233e-06
+DHH subfamily 1 protein 	2.39506e-05	0.000929364
+RHS repeat associated core domain protein	2.15782e-05	0.000437504
+ABC transporter	6.69301e-05	1.71566e-05
+Sal9 lantibiotic transport ATP binding protein	0.00829601	0.000101452
+Drug resistance ABC transporter,ATP binding protein	0.000138181	0.00051942
+formyltetrahydrofolate deformylase	3.33332e-05	1.0443e-05
+Superoxide dismutase [Mn]	9.10107e-06	1.53321e-05
+SAM dependent methyltransferase	0.00757027	0.000550827
+RpoD subfamily RNA polymerase sigma 70 subunit	2.92683e-06	2.42903e-06
+Alanine  tRNA ligase	0.000376803	0.000388579
+UniRef50_P75692	0.000415492	0.000652853
+hypothetical protein, partial	0.00021559	5.51497e-05
+Cytochrome c oxidase subunit 3	5.89041e-05	1.45173e-05
+hypothetical protein	1.91779e-05	4.43742e-06
+ATP synthase subunit alpha	3.25306e-06	0.00306607
+UniRef50_I6T7J2	0.00232654	0.000306818
+UniRef50_K0D4L6	5.12791e-05	1.22704e-05
+CRISPR associated helicase Cas3	5.19456e-05	3.2863e-06
+UniRef50_F5XP90	6.53492e-05	0.00403781
+Inner membrane metabolite transport protein YdjE	0.00013984	0.000104523
+PREDICTED	1.4751e-05	0.000105773
+ABC transporter related	0.00363922	0.000430837
+Cellobiose phosphorylase	2.91403e-06	9.56415e-06
+Amino acid ABC transporter, periplasmic amino acid binding protein, putative	0.00353043	0.000134812
+hypothetical protein	2.53405e-05	4.56661e-06
+3 hydroxylisobutyryl CoA hydrolase	0.000729736	0.00692633
+Proteophosphoglycan ppg4	1.76665e-05	6.87276e-05
+UniRef50_J0W6L9	0.000195135	0.000125182
+Na H(+) antiporter NhaA 2	0.000434498	0.00127714
+WafV	8.71887e-05	0.00474802
+dihydroxyacetone kinase	2.285e-05	0.000632808
+Exodeoxyribonuclease III	0.000217596	0.0108961
+Sensory box sensor histidine kinase	9.55974e-05	0.00844983
+Glycine reductase complex protein C large subunit	0.00195732	0.000178551
+hypothetical protein	3.36754e-05	6.18635e-06
+Trifunctional purine biosynthetic protein adenosine 3	2.79834e-06	1.33191e-06
+Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive	0.00331069	0.00110103
+DNA directed RNA polymerase subunit alpha	1.78154e-05	2.10256e-05
+hypothetical protein	5.93538e-05	4.04943e-05
+Crp Fnr family transcription regulator	0.000156534	0.000882954
+UniRef50_A0A059LCN6	9.38279e-05	0.000104828
+Type IV secretion system ATPase VirB11	0.00010596	3.4536e-05
+hypothetical protein	7.11752e-06	2.64022e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000177478	0.00089193
+chemotaxis protein	4.33904e-05	1.29477e-05
+3 hydroxyisobutyrate dehydrogenase	0.000236015	0.00492336
+hypothetical protein	3.35706e-05	1.11803e-05
+DNA directed RNA polymerase subunit alpha	1.41072e-05	0.0183421
+hypothetical protein	6.1422e-05	9.08435e-06
+hypothetical protein	0.000282915	9.46871e-06
+RelA SpoT family protein	0.00716315	0.00106474
+hypothetical protein	2.28389e-05	0.000147253
+Integral membrane protein TerC	0.000821467	8.61659e-05
+UniRef50_E2QLT7	0.000832594	0.000556618
+Bifunctional adenosylcobalamin biosynthesis protein CobU	0.00123552	3.62756e-05
+sn glycerol 3 phosphate transport system permease protein UgpE	0.00831437	0.000549792
+Chorismate synthase	4.02468e-06	7.76496e-06
+UniRef50_S5KJ87	9.53304e-07	0.000723833
+Chemotaxis protein	0.00102345	0.000183288
+hypothetical protein	1.00774e-05	6.26608e-06
+Bifunctional spore maturation protein, fused SpmA SpmB	8.22187e-05	0.000236801
+Transcriptional regulator	0.000219024	0.00107236
+hypothetical protein	4.10089e-05	2.52248e-06
+phosphoenolpyruvate protein phosphotransferase	2.74286e-06	4.28282e-05
+Kinase domain protein	6.61629e-05	0.00350623
+Site specific recombinase	1.22828e-05	0.000134453
+UniRef50_D0K172	0.000192313	0.000926926
+hypothetical protein	0.000104632	6.62212e-05
+UniRef50_F8W467	5.95512e-06	7.89228e-06
+Putative solute symporter protein	1.87336e-05	3.76278e-05
+Transcriptional regulator, GntR family	0.000170261	0.00144732
+Peptidase M29, aminopeptidase II	0.000101268	0.0108104
+Putative major capsid protein gp5 	0.0056443	0.00030997
+UniRef50_R7PVH8	0.000849124	0.000266679
+transposase	2.78533e-06	3.14822e-05
+UniRef50_Q1QX79	4.42906e-05	1.82309e-05
+UniRef50_D8JMF6	0.000120196	0.00309824
+TonB dependent siderophore receptor family protein	0.000223298	0.00388318
+hypothetical protein	3.039e-05	1.58835e-05
+hypothetical protein	1.98149e-05	8.85143e-06
+Proline dipeptidase	0.0192585	0.00266888
+UniRef50_A1B4V0	0.00290347	0.000624887
+UPF0125 protein GGA_0527	8.94367e-06	1.01901e-05
+hypothetical protein	1.57537e-05	4.57357e-05
+hypothetical protein	4.02134e-06	8.60382e-06
+UniRef50_X2LYU6	1.39244e-05	9.15618e-06
+ATP dependent DNA helicase RecQ	0.0084418	0.00112347
+N anthranilate isomerase	0.00195722	0.000154911
+Peptide deformylase	3.28504e-05	4.49257e-05
+Fe ions import ATP binding protein FbpC	3.76897e-05	0.000101682
+Serine aspartate repeat containing protein G	0.00595162	0.0013665
+Marine sediment metagenome DNA, contig	5.73042e-06	6.60604e-06
+ABC transporter ATP binding protein	0.00919625	0.00112235
+hypothetical protein	5.28558e-05	1.77849e-05
+UniRef50_F8H6P0	0.000589623	0.000450639
+Protein export membrane protein, putative	4.42827e-05	0.0131036
+UniRef50_D2NXJ8	5.65569e-05	0.000469889
+Citrate lyase acyl carrier protein	0.000471797	0.000317261
+UniRef50_H8H0D3	0.000405619	0.0216433
+UniRef50_Q5ZEI2	1.09095e-05	0.000528239
+UniRef50_I6T664	0.00402397	0.000751944
+UniRef50_K2D6T3	0.000111721	7.51208e-05
+Binding protein dependent transport systems inner membrane component	0.000513313	0.00014095
+Acetyl coenzyme A synthetase	0.00918436	0.00139877
+hypothetical protein	1.19861e-05	1.24178e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	7.22381e-06	6.51007e-06
+Peptidyl prolyl cis trans isomerase A	0.00243599	0.000510597
+preprotein translocase subunit SecD SecF, partial	2.55143e-06	5.10963e-06
+UPF0231 protein YacL	0.000431271	0.000263299
+UniRef50_A0A058ZAW9	1.88437e-06	1.90852e-05
+Inner membrane protein	3.48925e-05	0.00019561
+UniRef50_G7LZJ4	0.000417092	0.000346723
+regulator for metE and MetH	0.000134321	0.000101837
+hypothetical protein	6.12911e-06	5.30618e-06
+UniRef50_A3PS85	0.00330538	0.000185506
+UniRef50_B7NUS6	0.00102414	0.000137918
+cobalt ABC transporter ATP binding protein	1.42837e-05	4.92108e-06
+Transcriptional regulator, AraC family	0.000716227	0.000694089
+UniRef50_T0P454	3.74425e-05	1.2165e-05
+3 oxoacyl ACP reductase	8.65598e-06	6.55858e-06
+MFS transporter	1.27331e-05	5.82179e-06
+UniRef50_A0A026WQ11	0.000405247	4.88669e-05
+ABC transporter related protein	2.38791e-05	5.08006e-06
+UniRef50_Q6F803	0.000265696	0.0011054
+Type I restriction enzyme EcoKI R protein	0.00146398	0.000643381
+RNA binding protein	0.00675145	0.00342409
+UniRef50_I0C528	0.00872406	0.00138954
+UniRef50_I0Z1H0	9.74494e-07	1.72309e-06
+Nitrate transport ATP binding protein nrtC	0.000219225	0.00383486
+UniRef50_A9M366	0.000269239	0.000512323
+PTS system, glucose subfamily, IIA component	2.56235e-06	2.093e-06
+C4 dicarboxylate transport transcriptional regulatory protein DctD	0.00918459	0.00142331
+serine threonine protein phosphatase	5.96243e-06	4.63229e-06
+Putative aldehyde dehydrogenase AldA	0.0237907	0.00391353
+Adenine phosphoribosyltransferase	0.00158148	0.000173606
+UniRef50_V5NHS3	5.70421e-05	0.00260684
+UniRef50_K0HKR9	8.24201e-05	0.00362897
+Pyridine nucleotide disulfide oxidoreductase family protein	0.000508732	0.000168136
+Hypoxanthine phosphoribosyltransferase	0.000742387	0.00509713
+Phosphate binding protein PstS 2	0.000643097	0.000288281
+Beta hexosaminidase	0.000307169	0.00336037
+UniRef50_Q3HKK4	0.00317195	0.000776616
+30S ribosomal protein S1	2.67037e-06	5.38845e-05
+Primosomal protein N	0.00018932	0.001899
+UniRef50_M9RBV2	0.00267291	0.000308238
+hypothetical protein	4.82706e-05	1.14751e-05
+UniRef50_R7PWJ2	0.00162316	0.000289615
+Cation multidrug efflux pump	0.00799132	0.00104556
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	6.23804e-05	1.91897e-05
+Protoheme IX farnesyltransferase	8.12291e-06	3.66006e-05
+p hydroxyphenylacetate 3 hydroxylase, oxygenase component	0.0110601	0.0012086
+50S ribosomal protein L4	0.0029552	0.0013271
+Alanine  tRNA ligase	7.95288e-05	0.00237534
+2 isopropylmalate synthase	0.000193537	0.00127386
+Periplasmic binding protein	3.48185e-05	9.08455e-05
+tRNA 2 methylthio N dimethylallyladenosine synthase	0.0170274	0.00191486
+hypothetical protein	2.65354e-05	3.22372e-06
+Spermidine putrescine import ATP binding protein PotA	0.000291566	7.24121e-06
+serine threonine protein kinase	4.06691e-05	7.2308e-06
+UPF0122 protein SERP0802	0.0163151	0.000272075
+Dihydroorotate oxidase	0.0239673	0.00197007
+hypothetical protein	8.16311e-05	2.90803e-06
+Glucosyltransferase S	0.000835427	0.000442465
+hypothetical protein	6.09181e-05	4.40082e-06
+Multidrug export protein AcrE	0.00232491	0.000196141
+N acetylglucosamine 6 phosphate deacetylase	0.000422791	0.000205558
+ABC transporter	1.74738e-05	2.52419e-06
+Ribose ABC transporter, permease protein	0.000190499	0.00185091
+OmpW family protein	0.000764478	0.00427424
+N acetylglucosamine repressor	0.00209888	0.000265446
+MazG family protein	1.09306e-05	4.30422e-06
+hypothetical protein	2.03368e-05	1.93033e-05
+glycerophosphoryl diester phosphodiesterase	8.88222e-06	1.06774e-05
+UniRef50_P45546	0.00232921	0.000461025
+4 deoxy L threo 5 hexosulose uronate ketol isomerase 2	8.27839e-06	0.00100043
+UniRef50_B0V7L4	0.000184242	0.00262664
+UniRef50_Q1IWJ1	0.00059562	0.0182416
+UniRef50_P45549	0.00202669	0.000460739
+HemY like protein	0.00276821	0.000229489
+UPF0761 membrane protein PLES_43641	0.000711377	0.000605309
+UniRef50_P46890	0.0020656	0.000737051
+Glucose 1 phosphate adenylyltransferase	0.000689309	0.00378179
+outer membrane specific lipoprotein transporter subunit LolE	7.67358e-06	2.08952e-05
+UniRef50_T0TW25	0.0051502	0.00083072
+DNA topoisomerase 4 subunit A	0.0184247	0.00191776
+hypothetical protein	7.55772e-06	3.70082e-05
+UniRef50_F0HAX6	2.96805e-06	7.12003e-05
+Type II restriction endonuclease	4.09314e-06	0.000586428
+tRNA 2 selenouridine synthase	9.10411e-05	0.000246039
+UniRef50_I1CKJ8	9.18045e-05	1.36815e-05
+Putative oligopeptide transporter HI_0561	0.000519556	5.52862e-05
+UniRef50_P37538	0.00030876	8.77973e-05
+tyrosyl tRNA synthetase	2.78113e-05	4.17875e-06
+hypothetical protein	1.28624e-06	6.55485e-06
+XRE family transcriptional regulator	0.000191219	1.15335e-05
+NADH quinone oxidoreductase subunit D	5.54431e-06	1.9231e-05
+Alpha glucosidase YihQ	0.000608128	8.38327e-05
+Histidine kinase	0.000157715	0.000998977
+CTP synthetase, partial	8.88334e-06	2.40077e-05
+UniRef50_A6V2J2	0.00067251	0.000353729
+von Willebrand factor type A domain protein	4.66863e-05	1.11204e-05
+Ankyrin repeat protein A	0.00275224	0.000113007
+hypothetical protein	4.95263e-06	7.68669e-06
+Biopolymer transport protein ExbD TolR	0.000239253	0.00569864
+O succinylbenzoate synthase	0.011522	0.000748661
+hypothetical protein	3.38537e-06	1.90252e-05
+Shikimate dehydrogenase	0.000157365	1.98029e-05
+MarR family transcriptional regulator	1.07966e-05	3.93783e-05
+Os06g0602200 protein 	2.30103e-05	0.000331647
+Peptide chain release factor subunit 1	0.00338229	0.00015564
+Oligoendopeptidase	0.00917295	0.0026813
+hypothetical protein	2.62535e-06	0.000336109
+Cytidylate kinase	8.10143e-06	6.18998e-06
+UniRef50_Q9L3H0	8.10059e-05	1.85206e-05
+hypothetical protein	1.46832e-05	5.85376e-06
+Mannitol 1 phosphate 5 dehydrogenase	0.00578125	0.0029412
+3 oxoacyl  synthase I	0.000212615	0.00267094
+Nuclease, RecB family	0.000110889	0.00250957
+UniRef50_Q9RTC1	0.00052861	0.0120909
+2 octaprenylphenol hydroxylase	0.000249906	0.00332413
+DNA polymerase I	5.69939e-06	1.52857e-05
+hypothetical protein, partial	3.53734e-05	2.30492e-05
+hypothetical protein	3.79808e-06	1.41058e-05
+UniRef50_K0TKK5	4.23193e-05	6.7454e-06
+NADH quinone oxidoreductase subunit J	0.00760304	0.000211931
+Extracellular solute binding protein, family 5	0.000362073	0.0501026
+Ferritin like protein	0.000216174	0.000216959
+UniRef50_L7UG94	0.000376154	2.29493e-05
+UniRef50_D8UER7	3.1284e-05	2.33284e-05
+Putative PTS system glucosamine specific EIICBA component	1.95701e-05	2.08543e-05
+hypothetical protein	7.70549e-06	6.99563e-06
+hypothetical protein	7.46656e-06	0.000600736
+Stage V sporulation protein B	0.000223069	0.000581783
+Putative inner membrane protein	7.40894e-06	4.43362e-06
+Sugar diacide regulator	0.000123128	6.53965e-05
+UniRef50_L1KDU4	0.000778174	0.000986647
+UniRef50_P36661	0.00245195	0.000146442
+UniRef50_F9YAC9	0.000255137	2.16883e-05
+hypothetical protein	4.63261e-06	2.78373e-06
+UniRef50_F2UB74	8.87382e-06	7.04813e-07
+UniRef50_M9RFD9	0.000414049	2.24387e-05
+UniRef50_R7PX69	0.00556273	0.00108465
+Arabinose efflux permease family protein	3.37065e-06	2.75583e-06
+UniRef50_R9ZK82	0.000150362	4.08484e-05
+Peptidylarginine deiminase related protein	0.000101984	0.00163688
+ORFV protein	8.65325e-05	2.42606e-05
+Succinyl diaminopimelate desuccinylase	0.00267088	9.40944e-06
+UniRef50_A4X058	0.00109075	0.000772416
+UPF0173 metal dependent hydrolase Msm_0779	0.00110416	0.000127354
+tRNA tmRNA ) methyltransferase	0.000270785	0.00433112
+Oxidoreductase domain protein	0.000195289	0.00222599
+Inner membrane transport permease YhhJ	0.00300156	0.000110301
+SH3, pleckstrin like and PDZ DHR GLGF domain containing protein	1.60411e-06	7.89219e-06
+UniRef50_A4X051	0.0126855	0.00245279
+UniRef50_M5JU21	1.65151e-05	1.02904e-05
+Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0113172	0.00158227
+3 isopropylmalate dehydratase small subunit	2.89137e-05	1.22482e-05
+NADH quinone oxidoreductase subunit H 2	4.74672e-06	6.78552e-06
+UniRef50_Q5HS11	0.0113565	0.0017926
+hypothetical protein, partial	1.92751e-05	0.00156826
+regulator	9.02304e-06	7.69362e-06
+PREDICTED	2.60367e-06	2.21625e-06
+UniRef50_S5CTU5	0.000171496	0.00462099
+Predicted protein	1.14156e-05	2.5224e-05
+UniRef50_R1FAU5	0.000625398	9.87725e-05
+DNA binding protein MutS2	0.00250256	0.000196433
+hypothetical protein	7.65904e-05	1.76328e-05
+UniRef50_F0RLA6	0.000218041	0.00626006
+Methionine binding lipoprotein	1.68884e-05	3.70408e-05
+hypothetical protein	2.87608e-06	1.4496e-06
+Phospholipase C, phosphocholine specific	0.000154586	0.00279249
+nucleoside hydrolase	1.3117e-05	4.47383e-06
+UniRef50_D4H5B5	0.000118264	6.62655e-05
+DNA gyrase subunit A	0.000127234	0.00480774
+D tyrosyl tRNA deacylase	0.00158484	0.000545213
+UniRef50_R6DP97	1.76552e-05	9.06564e-06
+DNA topoisomerase I	2.61231e-06	5.68305e-06
+UniRef50_U3TY01	5.26354e-05	8.02148e-05
+UniRef50_Q5HPE4	0.0173847	0.00315858
+Magnesium transporter	0.00130452	0.000112372
+TIGR01244 family protein	0.00012583	0.00406739
+Asparagine synthetase [glutamine hydrolyzing] 1	1.61102e-05	0.000304708
+Ulp1 protease family, C terminal catalytic domain protein	0.000299093	0.000350063
+hypothetical protein	1.99137e-05	4.80632e-06
+hypothetical protein	1.95493e-05	7.0765e-05
+Raf like protein	1.45832e-05	9.53641e-06
+hypothetical protein	1.63789e-05	1.02332e-05
+HAD superfamily hydrolase	0.000330001	0.00485011
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.00196801	0.000349145
+Cobalt transport protein CbiQ	0.000217128	0.00282152
+Cation transport ATPase	1.95306e-05	1.4859e-06
+Two component sensor PhoQ	0.000206397	6.85381e-05
+hypothetical protein	0.0110598	0.00428281
+UniRef50_A7ZAV2	6.4601e-05	3.44629e-05
+UniRef50_P77129	0.00288998	0.000371882
+30S ribosomal protein S9	0.0015533	0.00215852
+Bcr CflA subfamily drug resistance transporter protein, partial	1.03813e-05	8.89954e-06
+hypothetical protein	6.45602e-06	1.85369e-06
+NADH dehydrogenase subunit N	0.00179941	0.000218275
+30S ribosomal protein S8	0.00648533	0.0025239
+UniRef50_C3ZKC0	5.16179e-05	2.94394e-05
+Elongation factor 4	0.0129883	0.00150892
+UniRef50_D4HA42	0.00066939	0.00309402
+putative RTX family exoprotein	2.68524e-06	8.15498e-07
+UPF0413 protein SACOL1006	0.0167096	0.00185694
+Multidrug ABC transporter, permease component	0.00224779	0.00116758
+Phosphopentomutase	0.0335469	0.00439146
+Translation initiation factor 3 protein isoform 3	0.000140411	2.82497e-05
+UniRef50_E4N7F4	0.000125595	0.000129492
+UPF0173 metal dependent hydrolase Bsph_4138	0.0279217	0.00261093
+PREDICTED	1.00644e-05	3.35953e-06
+UniRef50_J9NUZ7	9.6366e-05	4.14883e-05
+Amino acid ABC transporter permease	0.00177871	0.000191564
+UniRef50_A0RKC3	4.00657e-05	0.000112795
+PREDICTED	4.47859e-05	6.03708e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	2.68997e-05	1.55502e-05
+Response regulator GGDEF domain protein	0.000315948	6.50615e-05
+Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.000109033	0.000776704
+Lysophospholipase Monoglyceride lipase	0.0221322	0.00322195
+MULTISPECIES	1.71953e-05	7.30987e-05
+UniRef50_R1EJL9	3.75892e-05	1.12215e-05
+UniRef50_Q8CQQ7	0.00774829	0.00174654
+UniRef50_Q8CQQ2	0.000271454	2.04121e-05
+UniRef50_Q8CQQ1	0.00775193	0.00146205
+UniRef50_X5K129	0.000618557	0.000154399
+UniRef50_N6V788	4.46968e-05	3.83325e-05
+UniRef50_S6JXH3	4.20134e-05	3.71221e-06
+DNA primase	3.82887e-06	1.31707e-06
+Conserved protein	0.000598836	0.000359477
+Double strand break repair helicase AddA	0.000325851	5.93225e-05
+MazG family protein	3.86545e-06	5.92211e-06
+Anchored repeat ABC transporter, substrate binding protein	0.000145323	0.00285259
+Transketolase alpha subunit protein	0.00012358	0.00088834
+50S ribosomal protein L4	8.34858e-06	8.18222e-05
+tRNA dimethylallyltransferase	2.33465e-05	0.000974773
+UniRef50_U5NRL0	0.00948808	0.00107241
+hypothetical protein	1.28222e-05	2.06348e-05
+UniRef50_B3RBC2	0.000135863	3.57127e-05
+Predicted membrane protein	6.89856e-05	1.00975e-05
+Glutamate synthase small subunit	0.000177444	0.00208284
+UniRef50_R1CZY9	6.48873e-05	5.39334e-05
+UniRef50_V4QWZ4	0.000165443	4.46254e-05
+Short chain dehydrogenase reductase SDR 	4.10126e-05	1.62576e-05
+Mucin	0.000109149	0.000207355
+Acetolactate synthase  (Large subunit)	0.0101167	0.00466145
+6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase	0.00323043	0.000690861
+X Pro dipeptidyl peptidase	7.00656e-05	0.00324185
+Cytosol non specific dipeptidase	0.00354353	7.47584e-05
+hypothetical protein	6.025e-06	6.88845e-06
+Antirepressor protein ant	1.40966e-05	1.54892e-05
+UniRef50_P76296	0.00197943	0.00205936
+NUDIX hydrolase	0.000181591	0.000688029
+Malate dehydrogenase	0.000116993	0.0147522
+Two component sensor histidine kinase	0.000174682	0.00370786
+AAA domain protein	0.000113737	0.000498806
+Argininosuccinate synthase	4.22979e-06	2.89782e-05
+hypothetical protein	4.91891e-05	0.00253656
+UniRef50_R9CVV5	0.0005713	2.60962e-05
+Aminotransferase	0.00323862	0.000232866
+beta lactamase	3.69387e-06	1.77742e-05
+secretion system apparatus protein SsaV	7.59268e-06	1.57318e-06
+Phenol hydroxylase	8.82031e-05	8.87115e-06
+hypothetical protein	0.000349201	4.67836e-05
+DNA gyrase subunit A	5.47933e-06	9.26483e-06
+Secretion protein HlyD	9.55199e-05	0.00224582
+Riboflavin synthase alpha chain	0.0158504	0.00120528
+UniRef50_B2N6Z5	0.000980737	0.000413755
+DNA helicase	0.00104567	0.00367657
+ammonium transporter, partial	1.25463e-05	1.32635e-05
+UniRef50_M4WTW3	0.000383098	5.66109e-05
+UniRef50_E7I2X0	0.00562476	0.000871698
+Sortase A	0.00250128	0.000965269
+Peptidase	0.00101692	7.55129e-05
+L arabinose isomerase	9.56707e-05	0.000586579
+hypothetical protein	0.000101481	5.76279e-06
+Methylmalonate semialdehyde dehydrogenase	2.4893e-06	3.43601e-06
+molybdopterin biosynthesis protein B, partial	0.00031061	3.8889e-05
+Bacteriophytochrome	0.000586357	0.00025883
+Aspartate ammonia lyase	4.62895e-06	2.32843e-05
+hypothetical protein	1.59471e-05	6.18198e-06
+Putative pyruvate formate lyase 3 activating enzyme	0.00400488	0.00094128
+iron enterobactin transporter ATP binding protein	4.06544e-05	0.000415397
+hypothetical protein, partial	0.000128019	1.30808e-05
+Coenzyme F420 hydrogenase subunit gamma	0.00519657	0.00060379
+hypothetical protein	1.68736e-06	0.000109337
+UPF0301 protein RS24_01332	3.09416e-05	3.41559e-05
+HTH type transcriptional regulator PrtR	0.00140767	0.000120033
+ABC transporter	5.88294e-06	0.000149877
+NADH quinone oxidoreductase subunit K	3.2861e-05	1.77397e-05
+Cadherin	3.87417e-05	1.31056e-06
+GTP cyclohydrolase II	0.00105322	0.000115702
+Arginine biosynthesis bifunctional protein ArgJ	0.0200566	0.00430408
+Bifunctional protein GlmU	7.46684e-06	3.15653e-06
+Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase	0.00454579	0.00098025
+DNA directed RNA polymerase subunit alpha	4.2276e-05	1.95257e-05
+aspartate ammonia lyase, partial	3.67169e-06	5.384e-06
+PREDICTED	4.18407e-06	0.000142092
+Short chain dehydrogenase reductase SDR	0.000678666	0.000438473
+Probable metal transport system membrane protein TP_0036	0.000252727	0.000262906
+UniRef50_L9PLX0	2.81518e-05	2.62382e-05
+Glutamyl tRNA reductase	0.000335467	0.000225717
+1,3 beta galactosyl N acetylhexosamine phosphorylase	4.81471e-05	0.00095299
+Response regulator receiver modulated CheW protein	0.000846718	0.000416036
+UniRef50_W8TSS8	0.000213586	1.67047e-05
+Probable 2 isopropylmalate synthase	7.34072e-06	1.36348e-05
+UniRef50_Q9RYG6	0.000277375	0.00101441
+PREDICTED	1.49073e-05	7.2066e-05
+Imidazoleglycerol phosphate dehydratase	0.000178334	3.10355e-05
+Diguanylate cyclase, predicted	3.96653e-06	0.000156176
+Phosphoglycerate kinase	1.46902e-05	1.08854e-05
+Ferredoxin	6.96083e-06	5.23828e-06
+UPF0603 protein YgcG	0.00207202	0.000422364
+3 oxoadipate CoA transferase subunit A	6.23802e-05	4.20447e-05
+Conserved domain protein	0.00223796	0.00148604
+hypothetical protein	5.75483e-05	3.545e-06
+UniRef50_L8MIC1	0.000268193	6.19161e-06
+50S ribosomal protein L15	5.74509e-05	4.75635e-06
+Putative hemin import ATP binding protein HrtA	0.0123695	0.0018551
+hypothetical protein SMAC_11746, partial	0.000259987	9.68593e-05
+BRO family, N terminal domain protein 	7.34137e-05	1.8352e-05
+UniRef50_Q9RWY0	0.000225867	0.0197459
+ribosomal RNA small subunit methyltransferase h	6.79782e-06	5.33634e-05
+Organic hydroperoxide resistance protein like 1	0.0190968	0.00199144
+Marine sediment metagenome DNA, contig	3.97096e-05	4.86148e-05
+hypothetical protein	1.51913e-05	0.00014876
+Response regulator receiver protein	0.00467161	0.000442006
+Regucalcin	0.000128946	0.002941
+DNA polymerase I	0.000405132	0.0455877
+hypothetical protein, partial	8.29659e-06	6.79939e-06
+PP loop domain protein	0.00140617	0.000198639
+LmbE like protein protein	0.000299236	0.0107517
+PTS system mannitol specific EIICB component	0.00355217	0.00293868
+Membrane protein	2.82467e-06	0.00173537
+Major intracellular serine protease	1.1722e-05	0.000257101
+UniRef50_R8ZJ12	8.12186e-05	2.26787e-05
+Two component sensor histidine kinase	0.0136723	0.00326303
+UniRef50_C4S8U7	0.000190859	0.00014297
+Capsular polysaccharide biosynthesis protein	0.00074886	0.00102494
+UniRef50_D9RDA2	0.00812621	0.000391947
+sugar ABC transporter permease	7.12123e-06	9.70089e-06
+Glutathione dependent formaldehyde activating enzyme	0.000146298	2.3771e-05
+hypothetical protein	5.69783e-06	8.62836e-06
+Hemin import ATP binding protein HmuV	8.13613e-06	0.000536436
+Magnesium chelatase	0.0019904	0.000270828
+Sodium glutamate symport carrier protein	0.0183177	0.00404186
+UniRef50_Q46942	0.00151793	0.000421853
+UniRef50_J2X9Z3	2.38277e-06	3.15737e-05
+UniRef50_Q46941	0.000173479	0.000168452
+Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.0342384	0.00625019
+UniRef50_E8P9H9	0.000468115	0.00328965
+Xanthan biosynthesis protein XanB	0.00259483	0.000695745
+UniRef50_M0UK13	0.000109012	6.3757e-05
+Membrane protein	0.000245355	0.00167547
+hypothetical protein	4.51271e-06	0.000229843
+GTP binding protein lepA	5.39731e-06	9.53368e-06
+DNA mismatch repair protein MutT	0.000144652	2.91768e-05
+transcriptional regulator	0.000163422	1.42412e-05
+Putative oligopeptide transport system permease protein oppB2	0.0120006	0.00551257
+UniRef50_UPI00029DCC9C	0.000164308	0.00026025
+Molybdenum ABC transporter, periplasmic molybdate binding protein	0.00198116	0.00102992
+alkaline phosphatase	3.1223e-05	0.000294419
+UniRef50_D5CAF9	0.000299713	0.000212291
+Potassium transporting ATPase A chain	4.33189e-06	0.000607389
+UniRef50_W8T550	0.000517767	0.000315035
+hypothetical protein	1.31655e-05	0.000106409
+UniRef50_I0L9E3	3.90821e-05	0.000215135
+KDPG and KHG aldolase	0.00716702	0.000543758
+Lipopolysaccharide cholinephosphotransferase, LicD family	0.000956927	0.00032161
+Cellulose synthase subunit domain	0.000313854	0.000349313
+3 oxoacyl ACP synthase	2.66515e-05	4.84305e-05
+UniRef50_Q167X1	7.71323e-05	2.54661e-05
+D amino acid dehydrogenase small subunit	2.79143e-05	1.24065e-05
+Methyl accepting chemotaxis protein	0.000737549	0.000763133
+hypothetical protein	7.40892e-05	5.05983e-05
+DNA binding protein	0.000485231	0.00104332
+Methylmalonyl CoA mutase	0.0077569	0.0179418
+branched chain amino acid transporter permease subunit LivH, partial	2.84803e-05	0.000112126
+Ornithine cyclodeaminase family protein	0.000810563	0.000730278
+Marine sediment metagenome DNA, contig	5.45052e-05	4.47429e-05
+Membrane protein	0.0138629	0.00326664
+Regulatory protein LuxO	2.1565e-06	6.67852e-06
+UniRef50_F9YBY3	1.38987e-05	2.9189e-06
+UniRef50_G2P974	0.00015385	0.000253618
+hypothetical protein	6.10896e-06	6.34314e-06
+UniRef50_K4QA11	0.00445108	0.00175417
+UniRef50_S3CIA8	0.000219012	3.81649e-06
+UniRef50_A7B8C4	0.000154352	1.34444e-05
+UniRef50_F3ZB63	2.47374e-05	8.97872e-05
+UniRef50_Q8FE91	0.00179837	0.00171733
+UniRef50_F0QJX2	0.000153675	0.003832
+UniRef50_W1J5V3	3.88525e-06	2.46219e-06
+UniRef50_J0EVE3	0.00110763	0.000106176
+UniRef50_Q3IVF5	0.000299571	0.000295377
+UPF0761 membrane protein ACIAD3168	0.000727763	0.00267964
+TraG	0.043401	0.00458312
+Transposase, undefined	0.000150919	0.00182026
+ApbE family lipoprotein	0.00111897	0.00134447
+peptide ABC transporter permease	1.53467e-05	9.76354e-06
+UniRef50_K0R9N5	0.000223543	0.000215361
+Peptidase M23B	0.000186281	0.000434681
+UniRef50_F2U4B6	9.5167e-05	2.90496e-05
+UniRef50_Q21CV9	0.000163522	1.87654e-05
+UniRef50_U3TUS4	0.000321221	0.000286466
+Type I restriction modification system, M subunit	0.0194862	0.00221522
+UniRef50_D4HCJ3	0.000350253	0.00445294
+PTS system N acetylglucosamine specific EIICBA component	0.000972206	0.000162478
+UniRef50_J2P2T7	1.98213e-05	1.53795e-05
+Inner membrane protein YtfF	0.00239459	0.000858188
+hypothetical protein	5.17103e-06	4.87042e-06
+UniRef50_B8FMK3	1.55275e-05	6.80554e-05
+short chain dehydrogenase	1.41887e-05	2.97406e-05
+Putative permease	3.50783e-05	4.478e-06
+UniRef50_D1YZX5	0.00275394	0.000255001
+UniRef50_J0QYX6	0.000388036	0.000544151
+UniRef50_M9REI0	2.37552e-05	0.000393793
+Exported protein	0.00714881	0.000231967
+Cell division ATP binding protein FtsE	0.00129684	0.000273193
+UniRef50_U1YI17	0.000129775	0.000619205
+UniRef50_UPI0003C1261B	8.72842e-06	1.90536e-06
+UniRef50_F9Y3X8	0.000138329	0.000409977
+UniRef50_V1L1Y8	3.25275e-05	6.92109e-06
+Single stranded DNA binding protein	0.00839838	0.000264073
+hypothetical protein	0.000664651	2.87277e-05
+Exodeoxyribonuclease III	3.40567e-05	2.58986e-05
+Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein	0.00647352	0.0032066
+PREDICTED	5.86435e-06	1.85651e-05
+Phosphoglucosamine mutase	3.40966e-06	5.20849e-06
+Probable 2  3 dephosphocoenzyme A synthase	0.00448422	0.000112512
+AraC family transcriptional regulator	1.17011e-05	1.7288e-05
+Inosose dehydratase	0.000343	0.00181775
+Oligopeptide transport system permease protein oppC	0.00101351	0.00275544
+Ferripyochelin binding protein	2.60532e-05	9.6388e-06
+DNA gyrase subunit A	7.57447e-06	6.63396e-06
+Membrane protein	0.00914848	0.000801378
+UniRef50_E8SMB7	1.97252e-05	0.000152823
+NADPH dehydrogenase	0.000253857	0.00373694
+Binding  dependent transport system inner membrane component family protein	0.0122798	0.00339909
+preprotein translocase subunit SecD, partial	1.27953e-05	9.82674e-06
+Amino acid acetyltransferase	0.00048183	0.00240982
+UniRef50_Q9RW26	0.000118922	0.0206067
+hypothetical protein	4.75837e-05	4.04433e-05
+Nicotinate nucleotide diphosphorylase 	0.000149799	0.000984314
+Septum formation initiator	0.00549976	0.00024071
+Ferredoxin  NADP reductase	0.00082781	0.000351989
+heat shock protein 60	2.83339e-06	1.88449e-06
+hypothetical protein	2.44806e-05	2.16169e-06
+Succinyl CoA ligase [ADP forming] subunit beta, mitochondrial	1.59242e-05	7.93479e-06
+Phosphate import ATP binding protein PstB 2	0.00302182	0.00455326
+Two component transcriptional regulator, AraC family	0.000629682	0.000134408
+UniRef50_Q4K8A6	0.000357012	9.06003e-05
+hypothetical protein	6.64375e-05	6.51918e-06
+PREDICTED	1.2242e-05	7.66085e-06
+hypothetical protein	3.26663e-05	7.57828e-06
+hypothetical protein	7.39061e-05	7.12237e-05
+MerR family transcriptional regulator	0.00042318	2.93181e-05
+LysR family transcriptional regulator	9.67094e-05	0.00014297
+Ribonuclease E	0.000105197	3.79014e-06
+Marine sediment metagenome DNA, contig	0.000102704	1.7799e-05
+Probable septum site determining protein MinC	0.000448311	0.00202218
+Pre toxin domain with VENN motif family protein	9.11445e-05	0.000720089
+UniRef50_E0RLL7	0.000168804	0.00048062
+Entericidin B	0.000127826	0.000169741
+Flagellar biosynthetic protein FliQ	0.000392858	0.00128559
+UniRef50_Q1RAX2	0.000133023	0.00107189
+UniRef50_I6SUA4	0.000408763	0.00122993
+Os01g0594900 protein	6.194e-06	1.58539e-05
+UniRef50_K1YIM5	4.13662e-05	1.46343e-05
+UniRef50_A0A037XEA8	0.00019313	2.02236e-05
+Restriction endonuclease	0.000125111	0.00211744
+PREDICTED	2.52575e-05	5.20361e-05
+UniRef50_A3VHI7	1.55842e-05	1.17776e-05
+Histidinol dehydrogenase	0.0032553	0.000170127
+UniRef50_R9SKI2	0.00261482	0.000300824
+Helix turn helix domain containing protein, AraC type	0.000239253	0.000547242
+Serine  tRNA ligase	3.84652e-06	3.32903e-06
+UniRef50_A0A017HRP7	0.0013311	0.00019392
+Orotidine 5 phosphate decarboxylase	7.41089e-06	6.25673e-06
+hypothetical protein	2.02052e-05	4.77481e-05
+UniRef50_V9VQ76	0.000146402	5.18381e-05
+MULTISPECIES	1.92663e-06	0.000120766
+hypothetical protein	9.42529e-05	0.000250548
+Transcriptional regulator	0.000606795	0.000162949
+Molybdopterin binding domain of aldehyde dehydrogenase family protein	0.00111089	0.000634102
+Tfp pilus assembly protein PilN	0.000167276	0.00462445
+Ribonuclease 3	5.79113e-06	4.61541e-06
+ABC transporter, ATP binding protein	0.000239853	0.00149707
+UniRef50_P0ABW6	0.00273915	0.00304374
+Kef type potassium proton antiporter, CPA2 family	0.000321031	0.00330891
+Phage terminase, large subunit	0.00562303	0.0010186
+Outer membrane protein	0.000158999	0.000797909
+anthranilate synthase	5.86329e-06	2.26284e-05
+UniRef50_D8TK47	8.04196e-07	1.73836e-06
+Predicted type II restriction enzyme, methylase subunit	0.00223526	0.000298909
+UniRef50_Q1GRL4	0.00028175	0.000183878
+UniRef50_L1KBI7	0.00299941	0.000945104
+UniRef50_Q5HXV5	6.63332e-05	7.57327e-05
+UniRef50_C5N3V2	0.00337041	0.000260246
+UniRef50_A4WRE5	0.000526634	0.0001009
+putative PucR family transcriptional regulator	0.000131514	0.00018702
+Thymidine kinase	1.48085e-05	1.06689e-05
+UniRef50_I7ZF55	0.000121644	6.23785e-05
+Probable 3 keto L gulonate 6 phosphate decarboxylase	2.94103e-05	5.16526e-05
+HTH type transcriptional regulator NorG	0.0125143	0.000940991
+Carbamoyl phosphate synthase large chain	0.0183986	0.0036488
+Marine sediment metagenome DNA, contig	0.00216359	0.000315481
+GntR family transcriptional regulator, partial	1.55802e-05	2.17389e-05
+hypothetical protein	2.62432e-05	1.62782e-05
+hypothetical protein	3.64296e-06	2.92413e-06
+Glucose 6 phosphate 1 dehydrogenase	3.87202e-06	3.53735e-06
+hypothetical protein	2.8271e-06	2.81586e-06
+hypothetical protein	9.80475e-06	3.03777e-06
+UniRef50_A0A023KTG8	0.000815644	0.00031637
+Bifunctional protein FolD	0.00191005	0.00148918
+MATE efflux family protein	0.000243071	0.000888655
+Multidrug resistance protein NorM	0.0034212	0.000515449
+UniRef50_U7Q105	0.000221279	6.32963e-05
+UniRef50_X6C2W9	0.000276485	5.82636e-05
+Putative nucleoside transporter yegT	0.00152971	0.000222871
+UniRef50_X6GIM5	0.000116002	3.26782e-05
+UniRef50_O88167	0.00197289	0.000280915
+UniRef50_U5MKZ1	0.00020422	0.000176344
+UniRef50_J7RAK2	0.000282814	0.000226158
+Integrase like protein	0.010119	0.00141895
+Fibronectin type III domain protein	7.61383e-07	3.38424e-06
+Cytochrome c oxidase subunit 1	7.9667e-06	7.81638e-06
+SiaD protein	0.000249427	0.00155335
+hypothetical protein	6.64111e-06	4.77665e-05
+membrane protein	3.84269e-05	1.50136e-05
+Putative hydroxylase	0.000243119	5.97293e-05
+UniRef50_Q5HQD3	0.00162846	0.00285542
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	7.8146e-05	0.0016393
+UniRef50_B0VKD0	6.76253e-05	0.00393747
+Pyrimidine nucleoside phosphorylase	0.0108922	0.0029698
+Anaerobic C4 dicarboxylate transporter DcuC	0.00313999	0.000592005
+aldolase	8.70583e-05	6.52364e-06
+hypothetical protein	4.33285e-05	7.26152e-05
+UniRef50_H5TWV5	5.37036e-06	0.000353556
+Tetracycline resistance protein	0.00926851	0.000787068
+Methyl coenzyme M reductase operon protein C	0.00371287	0.000368398
+UniRef50_UPI0003C12BE2	1.15014e-06	1.07976e-05
+Glycogen debranching enzyme GlgX	0.0162664	0.00198711
+Allantoinase	3.085e-05	7.83668e-06
+SN glycerol 3 phosphate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein	2.83385e-05	5.58127e-06
+UniRef50_F2A477	1.99016e-05	6.45833e-06
+Inner membrane protein ybhI	0.00108779	0.000230796
+UniRef50_G0DSV1	0.00061287	0.00230367
+UniRef50_B8EJI8	0.00271874	0.00091901
+Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase	0.00283167	0.000457939
+Cobyrinic acid ac diamide synthase	5.80568e-06	1.50009e-05
+UniRef50_S3AZM5	5.11082e-06	7.26688e-05
+Cysteine synthase	0.000110586	0.000410052
+Marine sediment metagenome DNA, contig	0.000181831	1.47839e-05
+Smf protein	0.00211338	0.000318384
+Glycosyltransferase, GT2 family	0.00277566	0.000199522
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase 2	7.94063e-06	2.0702e-05
+NADH	0.000221414	0.0026215
+Glucosyltransferase 	0.0062651	0.000945956
+NAD NADP transhydrogenase alpha subunit like protein	3.00979e-05	1.39405e-05
+Chaperone protein HtpG	0.00263668	0.0010336
+PREDICTED	5.88152e-06	2.58691e-05
+hypothetical protein	0.000305454	0.000104854
+UniRef50_UPI000273E85C	1.48631e-05	6.72593e-06
+UniRef50_D4HEW0	2.01862e-05	3.84985e-05
+D12 class N6 adenine specific DNA methyltransferase	0.0263569	0.0041506
+Chaperonin 60 subunit beta 4, chloroplastic	0.000583463	0.000122723
+Response regulator receiver protein	0.00937569	0.000268014
+RNA splicing ligase RtcB	7.31098e-05	0.00758801
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	6.23179e-06	1.86302e-06
+hypothetical protein	9.71646e-05	2.95303e-05
+UniRef50_D6SIH2	0.00689267	0.000218455
+UniRef50_F2ILR6	3.27751e-05	9.18852e-05
+Glutamyl tRNA amidotransferase subunit A	0.00021143	0.00162995
+nitrogen regulatory protein PII like protein	2.58885e-05	0.000160405
+UniRef50_U7GB94	0.000186424	4.04121e-05
+UniRef50_Q9RZM6	0.000299017	0.0156132
+UniRef50_Q9RZM4	2.61617e-05	0.00922848
+Primosome assembly protein 	4.78759e-05	9.73505e-05
+Stage IV sporulation protein B	0.000211827	7.94556e-05
+Cell wall hydrolase autolysin	0.000142605	0.000732695
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	5.64363e-05	2.61216e-06
+Diaminopimelate epimerase, chloroplastic	3.43484e-06	2.69653e-05
+hypothetical protein	4.50079e-06	2.94509e-06
+Acetolactate synthase small subunit	0.00832422	0.00301614
+ParB family protein	0.000116274	1.3511e-05
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.0204503	0.000939568
+UniRef50_Q58210	0.00296988	0.000503882
+UniRef50_Q57240	0.00254933	0.000357472
+hypothetical protein	0.000597987	3.38192e-05
+H+ gluconate symporter family protein	0.00093787	0.000508535
+UniRef50_A0A011PNK5	0.000306834	2.02537e-05
+FAD linked oxidase like protein	0.000135154	0.000587111
+UniRef50_W7W9I9	9.99256e-05	1.66088e-05
+UniRef50_K2EIE6	0.00010341	8.6916e-06
+hypothetical protein, partial	3.43257e-05	4.37738e-05
+Argininosuccinate lyase	8.16369e-06	0.000486562
+hypothetical protein	1.99777e-05	1.5437e-05
+Ribosomal RNA small subunit methyltransferase G	3.32957e-05	1.90185e-05
+Transposase orfA IS5 family element	0.00011746	1.7983e-05
+ROK family protein	0.000352288	0.000638641
+MerR family transcriptional regulator	9.11049e-06	1.57265e-05
+Homoserine O acetyltransferase	0.0196835	0.00287767
+Glutamate  tRNA ligase	8.10499e-06	2.73238e-06
+Peptidase C26	0.00335252	0.000112372
+FemAB family protein	9.29692e-05	0.00266022
+acetoin dehydrogenase	5.27098e-06	3.37123e-06
+Iron chelate uptake ABC transporter, FeCT family, permease protein	0.000288931	0.00254085
+hypothetical protein, partial	0.000671126	1.57397e-05
+UniRef50_R9ZKB9	0.000564155	8.00222e-05
+hypothetical protein	0.000101837	9.49943e-06
+lipoprotein 	0.000199732	0.000151009
+UniRef50_O28869	0.00308193	0.000136867
+Glucose 6 phosphate isomerase	0.0175165	0.00218799
+Predicted exonuclease, sbcD related	0.000164571	0.00102639
+Cyanophycin synthetase	0.000341652	0.000757811
+glycosyl transferase family 2	2.09139e-06	7.37506e-06
+UniRef50_B9EA45	0.0198813	0.00303137
+hypothetical protein	1.19976e-05	2.28775e-05
+UniRef50_A6QFG9	0.00107688	3.95604e-05
+hypothetical protein	8.59767e-06	4.22193e-05
+UniRef50_F0P7Q5	0.0143191	0.00249259
+PREDICTED	5.64609e-05	6.64484e-06
+UniRef50_A0A008L098	0.0019869	4.93151e-05
+Recombinase RecJ	0.000381843	0.00378478
+hypothetical protein	1.54034e-05	8.19102e-06
+Adenylate cyclase ExoY	0.000123563	9.99072e-05
+UniRef50_D4C552	0.0001699	1.98974e-05
+hypothetical protein	1.61726e-05	9.96152e-05
+Xanthine dehydrogenase, molybdopterin binding subunit	9.35331e-05	0.00236781
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.30109e-05	2.63785e-05
+ABC transporter	3.46626e-05	4.69803e-06
+hypothetical protein	3.78454e-05	3.558e-05
+chorismate synthase	2.99591e-05	0.000120034
+UniRef50_A8ZRA0	4.74253e-05	0.000220873
+hypothetical protein	7.19627e-06	8.24447e-06
+Peptidase family protein	0.0059488	0.000201526
+Replication initiator protein A	9.49614e-06	1.99318e-06
+hypothetical protein	6.5299e-06	4.46923e-06
+UniRef50_I0JNK1	1.45522e-05	0.000170857
+Membrane protein 	2.06028e-05	9.04442e-05
+UniRef50_I8T5U4	6.13484e-06	4.77041e-06
+Glucose dehydrogenase, PQQ dependent	9.62845e-05	8.89797e-05
+UniRef50_Q4EGL3	0.000734477	0.000338565
+Transposase	3.90442e-05	2.36408e-05
+UniRef50_E7C3H5	2.82134e-05	3.95678e-05
+Amidophosphoribosyltransferase	0.0045054	0.000234333
+Glucosamine 6 phosphate deaminase	0.000131123	0.00469935
+Glr2150 protein	9.12096e-05	1.21827e-05
+UniRef50_W1WKJ1	0.000354812	0.000109875
+Cell envelope biogenesis protein AsmA	2.67056e-06	1.8534e-06
+Sigma 54 factor, interaction domain containing protein	0.000624381	0.000192321
+UniRef50_Q3J0T0	0.000576832	7.24071e-05
+Methyl accepting chemotaxis sensory transducer	0.000326292	0.000712679
+UniRef50_A4X0R7	0.00574447	0.000811666
+Vanillate O demethylase oxidoreductase	0.000280732	0.00267299
+hypothetical protein	6.37116e-05	1.46304e-05
+UniRef50_B0VB22	8.81017e-05	0.00209516
+UniRef50_B0VB20	0.000283994	0.00317251
+Short chain dehydrogenase reductase SDR	0.000629258	0.000863155
+Protein YrdA	0.00584411	0.000362036
+Secretion protein HlyD family protein	0.000250583	0.00035
+NADH Ubiquinone plastoquinone , various chains family protein	3.67679e-05	0.00416489
+hypothetical protein	9.00876e-05	3.80954e-05
+DNA polymerase I	0.000921921	0.000219157
+UniRef50_T1Y610	0.000130653	0.00310693
+UniRef50_C5N439	0.000209775	8.69763e-05
+UniRef50_Q5HL38	0.00985049	0.00217232
+UniRef50_A8A3U8	0.000641647	4.36113e-05
+hypothetical protein	5.74068e-06	4.36911e-06
+Multidrug resistance protein B	5.39479e-05	3.12017e-05
+UniRef50_A1ITE9	0.000112621	0.00139849
+UniRef50_D3QEC0	0.0146127	0.00486449
+Anaerobic ribonucleoside triphosphate reductase 	6.77128e-06	2.33105e-05
+Elongation factor P	1.39054e-05	0.0216312
+2 oxoglutarate dehydrogenase	6.92576e-06	9.39035e-06
+DNA invertase	2.26679e-05	1.81136e-05
+UniRef50_A0JUR7	0.00115469	7.03643e-05
+1 deoxy D xylulose 5 phosphate reductoisomerase	0.00330799	0.000172849
+Adhesin like protein	0.00266175	0.000311418
+Transcriptional regulator, GntR family	0.000328341	0.00246857
+Histidine  tRNA ligase	0.000258581	0.00121459
+PREDICTED	0.000174562	1.91131e-05
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.16947e-05	5.32765e-06
+UniRef50_P75683	0.00417723	0.000160662
+Putative membrane protein	3.6416e-06	2.02796e-05
+Methionyl tRNA formyltransferase	6.30588e-05	0.00147341
+hypothetical protein	1.33679e-05	0.000227612
+3 dehydroquinate dehydratase	8.09138e-06	0.000132654
+Plasma membrane H+ transporting two sector ATPase, C subunit	0.00010184	3.62041e-06
+Drug transport protein, putative	0.000149758	0.0234627
+NADPH dependent 7 cyano 7 deazaguanine reductase	0.00691329	0.00196225
+hypothetical protein	0.000156408	1.50035e-05
+ribonucleotide reductase	0.000129142	2.19549e-05
+Peptidyl prolyl cis trans isomerase	0.000344589	0.000584736
+Probable TonB dependent receptor YncD	0.00263136	0.000256178
+UniRef50_S7SQK8	6.6865e-05	0.000206761
+50S ribosomal protein L18	0.000260199	0.000189974
+Phage head tail adaptor, putative	0.000131499	1.84375e-05
+Putative homocitrate synthase	5.02541e-06	3.16036e-06
+Basic proline rich protein	0.000365387	0.000613575
+Transcriptional regulator	0.00196583	0.00120369
+Chaperone protein ClpB	0.0220789	0.00482833
+UniRef50_W8YJN0	1.23049e-05	1.96868e-06
+DNA directed RNA polymerase subunit beta	9.99265e-07	1.103e-06
+UniRef50_Q2SLW2	0.0114763	0.00176621
+UniRef50_N6V4C3	1.41738e-05	1.59277e-05
+General stress protein 18	0.00136572	0.0010789
+Putative transposase	0.000126364	1.29829e-05
+2 isopropylmalate synthase	7.51134e-06	3.62265e-06
+UniRef50_W8ELK9	0.000253044	0.0166038
+Phosphoenolpyruvate carboxykinase [ATP]	6.01968e-05	0.000117848
+Transcriptional regulatory protein QseB	0.0048127	0.000506942
+Peptidase M10, serralysin like protein	0.00464669	0.000503488
+4 aminobutyrate aminotransferase	1.61759e-05	2.10082e-05
+Transposase	7.1917e-05	4.0939e-05
+competence protein	1.48954e-05	2.61761e-05
+DNA methyltransferase	0.000232489	1.85945e-05
+UniRef50_B9TL13	0.000234916	1.05184e-05
+L ribulose 5 phosphate 3 epimerase UlaE	0.00638767	0.000966249
+UniRef50_G6WW76	5.74582e-06	1.24481e-05
+gamma aminobutyrate transporter	3.83894e-05	1.8361e-05
+Mll7872 protein	0.004503	0.00148968
+hypothetical protein	7.34888e-05	7.21911e-06
+ThiS family protein	0.000656161	0.000319032
+Mannitol 1 phosphate 5 dehydrogenase	0.000265932	0.000837629
+DNA replication and repair protein RecF	0.000224952	0.000109494
+UPF0061 protein ABC1129	0.00145058	0.000129354
+2Fe 2S iron sulfur cluster binding domain protein	4.02731e-05	0.00247538
+UPF0759 protein YecE	0.00412386	7.23488e-05
+UniRef50_A6LQ22	0.000101808	0.000300816
+Plasmid pRiA4b ORF 3 like protein	0.000657505	9.19262e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.68046e-05	2.22234e-05
+multifunctional thiamine phosphate pyrophosphorylase synthase phosphomethylpyrimidine kinase	1.58388e-06	2.7394e-06
+Permease	0.00030766	0.000128049
+UniRef50_K7E1C1	3.66637e-05	6.6628e-05
+hypothetical protein	0.000889278	9.42878e-05
+multidrug ABC transporter	5.81498e-06	4.98416e-06
+hypothetical protein	1.53445e-05	1.2285e-05
+hypothetical protein, partial	9.18709e-06	2.74552e-06
+UniRef50_N0C7C0	9.22895e-05	9.3554e-06
+Serine type site specific recombinase	4.16276e-06	3.22964e-05
+Integral membrane sensor signal transduction histidine kinase	0.000443579	0.000855283
+Monosaccharide ABC transporter membrane protein, CUT2 family	0.000428663	0.000272158
+Peptide chain release factor 2	0.000289346	0.00362775
+hypothetical protein	2.16357e-05	0.00033946
+Acyl CoA reductase	0.000640985	0.000140685
+Surface presentation of antigens  protein	0.000658509	0.000129932
+UniRef50_O34524	0.000550213	0.00504725
+UniRef50_O34528	0.0199363	0.00649417
+UniRef50_A3K289	0.000226428	0.000101099
+Tfp pilus assembly protein FimV like protein	0.000327376	0.000175893
+Glutamate synthase [NADPH] small chain	0.000234367	9.5541e-05
+MerR family transcriptional regulator, partial	0.000132594	2.85827e-05
+Membrane protein	7.91111e-05	2.02811e-05
+Oligopeptide transport system permease protein	0.0186098	0.00404909
+hypothetical protein	0.00010412	0.000508105
+UniRef50_K4RMU3	0.000133369	0.0008985
+deoxyguanosinetriphosphate triphosphohydrolase	7.96451e-05	2.4707e-06
+Transcription factor E	0.00176657	0.00122421
+Carbamoyl phosphate synthase large chain, C terminal section	3.29539e-06	2.33975e-06
+Maltose 6 phosphate glucosidase	0.0003195	0.000491181
+UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00214048	0.00220459
+phosphoadenosine phosphosulfate reductase	1.1039e-05	7.52762e-06
+Cellulose synthase operon protein C	0.00115364	0.000485324
+UniRef50_A3VEJ1	0.0003962	4.57767e-05
+Glycosyltransferase	9.19532e-05	0.00274482
+Diguanylate cyclase	9.74251e-06	1.35523e-05
+UniRef50_U6LUD4	7.95494e-05	1.45009e-06
+ABC transporter ATP binding protein	4.09719e-05	1.89423e-05
+molecular chaperone DnaJ	5.3084e-06	6.42964e-06
+UniRef50_F0YA66	7.87668e-05	8.63043e-05
+UniRef50_UPI000334479B	0.000123932	9.56014e-06
+Aminotransferase ybdL	0.00164518	0.00145235
+UniRef50_K1UU32	2.22943e-05	0.000148698
+hypothetical protein	3.64177e-05	0.000298844
+hypothetical protein	0.000196572	6.33689e-05
+UniRef50_N2SSM7	0.00171898	0.000416744
+Transcriptional regulator, crp family	0.00932437	0.000659965
+PT4 plasmid pSEN complete sequence	0.000123335	1.56974e-05
+hypothetical protein	2.04838e-05	3.5614e-05
+hypothetical protein	1.31003e-05	3.57358e-06
+osmotically inducible protein C	2.397e-05	0.000212327
+4 hydroxy tetrahydrodipicolinate synthase	1.72396e-06	0.00168686
+Enolase	5.99708e-06	4.24133e-05
+glutathione ABC transporter ATP binding protein	3.0579e-05	4.43316e-06
+Aminoacyl histidine dipeptidase	0.000393792	0.000749007
+FeS assembly SUF system protein SufT	3.0978e-05	9.25538e-06
+Leucyl phenylalanyl tRNA  protein transferase	1.39417e-05	4.41135e-05
+FemAB family protein	0.00158352	0.000414936
+Channel protein, hemolysin III family	0.000926456	0.00233121
+N acetyl gamma glutamyl phosphate reductase	4.37519e-06	2.11788e-05
+Macrolide export ATP binding permease protein MacB	0.00219248	0.00380959
+Lipoprotein signal peptidase	8.96319e-06	7.17552e-06
+hypothetical protein	2.3454e-05	0.000227034
+hypothetical protein, partial	2.92299e-05	6.16765e-05
+UniRef50_M4R6E9	0.000107067	0.00449548
+UniRef50_Q4FLF9	0.000139654	5.67862e-05
+2 dehydro 3 deoxyglucarate aldolase	4.82046e-05	0.000135152
+acetyl coenzyme A carboxylase carboxyl transferase subunit alpha, partial	4.35783e-05	3.54174e-05
+hypothetical protein	5.01901e-05	1.67443e-05
+NADH quinone oxidoreductase subunit C	2.45758e-05	4.18664e-05
+hypothetical protein	7.04742e-05	3.11382e-06
+enterobactin synthase subunit E	8.1422e-06	4.59328e-06
+Cytochrome c oxidase subunit 1 homolog	0.0142642	0.00206457
+UniRef50_C4J5K8	6.54083e-05	5.57859e-05
+UniRef50_A0A038FVW1	0.00173298	0.000440366
+Ribosomal RNA small subunit methyltransferase A	2.29736e-05	2.00267e-05
+UniRef50_R0VZS5	0.000243288	0.000426055
+tRNA  hydroxylase	1.55401e-05	1.154e-05
+Phosphopentomutase	8.30198e-06	0.00087336
+UniRef50_P46142	0.00291384	0.00165512
+UniRef50_L2FJJ5	0.000197738	0.000175843
+HNH endonuclease	5.57739e-05	0.000147489
+Glyoxalase family protein	2.4603e-05	3.31296e-05
+DNA replication and repair protein RecF	0.000969626	8.55094e-05
+Coenzyme A biosynthesis bifunctional protein CoaBC	4.37125e-06	0.00498341
+Expressed protein 	0.000286928	4.12711e-05
+esterase	2.0646e-05	1.26724e-05
+Histone acetyltransferase	0.000435647	0.000291145
+hypothetical protein, partial	0.000168816	0.000614918
+Probable sulfate thiosulfate import ATP binding protein CysA	0.000290659	0.000319329
+UniRef50_U2YS21	7.39152e-05	1.36418e-05
+phosphoserine phosphatase	6.48586e-06	3.15057e-05
+Predicted FMN binding protein	0.00297216	0.00160111
+UniRef50_X7YJ52	9.11814e-05	0.000135904
+Histidine kinase	0.000324126	0.00053844
+ABC transporter ATP binding protein	4.66969e-06	5.28543e-06
+glycerophosphoryl diester phosphodiesterase	1.59311e-05	1.87228e-05
+Potassium transporting ATPase A chain	1.48013e-05	0.000322381
+UniRef50_R1ECI7	9.3766e-05	1.58199e-05
+Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein	0.00421137	0.000187425
+Potassium transporting ATPase B chain	1.45726e-05	0.00122781
+UniRef50_C5AFT1	2.85005e-06	2.49945e-06
+UniRef50_I6SKB7	7.61997e-05	0.00013174
+heme ABC transporter ATP binding protein, partial	1.98272e-05	2.98902e-05
+UniRef50_Q02D08	1.00484e-06	2.05155e-06
+UniRef50_T4AYR7	9.98602e-06	0.000296187
+Gamma glutamylputrescine synthetase PuuA	0.00247635	0.000548911
+2 oxoglutarate dehydrogenase E1 component, partial	0.000935408	0.000127143
+Transcriptional regulator, IclR family	0.000126522	0.000113508
+cobyrinic acid ac diamide synthase	9.27058e-06	0.000178252
+hypothetical protein	2.1629e-06	9.21608e-06
+Succinylglutamate desuccinylase aspartoacylase family protein	0.000635708	0.000606444
+Ribose phosphate diphosphokinase	0.000108564	0.00256559
+Sugar isomerase 	0.00010441	0.000429537
+UniRef50_F8I099	0.000545283	0.000259494
+UniRef50_G8VD13	0.00021105	0.00317278
+hypothetical protein	0.000339128	0.00015245
+UniRef50_U7XP25	0.000240197	4.46955e-05
+orotidine 5 phosphate decarboxylase	2.12104e-05	9.48012e-06
+Integral membrane protein, TerC family	0.000379012	0.00168208
+UniRef50_A0A011MY44	0.000374284	0.000108118
+MULTISPECIES	4.06765e-05	9.06237e-05
+Superoxide dismutase [Fe]	0.000186497	0.00501465
+UniRef50_H1XFI5	7.21885e-05	7.52585e-05
+Piso0_003726 protein	6.75809e-05	3.17644e-05
+UniRef50_N1PMQ8	0.000273173	2.06347e-05
+dihydroxyacetone kinase	1.95378e-05	0.00071008
+ATPase	0.000578735	0.000116755
+Alpha glucosidase	5.46345e-05	0.00264243
+UniRef50_Q8VKN7	5.61384e-06	5.42582e-06
+Superoxide dismutase [Mn Fe]	0.0127194	0.00104592
+UniRef50_F7XC58	8.61657e-05	7.80212e-05
+Putative  citramalate synthase CimA	8.78703e-06	4.27258e-06
+UniRef50_A0A021VTG9	0.000466149	2.97949e-05
+hypothetical protein	9.81402e-06	1.81986e-05
+ParBc, ParB like nuclease domain	5.46799e-05	7.45178e-05
+Amino acid amide ABC transporter membrane protein 1, HAAT family	0.00198578	0.000100522
+GroEL	5.82428e-05	4.74062e-05
+Phosphate transport system regulatory protein PhoU	7.42408e-05	4.21528e-05
+Ribosomal RNA small subunit methyltransferase B	0.00107403	0.000540486
+peptide ABC transporter permease	2.88166e-05	2.43548e-05
+DNA binding protein	6.63612e-05	2.65103e-05
+UniRef50_A5UJQ1	0.000944041	0.00264073
+Ribosomal RNA large subunit methyltransferase E	1.97774e-05	9.43895e-06
+lipase precursor	3.16824e-05	3.68832e-05
+UniRef50_K7RQY3	0.000133978	0.00260954
+Sugar phosphotransferase system , fructose specific family, IIA component	0.0135319	0.000478754
+UniRef50_Q6F6T5	0.000447014	0.00440005
+Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000112459	0.000330205
+UniRef50_W0YNW4	6.25524e-06	1.49599e-05
+Transposase	0.000155143	1.73269e-05
+ 3 hydroxydecanoyl ACP	0.00125413	0.000381233
+UniRef50_A0A011ADX1	6.23591e-05	0.00010751
+hypothetical protein, partial	5.05173e-05	1.2633e-05
+Lysine specific permease	0.00222485	0.00247695
+Acyl carrier protein	0.000301347	9.68258e-05
+Protoheme IX farnesyltransferase	0.000355061	0.000225783
+Histidine ammonia lyase	3.60777e-06	6.79163e-05
+UniRef50_D3QF58	0.0181393	0.00326206
+Hydroxylamine reductase	0.00141339	0.00301304
+UniRef50_V4LC05	0.00071156	0.0036026
+UniRef50_I1ETG1	3.14499e-05	8.58673e-05
+UniRef50_Q8DT71	0.00482626	0.000988509
+Ribonucleoside diphosphate reductase	0.000426098	0.00252576
+YhgE Pip domain containing protein	1.7279e-06	1.35248e-06
+Oxidoreductase FAD NAD binding protein	0.000177755	0.00223184
+UniRef50_M1N4C4	0.000408563	0.000512725
+Lytic murein transglycosylase A	0.000181834	5.34007e-05
+hypothetical protein	2.88194e-05	7.88279e-06
+UniRef50_N1TQ93	0.00109105	3.48318e-05
+Dihydropteroate synthase	1.2236e-05	1.94105e-05
+Penicillin binding protein 2	0.000297695	0.000439537
+UniRef50_A3JXA6	6.70349e-06	3.12253e-06
+ATP dependent RNA helicase	0.00629553	0.00110408
+WGR domain protein	3.59283e-05	1.43412e-05
+hypothetical protein	9.26108e-06	6.20121e-06
+UniRef50_F5Y7Q0	0.00041555	0.000139928
+Cation efflux system protein CusB	0.00125168	0.000638207
+osmolarity response regulator	5.54773e-05	6.84394e-06
+UniRef50_UPI0004423ADB	8.08033e-05	3.71248e-05
+hypothetical protein	4.99526e-05	5.03094e-05
+Protein translocase subunit SecF	0.0027278	0.000588802
+UniRef50_A5I292	0.000493354	0.000338077
+Ornithine carbamoyltransferase	0.00679358	0.0012344
+DNA methyltransferase, partial	0.0032947	0.000592234
+UniRef50_Q8CU98	0.00810516	0.00106352
+UniRef50_Q8CU99	0.173071	0.0296448
+stomatin 2	3.5194e-05	5.09495e-06
+Phosphopantetheine adenylyltransferase	2.48311e-05	9.01353e-06
+UniRef50_Q8CU97	0.00636392	0.00164869
+2 oxoisovalerate dehydrogenase E1 component alpha subunit	0.00963254	0.00205936
+V5 Tpx 1 related allergen	0.00549595	0.00089537
+UniRef50_I7A5B6	0.000290128	0.000252205
+ISNme1 transposase 	0.000170837	0.0119085
+Histidine biosynthesis bifunctional protein HisB	4.7798e-05	4.67014e-06
+TDP GLUCOSE PYROPHOSPHORYLASE, partial	0.000483887	3.11132e-05
+UniRef50_R1FAR2	2.3667e-05	1.02836e-05
+ABC transporter related protein	0.000203912	0.000552902
+General stress protein 20U	0.0219232	0.00275391
+sulfite oxidase	1.24825e-05	5.10666e-05
+Short chain dehydrogenase family protein	0.00961893	0.00230633
+COG0488	4.53688e-05	2.11069e-05
+Alginate biosynthesis protein Alg44	0.000137742	0.000114814
+Sugar transport protein	0.000209036	0.000826151
+DEAD box ATP dependent RNA helicase CshA	0.00463476	0.0039305
+ATP dependent DNA helicase	2.0377e-05	3.61197e-06
+Amidohydrolase	0.000272043	0.0009614
+Inosine 5 monophosphate dehydrogenase	0.000116078	3.15486e-05
+hypothetical protein	4.80834e-06	3.87605e-05
+UniRef50_R5X6Z2	0.000187318	0.000441341
+Acetylxylan esterase, putative	0.000434358	0.00213699
+Vitamin B12 ABC transporter	1.72835e-05	6.48216e-05
+UniRef50_C1KYK6	1.34369e-05	0.0010954
+Putative transport protein KPN78578_40470	0.00273008	0.000617078
+NADH quinone oxidoreductase chain 2	0.00101063	0.00035415
+UniRef50_D6T008	1.2649e-05	1.67282e-05
+hypothetical protein	3.22807e-06	2.62779e-06
+Glycine betaine transporter	0.0145349	0.00222641
+ABC transporter, substrate binding protein, PQQ dependent alcohol dehydrogenase system	8.33797e-07	3.34275e-06
+hypothetical protein	1.21479e-05	6.38518e-06
+Ribonuclease PH	4.71049e-05	0.00169538
+Uronate dehydrogenase	9.2234e-06	1.47694e-05
+UniRef50_Q5DQH5	0.000266574	8.57136e-05
+UniRef50_K0S2B3	1.1081e-05	4.04307e-05
+Urease	2.2831e-06	1.56721e-05
+hypothetical protein, partial	1.10254e-05	1.1105e-05
+S adenosylmethionine synthetase	3.32793e-06	3.64329e-06
+UniRef50_W9DWH3	2.64981e-05	9.42032e-06
+Putative lipoprotein	3.93754e-06	1.92269e-06
+Xylose isomerase domain protein TIM barrel	0.00612132	0.00103377
+Protein translocase subunit SecF	0.00107512	0.000329931
+Carbohydrate binding family V XII	0.000232066	0.000575226
+MULTISPECIES	5.78634e-06	0.00032694
+UniRef50_C6SPQ0	0.00366243	0.00101632
+Citrate synthase	3.90175e-05	3.83978e-05
+Tetratricopeptide TPR_2 	1.58726e-06	2.65028e-06
+Chromosome segregation ATPase	5.7306e-06	1.0567e-05
+Malto oligosyltrehalose trehalohydrolase	6.57321e-05	0.0104709
+ThiJ pfpI family protein	1.78402e-05	3.15073e-05
+hypothetical protein	6.08273e-06	3.03317e-05
+hypothetical protein	1.36724e-05	3.04233e-06
+TRAP type mannitol chloroaromatic compound transport system, large permease component	4.0892e-06	5.18728e-06
+Transcriptional regulator	0.00609708	0.000451522
+PREDICTED	4.8582e-06	4.32677e-06
+hypothetical protein	1.59872e-06	8.9085e-06
+Bacterial regulatory s, gntR family protein	0.000713346	0.000125223
+Initiation control protein YabA	0.00407384	0.000272075
+Monooxygenase, luciferase family	0.00140187	0.00307742
+Binding protein dependent transport systems inner membrane component	0.00276408	0.000575737
+NLI interacting factor like phosphatase domain containing protein	1.77647e-06	1.36721e-05
+UniRef50_Q5XDZ5	0.00315342	0.00135381
+hypothetical protein	0.00114223	0.00103625
+hypothetical protein	8.54661e-05	0.000109981
+3 oxoacyl [acyl carrier protein] synthase 3	0.00499631	0.00156231
+hypothetical protein	1.37674e-05	1.91289e-05
+UniRef50_R6HUH5	8.16288e-06	8.51246e-06
+Lipopolysaccharide export system ATP binding protein LptB 	3.05118e-05	4.64346e-05
+Phosphomethylpyrimidine kinase	0.000492395	0.00083525
+Putative ABC transport system, membrane domain protein	9.00203e-05	2.15216e-05
+group 1 glycosyl transferase	2.70429e-06	3.75114e-06
+TRAP T family transporter periplasmic binding protein	0.0146138	0.00143955
+UvrABC system protein C	0.000827914	0.00038159
+glycolate oxidase iron sulfur subunit	1.19253e-05	2.79805e-05
+50S ribosomal protein L6	0.000844012	0.000174679
+Butyrate kinase	0.000477382	0.00209218
+PTS system maltose and glucose specific EIICB component	0.000441016	0.000316998
+Formate dehydrogenase, cytochrome b556 subunit	0.000905391	0.00139291
+Flagellar motor switch protein FliM	0.00237536	0.000513252
+Transketolase domain containing protein	1.02804e-05	0.00155289
+hypothetical protein, partial	0.000209664	0.000322494
+Cytotoxicity associated immunodominant antigen	0.000153527	0.00190967
+Acyl coenzyme A synthetases AMP  acid ligase	0.000156391	0.00226795
+50S ribosomal protein L19	0.000554366	0.0111414
+GA module	0.00131824	0.000101281
+ABC type sugar transport system, periplasmic component	0.000556705	0.000788932
+membrane protein	8.1942e-05	2.07965e-05
+UniRef50_P11864	0.000608671	0.000681472
+UniRef50_P11865	0.00077183	0.000504262
+hypothetical protein	1.2782e-05	1.38714e-05
+Plasmid stablization protein ParB	0.00012171	1.18806e-05
+hypothetical protein	3.97868e-06	0.000131811
+UniRef50_E4D4Y2	0.000234257	0.00042668
+UniRef50_Q3JNS9	0.000119365	5.66731e-05
+RNA methyltransferase, TrmH family, group 3	0.00460892	0.00228384
+hypothetical protein	2.30937e-05	7.69878e-06
+UniRef50_F3BU02	0.000103684	8.94451e-05
+hypothetical protein	5.86213e-06	7.91364e-05
+Immunoreactive protein Se23.5	0.00430973	0.000456262
+hypothetical protein	3.07002e-05	0.00013205
+Spore photoproduct lyase	5.32809e-05	0.000710009
+hypothetical protein P148_SR1C00001G0193	8.15196e-05	1.77281e-05
+UniRef50_D6SE37	0.0114062	0.00106277
+Molybdopterin guanine dinucleotide biosynthesis protein	4.79816e-06	1.10221e-05
+ribonuclease E	4.77462e-06	2.92001e-06
+Hypoxanthine guanine phosphoribosyltransferase	0.00658996	0.00140376
+Carbohydrate kinase	0.00407763	0.000279097
+hypothetical protein	3.6737e-06	4.05659e-06
+Type III pantothenate kinase	0.00533528	0.00198674
+Ornithine decarboxylase	0.00123746	0.000322942
+hypothetical protein	0.000136138	7.25394e-05
+glutamyl Q tRNA ligase	4.53443e-06	3.11206e-06
+MULTISPECIES	1.50886e-05	1.31838e-05
+Acyl carrier protein	3.029e-05	0.000290408
+Molybdopterin synthase catalytic subunit	0.000775132	0.000209289
+hypothetical protein	2.53408e-05	2.24087e-05
+Arabinose 5 phosphate isomerase KdsD	0.000613188	0.00538552
+UniRef50_W7VXE4	7.7262e-05	1.12138e-05
+Sulfate permease	0.00016636	2.18694e-05
+UniRef50_R7GVB9	3.72408e-05	0.000900014
+Extracellular solute binding protein, family 1	0.0010197	0.000753965
+hypothetical protein	3.39053e-05	7.27458e-06
+PREDICTED	0.00140039	0.00032998
+hypothetical protein	7.40809e-06	1.5484e-05
+UniRef50_A0A023DK19	7.31428e-06	2.02519e-05
+UniRef50_A4VYZ8	0.000628086	0.00055767
+hypothetical protein	1.1929e-05	9.4146e-06
+UniRef50_Q9RZ78	0.000260218	0.0165107
+Carbohydrate kinase PfkB family	0.00240123	0.000784197
+UniRef50_J0J1A9	0.000251842	1.86001e-05
+FAD dependent oxidoreductase	0.000942119	0.000334327
+hypothetical protein	4.23113e-05	1.308e-05
+Signal peptidase I	0.0279686	0.00407562
+hypothetical protein	1.4887e-05	6.52841e-06
+Endonuclease MutS2	0.0174803	0.00291814
+hypothetical protein	8.67633e-06	8.90596e-06
+UniRef50_B9K203	0.000119768	0.00397786
+ATPase AAA, partial	7.48874e-06	2.5997e-05
+hypothetical protein	4.67826e-06	4.29943e-06
+Succinate dehydrogenase flavoprotein subunit	0.0189433	0.00333601
+C4 dicarboxylate ABC transporter permease	3.80207e-05	8.40374e-06
+hypothetical protein	7.57368e-06	4.08957e-05
+UDP glucose 6 dehydrogenase	0.000765215	0.000138941
+Polysaccharide biosynthesis protein	0.000508751	0.000577196
+hypothetical protein	3.03793e-06	2.09076e-06
+UniRef50_D7G171	2.09362e-05	3.30699e-05
+hypothetical protein	1.9505e-06	1.18148e-06
+acetyltransferase	2.68698e-05	3.39883e-05
+Transcriptional regulator MraZ	0.000481763	0.000272902
+Intracellular exo alpha  L arabinofuranosidase	7.05553e-05	0.000374901
+Type III pantothenate kinase	8.57226e-05	2.3344e-05
+antibiotic ABC transporter ATP binding protein	2.57343e-06	4.43793e-06
+30S ribosomal protein S12	0.0037523	0.00266751
+Glycine betaine transport system permease protein glycine betaine binding protein	0.00421855	0.00222307
+Cell division protein ZapC	0.00239161	0.000824135
+Tn554 related transposase A	0.00729889	0.00100366
+C4 dicarboxylate ABC transporter substrate binding protein	2.75242e-05	3.40974e-06
+MATE efflux family protein	0.000224012	0.000517782
+UTP  glucose 1 phosphate uridylyltransferase	0.000278326	0.000127909
+Diguanylate cyclase	1.26151e-05	1.77322e-05
+Glutathione synthetase	0.00164132	0.00346116
+UniRef50_A7ZVR4	0.000971714	0.000138571
+Peptide chain release factor 2	0.00562634	0.0012417
+SsDNA binding protein	0.00392847	0.000404669
+hypothetical protein	7.50613e-05	5.05943e-05
+Peptide ABC transporter, permease protein 	9.55925e-05	3.46992e-05
+hypothetical protein	2.28668e-06	5.32442e-06
+Glutamate synthase [NADPH] large chain	1.04635e-06	8.53719e-07
+S methylmethionine permease	7.64304e-05	0.000223872
+2,5 diketo D gluconic acid reductase	4.60974e-06	4.18036e-06
+hypothetical protein, partial	3.83721e-05	1.18818e-05
+Marine sediment metagenome DNA, contig	9.74724e-06	0.000235156
+UniRef50_P45861	0.00460527	0.00210266
+GCN5 related N acetyltransferase	7.82166e-06	9.96141e-05
+hypothetical protein, partial	1.79922e-05	2.41681e-05
+UniRef50_I7DFR8	0.00166149	0.000186276
+Peptide deformylase	1.29221e-05	1.20733e-05
+D galactose binding periplasmic protein	0.000594484	0.0018978
+Recombination factor protein RarA	0.00629848	0.000325897
+Xanthine dehydrogenase, molybdopterin binding subunit	0.000435607	0.00012357
+Chloramphenicol sensitive protein RarD	0.000378667	0.000162067
+PPE family protein	1.2678e-05	4.96803e-05
+Phosphate ABC transporter substrate binding protein, PhoT family	0.0048334	0.000701464
+Tripartite ATP independent periplasmic transporter, DctQ component	0.00267997	0.000857795
+30S ribosomal protein S17	1.68129e-05	0.000123432
+Lon protease	1.33062e-06	2.99342e-06
+Guanylate kinase	0.00142116	7.36025e-06
+UniRef50_D3HPI8	7.83371e-05	2.00993e-05
+Predicted transcriptional regulator	0.00564447	0.000218987
+Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.000237935	0.00346276
+Metallo beta lactamase superfamily protein	0.00264272	0.000106887
+NADH quinone oxidoreductase subunit M	0.00331523	0.000825452
+hypothetical protein	4.70519e-05	1.55003e-05
+UniRef50_Q8CYM9	1.31063e-05	0.00144609
+UniRef50_L1J8E6	3.83618e-06	3.58993e-06
+hypothetical protein	4.1348e-06	1.71461e-05
+UniRef50_E6QIH1	0.000122951	0.00139867
+hypothetical protein	7.17886e-06	6.41346e-06
+Cytosol aminopeptidase	7.9877e-05	0.00121013
+hypothetical protein	8.80625e-05	9.40904e-06
+UniRef50_D6ZZR1	0.00100626	0.000694016
+Aspartate 1 decarboxylase	0.0247157	0.000570143
+UniRef50_A3PGF4	0.00388907	0.000138986
+20S proteasome, A and B subunits	0.00968037	0.000778417
+hypothetical protein	2.53415e-06	2.08117e-06
+PREDICTED	1.03471e-05	3.00317e-06
+Cold shock like protein CspD	0.000103853	2.82263e-05
+succinyl CoA	6.78024e-06	5.76936e-06
+Glutamyl tRNA reductase	0.000170551	0.000804208
+Sulfate transporter	0.00267464	0.00030574
+hypothetical protein	3.36102e-05	3.03502e-05
+4 hydroxybenzoate polyprenyltransferase, putative	0.000144441	0.00150573
+Coiled coil domain containing protein 71L	4.89932e-05	7.02905e-05
+UPF0047 protein YjbQ	0.000266411	0.00378328
+hypothetical protein	6.02804e-06	3.06264e-06
+Glutamate 1 semialdehyde 2,1 aminomutase	7.21971e-06	6.03296e-06
+UniRef50_F4DR22	0.000459704	0.000178188
+hypothetical protein	1.65265e-05	7.73493e-07
+Peptidase	1.23265e-06	1.35088e-05
+Xanthine phosphoribosyltransferase	0.00189142	0.0121845
+UPF0285 protein Mevan_1551	0.00287384	0.000101109
+Inner membrane protein yiaV	0.00129053	0.000480229
+UniRef50_F9NYN9	5.60617e-06	8.48575e-06
+Putative competence damage inducible protein	0.00185205	0.000885062
+glyoxalase I, partial	0.000468091	6.69093e-05
+Aminotransferase, class V	0.00136003	0.000434295
+tRNA dimethylallyltransferase	1.61188e-05	5.96307e-06
+Pseudouridine synthase	0.000226311	0.000301946
+Putative membrane protein 	6.72583e-06	4.66018e-06
+Ribonuclease HII	8.25399e-06	0.00312043
+multidrug ABC transporter ATP binding protein	4.01336e-06	1.0895e-05
+UniRef50_V9VWJ0	0.0230697	0.000629573
+UniRef50_W2UZV9	1.22271e-05	2.97673e-05
+hypothetical protein	0.000168483	0.000142603
+UniRef50_Q9ZD73	2.51809e-05	1.82405e-05
+Dihydroxy acid dehydratase	0.00306167	0.000988784
+Glutamine synthetase	7.47542e-06	7.11902e-06
+hypothetical protein	2.21969e-05	4.68908e-06
+UniRef50_L0A7I7	7.87905e-05	0.000483268
+UniRef50_K7EH66	2.6267e-06	1.87392e-05
+Thiamine ABC transporter permease	0.00322103	0.000399533
+Cell division protein FtsQ	0.000142004	0.00303417
+peptidase S8	2.16171e-06	0.000164735
+hypothetical protein	4.21177e-05	2.09956e-06
+hypothetical protein	3.15112e-06	6.11339e-06
+UniRef50_A3M585	6.16389e-05	0.00329651
+P protein	0.000283075	1.03587e-05
+Integral membrane sensor signal transduction histidine kinase	0.00046581	0.000316839
+hypothetical protein	2.58966e-05	0.000182932
+Cation	0.0134776	0.00338473
+UniRef50_E4C1B3	8.47658e-06	0.000740539
+hypothetical protein	2.50196e-05	8.4759e-05
+Na H(+) antiporter NhaA	0.00218958	0.000490128
+UniRef50_X6EE61	1.68802e-05	2.71004e-05
+UniRef50_F6R4Y2	2.77403e-05	8.63454e-06
+Pyruvate kinase	0.00221609	0.000256197
+UniRef50_K0B2D2	0.000411744	0.000477013
+hypothetical protein	0.000915056	0.000334167
+UniRef50_A6GDL9	4.00392e-05	3.52157e-06
+sn glycerol 3 phosphate import ATP binding protein UgpC 3	5.28983e-05	1.58353e-05
+ABC Fe+3 siderophore transporter, periplasmic substrate binding protein	2.94095e-05	1.05569e-05
+phytoene dehydrogenase	7.49042e-06	1.97992e-06
+Xylose isomerase	0.0100512	0.000833035
+Diaminopimelate epimerase	4.68493e-06	7.67945e-06
+hypothetical protein, partial	0.000214492	2.50942e-05
+Uracil phosphoribosyltransferase	3.06776e-05	4.2998e-05
+Exporter	5.20168e-05	0.00435639
+Histidine kinase	0.000196812	0.00321679
+FKBP type peptidylprolyl isomerase	0.00173745	0.0012995
+UniRef50_M1GD04	1.08715e-05	8.66434e-06
+UniRef50_G8AIH3	5.95984e-05	0.00010811
+UniRef50_C9LS22	3.85761e-05	2.51466e-05
+4 alpha glucanotransferase	1.00865e-05	0.000244039
+MaoC like dehydratase	1.10355e-05	7.66393e-06
+Abortive infection protein	0.0130556	0.00174416
+PREDICTED	2.71259e-05	2.1013e-05
+O antigen polymerase	0.00551443	0.00128847
+UniRef50_A6LZN7	9.71748e-05	0.000494052
+ATP dependent zinc metalloprotease FtsH	2.21898e-06	4.89195e-06
+Adenylate kinase	6.8729e-06	1.89121e-05
+Adenylate kinase	8.20039e-06	1.39033e-05
+Ammonia permease	0.00728894	0.000145814
+ABC transporter ATP binding protein	0.000637811	0.000881438
+Bifunctional protein FolD 2	0.000653931	2.41374e-06
+UniRef50_N8YXS0	0.000585627	0.00317732
+Extracellular solute binding protein, family 1	0.000977257	0.000910628
+UniRef50_U2PH02	3.15565e-06	6.69791e-06
+A G specific adenine glycosylase	0.000106728	0.000951014
+Prophage LambdaSa2, PblB, putative	0.000181779	0.000130883
+Probable malate	2.81893e-06	2.5436e-06
+Acetolactate synthase, large subunit, biosynthetic type	0.014099	0.00160745
+UniRef50_P37003	0.00109043	0.000505791
+hypothetical protein	1.03209e-05	1.25203e-05
+UniRef50_C1DHH3	3.60857e-05	0.000120755
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.0768e-05	0.000165875
+UniRef50_P37007	0.00264419	0.000685743
+Multidrug resistance protein	0.00929951	0.00241157
+Anaerobically induced outer membrane porin OprE	0.00104814	7.14279e-05
+GDP mannose pyrophosphatase NudK	0.00105641	0.000336612
+UniRef50_N5A969	2.18688e-05	1.53653e-05
+AMP binding domain containing protein	0.000107245	5.1665e-05
+histidinol dehydrogenase	0.000217144	0.0001195
+UniRef50_K1ZZL6	4.73194e-05	3.01082e-05
+UniRef50_C6SPL1	0.0108627	0.00129137
+UniRef50_C6SPL2	0.00305528	0.000318047
+Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp	1.93915e-05	2.32829e-06
+ABC transporter substrate binding protein	5.59124e-06	1.43649e-05
+Segregation and condensation protein a	0.000511264	0.00220909
+hypothetical protein	1.04308e-05	9.13183e-06
+Chromosomal replication initiator protein DnaA	0.00358533	0.000730044
+Cardiolipin synthase Cls	0.000461861	0.000366326
+TQXA domain containing protein	7.17705e-07	5.11584e-07
+hypothetical protein	1.81916e-06	2.04586e-06
+ATP dependent RNA helicase YqfR	0.0111094	0.00230647
+Lysine  tRNA ligase	3.09866e-06	2.95487e-05
+D,D dipeptide transport system permease protein DdpC	0.00872524	0.000486627
+Marine sediment metagenome DNA, contig	2.69828e-05	1.97971e-05
+Phage replisome organizer, putative	0.000885449	0.00202102
+threonine dehydratase	7.80687e-06	7.04894e-06
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.010225	0.00661281
+ATP synthase subunit delta	0.00501786	0.000692681
+FabA like domain protein	1.25802e-05	2.48632e-05
+PREDICTED	9.76378e-06	1.7011e-06
+Multidrug efflux transport protein	0.000166746	0.00323905
+L xylulose 5 phosphate 3 epimerase	0.000270778	0.00269848
+UniRef50_P39374	0.00257376	0.000108305
+UniRef50_A8LAX8	1.14697e-05	1.69297e-05
+Putative phage protein	0.000238695	5.12598e-05
+PREDICTED	3.04596e-06	1.23821e-06
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.90384e-05	3.10015e-06
+Phage protein	0.00259843	0.000212257
+2 keto 3 deoxygluconate kinase	0.00073731	0.000212893
+DNA binding transcriptional activator, co regulator with RcsB	0.000228427	0.000201764
+PREDICTED	1.6017e-05	0.000235029
+UniRef50_A3NI78	0.00372683	0.000220482
+Glycosyltransferase, group 1 family protein	0.000727347	0.00238833
+TRAP transporter, DctQ family protein	0.0118904	0.000369562
+Acyl CoA dehydrogenase, putative	0.000481053	0.0212649
+Ribonucleotide monophosphatase NagD	0.0015026	0.000358821
+ArsC family protein	6.40635e-05	2.82514e-05
+hypothetical protein	2.29913e-05	2.23444e-05
+RNA polymerase sigma 32 factor 2	0.00658959	0.00238966
+3 deoxy D manno octulosonic acid  8 phosphate synthase	0.000102272	3.86867e-05
+Acetyl CoA acetyltransferase	0.000136994	0.0124096
+Toxin, beta grasp domain protein	0.00793557	0.000546807
+Dihydrolipoyl dehydrogenase	0.0121898	0.00240634
+Transcriptional regulator, LysR family	0.000112058	0.000102028
+amidohydrolase	1.5987e-05	4.13852e-06
+PREDICTED	1.58838e-05	0.000213301
+6 phospho beta glucosidase	3.42294e-06	4.28175e-06
+Glycogen branching enzyme	0.00358897	0.000236752
+Spermidine putrescine binding periplasmic protein	2.41357e-05	5.43445e-06
+Signal peptidase I	0.00442756	0.000389338
+ParB family protein	0.000257223	3.2729e-05
+Chemotaxis protein CheA	5.60914e-05	0.00146535
+N acetyl anhydromuranmyl L alanine amidase, partial	4.80995e-05	6.68197e-05
+sulfate ABC transporter permease	5.39144e-05	5.58347e-05
+UniRef50_A6VCD4	0.000593456	0.00033683
+FecCD transport family protein	0.00911064	0.00266182
+glutamate dehydrogenase	7.1612e-06	1.16775e-05
+DNA polymerase III, beta subunit	0.000859195	0.0360338
+UniRef50_K5YNY1	6.45738e-05	6.26252e-06
+DNA 3 methyladenine glycosylase I	1.77449e-05	2.85365e-05
+ATP dependent RNA helicase dbp9	4.95136e-06	3.32336e-06
+UniRef50_F3CRF8	0.00104087	0.00125966
+Zn dependent hydrolase of the beta lactamase fold like protein	0.000131808	0.000682333
+UniRef50_D3QFY2	0.000458128	0.000100944
+Ribosomal RNA small subunit methyltransferase H	5.18159e-06	0.00246631
+UniRef50_Q5HN64	0.00573157	0.000870794
+Secretion protein HlyD family protein	0.000974438	8.12533e-05
+HTH type transcriptional regulator ArcR	0.0219345	0.00720215
+UniRef50_D8JH13	0.000266129	0.00346672
+Sulfide	0.00104689	0.000105788
+hypothetical protein	3.19907e-06	1.26134e-05
+UDP N acetylglucosamine 2 epimerase	5.42305e-06	1.46831e-05
+Predicted membrane protein	4.04268e-05	1.55024e-05
+PREDICTED	0.000149941	2.47872e-05
+Glycerol 3 phosphate acyltransferase	0.000534549	0.00110878
+hypothetical protein	1.39382e-05	1.21097e-05
+UniRef50_A0A024KDL9	0.000256192	7.77382e-05
+hypothetical protein	2.32606e-05	4.37697e-06
+UniRef50_M1P9T3	0.000184866	3.50355e-05
+hypothetical protein	3.5065e-05	1.26577e-05
+Penicillin binding protein 2B	0.00437309	0.00109124
+Endoglucanase	0.0043146	0.000360676
+Transport system permease protein	9.17026e-05	0.00320356
+UniRef50_U6LU16	2.66686e-06	1.53459e-05
+Fe3+ siderophore ABC transporter permease	4.90958e-06	1.3976e-05
+UniRef50_F6ZM80	5.41823e-05	3.70454e-06
+UniRef50_W2CJ91	1.78346e-05	6.16249e-05
+GNAT family acetyltransferase TIGR03103	0.000130534	0.000247298
+UniRef50_F2AE33	0.001256	0.000327645
+PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK	0.000449239	0.0010285
+Fur family transcriptional regulator	3.95416e-05	5.34195e-05
+1 phosphofructokinase	9.41768e-06	0.000752549
+GAF domain GGDEF domain protein	4.45455e-06	2.1521e-05
+PREDICTED	2.79519e-06	1.12135e-06
+Quinone oxidoreductase	0.00079898	0.000245529
+UniRef50_R1F8B2	1.04402e-05	4.0061e-06
+UniRef50_U4JVB3	7.24811e-06	4.98339e-06
+Probable D,D dipeptide transport system permease protein DdpC	0.00344193	0.000340189
+hemolysin type calcium binding domain containing protein, partial	3.07159e-06	4.79091e-06
+hypothetical protein	3.47555e-06	2.05443e-05
+UniRef50_U5NMM5	0.000666269	0.000828915
+HTH type transcriptional regulator CysB	0.00203989	0.000406858
+Protein SmtA	0.000950751	0.00197134
+pyruvate phosphate dikinase PEP pyruvate  binding protein, partial	4.87711e-06	9.54688e-05
+hypothetical protein, partial	3.17863e-05	7.67668e-05
+hypothetical protein	3.31267e-05	5.39099e-06
+UniRef50_E2NTP5	0.0034945	0.000469888
+hypothetical protein	8.20146e-06	1.9736e-05
+UniRef50_U5FQ27	7.70895e-05	2.87042e-05
+Luciferase like monooxygenase	0.000180616	0.0152498
+siroheme synthase	6.53978e-05	3.48669e-06
+Putative proteophosphoglycan ppg3	4.32778e-06	2.12057e-05
+UniRef50_M2PFD7	3.04303e-05	9.7094e-05
+Potassium uptake protein KtrA	0.000363182	0.0228097
+Methionine  tRNA ligase	2.59478e-06	0.0160326
+UniRef50_V4MMB9	5.7765e-06	2.93254e-06
+Formate  tetrahydrofolate ligase	2.88927e-05	0.00196809
+Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.00309277	0.00269343
+ferripyochelin binding protein	2.73174e-05	1.54794e-05
+Regulatory protein, LacI	0.000261065	0.000276398
+Peptidase S49	0.000560663	0.000384879
+ribonuclease J	5.20359e-05	3.29991e-05
+UniRef50_D9WJL5	0.000185195	7.49257e-05
+2,3 diketo L gulonate TRAP transporter large permease protein YiaN	0.00578873	0.000489907
+23S rRNA pseudouridine synthase D	1.6355e-05	5.18018e-06
+Pyridoxal dependent decarboxylase	0.00904585	0.00213556
+PREDICTED	4.45794e-05	7.33178e-05
+UniRef50_G8VJM5	0.000711018	0.00413073
+RNA polymerase subunit sigma 24	0.000261981	5.54699e-05
+UniRef50_D6ZGK4	4.9043e-06	1.23858e-05
+IolC protein	0.000102294	0.00303046
+30S ribosomal protein S12	0.0148131	0.00300998
+ABC transporter related	0.000137554	0.000137076
+UniRef50_D2J9T7	0.0037214	0.00149503
+PF12266 family protein	0.000155219	2.853e-05
+3 octaprenyl 4 hydroxybenzoate carboxy lyase	0.000755005	0.000111959
+Winged helix turn helix	3.82775e-05	0.00188007
+UniRef50_A4WZ94	0.0015678	0.00052522
+Marine sediment metagenome DNA, contig	2.87534e-05	1.92908e-05
+UniRef50_M2QQT8	0.000136549	7.44536e-05
+hypothetical protein	5.19088e-06	1.25742e-05
+Redox sensing transcriptional repressor Rex	0.00835261	0.000542805
+8 amino 7 oxononanoate synthase	0.0087724	0.0018649
+hypothetical protein	3.45268e-05	2.65948e-05
+UniRef50_L7WXU0	0.0177608	0.00236208
+beta lactamase	1.40015e-05	1.50277e-05
+DNA internalization related competence protein ComEC Rec2	4.47142e-05	0.00487718
+acetolactate synthase	8.08317e-05	0.000267698
+Two component response regulator and GGDEF family protein YeaJ	4.34762e-06	3.93861e-06
+Pyridoxal phosphate phosphatase YbhA	0.00346657	0.00155258
+Immunogenic secreted protein homologue	0.000365824	0.000121004
+Cadmium resistance transporter family protein	0.000495019	0.000530653
+UniRef50_H8GRT7	2.17592e-05	0.000148409
+hypothetical protein	1.65766e-05	1.23081e-05
+Major ampullate spidroin 1 locus 3 	9.10895e-06	8.96359e-05
+8 oxo dGTP diphosphatase	0.00626898	0.00239161
+UniRef50_T1Z4R2	0.00504138	0.000490226
+catalase	5.53025e-06	5.22836e-06
+CHAT domain protein	6.12325e-05	3.51618e-05
+UniRef50_X5F552	0.000408763	0.000620396
+transposase	5.46696e-06	1.01542e-05
+Pyruvate kinase	0.000744163	0.00410299
+hypothetical protein	0.000806829	4.69883e-05
+UniRef50_Q7CWA6	2.36533e-05	5.96286e-06
+Na translocating NADH quinone reductase subunit E	0.000566471	6.38017e-05
+CobW	1.94071e-05	5.43161e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.50436e-05	6.25572e-06
+Tagatose 1,6 diphosphate aldolase 2	3.09516e-05	2.24608e-05
+UniRef50_C1CUZ2	7.9002e-05	0.0232196
+Phospholipase carboxylesterase family protein	0.000434977	0.000512001
+UniRef50_E4FBI4	0.000320209	8.60493e-05
+Resolvase domain protein	0.00477195	0.000245114
+Probable lactoylglutathione lyase	8.1453e-05	1.34237e-05
+dihydroxy acid dehydratase, partial	0.000394895	0.000876227
+UniRef50_N9ZY49	1.34129e-05	5.05139e-06
+UniRef50_U5UT50	0.000943594	0.000427547
+Oligopeptide ABC transporter ATP binding protein OppF	0.00642256	0.00100211
+diaminopimelate decarboxylase	1.2269e-05	8.86518e-05
+uroporphyrinogen decarboxylase	5.81042e-06	6.02804e-06
+hypothetical protein	4.41548e-06	5.95771e-06
+hypothetical protein	0.00029186	3.22917e-05
+acyl CoA transferase	1.83023e-06	4.4473e-06
+Chromosomal replication initiator, DnaA	0.000220952	2.09194e-05
+hypothetical protein	2.56746e-05	2.08936e-05
+2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	4.11666e-06	3.57607e-06
+hypothetical protein	7.04663e-05	5.45238e-05
+hypothetical protein	1.62139e-05	2.5652e-05
+hypothetical protein SMAC_09920	1.00691e-05	3.0482e-05
+UniRef50_UPI0002739F39	7.60057e-05	3.33431e-06
+MULTISPECIES	0.000160163	0.000103814
+UniRef50_E2Q1H6	1.25181e-05	2.17145e-05
+hypothetical protein	2.86366e-05	9.33778e-06
+UniRef50_I6RSR0	0.000499574	0.000227616
+UniRef50_W0H1T2	0.000295218	9.77372e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial	7.32722e-06	9.53815e-06
+UniRef50_Q0G2X9	5.39387e-06	3.68662e-06
+UniRef50_R5R9L6	6.33529e-05	8.40856e-06
+Phosphoribosylformylglycinamidine synthase 	2.78475e-05	2.45421e-05
+Peptide chain release factor 1	0.00294356	0.000274739
+Proline  tRNA ligase	0.0213454	0.00548346
+hypothetical protein	2.52077e-06	3.81811e-06
+PRC barrel domain protein	0.0024124	0.000252055
+UniRef50_X6J7G6	0.000913598	1.37704e-05
+Transcriptional regulator	0.000364108	4.56334e-05
+PREDICTED	1.37415e-05	9.64981e-05
+Cysteine desulfurase IscS	4.49972e-06	0.00223768
+Amino acid amide ABC transporter substrate binding protein, HAAT family	0.000250374	0.0146427
+hypothetical protein	2.49378e-06	4.8112e-05
+3 isopropylmalate dehydratase	5.9773e-05	3.00601e-06
+UniRef50_K8BVY4	0.000149838	0.000109058
+hypothetical protein	4.39997e-06	1.06318e-05
+DhaKLM operon coactivator DhaQ	0.00157259	0.000274653
+Marine sediment metagenome DNA, contig	9.81668e-06	1.02877e-05
+Prephenate dehydratase	0.00196957	0.000189021
+Short chain dehydrogenase reductase SDR	0.000859669	0.0245274
+hypothetical protein	8.91254e-06	1.25913e-05
+D alanine aminotransferase	0.00752681	0.00144973
+UniRef50_Q60EN0	0.00010313	5.29482e-05
+UniRef50_B7IV23	5.53848e-06	0.000509195
+Na+ Ca+ antiporter	0.0121259	0.00126291
+UniRef50_G8VDH4	0.00051389	0.000781051
+PilL 	0.000310237	0.000139774
+6,7 dimethyl 8 ribityllumazine synthase	7.4737e-06	1.13512e-05
+Mur ligase middle domain protein	9.33992e-05	0.00376751
+LytR family transcriptional regulator	2.48239e-06	4.80783e-06
+UniRef50_M1PJW1	1.81991e-05	2.76505e-05
+UniRef50_A3CRC4	0.00239344	0.000733279
+Nitrite extrusion protein	0.0182053	0.00333686
+UniRef50_A3PPT8	0.00228267	0.00024071
+Predicted protein	2.95946e-05	6.39427e-06
+Transporter, LysE family	0.00955472	0.0020343
+Cyclic pyranopterin monophosphate synthase accessory protein	1.15915e-05	0.000654812
+hypothetical protein, partial	2.65692e-05	0.000129212
+UniRef50_W1YK15	0.000255383	0.000112599
+Bifunctional enzyme IspD IspF	5.16549e-06	8.28334e-06
+UniRef50_H1LUK9	1.69359e-05	4.20579e-05
+UniRef50_U8YLF7	8.85654e-05	0.000128632
+Cyclic diguanylate phosphodiesterase  domain protein	4.0074e-06	7.79487e-06
+Tributyrin esterase, putative	0.00620254	0.00145797
+NADH quinone oxidoreductase subunit D 2	5.79304e-06	1.61241e-05
+UniRef50_A8YY53	0.00109744	0.00100882
+Phospho N acetylmuramoyl pentapeptide transferase	0.00587122	0.00318315
+UniRef50_C6M7I4	3.35788e-05	0.000141632
+Cobyrinic acid ac diamide synthase	4.38681e-06	1.25864e-05
+Lysine decarboxylase family protein	0.00461528	0.000340575
+UniRef50_A0A019IPH8	0.000140469	1.60245e-05
+Trk system potassium uptake protein TrkA	0.00389136	0.00111966
+Cysteine synthase	1.45414e-05	1.13596e-05
+Chromosome partitioning ATPase, putative, ParA family	0.000163645	0.0320101
+phenylacetic acid degradation protein	9.00831e-06	2.37675e-05
+Binding protein dependent transport systems inner membrane component	0.00905722	0.000549789
+S layer like protein array related protein	0.000228594	0.013744
+UniRef50_N9JGK4	0.00015605	0.00232882
+Cytochrome c oxidase subunit 1	0.000179502	0.00306275
+30S ribosomal protein S2	0.0186078	0.0231729
+Diguanylate cyclase	0.000482117	8.28274e-05
+UniRef50_K9H0D1	5.10519e-05	1.74788e-05
+FMN dependent NADH azoreductase	0.00412453	0.00188843
+Cell cycle family protein	0.0130332	0.00287429
+Formamidopyrimidine DNA glycosylase	4.92442e-06	1.63326e-05
+hypothetical protein	3.42684e-05	1.59024e-05
+Methionine R sulfoxide reductase B1	0.000577673	0.000916068
+ABC transporter related protein	0.000318141	0.000701432
+UniRef50_A3M7V6	0.000420686	0.00131646
+hypothetical protein	6.9868e-06	1.27007e-05
+Galactose 6 phosphate isomerase subunit LacB	0.0221045	0.00798657
+MerR family transcriptional regulator	0.000150921	6.56215e-05
+hypothetical protein	6.27178e-06	4.52568e-05
+Predicted permease	0.00166922	0.000312787
+UniRef50_R0FCU4	5.25533e-05	1.12452e-05
+O acetylhomoserine aminocarboxypropyltransferase	6.30408e-06	4.36528e-06
+Probable cysteine desulfurase	0.000250325	0.00250798
+Marine sediment metagenome DNA, contig	2.81955e-05	6.10082e-05
+Nitroreductase	0.00020274	0.00100318
+HTH type transcriptional regulator, AsnC family	0.00279636	0.00131201
+Cytochrome c, class I	0.00372007	0.000507259
+Alanine racemase	0.000311645	0.00208441
+UniRef50_D1BS48	0.00482844	0.000742667
+Exodeoxyribonuclease V beta chain	6.85619e-05	0.0029442
+UniRef50_U3SQQ0	0.00477718	0.0022475
+Potassium uptake protein, TrkA	0.000405963	0.00250195
+Predicted protein	7.98164e-05	0.000238929
+hypothetical protein, partial	9.54983e-05	3.41142e-05
+hypothetical protein	1.48775e-06	5.52861e-06
+Amino acid ABC transporter, permease protein	0.00228381	0.000313112
+Glycerol 3 phosphate dehydrogenase	0.00267043	0.000453809
+Replication initiator protein	0.00506906	0.000538658
+UniRef50_A6QDH4	0.0106977	0.00116155
+Bifunctional protein FolD	0.00660376	0.00131885
+hypothetical protein	4.20459e-05	4.37138e-05
+hypothetical protein	3.796e-05	2.53291e-05
+Disulfide bond oxidoreductase YghU	0.0171	0.00637692
+UniRef50_N6S0H8	0.00118258	1.70392e-05
+UniRef50_Q6VY64	2.81154e-05	0.000281512
+UniRef50_A9VQ13	1.65202e-05	0.000523328
+UniRef50_S0ACB3	1.15945e-05	1.31966e-05
+Inosine 5 monophosphate dehydrogenase	2.31018e-05	4.48715e-05
+7 cyano 7 deazaguanine synthase	4.085e-05	2.93765e-05
+NADH quinone oxidoreductase subunit L	0.000129905	2.28845e-05
+UniRef50_R7PVP7	0.00256188	0.000419442
+UniRef50_Q9RU90	0.000810628	0.0135214
+CDP diacylglycerol pyrophosphatase	6.11156e-05	0.00095466
+ATPase, AAA family protein	0.0121761	0.0028695
+UniRef50_W7A2A5	1.39671e-07	1.78658e-07
+PKHD type hydroxylase Mfla_0096	3.12795e-05	4.59376e-05
+UniRef50_A3PJJ8	0.00650793	0.000995964
+UniRef50_A3PJJ6	0.00768689	0.00194047
+UniRef50_C0QB47	0.000108154	0.00112014
+Marine sediment metagenome DNA, contig	3.31983e-05	0.000198803
+UniRef50_D4HA15	2.08122e-05	0.000227093
+50S ribosomal protein L22	1.82578e-05	6.30416e-05
+Protoheme IX farnesyltransferase	6.99381e-06	7.21638e-06
+Molybdopterin synthase catalytic subunit	0.0506181	0.00389867
+Dihydrofolate reductase	3.37048e-05	0.000211753
+hypothetical protein	2.05528e-05	8.48367e-06
+UniRef50_K2IW44	1.47363e-05	8.82577e-06
+PREDICTED	3.93628e-06	1.67249e-06
+UniRef50_X2MSF3	2.39634e-06	1.54375e-06
+Phenylacetaldehyde dehydrogenase	0.000284362	0.000140027
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	6.77263e-05	3.12796e-05
+RNA polymerase sigma factor RpoD	2.28072e-06	1.14877e-05
+CobN magnesium chelatase domain protein	0.000112134	0.00273462
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000856132	0.000235039
+hypothetical protein, partial	1.48301e-05	1.11718e-05
+UniRef50_N6UY44	1.73558e-05	0.000116156
+Inner membrane translocator	0.00184131	0.000228983
+hypothetical protein	0.000100569	2.42586e-05
+UniRef50_W8F058	1.72011e-05	5.42903e-05
+Short chain dehydrogenase reductase SDR	1.65282e-05	3.46851e-06
+hypothetical protein	1.07901e-05	1.10864e-05
+Asparagine synthetase	0.00104807	0.000129749
+hypothetical protein	0.000318294	0.000159299
+two component system sensor kinase	7.02889e-05	0.000154401
+chemotaxis protein CheY	0.000434873	1.48515e-05
+UniRef50_X7A487	5.23054e-05	1.16626e-05
+Resolvase	0.0155474	0.00411864
+hypothetical protein	0.000157034	3.8102e-05
+Acyl CoA dehydrogenase domain protein	0.00540349	0.000741107
+ABC type multidrug transport system, ATPase component	0.00393928	0.00036041
+Cyclic pyranopterin monophosphate synthase accessory protein	0.0026252	0.0041647
+NADH dehydrogenase 	0.000302728	9.18985e-05
+Diguanylate cyclase phosphodiesterase	0.00195467	0.000201428
+Penicillin binding protein 2X	0.00496697	0.00348212
+hypothetical protein	1.01676e-05	3.8899e-05
+Geranyltranstransferase	0.00510841	0.0015304
+UniRef50_H3UJR5	0.00292071	0.000224462
+hypothetical protein, partial	3.38491e-06	6.35016e-06
+UniRef50_S4XRJ9	0.00112108	2.55709e-05
+GTPase EngC	3.42302e-06	0.000272837
+UniRef50_UPI0003C15F36	1.90393e-05	1.81603e-05
+Probable ABC transporter binding protein DR_1438	0.000462782	0.0107045
+Uricase	0.000633857	0.0148178
+hypothetical protein	2.22634e-05	8.43325e-06
+UniRef50_K2R7H4	0.00047753	8.1087e-05
+ABC transporter associated permease	9.47816e-05	0.00309792
+hypothetical protein	6.14179e-05	3.40186e-05
+BRO, N terminal	4.52603e-05	7.05428e-06
+Replicative DNA helicase	0.0117541	0.00745657
+Transcriptional regulator, MerR family	0.000427816	0.000262529
+3 dehydroquinate dehydratase	4.97532e-05	3.10897e-05
+Magnesium transporting ATPase, P type 1	0.000228582	0.000412233
+UniRef50_B9KQJ5	0.000395771	2.7632e-05
+Peptidase, M56 family	1.57867e-05	7.27154e-06
+UniRef50_T0CJ91	3.12264e-05	1.12431e-05
+Transcriptional repressor NrdR	0.00428518	0.00574309
+Arsenate reductase and related	5.4532e-05	3.0844e-05
+NADPH dehydrogenase	4.66678e-06	4.1653e-06
+peroxiredoxin	1.01288e-05	0.00018277
+UniRef50_F7EFJ4	6.0253e-05	2.52936e-05
+Marine sediment metagenome DNA, contig	4.70412e-06	6.4776e-05
+Leucine  tRNA ligase	0.01374	0.00366055
+PREDICTED	4.23398e-06	2.41248e-06
+Adenine deaminase	1.76671e-05	3.82085e-06
+Diacylglycerol kinase, catalytic region	0.00162875	0.000169726
+MFS transporter, FSR family, fosmidomycin resistance protein	0.000254647	1.64356e-05
+PTS lactose transporter subunit IIA	3.81974e-05	1.72934e-05
+Flagellar L ring protein	0.0023401	0.000724323
+Membrane protein CF 9 family	0.000198359	0.000708362
+Antigen 43	0.00325737	0.000562746
+hypothetical protein, partial	1.10164e-05	3.43312e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000697877	0.000103201
+UniRef50_M7XG55	6.4531e-06	0.00016975
+Predicted protein 	5.03112e-05	0.000126562
+hypothetical protein	4.11427e-06	1.72164e-05
+Holliday junction ATP dependent DNA helicase RuvA	1.22552e-05	3.14981e-05
+D amino acid dehydrogenase 1 small subunit	3.06746e-05	1.30062e-05
+Glycerol 3 phosphate transporter	0.00176171	0.000357351
+Protein translocase subunit SecA	0.00196699	0.000905735
+Adenylate kinase	8.80615e-06	2.33566e-05
+PREDICTED	5.74407e-06	3.4912e-06
+UniRef50_D5QFV4	8.61699e-06	1.32287e-05
+CDP diacylglycerol pyrophosphatase	0.00211671	0.000423622
+UniRef50_UPI000329B634	4.21395e-05	1.83995e-05
+Nitrite reductase  large subunit	0.00335918	0.000742776
+Outer membrane phosphoporin protein E	0.00033072	0.000125573
+helicase superfamily protein	1.60099e-06	1.73906e-05
+hypothetical protein	1.78349e-05	1.02997e-05
+D alanine  D alanine ligase	5.74644e-06	9.53075e-06
+hypothetical protein	3.48688e-06	1.29599e-05
+hypothetical protein	4.46827e-06	7.34674e-07
+hypothetical protein	1.71419e-05	5.88607e-06
+PREDICTED	1.89992e-05	1.08531e-05
+Secreted protein	0.000557396	0.000192257
+FKBP type peptidyl prolyl cis trans isomerase	0.00268824	0.000242008
+Glycosyl transferase family 2	0.000232503	0.00078097
+Carbamate kinase	0.00198334	0.000462809
+Biotin carboxylase, chloroplastic	0.000141443	0.0268387
+Porin like protein GalP	0.000173768	0.000149642
+hypothetical protein	0.000416257	1.36121e-05
+hypothetical protein	2.6123e-05	2.64206e-05
+Transcriptional regulator, RpiR family	0.000240392	0.000851216
+UniRef50_Q67L49	4.93196e-07	4.90514e-07
+Oligopeptide ABC transporter, permease protein	0.0002127	0.000558446
+Glycosyl transferases group 1 family protein	0.000131808	0.000366861
+UniRef50_E0XT86	0.00170165	0.000504409
+ABC transporter ATP binding protein	0.00973351	0.00650517
+Oxidoreductase domain protein	0.00011987	5.54985e-05
+Acetate kinase	0.0118914	0.000608717
+PREDICTED	1.15382e-06	4.33033e-06
+hypothetical protein	4.13181e-06	1.50421e-06
+Xanthine permease, putative	7.40753e-05	0.0199336
+Alkaline phosphatase like protein	0.0213609	0.000672312
+ATP dependent RNA helicase, DEAD	0.0011366	0.000198811
+UniRef50_Q5HP60	0.00221528	0.00168071
+Penicillin binding protein 1B	0.00665106	0.00348701
+UniRef50_C4NUT7	0.00046314	0.000404436
+coproporphyrinogen III oxidase	2.35125e-05	2.42094e-05
+Peptidase M16 domain protein	0.000363181	0.00150575
+Peptidase E	0.00316129	0.0013865
+Autoinducer 2 import system permease protein LsrD	0.00678483	0.000959327
+UniRef50_H2I4X5	0.000105722	0.00320137
+Inner membrane ABC transporter permease protein YejE	0.00366714	0.000267177
+UniRef50_A4B9S6	6.86755e-05	7.57886e-06
+SusD family protein	3.27456e-05	0.0024229
+UniRef50_A5UJ63	0.00228404	0.000264852
+Poly C5 epimerase	0.000446131	0.000232297
+Integral membrane protein	0.000378156	9.26884e-06
+UniRef50_A0A022KYK2	0.000258172	7.71338e-05
+Rieske domain containing protein	0.000939539	0.000100095
+1 phosphofructokinase, partial	2.5575e-05	0.00012847
+Nitroreductase	0.000437076	0.000541795
+UniRef50_R7PU75	0.00348129	0.000223345
+Peptidyl prolyl cis trans isomerase D	0.0024712	0.000167671
+Acetyl coenzyme A synthetase	3.02202e-06	1.88853e-05
+UniRef50_W1V655	8.84083e-05	8.04529e-05
+hypothetical protein	3.604e-05	2.47653e-05
+Galactose 6 phosphate isomerase subunit LacA	0.0444205	0.0115712
+Cysteine and methionine metabolism regulator CmbR, LysR family	0.00402252	0.00193734
+UniRef50_W1N460	2.90969e-05	4.23301e-06
+UPF0225 protein CE1570	2.92676e-05	8.86714e-06
+UniRef50_V5T139	0.000448731	0.000841076
+Probable transposase	0.000366446	8.9337e-05
+hypothetical protein	2.00884e-05	2.58475e-05
+Spermidine putrescine import ATP binding protein PotA	0.000135865	0.000105601
+UniRef50_Q2NE41	0.00473161	0.000208318
+Inner membrane protein ybhI	0.000667402	0.000116302
+FMN reductase 	0.00115113	0.000663864
+Glutamate 1 semialdehyde 2,1 aminomutase	7.67433e-06	1.3861e-05
+UniRef50_E8W9I4	2.43793e-05	0.000224993
+UniRef50_I7EMH2	0.000461433	6.26522e-05
+hypothetical protein	7.5285e-06	6.66461e-06
+UPF0176 protein PSHAa1433	0.00106312	0.000102323
+PTS system mannitol specific EIICBA component	0.00067568	0.000130867
+Plasmid pRiA4b ORF 3 family protein	9.30701e-05	1.99092e-05
+UniRef50_Q8CRY9	0.00967349	0.00114993
+UniRef50_Q8CRY8	0.00670361	0.0010665
+PREDICTED	4.93803e-06	6.39702e-06
+Sensor histidine kinase	0.000141048	0.00239148
+Phosphoglycerate mutase family protein	5.83516e-05	0.000980989
+Glycerol kinase	0.00967879	0.00624192
+DNA invertase	4.16282e-05	7.12501e-05
+Phosphoribosylformylglycinamidine synthase	3.83164e-05	1.48042e-05
+Mannitol dehydrogenase domain protein	0.000327265	0.00026215
+hypothetical protein	3.15218e-06	2.6191e-06
+Probable GTPase MT1543	0.000193419	0.00336323
+UniRef50_Q5GWB1	1.73497e-05	8.07815e-06
+Autotransporter  family porin	0.000626483	0.000227527
+hypothetical protein	0.000150407	7.67172e-06
+hypothetical protein	1.58605e-05	1.60031e-05
+Marine sediment metagenome DNA, contig	1.94888e-05	9.17971e-06
+Nitric oxide reductase	0.000184091	0.00165868
+PREDICTED	8.68234e-05	1.0271e-05
+RepB plasmid partition	0.0105326	0.00215028
+hypothetical protein	0.000782203	0.000240066
+hypothetical protein	9.56654e-06	1.72323e-05
+Monomeric glyoxalase I	1.34403e-05	3.31566e-06
+UniRef50_E4FFC4	0.000315514	0.0019493
+Cytochrome c heme lyase subunit CcmF	0.000909568	7.68706e-05
+UniRef50_T1YBR1	0.00321017	0.000685381
+Elongation factor Tu	6.88005e-05	0.000150115
+Inner membrane protein YagU	0.00269879	0.000156967
+ABC transporter permease	0.000131819	0.000127731
+Lost Adherence Sensor, LadS	8.10611e-05	0.000178563
+UniRef50_A8LQH3	0.000981662	0.000102964
+UvrABC system protein B	0.0191496	0.00434848
+Ribonuclease J	1.47826e-05	2.91374e-05
+hypothetical protein	1.94446e-06	5.60487e-06
+Branched chain amino acid ABC transporter substrate binding protein	7.54593e-05	0.00111285
+hypothetical protein	2.59575e-05	1.36801e-05
+hypothetical protein, partial	7.59855e-06	1.4056e-05
+Isoform 2 of Ribose phosphate pyrophosphokinase 1, chloroplastic	6.31056e-05	3.1095e-05
+UniRef50_A6EE81	1.17057e-05	0.000214369
+Heme molybdoenzyme heme containing subunit YedZ cytochrome b subunit	4.10177e-05	1.24166e-05
+UniRef50_D7GDA9	0.000943594	0.00138288
+Predicted protein	6.64446e-06	6.28502e-05
+Marine sediment metagenome DNA, contig	6.28364e-05	0.000168581
+UniRef50_G9MKE1	3.16464e-06	0.00022499
+Oligopeptide ABC transporter permease	8.02642e-05	0.000310158
+DNA gyrase subunit A	6.62408e-06	9.3436e-06
+NADH quinone oxidoreductase subunit A 1	1.47902e-05	0.000128022
+Major facilitator superfamily MFS_1	0.000279501	0.000364856
+PREDICTED	3.84001e-06	2.30006e-06
+biotin biosynthesis protein BioY	3.7581e-05	2.86861e-05
+hypothetical protein	1.05474e-05	1.22478e-05
+Dihydrolipoyl dehydrogenase	0.000191685	0.00321424
+3 isopropylmalate dehydratase small subunit 1	4.25147e-05	2.10801e-05
+PREDICTED	2.18874e-05	4.70373e-05
+UniRef50_M1FC64	1.99069e-05	1.76225e-05
+UniRef50_T1ZZG8	0.00243659	0.00266392
+UniRef50_P76210	0.000737001	0.00123042
+Putative aldolase class 2 protein YgbL	0.000908124	0.000444446
+uridine kinase	8.55362e-06	0.000325515
+Inner membrane protein ypdA	0.00221819	0.000842265
+Periplasmic glucan biosynthesis protein, MdoG	0.00646117	0.000941547
+PE PGRS family protein	3.59661e-06	4.20519e-06
+Phenylalanine  tRNA ligase alpha subunit	0.00333288	0.0036272
+Transposase, IS30 family	0.000770722	0.00376197
+Fumarate reductase succinate dehydrogenase flavoprotein domain protein	1.36699e-05	1.6852e-05
+Response regulator	6.76706e-05	0.00371325
+PREDICTED	4.83283e-06	1.09607e-05
+Aspartate ammonia lyase	0.000486913	0.000714795
+Ribonuclease 3	0.00504556	0.00188895
+CTP synthase	3.27445e-06	7.69007e-05
+ATP dependent Clp protease proteolytic subunit 2	0.00108731	0.000868142
+Ion channel family protein	0.00186713	0.000146707
+UniRef50_A0A059LD30	2.84865e-05	3.79788e-05
+hypothetical protein	3.24872e-06	6.23635e-06
+Marine sediment metagenome DNA, contig	0.000150814	1.77343e-05
+ABC transporter	8.1504e-06	1.33917e-05
+hypothetical protein	2.05283e-05	2.00425e-05
+D alanine  D alanine ligase	0.00501221	0.00202177
+UDP N acetylglucosamine 2 epimerase	3.72786e-06	2.98285e-05
+UniRef50_F9YY53	2.92566e-05	0.000404633
+UniRef50_X5KE03	0.00391147	0.000561155
+UniRef50_Q9RVW3	8.26224e-05	0.00426643
+Tryptophan synthase alpha chain	5.43274e-06	7.1867e-06
+Rubredoxin type Fe4 protein	0.00458633	0.0001235
+hypothetical protein	9.10171e-06	8.47025e-06
+3 methyladenine DNA glycosylase	2.62782e-05	1.61957e-05
+Threonine  tRNA ligase	0.000116443	0.00175561
+NADH quinone oxidoreductase subunit E 2	0.000209703	0.00115384
+UniRef50_D8LMU1	7.02272e-06	1.25455e-05
+Carbamoyl phosphate synthase large chain	0.00142465	0.0016116
+Peptidoglycan deacetylase	0.010131	0.00290425
+Chaperone protein DnaJ	0.021912	0.00587498
+3 isopropylmalate dehydratase small subunit	5.00824e-05	2.30321e-05
+Putative glycosyltransferase CsbB	0.00653301	0.00133104
+hypothetical protein	7.53862e-05	2.05966e-05
+Porphobilinogen deaminase	0.000256914	0.00382629
+UniRef50_J9P043	8.68112e-05	2.63171e-05
+Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	3.9044e-05	6.02932e-05
+Type II and III secretion system protein	0.000763703	0.000222782
+Urease accessory protein UreF 	0.000341562	0.000230293
+Predicted protein	4.01784e-06	1.64041e-05
+UniRef50_U7IPA8	0.000295193	0.0013832
+N acetylmuramic acid 6 phosphate etherase	7.65014e-06	4.57573e-06
+Transcriptional repressor NrdR	0.000100369	4.4649e-05
+LigA	0.00127064	0.000654639
+Expressed protein	0.0001043	0.00069779
+UniRef50_F0YT02	1.30187e-05	0.000275671
+Protein involved in detoxification of methylglyoxal	0.000496784	0.00016978
+Hydrolase, haloacid dehalogenase like family	0.000172294	0.0218476
+Streptomycin 3 kinase	3.29277e-05	0.000251272
+PREDICTED	9.21873e-05	0.00011845
+TetR family transcriptional regulator	3.88319e-05	2.39411e-05
+UniRef50_D6WC74	1.75799e-05	4.31243e-05
+Aminoacyltransferase FemA 	0.0217111	0.00256268
+Dehydrogenase with different specificities	0.000385361	0.00282407
+Esterase	0.000547892	0.000203133
+TRAP transporter solute receptor, TAXI family	6.78479e-06	3.05038e-06
+Recombination associated protein RdgC	0.00115492	0.000162067
+tRNA specific 2 thiouridylase MnmA	0.0203615	0.005285
+hypothetical protein	0.000146746	3.31157e-05
+protoheme IX farnesyltransferase	5.85338e-06	4.84628e-06
+Membrane protein	0.000105999	0.00307563
+UniRef50_W8ZWW3	7.00154e-05	2.34618e-05
+Voltage gated chloride channel protein	0.00138969	0.000116008
+50S ribosomal protein L25	0.000155273	3.04947e-05
+Glucan binding protein A, GbpA	0.00754757	0.00302742
+Patatin	0.000184579	9.54143e-05
+hypothetical protein	4.09578e-06	1.7726e-06
+UniRef50_Q46SI8	0.00011281	1.19394e-05
+Amidase	0.00420723	6.81738e-05
+hypothetical protein, partial	0.00020419	2.64294e-05
+Probable electron transfer flavoprotein subunit alpha, mitochondrial	0.000375314	0.00416513
+DNA helicase	5.76698e-06	1.52929e-06
+ADP ribose pyrophosphatase	1.76619e-05	0.000125092
+hypothetical protein	0.000144109	0.000176736
+ABC transporter ATP binding protein	6.19904e-06	2.47511e-05
+UniRef50_F0K963	0.000713379	0.000293888
+hypothetical protein, partial	1.44045e-05	2.30262e-05
+hypothetical protein	1.18856e-05	1.65559e-05
+Bifunctional enzyme IspD IspF	5.66442e-06	9.03123e-06
+UniRef50_A6LXC3	0.000166608	0.00110825
+Probable phosphoglucosamine mutase	0.0031896	0.00120133
+hypothetical protein	7.85351e-05	3.34632e-05
+hypothetical protein	5.1164e-06	3.33134e-06
+DNA repair protein RecO	0.0121087	0.0015433
+UniRef50_A0A028XXS7	0.000130046	6.57751e-06
+UniRef50_R8ZK04	0.000316934	7.74007e-05
+Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	0.0209209	0.0276714
+Ferrochelatase	0.000149135	0.0173729
+Inner membrane transport protein YhaO	2.76021e-06	1.48618e-06
+CheC domain protein	0.000866649	0.000791163
+4 hydroxy tetrahydrodipicolinate synthase	0.000400201	0.0008518
+UniRef50_X5ESC8	4.23633e-05	2.29416e-05
+Lysine  tRNA ligase	0.00790381	0.000955373
+Methionine aminopeptidase	0.0123177	0.00134314
+Outer membrane specific lipoprotein transporter subunit LolE	0.00300863	0.000177792
+4 hydroxy 2 oxovalerate aldolase	4.27122e-05	0.000148767
+hypothetical protein	9.97519e-06	1.50448e-05
+UniRef50_Q16AA8	0.000185733	9.38547e-06
+Transcriptional regulator, TetR family	0.00019993	0.000344615
+ATP synthase F0F1 subunit gamma	4.3262e-06	5.57771e-06
+PadR family transcriptional regulator	0.000147114	1.58589e-05
+Adenylosuccinate synthetase	1.48154e-05	1.03598e-05
+Mlr4340 protein	0.000107482	1.28979e-05
+hypothetical protein	2.56368e-05	6.21821e-05
+MarR family transcriptional regulator	1.45944e-05	5.79142e-05
+UniRef50_J8V1E5	4.86679e-05	0.000105977
+Deoxyribodipyrimidine photolyase like protein	0.00260464	0.000162469
+tRNA dimethylallyltransferase	0.000305101	0.00048437
+Sodium	0.000562202	0.000175366
+Uroporphyrinogen decarboxylase	0.0188224	0.00262
+hypothetical protein	4.40785e-05	0.00230768
+amino acid ABC transporter ATP binding protein	0.000206201	3.05396e-05
+hypothetical protein, partial	2.34454e-05	2.47412e-05
+Amino acid permease associated region	0.00163102	0.00038747
+Mobilization protein A	0.00116948	0.000122329
+UniRef50_Q9RWB6	0.000445467	0.0341065
+Precorrin 2 C methyltransferase	0.000320548	0.000422411
+UPF0125 protein Q012_00884	8.25942e-05	1.55557e-05
+MutS domain V family protein	0.00569321	0.000363649
+UniRef50_U5T6S5	2.04517e-05	1.63507e-05
+Transketolase, thiamine diphosphate binding domain protein	2.33557e-05	1.3082e-05
+Ktr system potassium uptake protein A	0.0178839	0.00131155
+Staphylococcal accessory regulator Y	0.00713456	0.000732693
+UniRef50_T1JU40	8.46086e-06	1.07013e-05
+UniRef50_Q7R725	8.73445e-06	8.03407e-05
+phage integrase	0.00011438	4.21813e-05
+Flagellar basal body rod protein FlgC	0.000887128	0.000248024
+Acyltransferase homolog	0.00583058	0.00342194
+6,7 dimethyl 8 ribityllumazine synthase	0.00156573	0.000496928
+UniRef50_A4WWA2	0.00454657	0.000975078
+Protein NrdI	0.00700095	0.000490799
+Ribosomal RNA large subunit methyltransferase K	0.000230798	0.00172257
+UniRef50_P71297	0.000257563	0.00114886
+UniRef50_P71296	0.000906896	0.000212638
+Arginine  tRNA ligase	0.0224519	0.0046917
+Immunogenic protein	0.000230902	2.76364e-05
+Bifunctional purine synthesis protein purC E	1.18633e-05	7.96345e-06
+MULTISPECIES	1.75744e-05	4.49247e-06
+KipI	0.0165569	0.00265247
+hypothetical protein	2.84728e-05	1.79824e-05
+Glyoxalase family protein	0.0102419	0.000534468
+UniRef50_C6SQK1	0.00492482	0.000200861
+Glycogen synthase	0.00398487	0.000435701
+NAD specific glutamate dehydrogenase	2.08745e-05	6.93153e-06
+Oxidoreductase NAD binding domain protein	0.000145858	4.58284e-05
+UniRef50_S4RTP3	9.46155e-06	1.15328e-05
+Isoleucyl tRNA synthetase	0.000730221	0.00040133
+hypothetical protein	8.47388e-05	2.67383e-05
+UniRef50_Q8FCG2	0.000726998	4.36081e-05
+Methyltransferase type 12	0.000721897	0.000407063
+Sodium	0.0080159	0.000676953
+UniRef50_E3DTJ4	3.16842e-06	7.99091e-06
+Tripartite ATP independent periplasmic transporter, DctQ component	0.00015631	6.71477e-05
+iron transporter	1.51181e-05	7.72584e-06
+UniRef50_Q3IVN6	0.0064496	0.0011241
+UniRef50_Q3IVN1	0.00374995	0.00290924
+UniRef50_Q3IVN0	0.00441429	0.000990201
+UniRef50_I4Y1U6	0.000269472	6.23506e-05
+UniRef50_Q3IVN2	0.00846471	0.00528146
+Potassium uptake protein, TrkH family	7.45676e-05	0.0150179
+Probable quinol oxidase subunit 4	0.00549773	0.00107729
+UniRef50_C2QRL4	2.96407e-05	0.00012512
+Inner membrane transport permease YbhR	0.00299957	0.000790926
+Potassium transporting ATPase subunit B	8.23838e-06	0.000950383
+O methyl transferase	0.000497362	0.00220897
+ATP dependent 6 phosphofructokinase 2	3.57118e-06	1.53837e-06
+hypothetical protein	0.000100237	1.4145e-05
+UniRef50_F0YF70	2.84797e-05	4.77981e-06
+Acetyl CoA acetyltransferase	1.09707e-05	3.96682e-05
+UniRef50_V4QJE1	0.0158929	0.00197921
+Succinate semialdehyde dehydrogenase (+))	0.000168592	0.00326375
+UniRef50_M4SAI5	6.16156e-05	8.05782e-05
+Cell envelope related transcriptional attenuator	1.41048e-05	0.00109993
+ATP  cobalamin adenosyltransferase	8.09739e-06	7.50055e-06
+UniRef50_D6C476	1.93351e-05	0.000249383
+ABC transporter ATP binding protein	7.76078e-06	4.44994e-06
+hypothetical protein	1.98998e-05	1.64305e-06
+Phage related minor tail protein	0.00310345	0.000375039
+UPF0126 membrane protein VC_2382	0.00430097	0.000164743
+Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1	0.0133026	0.000292511
+L lactate permease, partial	1.65259e-06	5.00296e-05
+Dihydroorotase	0.00515915	0.0024457
+UniRef50_UPI0003C11B56	3.33459e-06	1.95547e-06
+D alanine  poly ligase subunit 1	0.00603096	0.001904
+Anthranilate synthase component 1	0.00268834	0.00024862
+glycosyl transferase family 39	1.33885e-05	8.07971e-06
+Sodium dependent inorganic phosphate  transporter family protein	0.00615765	0.000539613
+PREDICTED	6.61409e-05	6.15402e-06
+UniRef50_K5YQU9	3.72799e-05	1.46659e-05
+PREDICTED	1.20773e-06	4.62698e-06
+DNA polymerase III subunit alpha	3.2154e-06	1.1221e-06
+Amino acid ABC transporter, permease protein	0.000775901	0.000392074
+Tryptophan  tRNA ligase	0.000114084	0.0213243
+hypothetical protein PFL1_00311	1.28768e-05	9.46989e-06
+Predicted hydrolase of the HAD superfamily	0.000519368	0.0006998
+UniRef50_K0LKT0	0.00124173	0.0022068
+hypothetical protein	0.000153719	4.86817e-06
+hemolysin expression modulating protein	3.8407e-05	1.3216e-06
+diaminopimelate decarboxylase	7.93837e-06	4.28747e-05
+phosphoribosylglycinamide synthetase	1.24343e-05	1.23911e-06
+UniRef50_B0CKZ1	0.000732574	0.000145601
+UniRef50_F7ZE55	0.00412044	0.000279039
+Glutathione peroxidase	0.000490119	0.00186783
+UniRef50_M9VH17	0.000233655	0.000154816
+hypothetical protein	7.3216e-05	6.51088e-05
+Aspartate  tRNA ligase	0.00638629	0.00105845
+Putative nRPS PKS	1.54077e-05	4.99631e-05
+hypothetical protein	7.48424e-06	4.51599e-06
+hypothetical protein	0.000180553	1.6203e-05
+UTP  glucose 1 phosphate uridylyltransferase	0.000223992	6.84632e-05
+UniRef50_P77607	0.000330661	0.000279346
+Marine sediment metagenome DNA, contig	2.20397e-05	2.94501e-05
+Isopentenyl diphosphate Delta isomerase 2	6.62614e-05	9.66847e-06
+large conductance mechanosensitive channel protein MscL	4.82326e-05	3.0933e-05
+ABC transporter, amino acid binding protein	0.00626735	0.00315797
+O linked GlcNAc transferase	0.00219164	0.000447312
+hypothetical protein	6.21782e-06	3.17437e-05
+Fumarate hydratase class II	6.05074e-06	6.38012e-06
+UniRef50_I6U4E4	0.00650025	0.000678056
+UniRef50_P0ADI8	0.000293502	0.000317544
+UniRef50_E8SDZ5	0.0226569	0.00123232
+Protein ImpB	0.0014176	0.000102611
+Lipoprotein, putative	0.000624355	8.98747e-05
+hypothetical protein, partial	0.000208995	2.00352e-05
+binding protein dependent transport system inner membrane protein	9.81146e-06	1.61375e-05
+Transporter, major facilitator family protein	0.000994607	0.00037313
+Altronate oxidoreductase	0.00013907	0.000113079
+L asparaginase 1	0.00148574	0.000287209
+Hydrophobe amphiphile efflux 1 HAE1	0.00072049	3.11753e-05
+Ribonuclease PH	3.79438e-05	7.63339e-06
+Collagen triple helix repeat	3.87283e-05	0.000135621
+Trans 2,3 dihydro 3 hydroxyanthranilate isomerase	0.000258062	2.38342e-05
+hypothetical protein	7.93484e-05	7.62786e-06
+iron ABC transporter permease	9.53218e-06	3.50157e-06
+ABC transporter permease protein	0.00014883	3.72609e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.16435e-05	3.04733e-06
+Cobalamin biosynthesis protein CbiM	0.00024671	0.00286413
+Uracil phosphoribosyltransferase	5.73877e-05	6.02192e-05
+Transcriptional regulator, Crp Fnr family	0.000305953	0.0163881
+UniRef50_T9JR44	7.29082e-06	7.05061e-06
+50S ribosomal protein L16 arginine hydroxylase	0.00433474	0.00063267
+UniRef50_Q6ZDB2	5.20797e-05	5.41114e-05
+Probable molybdenum cofactor guanylyltransferase	0.0159617	0.00227789
+Peptidase M23B	9.57411e-05	1.7445e-05
+UniRef50_Q3IW06	0.000984762	0.000299753
+hypothetical protein	2.49273e-05	6.37994e-06
+hypothetical protein	6.26886e-06	1.36526e-05
+2 oxoglutarate dehydrogenase	1.26573e-06	9.46899e-07
+UniRef50_E6Q0D3	4.16814e-05	4.57422e-05
+rRNA methylase	0.00024807	0.00256052
+hypothetical protein	4.8474e-06	5.10271e-05
+Dihydroorotate dehydrogenase 	1.54711e-05	1.59198e-05
+UniRef50_C6SS67	0.00543766	0.000564048
+Uronate isomerase	0.00550861	0.00095751
+Na translocating NADH quinone reductase subunit E	7.91933e-05	5.80845e-05
+hypothetical protein	8.33841e-05	6.86613e-06
+Peptidase M24	0.00421993	0.000442783
+Major facilitator superfamily MFS_1	0.00103749	0.000454429
+UniRef50_P76550	0.00318691	0.000108436
+hypothetical protein	0.000159307	3.00373e-05
+Ribonuclease T	0.00284886	0.00150723
+hypothetical protein	1.78224e-05	0.000291685
+Transcriptional repressor NrdR	0.0273842	0.00158635
+OPT family oligopeptide transporter	7.03096e-05	0.000486041
+Oxidoreductase, NAD binding domain protein	0.00012829	0.00331689
+Amidohydrolase	0.00241282	0.00140163
+UniRef50_A5UKM3	0.00331081	0.000391573
+UniRef50_A5UKM2	0.00208239	7.24656e-05
+OmpA MotB domain protein	0.000449089	5.86829e-05
+Transcriptional regulator, MarR family protein	0.00208479	0.000251081
+hypothetical protein	3.26423e-05	0.00372698
+Tyrosine recombinase XerD	0.000219488	0.00219511
+Orotidine 5 phosphate decarboxylase	0.00107008	0.000128816
+Protoheme IX farnesyltransferase	3.89594e-06	8.77839e-06
+UniRef50_Q5HRV4	0.00323108	0.000364979
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	2.86743e-05	4.44597e-06
+UniRef50_Q5HKN5	0.00259532	0.000473925
+hypothetical protein	4.98869e-06	2.32378e-05
+DNA helicase RecQ	8.44418e-05	0.006464
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.64525e-05	2.50609e-06
+PREDICTED	3.21218e-05	7.90249e-06
+ATP dependent DNA helicase PcrA	1.53285e-05	4.05484e-06
+UniRef50_J4Y9F0	5.17508e-05	7.70216e-05
+ATP dependent 6 phosphofructokinase	1.27722e-05	5.15751e-06
+glutathione synthetase	3.0337e-06	2.81712e-06
+Tripartite ATP independent periplasmic transporter, DctQ component	0.000138592	3.18549e-05
+Putative lambdoid prophage Qin defective integrase 	0.0025303	0.00028194
+Quinol oxidase subunit II	0.00092034	0.000291062
+hypothetical protein	0.000134928	1.71487e-05
+Cytochrome C6, putative	0.000130953	0.0312483
+Peptidase M16C associated family protein	0.000185986	0.00389163
+UniRef50_Q5HPK4	0.00696494	0.00145767
+Teichoic acid biosynthesis protein	0.0110675	0.000835062
+family 2 glycosyl transferase	0.000132906	1.77237e-05
+Transport associated	0.000877327	0.000361589
+UniRef50_T2GRR2	0.000134126	0.000120753
+Glutamate 5 kinase	4.75398e-06	6.32358e-06
+Spheroidene monooxygenase	0.00419136	0.000667648
+Putative long chain fatty acid CoA ligase VraA	0.0104376	0.000884631
+KLLA0D04378p	8.26971e-06	1.22001e-05
+UniRef50_A5IV89	0.0118183	0.000196037
+cobyrinic acid a c diamide adenosyltransferase	2.18046e-05	0.000192829
+hypothetical protein	3.15226e-06	1.58804e-06
+Lipoyl synthase	5.60401e-06	2.0672e-05
+Phosphoribosylformylglycinamidine synthase 2	0.0207387	0.00255803
+Glycosyltransferase like 2 family protein	0.00142364	0.000657679
+8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase	0.000233942	0.0157073
+Cytochrome c oxidase subunit 2	0.00125411	0.000205475
+Cobyrinic acid ac diamide synthase	5.45692e-06	4.50065e-06
+Replisome organizer region containing protein	0.000333791	0.000270088
+Methionyl tRNA formyltransferase	4.46971e-06	1.05095e-05
+UniRef50_G0D6I9	0.00241894	3.84251e-05
+Putative zinc metalloprotease jhp_0242	0.000204599	0.00319095
+Putative molybdate metabolism regulator	0.000623841	6.96028e-05
+Chemotaxis protein CheY	0.000450786	0.000784282
+Histidine lysine arginine ornithine ABC transporter permease HisM 	4.04845e-05	9.83865e-05
+NUDIX hydrolase	0.000155484	9.00989e-06
+DNA polymerase IV	3.86817e-06	4.36914e-06
+hypothetical protein	2.12433e-06	1.63786e-06
+Uridine kinase	9.51327e-06	0.000157876
+UniRef50_S2IZA5	2.3613e-05	4.01542e-05
+AraC family transcriptional regulator	0.00117908	0.000138557
+Cbb3 type cytochrome oxidase, subunit I	0.000106055	0.000971595
+UniRef50_X1XSD9	0.0194232	0.00219915
+UniRef50_Z2CD30	0.0108266	0.000690586
+UniRef50_Q9RUE5	0.000258221	0.0113882
+UniRef50_Q9RUE6	0.000148816	0.0167425
+hypothetical protein	7.24841e-06	1.07499e-05
+UniRef50_C1CRM5	8.1177e-06	0.000611314
+UniRef50_L0KKT8	6.36539e-05	3.88362e-05
+GTPase	8.28257e-05	0.00134456
+Lysine  tRNA ligase 1	3.28824e-06	3.67466e-06
+C4 dicarboxylate ABC transporter permease	8.91482e-05	7.6447e-06
+UniRef50_P77187	0.00235805	0.000949325
+UniRef50_W8T289	0.00149756	0.000619206
+Transposase	0.00523977	0.000563691
+hypothetical protein	0.000193274	5.81789e-05
+Lipid A export ATP binding permease protein MsbA	0.000126459	0.00381292
+DNA replication and repair protein RecF	3.0211e-05	4.41903e-05
+hypothetical protein	5.25146e-05	3.72204e-06
+phosphoglucomutase	1.31702e-05	5.42162e-06
+hypothetical protein	1.03091e-05	1.10128e-05
+Signal recognition particle receptor FtsY	0.000116222	0.000107846
+UniRef50_B0V727	0.000183572	0.00469803
+hypothetical protein	6.8625e-06	4.01505e-06
+Ribonucleoside diphosphate reductase	0.000634365	0.000272666
+UniRef50_J7QHS4	0.00019797	0.000174002
+Nicotinate phosphoribosyltransferase	0.00250451	0.000221572
+Fructoselysine transporter	0.000297831	0.000264852
+Malto oligosyltrehalose trehalohydrolase	0.00397809	0.000511114
+Anthranilate phosphoribosyltransferase	4.90916e-05	1.56158e-05
+hypothetical protein	2.91561e-05	1.26597e-05
+Adenylyltransferase and sulfurtransferase	1.2063e-05	1.55771e-05
+Transposon Tn7 transposition protein TnsC	8.54184e-05	0.0025126
+Penicillin binding protein, 1A family	0.00325219	0.000330422
+Paraquat inducible protein A	0.00346881	0.000250421
+UPF0348 protein SAR1099	0.0139073	0.00229312
+PREDICTED	7.8846e-06	1.1555e-05
+Adenosylmethionine 8 amino 7 oxononanoate transaminase	8.47018e-05	0.00270896
+UniRef50_P52044	0.00214705	0.000607007
+Bifunctional enzyme CysN CysC	0.000675528	0.000190986
+Pirin like protein PA2418	9.49482e-06	7.65111e-06
+NADH dependent flavin oxidoreductase	7.84974e-05	0.000100808
+Beta ketoadipate enol lactone hydrolase	0.000741373	0.000121004
+Recombination O family protein	1.22869e-05	2.7784e-05
+UniRef50_Q9RTA5	0.00044126	0.00731509
+hypothetical protein	3.71264e-05	3.53944e-05
+5 hydroxyisourate hydrolase	2.19682e-05	9.88124e-05
+UniRef50_Q9RTA6	1.51733e-05	0.00304909
+Translation initiation factor IF 2	0.00011908	0.0115476
+cytochrome Cbb3	3.5132e-05	1.39052e-05
+hypothetical protein	6.583e-06	5.66492e-05
+UniRef50_C7BXE2	8.60005e-05	0.00257172
+UniRef50_F3S6G5	5.44464e-06	5.80775e-06
+Cytochrome c oxidase subunit 3	7.63262e-06	8.71461e-06
+hypothetical protein	4.44468e-06	5.62627e-06
+UDP galactopyranose mutase Glf	0.00147477	0.000460982
+UniRef50_W6V4Z4	2.7469e-05	0.000491029
+Membrane protein, putative	0.000388225	1.86441e-05
+Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase	0.00198341	0.000504004
+Ribulose phosphate 3 epimerase	1.32641e-05	0.000169675
+hypothetical protein	3.22745e-06	4.31854e-06
+NAD NADP transhydrogenase beta subunit	3.95112e-06	3.41188e-05
+WGS project CAID00000000 data, contig chromosome 04	2.79669e-05	6.54255e-06
+hypothetical protein	0.000128086	1.05819e-05
+Ribosomal RNA small subunit methyltransferase H	1.15397e-05	3.84355e-06
+UniRef50_I0HWW2	5.49679e-06	2.83458e-06
+hypothetical protein	0.000489038	9.75263e-06
+Aminomethyltransferase, mitochondrial	1.55209e-05	3.91394e-06
+Release factor glutamine methyltransferase	0.00395489	0.00125528
+hypothetical protein	1.13736e-05	2.99995e-05
+UniRef50_W8TSF6	0.000807166	1.35527e-05
+GTP cyclohydrolase 2	0.00629502	0.000150646
+UniRef50_B7V9G1	0.00040371	6.79159e-05
+hypothetical protein	4.86298e-05	0.00473229
+Lipoprotein, putative	0.000380495	1.94259e-05
+UniRef50_J3D958	1.94589e-06	3.80594e-07
+UniRef50_H9KM75	1.82861e-05	4.32027e-06
+UniRef50_F8GU79	0.000325754	0.000494044
+Polyphosphate kinase	1.00738e-05	0.000220687
+UPF0340 protein SPT_0687	0.00609462	0.00348175
+amino acid lyase	2.10174e-05	2.21719e-05
+UniRef50_F0P462	0.0178258	0.00367099
+hypothetical protein	1.68873e-05	3.76209e-06
+Virulence associated cell wall anchored protein SasG	0.000704549	0.000371871
+sugar ABC transporter permease	0.000401465	0.000122917
+UniRef50_U6KDN7	6.05923e-06	6.74992e-06
+UniRef50_H9KJ92	7.20241e-06	0.0020397
+DEAD DEAH box helicase	3.03144e-05	1.71545e-05
+Purine nucleoside phosphorylase DeoD type	2.77976e-05	0.00379307
+Peptidyl prolyl cis trans isomerase	2.94521e-05	0.000188966
+UDP N acetylmuramate  alanine ligase	1.27668e-05	2.27227e-06
+Cell division protein ftsW	0.0100826	0.00295128
+UniRef50_A6LVT1	5.24764e-05	0.000782681
+Diaminobutyrate  2 oxoglutarate aminotransferase	0.000576008	0.0030457
+UniRef50_A6LVT2	0.000199092	8.77662e-05
+RES domain containing protein	0.0150608	0.00216468
+Ribosomal RNA small subunit methyltransferase H	2.89385e-05	4.64935e-06
+Polysaccharide deacetylase	0.000655326	0.000340936
+ATP dependent RNA helicase HrpB	0.0032816	0.000274831
+hypothetical protein, partial	9.28958e-07	3.99489e-06
+Metalloendopeptidase	0.000641048	0.00440961
+CoA transferase	4.80995e-06	6.62568e-05
+Putative IS1167, transposase	6.77697e-05	0.000145595
+Blr2408 protein	2.92938e-05	1.42421e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	1.06482e-05	8.83527e-06
+UniRef50_A3LIZ0	0.00100499	0.000602774
+Beta alanine  pyruvate aminotransferase	0.00123351	0.00278472
+UniRef50_U9I2I4	0.000103187	2.47409e-05
+Tra8	0.00614602	0.00123832
+DNA gyrase subunit A 	2.14616e-05	2.6231e-05
+Inositol 1 monophosphatase	0.00198145	0.000780214
+hypothetical protein	8.11054e-06	2.83417e-06
+UniRef50_Q9RS69	0.00124648	0.0483157
+UniRef50_Q7A7F8	0.0118527	0.000575018
+Chemotactic signal response protein, putative	0.000138621	3.84495e-05
+Phosphoglycerate kinase, chloroplastic	4.92715e-06	2.81419e-05
+hypothetical protein SMAC_10596, partial	4.97224e-05	4.68587e-05
+UniRef50_Q3IVS7	0.00520675	0.000881417
+UniRef50_Q3IVS4	0.00970813	0.00176206
+UniRef50_Q3IVS5	0.00611072	0.00178157
+3 oxoacyl [acyl carrier protein] synthase 3	7.6427e-05	8.58588e-06
+UniRef50_Q3IVS1	0.0103879	0.00156439
+D alanyl D alanine endopeptidase	0.00104562	0.000134314
+Type I secretion system ATPase 	0.000127927	3.79895e-05
+UniRef50_G2T6A4	2.63933e-05	2.00328e-05
+Drug resistance transporter EmrB QacA subfamily	0.000493633	0.000124598
+hypothetical protein	1.20378e-05	5.45794e-06
+Predicted RecB family exonuclease	0.00193476	0.000359231
+hypothetical protein	1.55038e-06	1.27109e-06
+UniRef50_E8SNW4	4.44896e-06	0.000131302
+heme biosynthesis protein HemY	0.000364221	0.0001515
+leucyl phenylalanyl tRNA  protein transferase	6.79661e-06	2.30904e-05
+hypothetical protein	4.40791e-05	2.81944e-05
+hypothetical protein	3.14709e-06	4.61228e-06
+Phosphate ABC transporter periplasmic substrate binding protein	7.10504e-06	0.00160533
+hypothetical protein	8.62604e-06	5.45978e-05
+Polyribonucleotide nucleotidyltransferase	4.51285e-06	0.000475503
+hypothetical protein, partial	0.000231242	0.000119268
+Acetolactate synthase small subunit	4.79943e-05	0.00044065
+Calcium binding hemolysin protein, putative	2.40625e-06	1.05587e-06
+ABC transporter permease	0.00344213	0.000208483
+UniRef50_A6DDD4	6.25372e-06	3.43821e-05
+AsnC family transcriptional regulator	3.83622e-05	4.59621e-05
+Protein disulfide isomerase like protein	0.00067258	0.000132037
+Putative phosphoenolpyruvate synthase regulatory protein	0.00112047	0.00271269
+UniRef50_A1B8P9	0.00482077	0.000239398
+UniRef50_R5TVL0	0.000376035	2.93537e-05
+UniRef50_C5YKS4	0.000197055	1.49833e-05
+hypothetical protein	1.95026e-06	2.16853e-06
+hypothetical protein	6.34433e-05	0.000113359
+Thiamine kinase	0.00414531	0.000310858
+UniRef50_G7VSI0	0.000478505	0.000304355
+UniRef50_K6UQ90	2.04619e-05	1.70945e-05
+UniRef50_S4Y5B1	6.56151e-06	1.16919e-05
+UniRef50_A7ZR32	0.000220784	0.0042083
+UniRef50_C0BG39	1.71051e-05	1.84073e-05
+Gp80	3.19225e-05	6.45892e-06
+UniRef50_M2QS37	6.1085e-05	0.000110936
+Sulfatase	5.60603e-05	0.000594697
+UniRef50_Q3IXU6	0.00801219	0.00084444
+hypothetical protein	9.92264e-07	1.15111e-05
+UniRef50_M9VQS2	0.00227204	0.00113279
+UniRef50_A7ADI2	6.08885e-06	6.18578e-05
+Ammonium transporter   Methylammonium transporter	0.000494579	0.00700753
+UniRef50_A7ADI0	0.00050941	0.000125338
+FMN binding domain protein	0.000105062	0.000438415
+UniRef50_C6STS8	0.00206582	0.000359139
+drug resistance transporter, EmrB QacA family protein	0.000118565	4.14664e-05
+UPF0702 transmembrane protein YcaP	0.00115677	0.000259683
+UniRef50_R1DSU7	5.01807e-05	4.34402e-05
+S adenosylmethionine synthase	0.00375043	0.000376811
+UniRef50_B0V5M9	0.000129942	0.00228262
+Tryptophan biosynthesis protein TrpCF	0.00315758	0.000500495
+D xylose proton symporter	0.000194118	0.0014162
+hypothetical protein, partial	1.64286e-06	2.46952e-05
+UniRef50_B0VLP6	0.000134022	0.00259346
+Phosphoribosylformylglycinamidine synthase 1	1.4063e-05	5.97706e-06
+Virulence factor related protein	0.000168204	0.0147424
+UniRef50_E0XV99	0.00143706	0.000587176
+RNA pseudouridylate synthase	0.0136018	0.00248267
+Glutamate 1 semialdehyde 2,1 aminomutase	6.42258e-06	1.86777e-05
+UniRef50_N9IVN2	0.000166884	0.0012223
+TRAP transporter solute receptor, TAXI family protein 3	0.000123112	3.70727e-05
+Tryptophan synthase beta chain	5.46047e-06	3.64078e-06
+hypothetical protein, partial	2.67284e-05	0.000199409
+UniRef50_D8JFA0	6.11906e-05	0.00390383
+Dephospho CoA kinase	0.0224907	0.000801143
+UniRef50_H3UL21	6.83038e-05	5.69301e-05
+NADH quinone oxidoreductase subunit I	4.71291e-06	7.06701e-06
+30S ribosomal protein S1	0.00422534	0.00210445
+Two component heavy metal response transcriptional regulator, winged helix family	0.000960449	0.00529594
+Acetylglutamate kinase	5.48467e-06	5.60858e-05
+3 ketoacyl CoA thiolase	0.000332084	0.000244868
+Putative ABC transporter ATP binding protein VPA1482	9.56737e-06	6.90411e-06
+transcription elongation factor NusA	7.72622e-06	4.9278e-06
+UniRef50_R5Q2U1	8.79992e-06	0.000204087
+Dihydrodipicolinate reductase	0.000168963	0.000149701
+UniRef50_G4NFF6	4.18589e-06	2.65049e-06
+hypothetical protein	9.24224e-06	6.26628e-06
+Protein mrp homolog	0.00233116	0.000711331
+UniRef50_H8WB63	6.95024e-05	3.43674e-05
+SugE like protein	0.000323604	0.000540873
+hypothetical protein	5.13358e-06	8.87234e-05
+PREDICTED	3.72665e-05	3.37073e-05
+UniRef50_W8FIF9	0.000530691	5.46004e-05
+UniRef50_W8WQR1	0.00158592	0.00031362
+Protein MazG	0.00252003	0.000108305
+UniRef50_P58213	0.00235106	0.000524675
+N acetylglucosamine 6 phosphate deacetylase	0.00574132	0.00380384
+Predicted Zn dependent protease	0.000694169	0.0019133
+glycine cleavage system protein H	9.402e-05	1.7275e-05
+AMP dependent synthetase and ligase	5.51418e-05	0.0110719
+UniRef50_A3SWD6	7.69688e-05	2.4651e-05
+Glycine  tRNA ligase alpha subunit	0.00668972	0.00186833
+hypothetical protein	2.66346e-05	5.92889e-05
+Oligoribonuclease	0.00413316	0.00208815
+DNA mismatch repair protein MutS	1.86349e-06	9.768e-06
+UniRef50_P0ABD2	0.00308704	0.00441364
+Citrate transporter	0.000603568	0.000999254
+MULTISPECIES	2.31008e-05	1.54882e-05
+UniRef50_I0IBX7	6.34241e-06	4.4354e-06
+Acetolactate synthase large subunit	0.000142432	0.00036881
+UniRef50_C2QP87	3.86123e-06	0.000100206
+Amino acid ABC transporter ATPase	0.00409737	0.000340094
+UniRef50_W7CBE0	1.89368e-05	9.56018e-06
+Twitching mobility protein	0.000337036	0.00233038
+Cell envelope related transcriptional attenuator	0.000547505	0.000658256
+MFS transporter, partial	4.7336e-06	5.49682e-06
+chemotaxis protein CheW	4.21426e-05	3.44681e-05
+TetR family regulatory protein	0.0110581	0.000509173
+Protoheme IX farnesyltransferase	0.000113571	0.0362411
+N acetyl gamma glutamyl phosphate reductase	0.00532333	0.000594679
+hypothetical protein	4.23055e-06	4.05415e-06
+LemA family protein	0.000674094	0.00303988
+hypothetical protein	2.53208e-05	9.83619e-07
+hypothetical protein	1.0662e-05	1.93169e-05
+PREDICTED	3.52322e-06	3.03507e-06
+UniRef50_I4D4X7	1.5284e-05	1.36138e-05
+hypothetical protein	3.11667e-06	2.45363e-06
+UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00128417	0.000471128
+UniRef50_H8GZE1	0.000289833	7.50004e-05
+hypothetical protein	3.37335e-06	3.723e-06
+UniRef50_M5AS85	0.000109591	2.11189e-05
+Serine type D Ala D Ala carboxypeptidase	0.00837865	0.000534561
+Protein containing YCII related domain protein	2.15889e-05	7.70942e-06
+UniRef50_C5YUZ9	5.33534e-06	0.000156907
+UniRef50_F2AB45	0.000118113	8.89179e-05
+hypothetical protein	0.00721274	0.000422494
+L threonine 3 dehydrogenase	2.81585e-05	2.72298e-05
+N ethylmaleimide reductase	0.00287566	0.00115006
+hypothetical protein	5.50904e-05	3.15408e-06
+3 oxoacyl [acyl carrier protein] synthase 3	0.000148967	5.7281e-06
+PREDICTED	4.40454e-05	1.79011e-05
+Aminomethyltransferase	0.00304636	0.000413992
+hypothetical protein	7.08758e-06	6.42747e-06
+30S ribosomal protein S2	2.21027e-05	1.03541e-05
+hypothetical protein PFL1_01689	1.75369e-06	1.64561e-06
+Endoribonuclease YbeY	0.0061066	0.000436088
+hypothetical protein	2.06392e-05	1.71902e-05
+Attachment protein G3P	0.00152462	0.000143198
+phospholipase	2.57489e-06	1.60208e-06
+UniRef50_UPI000333464B	5.62445e-06	2.64862e-06
+MrtD	0.00360875	0.000406266
+UniRef50_UPI00023B2A49	8.41433e-06	5.37113e-05
+UniRef50_M1MHF7	0.000107409	0.000391209
+Energy converting hydrogenase B subunit N EhbN	0.00278567	0.000706291
+hypothetical protein	2.00752e-05	3.474e-05
+Deoxycytidine triphosphate deaminase	0.00308364	0.00265995
+Fibrocystin L like protein	7.99393e-05	9.25641e-05
+4 hydroxybutyrate coenzyme A transferase	8.47729e-05	0.00327962
+DNA mismatch repair protein MutL	2.57971e-06	3.56784e-06
+Cell wall hydrolase, SleB	0.0103211	0.00386772
+Predicted protein	0.00022769	0.000118993
+Major facilitator superfamily MFS_1	0.000434769	0.000238803
+Peptidase U62 family	0.0036806	0.000852475
+UniRef50_A4KVC4	0.000112927	2.30541e-05
+UniRef50_Q8CTX4	0.0131427	0.00237505
+Cytochrome c, monohaem	0.00607399	0.00115594
+hypothetical protein	2.6168e-06	1.68627e-06
+Chaperone protein FimC	0.00128027	0.00168883
+30S ribosomal protein S2	1.83533e-05	9.52628e-06
+hypothetical protein	0.000473577	7.08475e-05
+hypothetical protein, partial	2.38533e-05	9.88428e-06
+UniRef50_Q8CTX9	0.0203795	0.00425869
+Lysophospholipase L2	0.000213681	0.000389571
+UniRef50_D8JMF9	0.000824312	0.00382628
+Protein rlx	0.000149521	1.21567e-05
+hypothetical protein TREMEDRAFT_73314	1.21121e-05	4.33545e-06
+Aminotransferase class III	0.000241889	0.000600238
+Aromatic compounds catabolic protein	1.06169e-05	0.000138843
+DNA directed RNA polymerase subunit alpha	3.38759e-05	2.25417e-05
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000683148	0.000718574
+UniRef50_G8AR80	8.6248e-05	2.31317e-05
+UniRef50_M4FRG3	2.41742e-06	1.52629e-06
+dTDP 4 dehydrorhamnose 3,5 epimerase	1.36331e-05	8.81825e-06
+Probable tRNA  N6) methyltransferase	0.00386742	0.000153478
+DNA directed RNA polymerase subunit beta	6.98328e-06	6.70329e-06
+UniRef50_A0A017HAS6	3.64716e-05	2.51213e-05
+UniRef50_X8LV27	0.000407658	1.33005e-05
+Polar amino acid transport system substrate binding protein	0.00102902	0.000735862
+UniRef50_P77376	0.00267372	9.94455e-06
+Octaprenyl diphosphate synthase	0.00418541	0.00195207
+UniRef50_P77375	0.00240556	0.000300284
+tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC	0.000188658	0.00409214
+DNA polymerase I	3.56775e-06	2.22862e-05
+UniRef50_V9VRV3	0.00041964	2.23039e-05
+PoxB protein	0.000487752	0.000315035
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00259577	0.00578881
+Putative zinc metalloprotease PA3649	0.000208731	6.77622e-05
+hypothetical protein	5.70311e-05	6.69182e-06
+DNA gyrase subunit A	0.0117138	0.00207282
+Argininosuccinate synthase	3.04546e-06	8.42689e-06
+UniRef50_G2JD71	0.0104016	0.00575988
+UniRef50_D3QGS2	0.0154451	0.00271914
+hypothetical protein	1.00822e-05	1.88341e-05
+long chain fatty acid  CoA ligase	6.20316e-06	3.02159e-06
+Lipoyl synthase, mitochondrial	4.82616e-06	1.79243e-05
+Membrane associated protein uidC	0.000685882	0.000211258
+Ribosomal RNA small subunit methyltransferase A	4.79921e-05	1.12342e-05
+GMP synthase [glutamine hydrolyzing]	2.68985e-06	7.72445e-06
+UniRef50_J3N4D6	0.000120541	5.28538e-06
+Minor tail protein gp26 related protein	0.000117134	0.0289316
+Leucyl phenylalanyl tRNA  protein transferase	1.87773e-05	3.80563e-05
+UniRef50_C6SU64	0.00402296	0.00178308
+Adenosylhomocysteinase	0.00574676	0.00186187
+Probable GTPase ArgK	0.003867	0.000491782
+Peroxiredoxin 6	0.000163109	0.0015837
+Glutamate  tRNA ligase 1	2.74954e-05	7.59812e-06
+UniRef50_G2JIJ8	0.000237006	0.00486158
+UniRef50_A6LX78	0.000222565	0.000485698
+UniRef50_F0MTD0	9.05297e-05	0.000264606
+Thiamine biosynthesis lipoprotein ApbE	0.000215506	0.000204058
+UniRef50_A6LX73	0.000483299	0.000724317
+hypothetical protein	3.05631e-06	6.27659e-06
+UniRef50_A6LX76	8.64423e-05	7.85519e-05
+Peptidase M23	0.000145692	0.0054324
+Methyltransferase type 12	0.00218254	0.000726207
+Kinase domain containing protein	0.000296124	0.00345302
+Inner membrane translocator	0.000295609	0.0262248
+Filamentous hemagglutinin family N terminal domain protein	1.82247e-05	0.000211097
+UniRef50_A5G215	3.81367e-05	2.67224e-05
+Putative 26S protease regulatory subunit homolog MTBMA_c13930	0.00348582	0.000265222
+NADH ubiquinone oxidoreductase subunit	2.57927e-05	5.07698e-05
+Peptidase U61 LD carboxypeptidase A	0.000117949	0.00120146
+DNA directed RNA polymerase subunit beta	0.000216533	0.00398093
+Methionine  tRNA ligase	4.62461e-06	2.5729e-06
+Triosephosphate isomerase	0.00779341	0.0011899
+UniRef50_R4ZRY7	0.00313407	0.00111791
+hypothetical protein	1.93492e-05	3.58826e-05
+amidohydrolase	4.64138e-06	1.37894e-05
+UniRef50_D8TSH0	1.33618e-06	3.1891e-07
+Probable cytosol aminopeptidase	0.0207511	0.00272145
+Sensor histidine kinase	0.00480267	0.000947827
+UniRef50_B9DZ45	6.66661e-06	1.00005e-05
+cation	0.00105563	0.000194804
+UniRef50_A3PHP3	0.0125887	0.00141553
+hypothetical protein	3.09946e-06	2.63049e-06
+PhoP family transcriptional regulator	1.53682e-05	1.98961e-05
+hypothetical protein, partial	6.77021e-05	4.56033e-05
+Glycerol dehydrogenase	0.00482457	0.00126042
+Transcriptional regulator, PadR like family	4.70952e-05	7.14798e-05
+CRISPR associated endonuclease Cas9 2	0.00102739	0.000118652
+dihydrolipoamide succinyltransferase	1.31061e-05	7.75944e-05
+hypothetical protein	0.000329047	0.000124788
+Hydrogenase maturation protein	0.000468899	5.37766e-05
+hypothetical protein	2.73117e-05	0.0001047
+hypothetical protein	2.81194e-05	2.45451e-06
+transcriptional regulator	4.35892e-05	4.62533e-05
+macrolide ABC transporter ATP binding protein	6.64081e-06	1.57877e-05
+Prolipoprotein diacylglyceryl transferase	4.06421e-05	9.75928e-06
+UniRef50_P32694	0.0019589	0.000244084
+UniRef50_J3LNJ2	3.59563e-05	3.14438e-05
+UniRef50_P32690	0.0031727	0.00205819
+hypothetical protein	0.000265184	2.23225e-05
+Alcohol dehydrogenase 1	0.0188021	0.00600537
+UniRef50_A6LVI5	0.000129775	0.000644242
+hypothetical protein	1.32459e-05	0.000325329
+UniRef50_K6YA48	4.01368e-05	9.03078e-06
+UniRef50_R4X5W4	1.71894e-05	1.66525e-05
+Peroxisomal catalase A	2.60976e-06	2.32567e-06
+hypothetical protein	1.64796e-05	4.39124e-06
+UniRef50_A4WW59	0.0119495	0.00119565
+hypothetical protein	0.000143355	8.35689e-06
+Predicted protein 	0.0005644	0.000140735
+Phospho 2 dehydro 3 deoxyheptonate aldolase	1.22515e-05	0.00206853
+Translation initiation factor IF 2	0.00705697	0.00107745
+Phosphoribosylamine  glycine ligase	0.00778678	0.00498236
+Transcription repair coupling factor	2.5895e-05	0.000631336
+UniRef50_A4XNW6	0.000103748	6.12529e-05
+Chromosome  partitioning protein ParA   Sporulation initiation inhibitor protein Soj	8.85834e-06	8.37837e-06
+PTS system transcriptional activator	0.000244121	0.000439711
+UniRef50_D8GIQ6	0.000298271	0.000628795
+Lipid A export ATP binding permease protein MsbA	0.00446864	0.000749422
+ABC transporter, ATP binding protein	6.26501e-06	2.74498e-05
+Alpha beta hydrolase	0.0224822	0.00366363
+UniRef50_Q9A759	0.0117828	0.0011576
+Dihydrofolate reductase	0.00193594	0.00103558
+4 hydroxythreonine 4 phosphate dehydrogenase	0.00212306	9.19927e-05
+PTS system EIIBC component	3.48593e-05	4.51249e-05
+DNA directed RNA polymerase subunit alpha	0.00146511	0.00042959
+UniRef50_K0C9F8	0.00140357	0.000475052
+GDP L fucose synthase 1	0.0113293	0.00188149
+UniRef50_M4RRJ2	4.42749e-05	0.000531196
+ABC type multidrug transport system, ATPase and permease component	0.00561797	0.00100537
+Modulator of drug activity 	0.0017891	0.000242008
+Phosphotriesterase homology protein	0.00499748	0.000485693
+Fructokinase	0.0055499	0.000701456
+Cell division protein FtsX	0.000114602	0.000595466
+UniRef50_G7R423	0.0016133	0.000336273
+Transcriptional regulator, DeoR family protein	0.00166829	0.000461757
+Mobile element protein	0.000147929	1.52768e-05
+TRAP transporter solute receptor, TAXI family	6.20958e-05	1.05508e-05
+Prostaglandin F synthase	0.0162713	0.000122689
+UniRef50_C6SP93	0.00104396	0.000351753
+Glutamine synthetase	0.000600591	0.00028396
+UniRef50_C5N176	0.0131618	0.000618275
+hypothetical protein	8.99575e-06	6.46654e-06
+UniRef50_Q9RWP2	0.000174377	0.00738593
+UniRef50_B9E1D0	0.000201705	0.000829319
+hypothetical protein	3.54278e-06	2.12745e-06
+hypothetical protein	7.78542e-05	1.66637e-05
+AraC type DNA binding domain containing protein	0.000107524	0.00347772
+hypothetical protein	2.36098e-05	2.03682e-05
+Amino acid permease	0.00576989	0.00045613
+UniRef50_A4WYK2	0.0023538	0.000185528
+peptide ABC transporter substrate binding protein	6.52325e-06	1.41649e-05
+Cation transport protein	2.94027e-06	1.56949e-06
+UniRef50_A3M2E6	0.000362099	0.00554331
+hypothetical protein, partial	1.74131e-05	6.06256e-06
+UniRef50_A3M2E8	0.000613735	0.00426994
+UniRef50_A3M2E9	0.000357988	0.00706348
+AsnC family transcriptional regulator	0.00190957	0.00144959
+UniRef50_B7V4F8	0.000711364	0.000139148
+Radical SAM domain protein	0.000448778	0.000143095
+UniRef50_Q8X9H6	0.00245172	0.0004983
+L tartrate dehydratase subunit beta	0.0026629	0.000281457
+PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component	0.00498648	0.00243482
+Signal peptide protein	0.000430063	0.00377023
+hypothetical protein	9.20204e-06	2.93923e-06
+hypothetical protein	1.69599e-06	2.00389e-05
+30S ribosomal protein S3Ae	0.00191547	0.000158072
+hypothetical protein	2.10687e-06	1.78491e-06
+UniRef50_UPI0003C13594	6.98903e-06	1.02645e-05
+CaiB BaiF family protein	0.000695158	0.000153524
+PE PGRS family protein PE_PGRS16	2.45895e-05	5.17629e-06
+histidinol dehydrogenase	3.30391e-06	6.32144e-06
+Protein NrdI	0.035683	0.00385957
+UniRef50_F2U7G5	1.11033e-05	1.24276e-05
+hypothetical protein	5.24907e-05	7.78999e-06
+Cyclic pyranopterin monophosphate synthase	4.13197e-06	0.000118342
+hypothetical protein	3.22429e-05	3.45784e-05
+TraU	8.2991e-05	3.61638e-06
+Nitrogenase	0.000704259	0.000804897
+Pneumococcal vaccine antigen A	0.00630085	0.00153511
+hypothetical protein	0.000244398	1.8882e-05
+ATP dependent protease ATPase subunit HslU	0.0187418	0.00349664
+4 hydroxy tetrahydrodipicolinate synthase	5.68931e-06	0.00134555
+Tryptophan halogenase	9.45361e-05	0.00512156
+hypothetical protein	2.04233e-05	1.15511e-05
+Marine sediment metagenome DNA, contig	3.1496e-05	3.16359e-05
+Dihydroorotate dehydrogenase 	0.000242177	0.000450934
+UniRef50_E8NJT6	0.000288858	0.000636808
+hypothetical protein	1.54662e-05	2.83474e-05
+Ribosome binding factor A	0.00190499	0.000240066
+Cell division protein FtsX	0.00366447	0.000296254
+UniRef50_G7LXG1	0.000433022	0.00124971
+UniRef50_J0XSC7	0.00134619	0.00063284
+UniRef50_R4K915	0.00101228	0.000162949
+UniRef50_Q5P303	2.1154e-05	1.6946e-05
+hypothetical protein	2.60668e-06	0.000132981
+hypothetical protein	1.95319e-05	1.18129e-05
+UniRef50_A4V9J4	0.00139888	0.000114062
+chemotaxis specific methylesterase	4.66197e-05	4.28654e-06
+hypothetical protein	3.56911e-06	3.7401e-06
+APC family transporter	7.23242e-05	0.000156074
+hemolysin	0.000179067	0.000122266
+GTP cyclohydrolase 1 2	0.000154175	4.85763e-05
+PREDICTED	1.68439e-06	6.43783e-07
+UniRef50_G7U615	0.00158437	0.00199594
+UniRef50_Q8XD75	0.00260104	0.000283577
+Phosphoserine phosphatase	0.000157511	0.0034023
+UniRef50_Q8CU16	0.00793193	0.00123016
+Ribosomal RNA small subunit methyltransferase D	0.0202536	0.00469016
+UniRef50_Q8CU14	0.00767781	0.00135425
+Bifunctional polymyxin resistance protein ArnA	0.00271846	0.000514202
+UniRef50_W4K6C3	0.000194988	6.76251e-05
+UniRef50_A6LT03	0.00040555	0.00184042
+30S ribosomal protein S3	0.000196812	0.000192053
+hypothetical protein	3.33864e-06	3.6738e-06
+UniRef50_A6LT04	0.000143212	0.001223
+hypothetical protein	3.32435e-05	3.77233e-06
+ATPase P 	4.87148e-05	0.000125485
+penicillin binding protein	2.09585e-05	4.34909e-06
+Hydroxyethylthiazole kinase	0.000389869	0.00039187
+hypothetical protein	2.06789e-05	1.09889e-05
+UniRef50_X5ETF8	5.54183e-05	0.000235923
+Precorrin 4 C methyltransferase	0.000440586	0.00170165
+Conjugal transfer entry exclusion protein	0.000153909	0.00713829
+UniRef50_T8R2K9	5.18874e-05	8.39276e-05
+hypothetical protein	4.17928e-05	6.0132e-06
+UniRef50_K4IEB3	1.64796e-05	1.35068e-05
+UniRef50_A3U1Q1	0.000275795	1.35399e-05
+UPF0042 nucleotide binding protein PPA0813	0.00011552	0.00324275
+UniRef50_E2ZUC7	0.000488656	0.000690939
+UniRef50_B2UUB5	0.00030268	0.0017488
+hypothetical protein	0.000170175	0.000293415
+UniRef50_W7QIQ7	0.000734919	4.06545e-05
+PREDICTED	3.22059e-05	3.37709e-05
+UniRef50_R9E884	6.95739e-05	1.94067e-05
+N acyl L amino acid amidohydrolase	0.0211903	0.00379525
+UniRef50_Q3IW43	0.0076033	0.00144475
+Protein translocase subunit SecDF	0.00438006	0.00101482
+UniRef50_A9M2X4	0.000133551	0.00171221
+Transcriptional regulator, PadR family	0.000122736	1.97016e-05
+hypothetical protein	2.42589e-05	1.04884e-05
+UniRef50_M9VF07	0.000240009	0.00272137
+Salicylate hydroxylase	0.0174524	0.0025628
+Cobyrinic acid A,C diamide synthase	1.02663e-05	0.000117557
+UniRef50_D9VBV2	2.69487e-05	3.69683e-06
+3 hydroxybutyryl CoA dehydrogenase	0.00468323	0.00108749
+hypothetical protein	8.79569e-06	1.11484e-05
+Primosomal protein N  directs replication fork assembly at D loops, ATP dependent	5.93909e-05	0.00277635
+UniRef50_U4PWH4	2.3351e-05	4.90329e-05
+molybdate ABC transporter permease	9.69479e-06	1.03292e-05
+UniRef50_Q5Z022	8.2003e-06	1.56366e-05
+hypothetical protein	5.53018e-05	7.19654e-06
+UniRef50_Q8NV29	0.00149651	0.000191848
+hypothetical protein, partial	5.23006e-05	9.40148e-05
+UniRef50_I0K765	2.67394e-06	5.05398e-05
+hypothetical protein	9.23896e-06	7.28276e-05
+hypothetical protein	3.23993e-05	7.88604e-06
+PREDICTED	1.87814e-06	1.06224e-06
+MULTISPECIES	8.04916e-05	6.38178e-06
+aldolase	8.36818e-05	1.79389e-05
+Citrate synthase 	0.00168651	0.000124034
+hypothetical protein	1.53642e-06	4.50493e-07
+Energy coupling factor transporter ATP binding protein EcfA1	1.70144e-05	5.46272e-06
+LysR family transcriptional regulator	3.63619e-05	9.27275e-06
+ATP synthase subunit alpha	3.08558e-06	8.49908e-06
+Biotin requiring enzyme family protein	0.0158644	0.000923264
+Generic methyltransferase	0.0150559	0.00389705
+Tetraacyldisaccharide 4 kinase	0.00039434	0.000104038
+UniRef50_A0A020BXU1	0.00163488	0.000260832
+Ribonuclease H	2.73445e-05	1.08646e-05
+Inner membrane transport permease YbhS	0.00179774	8.66649e-05
+Penicillin binding protein 2	5.89331e-06	5.50816e-06
+N acetylmannosamine kinase	0.000279347	0.00144102
+Inner membrane transport protein YeaN	0.00172519	0.00018333
+Bacitracin export ATP binding protein BceA	0.0212832	0.00355698
+hypothetical protein	8.46934e-06	2.27115e-05
+Transcriptional regulator, DeoR family	0.00597119	0.00148262
+Iron hydroxamate import ATP binding protein FhuC	0.00225302	0.00208455
+Rhodanese like domain protein	1.99096e-05	3.50018e-05
+putative ABC transporter ATP binding protein	9.51878e-07	6.07195e-06
+UniRef50_A6UAR8	0.000949431	0.00026405
+hypothetical protein	3.29126e-05	2.19591e-05
+glutathione ABC transporter permease	7.42677e-06	2.19232e-05
+hypothetical protein	0.000204544	8.34236e-06
+N anthranilate isomerase	0.000768477	0.000799829
+UniRef50_A5UL11	0.000558943	0.00016535
+UniRef50_B0VDS9	0.000318012	0.00233155
+Fructose repressor	0.0169633	0.00173386
+hypothetical protein	1.82719e-05	2.00437e-05
+DNA polymerase III subunit alpha	8.47488e-05	0.0236211
+Transposase domain containing protein 	0.000137852	7.38356e-06
+Anaerobic sulfite reductase subunit B	0.00151728	0.000295998
+Cof like hydrolase	0.000372563	0.00067431
+Thioredoxin 1	0.00654259	0.00059069
+UniRef50_D2JGC9	2.85964e-05	3.08904e-05
+4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000392861	0.00338468
+Sensory transduction protein LytR	0.00908337	0.00155721
+UniRef50_V4RNU3	0.000123283	1.81542e-05
+Phage head tail adaptor, putative, SPP1 family	0.000739347	0.000578394
+hypothetical protein	2.57829e-05	2.14773e-05
+Transposase ISNCY family	0.00218223	0.00427772
+Probable sensor like histidine kinase YedV	0.00243735	0.000469705
+HD domain protein	1.7274e-05	3.469e-05
+Chromosome partitioning protein ParA	0.000717544	7.31899e-05
+UniRef50_A9BWW9	0.000123142	1.77091e-05
+UniRef50_V5SYK3	0.00087206	4.98251e-05
+hypothetical protein	3.16637e-05	1.58781e-05
+hypothetical protein, partial	7.00556e-05	2.22081e-05
+hypothetical protein	1.07737e-05	7.08692e-06
+ATPase, ParA type	0.000639237	0.000103466
+Cystathionine beta lyase	0.00315972	0.000292451
+UniRef50_A0R8M3	2.21704e-05	0.000412835
+Glucose 1 phosphate adenylyltransferase 1	7.52148e-06	5.92034e-06
+hypothetical protein, partial	2.57884e-05	0.000287834
+FMN oxidoreductase	0.000133551	0.00401311
+Ribonuclease H	4.64062e-05	1.07621e-05
+Indolepyruvate oxidoreductase subunit IorA	0.00313545	0.000596594
+UniRef50_Q3J4T8	0.010457	0.00155133
+hypothetical protein	1.3248e-05	9.96669e-06
+Adenine deaminase	1.39505e-05	2.64043e-06
+Lipoprotein releasing system transmembrane protein LolE	0.0018246	7.86896e-05
+UniRef50_Q3J4T7	0.010718	0.00233417
+UniRef50_D3E2W0	0.00276763	0.000517971
+DctM 	0.000808681	0.000139854
+2 oxoglutarate synthase subunit KorA	0.0028244	0.000417029
+Amine oxidase	9.52496e-05	0.0303999
+UniRef50_D2ZP63	0.00178996	0.000145811
+diguanylate cyclase	3.03596e-06	6.56722e-07
+Electron transfer flavoprotein alpha subunit EtfA	0.000247881	9.13376e-05
+Cell surface protein	1.05382e-05	0.00052495
+Putative membrane protein	1.07355e-05	8.34789e-06
+PREDICTED	1.72783e-05	8.57069e-06
+hypothetical protein	0.00190514	0.00019173
+UniRef50_B7M3G3	1.187e-05	0.000334523
+Arginine ABC transporter permease protein ArtQ	0.00210381	0.000548911
+acyl CoA dehydrogenase	3.9073e-06	6.32122e-05
+UniRef50_A6TUJ7	9.37461e-05	0.0004861
+UniRef50_B9KSZ0	0.00260638	0.00195184
+ACT domain protein	0.0130738	0.00291659
+chromosome partitioning protein ParB	2.78251e-05	8.77055e-05
+UniRef50_W1GGS3	0.000413037	0.000122657
+Aspartate  tRNA ligase	2.98312e-06	2.17692e-05
+UniRef50_A3V850	0.000100742	1.08079e-05
+UPF0210 protein NMA1908	0.00548097	0.00639099
+threonine transporter RhtB	4.3995e-05	2.17168e-05
+UniRef50_C5Y7E8	1.67063e-05	0.000135373
+hypothetical protein, partial	0.000108922	0.000254348
+diguanylate cyclase	2.26674e-05	6.51772e-05
+hypothetical protein	0.000148315	3.06647e-06
+hypothetical protein	1.24847e-05	3.87486e-06
+3,4 dihydroxy 2 butanone 4 phosphate synthase	8.88556e-06	3.63664e-05
+hypothetical protein	0.000187725	3.27102e-05
+dihydroxyacetone kinase	1.28893e-05	0.000166499
+5 aminolevulinate synthase	0.0267304	0.00406722
+Marine sediment metagenome DNA, contig	5.51439e-05	3.26036e-05
+Ribose 5 phosphate isomerase A	0.00400942	0.000435849
+hypothetical protein	8.81867e-05	8.94004e-05
+FeS assembly ATPase SufC	3.86039e-05	7.94551e-05
+amino acid transporter	6.83186e-06	0.000534574
+Epoxyqueuosine reductase	0.00345929	0.000685515
+Putative branched chain amino acid aminotransferase	0.00358022	0.000349454
+UniRef50_F3Z639	1.02153e-06	8.52452e-06
+2 oxoglutarate dehydrogenase E1 component	1.75808e-06	4.31212e-06
+Cytochrome c oxidase subunit 3	7.18834e-05	1.54693e-05
+UniRef50_Q4Q523	2.64945e-06	1.98694e-05
+Peptide deformylase	8.66e-06	9.09081e-06
+hypothetical protein	1.00942e-06	9.56981e-06
+Probable chemoreceptor glutamine deamidase CheD	0.00176486	0.000380175
+Glutamate cysteine ligase	0.00608802	0.000361502
+UniRef50_F6G433	2.90461e-05	3.89778e-05
+Diacylglycerol kinase	0.000757272	0.000588566
+Ribonuclease H	5.62824e-05	1.00111e-05
+Conserved protein	0.0028068	5.65752e-05
+hypothetical protein	1.21834e-05	3.49091e-06
+Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.000807992	0.000672191
+hypothetical protein	1.02838e-05	2.01e-05
+PF05656 family protein	0.00502459	0.000209289
+2 oxoglutarate dehydrogenase	1.84168e-06	2.78412e-06
+TraU family protein	0.000114994	1.37086e-05
+hypothetical protein	0.000596599	0.000155617
+Transcriptional regulator, BolA protein family	3.05691e-05	5.0758e-05
+Transcriptional regulator, GntR family	0.000303571	0.000315825
+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.00034737	0.000564205
+Peptidase M19, renal dipeptidase	0.000812115	0.000223827
+flagellin domain containing protein	7.93088e-07	7.34576e-07
+hypothetical protein PFL1_02986	7.41862e-06	2.40718e-06
+Non canonical purine NTP pyrophosphatase	6.34097e-05	2.39475e-05
+UniRef50_A0A020D642	0.00042852	6.86185e-05
+Fe S oxidoreductase, putative	0.000193627	0.000573622
+Tagatose 6 phosphate kinase	0.000674359	0.000236057
+PREDICTED	3.82883e-05	1.67156e-05
+UniRef50_Q8H389	9.95072e-05	3.60174e-05
+GCN5 related N acetyltransferase	0.000255178	0.00065436
+Enolase	7.20696e-06	4.04466e-05
+UniRef50_I9J361	5.73281e-06	3.91474e-06
+UniRef50_M1MMR7	0.000101268	0.0011737
+6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic	0.0085369	0.00126463
+Ribonuclease J	7.4432e-05	3.40234e-05
+hypothetical protein	2.80961e-05	3.35475e-06
+UniRef50_UPI000329A978	1.57221e-05	9.41064e-06
+DNA gyrase subunit A	6.69349e-06	7.74162e-06
+UniRef50_V7EPQ5	0.000566514	3.67596e-05
+CsuC	0.000437674	0.00322807
+Respiratory nitrate reductase 1 beta chain	0.0116465	0.00389694
+Riboflavin biosynthesis protein RibBA	0.000627157	0.00301232
+Aspartate 1 decarboxylase	0.00174077	0.00130901
+UniRef50_J0HLU4	3.53368e-05	2.68947e-06
+hypothetical protein	7.59571e-05	0.000104652
+Cytochrome c oxidase polypeptide I+III	1.07117e-05	0.000118225
+Permease YjgP YjgQ family protein	0.00259135	0.000276067
+hypothetical protein	2.33374e-05	2.88021e-06
+L serine ammonia lyase alpha subunit	0.0246326	0.00291425
+hypothetical protein	1.03081e-05	6.68477e-06
+Aldehyde dehydrogenase family protein	0.0107633	0.00132601
+Phosphoribosylformylglycinamidine cyclo ligase	0.00358604	0.0017897
+3 hydroxyacyl CoA dehydrogenase, NAD binding, partial	2.96254e-06	3.04767e-06
+UniRef50_K8WXC5	0.00420998	0.000353484
+Low affinity potassium transport system protein kup	0.00240395	0.000496014
+hypothetical protein	1.08513e-05	6.60784e-06
+hypothetical protein	6.15201e-05	9.42106e-06
+hypothetical protein, partial	2.33008e-05	1.31425e-05
+UniRef50_C5B3S3	0.000309308	7.87915e-06
+UniRef50_A6QIH4	0.0096343	0.000366469
+hypothetical protein	4.62465e-06	3.71602e-06
+UniRef50_Q82A73	4.62341e-06	8.70602e-05
+Phage head tail adaptor	7.63517e-05	1.43856e-05
+hypothetical protein	0.000935498	7.98072e-05
+Phosphate specific transport system accessory protein PhoU	0.00229074	0.000167509
+C4 dicarboxylate transport protein	0.000116587	0.00390058
+hypothetical protein	0.000718629	0.000251607
+UniRef50_H8LWD1	0.000487285	0.00455795
+UniRef50_R4Z0C6	2.85185e-05	1.48048e-05
+hypothetical protein	0.000116728	8.26462e-06
+ABC transporter, ATP binding protein	0.00357465	0.00227985
+Arginine repressor	1.82796e-05	0.0248414
+HD domain protein	3.72773e-06	6.45098e-06
+Phosphate starvation inducible E	0.000392924	0.000104846
+hypothetical protein	4.98924e-06	3.27463e-06
+Respiratory nitrate reductase gamma chain	0.00207724	0.000134208
+ClpB protein	0.000761735	0.000187958
+hypothetical protein	1.24318e-05	0.000651151
+Isochorismatase family protein	0.000198749	0.00227733
+ATP synthase subunit alpha	3.35353e-06	5.54416e-06
+UniRef50_B9KPP5	0.000592867	0.000325452
+Phopholipase D family protein	0.000179042	0.00190324
+Cytochrome c biogenesis ATP binding export protein CcmA	1.05835e-05	0.000180654
+LPS assembly protein LptD	0.00277471	0.000338624
+Iron  ABC superfamily ATP binding cassette transporter, membrane protein	0.0109395	0.00161768
+UniRef50_J7L817	7.65212e-05	1.5746e-05
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.00218167	0.000572453
+Bifunctional aspartokinase homoserine dehydrogenase 2	0.00318055	0.000470305
+NADH dehydrogenase (Quinone)	0.00496775	0.000409844
+Exotoxin	0.00955777	0.000131457
+UniRef50_D4HF81	0.000457768	0.00211318
+UniRef50_A0A019G9E1	0.000122583	1.82082e-05
+Sensory box protein GGDEF family protein	0.00116397	0.000201559
+PREDICTED	3.86483e-06	4.10555e-06
+UniRef50_A6LSU0	0.00131225	0.000152955
+UniRef50_Q9RXT7	0.000120196	0.0247257
+UniRef50_O05405	0.000150919	0.000273818
+Oxidoreductase, short chain dehydrogenase reductase family	0.000665981	0.000126102
+Urease accessory protein UreF	0.00907099	0.00112099
+hypothetical protein	3.44607e-05	3.03759e-06
+UniRef50_F9ZKH5	0.00123534	0.00290423
+hypothetical protein PFL1_03815	7.65363e-06	2.39788e-05
+hypothetical protein	1.24231e-05	7.9478e-06
+putative metallo beta lactamase superfamily hydrolase	8.07529e-05	9.05483e-06
+hypothetical protein	3.42928e-05	2.7159e-05
+UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase	0.00125257	0.00408275
+PREDICTED	9.03646e-06	1.77374e-06
+DNA repair protein RecO	1.68443e-05	3.58641e-05
+D erythrose 4 phosphate dehydrogenase	8.7404e-05	3.996e-05
+UniRef50_R7PYB9	0.00210956	0.000488246
+Inner membrane protein YgjV	0.000810673	0.000172996
+ABC transporter, ATP binding protein	0.000299368	0.001135
+Pyruvate dehydrogenase E1 component	0.00273194	0.000421433
+UniRef50_W4YDX4	1.56924e-06	5.08893e-06
+UniRef50_Q8DPY7	9.51598e-05	0.0020747
+ferredoxin	1.22535e-05	3.98087e-05
+hypothetical protein	2.72515e-06	2.16647e-06
+ABC branched chain amino acid transporter, periplasmic ligand binding protein	0.00657312	0.00065621
+UniRef50_F4FEB2	4.49592e-05	1.09582e-05
+Ribosomal RNA large subunit methyltransferase K L	0.000594738	3.04851e-06
+5 methylthioadenosine S adenosylhomocysteine deaminase	0.00481438	0.000576798
+UniRef50_D2N3E8	0.00649042	0.000666573
+Putative endolysin	1.8069e-05	6.64977e-06
+Amino acid permease family protein	0.000354053	0.000277881
+Murein DD endopeptidase MepH	0.00397334	0.000858698
+Signal recognition particle receptor FtsY	0.0023462	0.000888959
+Holliday junction ATP dependent DNA helicase RuvA	1.17146e-05	5.18449e-06
+Glutamine synthetase	1.01837e-05	1.92901e-05
+hypothetical protein, partial	1.80545e-06	4.06978e-05
+hypothetical protein	3.0471e-06	1.56021e-05
+Pirin related protein	1.48846e-05	0.00510603
+UniRef50_Q9ZMR3	6.16433e-06	0.00160267
+UniRef50_P41655	0.00298896	0.000322924
+UniRef50_C6SPD8	0.00250424	0.00115515
+Methionine aminopeptidase	5.71816e-05	2.25442e-05
+Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.00049804	0.00034119
+hypothetical protein	5.81185e-05	5.1113e-05
+Nucleoside diphosphate kinase	5.94139e-05	2.07799e-05
+UniRef50_A3JG79	1.65532e-05	4.44072e-05
+ATP	2.18443e-05	0.000303005
+Argininosuccinate synthase	0.000133308	0.0211494
+argininosuccinate lyase	1.97524e-05	5.25456e-06
+UniRef50_Q5HLL0	0.00921758	0.00109827
+Marine sediment metagenome DNA, contig	6.35948e-06	6.69093e-06
+Myo inositol 1 monophosphatase	0.00717433	0.000303036
+PIN domain containing protein	0.00448318	0.000575577
+Threonine  tRNA ligase	0.000602981	0.00371264
+QueT	0.000111482	3.38253e-05
+UniRef50_D3NWU2	3.23762e-05	9.34286e-05
+Carbohydrate ABC transporter substrate binding protein, CUT1 family	0.0118426	0.00160642
+hypothetical protein	3.71281e-06	6.35334e-06
+uracil permease	2.60226e-05	2.84708e-05
+hypothetical protein	3.02403e-05	4.82943e-06
+S adenosylmethionine synthase isoform type 2	0.000172228	0.0206799
+UniRef50_A0A059DU66	0.000112906	1.15437e-05
+Probable cyclic pyranopterin monophosphate synthase	0.00196443	0.000917984
+UniRef50_D8ULY9	1.4658e-05	7.10484e-06
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	0.00997988	0.000712093
+PREDICTED	1.94055e-06	8.11132e-06
+Carboxynorspermidine decarboxylase 	0.000162646	2.41485e-05
+Lysyl tRNA synthetase	0.000172294	0.00386448
+Non canonical purine NTP pyrophosphatase	0.000120719	1.13927e-05
+UniRef50_A0A025ZG79	0.00191158	0.000216659
+Putative integral membrane protein	9.75836e-06	1.97015e-05
+Biotin synthase	0.000175591	0.000111885
+D alanyl transfer protein DltB	0.00465405	0.00169636
+Glycosyl transferase	0.00153048	0.000146468
+UniRef50_B9KWR4	0.000287648	0.000204609
+UniRef50_F0VBH0	1.55282e-05	1.5594e-07
+PTS system beta glucoside specific EIIBCA component	0.000444197	0.000955957
+Citrate synthase	1.27142e-05	2.09982e-05
+3 isopropylmalate dehydrogenase	0.00133566	0.0188023
+hypothetical protein	0.000121843	2.9694e-05
+Protein DedA	0.00513939	0.00334595
+UniRef50_F5LXH0	8.06743e-05	9.25403e-05
+Protease3	0.00190006	0.000653107
+Chromosome replication regulator protein HdaA	2.81329e-05	5.23075e-06
+hypothetical protein	4.12225e-06	1.24756e-05
+UniRef50_U3U2D6	1.8143e-05	8.21614e-06
+Transcriptional regulator, RpiR family	0.000320027	0.000172663
+UniRef50_W6RVE8	0.000289297	0.00017709
+UniRef50_E6SIX1	1.36492e-05	2.80896e-05
+UniRef50_C6SS20	0.00427594	0.00094376
+UniRef50_P75967	0.0030135	0.00097805
+ADP dependent  NAD(P)H hydrate dehydratase	5.7269e-06	0.00151794
+UniRef50_P32106	5.24234e-05	0.00173115
+UniRef50_P75968	0.000908802	0.000129935
+peptidase	9.37892e-06	6.32891e-06
+GI15483	4.91943e-06	8.91847e-06
+50S ribosomal protein L17	5.55306e-05	1.98662e-05
+UniRef50_H8GWD9	0.000184242	0.0223398
+Biotin synthase	2.10682e-05	0.00233159
+Zinc containing alcohol dehydrogenase	0.00215606	9.11521e-05
+Periplasmic nitrate reductase	0.00195814	0.000477304
+UvrD REP helicase, partial	1.69906e-05	3.07987e-06
+Transcriptional regulator, LacI family	0.00066143	9.41141e-05
+UniRef50_P37629	0.0025792	0.00104231
+Macrolide export ATP binding permease protein MacB	4.24343e-06	2.03354e-06
+XRE family transcriptional regulator	0.000178452	1.06791e-05
+UniRef50_P37626	0.00301801	0.000248265
+NADP dependent isocitrate dehydrogenase protein	0.000259848	7.24325e-05
+2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase	0.000451668	0.000297297
+NTP pyrophosphohydrolase	0.00279714	0.000399044
+hypothetical protein	0.000408615	0.000126148
+Phosphatidylserine decarboxylase	0.00387622	0.000847268
+UniRef50_U5NRM8	0.00128947	1.77476e-05
+UniRef50_C3XBE9	2.36765e-05	4.7551e-06
+UniRef50_U5NRM4	0.000545071	0.000693909
+UniRef50_I0C7C2	0.0216169	0.00281942
+UniRef50_Q6F916	0.000153961	0.0033666
+Antirepressor	9.89892e-05	2.60245e-05
+hypothetical protein	6.13714e-06	2.035e-05
+UniRef50_P31666	0.00173528	0.000430781
+UniRef50_P31667	0.00417275	0.0010911
+UniRef50_P31665	0.00534137	0.000279847
+UniRef50_A0A029L0Z7	1.31676e-05	1.23737e-05
+Sugar efflux transporter	0.00316797	0.000927705
+UniRef50_W6RZK7	0.00170732	0.00166525
+Iron sulfur cluster assembly 2	0.000200963	1.64661e-05
+molybdate ABC transporter, inner membrane subunit, partial	4.59005e-05	1.5248e-05
+ribose transport ATP binding protein rbsA	1.00114e-05	2.4406e-06
+UniRef50_A6LS74	0.000405795	0.000990243
+50S ribosomal protein L17	0.000915681	0.00023879
+cytochrome C oxidase subunit I	2.0937e-05	2.9471e-05
+hypothetical protein	0.000130683	2.70625e-05
+Isoform 2 of Succinate  hydroxymethylglutarate CoA transferase	3.86992e-06	3.36739e-05
+Probable DNA directed RNA polymerase subunit delta	0.0208845	0.00343765
+ABC type Fe3+ transport system periplasmic component like protein	0.00791516	0.00108129
+DNA polymerase IV	4.08628e-06	3.93204e-06
+UniRef50_H9K7I8	5.61221e-06	5.09309e-06
+LrgA associated membrane protein LrgB	0.000462609	0.000903421
+Methyl accepting chemotaxis sensory transducer	0.000110465	0.000571791
+Transglutaminase domain protein	0.000131636	0.000616156
+sodium	6.84678e-06	3.26829e-06
+Putative osmoprotectant uptake system permease protein YehW	0.00572838	0.000248566
+Glutamyl tRNA amidotransferase subunit A	0.00348444	0.00592653
+Cytochrome bd ubiquinol oxidase subunit 2	4.23117e-06	0.000864415
+Enoyl CoA hydratase isomerase	0.000392858	0.00878594
+UniRef50_Q31ZL5	0.00217897	0.000678343
+UniRef50_S5UWP0	3.18323e-05	3.92088e-06
+PREDICTED	3.64183e-05	1.96661e-05
+hypothetical protein	3.98347e-06	5.20277e-06
+Membrane dipeptidase	0.0016111	0.000536149
+Uroporphyrinogen decarboxylase	3.38804e-06	0.000280182
+Phosphoglycerate mutase family protein	0.000171708	0.00245422
+hypothetical protein	0.000188375	2.05575e-05
+Hydrogenase 2 operon protein HybE	0.00289601	3.07215e-05
+hypothetical protein	1.99545e-06	4.84829e-05
+Response regulator ArlR	0.0272844	0.00645741
+sulfate adenylyltransferase	9.60459e-06	1.30268e-05
+UniRef50_A5ULA7	0.00358561	0.000509722
+Blue copper oxidase CueO	0.00452021	0.000453648
+hypothetical protein, partial	1.63971e-05	0.000277448
+Phospholipid glycerol acyltransferase	0.00448853	0.00109449
+hypothetical protein	4.15681e-05	0.000172082
+Protein containing TPR repeat	0.000343062	0.000178033
+UniRef50_Q46798	0.00275232	0.000589415
+Transcriptional regulator, TetR family	0.00787002	0.00173211
+UniRef50_U6KR03	3.15508e-05	0.000103201
+PAS sensor protein	2.06516e-05	1.78059e-06
+Putative methylthiotransferase jhp_0270	0.00016511	0.00281855
+PSP1 domain protein	0.000713108	0.000902455
+Universal stress protein family	0.0137539	0.000946299
+citrate lyase subunit beta	2.74712e-05	8.49233e-06
+UniRef50_F0YB09	1.77255e-05	8.4517e-06
+Bifunctional protein FolC	0.00198615	0.00229507
+Response regulator	0.0113363	0.000430753
+UniRef50_E6KSM2	0.000219539	0.00189526
+Argininosuccinate synthase	0.00148911	0.000159118
+UniRef50_A3U241	0.000195095	2.23422e-05
+Endonuclease III, putative	9.95706e-05	0.0103687
+Recombination protein RecR	0.0268285	0.00278744
+hypothetical protein	2.87873e-06	1.81516e-05
+NADH quinone oxidoreductase subunit G	0.000134223	0.00344137
+Lysine  tRNA ligase	7.22715e-05	0.0307843
+hypothetical protein, conserved	0.000204944	0.000120911
+Carbonic anhydrase family 3	2.08925e-05	2.2309e-05
+Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain	0.000981541	0.00101362
+Succinate dehydrogenase	0.000261618	0.000451573
+P protein	2.37543e-05	9.63079e-06
+hypothetical protein, partial	0.0024562	0.000685539
+Bifunctional enzyme IspD IspF	4.77781e-06	8.87965e-06
+Putative cell wall binding repeat 2 containing protein	9.05945e-06	4.58644e-05
+UniRef50_I1ASL8	0.000428443	2.38541e-05
+Alginate biosynthesis protein	0.000107638	0.0032174
+Transcriptional regulation of gcv operon	0.00209965	0.000494775
+UniRef50_T2L9X7	0.000673575	0.000171883
+TRAP transporter solute receptor, TAXI family	4.19824e-05	9.62351e-06
+UniRef50_J9P7N6	3.86167e-06	7.37552e-06
+Transcriptional regulator, SARP family	0.00254549	0.000212785
+Na translocating NADH quinone reductase subunit E	0.000657167	0.00249928
+UniRef50_J8TQ37	9.49945e-06	0.00169441
+Putative ATP	0.0229942	0.00235216
+GNAT family acetyltraansferase	0.00270654	0.00070635
+UniRef50_W1WJ38	0.000376733	0.00134276
+hypothetical protein	4.98621e-06	2.50949e-05
+Spermidine putrescine binding periplasmic protein SPBP	0.00769629	0.000598955
+Anhydro N acetylmuramic acid kinase	5.2728e-06	1.7171e-05
+hypothetical protein	1.63549e-05	2.56205e-06
+Putative outer membrane protein	3.61744e-06	3.02831e-06
+Na H(+) antiporter NhaB	0.00274754	0.000512288
+Serine  tRNA ligase	4.76745e-06	4.22534e-06
+UniRef50_P77234	0.00521073	0.000532313
+3 oxoacyl [acyl carrier protein] synthase 3	0.000231408	6.00558e-05
+MFS transporter	3.75315e-06	3.00759e-06
+Choline dehydrogenase related flavoprotein	0.000333756	0.00402873
+UniRef50_G2JDK1	3.70552e-05	0.00479085
+hypothetical protein	0.00183854	0.000882289
+UniRef50_J2DGW2	0.000145765	5.28563e-06
+Ribonuclease PH	1.02442e-05	1.31282e-05
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.69987e-05	2.17194e-06
+UniRef50_R4RS00	0.00128609	0.000717306
+hypothetical protein	3.41627e-05	5.01778e-06
+UniRef50_B2HW18	0.000148915	0.00246114
+UniRef50_Q2IFN9	0.000435897	0.000212307
+Chemotactic signal response protein, putative	7.73137e-05	2.12535e-05
+Replicative DNA helicase	0.000218561	0.00185476
+TRAP T family transporter, fused small and large inner membrane subunits	0.00225454	0.000559652
+hypothetical protein, partial	6.25237e-05	5.50712e-06
+Marine sediment metagenome DNA, contig	4.92278e-05	5.63396e-05
+alpha beta hydrolase	6.58935e-05	5.79006e-06
+hypothetical protein	1.39431e-06	5.4013e-05
+Blr5713 protein	1.52563e-05	8.74325e-06
+Amidophosphoribosyltransferase	0.000321406	0.00126071
+UniRef50_P21562	0.000110909	7.85447e-05
+Acyclic carotenoid 1,2 hydratase	0.000503723	0.000262101
+hypothetical protein	3.99434e-05	2.59895e-05
+Sorbitol dehydrogenase	0.015523	0.00149066
+Mannonate dehydratase	0.000363163	0.00157088
+UniRef50_N6UA20	0.00012037	8.81847e-05
+Transcription factor FapR	0.020739	0.00228582
+Dihydrolipoyl dehydrogenase	2.93725e-06	5.86156e-06
+UDP N acetylmuramate  L alanine ligase	0.00376055	0.00138122
+ABC type transporter, ATPase component	0.000356156	0.000209194
+UniRef50_A8L8S5	2.94342e-05	1.44516e-05
+NADPH	1.3402e-05	3.9118e-05
+Anthranilate phosphoribosyltransferase	0.00398888	0.000304366
+UniRef50_A6M0U5	0.000396884	0.000946417
+tRNA delta isopentenylpyrophosphate transferase	1.07496e-05	5.08721e-06
+Fumarate reductase succinate dehydrogenase flavoprotein domain protein	0.00403828	0.000464127
+UniRef50_Q5SIN6	0.00031518	0.000112724
+UniRef50_V9W081	3.72393e-05	5.95216e-06
+chromosomal replication initiation protein	3.1338e-06	3.19599e-06
+PREDICTED	4.11707e-06	1.24909e-06
+PTS system, lactose cellobiose family IIC subunit	0.000303183	0.00099086
+Delta aminolevulinic acid dehydratase	0.00392264	0.0045769
+Iron sulfur flavoprotein	0.00197659	0.000293395
+Succinyl CoA	0.000821281	0.00471803
+Carbamate kinase like protein YahI	0.00246587	0.000593356
+UniRef50_T1KRH7	4.64507e-06	0.000127342
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.000111904	0.00212077
+UniRef50_X8F0P6	8.59312e-05	2.26906e-05
+NADH quinone oxidoreductase subunit 4L, chloroplastic	0.0068903	0.000887984
+Acyl CoA dehydrogenase, short chain specific	0.0231349	0.00349753
+MULTISPECIES	2.0218e-06	5.19736e-06
+UniRef50_D8JEY6	8.74152e-05	0.00378451
+Succinyl CoA ligase [ADP forming] subunit beta	0.0128653	0.0018407
+Inner membrane protein YqjF	0.000432843	0.000564685
+hypothetical protein, partial	4.82517e-06	6.98062e-05
+UniRef50_A8AM44	0.00386573	2.76991e-05
+Protein CbxX, chromosomal	0.00704426	0.00113916
+PREDICTED	4.64344e-05	2.32404e-05
+hypothetical protein, partial	1.07689e-05	1.48345e-05
+Glutathione S transferase GstA	0.00237787	0.00017993
+UniRef50_V4LD81	4.4448e-05	5.14474e-06
+UniRef50_G3BCN3	1.39412e-05	1.18051e-05
+GMP synthase [glutamine hydrolyzing]	0.00447198	0.00414472
+PilS cassette	3.0159e-05	3.21872e-05
+ABC transporter associated permease	4.74458e-05	0.00245105
+hypothetical protein	0.000145438	1.00211e-05
+Protein export protein SecB	0.00226725	0.000192259
+hypothetical protein	5.02654e-06	4.71888e-06
+Protein translocase subunit SecD	6.27889e-05	0.00285554
+UniRef50_V9H6U9	1.63828e-05	1.81509e-05
+Heat shock protein DnaJ domain protein	1.08653e-05	9.29376e-06
+UniRef50_A5UK66	0.000587003	0.000352097
+Peptide chain release factor 2	0.0242258	0.00725771
+Lipid A biosynthesis acyltransferase	0.000141605	0.000252597
+UniRef50_U3HEJ8	0.000263914	3.52097e-05
+UniRef50_P37627	0.00229144	0.000576607
+hypothetical protein	0.000637674	0.000113713
+UniRef50_G7H917	9.01973e-05	6.58924e-06
+HTH type transcriptional regulator rot	0.00788538	0.000888358
+hypothetical protein	9.54731e-05	4.90161e-06
+acetolactate synthase catalytic subunit	1.42638e-05	8.67329e-06
+hypothetical protein	1.50054e-05	0.000954449
+formyl CoA transferase	1.90603e-05	0.00118489
+Pyrimidine utilization protein D	0.000677615	0.000531102
+Ribonuclease HII	0.00583957	0.000701127
+UniRef50_P64484	0.0103476	0.00195072
+UniRef50_Q6F8V9	0.000382351	0.00176711
+hypothetical protein, partial	1.57779e-05	3.55087e-05
+hypothetical protein	7.59199e-05	1.42977e-05
+Pyruvate carboxylase subunit A	1.10124e-05	0.00552875
+hypothetical protein	3.59385e-06	6.71581e-06
+ATPase	1.51527e-05	1.22178e-05
+UniRef50_V7YXX8	4.45875e-05	3.66321e-05
+UniRef50_K7SCS8	2.66714e-06	4.4999e-06
+Predicted phosphoesterase, YfcE	0.00107227	0.000166886
+PREDICTED	3.54984e-06	4.73555e-05
+Alkyl hydroperoxide reductase subunit C	0.0019265	0.00471285
+Cytochrome bd I ubiquinol oxidase subunit 1	0.00152984	0.00386315
+SAM dependent methyltransferase	6.26541e-06	5.45926e-06
+hypothetical protein	5.1984e-05	7.70511e-06
+protein phosphatase	1.15251e-05	1.14134e-05
+MFS transporter	7.25941e-06	6.21917e-06
+NADH quinone oxidoreductase subunit H 1	0.0112742	0.00230448
+Proteophosphoglycan 5	2.73343e-05	1.11188e-05
+Diguanylate phosphodiesterase	3.14278e-06	1.32953e-05
+Transcriptional regulator, AraC family	0.00116612	0.000268667
+SecA	3.76018e-05	2.50613e-05
+UniRef50_B7LY72	0.00223039	0.000966647
+Nucleoside diphosphate kinase 1	1.15677e-05	1.87815e-05
+MerR family transcriptional regulator, partial	2.56802e-05	0.00133537
+UniRef50_S3Y4R2	4.21806e-06	3.83335e-05
+Sucrose 6 phosphate hydrolase	0.00791629	0.000849736
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.000842014	0.00196756
+hypothetical protein	2.85429e-06	6.77416e-06
+D isomer specific 2 hydroxyacid dehydrogenase family protein	0.00925214	0.00110033
+UniRef50_Q6LLZ7	0.0202076	1.59823e-05
+DNA mismatch repair protein MutS	0.000341808	0.00167464
+hypothetical protein, partial	2.93944e-05	6.17932e-06
+Membrane spanning protein	0.0239137	0.00249799
+hypothetical protein	2.19658e-05	1.80799e-05
+Mrr restriction system protein	0.00254509	0.000825311
+flagellin	1.87066e-06	8.15218e-06
+aspartyl glutamyl tRNA amidotransferase subunit B	8.08173e-06	2.70151e-06
+Probable pyridoxal biosynthesis protein PDX1 	2.98741e-05	1.22335e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	4.51141e-05	2.62271e-05
+L serine dehydratase	1.0822e-05	1.50427e-05
+Inner membrane protein YqaA	0.0017449	0.000366469
+Bifunctional purine biosynthesis protein PurH	2.46426e-06	1.49729e-05
+Argininosuccinate lyase	0.00172388	0.000511668
+UniRef50_V6YPB4	3.14363e-05	9.97722e-05
+UPF0324 inner membrane protein YeiH	0.00360338	0.000471244
+Expressed protein 	4.66541e-05	0.000236698
+Peptidylarginine deiminase like enzyme	0.000129942	0.000312951
+Ribulose bisphosphate carboxylase, small subunit	0.000681788	4.2574e-05
+Ketopantoate reductase ApbA PanE domain protein	0.000231669	0.0013301
+hypothetical protein	5.47757e-05	9.60642e-06
+CTP synthase 1	1.88746e-06	6.31671e-05
+Secretory antigen SsaA	0.00808338	0.000226158
+Hydrolase	0.00506463	0.000239169
+Transposase	0.00124601	0.000180345
+Phosphopantetheinyl transferase	0.00517625	0.000412751
+spermidine putrescine ABC transporter ATP binding protein	4.41493e-06	5.47967e-06
+oxygen independent coproporphyrinogen III oxidase	2.76099e-05	4.83776e-05
+Membrane protein	0.00289198	0.000567872
+Transposase IS116	0.000358644	0.00028655
+rod shape determining protein MreB	3.11569e-05	3.25768e-05
+hypothetical protein	2.15166e-05	3.79623e-05
+UniRef50_H8H0T4	0.000410455	0.0188577
+UniRef50_W5VD93	0.000463207	1.81524e-05
+PREDICTED	0.000127696	1.19452e-05
+Pyruvate kinase 2	1.4225e-05	6.02609e-06
+UniRef50_D5P6E3	0.000397372	0.000387255
+UniRef50_I0E315	0.000351793	0.000257666
+Cell wall surface repeat protein	0.000138308	0.00117307
+Methylmalonyl CoA decarboxylase	0.00154842	0.000314212
+3 phosphoshikimate 1 carboxyvinyltransferase	4.5235e-05	0.00372676
+long chain fatty acid  CoA ligase, partial	3.32207e-05	5.268e-06
+hypothetical protein	7.93656e-06	1.44612e-05
+Methyl accepting chemotaxis protein	0.000517271	0.000756911
+Membrane fusion protein	0.00103839	0.00316422
+UniRef50_Q8FJ67	0.00249946	0.000136659
+Fimbrial assembly protein	0.000391679	0.000175704
+hypothetical protein	5.3013e-05	0.000975034
+MULTISPECIES	1.39884e-05	8.62657e-06
+UniRef50_A3S860	0.00118007	0.00030011
+UniRef50_D8HER7	0.00341964	0.00111171
+Erythronate 4 phosphate dehydrogenase	0.00395344	0.000465556
+ketol acid reductoisomerase IlvC, partial	7.48208e-05	7.90216e-05
+hypothetical protein	4.55946e-05	8.66166e-06
+Fructose 1,6 bisphosphatase class 2	1.3951e-05	0.000128297
+50S ribosomal protein L25	0.000346893	0.00107365
+UniRef50_A5N555	0.000351842	0.000511345
+hypothetical protein	2.47766e-05	1.76449e-05
+hypothetical protein	1.01908e-05	7.43919e-06
+citrate synthase	1.24589e-05	5.87697e-06
+Methyltransferase type 11	0.000174102	0.00041022
+UniRef50_Q63VA4	2.79245e-05	5.62209e-06
+UniRef50_C6SRX5	0.00556452	0.0016704
+dTDP glucose 4,6 dehydratase	0.00656023	0.000589248
+UniRef50_K0YWY6	1.21921e-05	1.04229e-05
+Histidine kinase internal region	0.000693326	0.00108236
+hypothetical protein	7.57107e-06	7.22979e-06
+hypothetical protein	4.67334e-05	0.000204056
+UniRef50_J9PAX2	0.000303895	6.74328e-05
+Aminomethyltransferase	7.52956e-06	0.00112094
+Excinuclease ABC subunit A domain protein	0.000185018	8.33795e-05
+UniRef50_P37016	0.00545324	0.00177052
+PTS system maltose and glucose specific EIICB component MalX	8.04499e-05	0.000318669
+UniRef50_E6RJY5	1.44519e-05	2.86876e-05
+PREDICTED	1.76541e-06	1.24667e-05
+hypothetical protein	4.49178e-05	1.81231e-05
+UniRef50_B9TLS4	9.12496e-05	0.00403556
+Putative dioxygenase subunit beta YeaX	0.00143138	0.000397149
+hypothetical protein	0.000137171	5.3912e-05
+Methionine synthase MetE	0.00289546	0.000260359
+Oxidoreductase, short chain dehydrogenase reductase family	0.00814119	0.000814101
+Sodium proline symporter	1.21327e-05	1.66348e-05
+UniRef50_P37018	0.00342819	0.000672444
+FAD binding domain protein	4.65221e-06	3.44659e-05
+Choline glycine betaine transporter	0.000286418	5.98886e-05
+Pyridoxine pyridoxamine 5 phosphate oxidase	8.88595e-06	0.0104893
+Glycerol 3 phosphate acyltransferase	0.00901666	0.000643312
+UniRef50_P55138	0.0038806	0.000313979
+hypothetical protein	1.22523e-05	1.06491e-05
+hypothetical protein	2.40252e-05	0.00014229
+Lactose operon repressor	0.00373481	0.000972641
+UniRef50_F0P751	0.0179569	0.0020744
+NLP P60 protein	0.000674675	0.000308572
+UniRef50_G7ZP32	0.018821	0.000480133
+Holliday junction resolvase	2.7587e-05	9.7393e-06
+UniRef50_W0ZB71	8.22035e-05	0.000122881
+Ribosomal RNA small subunit methyltransferase A	7.56523e-05	0.00042478
+Sulfate transporter 	0.000372942	7.9867e-05
+HAD family hydrolase	6.55661e-06	1.50343e-05
+UniRef50_I4EVD0	2.82029e-05	4.33428e-06
+Helicase	0.000140269	0.00360246
+Amino acid permease	0.00844835	0.00199813
+MULTISPECIES	1.74459e-05	2.58714e-06
+UniRef50_D2ZS89	0.00230404	0.00016535
+dihydroxyacetone kinase	6.58056e-06	0.000274787
+UvrD REP helicase	0.000228474	0.0180151
+Iron chelate uptake ABC transporter, FeCT family, permease protein	0.0102057	0.00150146
+UniRef50_G2L894	3.24685e-05	3.68075e-05
+Ribonuclease R	0.0108518	0.00102212
+resolvase, partial	0.0020587	0.00039576
+Ethanolamine utilization protein EutD	0.00147688	0.000318916
+UniRef50_Q3JHV2	0.0129814	0.000939384
+PREDICTED	1.94955e-05	1.70161e-06
+UniRef50_Q3JHV1	0.000135491	3.84585e-05
+UniRef50_W4S288	0.000604578	0.00055767
+UniRef50_L8GKM7	2.77657e-05	5.91711e-05
+UPF0301 protein MBE BAB_1780	7.85835e-06	8.46818e-06
+Transcriptional regulator	6.26925e-06	7.09754e-06
+Glutamine synthetase catalytic region	0.00146027	0.000245231
+Transcriptional regulator, LysR family	0.0125035	0.00103132
+Quaternary ammonium transporter	0.000349358	0.00187616
+hypothetical protein	5.56409e-05	6.33132e-06
+UniRef50_G1THI8	3.41716e-06	0.000248267
+Formin	3.77426e-06	8.96913e-07
+Fe2+ Zn2+ uptake regulation protein	0.00654913	0.00125214
+Sensor protein CpxA	0.0026189	0.00158834
+UniRef50_K0M3M3	0.000305353	9.06584e-05
+hypothetical protein	0.000917588	0.000417604
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0188314	0.00318263
+UniRef50_E6NJA8	0.00010441	0.002281
+Methionine aminopeptidase	0.00127428	0.000567476
+Sensor histidine kinase	0.000177696	9.6032e-05
+UniRef50_Q0FD62	0.000274606	4.8355e-05
+Phosphoribosylformylglycinamidine synthase 2	2.73913e-05	3.89859e-06
+50S ribosomal protein L3	0.000775681	0.00015427
+Putative ribosome biogenesis GTPase RsgA	0.00507531	0.00191764
+Cell wall hydrolase autolysin	0.000239821	0.00217783
+Glutamate  tRNA ligase	3.79274e-06	5.41809e-06
+NurA domain containing protein	0.000196526	0.00812184
+Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein	0.00473364	0.00101677
+Transcriptional regulator, PadR family	3.25739e-05	4.84409e-05
+hypothetical protein	5.11989e-05	6.31379e-05
+Glycosyl transferase GT4 family	0.00167076	0.00075962
+Candidate UDP glucose 6 dehydrogenase 	0.000523438	0.000205176
+UniRef50_A2PUV3	6.10819e-05	0.000118031
+luciferase	2.60892e-05	9.55931e-06
+UniRef50_U5NMZ2	0.000655614	0.000301291
+Dihydropteroate synthase	0.00509925	0.000121025
+UniRef50_U5NMZ6	0.00418166	0.00030874
+hypothetical protein	3.24633e-05	7.62671e-06
+hypothetical protein	1.23029e-05	0.00014051
+dTDP 4 dehydrorhamnose 3,5 epimerase	0.00236133	0.000899783
+Agmatine deiminase	0.000302487	0.00107739
+UniRef50_X6CNL3	0.00072676	0.000871698
+Pyruvate ketoisovalerate oxidoreductase, gamma subunit	0.00036188	0.00277424
+Cobalt import ATP binding protein CbiO 2	0.000611575	0.000277441
+UniRef50_D6ZIJ6	2.20361e-05	1.42151e-05
+hypothetical protein	4.85087e-06	5.65028e-06
+hypothetical protein	2.46956e-05	1.50756e-05
+UPF0062 protein YexA	2.48975e-05	3.58922e-05
+DNA polymerase	0.000175781	3.38045e-05
+D alanyl D alanine carboxypeptidase DacC	0.00421839	0.00205739
+UniRef50_K4QLG2	5.28252e-05	1.774e-05
+Peptidase, M56 family 	2.45775e-05	1.18633e-05
+Predicted Fe S oxidoreductase	2.42667e-05	5.93332e-05
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00400387	0.0139678
+signal recognition particle protein Srp54	1.10139e-05	0.000125161
+iron reductase	7.9118e-06	6.20628e-05
+hypothetical protein	2.1249e-05	5.60417e-06
+ATPase component of ABC transporters with duplicated ATPase domain	0.00349894	0.000437257
+Secretion ATP binding protein, HlyB family	0.000409963	4.99082e-05
+hypothetical protein	8.20384e-05	1.16727e-05
+Aminomethyltransferase	1.67244e-05	1.47915e-05
+UniRef50_R1ERY2	9.36166e-05	4.73661e-05
+Threonine  tRNA ligase	0.000774188	9.47629e-05
+UniRef50_Q3JS16	7.74054e-06	8.14901e-06
+Phospholipase C	0.0111894	0.000796461
+Deoxyuridine 5 triphosphate nucleotidohydrolase	0.000221414	0.00181582
+hypothetical protein	4.89111e-05	6.57197e-06
+UniRef50_A4EPM0	1.69468e-05	7.03019e-06
+hypothetical protein	4.57889e-06	3.75998e-06
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.54494e-05	9.83458e-06
+Polysaccharide biosynthesis family protein	0.0141129	0.00123425
+Malate dehydrogenase	3.46514e-05	1.34412e-05
+UniRef50_Q3JS13	2.62334e-05	7.21673e-05
+UniRef50_L7WZJ1	0.000874121	0.000765034
+NADH quinone oxidoreductase subunit C	1.28894e-05	5.66353e-06
+UniRef50_V8N3A8	0.00125571	0.000498805
+hypothetical protein M271_03505	8.82389e-06	4.77166e-06
+UniRef50_Q5GX46	1.27414e-05	2.45147e-05
+UniRef50_B9FN35	5.28718e-05	6.78754e-05
+Phage infection protein	0.0089612	0.00229925
+cytochrome oxidase	3.28396e-05	2.62229e-05
+Glyceraldehyde 3 phosphate dehydrogenase	8.86722e-06	9.86893e-06
+Quinolinate synthase A	0.00405307	0.00586173
+FAD dependent oxidoreductase	0.000250867	0.000586617
+UniRef50_A0A010YS39	0.000157405	2.44849e-05
+Marine sediment metagenome DNA, contig	0.000135878	6.49551e-05
+Phage transcriptional regulator	0.0130389	0.00273737
+tRNA specific adenosine deaminase	0.0101421	0.000355936
+methionine aminopeptidase	1.64754e-05	5.83327e-06
+Oxygen dependent coproporphyrinogen III oxidase	0.00252227	0.00378974
+UniRef50_E6PZA5	0.000134567	0.000296447
+Metal dependent phosphohydrolase, HD subdomain protein	0.0050564	0.000696827
+UniRef50_D8LRY0	2.52441e-05	1.24277e-05
+Putative electron transfer flavoprotein subunit YgcQ	0.00339283	0.00152729
+HTH type transcriptional regulator MalT	0.00107158	0.000183231
+Bacteriocin associated integral membrane protein	0.00837971	0.0010012
+ABC superfamily ATP binding cassette transporter, substrate binding protein	1.76057e-05	7.01108e-06
+hypothetical protein	4.30415e-06	2.51491e-06
+UniRef50_Q6F797	0.000116453	0.00576222
+Lipoprotein	9.02577e-05	1.21967e-05
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.00165497	0.00155431
+Chaperone Hsp33	0.00806803	0.000657813
+macrolide ABC transporter ATP binding protein	2.78337e-05	4.98747e-06
+2 isopropylmalate synthase	3.32067e-06	1.85585e-05
+metal dependent hydrolase	0.000109118	0.000177977
+hypothetical protein	1.58969e-05	1.68005e-05
+UniRef50_R4SLJ1	2.7641e-05	1.7222e-05
+hypothetical protein	1.46497e-05	1.23816e-05
+Fe3+ siderophore ABC transporter substrate binding protein	2.53154e-05	8.59012e-06
+Transcriptional regulator ModE	0.00183096	0.000394451
+Predicted phosphotransacetylase	0.000890823	0.000899199
+UniRef50_D8LEL7	9.737e-06	9.23643e-06
+Expressed protein 	0.000965757	0.000640124
+cytochrome C	0.000141287	3.47583e-05
+Chorismate synthase	4.57997e-06	0.00289955
+Integrase recombinase	0.000134979	8.42259e-05
+Transcriptional regulator	0.000179652	0.00683516
+UvrABC system protein B	0.0119885	0.0018222
+UniRef50_S1SUV9	6.93364e-05	6.86994e-05
+Transcription repair coupling factor	2.48988e-05	0.00105223
+hypothetical protein	6.41241e-06	3.02077e-06
+hypothetical protein	3.6983e-05	8.30147e-06
+Chemotaxis histidine protein kinase, CheA3	0.000303413	5.78181e-05
+Non ribosomal peptide synthetase modules related protein	0.000165575	0.00157769
+UniRef50_G4LFN6	0.000386991	0.00017333
+UniRef50_A0A022LJU5	0.000198431	0.00011975
+CTP pyrophosphohydrolase	0.0199722	0.00054399
+Pyruvate oxidase	0.0216205	0.00347365
+Poly  alpha glucosyltransferase	0.0191539	0.00275085
+L threonine dehydratase catabolic TdcB	0.001677	0.000639442
+UniRef50_X5P5H6	4.05645e-05	1.04443e-05
+UPF0442 protein YjjB	0.0054645	0.00138131
+Translocator protein, LysE family	0.0162702	0.00269831
+Glycosyl transferase, group 4 family protein	0.0175337	0.00347613
+UniRef50_E6QHZ2	0.000127648	5.68332e-05
+Transposase, IS4 family	0.0117553	0.00525753
+Ketol acid reductoisomerase	1.46681e-05	2.24985e-05
+hypothetical protein	1.47124e-05	1.1237e-05
+Short chain dehydrogenase reductase SDR	0.00552627	0.00141395
+Transcriptional regulator, LysR family	8.1894e-05	1.0606e-05
+DNA directed RNA polymerase subunit beta	4.09564e-06	8.47113e-07
+Possible virC1 gene, ATPase	0.0504911	0.00331458
+Glycerol 3 phosphate acyltransferase	0.000502603	0.000392425
+Predicted membrane protein	5.30972e-06	1.45077e-05
+Phage terminase like protein, large subunit	0.0101047	0.0015936
+Trk system potassium uptake protein	0.00607768	0.000768096
+N succinylglutamate 5 semialdehyde dehydrogenase	2.36296e-06	9.48496e-06
+Ribulose phosphate 3 epimerase, plasmid	0.00282182	0.00398988
+UniRef50_K8Z653	4.51905e-05	1.28725e-05
+Triosephosphate isomerase	1.13844e-05	9.71533e-06
+50S ribosomal protein L22P	0.00504193	0.000317261
+Plasmid pSG, complete sequence	0.000200327	0.000118606
+UniRef50_Q58369	0.00226757	0.000205291
+Short chain dehydrogenase reductase SDR	0.000431472	0.000719914
+Mannose 1 phosphate guanylyltransferase  mannose 6 phosphate isomerase, type 2	0.00635482	0.000520285
+Chaperone fimC	0.00166453	0.000606728
+Lipoprotein	0.000805441	2.99866e-05
+Pyruvate dehydrogenase complex, dehydrogenase  component (Fragment)	4.6456e-05	3.25377e-05
+tRNA pseudouridine synthase D	1.22386e-05	2.51104e-05
+Flagellar hook length control protein FliK	4.36903e-06	5.01032e-05
+hypothetical protein	3.26865e-06	0.000158262
+Mg Co Ni transporter MgtE	0.000276615	0.000348024
+hypothetical protein	3.53835e-05	6.11858e-06
+PREDICTED	3.17656e-06	1.25422e-05
+Pirin like protein CC_1473	0.000627868	0.000129001
+ABC type transport system permease protein	0.0153888	0.00238039
+PREDICTED	1.76018e-06	2.53006e-07
+UniRef50_K2Q5M0	2.1641e-05	2.16023e-06
+UniRef50_U5BVI3	2.35908e-05	6.48746e-06
+extracellular ligand binding receptor	8.03037e-06	3.4914e-06
+D mannonate oxidoreductase	0.00129383	0.000906537
+Padr family transcriptional regulator	8.64288e-05	1.33867e-05
+UniRef50_U4QEL4	1.90491e-05	1.85458e-06
+Serine hydroxymethyltransferase	0.000110172	8.30945e-05
+Sugar ABC transporter permease 	0.000895951	8.18594e-05
+UniRef50_I0Z434	3.4319e-06	2.40672e-06
+UniRef50_F0YNG2	2.07711e-06	2.4011e-05
+LacI family transcriptional regulator	2.80977e-06	2.15426e-05
+ABC transporter	5.51611e-06	6.69714e-06
+Chaperone protein dnaK1	0.00764522	0.000382918
+UniRef50_Y7D100	0.000285525	2.96915e-05
+UniRef50_F4H2Z9	1.40443e-05	1.85718e-05
+Regulatory protein, TetR	1.45361e-05	0.000315756
+UniRef50_W8Z0S3	1.92999e-05	5.33921e-05
+UniRef50_K0VXX1	1.55645e-05	9.00951e-06
+UniRef50_E4N9L3	2.87086e-05	0.000116376
+UniRef50_B9EAC4	0.0167103	0.00271474
+hypothetical protein, partial	1.77861e-05	1.39444e-05
+ATP dependent dethiobiotin synthetase BioD	0.00026089	0.00196937
+Glycoprotein endopeptidase	0.00015533	0.000146229
+UniRef50_A3PS51	0.00141191	0.000191948
+ATP dependent Clp protease proteolytic subunit	6.70468e-06	9.37605e-05
+GntR family transcriptional regulator	0.000796061	7.77358e-05
+UniRef50_B9KHI6	2.20042e-05	4.33125e-05
+Thymidine kinase	1.64961e-05	3.04877e-05
+Ribosomal large subunit pseudouridine synthase A	0.00153562	1.17561e-05
+Ribosomal RNA small subunit methyltransferase A	0.000381042	0.000999722
+ATP dependent 6 phosphofructokinase	3.69336e-06	4.4738e-06
+Citrate synthase 1, peroxisomal	9.25735e-06	2.57267e-05
+Glutamyl tRNA amidotransferase subunit A	0.0168745	0.00569131
+PilL	9.42362e-05	3.25819e-05
+UniRef50_B0V8W4	0.000232801	0.00308046
+hypothetical protein	2.64942e-06	1.24956e-05
+Malate dehydrogenase	2.63441e-05	1.08732e-05
+UniRef50_C3AWX8	0.00023104	0.000802691
+oxidoreductase, partial	4.99805e-06	1.07095e-05
+3 hydroxybutyrate dehydrogenase	5.39476e-06	7.5565e-05
+PE PGRS family protein	4.19484e-05	0.000245009
+ATP dependent 6 phosphofructokinase	1.5132e-05	8.806e-06
+hypothetical protein	8.57923e-06	1.12781e-06
+Ornithine decarboxylase, inducible	9.07139e-05	0.000135156
+Aspartyl Asparaginyl beta hydroxylase	0.000481371	0.000271113
+Potassium transporting ATPase B chain	6.08516e-06	0.000515956
+50S ribosomal protein L11	4.36064e-05	4.22506e-05
+Protein FdhE	0.00325925	0.00083398
+UniRef50_B9KKX7	0.00227604	0.000955695
+UniRef50_C0MHE9	1.92399e-05	1.67645e-05
+UniRef50_Q3HKD5	0.00409979	0.000183263
+UniRef50_Q3HKD7	0.0232209	0.00553332
+UniRef50_Q3HKD6	0.00212877	0.000302904
+hypothetical protein	0.000449302	2.02241e-05
+Glutamine transport system permease protein GlnP	0.00176214	0.000462809
+Dihydrolipoyl dehydrogenase	0.000214484	0.000142881
+acyl CoA dehydrogenase	4.56993e-06	8.95151e-06
+UniRef50_G8V322	0.0108135	0.00141825
+aldehyde oxidoreductase	0.000158677	0.000573692
+3 demethylubiquinone 9 3 methyltransferase	0.0041797	0.000197329
+UniRef50_Q8DSD9	0.00697477	0.000285267
+Carbonic anhydrase, family 3	7.86318e-05	2.05726e-05
+Type IV pilus assembly protein PilO	0.000289128	0.000202168
+UniRef50_Q3JB01	0.000295439	0.000391419
+Probable chemoreceptor glutamine deamidase CheD 1	0.000228655	2.08948e-05
+UniRef50_I3X6Z9	4.21071e-06	3.56393e-06
+hypothetical protein	1.69871e-05	2.91109e-06
+Probable adenosine monophosphate protein transferase fic	0.00578841	0.00150964
+hypothetical protein	1.43623e-05	2.08657e-05
+hypothetical protein	3.55067e-06	4.06436e-06
+UniRef50_C6SQC4	0.00420735	0.00106468
+hypothetical protein, partial	1.6005e-06	1.56176e-06
+ATP dependent RNA helicase RhlE	0.00212358	0.00052021
+Nitrate nitrite response regulator protein NarP	0.00230869	0.000834174
+Signal peptidase I	0.000172294	0.00110732
+PREDICTED	1.34725e-05	2.30629e-05
+UniRef50_B4FRS7	2.63841e-05	3.67735e-05
+tRNA dihydrouridine synthase B	7.52048e-06	4.44247e-06
+UniRef50_G6CTE1	9.3782e-06	1.37138e-06
+TetR family transcriptional regulator	0.000291409	5.51642e-05
+phosphoglyceromutase, partial	6.58883e-05	3.12556e-05
+UniRef50_R7EC63	2.98788e-06	4.03076e-06
+UniRef50_B7MQ51	2.66472e-06	8.40866e-06
+MotA TolQ ExbB proton channel family protein	5.47832e-05	1.1141e-05
+DNA mismatch repair protein MutL	5.31113e-05	0.0010673
+Serine type site specific recombinase	1.02429e-05	6.94916e-05
+Possible oxygen independent coproporphyrinogen III oxidase	0.00170695	0.000225163
+DNA gyrase subunit B	0.00193563	0.000253432
+UniRef50_Q9I656	0.000931702	0.000217003
+UniRef50_U6JZT0	8.4238e-05	2.31163e-06
+spermidine putrescine ABC transporter permease	7.37116e-06	7.72547e-05
+Bacterial membrane protein YfhO	0.00643245	0.0017498
+hypothetical protein	2.58156e-05	7.828e-06
+Elongation factor P	1.01348e-05	1.85748e-05
+Imidazolonepropionase	0.000427622	0.00329453
+Alginate biosynthesis protein AlgZ FimS	0.000617404	0.000123841
+tRNA specific 2 thiouridylase MnmA	0.00033079	0.0200973
+molybdenum ABC transporter permease	2.80866e-05	1.29877e-05
+dihydrofolate reductase	1.13954e-05	1.26573e-05
+Histidine kinase	0.000270215	0.000357813
+Uroporphyrinogen decarboxylase	6.64911e-06	1.10801e-05
+UniRef50_A0A037F2E9	0.000200298	6.97951e-06
+succinate dehydrogenase	6.68868e-06	6.91935e-06
+Serine hydroxymethyltransferase 7	2.13346e-06	1.67283e-05
+Dihydroorotase	3.82539e-06	3.47457e-06
+UniRef50_Q634K9	0.000697529	0.000308539
+hypothetical protein	7.77924e-05	1.06247e-05
+ribonuclease III	1.92321e-05	3.50695e-05
+PREDICTED	1.13996e-05	1.80613e-06
+mRNA interferase ChpB	0.00150699	0.000260246
+GntR family transcriptional regulator	6.6075e-05	2.61969e-05
+UniRef50_L1K4A8	0.000417714	0.000208467
+DNA polymerase III subunit delta	0.000475401	0.00209966
+Protoheme IX farnesyltransferase	2.72792e-06	1.99965e-05
+UniRef50_K2GS32	6.2436e-05	5.72174e-06
+UniRef50_D5AUR2	5.75152e-06	2.20041e-06
+Cytochrome B561	5.07716e-05	8.72238e-06
+Probable cysteine desulfurase	0.000170336	0.000281448
+Cell shape determining protein MreC	0.00526576	0.000727037
+Lysine arginine ornithine binding periplasmic family protein	0.000888101	0.0017596
+Collagen alpha chain	3.67506e-05	7.77175e-06
+Penicillin binding protein 6, Serine peptidase, MEROPS family S11	0.00225959	0.0029846
+alpha glucosidase, partial	2.86134e-05	3.78779e-06
+Histidine ammonia lyase	3.30455e-06	3.70676e-05
+Phage tape measure protein	0.000636307	6.22525e-05
+hypothetical protein, partial	9.79064e-05	4.48843e-06
+hypothetical protein	1.16101e-06	3.84776e-05
+Receptor ligand binding region family protein	0.00430194	0.000313656
+Extracellular solute binding protein, family 1	0.00797544	0.000943352
+O sialoglycoprotein endopeptidase	5.43437e-06	4.56093e-06
+UniRef50_A8LK13	5.10557e-05	1.04476e-05
+UniRef50_A5N391	0.000129635	0.000234946
+UniRef50_E5QS55	2.53388e-05	8.14464e-05
+Putative 3 methyladenine DNA glycosylase	2.14956e-05	5.3642e-06
+Tn554 related, transposase B	0.00782469	0.00201411
+UniRef50_I1ZP64	0.00328455	0.0036351
+metallophosphoesterase	3.62543e-06	3.43918e-05
+hypothetical protein	1.81944e-06	5.50107e-06
+Flagellar FlaF family protein	1.06463e-05	1.22878e-05
+UniRef50_E4R8G4	2.11612e-05	3.0348e-05
+cystathionine beta lyase	1.50475e-05	1.6138e-05
+DNA topoisomerase 1	0.000274262	0.00188684
+N acetyldiaminopimelate deacetylase	2.70112e-05	0.000115702
+UniRef50_A9BPD7	0.000275362	3.67592e-05
+UniRef50_A4WY56	0.00202719	0.000117365
+UniRef50_S5V0B7	0.000488892	0.000570558
+Chorismate synthase	4.12339e-06	0.00102732
+Probable malate	0.00804102	0.00255423
+UniRef50_S9VRA1	6.82555e-05	1.34637e-05
+RNA methyltransferase	1.14936e-05	1.0993e-05
+UniRef50_D3QEM5	7.36886e-05	1.91998e-05
+UniRef50_A0A024KA74	4.10965e-06	5.70305e-05
+Binding protein dependent transport systems inner membrane component	0.000167994	0.000432048
+prolyl aminopeptidase, partial	1.19958e-05	1.76569e-05
+Excinuclease ABC, C subunit	7.02171e-06	1.58651e-05
+tRNA  2 O) methyltransferase	0.00181653	2.95783e-05
+MscS Mechanosensitive ion channel	0.00229201	0.000463087
+hypothetical protein	4.92555e-06	5.86191e-06
+Serine threonine protein kinase	0.000394765	0.000797506
+Carbamate kinase	0.00061476	9.71698e-05
+hypothetical protein	0.000650857	0.000354665
+UniRef50_Q2IPX3	2.75992e-05	0.000256597
+RNA 3 terminal phosphate cyclase	0.000163373	0.00263975
+Single stranded DNA specific exonuclease	6.51805e-05	0.00128273
+Enoyl CoA hydratase isomerase D isoform 1	3.76484e-05	2.67559e-05
+Glycosyltransferase 9 family protein	0.000441376	0.00179999
+Phosphoadenosine phosphosulfate reductase	8.40648e-06	7.40894e-06
+Malate synthase 2, glyoxysomal	1.03466e-05	5.15792e-06
+UniRef50_Q8CRL3	0.00822228	0.00086502
+UniRef50_C5WHP5	0.00574466	0.000336253
+tRNA pseudouridine synthase A	0.000638034	0.000675065
+UniRef50_J3MER7	4.23512e-06	4.20274e-05
+Acyl CoA thioesterase 2	0.00361995	0.000315868
+PREDICTED	8.02917e-05	3.02877e-05
+D alanyl D alanine carboxypeptidase family protein 	0.000125578	0.00111739
+Heme A synthase	0.00769907	0.00166754
+hypothetical protein	4.43786e-05	6.76178e-05
+UniRef50_Q8FFW9	0.00283035	0.000226333
+Inner membrane transporter YjeM	0.00170961	0.00122374
+Usher CupC3	0.00045196	0.000115755
+UniRef50_U5MXP3	0.000492481	0.000612866
+UniRef50_W7VSI1	3.93367e-05	5.88732e-06
+hypothetical protein, partial	5.69461e-05	4.2247e-05
+Dihydroorotase	0.000197404	0.00356826
+hypothetical protein	3.26693e-05	1.45232e-05
+Two component transcriptional regulator, LuxR family	0.00734793	0.00137666
+UniRef50_W5VEC3	0.000255912	0.000215784
+Phosphatase	5.07867e-06	5.73558e-06
+CinA like protein	0.00270369	0.00118167
+Membrane protein	3.8555e-05	2.82673e-05
+hypothetical protein	1.50715e-05	1.14481e-05
+Phosphate specific transport system accessory protein PhoU	0.014184	0.00133701
+putative beta carotene desaturase methylase	7.88786e-05	2.17507e-06
+ABC transporter permease	6.25721e-06	4.83331e-06
+Tryptophanase	0.000275108	0.000543202
+hypothetical protein	5.91502e-06	1.41363e-05
+Lipoyl synthase	4.29135e-06	4.96423e-06
+acetolactate synthase	3.59085e-05	4.99874e-05
+Putative identified by MetaGeneAnnotator	8.24942e-06	5.40665e-05
+Type 4 fimbrial assembly protein PilC	0.000366609	9.28489e-05
+Phosphate acyltransferase	0.000109387	0.00249631
+Bis tetraphosphatase PrpE [asymmetrical]	3.08684e-05	0.000202291
+hypothetical protein	6.00186e-06	5.21652e-06
+exodeoxyribonuclease III	6.67071e-05	8.22879e-06
+SAMP activating enzyme E1	2.54261e-05	3.5648e-05
+Guanine deaminase	0.00015869	0.00017621
+UniRef50_A5P853	2.83096e-05	2.08517e-05
+Transcriptional regulator	0.00419227	0.000436425
+Lon protease	0.000456098	0.000684446
+Mevalonate kinase	0.000351428	0.000584125
+Copper exporting P type ATPase A	4.66595e-06	2.94196e-05
+UniRef50_P25907	0.00231311	0.000993083
+Malonate decarboxylase, alpha subunit	0.000954763	0.000528304
+Peptidyl dipeptidase dcp	0.00226326	0.000411005
+Transposase IS4 family protein	3.04012e-05	7.08654e-06
+Type F conjugative transfer system protein TraW	9.81712e-05	2.26325e-05
+Elongation factor P	1.2428e-05	0.000610994
+PSQ10.3c	4.05682e-05	2.85534e-05
+hypothetical protein	1.81526e-05	8.34212e-06
+UniRef50_H6N2J3	3.58451e-07	1.83602e-06
+membrane protein	7.83555e-06	7.13615e-06
+UniRef50_D6A1D4	5.34793e-05	0.000570232
+Sugar binding lipoprotein of ABC transporter system	0.00076771	0.00224414
+dTDP glucose 4,6 dehydratase	0.00297066	0.000352121
+hypothetical protein	1.09441e-05	8.80452e-06
+hypothetical protein	1.19903e-05	3.23676e-06
+Inner membrane protein YlaC	0.00606734	0.000755119
+hypothetical protein	9.21723e-06	6.47688e-06
+hypothetical protein, partial	0.000177749	0.000270804
+hypothetical protein	3.5669e-06	5.41157e-06
+Inner membrane protein YjcH	0.000141815	2.98796e-05
+DNA directed RNA polymerase subunit D	0.00345175	0.0006102
+cAMP phosphodiesterase, heme regulated	9.22894e-05	0.00170493
+Trehalose 6 phosphate hydrolase	0.00224532	0.00120464
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.69828e-05	2.96417e-05
+hypothetical protein	0.000308609	7.31659e-05
+Ribosome binding ATPase YchF	0.00135993	0.00385362
+Transcriptional regulator	0.000331031	0.000186663
+Sarcosine oxidase subunit beta	0.00874727	0.000592974
+Membrane protein	4.30244e-05	1.38216e-05
+aspartyl glutamyl tRNA amidotransferase subunit B	1.01837e-05	3.10105e-06
+Protein containing DUF28	6.01057e-05	2.67542e-05
+Insertion element IS1 protein InsA	0.000858101	0.00201768
+hypothetical protein	2.32295e-06	1.48397e-06
+UniRef50_UPI0003C1AD28	0.000527167	4.25402e-05
+3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000520041	0.00108476
+isopentenyl diphosphate delta isomerase	6.20564e-05	8.49942e-06
+UniRef50_Y7FMH1	2.89437e-05	2.64271e-05
+PE PGRS family protein PE_PGRS6 	4.42586e-06	2.25402e-05
+Ribosomal RNA small subunit methyltransferase H	0.023353	0.00750765
+UniRef50_T0DA68	1.19031e-05	6.06205e-05
+putrescine spermidine ABC transporter substrate binding protein	2.2886e-05	6.07635e-05
+SAM dependent methyltransferase, putative	0.0192534	0.00294691
+hypothetical protein	3.45036e-06	2.13599e-05
+UniRef50_Q51576	0.000273488	0.000322218
+LPXTG motif cell wall anchor domain protein	0.00168742	0.000127535
+Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family	3.02694e-06	6.26214e-05
+UniRef50_M4TWT1	2.33529e-06	2.45884e-06
+hypothetical protein	5.17098e-06	2.85906e-06
+Anti sigma factor N terminus	0.00018794	0.000608335
+hypothetical protein	5.06393e-06	8.1928e-06
+N methyl L tryptophan oxidase	0.00263405	0.000638036
+UniRef50_M9SB66	0.000359266	0.000129935
+UniRef50_L0Q2L3	8.05441e-05	0.000495636
+L asparagine permease	0.00315505	0.000254896
+Glycosyl transferase	0.000650876	0.000302002
+5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.0058663	0.0035877
+hypothetical protein	3.19916e-05	1.0089e-05
+UniRef50_C7MGE6	0.0152497	0.0017694
+Putative lipoprotein AcfD homolog	0.00215111	0.000318209
+ATP synthase epsilon chain	0.0004605	0.00827755
+polyamine ABC transporter permease, partial	1.10928e-05	3.61478e-05
+Cytochrome c oxidase accessory protein CcoG	0.000440824	0.000560256
+Holo [acyl carrier protein] synthase	0.00451745	0.000274865
+Flagellar basal body rod protein FlgG	0.0146666	0.00143337
+UniRef50_T0ND38	1.01186e-05	5.03086e-06
+Protein SsnA	0.00769877	0.0012633
+ABC type transport system involved in Fe S cluster assembly, ATPase component	1.62421e-05	1.98304e-05
+Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.00911935	0.00323037
+ABC transporter ATP binding protein	2.37533e-05	2.98297e-06
+UniRef50_N6A660	0.000268154	7.7694e-05
+pyrroline 5 carboxylate dehydrogenase	1.92986e-05	3.31944e-06
+UniRef50_K6TZB8	0.000467429	0.00243808
+NADH quinone oxidoreductase subunit K	7.9492e-05	4.45816e-05
+alkyl hydroperoxide reductase  thiol specific antioxidant  Mal allergen	1.42428e-05	0.000214814
+Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	0.00942865	0.00124421
+UniRef50_F0XYR5	1.47446e-05	9.47009e-05
+hypothetical protein	4.66837e-05	2.18345e-05
+UniRef50_E6RPQ3	5.87234e-05	1.40269e-05
+Probable transaldolase	0.0124788	0.0071632
+UniRef50_D9STR3	0.000306436	0.000282847
+Cyclic diguanylate phosphodiesterase  domain protein	0.000862334	0.000152062
+peptide ABC transporter permease	1.61348e-05	1.0729e-05
+hypothetical protein	1.1241e-05	8.58945e-06
+molybdopterin biosynthesis protein, partial	4.34593e-06	8.2032e-06
+DNA gyrase subunit A	0.000141927	0.0257423
+hemolysin type calcium binding protein, partial	4.64039e-05	1.51395e-05
+UniRef50_A0A017XC98	0.0103818	0.00129678
+cation	1.27115e-05	2.14863e-05
+UniRef50_M5FJL9	3.07493e-05	0.000500424
+UniRef50_C7NLK0	7.72573e-06	1.41798e-05
+Lipoprotein NlpD	0.00193816	0.000557525
+high affinity branched chain amino acid ABC transporterATP binding protein, partial	0.000263425	2.15136e-05
+Bifunctional purine biosynthesis protein PurH	2.54135e-06	0.00192497
+flavin monooxygenase	1.02154e-05	1.02088e-05
+FeS assembly protein SufB 	3.96084e-06	4.41339e-05
+Phosphatidylethanolamine binding family protein	3.28742e-05	1.01816e-05
+MULTISPECIES	5.06593e-06	9.35243e-06
+Muc1p 	5.31949e-06	1.63877e-05
+hypothetical protein	8.94014e-05	8.7837e-06
+Diguanylate cyclase	7.81292e-06	0.000834151
+beta lactamase	1.49008e-05	1.45249e-05
+Ribose phosphate pyrophosphokinase 1, chloroplastic	9.77354e-05	3.53293e-05
+hypothetical protein, partial	5.77147e-05	2.78536e-05
+PAP2 family protein	0.00891725	0.00222027
+hypothetical protein	9.6444e-05	0.000100058
+Type IV pilus assembly protein TapB	0.0006051	0.00595967
+UniRef50_Q3DDY2	0.000262286	1.0109e-05
+Glycerol kinase	1.15677e-05	5.05426e-05
+Glycerol kinase	0.00843132	0.0199922
+UniRef50_V4XRX6	9.46247e-05	0.0001823
+hypothetical protein	0.000127674	1.01232e-05
+hypothetical protein, partial	0.00104308	7.59754e-05
+2 isopropylmalate synthase	7.97225e-06	2.68618e-06
+Ubiquinone biosynthesis O methyltransferase	0.00405066	0.00202593
+hypothetical protein, partial	3.03331e-05	2.92164e-05
+UniRef50_A7X0A3	0.00999665	0.000898008
+UniRef50_A7X0A2	0.00950512	0.00114621
+UniRef50_M9VDE6	0.000284645	0.00462296
+Uridine kinase	9.19702e-06	2.69653e-05
+cobyrinic acid a c diamide adenosyltransferase	8.98515e-06	7.78482e-06
+S adenosylmethionine	1.4052e-05	4.38831e-05
+Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.0087592	0.00032089
+Carbamate kinase like protein YqeA	0.00264642	0.000364269
+UniRef50_Q5HGR7	2.99189e-05	7.04292e-05
+Peroxiredoxin OsmC	0.0145854	0.000250097
+Glutathione binding protein GsiB	0.00236552	0.000551847
+Glycosyl transferase, family 4	0.000310955	0.00299762
+PilL	0.000114495	6.5266e-05
+ABC transporter	1.08795e-05	3.20216e-05
+Cell envelope related transcriptional attenuator	3.03349e-06	3.15862e-06
+Cupin 2 conserved barrel domain protein	0.000183983	5.39891e-06
+Glutamine synthetase	8.26847e-05	0.00268777
+Fumarate hydratase 2, chloroplastic	0.000460055	0.00117498
+Phospho alpha glucosidase PagL	0.00025051	0.000762615
+Lipoprotein, nlpa family	0.000207355	0.00196196
+hypothetical protein	7.82835e-06	2.95293e-06
+hypothetical protein	8.69913e-06	8.05921e-06
+UDP N acetylglucosamine 1 carboxyvinyltransferase 3	1.15152e-05	2.7906e-05
+Integral membrane protein 	4.945e-05	1.9765e-05
+Lactonase drp35	0.0206052	0.00310593
+Ribosomal protein S12 methylthiotransferase RimO	0.000588461	0.00331698
+UniRef50_B9DZW5	0.000173777	0.000197764
+membrane protein	1.73342e-05	2.45725e-05
+Probable oxidoreductase OrdL	2.2928e-05	2.47329e-06
+UPF0288 protein mru_1774	0.00269499	0.000560925
+Polyhydroxyalkanoate synthesis repressor PhaR	0.000365942	2.01976e-05
+D galactose binding periplasmic protein	0.000197425	0.00214888
+CTP synthase	0.00180327	0.00329985
+Fibronectin binding A family protein	2.26726e-06	0.000607104
+UniRef50_U1DNW1	0.000255031	2.46983e-05
+3 dehydroquinate synthase	0.0160064	0.00363703
+Antimicrobial peptide ABC transporter, permease component	0.00226332	0.000390436
+Sakacin A production response regulator	0.00404999	0.00273067
+Cupin	8.08794e-05	1.71455e-05
+Mlr2347 protein	0.000219615	0.000139876
+Glutamate racemase	0.000994379	0.0001344
+DNA directed RNA polymerase subunit beta	1.51608e-06	9.72043e-07
+hypothetical protein	3.01312e-05	5.35875e-06
+UniRef50_N9R0J7	3.71261e-05	2.46629e-05
+putative ABC transport protein, ATP binding component	7.26218e-06	0.00066877
+Excinuclease ABC, subunit A	1.20909e-05	5.29698e-05
+Inner membrane protein YeeR	0.000774711	0.000227815
+virulence factor MviN	1.77431e-05	7.79691e-06
+cystathionine gamma lyase	5.93737e-05	1.17751e-05
+UniRef50_C6VIP9	7.31882e-06	5.11902e-06
+DnaJ domain protein 	1.79101e-05	1.03962e-05
+Glycosyltransferase	0.000252437	0.00373398
+Chorismate synthase	9.84537e-06	8.296e-05
+hypothetical protein, partial	1.57682e-05	0.000108947
+Putative thiaminase 2	0.0161719	0.0024121
+Response regulator receiver domain protein	0.0034756	0.000181751
+DNA repair exonuclease , Rad32	0.001279	7.40188e-05
+UniRef50_B2UYL5	0.000174982	0.0010951
+ATPase	2.17072e-06	0.000222508
+UniRef50_Q6F7X4	0.000167437	0.00244988
+UniRef50_W8S0E0	0.000277795	3.06755e-05
+damage inducible protein	1.58046e-05	4.60616e-06
+UniRef50_G3ZGB0	0.000626987	0.000482714
+Fructose 1,6 bisphosphatase 2 class 2	0.00326796	0.000144117
+hypothetical protein	1.33638e-05	8.45382e-06
+Putative Linear gramicidin synthase subunit C	7.42567e-05	0.000239792
+Universal stress protein	0.00036712	0.0142936
+Putative type II secretion system protein K	0.0028768	0.000499318
+Flagellar biosynthesis sigma factor	0.00013516	0.00151239
+Glycine  tRNA ligase alpha subunit	0.000133592	0.000479533
+branched chain amino acid aminotransferase, partial	3.10085e-05	1.88782e-05
+Cyclic di GMP phosphodiesterase YfgF	0.00217732	0.000296917
+Replication initiator protein A, N terminal domain protein	0.000104122	1.19098e-05
+Ammonium transporter NrgA	0.000247073	0.000654279
+hypothetical protein, partial	0.000108676	5.62831e-05
+hypothetical protein	2.1121e-05	3.45183e-05
+Bifunctional uridylyltransferase uridylyl removing enzyme	0.00030058	0.00266092
+Uroporphyrinogen decarboxylase	6.65259e-06	7.33429e-06
+UniRef50_Q47LW5	1.75835e-06	5.55599e-05
+Inner membrane protein RclC	0.00244474	0.00109767
+UniRef50_D2R1Q0	1.47571e-05	0.000115591
+Probable L serine dehydratase, alpha chain	0.000812254	0.00389595
+Serine protein kinase RsbW	0.0115567	0.00129138
+Probable thiol peroxidase	0.00138308	0.00138376
+Holliday junction ATP dependent DNA helicase RuvA	7.94595e-05	2.28366e-05
+Acetolactate synthase small subunit	3.97696e-05	0.000186721
+UniRef50_M5HHC7	0.000694553	1.91796e-05
+UniRef50_K2DEX2	0.00285114	0.000464076
+hypothetical protein	0.000198095	2.06117e-05
+Acetolactate synthase isozyme 1 large subunit	0.00234442	0.000613726
+Universal stress protein F	0.00093378	0.00284601
+ABC sugar transporter, inner membrane subunit	0.0170203	0.00192855
+Multidrug ABC transporter permease	0.00824837	0.000738254
+UniRef50_M4S6Z7	6.17556e-05	4.73448e-05
+Two component response regulator	0.00039221	0.000651865
+Chromosome replication initiation membrane attachment protein	0.0149866	0.00178474
+Beta ketoacyl synthase	0.000557395	6.43619e-05
+Benzoate 1,2 dioxygenase subunit beta	0.00305953	0.0055553
+Anthranilate phosphoribosyltransferase	0.000124102	0.00508545
+UniRef50_E0SBA7	4.04854e-06	3.39704e-06
+UniRef50_M9RBA6	0.0047227	5.74891e-05
+peptidylprolyl isomerase	1.0165e-05	2.97169e-05
+Hydrolase YafV	0.00159241	0.000290566
+hypothetical protein, partial	2.14311e-05	6.91543e-05
+Diguanylate cyclase	2.79521e-06	8.47168e-05
+phosphoribosylaminoimidazole carboxylase	5.67261e-06	6.16456e-06
+Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0123825	0.000794518
+Predicted acyl CoA thioesterase 1	0.000215577	0.00135368
+Transporter, major facilitator family protein	8.12919e-05	0.00150481
+hypothetical protein	2.23592e-05	6.48811e-06
+ABC transporter related	0.0100787	0.00050204
+UniRef50_H8GYE3	5.50516e-05	0.0153941
+Tlr1209 protein	0.000182811	3.70631e-05
+Putative toxin antitoxin system toxin component, PIN family	1.83835e-05	3.3924e-07
+Transport associated	0.000531693	0.00107712
+Phosphogluconate dehydratase	0.00315026	0.00626895
+UniRef50_H8GYE9	0.000237006	0.00120847
+UniRef50_M5DRD3	7.42233e-05	1.84643e-05
+UniRef50_A0A058ZFX3	3.51421e-06	4.24636e-06
+Acyltransferase domain 	0.00205333	9.26811e-05
+UniRef50_Q1GGL7	0.000149952	2.27095e-05
+UniRef50_Q1GGL2	0.00431023	0.00135609
+Cellobiose permease IIC component	0.00509893	0.0017068
+Protein GRSP 2, isoform f	4.17667e-05	6.55533e-06
+UniRef50_G2WZD3	5.79036e-06	5.35948e-05
+NAD specific glutamate dehydrogenase	1.58188e-05	5.2589e-06
+UniRef50_K0LFR7	0.0169804	0.00472754
+OsmC Ohr family protein	0.00776651	0.00170613
+UniRef50_Q8CS08	0.011311	0.000878608
+Predicted minichromosome maintenance protein	0.00177564	0.000385479
+Putative membrane protein, clustering with ActP	0.000113726	3.8103e-05
+UniRef50_Q6FF72	0.000903472	0.00159809
+50S ribosomal protein L17	0.00243619	0.00145849
+UniRef50_Q6FF71	0.00041357	0.00191761
+Type IV prepilin peptidase	1.36345e-05	7.47642e-06
+PREDICTED	5.06725e-06	0.00010117
+hypothetical protein	5.84082e-06	4.24849e-05
+UniRef50_W8YT37	1.1021e-05	0.000109693
+Aldehyde dehydrogenase	0.000140425	0.00454407
+hypothetical protein	1.06627e-05	8.97194e-06
+UniRef50_I0IED2	7.58562e-05	4.36253e-05
+Branched chain amino acid aminotransferase	0.00477367	0.0232496
+Polyhydroxyalkanoate synthesis repressor PhaR	2.86172e-05	4.93532e-06
+hypothetical protein	5.71506e-06	6.19245e-06
+peptidase M23	1.05385e-05	1.45605e-05
+UniRef50_Q3JSC1	1.04325e-05	2.57343e-05
+Succinate dehydrogenase fumarate reductase iron sulfur subunit	0.000269239	0.00870794
+UPF0301 protein Mfla_2099	6.64769e-06	5.87287e-06
+UniRef50_A5UK83	0.00123508	0.000200413
+O acetyl L homoserine sulfhydrolase	0.00506567	0.00367192
+Glutathione synthetase	3.21953e-06	6.16714e-05
+UniRef50_I7EIU7	0.00853527	0.00155832
+ATP dependent helicase	0.000225714	0.00270492
+Transcriptional regulator, LacI family	0.000544063	0.000796737
+nitrogen regulatory protein	1.62211e-05	1.55888e-05
+UV damage endonuclease UvdE	0.000707989	0.000479599
+ATP dependent Clp protease proteolytic subunit	1.37603e-05	4.19402e-05
+hypothetical protein	3.49713e-05	2.72445e-05
+L threonine synthase	8.09988e-05	3.45665e-06
+Putative secretion protein, HlyD family	7.66372e-06	0.000293305
+hypothetical protein	4.59756e-06	8.79633e-06
+tonb dependent receptor plug	3.96711e-06	2.7789e-06
+Guanylate kinase	1.39623e-05	1.51342e-05
+hypothetical protein, partial	1.87185e-05	4.25748e-05
+DNA directed RNA polymerase subunit beta	5.18291e-06	1.423e-06
+MerR family transcriptional regulator	7.70321e-05	2.34297e-05
+Cysteine  tRNA ligase	4.52228e-06	0.00107434
+hypothetical protein	0.00145368	0.000122594
+UniRef50_J0Y468	0.00052732	2.48899e-05
+hypothetical protein	3.43809e-06	2.58963e-06
+Regulatory protein, FmdB family	0.000454795	0.000470078
+Yd repeat containing protein	1.76407e-07	1.57897e-07
+Plasmid partitioning protein ParA	0.000213146	3.44545e-05
+Probable malate	2.63902e-06	2.43738e-06
+Signal recognition particle receptor FtsY	0.00247613	0.000347453
+Elongation factor G	0.000264824	0.000794292
+Bacteriophytochrome	0.000145764	0.0037469
+Aldolase type TIM barrel family protein	1.47309e-06	7.3064e-06
+hypothetical protein, partial	3.13874e-05	9.33569e-05
+UniRef50_E0Y2I8	0.00050096	6.77542e-05
+Alpha amylase, catalytic region	0.0104664	0.00139351
+Transketolase, thiamine pyrophosphate binding domain protein	1.511e-05	5.75684e-06
+Ferritin Dps family protein	0.000246255	0.000242662
+WbpN	0.000681762	0.000198971
+UniRef50_P0ACR6	0.00154777	0.000323074
+UniRef50_P0ACR7	0.00488307	0.000561043
+UniRef50_P0ACR3	0.00326415	0.000120194
+Beta lactamase regulatory sensor transducer BlaR1	0.000282873	6.13891e-05
+Glutamate 5 kinase	0.00237851	0.00258535
+UniRef50_D4UF66	0.000151788	3.8011e-05
+PREDICTED	3.74779e-06	5.23758e-06
+UniRef50_C9A5T3	3.02572e-05	1.35773e-05
+Prophage CP4 57 regulatory	0.00255647	0.000290473
+PREDICTED	4.5645e-05	0.000101682
+UniRef50_C5XLB4	0.000201636	4.59647e-05
+metal dependent phosphohydrolase	3.21704e-05	0.000151064
+UniRef50_K2AEI9	7.34375e-05	4.5634e-05
+Flagellar basal body rod protein FlgG	0.000149577	0.000415005
+hypothetical protein	1.46754e-06	1.10009e-05
+UniRef50_V8A9V2	0.000697216	7.46269e-05
+Transketolase	2.42247e-05	1.77503e-05
+UniRef50_Q9RUZ9	0.000229705	0.0219963
+hypothetical protein	0.000109655	1.1459e-05
+UniRef50_C2ZY26	0.00023484	0.000302306
+UniRef50_Q9RUZ6	0.000132848	0.0209284
+UniRef50_F2ABV1	6.2112e-05	0.000260805
+Prevent host death protein	4.60654e-05	3.30402e-05
+Leucyl phenylalanyl tRNA  protein transferase	6.83213e-06	1.0538e-05
+Amino acid ABC transporter substrate binding protein	0.000491296	5.01872e-05
+Probable glutamate gamma aminobutyrate antiporter	0.00207852	0.000658834
+hypothetical protein	0.000324565	1.50906e-05
+Lipoprotein	0.00259229	0.000529832
+PREDICTED	1.07005e-06	4.18389e-06
+Thiol	7.70134e-05	0.00123541
+UniRef50_A6W977	1.3616e-06	2.8377e-06
+ABC transporter permease	4.90799e-06	1.64584e-05
+UniRef50_T2RUR1	7.07691e-05	0.00130552
+Glycosyl transferase, group 2 family protein	0.0136481	0.00137269
+Formamidopyrimidine DNA glycosylase	0.000528159	0.00207094
+hypothetical protein	3.24972e-05	1.12726e-05
+Hemin import ATP binding protein HmuV	2.29615e-05	0.00308742
+p hydroxybenzoate hydroxylase	0.000740081	0.000372805
+CAIB BAIF family protein, partial	1.11133e-05	7.54496e-05
+UniRef50_G2M909	0.000121279	0.000389647
+Uracil xanthine permease	0.000141475	0.00299593
+hypothetical protein, partial	2.6148e-05	1.02099e-05
+Methyltransferase type 12	0.00733658	0.000367047
+hypothetical protein	0.000174523	0.000753055
+UniRef50_D9XX77	3.53136e-05	6.23789e-05
+UniRef50_A8LJU4	0.000391509	1.98448e-05
+Bacteriophage replication protein	0.00010659	1.45872e-05
+Regulatory protein RecX	0.00466914	0.000183234
+UniRef50_A3PPL7	3.00502e-05	8.88959e-05
+50S ribosomal protein L6	4.37535e-05	0.000131911
+Iron regulated protein FrpA	0.00017872	0.00380832
+UniRef50_Q5HQI7	0.000438976	0.00208162
+Methionyl tRNA formyltransferase	0.0184049	0.00548041
+Methyl accepting chemotaxis protein McpA	0.000507715	0.000660553
+50S ribosomal protein L2	0.0140388	0.00337233
+UniRef50_F2LAJ8	0.000447276	0.00269487
+Predicted membrane protein	9.84395e-05	2.17962e-05
+ferredoxin	0.00128842	0.000650032
+Neutral protease B	5.30682e-06	0.00019141
+Integral membrane protein	0.0292413	0.0038877
+membrane protein	2.78598e-05	7.12176e-06
+tyrosine recombinase XerC	4.87134e-06	5.46925e-06
+Peptide deformylase	1.85267e-05	2.80063e-05
+Aerobic C4 dicarboxylate transport protein	7.48869e-05	2.18247e-05
+Ribosomal RNA small subunit methyltransferase E	0.000160261	0.000406375
+UniRef50_UPI0003C18A10	5.98032e-05	0.000155727
+Heme exporter protein C	0.000606453	0.000651765
+Putative zinc metalloproteinase in scaA 5region 	0.005474	0.00373507
+Phytoene desaturase 	0.0087341	0.000995369
+hypothetical protein	3.83353e-06	7.34503e-05
+hypothetical protein	4.1974e-05	1.99931e-05
+DNA protection during starvation protein	0.00414595	0.00128727
+Transcriptional regulator, RpiR family	0.000413651	0.000218759
+Dihydroxy acid dehydratase 2	2.0094e-05	9.36757e-06
+UniRef50_E8Y3F7	0.000850566	2.58934e-05
+flavine monooxygenase	2.98996e-05	3.47103e-06
+Alpha ketoglutarate dependent dioxygenase AlkB	0.00289107	0.000279997
+Lipoyl synthase	0.0167329	0.00240866
+DEAD DEAH box helicase domain protein, partial	8.3607e-06	2.72747e-05
+Phage tail tape measure protein, TP901 family, core region	0.0166267	0.00112973
+hypothetical protein	0.000300185	4.36818e-05
+UniRef50_T1XU00	0.0101154	0.00048674
+Aspartate aminotransferase, putative	0.0149295	0.00268051
+Thymidylate synthase	2.52789e-05	8.53946e-05
+cytochrome C	0.000266665	3.67151e-05
+Phosphogluconate dehydratase	0.000135883	0.00207948
+UniRef50_D9XI44	2.14356e-05	5.36929e-05
+UniRef50_R1DBS1	1.37075e-06	3.87196e-06
+glucan biosynthesis protein G	9.34834e-06	7.79891e-06
+Branched chain alpha keto acid dehydrogenase E2 component	0.0134131	0.00382077
+Protein SprT like	0.00158477	0.000807166
+AzlC family protein	2.3085e-05	6.24895e-06
+Malonyl CoA acyl carrier protein transacylase	0.000113316	0.000916762
+Hemin import ATP binding protein HmuV	9.02137e-06	0.00107073
+UniRef50_X8CB66	5.90724e-05	0.000537083
+Alkanesulfonate monooxygenase	0.00474229	0.00076414
+Ribonuclease 3	1.39812e-05	1.21036e-05
+UniRef50_J9P129	0.000257387	2.33386e-05
+Porin	9.1743e-06	1.5638e-05
+Transcriptional regulator NanR	0.00209553	0.000274316
+Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192	1.61346e-05	9.75868e-06
+Urea transporter	0.0205019	0.00163905
+hypothetical protein, partial	6.86611e-05	1.43779e-05
+hypothetical protein, partial	2.46958e-05	7.60844e-05
+hypothetical protein	6.53405e-05	1.59474e-05
+UniRef50_A3PRE1	0.00632039	0.000846872
+Methenyltetrahydromethanopterin cyclohydrolase	0.0031148	0.000243516
+UniRef50_R4MF75	7.73536e-05	1.72979e-05
+Maltose operon periplasmic family protein	0.00110686	0.00011394
+tRNA specific 2 thiouridylase MnmA	3.69056e-06	4.0223e-06
+UniRef50_D5BQ57	0.000884092	0.000139445
+multidrug MFS transporter	1.4145e-05	1.02026e-05
+Beta lactamase domain protein	0.00475283	0.000582296
+UniRef50_Q47138	0.000681009	0.00056525
+hypothetical protein	1.4849e-05	0.000340589
+hypothetical protein	2.44495e-06	6.9493e-05
+Filamentous hemagglutinin family N terminal domain protein	2.43935e-05	0.000112283
+hypothetical protein, partial	1.01397e-05	8.7538e-06
+GTP cyclohydrolase 1	4.72581e-05	5.02184e-05
+UniRef50_A7FBY0	0.000349358	0.00557823
+Macro domain containing protein lmo2759	1.57094e-05	1.38234e-05
+Dihydrofolate reductase	0.0016209	0.0261821
+Glutamyl tRNA reductase	0.00285466	0.000423783
+50S ribosomal protein L25	0.000259575	4.36994e-05
+UPF0380 protein yafZ	0.000203104	1.54657e-05
+hypothetical protein	1.00379e-05	5.07646e-06
+UniRef50_T1LB68	0.00119894	0.000350233
+Regulatory protein BlaR1	0.00586177	0.000823585
+nitrogen regulatory protein P II, partial	2.04048e-05	5.77961e-05
+GtrA like surface polysaccharide biosynthesis protein, GtrA	0.00101465	0.00047958
+Methionine  tRNA ligase	2.36042e-06	1.66667e-06
+Metalloendopeptidase like membrane protein	0.000261566	0.0046724
+Polysaccharide polyol phosphate ABC transporter, ATPase component	0.0037197	5.49143e-05
+hypothetical protein	5.79728e-06	2.41264e-06
+MC8	5.07591e-06	3.78604e-05
+UniRef50_I0C6S9	0.00101361	0.000458086
+Transcriptional regulator, BadM Rrf2 family	2.83995e-05	3.10448e-05
+Probable malate	2.48965e-06	2.16714e-06
+hypothetical protein	4.39758e-06	1.32892e-05
+Arabinose import ATP binding protein AraG 2	9.80879e-06	3.72238e-06
+UniRef50_S6GM17	3.8922e-05	3.94068e-06
+hypothetical protein	2.27182e-05	2.67442e-06
+Ribonuclease 3	2.52491e-05	2.60431e-05
+CRISPR associated protein Cas3	5.73902e-05	4.47496e-06
+Glycosyltransferase, group 1 family protein	0.00736299	0.000630426
+Putative esterase of the alpha beta hydrolase fold protein	5.13793e-06	2.05003e-05
+UniRef50_P64566	0.00265499	0.00233876
+Gamma glutamyl phosphate reductase	0.000214415	0.00453513
+Nucleoside diphosphate kinase	0.000111966	2.91095e-05
+hypothetical protein	8.03626e-07	1.2866e-06
+ATPase AAA	3.85098e-06	2.15964e-05
+UniRef50_Q8NUV3	0.000742869	0.000173488
+UniRef50_A7FAY2	0.000131808	0.00318335
+UniRef50_U9HN69	0.000860876	0.000458559
+UniRef50_A7FAY1	0.000592173	0.00651986
+porin	0.00015198	1.29393e-05
+hypothetical protein	6.03748e-05	2.90664e-05
+Low affinity gluconate transporter	0.00222401	0.00016045
+Cyclopropane fatty acyl phospholipid synthase	0.00475996	0.000241008
+UniRef50_A7FAY9	0.000152284	0.00502179
+PREDICTED	5.71288e-06	0.000125434
+Replication initiation family protein	2.09631e-05	4.79741e-05
+UniRef50_UPI00035944E9	2.63218e-06	3.25414e-06
+GTPase Obg	0.00266522	0.00464069
+UniRef50_A0A035UC67	2.58475e-05	3.09603e-05
+UniRef50_Z4WLK7	2.26938e-05	0.000208411
+Galactitol 1 phosphate 5 dehydrogenase	0.0033775	0.000610514
+UniRef50_UPI000343F687	4.80389e-05	5.04829e-05
+hypothetical protein	1.42851e-05	2.98662e-05
+Probable L,D transpeptidase YnhG	0.00268718	0.000106506
+UniRef50_I1QUG7	1.86906e-05	5.19366e-05
+UniRef50_P75672	0.00542609	0.000900247
+DeoK	0.00272367	0.00414053
+UniRef50_P75676	0.00511957	0.000132707
+UniRef50_B9KUH1	0.00143245	0.000477344
+UniRef50_B9KUH0	2.56868e-05	0.000169936
+UniRef50_W0PG73	4.56144e-06	9.33136e-06
+Isopropylmalate isomerase small subunit 	0.00279624	0.000562506
+Sensor protein UhpB	0.00244564	0.000362591
+Ribose 5 phosphate isomerase A	0.0190116	0.00308138
+Transcriptional regulator, PadR family	0.00203991	0.00121019
+rod shape determining protein MreB	4.75745e-05	6.54676e-06
+UniRef50_Q9RWX1	0.00060007	0.0178446
+Beta lactamase domain containing protein	4.23311e-05	6.65304e-06
+UniRef50_Q9RWX5	8.33729e-05	0.0277713
+Two component transcriptional regulator, winged helix family	0.00124396	0.000149891
+UniRef50_Q9RWX7	0.000180933	0.0288907
+UniRef50_Q9RWX8	0.000435763	0.01638
+hypothetical protein	6.03303e-05	4.38774e-05
+Beta lactamase domain protein	0.000336072	0.000382557
+Branched chain amino acid ABC transporter, permease protein	9.50702e-05	0.0180186
+ABC type dipeptide transport system, periplasmic component	2.5287e-05	8.47046e-06
+Predicted protein 	6.51488e-05	1.9165e-06
+UniRef50_F0PDK0	1.62637e-05	0.00098772
+Chitinase B	0.0128056	0.00128225
+hypothetical protein	5.63332e-06	4.78453e-06
+Toluene tolerance protein Ttg2B	2.5005e-05	2.66118e-05
+UniRef50_W3RJU2	3.43593e-06	9.46683e-06
+thymidylate synthase	9.44212e-05	0.000232443
+ammonia channel protein, partial	2.04097e-05	1.94619e-05
+Phosphoserine phosphatase	0.00448903	0.000536934
+hypothetical protein, partial	3.70813e-05	9.00165e-06
+Glycerophosphoryl diester phosphodiesterase GlpQ, putative	0.0190384	0.00175749
+quinone oxidoreductase	6.67021e-06	8.97745e-05
+aryl phospho beta D glucosidase	4.10709e-06	1.2437e-05
+UniRef50_U7PP10	2.87658e-05	5.14176e-05
+Phospholipase D	0.000799232	0.000243606
+NADH quinone oxidoreductase subunit C	2.41703e-05	1.1731e-05
+UniRef50_A1B541	0.000223371	4.73374e-05
+hypothetical protein DR_A0025	1.44824e-05	0.00360599
+Transposase IS4 family protein	4.10346e-06	9.78272e-06
+UniRef50_W7LA83	1.01894e-05	0.000272478
+hypothetical protein	0.000349322	4.14713e-05
+hypothetical protein	2.50861e-06	4.18667e-06
+Transposase InsD for insertion element IS2A D F H I K	0.00893805	0.00261138
+UniRef50_C9A9S2	0.00356076	0.000451859
+Protein translocase subunit SecY	0.0216125	0.00420144
+Ubiquitin associated domain containing protein	0.000732958	0.000589723
+Tricalbin 2	2.84247e-05	2.5263e-05
+Ribosomal RNA small subunit methyltransferase G	2.77227e-05	0.00252807
+UniRef50_D4HEV9	3.7289e-05	0.000233874
+UniRef50_D4HEV8	0.000963252	0.00315037
+UniRef50_D4HEV4	0.00092628	0.00297335
+hypothetical protein	9.90857e-06	1.21099e-05
+Phosphate ABC transporter, inner membrane subunit PstA	0.000989079	0.000594663
+UniRef50_U5MQ20	0.000839028	0.0010529
+Superoxide dismutase [Mn] 2	1.45486e-05	4.42093e-05
+UniRef50_G0AAC6	3.49356e-05	8.80833e-06
+hypothetical protein STEHIDRAFT_153002	3.45077e-06	1.06311e-05
+UniRef50_R1F8H0	3.88907e-06	0.000152819
+Tryptophan  tRNA ligase 2	0.00356654	0.00590771
+Dihydroorotate dehydrogenase B ), catalytic subunit	1.82212e-05	0.00181689
+hypothetical protein	6.75625e-06	5.36954e-06
+hypothetical protein	9.39035e-05	3.4294e-05
+Protein GrpE	0.00404001	0.00238003
+Ribosomal RNA large subunit methyltransferase L	0.000147394	0.00177284
+hypothetical protein	8.93489e-06	2.55893e-06
+Acetate  CoA ligase	0.000237542	0.00270163
+PREDICTED	1.33705e-05	1.36073e-05
+Magnesium protoporphyrin IX monomethyl ester oxidative cyclase	0.000141989	0.000766844
+Urease subunit beta	4.4798e-05	2.0178e-05
+UniRef50_B7UZP4	0.000955938	0.000212257
+Isocitrate dehydrogenase [NADP]	0.000938544	0.00015058
+Nitrogen regulation protein NIFR3	0.000404525	3.25943e-05
+phosphoglyceromutase	1.14509e-05	9.0902e-06
+Ammonium transporter	0.00537799	0.000989124
+UniRef50_U5MV95	0.00012358	0.000422198
+sn glycerol 3 phosphate import ATP binding protein UgpC	0.00322523	0.0207309
+Transposase	0.00134189	0.000156109
+UniRef50_UPI000329A113	7.52425e-06	5.64709e-06
+UniRef50_K2AFG9	0.000654843	6.33626e-05
+Radical SAM superfamily protein	0.0236393	0.00220328
+Acetate CoA transferase subunit alpha	3.71609e-05	0.000289431
+Predicted glycosyltransferase  GT1 family	0.00355706	0.000150063
+Adenylate kinase	1.59168e-05	1.19924e-05
+UniRef50_P77529	0.0025344	0.000891367
+Transcriptional regulator, GntR family	0.0191553	0.00296028
+UniRef50_A5UN97	0.000495448	0.000226158
+Glucose 1 phosphate adenylyltransferase	7.13944e-06	8.33117e-06
+UniRef50_D4HDX4	7.78447e-05	0.00165245
+Diaminopimelate epimerase like protein	0.0256842	0.00404247
+Putative ChaX protein	0.000235827	0.000126743
+hypothetical protein	5.85772e-05	3.16181e-06
+Sulfonate binding protein	9.06908e-06	1.54527e-05
+UniRef50_J3NQ90	0.000257474	6.72083e-05
+Nitroreductase like oxidoreductase	0.000716639	0.00252369
+Geranial dehydrogenase	5.94208e-06	4.86166e-06
+alcohol oxidase	2.08403e-06	1.61585e-06
+Phosphate binding protein	0.000304828	0.0220099
+Uridylate kinase	0.0189071	0.0170453
+UniRef50_A3MA07	0.000175591	0.00561571
+Lateral flagellar rod protein 	0.000283608	0.000229482
+UniRef50_P20186	1.71304e-05	0.000198132
+hypothetical protein	0.00135832	0.000534434
+Phosphoadenosine phosphosulfate reductase	8.77024e-06	6.50401e-06
+Chorismate synthase	0.00322396	2.8166e-05
+UniRef50_W0E8G5	1.03338e-05	3.20783e-06
+hypothetical protein, partial	2.65572e-06	0.000270101
+Histidinol phosphate aminotransferase	0.000141012	0.000427989
+Immunogenic protein	0.0106204	0.00142322
+Dihydroorotase	0.00063799	0.000347741
+PREDICTED	3.55436e-06	2.59409e-06
+O sialoglycoprotein endopeptidase	5.97724e-06	2.66924e-06
+Histidine decarboxylase	8.76429e-05	0.00257282
+Carboxynorspermidine decarboxylase	0.000191687	0.000523135
+UDP N acetylmuramate  L alanine ligase	3.43209e-06	2.68398e-06
+DNA gyrase subunit A	1.87399e-06	0.00164987
+Diguanylate cyclase with GAF sensor	0.000258135	0.000325054
+HTH type transcriptional regulator TcaR	0.0296516	0.0226026
+UniRef50_P0AFR5	0.00209563	0.00210394
+hypothetical protein	3.85458e-06	7.01779e-06
+hypothetical protein	4.00917e-05	2.64381e-06
+ABC transporter	1.16324e-05	3.68978e-06
+P 14 protein 	5.09627e-05	1.35957e-05
+Bacterioferritin	0.0120004	0.000482595
+PP241	7.31025e-05	0.000293884
+Transcriptional regulator, DeoR family	0.000331031	0.00111963
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.60999e-05	3.60425e-05
+methionine synthase	1.01278e-05	1.35904e-05
+Putative aliphatic sulfonates transport permease protein SsuC	0.00398435	0.000429205
+hypothetical protein, partial	1.35507e-05	8.5673e-07
+UniRef50_B2EBP0	2.81459e-05	0.000102333
+hypothetical protein	3.71057e-05	5.05851e-06
+L threonine 3 dehydrogenase	0.000199056	0.00323741
+Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein	0.000694565	9.7275e-05
+HD domain protein	1.2753e-05	4.83029e-06
+Inner membrane protein YdcO	0.00198192	8.32884e-05
+glutathione regulated potassium efflux system protein KefB	1.7511e-05	1.16534e-05
+Transcriptional regulator, AraC family	0.000945544	0.00024938
+hypothetical protein	5.69828e-06	3.5606e-06
+UniRef50_P39836	0.00215438	0.000460513
+UniRef50_R5TC97	0.000594541	0.00107658
+UniRef50_P39834	0.00507961	0.000304355
+Protein AmpE	0.00157336	0.000485709
+N acetyl glucosamine matabolism	2.87994e-05	1.13374e-05
+hypothetical protein, partial	2.00096e-05	1.40026e-05
+Heat inducible transcription repressor HrcA	0.0161001	0.00164881
+Phosphate propanoyltransferase	0.000180294	0.000748521
+UniRef50_W1XPB9	4.23747e-05	9.00035e-05
+LuxR family transcriptional regulator	0.00016441	1.1417e-05
+DEAD DEAH box helicase	1.79744e-06	3.21528e-05
+UniRef50_P76349	0.00168478	0.000368874
+UniRef50_S7UZQ5	0.000108695	6.16856e-05
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	7.09168e-06	7.79577e-06
+hypothetical protein	4.19366e-05	2.58901e-05
+hypothetical protein	4.18892e-05	1.4978e-05
+UniRef50_B9JR02	0.000204048	1.17591e-05
+DNA binding protein	0.000249193	8.01272e-05
+UniRef50_A0A024C1C5	0.000129179	0.0039085
+UniRef50_G9RS55	1.93712e-05	6.94866e-06
+Glutamine amidotransferase class I	0.00439895	0.000146707
+N acetyl gamma glutamyl phosphate reductase	6.68233e-05	1.53716e-05
+Predicted protein	4.50284e-06	8.5995e-06
+Orotate phosphoribosyltransferase	0.000807935	0.00028375
+Arogenate dehydratase 5, chloroplastic	7.83978e-05	1.18287e-05
+Protein containing DUF1857	3.75018e-05	2.01568e-05
+UniRef50_Q8DWA1	0.0035551	0.000411088
+UniRef50_Q9RY02	0.000137367	0.00971911
+hypothetical protein	1.64971e-05	2.14851e-05
+MULTISPECIES	9.28397e-05	0.000802551
+UniRef50_Q9RY09	6.93915e-05	0.0266495
+NADH dehydrogenase I chain L	0.00392055	0.00448045
+Efflux ABC transporter, permease protein	0.00013516	0.00231929
+2 keto 3 deoxygluconate permease	0.0015639	0.00059517
+ATP  cobalamin adenosyltransferase	2.70825e-05	2.58641e-05
+hypothetical protein	4.69005e-05	6.49182e-06
+UniRef50_Q8DWA4	0.00499764	0.00075757
+Predicted transcriptional regulator	0.001918	0.000568259
+Nucleoid associated protein Amet_4780	0.0078528	0.000597035
+LigA	0.000168606	7.24582e-05
+6 phospho beta glucosidase BglB	0.00250928	0.00033761
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	9.52548e-06	6.08731e-06
+UniRef50_D1YVK2	0.00114221	0.000374711
+hypothetical protein	1.11729e-05	5.16617e-05
+Alcohol dehydrogenase   Acetaldehyde dehydrogenase	0.00571528	0.00175986
+TetR family transcriptional regulator	0.000213674	5.01165e-05
+UniRef50_F8LW56	0.000173041	6.52483e-05
+UniRef50_A5IT13	0.0173142	0.00162676
+Protease 2	0.00197743	0.000260207
+MATE efflux family protein	0.000271493	0.004156
+PREDICTED	0.00011443	1.16239e-05
+Carbohydrate ABC transporter substrate binding protein, CUT1 family	6.21533e-06	1.80408e-06
+UniRef50_R4VNN3	0.00730282	0.00317637
+PREDICTED	4.44276e-06	3.58368e-05
+D xylose ABC transporter, ATP binding protein	0.000742821	6.20061e-05
+CRISPR associated helicase Cas3	8.38142e-05	5.64518e-06
+Lipid A deacylase PagL	0.00154073	0.000750264
+hypothetical protein, partial	6.86025e-05	0.000323148
+Lipase, putative	0.000187925	0.0198461
+Anthranilate synthase component 1	0.000232501	0.00428276
+UPF0115 protein Dd1591_1343	0.00217243	0.000232002
+UniRef50_Q1YIY5	0.000179816	0.000225355
+NusA family KH domain containing protein	0.00414041	0.00064132
+hypothetical protein	1.26456e-05	0.000117192
+Anhydro N acetylmuramic acid kinase	0.000363429	9.61294e-05
+Ribonuclease 3	0.00845102	0.00364508
+Probable tRNA pseudouridine synthase B	0.00322338	0.000843366
+PTS system fructose subfamily IIA component	0.000481956	0.000213773
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000651358	0.00197483
+UniRef50_U1S1M7	2.12953e-05	0.00117551
+PREDICTED	2.13997e-05	1.30777e-05
+LamB YcsF family protein	0.000120145	5.83691e-06
+hypothetical protein	4.46296e-06	1.50662e-06
+Phosphomethylpyrimidine synthase	1.40037e-06	2.69776e-06
+UniRef50_W6MC79	1.7985e-05	0.000336679
+hypothetical protein STEHIDRAFT_83294	1.87046e-06	1.92505e-06
+hypothetical protein, partial	1.12413e-05	1.13788e-05
+Ribosomal large subunit pseudouridine synthase C	0.00189346	0.000239714
+UniRef50_W7TU75	9.95706e-05	5.68642e-06
+UniRef50_P52123	0.00164925	0.000869311
+UniRef50_P52126	0.0027446	0.000340162
+UniRef50_P52127	0.00208429	0.000583763
+UniRef50_P52124	0.00167684	0.000407266
+UniRef50_P52125	0.000925858	0.000196466
+Extracellular elastase	0.0120617	0.00208905
+Probable quinol oxidase subunit 2	0.00933424	0.000748097
+Ribosomal RNA small subunit methyltransferase E	0.000130445	0.000121004
+1,4 alpha glucan branching enzyme GlgB	2.10913e-06	3.26147e-06
+Branched chain amino acid aminotransferase	0.00667923	0.000791522
+Putative peroxiredoxin y4vD	0.00685801	0.000674795
+Ribonuclease H	5.25643e-05	1.48985e-05
+UniRef50_A6LPL8	0.000102606	0.00179963
+hypothetical protein	7.72271e-06	6.7457e-06
+ABC transporter	8.50114e-06	2.77866e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	1.16501e-05	1.50535e-05
+Acetate CoA transferase YdiF	0.00195835	0.00377857
+hypothetical protein	1.80838e-05	4.99438e-06
+hypothetical protein	4.84309e-07	1.93424e-06
+Transposase	5.45688e-06	5.08783e-06
+TRAP transporter solute receptor, TAXI family protein	3.70128e-05	2.20648e-05
+hypothetical protein	3.8808e-05	1.44808e-05
+Copper exporting P type ATPase A	0.0123634	0.00199866
+UniRef50_G8W9Y6	0.0140955	0.00660987
+Sulfurtransferase	0.00062137	0.000431303
+Pseudaminic acid biosynthesis associated protein PseG	0.000201779	0.000603256
+Glutamine  tRNA ligase	0.000605365	0.00021592
+acetyl CoA acetyltransferase	9.13653e-06	1.74254e-05
+UniRef50_J4GJ09	1.17249e-05	2.5252e-05
+UniRef50_T8KWL4	3.62273e-05	2.44174e-05
+Membrane bound lytic murein transglycosylase F	0.000477863	0.000432359
+UniRef50_M2C918	4.16099e-06	4.74211e-06
+UniRef50_A0A059ILG7	5.86893e-05	1.3783e-05
+LemA family protein	2.36343e-05	6.26238e-06
+PREDICTED	3.87306e-06	1.62506e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000134077	0.000528976
+Tandem lipoprotein	1.07933e-05	8.55696e-06
+pseudouridine synthase	1.27808e-06	5.85353e-06
+UniRef50_A0A011QIR3	3.82801e-05	2.31677e-05
+Metallophosphoesterase	1.08024e-05	8.29229e-06
+UniRef50_X7ECM7	0.000985973	7.67796e-05
+ATPase RavA	0.0018296	0.000422973
+UniRef50_A3V382	0.000573002	0.000330673
+UPF0053 protein YegH	0.00259124	0.000504174
+UniRef50_C3K789	0.000266397	0.00186088
+Methionine import ATP binding protein MetN	5.10519e-06	0.00232416
+Uroporphyrin III C methyltransferase HemD	8.29618e-05	0.000992645
+hypothetical protein	6.77074e-05	2.56056e-05
+hypothetical protein	3.91381e-05	4.61774e-06
+hypothetical protein	9.43467e-05	1.37831e-06
+hypothetical protein, partial	0.000185463	3.42081e-05
+UniRef50_A4WVR4	0.00168656	9.13225e-05
+Leucyl phenylalanyl tRNA  protein transferase	0.00813097	0.00156172
+carbon monoxide dehydrogenase	0.000202497	4.56517e-05
+UniRef50_C8RZX1	0.00011565	5.51313e-05
+PREDICTED	1.99406e-05	2.30249e-05
+Adhesin like protein	0.00300572	0.000843541
+Proteophosphoglycan ppg4	4.34913e-05	9.48258e-06
+Glycosyltransferase	0.0175327	0.00362998
+Glycine betaine ABC transporter permease	0.000165787	0.000352097
+UniRef50_E6LGM1	3.98244e-05	2.63232e-05
+Alpha dextran endo 1,6 alpha glucosidase	8.73097e-05	0.00742154
+Translation initiation factor 2, gamma subunit, GTPase	0.0409624	0.000913004
+Radical SAM domain protein	0.00053238	0.000530267
+prolipoprotein diacylglyceryl transferase, partial	3.08726e-05	1.19006e-05
+hypothetical protein	2.41866e-05	3.64086e-06
+TonB dependent receptor	0.000770413	0.0284862
+hypothetical protein	1.95888e-05	3.35578e-06
+PREDICTED	2.33133e-05	1.23227e-06
+UniRef50_V8X5Y2	0.000309003	2.51183e-05
+ATP dependent protease	2.22369e-05	1.61085e-05
+UniRef50_C6SJR7	5.81333e-05	2.35872e-05
+Membrane associated protein	0.00613592	0.001488
+UniRef50_M7A685	0.000205541	3.38333e-05
+UniRef50_R1DWZ6	3.08177e-05	8.57234e-06
+Putative membrane protein	0.000189481	4.11989e-05
+Protein RecA	0.000687362	0.0178104
+Protein translocase subunit SecY	0.00250118	0.00636328
+Rhodanese like protein	0.00609543	0.000408878
+PREDICTED	5.76264e-05	7.76697e-06
+Transposase	1.21103e-05	0.00014457
+Sugar transporter	0.000394452	0.0070294
+Plasmid recombination enzyme type 3	0.660463	0.123898
+Glutamate 5 kinase	9.11525e-06	7.39883e-06
+ABC transporter substrate binding protein	1.53033e-05	2.86164e-05
+patatin	4.26317e-06	8.15232e-06
+PREDICTED	1.3826e-07	1.22786e-07
+UniRef50_R4Z5X8	1.05929e-05	7.95638e-06
+Membrane protein insertase YidC	0.000673018	0.0016724
+Chromosome partitioning protein ParA 	0.000289152	4.4109e-05
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.00567496	0.00271755
+hypothetical protein	8.93585e-06	4.16981e-06
+D 3 phosphoglycerate dehydrogenase	0.00965129	0.00205868
+TRAP dicarboxylate transporter 	1.88156e-05	2.12577e-05
+Light independent protochlorophyllide reductase subunit N	8.52984e-05	1.41805e-05
+Glycosyl transferase family protein	0.00096116	9.41141e-05
+Diguanylate cyclase  domain containing protein	2.5658e-05	0.000389288
+hypothetical protein	0.0105926	0.00203336
+Nicotinamide nucleotide adenylyltransferase	0.00396353	0.000350432
+Glutathione dependent formaldehyde activating, GFA	0.00706837	0.0008465
+Major facilitator superfamily MFS_1 domain protein	0.000583854	0.000159264
+UniRef50_F2US62	1.38586e-06	8.40844e-06
+Putative GAF sensor protein	1.20364e-05	0.000986026
+TetR family transcriptional regulator	0.000176821	0.000134058
+UniRef50_Q16CP9	0.00532734	0.000448211
+UniRef50_Q3IW63	0.0218852	0.00467712
+UniRef50_T1JH82	4.08066e-06	1.74565e-05
+UniRef50_B7GZC9	5.23132e-05	0.00234368
+Transporter	0.0185036	0.0026631
+hypothetical protein	7.91813e-06	4.72966e-05
+Photosystem I assembly famlily protein BtpA	0.00331923	0.000343852
+hypothetical protein	2.34213e-05	1.90941e-05
+Potassium transporting ATPase A chain	4.70604e-05	0.000700809
+hypothetical protein	3.15428e-06	3.84116e-06
+Probable malate	4.05584e-06	6.43678e-06
+30S ribosomal protein S7	0.000220643	0.0010788
+PREDICTED	8.71135e-05	7.74675e-05
+UniRef50_G3N4L7	3.32937e-05	5.37551e-06
+UniRef50_Q3JNN4	1.72953e-05	1.40807e-05
+2,5 didehydrogluconate reductase	0.000160516	0.00120467
+UniRef50_Q3JNN0	1.4743e-05	8.93448e-06
+UniRef50_A3PIA7	0.000810978	0.000410592
+SPFH domain Band 7 family protein	0.000138497	0.00293915
+Marine sediment metagenome DNA, contig	1.62385e-05	2.17499e-05
+hypothetical protein	2.23625e-06	4.8835e-06
+nitrate ABC transporter ATP binding protein	1.1556e-05	3.35197e-05
+IS5 family transposase OrfA	0.000111256	2.73559e-05
+ABC transporter permease	7.61008e-06	1.01948e-05
+hypothetical protein, partial	8.31676e-06	3.92808e-06
+Ribosomal silencing factor RsfS	0.00256895	0.000279704
+UniRef50_F0KKV9	0.000160007	0.00448188
+UniRef50_UPI0003C16777	0.000155021	1.97231e-05
+Aspartate aminotransferase, putative	0.00447007	0.000403763
+hypothetical protein	9.78315e-05	0.000131495
+AzlC family protein	1.06715e-05	4.67593e-06
+Ferrienterobactin binding periplasmic protein	0.0025944	0.000284788
+NADH quinone oxidoreductase subunit J	0.000113747	7.13996e-06
+Mate efflux family protein	0.000221738	0.000647882
+Phosphate ABC transporter, periplasmic phosphate binding protein PstS, putative	3.78864e-06	2.73657e-06
+Poly depolymerase	1.20093e-05	0.00280381
+DNA polymerase III delta prime subunit	0.0217995	0.0040907
+Biotin synthase	5.87619e-06	5.27542e-05
+Putative transposase 	0.000269302	0.000254806
+YALI0F12793p	5.69793e-06	0.000217128
+3 kinase	3.77028e-05	6.44753e-05
+O linked GlcNAc transferase	0.0030236	0.000120194
+cytochrome d ubiquinol oxidase subunit II	8.72956e-06	1.05436e-05
+UniRef50_U5NRE3	0.00621427	0.000743695
+Regulatory protein spx	0.00112706	0.000581039
+Relaxase mobilization nuclease domain	0.0011366	9.54315e-05
+Major facilitator superfamily MFS_1	0.000176705	0.00328589
+DNA polymerase II large subunit	1.80567e-05	5.28983e-05
+UniRef50_K7YBZ8	0.000203412	0.0010013
+Glyceraldehyde 3 phosphate dehydrogenase	0.00324369	0.000218029
+UniRef50_B2TI69	0.000562207	0.00110005
+hypothetical protein	5.19383e-05	8.35174e-05
+Putative esterase YheT	0.00198744	0.000731423
+PREDICTED	1.36363e-05	0.000190939
+Catabolic 3 dehydroquinase	2.93625e-05	0.0043558
+UniRef50_I4AI93	0.000185597	0.00142727
+PREDICTED	4.10612e-06	2.04986e-06
+hypothetical protein	3.24576e-06	1.05838e-06
+UniRef50_U1X2L2	0.000110331	9.07901e-06
+hypothetical protein	1.33308e-05	7.0486e-06
+Portal protein	8.12919e-05	0.00109445
+Fructose 6 phosphate aldolase	0.00652692	0.00117385
+Inositol 2 dehydrogenase 3	0.00258741	0.000522908
+Stomatin prohibitin like membrane protease subunits, putative	0.00592329	0.00354068
+UniRef50_W3AF53	3.98293e-06	4.9335e-06
+DNA helicase II	0.00272735	0.000204718
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00135526	0.000287772
+Methyltransferase PilK	0.000394104	0.000107014
+UniRef50_L1KFY1	0.000107671	0.000675074
+Protein translocase subunit SecE	0.00015581	0.00316062
+UniRef50_K0RFL8	1.99544e-05	3.90761e-05
+Pyridoxine pyridoxamine 5 phosphate oxidase	5.81013e-06	2.14119e-05
+trehalose phosphatase	2.89023e-05	1.95564e-05
+UniRef50_D5AMV2	0.00521986	0.000531047
+UniRef50_C5WIK5	8.38349e-05	2.43458e-05
+UniRef50_A3TY58	0.000241805	2.96951e-05
+Rhodanese domain protein	1.212e-05	7.93772e-06
+Leucyl phenylalanyl tRNA  protein transferase	6.37598e-06	2.63865e-06
+Localization of periplasmic protein complex 	1.26964e-05	9.39236e-06
+UniRef50_Q08WY4	5.3984e-06	4.48487e-05
+Xanthine uracil permease, UraA	0.00229407	0.00223619
+UniRef50_R8TPL3	0.000305338	1.94174e-05
+glycerol 3 phosphate dehydrogenase	1.30945e-05	2.77314e-06
+Vanillin dehydrogenase	0.000316304	0.00464424
+LctP family lactate transporter	0.00344917	0.00108501
+PREDICTED	0.000220757	0.00017402
+tRNA lysidine synthase	0.00499102	0.00128617
+Modification methylase LlaDCHIB	0.00263701	0.000114085
+hypothetical protein	6.32294e-05	3.01255e-06
+Outer membrane cobalamin receptor protein	0.000113377	0.00326008
+GTP cyclohydrolase 1	3.64924e-05	0.000473003
+UniRef50_E4U994	6.49461e-05	0.000212986
+DNA repair protein RadA homolog	0.00010639	0.00253913
+Molybdopterin guanine dinucleotide biosynthesis protein MobA	3.21446e-06	1.83557e-06
+Ribonucleoside diphosphate reductase subunit alpha	0.000224251	0.0018504
+Chemotaxis response regulator protein glutamate methylesterase	4.88023e-06	2.96962e-06
+3 isopropylmalate dehydratase small subunit	2.87323e-05	2.68591e-05
+Group B oligopeptidase PepB	0.00397383	0.000762851
+UniRef50_K1WM50	1.38787e-05	9.51543e-05
+competence damage inducible protein A	1.49274e-05	2.91572e-06
+2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	4.7555e-05	1.6901e-05
+UniRef50_V6UH50	8.03102e-06	0.000124363
+Peptidyl tRNA hydrolase	6.07969e-05	1.77957e-05
+UniRef50_J7LD22	1.98881e-05	4.92778e-06
+UniRef50_W1N6M3	9.61619e-05	2.49087e-05
+Phage infection family protein	3.38707e-06	0.000837354
+dihydroorotate dehydrogenase 2	5.03221e-06	3.39303e-06
+cation transporting ATPase PacS, partial	3.23307e-06	3.0262e-06
+High affinity branched chain amino acid transport ATP binding protein LivG	0.00456829	0.00050384
+DNA polymerase III subunit alpha	2.29976e-06	5.11659e-06
+PREDICTED	1.83897e-05	3.69687e-06
+hypothetical protein	0.000283466	7.64269e-05
+Dipeptide ABC transporter	0.0128669	0.000382688
+6 pyruvoyl tetrahydropterin synthase family protein	0.000175591	0.00682016
+hypothetical protein	1.03196e-05	0.000285832
+Peptidoglycan synthase FtsI	0.00112977	0.00030475
+PREDICTED	3.154e-05	3.5974e-05
+hypothetical protein	5.56129e-06	3.59819e-06
+Dihydroorotate dehydrogenase , mitochondrial	3.46437e-06	2.76427e-06
+Tryptophan synthase alpha chain	0.000651489	0.00472863
+hypothetical protein	9.07696e-07	3.32403e-06
+Serine threonine protein phosphatase 1	0.00327621	0.000976579
+UniRef50_A1AJA0	0.000327807	0.000383696
+UniRef50_V2WBL1	9.07517e-05	0.00276656
+UniRef50_D5BNR0	1.38158e-05	2.00585e-05
+hypothetical protein	3.2724e-05	7.59042e-06
+YcjX like protein	0.00049921	8.95498e-05
+Putative Rz endopeptidase from lambdoid prophage Rac 	0.00179183	0.000230046
+Inner membrane ABC transporter permease protein YcjO	0.0033148	0.000493738
+Sulfate starvation induced protein 7	1.10156e-05	2.8639e-06
+Translation factor Guf1, mitochondrial	0.000145046	0.00307756
+Xaa Pro aminopeptidase	0.00242968	0.000335021
+Aldose 1 epimerase	0.0233888	0.00253037
+UniRef50_A0A017HMF0	0.000980275	3.89521e-05
+ABC transporter, substrate binding protein	0.000386818	0.000836955
+Methionyl tRNA formyltransferase	1.03416e-05	5.15637e-06
+UniRef50_J9NYM1	5.01707e-05	0.000403757
+UniRef50_C3QRE5	1.81918e-05	2.67701e-05
+PREDICTED	3.65562e-05	0.000295785
+Alkane 1 monooxygenase	0.00411194	0.00040414
+Glutamate 1 semialdehyde 2,1 aminomutase	1.1617e-05	2.62027e-05
+Response regulator	0.023427	0.00491444
+UniRef50_W0NGN9	0.00021882	5.26472e-05
+glucose methanol choline oxidoreductase	2.90246e-05	7.65416e-06
+hypothetical protein	8.89614e-05	8.64856e-06
+transcriptional regulator	0.000462786	9.05442e-05
+UniRef50_S9S9T8	7.76669e-06	4.52777e-07
+Possible acyl CoA dehydrogenase	0.000228402	0.00408234
+UniRef50_F0LEQ2	1.57025e-05	1.89239e-06
+glutamine synthetase	3.45942e-06	1.9503e-05
+Ribonuclease H	4.38747e-05	1.1532e-05
+hypothetical protein	3.10878e-06	1.85849e-06
+hypothetical protein	1.05514e-05	3.97437e-06
+Glycerol uptake operon antiterminator regulatory protein	0.0089692	0.00262425
+Marine sediment metagenome DNA, contig	1.2273e-05	0.000282736
+1 pyrroline 5 carboxylate dehydrogenase	0.0278552	0.0286913
+helicase subunit of the DNA excision repair complex	0.000189961	0.000178786
+metallophosphoesterase	2.67581e-05	5.22849e-05
+Ribosome recycling factor	0.00320522	0.00170892
+UniRef50_M2SV33	2.74765e-06	1.07218e-05
+Peptidyl tRNA hydrolase	5.50997e-05	1.59518e-05
+UniRef50_J7L680	3.6056e-05	9.42478e-06
+hypothetical protein	7.724e-05	8.15276e-06
+Dihydrolipoyl dehydrogenase	0.00261706	0.000589565
+UniRef50_K1V9D8	2.42618e-05	4.36272e-06
+Putative carboxymethylenebutenolidase	0.00236679	0.000363297
+Lipopolysaccharide 1,2 N acetylglucosaminetransferase	0.00198955	0.000113365
+Cro Cl family transcriptional regulator	0.000269563	1.68367e-05
+Hydrolase, alpha beta domain protein	8.87991e-05	0.00175463
+3 oxoacyl ACP synthase	1.03369e-05	1.98993e-05
+hypothetical protein	1.02766e-05	6.69269e-06
+hypothetical protein	1.14533e-05	7.22748e-06
+hypothetical protein	1.63618e-05	6.92919e-06
+Marine sediment metagenome DNA, contig	0.000104434	1.2346e-05
+Ribonuclease 3	1.21867e-05	2.64013e-05
+Mannonate dehydratase	0.000341121	0.0045855
+PREDICTED	1.17162e-05	4.86522e-07
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00784468	0.00236499
+hypothetical protein	6.43441e-05	2.83363e-05
+UniRef50_B9KSB3	0.00123973	0.000685381
+UPF0339 protein YegP	0.000715013	0.00156443
+Methylated DNA  protein cysteine methyltransferase	0.000317499	0.000193086
+Trehalose 6 P hydrolase	0.00566884	0.0010806
+UniRef50_R1CXE8	3.71961e-05	0.00012079
+Chorismate mutase	0.000130783	0.00323681
+DNA binding transcriptional activator of porin biosynthesis, partial	2.50066e-05	3.06578e-05
+Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.00156005	0.000180419
+ABC transporter related protein	0.000427177	0.0192265
+UniRef50_X7EKT4	3.30746e-05	1.19552e-05
+COG0583	1.97938e-05	7.50729e-06
+UPF0122 protein EF_1701	0.00091786	0.00914082
+Autoinducer 2 binding protein LsrB	0.0089304	0.00232104
+4 diphosphocytidyl 2 C methyl D erythritol kinase	0.00276355	0.000645429
+Ribonucleoside diphosphate reductase 1 subunit beta	0.00347068	0.0021753
+ATP dependent Clp protease proteolytic subunit	1.44679e-05	2.14325e-05
+UniRef50_Q9A8A3	0.00052914	0.000107831
+UniRef50_R1CGH2	0.000101981	0.000132778
+UDP N acetylenolpyruvoylglucosamine reductase	0.000418782	0.000192658
+Paraquat inducible protein B	1.62639e-05	2.82748e-05
+Sugar phosphatase YidA	0.00605086	0.00247841
+CTP synthase	3.09043e-05	8.98589e-05
+16S rRNA mC 967 methyltransferase	0.00457557	0.00282264
+Serine hydroxymethyltransferase 	8.92743e-06	6.5633e-06
+Na translocating NADH quinone reductase subunit E, partial	6.37378e-05	4.19982e-05
+UniRef50_P76104	0.00299164	0.000274083
+Spore coat protein CotS	0.000541591	0.000637271
+Hypothetical protein CBG04553	7.9544e-07	6.62012e-05
+UniRef50_P76100	0.0016745	0.000591407
+Skp like protein	0.000408073	0.00053658
+UniRef50_U4Q2X2	0.00120097	0.000277972
+MFS general substrate transporter	2.8213e-06	1.22873e-05
+polyhydroxyalkanoate depolymerase, intracellular	0.000338807	3.16435e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit C	0.00171556	0.000146131
+Phosphoribosyl AMP cyclohydrolase	1.27566e-05	3.47635e-05
+UniRef50_B9E2W7	9.81191e-05	0.000538443
+hypothetical protein, partial	1.69334e-05	5.205e-06
+UniRef50_D5RMQ9	0.000894383	0.000350722
+8 amino 7 oxononanoate synthase	8.39739e-06	2.22254e-06
+Predicted protein	0.000495952	1.13088e-05
+Guanylate kinase	8.36411e-06	1.29463e-05
+50S ribosomal protein L9	0.000454795	0.000563833
+UniRef50_B9KUZ9	0.00144331	0.00111866
+UniRef50_C5QYC3	0.0334165	0.0135605
+hypothetical protein	7.01767e-05	5.50693e-05
+Dihydrolipoyl dehydrogenase, mitochondrial	0.000554141	0.0291759
+Putative assembly protein	1.73638e-06	9.71533e-07
+UniRef50_A0A024HXW4	1.93192e-05	2.01511e-05
+ABC transporter	0.00121496	0.000705461
+UniRef50_A0A023XD37	0.00254667	0.000319519
+tRNA specific 2 thiouridylase MnmA	9.43594e-05	0.000926291
+UniRef50_A5IUF8	0.00468453	0.00126404
+Phosphate ABC transporter, permease protein PstC	0.00188422	9.42129e-05
+glutaredoxin	0.000235007	6.0524e-05
+NADH nitroreductase, putative	0.00934404	0.00164146
+UniRef50_D6T1N1	3.14057e-05	9.96629e-05
+UniRef50_P30864	0.00193422	0.00227576
+ATP dependent DNA helicase RecQ	2.84859e-05	4.44099e-06
+Transposase	0.00560985	0.000213773
+hypothetical protein	5.41373e-06	3.77403e-06
+TnaB	0.000151782	0.00155501
+hypothetical protein	7.11574e-06	2.4348e-05
+Pyruvate phosphate dikinase, PEP pyruvate binding	0.000261408	0.000462627
+50S ribosomal protein L24	0.000509922	0.000801651
+HAD superfamily hydrolase, subfamily IA, variant 3	0.00552874	0.00106692
+UniRef50_A4X0H4	0.00644301	0.00236204
+glucose 1 phosphate adenylyltransferase	7.38019e-06	8.86054e-06
+UniRef50_G0NKG2	1.58402e-06	8.59212e-07
+UniRef50_F2RAR1	2.03731e-05	9.01625e-06
+PREDICTED	1.42964e-05	9.57878e-06
+UniRef50_A6LTB9	0.000196066	0.00017626
+Dipeptide transport system permease protein DppC 	3.55872e-05	2.2817e-05
+Oligopeptide transport ATP binding protein OppD	0.00319076	0.00155616
+UniRef50_B9E466	0.000140115	0.000455944
+Translation initiation factor IF 2	0.00876923	0.00162969
+UniRef50_D2ZRY0	0.00110385	0.000456901
+PREDICTED	6.57812e-05	1.5699e-05
+preprotein translocase subunit TatA	0.000102763	4.10274e-05
+Phage protein	0.00615007	0.000325307
+Glyoxalase	1.43684e-05	1.67795e-05
+RNA splicing ligase RtcB	0.000281782	0.000481141
+membrane protein	0.000155165	3.42638e-05
+hypothetical protein	2.96148e-06	3.0938e-06
+UniRef50_S3LIB4	3.7326e-05	1.6352e-05
+UniRef50_Q28NL2	2.54095e-05	7.66383e-06
+hypothetical protein	0.000170126	7.64093e-05
+hypothetical protein	2.71935e-05	0.000253582
+Chromosomal replication initiator protein DnaA	0.00651718	0.00246057
+excinuclease ABC subunit C	7.14284e-06	8.55663e-06
+branched chain amino acid ABC transporter permease	5.26501e-06	7.36375e-05
+ABC transporter ATP binding protein	3.65368e-05	1.03624e-05
+hypothetical protein, partial	2.66838e-05	1.73098e-05
+2 aminoethylphosphonate  pyruvate transaminase	0.00017786	0.00112294
+hypothetical protein	9.42961e-06	2.22547e-05
+Replication initiation protein	4.48775e-05	1.44915e-05
+UniRef50_X5K1E3	0.000943594	0.000446691
+Multidrug export protein MepA	0.00974986	0.000678615
+Phosphatidylglycerophosphatase A	0.00156113	0.000238656
+UniRef50_W7WR71	5.32413e-05	5.0182e-05
+UniRef50_E8PGH1	0.000236148	0.00313065
+Peptidase C13 family protein	8.65905e-05	0.00275452
+NADH dehydrogenase [ubiquinone] iron sulfur protein 3	2.06481e-05	8.27568e-06
+Carbamoyl phosphate synthase	0.000109105	0.00432251
+30S ribosomal protein S4	0.00269464	0.00144512
+Phage portal protein	0.0174405	0.00169962
+potassium transporting ATPase subunit B, partial	1.41524e-05	0.000707221
+Ankyrin repeat containing protein	0.000847614	0.00014184
+HupH hydrogenase expression protein	0.000209363	4.82174e-05
+Membrane protein	0.0103022	0.00393427
+Fumarate reductase, flavoprotein subunit	0.00542892	0.000424998
+hypothetical protein	1.02472e-05	1.98989e-05
+hypothetical protein	0.000342066	6.45424e-05
+Peptidoglycan hydrolase flgJ	0.00372157	0.000373115
+Holliday junction ATP dependent DNA helicase RuvB	1.20073e-05	0.00378805
+UniRef50_J0GC54	0.00723335	0.00209482
+Probable L,D transpeptidase YcbB	0.00265317	0.000916103
+Ferrichrome ABC transporter periplasmic ferrichrome binding protein FhuD 1	2.79681e-05	8.02738e-06
+Motility protein B	0.00240933	0.0007372
+UniRef50_R3TZ40	9.39404e-06	3.866e-06
+hypothetical protein	4.66701e-05	1.0579e-05
+nucleoside diphosphate kinase	5.13803e-05	1.62926e-05
+UniRef50_F2ABU0	0.000957141	0.000161208
+ABC polysaccharide export transporter, inner membrane subunit	0.0181561	0.00143881
+UniRef50_T1HGL7	6.16997e-06	3.14227e-05
+glycine betaine carnitine ABC transporter, ATP binding subunit	0.000226647	1.46523e-05
+long chain fatty acid  CoA ligase, partial	2.53021e-05	4.0888e-06
+hypothetical protein	0.000111975	4.02559e-06
+UniRef50_C5N039	0.00275859	0.000730555
+L glutamine synthetase	3.04606e-06	6.85523e-06
+hypothetical protein	8.87998e-06	6.30028e-06
+Protein export membrane protein SecF	8.7719e-05	0.00212071
+PREDICTED	2.48704e-06	3.08467e-07
+Proline  tRNA ligase 2	6.74263e-06	1.51517e-05
+Threonine efflux protein	0.00196623	0.00235813
+hypothetical protein	9.29454e-05	4.89936e-06
+hypothetical protein	2.12505e-06	8.9661e-07
+Serine protein kinase , prkA protein	0.000288443	0.000354115
+UniRef50_J2PRG5	6.0404e-05	2.54424e-05
+UniRef50_S7Z9P2	1.67377e-05	3.47261e-06
+Ribulose 5 phosphate 4 epimerase	1.84313e-05	0.00025667
+UniRef50_J1E8C3	1.81755e-05	8.83523e-06
+UniRef50_Q46831	0.00372926	0.000965947
+UniRef50_Q1R0P6	6.28735e-06	1.18641e-05
+hypothetical protein	9.60844e-06	4.16196e-06
+hypothetical protein	3.71572e-06	3.92761e-06
+Transglutaminase like enzymes	4.43574e-05	1.13556e-05
+Urease subunit gamma	0.000607883	0.000189661
+Putative N acetyl LL diaminopimelate aminotransferase	2.71633e-05	0.00135766
+hypothetical protein	2.40698e-05	7.92898e-06
+Major ampullate spidroin 2	6.18404e-06	1.2086e-05
+Putative ABC transporter ATP binding protein CA_C0773	0.000448381	0.000648807
+Putative acyl CoA thioester hydrolase	0.000251156	0.000254348
+Aspartate  tRNA ligase	0.0239188	0.00299409
+hypothetical protein, partial	0.000118932	7.20034e-05
+Siroheme synthase CysG	0.00457246	0.000143886
+Esterase family protein	0.000520296	0.000777911
+hypothetical protein	1.8391e-05	1.34884e-05
+UniRef50_A0YEX4	0.000125868	0.000186058
+TetR family transcriptional regulator	0.00299829	0.000973002
+hypothetical protein, partial	1.85628e-05	2.7797e-05
+Quinol oxidase subunit 2	0.0089182	0.00154459
+Ubiquinol cytochrome c reductase iron sulfur subunit	0.000450735	0.000857588
+UniRef50_X5E1J9	0.017133	0.00097367
+Phosphotransferase system, trehalose specific IIBC component	0.0053015	0.000442075
+Adenosine deaminase	0.000164437	0.0018099
+Marine sediment metagenome DNA, contig	1.03997e-05	7.57787e-06
+UniRef50_Q8DWB5	0.00127517	0.000665073
+Holo [acyl carrier protein] synthase	0.00144457	0.0006684
+Regulatory protein BlaR1	0.107533	0.0170519
+hypothetical protein	0.00031534	2.67187e-05
+UniRef50_K4R1X2	0.00021313	0.000180442
+UniRef50_A4EPP0	0.000934894	0.000169306
+quinone oxidoreductase	6.60177e-05	8.25734e-06
+MFS permease	4.18873e-06	3.90053e-06
+UniRef50_B6IW38	0.000175595	4.59835e-05
+SCP like extracellular	0.000106728	0.00076575
+hypothetical protein, partial	2.25157e-05	9.72105e-06
+Sugar phosphate isomerases epimerases	0.000229198	0.000473329
+Export membrane protein SecF	0.0165763	0.00252674
+PREDICTED	3.51667e-05	1.52864e-05
+UniRef50_M4X5B0	0.000353754	0.000142742
+Phosphoglycerate mutase	0.000165787	0.00146032
+potassium transporter	1.33654e-05	8.49976e-06
+hypothetical protein	0.000210526	3.99071e-05
+UniRef50_A7A485	0.000131289	0.000262883
+ribonucleoside diphosphate reductase, partial	3.16835e-05	7.55906e-06
+UniRef50_K0T2W7	7.1838e-05	5.05329e-05
+UniRef50_B0VRG1	0.000135341	0.000751463
+Methyl accepting chemotaxis sensory transducer	0.000401998	0.000724866
+chemotaxis protein CheY	8.68489e-06	6.47731e-06
+Formate C acetyltransferase	0.00583222	0.00412787
+Dehydrogenases 	3.18795e-05	5.5136e-05
+Uroporphyrinogen decarboxylase	1.40467e-05	1.70147e-05
+Orotate phosphoribosyltransferase	0.00959131	0.000972208
+Dihydrolipoamide dehydrogenase	0.00754141	0.00231077
+Predicted protein	6.74447e-06	4.47582e-05
+Phosphoglucosamine mutase	0.000840362	0.00597392
+Chemotaxis protein methyltransferase	0.011508	0.00152813
+X Pro dipeptidyl peptidase 	7.45984e-06	1.35904e-05
+Glr1665 protein	0.00266549	0.0233711
+tRNA guanylyltransferase ThgL	0.00422535	0.000250446
+hypothetical protein	1.20387e-05	2.89465e-06
+hypothetical protein	2.0735e-05	1.31731e-05
+UniRef50_B9TDV5	7.25842e-05	6.44081e-05
+Pirin family protein	7.60166e-06	1.58425e-05
+UniRef50_C4WAX5	1.57761e-06	9.89467e-06
+HAD superfamily hydrolase, subfamily IA, variant 3	0.000152745	0.000353117
+hypothetical protein	1.99238e-05	1.60805e-05
+UniRef50_U1MU63	7.1971e-06	2.3459e-05
+hypothetical protein	0.000127312	5.57533e-05
+UniRef50_F4DTR0	2.79018e-05	3.16305e-05
+UniRef50_E8SJR1	0.0315538	0.000697887
+UDP N acetylglucosamine 1 carboxyvinyltransferase	9.85409e-06	3.59894e-05
+TRAP dicarboxylate transporter, DctM subunit	0.00749511	0.000893378
+hypothetical protein	2.50924e-05	4.55683e-05
+Protein rarD	0.000640053	0.000269148
+Thymidylate kinase	8.05301e-06	7.2289e-06
+ABC type multidrug transport system, ATPase component	0.00196286	0.000400402
+hypothetical protein	1.76976e-05	1.78285e-05
+hypothetical protein	8.98055e-06	1.54927e-05
+hypothetical protein, partial	1.84834e-05	1.64048e-05
+hypothetical protein	1.35383e-05	4.3545e-06
+UniRef50_I1AFI7	2.09108e-05	1.13951e-05
+Phosphopantetheine adenylyltransferase	0.0011695	0.00326707
+hypothetical protein	5.83244e-05	6.57014e-06
+UniRef50_Q9C0V7	0.000554859	5.62562e-05
+UniRef50_D4DV01	5.42118e-05	4.77356e-05
+Aspartate aminotransferase	0.00432983	0.00188638
+UniRef50_K4NFJ8	0.000206472	0.00136133
+UniRef50_V6QFW8	0.0659031	0.0130876
+tRNA 2 thiouridylase	3.91026e-06	5.0731e-06
+Peptide ABC transporter, permease 	0.000408064	2.91347e-05
+UniRef50_W8ZM57	6.36218e-05	2.37024e-06
+XRE family transcriptional regulator	1.68293e-05	2.61776e-05
+Flagellar motor switch protein FliG	0.00148808	8.83709e-05
+50S ribosomal protein L18	6.82608e-05	0.000119447
+p aminobenzoyl glutamate hydrolase subunit A	0.00176342	0.000254618
+UniRef50_A0A011PVU6	0.000158011	2.21971e-05
+UniRef50_X4ZFB4	0.00628653	0.00300338
+Cardiolipin synthase A	0.000107368	0.000365971
+UniRef50_R1FZF8	2.13808e-06	4.67921e-06
+UniRef50_A3ATB7	4.15556e-07	3.87934e-07
+Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.00689123	0.00245791
+HTH type transcriptional regulator SarS	0.010104	0.000747838
+Porin for benzoate transport 	0.000189072	0.00422045
+hypothetical protein	0.000291654	1.03223e-05
+Vitamin B12 import ATP binding protein BtuD	0.00267332	0.000120194
+Peptide methionine sulfoxide reductase MsrB	0.00492618	3.51471e-05
+UniRef50_G0DUV4	0.000287648	0.00132395
+UniRef50_X5PRY3	0.000174484	4.97845e-05
+Putative two component response regulator and GGDEF family protein YeaJ 	1.09136e-06	2.28459e-06
+Dihydrolipoyl dehydrogenase	0.0188892	0.00193224
+UniRef50_E1IJ03	0.000259283	3.59965e-05
+3 ketoacyl CoA thiolase	3.31453e-06	4.77932e-06
+UniRef50_F5N2M6	4.98304e-05	3.35859e-05
+DNA methyltransferase	9.18962e-05	0.000151135
+MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr	0.0019259	0.000509197
+Biofilm formation protein PelB	6.58178e-06	4.64491e-06
+phosphoserine phosphatase	4.18919e-06	5.57764e-06
+Peptide deformylase 1	0.000810025	0.00960893
+hypothetical protein	1.58347e-05	7.90334e-05
+UniRef50_M5Q4Y7	2.57878e-05	5.5541e-05
+Allantoate amidohydrolase	0.00335348	0.000575087
+5 3 exonuclease	1.02046e-05	0.00116926
+UniRef50_B1HWM5	7.11674e-06	0.00201908
+Diaminopimelate decarboxylase	1.01661e-05	6.22921e-05
+UniRef50_H8GZA7	0.00020189	0.00662998
+Glycine  tRNA ligase beta subunit	0.00341017	0.00038352
+Protein YecM	0.0045229	0.000476734
+PREDICTED	0.00011286	1.61025e-05
+UniRef50_C1D104	0.000168274	0.0194933
+Aminomethyltransferase	6.34308e-06	5.76365e-06
+hypothetical protein	7.56555e-06	4.03376e-06
+Adenylate kinase	8.06042e-06	1.52492e-05
+phosphate starvation inducible E	3.69557e-05	1.68134e-05
+NADH quinone oxidoreductase subunit N	5.27716e-05	4.19424e-05
+UniRef50_I0ELD1	8.42776e-05	0.000341775
+30S ribosomal protein S15	0.000305041	0.000446824
+Phosphoheptose isomerase	9.37823e-06	8.21469e-06
+UniRef50_B0VBV4	0.000166884	0.00283068
+UniRef50_Q9RTX1	8.54184e-05	0.011981
+mechanosensitive ion channel protein MscL	0.00036392	4.84577e-05
+Fatty acid cistrans isomerase	0.000527599	0.000138631
+Ribonucleoside diphosphate reductase large subunit	2.19849e-06	4.21212e-05
+UniRef50_D2ASS3	0.00070541	0.0130423
+UniRef50_Q8CR16	0.00937165	0.00223885
+UniRef50_L0RET5	2.89906e-05	4.23175e-05
+UniRef50_A1U1J0	6.23612e-06	4.68124e-06
+UniRef50_U3H8E5	6.50738e-07	3.04219e-07
+DEAD DEAH box helicase	7.0017e-05	0.0146098
+Protein NrdI	1.85264e-05	3.24049e-05
+UniRef50_M9VHZ8	0.000203969	0.000429473
+non ribosomal peptide synthetase like protein	6.93612e-05	7.00866e-05
+hypothetical protein	3.30212e-05	3.29893e-05
+Phosphoribosyl AMP cyclohydrolase	1.23225e-05	3.12411e-05
+Aldehyde dehydrogenase B	0.00420065	0.0043298
+DNA topoisomerase 3	0.0120214	0.0030538
+UniRef50_Q8RH06	0.00031051	0.000157806
+o succinylbenzoate synthase	4.1163e-05	0.00115354
+hypothetical protein, partial	7.24671e-05	2.60586e-05
+Macrolide export protein MacA	0.00224015	0.000322291
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.41183e-05	7.07031e-06
+50S ribosomal protein L4	1.20813e-05	7.90354e-05
+UniRef50_B9ADD3	0.000435192	0.000310674
+hypothetical protein	2.10964e-05	4.73457e-05
+UniRef50_A0QSU4	0.000236146	0.0027934
+hypothetical protein, partial	5.63538e-05	9.85439e-06
+UniRef50_W4HGC6	4.86359e-06	6.14595e-06
+Cys Met metabolism PLP dependent enzyme	0.000358789	0.00130536
+ABC type transporter, periplasmic subunit	9.9082e-05	0.000329453
+Permease YjgP YjgQ	9.60652e-05	0.00635658
+UniRef50_S9QS42	5.7428e-06	2.09555e-05
+Sporulation protein YqfD	8.97463e-05	0.00102752
+UniRef50_Q9RW17	0.000501068	0.0328996
+hemolysin type calcium binding region, partial	4.87793e-05	6.0893e-06
+surfeit 1	1.94023e-05	2.0586e-05
+UniRef50_U2Z2J1	1.25737e-06	5.93226e-07
+UniRef50_A0RAR3	1.72258e-05	6.67049e-05
+hypothetical protein, partial	4.57147e-05	2.88826e-05
+UniRef50_G2L3N1	0.00189825	0.000189021
+ATP dependent Clp protease ATP binding subunit ClpX	7.57424e-05	0.00190396
+UniRef50_S9Z4U8	4.73806e-05	9.52424e-06
+UniRef50_A6LUE7	0.000787895	0.000501704
+Flagellar protein FlaF	9.09382e-05	3.48954e-05
+PI 2a backbone protein	0.000222246	4.26937e-05
+hypothetical protein	3.38366e-05	2.29127e-05
+Adapter protein MecA	0.0204105	0.00366069
+Glycine  tRNA ligase	0.000313914	0.000724757
+UniRef50_F6FZF8	0.000373729	0.000106633
+Chemotaxis response regulator protein glutamate methylesterase	8.67903e-05	5.5669e-06
+DNA topoisomerase 4 subunit A	0.000515003	0.00264378
+LPS assembly protein LptD	0.000221539	0.00451184
+hypothetical protein	5.82254e-06	6.69635e-06
+UniRef50_A4WSI7	0.00371243	0.000676142
+Bifunctional enzyme CysN CysC	2.80346e-06	2.51117e-05
+Nitrate transport ATP binding protein NrtC	1.87478e-05	1.82646e-06
+Cell wall shape determining protein	0.00819279	0.00136082
+Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit	2.98842e-05	2.53267e-05
+Putative metal dependent RNase	7.53425e-05	1.90515e-05
+ABC transporterpermease protein	0.0136478	0.00165565
+Putative phage terminase large subunit	1.47156e-05	6.00951e-06
+Ribose phosphate pyrophosphokinase	9.99251e-05	3.27663e-05
+UniRef50_B9E484	0.00121532	0.000277467
+hypothetical protein	1.05473e-05	1.23199e-05
+UniRef50_H9KE53	1.28156e-05	5.15488e-06
+Protein PhoH	0.00193649	0.000242662
+Uroporphyrin III C methyltransferase, putative	0.000242332	8.25228e-05
+N anthranilate isomerase	0.00648966	0.00300171
+hypothetical protein, partial	3.59524e-05	2.89251e-05
+UniRef50_N8TNI2	0.0014477	0.00423141
+UDP N acetylmuramoylalanine  D glutamate ligase	0.000165117	0.00246294
+hypothetical protein	1.94822e-05	1.06104e-05
+hypothetical protein	3.61138e-05	7.72179e-06
+UniRef50_B9KSY4	0.00717915	0.000582382
+molecular chaperone DnaK	1.25413e-05	1.41546e-06
+Membrane protein, putative	0.0101554	0.00098476
+UniRef50_A9D6B9	1.35219e-05	9.7899e-06
+MULTISPECIES	4.70626e-06	4.5816e-06
+dTDP 4 dehydrorhamnose reductase	1.13956e-05	7.44126e-06
+UniRef50_E3EZ66	1.96524e-06	8.02756e-07
+MFS transporter	8.26718e-06	3.92715e-06
+Enoyl [acyl carrier protein] reductase [NADH]	0.00306482	0.000237526
+UniRef50_B0SHV0	0.00396268	0.000214248
+Cupin 2, conserved barrel domain protein	0.0129574	0.0010931
+Vitamin B12 binding protein	0.00165637	0.0002881
+aminodeoxychorismate synthase	4.00059e-06	3.02821e-06
+Non canonical purine NTP pyrophosphatase	8.60782e-05	7.708e-06
+MFS transporter	9.8502e-05	7.21164e-05
+UniRef50_F8FR25	0.0204806	0.00290809
+hypothetical protein	2.93429e-06	2.84449e-06
+RsbU	0.0200038	0.00299791
+FscRII 	0.000249619	0.000293384
+malto oligosyltrehalose synthase	2.39503e-06	6.35549e-05
+Methyltransferase type 11	0.000172885	0.0004044
+Acyl CoA dehydrogenase like protein	0.00574708	0.00115211
+UniRef50_G8VEA6	9.72146e-05	0.0022954
+Shikimate dehydrogenase	4.31037e-05	1.67056e-05
+GTPase Era	0.00316039	0.000303437
+Glyoxylate carboligase	0.00201671	0.000927465
+50S ribosomal protein L20	1.09042e-05	1.79235e-05
+Biotin carboxylase	0.000568957	3.28687e-06
+Periplasmic ribose binding protein	0.000883549	0.00138395
+UniRef50_Y2QRV2	0.0354113	0.00332692
+UniRef50_Q8CT45	0.00272189	4.30923e-05
+Dihydroorotase	3.73367e-06	8.0078e-06
+3 isopropylmalate dehydratase small subunit	1.03468e-05	0.00115272
+Acriflavin resistance protein 	0.00068414	0.000101964
+Signal transduction histidine kinase	8.9587e-05	0.000167669
+UniRef50_Q2YVN2	0.0026048	0.000221145
+Leader peptidase PppA	0.00326188	0.000551292
+Putative signal transduction protein	0.000218423	9.71185e-05
+hypothetical protein	3.1784e-05	0.00208513
+transporter	0.000158175	3.28015e-05
+hypothetical protein	2.48392e-05	7.17227e-05
+UniRef50_Q73CC7	2.99053e-05	0.000263658
+UniRef50_M4MLZ6	0.000186098	4.45066e-05
+Degenerate transposase 	0.000259519	1.5613e-05
+hypothetical protein	0.000327982	3.17844e-05
+hypothetical protein	1.60867e-05	1.56894e-06
+UniRef50_X6KX92	0.00243754	0.000265402
+UniRef50_A8LNJ7	0.000167741	3.61233e-05
+30S ribosomal protein S17	7.91846e-05	0.00014607
+ATP dependent dethiobiotin synthetase BioD	0.00855829	0.00286684
+Feruloyl esterase 	0.000487872	7.24441e-05
+Methyl accepting chemotaxis sensory transducer	0.000426902	0.000698543
+Lon protease 1	5.57447e-06	5.401e-05
+Type II secretion system protein E	0.00328005	0.0059237
+Transcriptional regulatory protein	0.000120053	0.000114085
+Diadenylate cyclase	0.0195176	0.00608999
+UniRef50_V5SSA5	0.00089959	7.78706e-05
+Tryptophan  tRNA ligase	0.00657322	0.00261911
+UniRef50_A7G9R9	3.79707e-05	1.14784e-05
+Inner membrane protein YeiU	0.00440195	0.000724621
+Bifunctional protein FolD	4.91148e-06	1.602e-06
+Integral membrane protein LmrP	0.0183485	0.00264723
+LysR family transcriptional regulator	5.12643e-05	7.19783e-06
+IS861, transposase OrfB	0.000228544	1.94513e-05
+Respiratory nitrate reductase delta chain	0.00843057	0.00205107
+Endonuclease III	0.000570862	0.00275253
+GntR family transcriptional regulator	0.000540165	0.00190602
+Carboxylesterase	0.0229323	0.00390783
+UniRef50_Q161I1	0.000148102	2.93245e-05
+Glutathione regulated potassium efflux system protein KefB, putative	5.85641e-05	0.00458449
+Mn2 and Fe2 transporter	0.017077	0.00181725
+Major facilitator family protein	8.11612e-05	0.00718972
+Enterotoxin	1.49072e-05	0.000377524
+UniRef50_D5T2X9	0.000132153	2.63605e-05
+P loop containing nucleoside triphosphate hydrolase protein	1.22896e-06	2.42223e-07
+Chitoporin	0.00124974	0.00010332
+PTS system mannose specific EIIBCA component	0.00927212	0.00219024
+DNA topology modulation protein	1.39309e-05	0.000180571
+hemolysin	6.51844e-06	6.4368e-06
+Cellobiose phosphotransferase system IIC component	8.9034e-05	0.000591228
+L asparaginase, type II	0.000728314	0.000291768
+UniRef50_Q2YUT2	0.00932492	0.000795109
+ATP dependent Clp protease adaptor protein ClpS	0.000551226	0.00023211
+Plectin	0.000162711	8.91609e-05
+peptide ABC transporter ATP binding protein	9.27331e-06	1.98712e-05
+peptide permease BMEII0860	1.35247e-05	2.74137e-05
+Urease subunit alpha	0.0256487	0.023965
+nitrogen regulatory protein	1.44019e-05	1.1679e-05
+UniRef50_D8JEK3	0.000129111	0.00385373
+Putrescine binding periplasmic protein	0.00177982	0.000173408
+Cell wall binding protein	0.000722849	0.000736437
+4 alpha glucanotransferase	7.49396e-06	0.00023494
+Major facilitator superfamily MFS_1	0.000744547	0.000531243
+LOV protein	0.000506735	0.000200861
+hypothetical protein	0.00100962	0.000142468
+UniRef50_U4PPL6	0.0134028	0.00115208
+UniRef50_B0V7I3	0.0011458	0.00318564
+MULTISPECIES	0.000125227	2.33242e-05
+Flagellum specific ATP synthase	0.00321657	0.00024532
+Glutamate 5 kinase	0.000236341	0.00421462
+UniRef50_I7BYL0	7.305e-06	0.000460144
+LigA	0.000437779	0.000292689
+Amino acid ABC transporter, permease protein	0.000747518	0.00273619
+Ribonucleoside diphosphate reductase	0.000170103	0.015256
+hypothetical protein	2.1748e-05	1.4103e-05
+Transcriptional regulator, RpiR family	0.000311455	0.000230218
+GTPase Obg	0.00365131	0.000306098
+HAD superfamily hydrolase	5.91872e-05	9.24471e-05
+Phosphoglycolate phosphatase	0.00189853	0.000882721
+Transcriptional regulator, ArsR family	0.00111873	0.000249402
+hypothetical protein	1.23052e-05	4.8817e-06
+Putative ribosome biogenesis GTPase RsgA	0.000168555	0.000848608
+hypothetical protein	0.000145535	2.09311e-05
+UniRef50_D6SI32	0.000348463	8.24397e-06
+UniRef50_R7PWI6	0.00336056	0.000128619
+beta hexosaminidase	5.47915e-06	1.33632e-05
+UniRef50_A3ZZL8	7.57858e-06	1.84556e-05
+molecular chaperone GroEL	2.60769e-05	4.59291e-06
+Alginate biosynthesis protein AlgA	2.27068e-05	1.48843e-05
+3 oxoacyl ACP reductase	9.95537e-06	6.83004e-06
+Sialic acid binding adhesin SabA	6.81732e-05	0.00142815
+Periplasmic AppA protein	0.00458949	0.000296984
+UniRef50_K9BV07	0.000193281	0.00605719
+Undecaprenyl diphosphatase	0.00461944	8.26015e-06
+ABC transporter	6.73256e-06	1.18557e-05
+UniRef50_R8AGJ1	0.00362177	4.38015e-05
+Inosine 5 monophosphate dehydrogenase	0.0022907	0.000422269
+PREDICTED	1.39136e-06	8.1342e-07
+UniRef50_P75843	0.00223309	0.000253304
+nucleotidyl transferase	2.82169e-05	2.68271e-06
+Phage associated protein	3.67238e-05	2.73108e-05
+UniRef50_M9SEQ2	0.000228853	0.000145755
+UniRef50_P75849	0.00203997	0.00815717
+ATP dependent RNA helicase RhlE	6.72201e-05	9.92654e-05
+ATPase associated with various cellular activities AAA_5	0.000273552	0.000654523
+RNA polymerase sigma factor RpoD	0.00282949	0.000265161
+UniRef50_H7CRL6	0.000742531	0.00199792
+RHS repeat associated core domain protein	0.000795153	0.000116237
+UniRef50_B5ZPH5	0.000188413	1.39168e-05
+OmpR family two component response regulator	1.30241e-05	1.50879e-05
+UniRef50_J0WVH5	2.11328e-05	7.52133e-06
+UniRef50_C0DVM5	3.96494e-05	1.36879e-05
+UniRef50_P37545	0.0239634	0.00327713
+hypothetical protein	1.1278e-05	5.9807e-06
+UniRef50_Q161C9	0.00096611	0.000598521
+Excinuclease ABC	4.03755e-06	3.87388e-05
+UniRef50_G8SMI0	0.000217527	3.23254e-05
+Glucose 6 phosphate 1 dehydrogenase	0.00900264	0.00154372
+UniRef50_Q5HJ36	0.00241287	0.000458086
+Cell division initiation protein DivIVA	0.00640507	0.0011362
+transposase	5.43465e-05	7.67993e-05
+ABC transporter related	0.00127375	0.00307527
+Pseudouridine synthase	0.0065037	0.000888116
+Acetolactate synthase large subunit	0.000968744	0.00601285
+peptide ABC transporter permease, partial	2.57868e-05	0.000131533
+UniRef50_L7WXH7	0.00392539	0.000847027
+Acetyltransferase, GNAT family	0.00212127	0.00161825
+Myo inositol 2 dehydrogenase	0.000103766	0.00197504
+ferredoxin	2.15038e-05	9.71136e-05
+Predicted type I restriction modification enzyme, subunit S	0.000417209	0.000710063
+Shikimate dehydrogenase	4.963e-05	2.36973e-05
+permease YjgP YjgQ family protein	0.000120196	0.000106887
+hypothetical protein	1.50502e-05	1.14569e-05
+UniRef50_V7Z055	0.000112072	7.33826e-05
+Transporter, major facilitator family protein	0.000140229	0.00224211
+thioredoxin reductase, partial	8.34639e-05	6.68091e-05
+ATPase	4.1646e-06	0.00150245
+Pyrroline 5 carboxylate reductase	0.00202798	0.00160538
+UniRef50_A4XQZ9	0.000346989	4.84268e-05
+UniRef50_M0HKI8	0.000150707	5.34246e-05
+UniRef50_A9VYY8	0.0118005	0.000849261
+hypothetical protein	0.000297364	9.3771e-05
+UniRef50_F3LQG5	0.000599365	0.000248712
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.78285e-05	5.53519e-06
+amino acid transporter, partial	4.72833e-05	4.81071e-05
+UniRef50_M9REM3	0.000163109	0.00713802
+hypothetical protein	8.11125e-06	8.82238e-06
+UniRef50_Q5HM80	0.0112309	0.000444045
+hypothetical protein	3.70282e-05	3.42006e-06
+ribonuclease	1.11537e-05	3.60195e-06
+hypothetical protein	8.27801e-06	3.28264e-06
+hypothetical protein	0.000156035	5.2422e-05
+UniRef50_D3QFC7	0.00359775	0.00562339
+UniRef50_Q49YE7	0.00642075	0.000353204
+PREDICTED	2.99467e-05	1.8193e-05
+Transcriptional regulator, LuxR family	9.01533e-05	8.13825e-05
+DNA mismatch repair protein MutS	1.8027e-06	2.73393e-05
+Putative head portal protein	0.0107019	0.0016951
+NADH dehydrogenase, FAD containing subunit	9.41834e-05	0.0208486
+UniRef50_I0DPX6	3.24852e-06	5.80576e-06
+FimV domain protein	4.81242e-05	0.000729563
+Marine sediment metagenome DNA, contig	1.63948e-05	1.93156e-05
+UniRef50_S4XSY7	1.18162e-05	9.84197e-05
+hypothetical protein	4.12702e-05	6.22677e-06
+Dihydropteroate synthase	0.0024118	0.00222144
+UniRef50_T8S6T3	0.00120377	0.000232002
+Inosine 5 monophosphate dehydrogenase	0.000184132	0.00401216
+Peptidase C26	0.00115488	0.000750557
+Adenine phosphoribosyltransferase	3.39651e-05	2.74702e-05
+UPF0178 protein PA5247	0.000420248	0.000522005
+Aerotaxis receptor	0.0023262	0.000203168
+Enolase B	3.86179e-06	2.0236e-05
+Oligopeptide transport ATP binding protein AppD	1.6995e-05	0.0129859
+Ribosome binding ATPase YchF	0.0207317	0.00588891
+PEP synthetase regulatory protein	1.59012e-05	6.54904e-06
+PREDICTED	8.35314e-05	6.19003e-05
+PTS system, IID component	0.00721647	0.00209342
+Transcription termination factor Rho	0.00242316	0.000702407
+peptide ABC transporter ATP binding protein	4.86562e-05	5.3721e-05
+ABC transporter permease	0.000260295	0.000334906
+Glucosamine 6 phosphate isomerase 1	9.41917e-06	4.93052e-06
+Phenylalanine racemase 	0.000197873	0.00224021
+Putative xanthine dehydrogenase YagS FAD binding subunit	0.00214711	0.00837788
+methionine aminopeptidase	2.953e-05	1.17172e-05
+Histidinol dehydrogenase	0.0010361	0.00626711
+UniRef50_S4XFR3	0.000240059	0.00272736
+UniRef50_A1V623	0.000288466	7.32803e-05
+UniRef50_D4HFA9	0.000215276	0.00311242
+Oxidoreductase	0.00662975	0.00150446
+Ribosome associated heat shock protein	0.000256443	0.000279936
+Pyridoxal biosynthesis protein PDX1.1	0.0297346	0.00407407
+tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase	0.002253	0.00014816
+Glycerol dehydrogenase	0.00456111	0.000707794
+LexA repressor	7.38698e-05	9.16112e-06
+ATP dependent helicase	0.00187514	0.000139888
+UniRef50_A5UM96	0.0114792	0.000553994
+Cobyric acid synthase	6.92487e-05	0.00218041
+UniRef50_I1F524	7.71997e-06	0.000156759
+hypothetical protein	7.16378e-06	1.47197e-05
+Periplasmic sensor signal transduction histidine kinase	0.00490274	8.36765e-05
+Adenylate cyclase 	0.000210421	0.000223432
+Putative Holliday junction resolvase	2.08162e-05	0.00384624
+Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR	0.0113175	0.0014501
+UniRef50_H4NAZ8	0.00080206	9.7722e-05
+Heat shock protein C	0.00364091	0.00168897
+Chaperone usher secretion system usher protein	0.00018503	0.00118895
+hypothetical protein	7.1131e-06	7.47195e-05
+Anchored repeat type ABC transporter, permease subunit	0.00030911	0.00249618
+Transcription factor	0.00708729	0.00151231
+UniRef50_P77174	0.00135019	0.000722053
+DNA directed RNA polymerase subunit alpha	1.35582e-05	3.73527e-06
+UniRef50_P77171	0.0022243	0.000156967
+Chemotactic transducer PctC	0.000231271	0.00015533
+Ferrochelatase	0.00677434	0.00170291
+UniRef50_E1I5H5	0.000435192	0.000328882
+hypothetical protein	4.62455e-06	1.44605e-05
+Single strand binding protein Primosomal replication protein n	0.000561717	0.000933308
+UniRef50_Q5HLD6	0.000604578	0.000544151
+UPF0316 protein SA1727	0.0170828	0.00114243
+3 dehydroquinate dehydratase	0.0222462	0.00332566
+hypothetical protein	1.57069e-05	7.76187e-06
+tRNA and rRNA cytosine C5 methylase	0.00216554	0.00122761
+biotin biosynthesis protein BioC	1.54562e-05	6.44535e-05
+UniRef50_D3SFX6	9.31317e-05	1.36762e-05
+Truncated bacteriocin ABC transporter ATP binding and permease components	0.00258749	0.000310193
+TonB dependent receptor family protein	0.00033282	0.00366505
+UniRef50_P77433	0.00165629	0.000592485
+UniRef50_Q8CQR2	0.00478448	0.000528146
+UniRef50_G9YY14	8.21073e-06	7.71799e-05
+hypothetical protein	2.89481e-06	5.15224e-06
+UniRef50_B7V896	3.87727e-05	0.000140289
+Dihydrolipoyl dehydrogenase, mitochondrial	1.66786e-05	2.96847e-05
+UniRef50_S5XWD9	0.000466058	4.04682e-05
+Cytosine permease	0.00321053	0.000255423
+hypothetical protein	3.85254e-05	1.23471e-05
+CBS domain containing protein	9.85982e-05	0.0015294
+phosphoglycerate kinase	1.66227e-05	9.38672e-06
+RHS repeat associated core domain protein	0.000102583	0.00365366
+Thiamine phosphate synthase	0.00238005	0.000146947
+Amino acid ABC transporter periplasmic binding protein	0.00112697	0.00022532
+UniRef50_P33634	0.00241082	0.000391521
+50S ribosomal protein L13	0.0133356	0.00121674
+Phage infection protein	0.000370629	3.66319e-05
+hypothetical protein	7.66835e-05	1.05803e-05
+Threonine synthase protein	3.2425e-05	2.03391e-05
+D serine dehydratase	0.00375804	0.00298461
+UPF0225 protein HMPREF9154_3085	1.94889e-05	2.10044e-05
+hypothetical protein	2.50329e-05	1.09071e-05
+ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 	4.61658e-05	0.00218987
+UniRef50_I6RX31	0.000471797	0.000340094
+ThiF domain containing protein	5.49878e-06	4.44158e-06
+Outer membrane protein oprM	0.00037079	0.00330419
+UniRef50_A8AL69	0.000289693	0.000114318
+UniRef50_G4QBM5	3.63741e-06	4.03468e-06
+Polysaccharide export protein	0.00186382	0.00028352
+Histone acetyltransferase HPA2	0.000116185	0.000575908
+Tat  pathway signal sequence	0.000210781	1.43941e-05
+UniRef50_U3SVL6	0.00340665	0.00141684
+hypothetical protein	1.4747e-05	1.43459e-05
+UniRef50_A9E033	2.37254e-05	2.53355e-05
+Tyrosine  tRNA ligase	4.09286e-05	0.000605735
+UniRef50_K0CJC2	3.61416e-06	5.57305e-06
+Competence protein ComM	7.51925e-06	2.3199e-05
+Elongation factor P	1.08655e-05	6.49398e-05
+Adenylosuccinate synthetase	0.000134454	0.00442833
+Aminotransferase class III	0.000346056	0.000534446
+Ribose phosphate pyrophosphokinase	0.0214443	0.00369803
+recombinase, partial	6.61416e-05	1.00555e-05
+hypothetical protein	1.82756e-05	1.33163e-05
+Endonuclease MutS2	0.000400207	0.000409979
+Response regulator receiver protein	6.4638e-05	0.000944125
+Magnesium transport protein CorA	0.00343679	0.00162284
+Methylmalonyl CoA mutase, mitochondrial	0.00027872	0.00331524
+Crossover junction endodeoxyribonuclease RuvC	0.00552582	0.00378412
+Gram negative pili assembly chaperone, N terminal domain protein	0.00019268	0.000152695
+UniRef50_N8X4K5	0.000997457	0.00237139
+Zinc import ATP binding protein ZnuC	9.89298e-06	3.56657e-06
+NADH	0.000235709	9.71698e-05
+2 oxoglutarate dehydrogenase E1 component	1.52058e-06	1.90532e-06
+hypothetical protein	1.4213e-05	2.41418e-05
+UniRef50_A9IIR2	9.35117e-06	1.39336e-05
+UniRef50_A3PG41	0.0062769	0.0014863
+Argininosuccinate lyase	2.20108e-05	9.87745e-06
+Factor H binding protein	0.000451022	0.000896025
+PREDICTED	2.59373e-05	5.95197e-06
+Hydrolase 	0.00483647	0.00024472
+hypothetical protein	4.14411e-06	4.07575e-06
+UniRef50_A4VR27	0.000601584	0.000124974
+hypothetical protein, partial	7.93836e-06	3.76283e-06
+UniRef50_A8I0S8	0.00102342	3.15913e-05
+Phospholipid glycerol acyltransferase	0.0116844	0.00182848
+Citrate lyase subunit beta	0.00385069	0.0011965
+Fe dicitrate transport system permease protein FecC	0.00279727	0.000334949
+NADH ubiquinone oxidoreductase subunit 6	6.89597e-05	6.48934e-06
+hypothetical protein	1.57238e-05	1.15598e-05
+aminotransferase	2.76884e-06	3.07939e-06
+peptide ABC transporter permease	1.46368e-05	3.17002e-05
+NADH ubiquinone oxidoreductase subunit 6	2.18717e-05	1.53081e-05
+Protein RnfH	0.000954439	0.000106551
+GTPase Era	0.000289283	0.000423127
+UniRef50_D8TNI9	5.0332e-06	1.50241e-05
+UniRef50_A4T3P6	1.7637e-05	1.37963e-05
+UniRef50_E3A4U6	0.000418556	0.000107307
+Glucosyl transferase	0.000166608	0.000145048
+Appr 1 p processing domain containing protein	1.15626e-05	4.39759e-05
+hypothetical protein	1.79377e-05	8.68728e-06
+peptidase M20	3.52348e-06	3.39295e-05
+UniRef50_V5ST79	0.000937645	0.00013783
+UniRef50_P39263	0.00260017	0.000589376
+uroporphyrinogen III C methyltransferase	2.51597e-05	7.47565e-06
+Multidrug resistance efflux pump SepA	0.0089202	0.00105273
+UniRef50_P39267	0.00159203	0.000292473
+UniRef50_W8S776	5.87025e-05	5.19829e-05
+Phosphoprotein phosphatase 2C	0.000436926	0.00113407
+hypothetical protein	0.000407121	5.94875e-05
+hypothetical protein	1.51395e-05	3.93674e-05
+hypothetical protein	2.8706e-06	6.05805e-06
+UniRef50_F2TBG9	1.36169e-05	5.19429e-07
+FAD containing monooxygenase EthA	1.35941e-05	0.000926935
+UniRef50_Q3JRY4	1.59398e-05	2.8018e-05
+UniRef50_Q8DW61	0.00231846	0.000305391
+UniRef50_Q8DW63	0.00723062	7.40947e-05
+UniRef50_Q8DW64	0.00331991	0.000165633
+UniRef50_Q8DW66	0.00180607	0.00029632
+UniRef50_Q8DW69	0.00341782	0.00668552
+hypothetical protein	1.04163e-05	3.49649e-06
+Stalked cell differentiation controlling protein	5.65564e-06	5.01204e-06
+Phenylacetate CoA oxygenase, PaaJ subunit	8.52196e-05	6.69668e-05
+3 methylcrotonyl CoA carboxylase	3.83018e-06	1.13422e-05
+MULTISPECIES	6.92124e-06	8.03561e-06
+Lipoprotein, putative	0.00553369	0.00193347
+Site specific recombinase	0.000183566	0.000864982
+Sulfate thiosulfate import ATP binding protein CysA	0.000111887	3.25444e-05
+Fumarate reductase flavoprotein subunit	0.0020749	0.00112697
+Arginine  tRNA ligase	3.79176e-06	4.29951e-06
+UniRef50_W1JJ37	1.47054e-05	1.41342e-05
+50S ribosomal protein L3 glutamine methyltransferase	0.00129779	0.00186774
+UniRef50_Q9RT16	0.000417635	0.0152819
+Helicase secretion neighborhood ATPase	0.00017333	0.00208866
+UniRef50_A0A024E451	3.58104e-05	4.05959e-05
+Conserved bacteriophage protein	0.00557867	0.00228163
+UniRef50_Q09AM4	0.000138979	2.30692e-05
+UniRef50_K1Z5M7	9.6825e-06	3.40476e-06
+Extracellular solute binding protein, family 1	0.00859854	0.000339872
+hypothetical protein	2.18914e-06	0.000135128
+Cytochrome bd ubiquinol oxidase subunit 1	1.25583e-05	2.28858e-05
+Bifunctional protein FolD	0.00621921	0.00327074
+UniRef50_N1MUD6	0.0120133	0.000903491
+UniRef50_D3DA43	9.95961e-06	0.000113222
+UniRef50_G9ZJL6	5.98176e-05	6.59374e-06
+hypothetical protein	2.50249e-05	3.75428e-05
+Bifunctional dihydropteroate synthase dihydropteroate reductase	0.00050864	0.00183965
+DNA gyrase subunit A	7.6809e-06	9.43241e-06
+ABC transporter permease	1.22698e-05	4.38386e-06
+hypothetical protein	3.17819e-05	8.91561e-06
+Hydrolase, haloacid dehalogenase like family	0.00616116	0.00417375
+UniRef50_F9YXR7	0.000185341	0.00274195
+UniRef50_Q9I6F3	0.000241542	0.000662867
+hypothetical protein	0.000207067	1.97955e-05
+DNA primase	0.000437905	5.54228e-05
+chromosomal replication initiator protein DnaA	4.16674e-06	3.76558e-06
+hypothetical protein	1.17452e-05	1.6319e-05
+Cysteine desulfuration protein SufE	0.000165813	1.33021e-05
+Succinyl CoA	4.47758e-05	2.24002e-05
+PTS system	0.00055475	0.000387004
+hypothetical protein	8.69436e-05	5.15298e-05
+5 oxoprolinase	0.00173338	0.000383297
+UniRef50_G4LIE7	0.000260539	9.23713e-05
+Glyceraldehyde 3 phosphate dehydrogenase GAPCP1, chloroplastic	1.99225e-05	1.82843e-05
+UniRef50_W5BG06	0.000198851	0.000155876
+Xaa Pro dipeptidase	0.00362506	0.00249471
+hypothetical protein	3.26008e-06	0.000126224
+Excinuclease ABC subunit C	1.46943e-05	1.44991e-05
+Phosphoglycerate kinase	0.0211839	0.0109874
+Replication initiation protein RepC	2.35305e-05	1.11954e-05
+hypothetical protein	1.88286e-05	4.52707e-05
+ISXoo15 transposase	5.64335e-05	1.44721e-05
+MFS superfamily bicyclomycin multidrug transportprotein	0.000555642	0.00470398
+2,4 dihydroxyacetophenone dioxygenase	0.000730842	0.000337855
+UniRef50_F4QZ58	7.42996e-05	5.67002e-06
+Chorismate synthase	0.000103766	0.000906716
+ABC transporter	2.72463e-06	8.61011e-06
+UniRef50_Q3JVM0	7.19942e-05	5.74439e-05
+Acyl ACP thioesterase	0.00464244	0.000804983
+L ribulose 5 phosphate 4 epimerase	0.00940599	0.00373296
+Transaldolase	0.00273112	0.000192889
+hypothetical protein	3.50856e-05	0.000134014
+Putative DNA utilization protein HofM	0.00154776	0.000392812
+UniRef50_G2M640	0.000303767	0.00240863
+CRP FNR family transcriptional regulator	0.00221098	0.000122993
+monosaccharide transporting ATPase, partial	0.000213821	0.000319576
+Tryptophan synthase alpha chain	0.00115502	0.00135078
+Transposase A from transposon Tn554	8.99862e-05	0.000196816
+aldehyde activating protein	7.79218e-05	1.39975e-05
+phosphoribosylcarboxyaminoimidazole  mutase, partial	6.42489e-05	1.19233e-05
+UniRef50_C2BE46	0.000579007	9.3321e-05
+UniRef50_K7EXQ4	2.62948e-05	5.00141e-06
+PREDICTED	4.12392e-06	9.48462e-05
+L fucose isomerase, first N terminal domain protein	0.00050736	0.00330526
+Phosphoribosylamine  glycine ligase	0.000114343	0.00302957
+Beta lactamase	0.0147232	0.00173728
+UniRef50_V9Y4Q6	0.000264846	3.1706e-05
+Protein YfdX	0.00201344	0.000711853
+NalD	0.000841537	0.000676985
+UniRef50_B9JV31	0.0101797	0.00171073
+Acetyltransferase	0.00572825	0.000754138
+Cytochrome c oxidase subunit 1 	8.03195e-06	1.0301e-05
+Dihydrolipoyl dehydrogenase	2.19903e-05	6.74506e-06
+Protein containing DUF28	8.80967e-06	5.9304e-06
+UniRef50_UPI0003F0D458	2.0711e-05	1.1044e-05
+Xylose transport system permease protein XylH	0.000177209	8.39111e-05
+Regulatory protein BlaR1	0.000163525	0.00161239
+hypothetical protein	4.57049e-06	4.09761e-06
+ABC transporter, ATP binding protein, MDR family	5.07615e-05	0.0184929
+P4 family integrase	0.00049675	0.000163545
+ATP synthase subunit beta	8.23308e-06	2.47604e-06
+hypothetical protein	1.63538e-06	2.92613e-06
+hypothetical protein	5.6898e-05	2.67646e-05
+hypothetical protein	3.04834e-05	9.15429e-05
+molybdopterin biosynthesis protein MoeZ, partial	2.2002e-05	2.94073e-05
+UniRef50_M3YWL2	1.20063e-05	3.27814e-06
+Trk system potassium uptake protein TrkA homolog	0.00153508	0.000209289
+ATP dependent transcriptional regulator, MalT like, LuxR family	0.000315683	0.000429167
+UniRef50_Q6AGI1	0.00554555	0.00102171
+Ribulose bisphosphate carboxylase large chain, chromosomal	9.45336e-05	4.7918e-05
+hypothetical protein	9.69125e-07	2.3071e-05
+Thioesterase superfamily protein	0.000607408	0.00710215
+RstA	0.00821514	0.000177081
+NifD 	0.000458196	0.000115951
+AMIN domain protein	9.89888e-06	6.21433e-05
+Phosphoribosyl AMP cyclohydrolase	1.61982e-05	4.51336e-05
+UniRef50_UPI0002B4BC1C	1.12141e-05	3.29367e-05
+alkylhydroperoxidase	0.000219951	0.000111103
+UniRef50_F7QTX4	1.46604e-05	9.98396e-06
+Inner membrane transport protein RhmT	0.000471823	6.80704e-05
+PREDICTED	4.39769e-05	5.43545e-05
+UniRef50_Q01609	0.000718096	0.00174101
+DNA directed RNA polymerase subunit beta	3.60261e-06	1.09926e-06
+Oxygen sensor histidine kinase NreB	0.0172624	0.0032704
+histidine kinase	3.94027e-05	3.86515e-05
+NaeI very short patch repair endonuclease	1.58886e-05	2.0335e-05
+hypothetical protein	1.72141e-05	2.55499e-06
+major facilitator transporter, partial	6.10883e-06	2.12535e-05
+Allantoinase	0.00391222	0.000440124
+Protein MalY	0.00231019	0.000404843
+Adhesin component	0.000742387	0.0223585
+Carboxynorspermidine decarboxylase	0.000169442	6.47901e-05
+Osmoprotectant amino acid ABC transporter ATP binding protein	0.00446336	0.00120361
+SAM dependent methyltransferase	0.000851823	0.000362404
+Glycosyl transferase family 2	7.61997e-05	0.000269258
+hypothetical protein	0.000136755	6.40223e-06
+Galactose 1 phosphate uridylyltransferase	0.00320119	0.000566635
+proline iminopeptidase	6.57283e-06	5.04491e-06
+Lipid A biosynthesis acyltransferase	0.000108215	0.00341861
+DNA polymerase III alpha subunit	0.0121639	0.00156638
+DNA directed RNA polymerase subunit beta	5.92479e-05	0.00229144
+DNA repair protein RecN	0.00243012	0.000168946
+N acetylmuramoyl L alanine amidase AmiC	3.43548e-05	0.000732548
+Chemotaxis protein CheY	0.00084547	0.00337606
+UniRef50_P0ABT9	0.00142312	0.000251424
+Extracellular solute binding protein, family 5	0.018065	0.0019232
+Histidine protein kinase SaeS	0.0150543	0.0011526
+hypothetical protein	0.000554045	0.00114397
+hypothetical protein	1.21978e-05	3.18002e-05
+Thiamine binding periplasmic protein	0.00240469	0.00109774
+Cyclic di GMP phosphodiesterase YahA	0.00251647	0.00134984
+Haemagglutination activity domain protein	0.000174059	1.39158e-05
+hypothetical protein	2.91789e-05	0.000147815
+Bifunctional protein GlmU	0.00269248	0.00618578
+hypothetical protein, partial	6.9992e-05	1.43055e-05
+hypothetical protein	2.81522e-05	2.36643e-05
+Pkinase domain containing protein	4.60228e-06	8.83199e-07
+hypothetical protein	2.28504e-05	7.75332e-06
+NUDIX hydrolase	8.22085e-06	0.000248109
+hypothetical protein	1.97178e-05	0.00267829
+GntR family transcriptional regulator protein	0.00479048	0.000138557
+hypothetical protein	2.35065e-06	5.56408e-07
+hypothetical protein	0.000180041	1.59096e-05
+hypothetical protein	1.0626e-05	1.18188e-05
+UniRef50_I5XEX7	6.26633e-05	3.78386e-05
+iron ABC transporter permease	5.42954e-05	4.77839e-05
+N hydroxyarylamine O acetyltransferase	0.00167095	0.000410132
+hypothetical protein	2.79239e-05	2.1797e-06
+hypothetical protein	0.000150751	8.2012e-06
+Phosphate ABC transporter, permease protein PstC	0.000107983	0.00306471
+Putative gluconeogenesis factor	0.000107983	0.00294218
+FilF	0.000316907	0.00385464
+Excinuclease ABC, subunit A	4.21037e-05	0.0145354
+N acetylmuramoyl L alanine amidase	0.00765263	0.00133969
+Cell wall hydrolase autolysin	0.000709837	0.00152157
+NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial	5.24117e-05	5.2906e-06
+Ribosomal RNA small subunit methyltransferase I	0.000331434	0.00114822
+phosphoglucosamine mutase	3.71904e-06	3.48048e-06
+UPF0047 protein YjbQ	1.49297e-05	0.00867252
+DNA polymerase III PolC type	0.00939202	0.00277299
+Oligopeptidase A	0.000725712	8.91415e-05
+hypothetical protein	6.24801e-05	5.66552e-06
+ATPase	0.0129488	0.000859876
+N formimino L glutamate deiminase	9.48915e-05	0.00290674
+Mercuric reductase	0.0106857	0.00139274
+UniRef50_R5D9D5	0.000248183	0.000525933
+hypothetical protein	2.65976e-05	1.02905e-05
+Electron transfer flavoprotein subunit beta	0.00610269	0.00294263
+hypothetical protein	4.5882e-06	3.68642e-06
+Replication protein C	5.68161e-05	2.34636e-05
+hypothetical protein	2.99701e-06	5.59459e-06
+TOBE domain protein	0.000301387	0.00226697
+UniRef50_I1F1X0	0.000192449	0.000147445
+Laccase domain protein PD_1754	0.00015605	0.000409817
+MFS transporter, aromatic acid	0.000288618	6.72546e-05
+UniRef50_UPI000252B72D	1.39861e-05	7.65264e-06
+Cytochrome D ubiquinol oxidase, subunit II	0.000301023	0.00192961
+hypothetical protein	9.7818e-06	2.93924e-06
+3 dehydroquinate synthase	0.000121675	0.00208958
+Imidazole glycerol phosphate synthase subunit HisH	0.000845731	0.00234463
+Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase	0.00436217	0.000687512
+CrpK, Fnr type transcriptional regulator	0.00970258	0.000612912
+Fructose 6 phosphate aldolase 1	0.00901994	0.00125656
+Putative TolA domain protein	9.07019e-05	2.94016e-05
+UniRef50_J3NBT7	1.04429e-05	0.000114663
+PREDICTED	2.14111e-05	7.01257e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000353624	0.00565622
+UniRef50_J1ZV65	1.31767e-06	1.67855e-06
+nicotinate phosphoribosyltransferase	3.61362e-06	3.10296e-06
+UniRef50_G0DTU8	0.00032802	0.00244709
+hypothetical protein	6.85362e-05	7.3347e-05
+GCN5 family acetyltransferase	7.50187e-05	0.000254657
+Carboxyl terminal protease	0.000547554	0.000466862
+ABC sugar transporter, inner membrane subunit	0.0110148	0.00128172
+hypothetical protein	6.44488e-05	6.4629e-06
+UniRef50_O32113	0.00334393	0.00158513
+Argininosuccinate synthase	0.0106163	0.00139847
+Uracil permease	0.0041252	0.000911294
+organic solvent ABC transporter ATP binding protein	0.000114298	1.70694e-05
+DnaJ like molecular chaperone domain protein	5.0429e-05	1.1722e-05
+UniRef50_P0ACZ1	0.000349358	0.000310674
+UniRef50_C7C6X9	0.00128287	0.000300284
+Threonine  tRNA ligase	1.51066e-05	3.07973e-06
+Shikimate dehydrogenase	0.0198939	0.00257361
+hypothetical protein	1.47876e-05	3.4311e-06
+UniRef50_C5N0J9	0.00545997	0.000589828
+glyoxalase bleomycin resistance protein dioxygenase	1.67424e-05	1.94429e-05
+Aspartate aminotransferase	0.0121873	0.00205122
+UniRef50_K1YDE1	0.000237619	0.000203915
+Putative membrane protein	2.61926e-06	2.43519e-06
+Replication initiation protein 	1.91318e-05	7.5229e-06
+DoxX family protein	8.2657e-05	1.21408e-05
+Aliphatic sulfonates import ATP binding protein SsuB, partial	7.63031e-05	7.64102e-06
+hypothetical protein	5.57923e-05	2.8466e-05
+Transporter, DME family, DMT superfamily	0.000273883	9.51111e-05
+HemA concentration negative effector	0.0175416	0.0029863
+preprotein translocase subunit SecD	2.61593e-06	5.01067e-06
+Phospho 2 dehydro 3 deoxyheptonate aldolase AroG	3.15873e-05	5.41448e-06
+Dihydrolipoamide dehydrogenase	0.0107556	0.000953349
+UniRef50_G1TF83	1.80311e-05	1.3746e-06
+Acetylglutamate kinase	4.68668e-05	0.00184149
+hypothetical protein	5.10978e-05	1.31426e-05
+SdiA regulated domain protein	4.71871e-05	2.93154e-05
+Beta lactamase domain protein	1.89604e-05	5.5283e-05
+Oleoyl  hydrolase	0.000420014	0.000270522
+hypothetical protein	7.40916e-06	0.000308945
+acyl CoA dehydrogenase	4.34145e-05	2.23832e-05
+putative transporter	5.10231e-06	2.04328e-05
+UniRef50_Q9RUR8	0.0002229	0.0317651
+Tyrosine recombinase XerC	0.00277665	0.000544258
+Succinyl CoA ligase [GDP forming] subunit alpha 3, mitochondrial	1.42515e-05	1.57352e-05
+Amino acid permease associated region	0.000716711	0.00122281
+Homoserine dehydrogenase	0.00398007	0.00281449
+Putrescine binding periplasmic protein	0.000441239	0.000106887
+PREDICTED	3.31407e-06	3.12161e-06
+hypothetical protein	5.80684e-07	0.000210717
+hypothetical protein	0.000705474	0.000132918
+UniRef50_G7U4S9	0.000152284	0.00499455
+Predicted protein	2.54049e-05	1.87972e-05
+7 carboxy 7 deazaguanine synthase	0.00299811	0.000329206
+UniRef50_W4UGA1	5.59042e-05	0.000299262
+molecular chaperone DnaK	2.27503e-05	3.49576e-06
+UniRef50_A6LRX4	0.0002219	0.000231198
+UniRef50_A0A023RW48	0.000147825	0.00193107
+Branched chain amino acid aminotransferase 5, chloroplastic	6.90641e-06	1.18796e-05
+UniRef50_Q3J497	0.00175782	0.00125346
+peptidase M32	1.74054e-05	4.38101e-06
+Phosphonates import ATP binding protein PhnC	0.0015521	0.00120091
+High affinity branched chain amino acid transport system permease protein LivM	0.00219052	0.000191953
+hypothetical protein	3.26837e-06	1.76409e-05
+Cyclic pyranopterin monophosphate synthase	4.25879e-06	6.4617e-05
+hypothetical protein	7.1216e-06	1.24125e-06
+UniRef50_E2S811	0.000639374	0.00017898
+Transcriptional regulator AdcR	0.00626697	0.000388608
+Homoisocitrate dehydrogenase	1.04453e-05	2.91765e-05
+UniRef50_Q84NM0	0.000158004	0.00013461
+PREDICTED	2.50408e-05	8.96106e-06
+Primosome assembly protein PriA	0.0164278	0.00218192
+hypothetical protein	2.66206e-05	1.24531e-05
+Dicarboxylate transport protein   alpha ketoglutarate permease	0.000136254	0.00278883
+thioredoxin	0.000179314	0.000193259
+UniRef50_J9UTL0	0.000747886	5.21907e-05
+UDP N acetylenolpyruvoylglucosamine reductase	0.00252055	0.000238513
+UniRef50_D6SIG9	0.00366742	0.000727804
+Peroxidase	0.000270154	0.0311159
+hypothetical protein, partial	4.34619e-06	7.39356e-05
+1,2 phenylacetyl CoA epoxidase, subunit E	0.00196692	0.000236202
+UniRef50_W0YPV2	1.41976e-05	0.000258322
+UniRef50_Q9RTL4	0.000156777	0.0131382
+Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain	0.000794997	0.00182786
+MULTISPECIES	1.01577e-05	0.000143687
+NADH quinone oxidoreductase chain 3	0.00180545	0.000349599
+L Ala D L Glu epimerase	0.00328668	0.000457883
+Argininosuccinate lyase	2.40943e-05	6.5884e-06
+Tryptophan synthase alpha chain	6.4687e-06	6.82402e-06
+UniRef50_Q9RZH5	4.89363e-05	0.00430802
+UPF0477 protein SACOL1020	0.0215597	0.0071674
+UniRef50_Q9RZH7	6.72318e-05	0.00394871
+UniRef50_Q9RZH0	0.000179606	0.00840954
+UniRef50_Q9RZH1	0.000249912	0.0128787
+hypothetical protein	6.8603e-06	1.86815e-06
+UniRef50_W1VJK5	0.000519439	0.00206933
+Thioredoxin	0.000706046	0.00045118
+hypothetical protein	3.28122e-06	1.76377e-06
+UniRef50_B9KF16	0.000316204	1.59976e-06
+UniRef50_R6IHH7	8.28914e-05	0.000295865
+Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes	7.71311e-05	0.00311868
+Putrescine ornithine antiporter	0.000488438	0.000806598
+UniRef50_A0A014NVK4	8.99959e-06	2.70321e-05
+Quinol oxidase subunit 1	0.0191598	0.00210617
+Oligo beta mannoside permease IIC component	0.000529809	0.00293074
+Bifunctional protein Aas	0.00278671	0.000454779
+UniRef50_I4K2W0	0.0159577	0.000178145
+hypothetical protein, partial	1.88352e-05	6.75576e-05
+UniRef50_Q3J232	0.00564425	0.00168992
+UniRef50_Q3J231	0.00984095	0.0029072
+UniRef50_Q3J230	0.0166537	0.00325705
+hypothetical protein	1.74587e-06	1.48225e-06
+hypothetical protein	4.7314e-06	6.86381e-06
+Putative transport protein ASA_2308	0.00218423	0.000300264
+Indole 3 glycerol phosphate synthase	7.44239e-06	0.0024526
+50S ribosomal protein L6	0.0245105	0.00266034
+Chromosome undetermined SCAF11289, whole genome shotgun sequence. 	2.59753e-05	2.76014e-05
+UniRef50_J9YTG3	0.00027968	0.000208802
+50s ribosomal protein	4.36692e-06	2.48286e-05
+UniRef50_A4WTJ9	2.98519e-05	3.34782e-05
+Amino acid carrier protein	0.000495726	0.000192848
+Cobalt transport family protein	0.0146638	0.00126871
+Candidate cytosine deaminase 	0.00276879	0.000736747
+ChaC family protein	2.74909e-05	2.74699e-05
+SdrG protein	0.00383843	0.000553037
+Predicted protein	5.98951e-05	0.000164964
+hypothetical protein, partial	1.14717e-05	9.13945e-06
+UniRef50_Q9RWT4	0.000209906	0.0263219
+Red like rubisco 1,5 bisphosphate carboxylase oxygenease form I 	0.000369212	4.65412e-06
+hypothetical protein	6.01931e-06	2.66066e-05
+PREDICTED	1.4567e-05	1.18084e-05
+UniRef50_M4XCW5	0.000132868	0.000421525
+hypothetical protein, partial	0.000113626	5.17146e-06
+UniRef50_G1Y260	0.000483956	0.000129343
+Ribose 5 phosphate isomerase	0.00598517	0.00102002
+peptidoglycan glycosyltransferase	2.14173e-06	2.36021e-06
+Plasmid partitioning protein RepA	1.83661e-05	6.32089e-06
+GfdT protein	8.72048e-06	2.43635e-06
+UniRef50_F2N3U1	3.63875e-05	2.71862e-05
+TraF	0.0261237	0.00282448
+UniRef50_F0KNJ6	0.00063607	0.00257471
+multidrug transporter	3.74517e-06	7.25469e-06
+2 nitropropane dioxygenase NPD	0.000227882	0.00319745
+Rubredoxin NAD reductase	0.000124035	0.000258759
+Bifunctional protein FolD	2.96722e-05	0.00076502
+hypothetical protein	7.57748e-05	4.86587e-06
+molybdopterin biosynthesis protein B	0.000107418	2.14545e-05
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00754718	0.00244085
+DNA directed RNA polymerase subunit beta	2.42999e-06	1.7377e-06
+tRNA cytidine acetyltransferase TmcA	0.00222211	0.000300337
+N succinylarginine dihydrolase	1.3448e-05	2.56478e-05
+D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase	0.000199535	7.37244e-06
+preprotein translocase subunit SecA	5.20069e-06	1.88706e-05
+UniRef50_A1BAM5	2.34436e-05	0.000191571
+cobalamin biosynthesis protein	6.82503e-05	0.000191309
+cold shock protein, partial	2.44946e-05	8.69604e-06
+UniRef50_P33348	0.00228211	0.000245948
+UniRef50_Y5MV84	0.00136833	8.37375e-06
+pyridine nucleotide disulfide oxidoreductase	3.42242e-06	1.07679e-05
+UniRef50_A0A023B4C6	4.13519e-06	6.83355e-06
+Lateral flagellar motor protein B 	0.00363736	0.000574499
+UniRef50_P45769	0.0018508	0.000128632
+UniRef50_B9KUP5	0.0018241	0.000275623
+Glucose 1 phosphate adenylyltransferase	7.04257e-06	6.12058e-06
+Permease of ABC transporter for sugars	0.000511229	0.00314909
+PREDICTED	2.04231e-05	4.9767e-05
+Urease subunit alpha	0.000624925	0.00147348
+NADH quinone oxidoreductase subunit B	2.89201e-05	2.82131e-05
+Probable phospholipid binding lipoprotein MlaA	0.000733229	0.00145861
+UniRef50_G4LR38	0.00108485	0.000121167
+Amidase	6.95348e-05	0.000205501
+Excinuclease ABC subunit A	1.08262e-05	3.2522e-05
+helicase	6.46568e-07	6.92096e-06
+UniRef50_S6UH58	0.000110564	1.49621e-05
+alpha amylase	1.3436e-05	5.57946e-06
+anhydro N acetylmuramic acid kinase	7.35504e-06	2.7445e-05
+PREDICTED	2.01357e-05	7.26984e-06
+UniRef50_Q4ZZY5	8.01212e-05	9.30632e-05
+UniRef50_A0A024HXK5	0.000106529	7.36467e-06
+cytochrome c oxidase, subunit II	1.0644e-06	0.0254204
+UniRef50_Q6A5B0	0.000380998	0.000134141
+Marine sediment metagenome DNA, contig	2.27727e-05	7.9555e-05
+Transcriptional regulator, MerR family	0.00728561	0.00195706
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.000926819	3.43962e-05
+Amidophosphoribosyltransferase	7.08026e-05	0.00252251
+ABC transporter, permease protein 	7.5765e-05	1.47346e-05
+Histone acetyltransferase ELP3 family	0.00270647	0.000605626
+Endonuclease exonuclease phosphatase	0.000180347	0.00308043
+Signal peptidase I	0.0034451	0.00178498
+UniRef50_Q8FBR8	5.20095e-05	1.624e-05
+Amidase	0.000332226	6.28745e-05
+Serine aspartate repeat containing protein D	0.0101147	0.000875463
+3 methyl 2 oxobutanoate hydroxymethyltransferase	2.08839e-05	6.67566e-06
+2 methylcitrate hydratase	0.00035418	0.00308983
+UniRef50_B9D5D5	1.76569e-05	1.75797e-05
+UniRef50_S6AZR4	0.000242703	0.000110436
+ABC transporter related protein	0.00198825	0.000718186
+UniRef50_J3DVI4	7.89332e-05	5.55432e-05
+uracil transporter	5.97418e-05	8.54263e-05
+Mobilization protein A	0.000404125	2.97667e-05
+peptidase S11	4.60787e-06	1.02003e-05
+UniRef50_A6LZM4	9.62484e-05	0.000824183
+GAF domain cyclic diguanylate phosphodiesterase  domain protein	2.571e-06	3.36783e-05
+Pyruvate kinase	3.49098e-06	2.34841e-06
+Diguanylate cyclase  domain containing protein	2.73976e-05	7.21951e-06
+UniRef50_Q3JSP4	0.000127193	0.000188875
+dTDP 4 dehydrorhamnose 3,5 epimerase	7.63233e-06	8.98136e-06
+UniRef50_S6AGE8	1.88452e-05	0.000788474
+ATPase WRNIP1	2.58241e-06	1.27541e-05
+ABC transporter	4.48951e-06	2.91905e-06
+Phosphotransferase enzyme family	0.00614279	0.00289823
+Glycine betaine binding periplasmic protein	0.0144666	0.00285573
+hypothetical protein	1.96409e-05	1.42724e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00419556	0.000508883
+GAF domain containing protein	0.00784475	0.00284876
+Histidine biosynthesis bifunctional protein HisB	0.00276595	0.00206021
+3 phosphoshikimate 1 carboxyvinyltransferase	0.000453984	0.000150667
+YqeL	4.6207e-05	0.000338176
+Putative imidazole glycerol phosphate synthase subunit hisF2	0.000600625	0.000347482
+Isoleucine  tRNA ligase	0.0150801	0.00732091
+Relaxase mobilization nuclease domain protein	0.000269179	1.84866e-05
+UniRef50_F7F1K1	2.51516e-06	2.12039e-05
+Carbamoyl phosphate synthase small chain	0.00195801	8.98747e-05
+UniRef50_A0A058ZGI8	1.61598e-05	6.94337e-06
+hypothetical protein, partial	2.34362e-06	6.77408e-06
+Marine sediment metagenome DNA, contig	1.68693e-05	7.59357e-06
+Lon protease	1.50405e-06	1.78393e-05
+UniRef50_Q653B9	6.96722e-05	4.3751e-05
+dTDP 4 dehydrorhamnose 3,5 epimerase	2.87985e-05	9.005e-06
+PREDICTED	1.29389e-05	7.3506e-06
+ATP dependent RNA helicase HrpB	0.000373713	0.000134812
+Cytochrome c type biogenesis protein CycK	0.00518932	0.000249422
+Xanthine uracil vitamin C permease	0.000272651	0.0118496
+Triosephosphate isomerase	5.99571e-06	4.88712e-05
+ABC type Fe3+ hydroxamate transport system, periplasmic component	3.27425e-05	0.00327071
+Gnt II system L idonate transporter IdnT, partial	4.66037e-06	4.02953e-06
+hypothetical protein	2.20454e-05	6.28006e-05
+UniRef50_E3D2E3	0.000156777	0.00211207
+Chromosomal replication initiator protein DnaA	0.000328978	0.0185046
+UniRef50_B9KTR9	0.000341295	0.000376704
+hypothetical protein	1.52715e-05	8.57043e-06
+UniRef50_Q5X183	0.00021211	0.0037615
+DNA polymerase IV	0.0187702	0.00226314
+UniRef50_B9KTR7	0.000146062	7.81744e-05
+UniRef50_E9C843	1.07455e-05	9.27903e-07
+UniRef50_F3U3B9	0.000562861	1.27315e-05
+Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein	0.0032036	0.00211575
+arylesterase	5.65051e-06	5.16034e-06
+oxidoreductase	0.000147827	0.000216037
+UniRef50_W5Y8E7	5.35577e-05	1.04813e-05
+phage tail protein	1.81869e-05	1.51637e-05
+HesA MoeB ThiF family protein	0.0114677	0.000557261
+UniRef50_A6TKL7	1.84527e-05	1.88224e-05
+UniRef50_M4UHU9	0.000600225	3.71192e-06
+Transposase IS204 IS1001 IS1096 IS1165 family protein	0.00148754	0.000970444
+UniRef50_S2ZWU0	1.94838e-05	3.76829e-05
+Choloylglycine hydrolase	0.00254013	0.000878325
+Lactaldehyde dehydrogenase	5.73601e-06	0.00292669
+Aminotransferase	0.000983273	0.000113079
+Pr23.1	6.1395e-05	2.51904e-05
+N,N diacetylchitobiose permease IIC component	0.00216455	0.000521661
+ABC type polar amino acid transport system, ATPase component, partial	1.48625e-05	8.80675e-06
+hypothetical protein	3.059e-05	1.39729e-05
+Phosphate import ATP binding protein PstB 2	1.126e-05	0.0001774
+MFS transporter	9.27983e-05	0.000181554
+N acetylmuramic acid 6 phosphate etherase	6.9624e-06	5.66021e-06
+ABC transporter, CydDC cysteine exporter  family, permease ATP binding protein CydD	0.000416454	0.000823986
+Transposition Helper	0.000323604	0.00450863
+UniRef50_C5Y3F1	6.18509e-06	1.27927e-05
+UniRef50_K0SHL6	0.000457869	5.13104e-05
+Ethanolamine utilisation protein EutH	0.00114521	0.00082789
+Rhsg core protein with extension	0.00360898	0.000615378
+Putative transposon Tn552 DNA invertase bin3	0.0933545	0.00724295
+Putative rRNA methyltransferase YqxC	1.57473e-05	0.00257436
+Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	2.27123e-05	1.69896e-05
+UniRef50_M3Z7R3	3.44402e-05	8.85361e-06
+UniRef50_F0KK38	0.000241542	0.00420504
+UniRef50_N6VAB0	0.000151929	2.80848e-05
+Aspartate  tRNA ligase	0.00410982	0.00238518
+UvrABC system protein B	0.00071186	0.000203037
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00205332	0.000396485
+Inner membrane ABC transporter permease protein YjfF	0.00297635	0.000533489
+UniRef50_A0A026SW65	1.27362e-06	3.68204e-05
+UniRef50_G8WJX8	2.00979e-05	4.21784e-05
+UniRef50_F0YA18	8.65538e-05	0.000169075
+hypothetical protein	7.63173e-05	6.63247e-05
+dihydrolipoamide dehydrogenase, partial	3.0307e-05	4.10919e-05
+Protein CapI	9.88579e-06	0.000300215
+High affinity sulfate transporter 1	0.000455586	0.000502621
+Probable transcriptional regulatory protein SAG1645	0.0121773	0.00644469
+Ribosomal subunit interface protein	0.000160772	0.000323789
+UniRef50_S3NMU2	0.00016723	0.00337607
+EpsC	0.000429711	0.00265144
+Grx_I1 glutaredoxin subgroup III	0.000239821	9.39602e-05
+UniRef50_V5VA90	0.000113062	0.00666379
+PREDICTED	1.3676e-05	0.000423622
+General secretion pathway protein D	4.67645e-05	0.00369401
+Ribonuclease R	5.5936e-05	0.00205365
+Histidine ammonia lyase	0.0104732	0.000975023
+NADH dehydrogenase I, G subunit	0.000105584	0.00837802
+UniRef50_H9JIZ2	0.000200123	2.38401e-05
+CheA signal transduction histidine kinase, partial	5.64928e-05	3.72413e-05
+Membrane protein	1.68066e-05	2.97368e-05
+Transcriptional regulator, MerR family	0.000504468	0.00361855
+GlcG protein 	2.81383e-05	4.334e-05
+Transcriptional regulator, LysR family	0.00618535	0.000866604
+Response regulator	0.00038123	0.00101179
+Chromosome undetermined SCAF2934, whole genome shotgun sequence. 	0.000196437	2.90783e-06
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.71251e-05	1.74155e-06
+Denitrification regulatory protein NirQ	0.00752299	0.00106174
+UniRef50_A6D100	2.84663e-06	4.70951e-05
+NADH dehydrogenase I chain J	0.000152055	0.00128331
+DNA topoisomerase 1	4.82484e-06	2.60839e-06
+Anaerobic sulfite reductase subunit C	0.00039494	0.000969095
+adenosine deaminase	1.78687e-05	2.30416e-05
+NADH quinone oxidoreductase subunit 4	8.46339e-06	4.64868e-05
+Prolipoprotein diacylglyceryl transferase	0.000535453	0.00369081
+hypothetical protein	6.72889e-06	5.22233e-05
+50S ribosomal protein L14	0.0291194	0.0018008
+hypothetical protein	1.1829e-06	7.68725e-06
+Siderophore interacting protein	0.000400011	0.000180291
+Isoleucine  tRNA ligase	0.000901372	0.000243279
+UvrD REP helicase	0.000201065	0.00244291
+Permease	0.0109329	0.00147248
+Acyl carrier protein	2.17316e-05	2.36948e-05
+phosphopantetheine adenylyltransferase	2.23291e-05	8.54918e-06
+UniRef50_W8VWJ7	0.00088001	0.00110846
+Methylthioribose 1 phosphate isomerase	0.00041591	0.000700481
+hypothetical protein	6.54771e-06	8.68334e-06
+Phosphate binding protein PstS	0.013998	0.00203987
+Maf like protein NGO2175	0.000200725	0.0017547
+Orotidine 5 phosphate decarboxylase	0.0165505	0.00975012
+UniRef50_P76612	0.00174921	0.000211111
+UniRef50_L1K5J8	0.00913921	9.15747e-05
+UniRef50_B2EBX5	9.98921e-05	0.000120413
+Inner membrane translocator 	0.000555934	3.95135e-05
+RNA polymerase subunit sigma 54	1.50233e-05	2.063e-05
+Outer membrane protein TolC	0.00273916	0.000846203
+Methylglyoxal synthase	0.00320807	0.00192927
+Putative membrane protein	2.27143e-05	0.000316372
+Archaeal DNA polymerase II, large subunit	1.55838e-05	1.04287e-05
+Pr5	5.51418e-05	4.81678e-05
+phosphoserine phosphatase	5.05021e-06	6.31993e-06
+UniRef50_X6JA50	3.65347e-05	9.55416e-06
+hypothetical protein	1.37213e-05	1.29563e-05
+UniRef50_Q8CTJ5	0.0158985	0.00280546
+2 oxoglutarate dehydrogenase E1 component	1.40865e-06	6.22807e-06
+UniRef50_Q5F5X5	0.000142807	0.000862397
+UniRef50_O25441	0.000105281	0.0030591
+Acyl carrier protein	3.23382e-05	2.3763e-05
+ABC transporter related	0.000125077	0.00139341
+Splicing factor 3B subunit 4	2.32914e-05	1.17219e-05
+MULTISPECIES	6.43011e-05	2.31208e-05
+Sua5 YciO YrdC YwlC family protein	0.0126222	0.000172996
+Adenylate kinase	0.0189247	0.00294464
+UniRef50_B2IR65	0.00375816	0.0043923
+Ribonucleoside diphosphate reductase subunit alpha	0.00225025	0.00549061
+Ribosomal RNA large subunit methyltransferase H	0.00777644	0.000578795
+UniRef50_D5H605	2.81464e-05	5.77097e-06
+Vegetative cell wall protein gp1	1.82296e-05	0.00014297
+UniRef50_T0GPL5	0.000288064	8.14166e-05
+Probable 5 dehydro 4 deoxyglucarate dehydratase	0.000117256	0.00255515
+Transcriptional regulator, LacI family	9.48024e-05	0.00206361
+Methionine  tRNA ligase	1.81079e-05	0.000271522
+UniRef50_K2DQ88	1.81099e-05	0.000906196
+Multidrug resistance protein MexB	0.001861	0.000684385
+hypothetical protein	4.08513e-07	3.19029e-05
+hypothetical protein	3.27728e-05	3.96849e-06
+Single stranded DNA binding protein 2	0.00292273	0.000261763
+hypothetical protein, partial	7.01401e-06	0.000202253
+Peptidase M20	0.00314886	0.000444847
+UniRef50_V7EQE6	4.70903e-06	1.46063e-06
+DNA repair protein RadA homolog	0.000282684	6.65566e-05
+hypothetical protein	2.51762e-05	4.64719e-06
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000128036	4.16095e-06
+Energy converting hydrogenase A subunit P EhaP	0.0033169	0.000713641
+Drug resistance transporter, EmrB QacA subfamily	0.000186669	0.000969652
+UniRef50_D7FCY4	6.69526e-05	0.00106003
+NAD dependent malic enzyme	0.00557582	0.00131084
+UniRef50_T1YCF9	0.00975746	0.00240055
+30S ribosomal protein S2	1.0362e-05	5.28221e-06
+hypothetical protein	3.37887e-05	5.3413e-06
+UniRef50_D3QF63	0.0193847	0.00237094
+ATP dependent DNA helicase, RecQ family	0.0079265	0.00076421
+hypothetical protein	2.65623e-06	4.99649e-05
+hypothetical protein	2.89339e-06	3.16754e-06
+UniRef50_Q39FG9	1.77333e-05	2.36314e-05
+Xanthine dehydrogenase FAD binding subunit	0.00228613	0.000334629
+UniRef50_J0PUR2	0.000347435	5.37105e-05
+Pyruvate dehydrogenase E1 component	0.000190759	0.0021054
+hypothetical protein	1.62513e-05	0.000949107
+Inner membrane protein YjcH	0.000162307	3.24264e-05
+Phage shock protein C	0.00383076	0.000888959
+UniRef50_Q3ZTZ2	8.94608e-06	7.19924e-06
+UniRef50_E1RPL7	2.09949e-05	1.86702e-05
+hypothetical protein	1.17199e-05	1.90299e-05
+ATPase	8.46188e-05	3.93808e-05
+Putative Holliday junction resolvase	0.00202621	0.000444566
+UniRef50_X6KWG2	1.44465e-05	2.2894e-06
+UniRef50_Q6F6Q1	0.000424941	0.00455774
+Diguanylate cyclase with GAF sensor	9.59156e-06	0.000236471
+Antitoxin HigA	0.000973158	0.000431658
+sn glycerol 3 phosphate binding periplasmic protein ugpB	3.4181e-05	8.00556e-06
+UniRef50_K7ARY8	0.000336019	0.000222028
+7 cyano 7 deazaguanine synthase	0.00955202	0.00149697
+Acyl carrier protein	3.58656e-05	2.7107e-05
+50S ribosomal protein L1	0.000146325	0.00213519
+Chemotaxis protein	0.000261451	0.00051263
+Lysozyme	0.00160261	0.00444818
+Peptidase S8 and S53 subtilisin kexin sedolisin 	4.75086e-05	1.89736e-05
+Laccase domain protein SERP0752	0.0199004	0.00262279
+UniRef50_C5AB28	0.000432401	0.000306433
+30S ribosomal protein S15	0.000250898	2.61931e-05
+Arginine deiminase	0.0279784	0.00527223
+Xanthine phosphoribosyltransferase	7.56242e-06	0.0255239
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.71268e-05	4.85757e-06
+SpfH domain band 7 family protein	9.55199e-05	0.00211836
+UniRef50_F7ZBN3	0.011652	0.000783188
+4 hydroxyproline betaine 2 epimerase	0.00172942	0.000166911
+UniRef50_G8QM91	3.2038e-06	5.80693e-06
+UniRef50_B9KJK7	0.000647774	0.000280474
+hypothetical protein	1.1601e-05	0.000123516
+Flagellar basal body rod protein FlgF	0.00290483	0.000118763
+Ribosomal RNA small subunit methyltransferase I	2.88098e-05	4.74012e-06
+UniRef50_L7HXW0	1.98272e-05	6.23426e-06
+UniRef50_K1V2Z1	0.00108122	0.000557605
+UniRef50_J3M0X2	8.11859e-06	8.88823e-05
+ABC transporter ATP binding and permease protein	0.00947766	0.0018975
+Transcriptional regulator, GntR family	0.00106128	0.000407019
+UniRef50_B9KU54	0.00197746	3.87597e-05
+ABC transporter	0.000231048	3.66958e-05
+Phosphopantetheine adenylyltransferase	4.96137e-05	1.31353e-05
+UniRef50_Q9RWE3	0.000117264	0.00790174
+UniRef50_A4BRR9	8.23979e-05	1.47682e-05
+UniRef50_F0RR64	0.000754535	0.152705
+Transport system permease protein	0.0174654	0.00402052
+Evolved beta galactosidase subunit alpha	0.00107927	8.79756e-05
+Transcriptional regulator, MerR family	0.012956	0.00668369
+Rhs core protein with extension	0.000328644	9.70647e-05
+Acyl CoA dehydrogenase	5.26833e-06	5.96179e-06
+UniRef50_K0SMT2	6.92058e-06	1.57566e-05
+hypothetical protein	8.37217e-05	9.89694e-05
+ABC transporter related	6.97751e-05	0.00259039
+hypothetical protein	2.98084e-05	1.03836e-05
+UniRef50_A5FWE5	3.50461e-05	5.11805e-05
+UPF0227 protein KPN78578_10770	0.00105812	0.000165961
+Transposase	1.40337e-05	1.60182e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.15315e-05	9.71028e-06
+UniRef50_F6GAA5	1.10848e-05	4.53895e-06
+Phosphoribosylformylglycinamidine synthase 2	2.45953e-05	3.14066e-06
+FAD dependent oxidoreductase	0.000382246	0.000277345
+glyoxal reductase	2.06739e-05	1.78868e-05
+Anthranilate synthase	0.0176699	0.00417214
+Gluconate permease	0.000637504	0.00241602
+Fructose phosphotransferase system enzyme fruA homolog	0.0116346	0.00220352
+peroxiredoxin	9.94706e-06	7.09544e-05
+hypothetical protein	0.000754221	0.000108637
+Glucose 1 phosphate adenylyltransferase	0.000506335	0.00107018
+Lon protease 2	6.06758e-05	0.000535674
+UniRef50_W7Z889	7.01295e-06	6.81992e-06
+UniRef50_I2NPW1	1.00895e-05	0.000160333
+Transcriptional regulator, BolA protein family	2.82403e-05	2.58912e-05
+Metallophosphoesterase	0.000933203	0.000960224
+dihydrolipoyl dehydrogenase	3.45231e-06	2.96037e-06
+Ribosomal RNA small subunit methyltransferase H	0.000248113	0.00110886
+LamB YcsF family protein	5.14755e-05	2.24781e-05
+5 hydroxyisourate hydrolase	0.00346067	0.000973589
+Nitrile hydratase activator	4.73885e-06	3.27259e-06
+Formate nitrite transporter	0.0212866	0.00327901
+hypothetical protein	4.98719e-05	9.44429e-06
+Methionine  tRNA ligase	0.0101708	0.00147756
+Membrane protein	0.000196812	0.00183822
+Oxidoreductase FAD binding domain protein 3	0.000190813	9.24664e-05
+transposase	0.000119731	2.33563e-06
+UniRef50_K8C391	2.05179e-05	0.000107828
+NADP specific glutamate dehydrogenase 	9.05228e-05	0.00769033
+UDP N acetylglucosamine 1 carboxyvinyltransferase	1.05638e-05	7.92728e-06
+Proline  tRNA ligase	3.42534e-06	8.67039e-06
+Tetratricopeptide repeat domain protein	0.000239026	0.00138284
+LysR family transcriptional regulator	0.000131123	0.0030295
+UniRef50_K0S2A3	4.24576e-05	2.54962e-05
+nitrate nitrite transport protein NarU	3.01934e-05	6.79766e-05
+Protein ydeP domain protein	0.000160772	0.000348088
+NADH quinone oxidoreductase subunit A	0.000554755	0.000556621
+PREDICTED	1.03096e-05	4.78942e-06
+Putative xanthine dehydrogenase YagT iron sulfur binding subunit	3.53772e-05	0.000164059
+Probable trehalose phosphate phosphatase	1.71276e-05	1.09753e-05
+hypothetical protein	4.79565e-06	1.12466e-05
+Membrane protein insertase YidC	0.000439543	0.000482445
+UniRef50_X2MVD0	0.00305997	0.00183697
+UniRef50_B9KWB3	0.00094204	0.000801651
+UniRef50_F3ZFZ6	2.05761e-05	0.000929027
+Predicted protein	7.69254e-05	1.02688e-05
+Glutamate synthase 	7.83886e-05	0.00273564
+UniRef50_J0KVM1	0.000181591	0.000663594
+UniRef50_C6SPT4	1.16591e-05	6.11438e-06
+N acetyl gamma glutamyl phosphate reductase	4.28694e-06	3.94401e-05
+hypothetical protein	3.79312e-06	2.35384e-06
+GH10507	7.02101e-07	6.6523e-07
+Hydroxylamine reductase	0.00222868	0.000992338
+Aspartokinase	0.000272112	0.0014822
+UniRef50_W4TKQ6	5.36896e-06	8.91444e-05
+LamB YcsF family protein	0.00011159	2.56873e-05
+Carnitine transport permease protein OpuCB	0.0214694	0.00315632
+chemotaxis protein CheY	0.000131465	4.84499e-05
+UniRef50_J8VGX4	0.000230135	3.42147e-05
+PREDICTED	5.40522e-06	2.80456e-06
+PREDICTED	2.11056e-06	7.36101e-06
+Fructose like PTS system EIIBC component	0.00265211	0.000641842
+Class I glutamine amidotransferase	0.000686798	0.0019437
+acyl CoA synthetase	3.81593e-06	2.39523e-05
+Prolipoprotein diacylglyceryl transferase	6.59347e-06	0.000481559
+ATPase	0.00250542	0.000716704
+3 oxoacyl ACP synthase	3.37179e-05	1.10669e-05
+Maltoporin	0.00255565	0.00076097
+UniRef50_R6ZP96	6.86512e-05	1.67552e-05
+Succinate dehydrogenase hydrophobic membrane anchor subunit	0.00520408	0.000329035
+50S ribosomal protein L15	0.000230513	0.00194905
+UniRef50_C6D8U7	0.000239821	0.000496921
+UniRef50_S4XBL3	8.94111e-06	1.3524e-05
+N5 glutamine S adenosyl L methionine dependent methyltransferase	0.000266008	0.0037636
+PREDICTED	6.13302e-05	4.4642e-05
+TspB like protein	0.000315464	0.00348253
+hypothetical protein	4.04222e-06	1.27567e-05
+PTS system Galactitol specific IIC component	0.000483214	0.000758406
+ABC type transport system ATP binding protein	0.00252754	0.000287318
+UDP glucose 6 dehydrogenase	3.07655e-06	3.39129e-06
+Putative sugar uptake protein YxfA	0.00161078	0.000104766
+NADH quinone oxidoreductase subunit B	3.5065e-05	4.6367e-05
+RNA polymerase sigma 54 factor	0.000705535	9.40156e-05
+Glycolate oxidase subunit GlcE	0.00375464	0.000296809
+UniRef50_K0STI8	0.000153871	1.75857e-05
+UniRef50_D2B0E6	0.000144622	0.000159432
+UniRef50_W9FWD7	3.48394e-05	1.00952e-06
+Quinolinate synthase A	0.00110514	8.92494e-05
+Transcriptional regulator, MerR family	0.000998729	0.00280021
+ABC transporter related	5.74969e-05	0.0261486
+von Willebrand factor, type A	0.0185884	0.0027848
+UniRef50_B4W755	0.000152863	3.86196e-05
+quaternary ammonium transporter	8.6081e-05	1.35012e-05
+Transposase InsG for insertion sequence element IS4	0.00283536	0.000329015
+UniRef50_L8UD09	0.00109431	0.00332426
+Transcriptional regulator, XRE family	0.00271767	0.000255797
+Phosphate sulfate permease	0.00013738	0.000982296
+CBS domain containing protein	0.00885541	0.000370564
+hypothetical protein	1.2567e-05	3.36972e-05
+DNA gyrase subunit B	7.52499e-06	5.52021e-06
+UniRef50_A3M4L9	0.000382212	0.002514
+Spermidine putrescine import ATP binding protein PotA	4.35524e-06	3.98475e-06
+Lysine  tRNA ligase	0.00185935	0.00128042
+hypothetical protein	3.94943e-05	2.04208e-05
+Nucleoid occlusion protein	6.27448e-06	1.2074e-05
+Probable chemoreceptor glutamine deamidase CheD	0.000199636	1.92375e-05
+UniRef50_M1YTR4	0.000232703	0.00144692
+Putative molybdopterin guanine dinucleotide biosynthesis protein A	5.89783e-06	1.50474e-05
+cytidylate kinase	6.05744e-06	3.81719e-05
+Glycerol dehydratase activator	0.000109864	0.000459548
+Shikimate kinase	0.00178776	0.00183445
+Hemolytic phospholipase C	0.00136363	8.26402e-05
+UniRef50_X5PED3	0.000263646	6.80132e-05
+Methionine import ATP binding protein MetN 1	0.00161751	0.000182182
+hypothetical protein	6.76516e-05	4.56239e-06
+Recombination protein RecR	0.00912575	0.000223345
+NADPH dependent 7 cyano 7 deazaguanine reductase	0.000138442	0.00170032
+UniRef50_X1YMT4	0.000150279	2.40904e-05
+Cellulose synthase	0.000506949	0.000234494
+TRAP transporter solute receptor TAXI family	5.22389e-05	4.40306e-06
+hypothetical protein	0.000114247	5.83769e-06
+Pyridoxamine kinase	0.00326382	0.000721223
+Outer membrane lipoprotein LolB	0.000174377	0.00143055
+UniRef50_Q17X82	0.000160772	0.00191578
+Cyclic nucleotide binding protein	0.0028156	0.000275388
+TetR family transcriptional regulator	9.53576e-06	5.5847e-06
+Spermidine putrescine import ATP binding protein PotA	0.000103981	3.71799e-05
+methylmalonate semialdehyde dehydrogenase , partial	5.44528e-05	4.11527e-06
+hypothetical protein	2.10576e-05	2.45385e-05
+UniRef50_S9UQG0	1.62516e-05	3.08157e-05
+UniRef50_M0SWW4	7.39855e-06	4.78042e-06
+PREDICTED	1.59413e-05	1.50586e-05
+Cytochrome c oxidase subunit 2	0.0084489	0.0021198
+membrane protein	9.3885e-05	3.30629e-05
+hypothetical protein	1.44187e-06	4.62422e-06
+Outer membrane transporter, OMPP1 FadL TodX family	1.19191e-05	4.13397e-06
+hypothetical protein	1.3799e-05	3.33693e-05
+UniRef50_J9P1L3	3.50792e-06	8.51893e-05
+Proton translocating NADH quinone oxidoreductase, chain L	0.000287875	0.000544142
+Conserved hypothetical lipoprotein	5.92851e-06	5.32438e-06
+UniRef50_A0A024HWT5	4.99847e-06	1.91995e-05
+Urease subunit gamma	9.85421e-05	0.000202871
+Amidase	0.00264261	0.000642466
+UniRef50_X9TRB8	0.00175747	0.000489861
+Fis family transcriptional regulator	3.92739e-06	5.60728e-06
+GTPase Era	1.69835e-05	7.02499e-05
+electron transport complex RsxE subunit	0.000636991	0.000103612
+UniRef50_N9HZ93	0.00018094	0.00728893
+Membrane protein	0.00121914	0.000171727
+ABC transporter ATP binding protein, partial	6.5112e-06	1.61058e-05
+hypothetical protein	4.96366e-06	1.58697e-06
+Riboflavin synthase alpha subunit	0.00031114	0.00173156
+ISSpo9, transposase	0.00012715	1.41576e-05
+hypothetical protein	2.49537e-05	4.86702e-05
+Transcriptional regulator	0.00073781	0.00034269
+Thiosulfate sulfurtransferase	0.000201526	0.0264388
+Lipase esterase	0.017559	0.00268045
+UniRef50_W0HAM9	4.06038e-05	2.02503e-05
+UniRef50_B9E397	0.000627008	0.000289885
+Response regulator	2.32835e-05	1.56932e-05
+isopentenyl diphosphate delta isomerase	0.000325399	1.90085e-05
+hypothetical protein	1.13e-05	0.000396351
+UniRef50_A0A033UF50	2.24336e-05	1.34556e-05
+UPF0301 protein R2A130_1378	8.64731e-06	7.415e-06
+hypothetical protein	0.000104864	4.39093e-05
+Peptidase M16 inactive domain protein	0.00172395	0.00034269
+BolA like protein	6.36509e-05	0.000262182
+Imidazoleglycerol phosphate dehydratase 2, chloroplastic	8.42983e-06	6.9605e-06
+hypothetical protein, partial	5.13253e-05	2.86956e-05
+tRNA  methyltransferase	0.00015438	0.000968033
+ribosomal protein L33 containing protein	0.000265506	3.97619e-05
+hypothetical protein	2.65698e-05	2.15305e-05
+Putative alpha ribazole phosphatase	0.000199911	5.9539e-05
+UniRef50_Q8FFY2	0.000988274	0.000135627
+Tyrosine  tRNA ligase	1.30383e-05	1.17958e-05
+Membrane spanning protein	0.000534204	0.00320269
+Phosphoribosylaminoimidazole succinocarboxamide synthase	3.87224e-05	8.0731e-06
+UniRef50_M1QZS4	7.12462e-06	6.75534e-06
+molybdenum cofactor biosynthesis protein	2.71737e-06	4.66477e-06
+Probable aromatic acid decarboxylase	0.00144019	0.00155637
+UniRef50_R5EVW4	8.51539e-06	0.00119821
+hypothetical protein	2.00519e-06	5.82657e-05
+Proline  tRNA ligase	3.89152e-06	0.00147052
+3 keto L gulonate 6 phosphate decarboxylase UlaD	0.00352704	0.0011618
+hypothetical protein	5.38262e-06	4.97872e-06
+UniRef50_R1CIV3	0.000136438	4.20735e-05
+Primosomal protein N	0.00209402	0.000319969
+PTS system alpha glucoside specific EIICB component	0.00233331	0.000837844
+Exodeoxyribonuclease 8	0.00107364	8.14901e-05
+UniRef50_A8TPL9	9.3704e-05	1.94992e-05
+hypothetical protein	0.000127464	7.3053e-06
+3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein	0.00298869	4.40574e-05
+UniRef50_G2L7T9	4.90132e-05	4.77872e-05
+hypothetical protein	0.000110807	1.06363e-05
+Acyl homoserine lactone synthase	0.0142985	0.00311948
+WGR domain protein	0.00170707	0.000113471
+hypothetical protein	3.356e-05	8.04158e-05
+Carboxymethylenebutenolidase related protein	0.000115256	0.00208472
+hypothetical protein BC1G_07259	7.45213e-06	9.65013e-06
+Putative terminase large subunit	1.4162e-05	3.00269e-05
+Glucans biosynthesis protein G	8.50231e-06	7.84105e-06
+addiction module toxin YoeB	3.50464e-06	2.20443e-05
+UniRef50_D9Y290	2.57998e-05	4.79181e-06
+hypothetical protein, partial	4.6235e-06	0.000238458
+peptide ABC transporter permease	3.21962e-05	3.6097e-05
+3 phosphoshikimate 1 carboxyvinyltransferase	3.89597e-06	4.34888e-06
+Low conductance mechanosensitive channel YnaI	0.00263803	9.06003e-05
+Marine sediment metagenome DNA, contig	1.44856e-05	3.36594e-05
+UniRef50_D3SDU3	0.00106527	1.00891e-05
+UniRef50_C3SN52	0.00139604	0.000260448
+hypothetical protein	7.94126e-05	2.03425e-05
+UniRef50_H0P3C7	1.62444e-05	8.49213e-06
+Glucose 6 phosphate 1 dehydrogenase	0.000811734	0.000642082
+hypothetical protein, partial	0.000267371	0.000412535
+Diguanylate cyclase domain protein	8.60738e-05	0.000619832
+UniRef50_A0A008QSP4	0.000509876	0.000125311
+RNA polymerase sigma factor	0.00308135	0.000769777
+hypothetical protein	0.00195746	0.000268767
+Na+ driven multidrug efflux pump	0.000448127	0.000297674
+hypothetical protein	3.789e-05	3.70624e-05
+Adenylosuccinate synthetase	2.56674e-06	4.28317e-06
+Putative N acyl D glucosamine 2 epimerase	4.19192e-05	1.58132e-06
+UniRef50_V4N2T0	0.000264788	8.69617e-05
+UniRef50_A4THV9	0.00167554	0.000253681
+hypothetical protein	7.30216e-06	1.48887e-05
+Zinc import ATP binding protein ZnuC	1.42989e-05	5.61577e-06
+Putative family S53 non peptidase like protein	9.95725e-06	3.67587e-05
+Osmosensitive K+ channel His kinase sensor domain protein	0.00793293	0.00121845
+UniRef50_Q2W7P1	5.43218e-05	1.10031e-05
+Phage terminase	6.77915e-06	8.02071e-05
+LivM	0.000698623	0.000654941
+Orotidine 5 phosphate decarboxylase	0.00040071	0.000746357
+MATE efflux family protein	7.38585e-05	0.000693372
+UniRef50_N9WGA2	6.95157e-05	5.73143e-05
+elongation factor G, partial	2.65279e-06	3.41643e-06
+Membrane protein	1.81179e-05	0.000692768
+cell wall hydrolase	2.10241e-05	8.70479e-06
+UniRef50_A3M865	1.69092e-05	0.000467078
+Cysteine  tRNA ligase	2.53596e-06	4.98667e-06
+RNA polymerase principal sigma factor HrdD	0.000335699	0.00244541
+5 hydroxymethyluracil DNA glycosylase	6.87764e-06	6.21739e-05
+UniRef50_D6UF03	0.00416647	0.000473965
+UniRef50_R1CXM7	6.7491e-06	1.26543e-05
+S adenosylmethionine synthetase	8.05034e-06	2.33037e-05
+UniRef50_X5ZAH5	0.00302517	0.00113589
+hypothetical protein, partial	4.12964e-05	8.67759e-06
+UniRef50_W6EUE7	7.49403e-05	1.26196e-05
+LysR family transcriptional regulator	0.000340291	0.000395638
+Thioesterase	0.00389946	0.00124427
+Putative enoyl reductase 	4.2214e-05	0.000126102
+Rubredoxin	0.000243678	0.00112048
+Protein NrdI	8.50159e-06	0.00121751
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	1.04185e-05	5.05114e-06
+NUDIX hydrolase	8.98687e-05	9.59247e-06
+D amino acid aminotransferase	3.05404e-05	2.09284e-05
+sulfurase	5.31125e-05	1.73759e-05
+hydrolase	1.36219e-05	3.02001e-06
+UniRef50_W4HIK8	2.82419e-05	3.11002e-06
+Putative dGTPase	1.35187e-05	2.30103e-05
+UniRef50_A6KZD0	9.4082e-06	0.00200806
+EAL domain protein	0.000167842	0.00131137
+2,5 diketo D gluconic acid reductase A	0.00472312	0.00126493
+Esterase, putative	0.0181155	0.00297397
+UniRef50_K3YW20	0.00063628	0.000123168
+UniRef50_D7I005	0.000692485	0.000416606
+hypothetical protein	3.87974e-06	2.76515e-06
+PREDICTED	1.51304e-05	3.48988e-06
+hypothetical protein	3.66487e-05	8.38546e-06
+UniRef50_C5N5L5	0.00138308	0.00113652
+hypothetical protein, partial	8.31468e-05	0.00109773
+UniRef50_G7M098	0.000641921	0.000675041
+Riboflavin synthase, alpha subunit	0.000159754	0.0176528
+Arginine  tRNA ligase	0.000193174	0.00294304
+UniRef50_H0YP80	4.34573e-05	1.69336e-05
+PREDICTED	1.22985e-05	4.14685e-06
+Precorrin 8X methylmutase	0.00032995	0.000338688
+Serine acetyltransferase	1.02395e-05	1.71079e-05
+DNA glycosylase	0.000104184	1.09389e-05
+Phosphatidylserine synthase, PssA	0.00492112	0.000279462
+glycosyl transferase group 1	7.24993e-05	0.000144907
+hypothetical protein	3.60617e-06	1.98616e-06
+Pyruvate carboxylase subunit B	0.00117035	0.000282862
+UniRef50_D1BH34	0.000834418	0.00423489
+PREDICTED	2.14141e-05	1.97032e-05
+hypothetical protein, partial	4.14358e-06	1.66106e-05
+Proline  tRNA ligase	7.65375e-06	1.37938e-05
+UniRef50_W8YSM1	5.45431e-05	7.65523e-05
+hypothetical protein	7.16918e-05	0.000220657
+MFS protein, putative	0.0085808	0.00170271
+hypothetical protein	1.67982e-05	4.0319e-05
+hypothetical protein	1.5506e-05	7.37722e-06
+UniRef50_V9U5K5	8.16826e-05	0.000146207
+ArsR family transcriptional regulator	0.00246991	0.000845257
+UniRef50_A6LZC7	0.000243876	0.000212257
+UniRef50_R7NTH8	1.64899e-05	0.000159932
+Phi ETA orf 55 like protein	0.000635383	0.000108619
+Protoheme IX farnesyltransferase	5.70808e-06	7.06303e-06
+Cell wall binding repeat containing protein	0.000355998	0.000983415
+UniRef50_I1D602	7.43759e-05	8.39657e-05
+Bat2 domain protein	9.43981e-05	4.11906e-05
+Cell division protein FtsI [Peptidoglycan synthetase]	0.000262259	0.00125116
+Rhodanese like domain protein	1.81302e-05	2.98127e-05
+Adhesin like protein	0.0030281	0.000258664
+AGCS family alanine or glycine	4.86754e-06	6.50602e-05
+5 nucleotidase	0.000162846	0.000142742
+TM2 domain protein	0.00932142	0.000516005
+50S ribosomal protein L20	5.09128e-05	3.94998e-05
+Protein QmcA	0.00292154	0.000204885
+YhaO	1.10413e-05	1.70587e-05
+6 phosphogluconate dehydrogenase, decarboxylating	0.0119541	0.00239507
+hypothetical protein	1.32479e-06	1.59464e-05
+Glucose 1 phosphate adenylyltransferase	2.6712e-06	5.72017e-06
+Protease do	0.00575282	0.000247653
+HAD superfamily protein  phosphatase	0.000137516	0.000325484
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.00325893	0.000872154
+Cystathionine gamma synthase	0.00383688	0.000719489
+Oxidoreductase domain protein	0.000169132	8.02834e-05
+UniRef50_V4LBB0	4.66735e-05	3.07564e-05
+Ribonuclease Y	0.0192596	0.00642753
+Inosose dehydratase IolE	0.0037932	0.000546526
+Cytochrome c oxidase subunit 1	2.45711e-05	1.55133e-05
+Putative lipid kinase SSP1993	0.0226313	0.0035463
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	1.48958e-05	4.11476e-06
+Putative ABC transporter ATP binding protein BC_2655	3.38829e-05	0.000329139
+UniRef50_B9TG20	3.99284e-05	7.38838e-06
+UniRef50_P39389	0.00237111	0.000627088
+Flagellar protein, putative	6.69751e-06	9.68298e-06
+UniRef50_P39385	0.00266478	7.02542e-05
+UniRef50_P39384	0.00290839	0.000235535
+Flavodoxin reductase 1	0.000151826	0.00554036
+Rieske  domain protein	0.000197425	0.00269932
+UniRef50_P39383	0.00542292	0.000245649
+UniRef50_P39382	0.000995729	0.00068078
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	1.89562e-05	2.28656e-05
+Aminoglycoside 2 N acetyltransferase Ib)	0.000383896	0.00211582
+Putative ion transport protein YfeO	0.00302049	0.000289606
+peptide synthetase	2.96477e-07	6.26686e-07
+UniRef50_A3MAB3	0.000152285	0.0015259
+UniRef50_J5IRF9	0.000696307	0.0113416
+ArsC family protein	0.000296292	4.60808e-05
+UniRef50_N6U9Z2	0.000762728	0.000167462
+UniRef50_B9KMM9	0.00216005	0.000839111
+riboflavin synthase subunit alpha	8.78838e-06	7.62726e-05
+hypothetical protein	2.12079e-06	3.99045e-06
+PqiA family protein	8.17527e-05	0.00132397
+GTP cyclohydrolase 1	3.33459e-05	3.21666e-05
+Integral membrane sensor signal transduction histidine kinase	0.000396202	0.000211951
+UniRef50_V7N9Q7	0.000450436	8.26786e-05
+hypothetical protein	3.79583e-05	1.79117e-05
+PREDICTED	1.66252e-05	2.15263e-06
+Hydrogenase 4 component C	0.00577498	0.00117882
+Predicted protein	3.33831e-06	3.84681e-05
+hypothetical protein	2.81063e-05	1.17281e-05
+Molybdenum transport ATP binding protein	0.00012684	0.00139217
+GCN5 related N acetyltransferase	0.000228945	0.000374104
+Vacuolating cytotoxin autotransporter	3.59305e-05	0.00345112
+FAD dependent oxidoreductase	0.000886149	0.000152555
+Phosphate starvation inducible E	8.48754e-05	2.93374e-05
+Glutamate racemase	0.000100948	0.00408645
+Hexulose 6 phosphate synthase 	0.00421757	0.00179166
+hypothetical protein	7.35764e-06	2.87195e-06
+pyruvate kinase	3.39928e-06	7.7901e-06
+3 oxoacyl [acyl carrier protein] synthase 2	0.000282079	0.00165896
+ferredoxin	6.30521e-06	6.67829e-06
+Transcriptional regulator	0.000459122	0.00012597
+Glutathione synthetase	3.5153e-06	3.5664e-06
+DNA replication and repair protein RecF	0.00804106	0.00349633
+Rhamnan synthesis protein F domain protein	6.12145e-06	4.36858e-06
+hypothetical protein	6.1189e-05	3.30774e-06
+Major facilitator superfamily protein	0.0014264	0.000331283
+hypothetical protein	2.27013e-05	0.000383516
+UniRef50_G0DY22	0.000149135	0.0016114
+UniRef50_A6V690	6.34598e-05	0.000126888
+Predicted permease, major facilitator superfamily	0.00153491	0.000451515
+Methionine aminopeptidase	0.000968114	0.0029113
+UniRef50_Q8DWJ3	0.00663019	0.000597087
+UTP  glucose 1 phosphate uridylyltransferase	0.00387294	0.00016765
+Leucyl phenylalanyl tRNA  protein transferase	9.87583e-06	4.35262e-05
+hypothetical protein	2.14911e-05	6.08446e-06
+NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component	0.000174606	0.000440936
+Tryptophan synthase alpha chain	0.0134427	0.000990693
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0134017	0.00118789
+UniRef50_Q8RCZ3	0.000230471	0.00131618
+RNA polymerase subunit sigma 32	1.4653e-05	1.57702e-05
+Bacteriocin biosynthesis docking scaffold, SagD family domain protein	3.88616e-06	9.97168e-06
+Outer membrane lipoprotein	1.9622e-05	9.64872e-06
+3 dehydroquinate dehydratase	6.78495e-05	6.22488e-06
+L aspartate oxidase	7.89565e-06	1.14291e-05
+Phosphonate ABC transporter, permease protein	0.0148627	0.00264616
+TPR repeat family protein	0.00230035	0.000463086
+UniRef50_K0TNT9	0.00116182	7.17557e-05
+hypothetical protein, partial	1.28325e-05	1.26206e-05
+peptide deformylase	2.3803e-05	1.2594e-05
+UniRef50_C4Y1Q4	4.73889e-05	9.99831e-05
+methylmalonyl CoA mutase	8.25086e-05	3.48231e-05
+DNA integration recombination inversion protein	0.0117812	0.00103431
+PREDICTED	1.17028e-05	1.90137e-05
+Glycogen synthase	0.000655348	0.00101969
+hypothetical protein	1.27895e-05	1.61739e-05
+ABC phosphate transporter, periplasmic phosphate binding protein	7.9027e-06	3.70069e-06
+Bifunctional purine biosynthesis protein PurH	0.000270871	0.002885
+Peptidase U62 modulator of DNA gyrase	8.60145e-05	0.000391557
+UniRef50_C7ZCJ9	6.18178e-06	0.000360487
+amino acid ABC transporter, permease protein, 3 TM region, His Glu Gln Arg opine family	4.40889e-05	3.50144e-05
+transposase, partial	7.0011e-05	0.0244367
+Probable 3 phenylpropionic acid transporter	0.00143296	0.000220156
+MULTISPECIES	5.38556e-05	1.55638e-06
+hypothetical protein	3.18569e-05	7.14427e-05
+quinone oxidoreductase	9.78877e-06	8.94511e-06
+NADPH dehydrogenase	6.16518e-06	0.000915372
+PREDICTED	3.25413e-05	0.000453042
+hypothetical protein	4.22748e-06	7.98855e-06
+ABC transporter	2.71553e-05	0.000370827
+hypothetical protein	0.000174514	8.96166e-05
+Type I restriction modification DNA specificity domain protein	0.00625167	0.000271537
+ATP synthase subunit b	0.00327505	0.00463567
+Prophage antirepressor	2.43244e-05	3.77268e-06
+Aminomethyltransferase	1.56119e-05	5.27303e-06
+UniRef50_D8A1C0	0.00134326	2.00147e-05
+UniRef50_Q49UD2	1.42412e-05	1.40815e-05
+Arginine  tRNA ligase	7.38478e-06	2.45329e-06
+Signal recognition particle receptor FtsY	0.00181515	0.000175894
+UniRef50_A0A058ZE84	3.69461e-06	5.54408e-06
+DNA directed RNA polymerase subunit alpha	0.0220183	0.00756174
+tRNA isopentenyltransferase	4.30182e-06	3.9686e-06
+UniRef50_E1VL16	1.51051e-06	2.28205e-06
+UniRef50_X6GT76	0.000185924	1.98231e-05
+UniRef50_J9NXH4	8.60322e-06	0.00015926
+LexA repressor	0.0149245	0.00123173
+Isoaspartyl peptidase	0.00160315	0.000199978
+hypothetical protein, partial	1.47452e-05	4.02373e-06
+Peptidyl prolyl cis trans isomerase A	0.00386977	0.00050875
+Holliday junction ATP dependent DNA helicase RuvB	2.91579e-06	5.00281e-06
+UniRef50_E1SQ49	5.04413e-05	1.23122e-05
+UniRef50_G7MAV9	0.000260892	0.00014816
+hypothetical protein	9.7551e-06	5.20169e-06
+Catalase	0.000223263	0.0338183
+UniRef50_I0EMB4	0.00011648	0.00169839
+FAD synthase	0.000538458	0.000101912
+UniRef50_A0A038G0X4	7.63827e-05	3.79245e-05
+Titin 	0.00107844	4.48318e-06
+HTH type transcriptional activator AllS	0.00151877	0.000183234
+NAD dependent dihydropyrimidine dehydrogenase subunit PreT	0.00272374	0.000273584
+UniRef50_D3QIC4	0.00716873	0.00138843
+Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 	0.00101546	2.91224e-05
+Choline carnitine betaine transporter	0.000944537	0.00320324
+UniRef50_U4VB44	0.00051643	7.6105e-06
+hypothetical protein	7.84563e-05	1.47481e-05
+Citrate carrier	0.00236166	0.000276138
+Neuraminyllactose binding hemagglutinin family protein	0.000217128	0.00171268
+Beta fructofuranosidase	0.000323846	0.00047518
+Trans aconitate 2 methyltransferase	2.16201e-05	1.66447e-05
+Aspartate  tRNA ligase	2.77946e-06	9.88258e-06
+Short chain dehydrogenase reductase SDR 	0.000269086	0.000158146
+Possible glycosyltransferase	0.00309431	0.000343659
+UniRef50_F4DRP3	0.000463715	0.000752379
+Transcriptional regulator, Fis family	1.03003e-05	1.61536e-05
+Amino acid permease	0.000571697	0.000186133
+glycine cleavage system protein H	0.000107656	2.16313e-05
+ATP dependent DNA helicase Rep	6.49975e-06	1.8873e-06
+Formamidopyrimidine DNA glycosylase	0.000145921	0.000758036
+UniRef50_B6U1Z9	1.1244e-05	1.46767e-05
+Putative phosphoenolpyruvate synthase regulatory protein	1.72843e-05	0.000165421
+UniRef50_F8JQM1	1.345e-05	5.9273e-05
+UniRef50_Q3IV73	0.00299254	0.00134226
+UniRef50_Q3IV76	0.00779798	0.000263299
+Peptide ABC transporter permease 	0.000259494	7.94268e-05
+UniRef50_H0W1N8	2.05716e-05	1.97776e-05
+molybdenum cofactor biosynthesis protein A	7.29745e-06	4.98984e-05
+Ornithine carbamoyltransferase	3.45709e-06	3.23182e-05
+UniRef50_N9CHK2	0.000297324	0.000371935
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.84216e-05	1.92968e-05
+UniRef50_U5S306	0.000445696	0.00137233
+Glr3394 protein	0.000134474	2.61918e-05
+Proton translocating NADH quinone oxidoreductase, chain L	0.00243902	5.06973e-05
+Inosine 5 monophosphate dehydrogenase	2.06619e-05	2.04607e-06
+UniRef50_X0PKD3	1.64406e-05	1.40026e-05
+hypothetical protein, partial	5.35588e-06	2.0381e-06
+UniRef50_D3QHK8	0.0148473	0.00288322
+Site 2 protease, Metallo peptidase, MEROPS family M50B	0.000101676	0.00439652
+Tryptophan synthase	4.85733e-06	2.92747e-06
+UniRef50_I6T6M3	0.00424608	0.000735659
+Pirin	2.00778e-05	1.77991e-06
+2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	1.88237e-05	0.00019908
+Hemin import ATP binding protein HmuV	7.37392e-06	0.000947994
+NAD transhydrogenase subunit beta	0.00910167	0.000924491
+beta lactamase	4.67007e-05	1.13753e-05
+UniRef50_F0Y015	0.000241034	0.000111959
+Chorismate synthase	1.3997e-05	0.000101702
+Uptake hydrogenase small subunit	0.000209169	2.99402e-05
+UniRef50_H3V8P2	0.000788786	0.000712578
+V type ATP synthase alpha chain	7.40209e-05	0.0224283
+Homoserine dehydrogenase	0.000182467	0.00302895
+siderophore ABC transporter permease	9.66776e-06	3.87137e-06
+UniRef50_A5UNY8	0.00117675	0.000732236
+iron ABC transporter ATP binding protein	5.6309e-05	1.63409e-05
+hypothetical protein	1.07416e-05	4.79634e-06
+4 hydroxy tetrahydrodipicolinate synthase	0.0050667	0.000139411
+UniRef50_A5UNY0	0.000632692	0.000168769
+Inner membrane protein YebZ	0.00248477	0.00112242
+hypothetical protein	5.56915e-05	2.42588e-05
+hypothetical protein	2.21075e-06	4.2044e-06
+Flagellar protein FlaF, putative	3.90437e-05	4.22184e-05
+UniRef50_I6WD10	3.15109e-06	3.00585e-06
+TRAP T family transporter, periplasmic binding protein	0.0020086	0.000356685
+Replication and maintenance protein	0.0556205	0.00837471
+Protein YgiQ	0.00209136	0.000124875
+histidine kinase	4.93966e-06	2.07474e-06
+UniRef50_C6ST75	0.00446609	0.00130758
+recombinase RecQ	2.62217e-06	4.42982e-06
+Putative DNA transport protein HofQ	0.00323336	0.000189958
+multidrug ABC transporter ATPase	2.89745e-06	4.40302e-06
+GTPase Obg	0.0254361	0.0057358
+Ribosomal protein L11 methyltransferase	0.00550029	0.00506118
+UniRef50_Q9RW97	0.000153675	0.00456136
+Glycine D amino acid oxidase, deaminating	0.00106572	0.000177801
+alcohol dehydrogenase	1.45613e-05	9.30722e-06
+Integral membrane protein TerC	0.0018718	0.000495276
+Beta lactamase	1.00575e-05	2.39993e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000127159	0.000600677
+Glycerol facilitator aquaporin gla	0.00515895	0.00173049
+Cobyrinic acid ac diamide synthase	0.000258823	4.35328e-05
+UvrABC system protein A	7.99929e-05	0.00384311
+Periplasmic thioredoxin	0.00032995	0.000182861
+Beta fructosidases 	0.000326393	0.000419474
+NADH quinone oxidoreductase subunit B 2	1.51387e-05	0.0171878
+phosphoenolpyruvate synthase	3.30746e-06	7.65238e-06
+MFS transporter	7.30282e-06	4.19577e-06
+Cytochrome c oxidase subunit 3	3.17611e-06	1.99236e-06
+Peptidyl prolyl cis trans isomerase	0.000284407	0.000496049
+Glucosyltransferase S	0.0043867	0.000757281
+Phospho N acetylmuramoyl pentapeptide transferase	5.02497e-06	0.00134031
+Hydrogenase 2 operon protein HybA	0.00245618	0.000531318
+Tungsten containing formylmethanofuran dehydrogenase 2 subunit B	0.00349102	0.000658131
+Band 7 protein	1.31763e-05	0.000145575
+UniRef50_J7R3C7	0.00275998	0.00119838
+hypothetical protein	3.80038e-06	2.14619e-06
+UniRef50_X1Y977	3.80751e-06	1.16808e-05
+Glucose 1 phosphate cytidylyltransferase	0.009651	0.00503664
+Maf like protein PA2972	0.00191739	0.000319778
+EhbF	0.00296631	0.000363256
+Peptide chain release factor 1	0.00991598	0.00824244
+Predicted protein 	3.22685e-05	5.61652e-05
+UniRef50_D8UC86	1.25482e-05	1.80792e-05
+Glycosyl transferase, family 8	0.00059859	8.49431e-05
+Binding protein dependent transport systems inner membrane component	0.00911267	0.00147021
+Glutathione import ATP binding protein gsiA	0.000135973	0.00226616
+hypothetical protein	5.34191e-06	1.78878e-05
+Ferric enterobactin transport ATP binding protein FepC	0.00028406	0.000802534
+UniRef50_M5JPC6	0.000124543	2.24665e-05
+Short branched chain specific acyl CoA dehydrogenase, mitochondrial	6.7312e-06	5.81949e-06
+UniRef50_X3WXP6	3.00211e-05	2.09556e-05
+putative magnesium translocating P type ATPase	3.00129e-05	6.78419e-05
+hypothetical protein	8.32929e-05	8.10705e-05
+Flavohemoprotein	0.00307272	0.000566408
+UniRef50_Q3IV85	0.00581656	0.00105266
+Response regulator receiver and SARP domain protein	0.000287648	0.00128892
+histidine kinase	6.22886e-05	1.05496e-05
+Raffinose permease	0.000891254	0.000596019
+Putative competence damage inducible protein	0.00704025	0.00276699
+Alkylhydroperoxidase like protein, AhpD family	0.00599396	0.00130526
+hypothetical protein	2.86419e-05	4.58738e-05
+UniRef50_F3S3U6	4.42573e-05	2.13903e-05
+hypothetical protein	4.3347e-06	7.62238e-05
+Ppx GppA phosphatase	0.00432267	9.25617e-05
+PREDICTED	5.76308e-06	3.75392e-06
+ATPase involved in chromosome partitioning	0.00471181	0.00493382
+hypothetical protein, partial	0.000179449	1.09437e-05
+30S ribosomal protein S8	4.46269e-05	0.00015974
+PAS domain S box diguanylate cyclase  domain containing protein	0.000566055	0.00139796
+UniRef50_G8VEI8	8.12225e-05	0.000378686
+Acrylyl CoA reductase AcuI	0.00592981	0.00063864
+Spermidine putrescine import ATP binding protein PotA	6.72679e-05	2.42111e-05
+UniRef50_V1DIU7	4.66529e-05	2.52958e-05
+3 5 exonuclease	0.015022	0.0019422
+UniRef50_R1D2B5	7.25683e-06	1.22313e-05
+hypothetical protein	6.21239e-06	2.57133e-05
+DNA damage inducible protein F	0.00189482	0.000436752
+UniRef50_R6NSD0	0.000155836	0.000326768
+Basal body rod modification protein FlgD	0.0022584	0.000129747
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00353419	8.92494e-05
+sn glycerol 3 phosphate import ATP binding protein UgpC	7.23121e-05	3.84137e-05
+Glutathione regulated potassium efflux system protein KefB	0.0024661	0.000651378
+PREDICTED	2.92932e-06	2.63562e-06
+Putative permease PerM	0.00319923	0.000151153
+hypothetical protein	0.00033823	2.51557e-05
+Protein NrdI	1.02358e-05	2.3207e-05
+UniRef50_Q6G5Y3	0.020926	0.0028415
+UniRef50_V5XV11	6.28688e-06	1.07936e-05
+hypothetical protein	0.00174343	0.000704763
+UniRef50_Q8ZPD6	0.00169459	0.000542695
+Outer membrane protein N	0.000514503	0.000375758
+Acyltransferase family protein 5	0.000379744	0.000131457
+ABC transporter substrate binding protein	8.1146e-05	5.6563e-05
+HPr kinase phosphorylase	0.00022288	0.000947423
+Protein PqqC	0.000272512	0.00058706
+DNA polymerase III subunit alpha, partial	1.30257e-05	1.45735e-05
+FAD dependent pyridine nucleotide disulphide oxidoreductase	8.35799e-05	0.000871496
+Protein L isoaspartate O methyltransferase	0.00218074	0.000537253
+UniRef50_P9WKI2	0.000104087	0.00302076
+UniRef50_G2JG74	0.00325692	0.000897635
+Glutamate synthase [NADH]	8.11797e-07	6.97392e-06
+Lipid A export ATP binding permease protein MsbA	2.28575e-06	3.11249e-06
+hypothetical protein	2.528e-05	5.83773e-06
+Putative outer membrane usher protein YfcU	0.00269991	0.000656528
+D alanyl D alanine carboxypeptidase	0.000174822	0.000454615
+PTS system protein, cellobiose specific IIC component	0.00148702	0.000286068
+Putative conserved inner membrane protein	1.63007e-05	1.57598e-05
+S adenosylmethionine synthase	2.55418e-05	8.28345e-05
+membrane protein	4.84837e-06	1.85948e-05
+hypothetical protein	7.42693e-06	4.71641e-06
+Carbamoyl phosphate synthase large chain	1.38198e-05	4.44859e-06
+Protein AmpG	0.00238688	0.00101103
+NAD dependent epimerase dehydratase	0.000583851	0.000701569
+hypothetical protein	0.00154813	0.000283554
+Magnesium chelatase subunit	0.00254312	0.000432167
+Transcriptional regulator	0.000582842	0.00288151
+UniRef50_V5VIA0	0.000711018	0.00475257
+ABC transporter permease	2.1722e-05	6.90726e-06
+ABC transporter permease	8.74153e-06	5.92049e-06
+Penicillin binding protein 2 	0.00240128	0.000269109
+hypothetical protein	0.000140966	2.72058e-05
+UniRef50_A4WQG9	0.00242927	0.000727386
+Superoxide dismutase [Mn]	7.82843e-06	5.3073e-05
+UniRef50_W5FKJ5	9.1204e-05	0.000103804
+Transcription termination antitermination protein NusA	0.00568788	0.000428787
+Glycine cleavage system transcriptional activator	0.00169862	0.000633559
+3 isopropylmalate dehydratase small subunit	5.06324e-05	0.00458171
+AP endonuclease, family 2	0.000498437	0.00283779
+Elongation factor P hydroxylase	9.0823e-05	1.94927e-05
+AsmA family protein	2.30669e-05	3.89329e-05
+hypothetical protein, partial	1.0583e-05	5.4129e-05
+chemotaxis protein CheY, partial	0.0001658	5.22837e-05
+NADH quinone oxidoreductase subunit A	1.34638e-05	7.39537e-05
+Ketol acid reductoisomerase, mitochondrial	2.24717e-06	0.00137782
+Bis tetraphosphatase PrpE [asymmetrical]	7.69736e-05	9.45691e-05
+rubredoxin	0.000370692	5.21003e-05
+hypothetical protein	4.79846e-06	6.55435e-06
+PREDICTED	9.34722e-06	9.78602e-05
+Membrane protein	0.000380398	0.000758441
+hypothetical protein	4.91753e-05	1.43612e-05
+PREDICTED	9.13577e-05	6.66572e-06
+UniRef50_I4EZI0	4.45405e-05	5.53348e-05
+Glutamate synthase [NADPH] small chain	8.66791e-05	6.83419e-05
+Spermidine putrescine ABC transporter ATPase	0.0081972	0.00122633
+UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00181134	0.000545433
+UniRef50_A3LGX4	8.96978e-06	4.85994e-05
+D amino acid dehydrogenase small subunit	2.80564e-05	1.32691e-05
+UniRef50_A3LGX1	0.000197126	0.000214674
+MarR family transcriptional regulator	1.08553e-05	4.81311e-05
+UniRef50_Q28TP6	0.000134318	1.42528e-05
+tRNA specific 2 thiouridylase MnmA	8.74103e-06	1.21452e-05
+Lysine  tRNA ligase	0.000352579	0.00227957
+Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000351658	2.73263e-05
+hypothetical protein	6.42939e-05	0.000249023
+4 hydroxythreonine 4 phosphate dehydrogenase	0.000102711	0.00170291
+UniRef50_J2XB15	0.00797343	0.000871698
+ISSpo9, transposase	0.000121123	1.18303e-05
+30S ribosomal protein S2	0.00437414	0.000456311
+Proline  tRNA ligase	0.00425211	0.00249999
+PAS PAC sensor signal transduction histidine kinase	0.000305129	0.00107466
+UniRef50_D3QE85	0.0168043	0.00265004
+UniRef50_G4LM52	0.000228427	0.00199998
+peptidase S41	2.38939e-05	7.70416e-05
+Lipopolysaccharide 1,2 glucosyltransferase	0.0025235	0.000142065
+Tryptophan synthase beta chain	6.5005e-05	0.0115974
+UniRef50_S9RYT9	0.000448576	0.000384923
+signal recognition particle protein	3.74406e-05	0.00097253
+Epoxyqueuosine reductase	0.000676759	9.5313e-05
+hypothetical protein	2.22667e-05	4.72019e-06
+Thioredoxin reductase	2.50081e-05	1.34513e-05
+6,7 dimethyl 8 ribityllumazine synthase	0.000408763	0.000204332
+hypothetical protein	3.21905e-06	0.00103591
+UniRef50_Q58944	0.00185023	0.00206047
+hypothetical protein	1.12266e-05	5.149e-06
+AsmA family protein 	4.06193e-05	6.85583e-05
+hypothetical protein	1.89975e-05	3.18724e-05
+hypothetical protein	5.66743e-06	4.17915e-06
+UniRef50_C6SRS1	0.00305866	0.000489047
+UniRef50_A3V2W0	2.54003e-05	2.2141e-05
+Universal stress protein family	0.00173564	0.000181384
+LuxR family transcriptional regulator	3.4745e-05	0.000204546
+hypothetical protein	8.37046e-06	1.07997e-05
+UniRef50_L0A7F9	0.000132153	0.0229278
+Enterotoxin family protein	0.00984892	0.000534434
+Sulfate ABC transporter, inner membrane subunit	0.000138118	0.00035649
+hypothetical protein	1.51479e-05	1.09886e-05
+Methyl accepting chemotaxis sensory transducer	0.000258466	0.000518646
+Protein GlcT	0.0130178	0.00181275
+hypothetical protein	0.000121667	1.79598e-05
+7 cyano 7 deazaguanine synthase	4.84698e-05	2.39825e-05
+Lipoyl synthase	0.0007986	0.00142123
+UniRef50_B0NLN7	1.13119e-05	0.000173637
+Zn dependent hydrolase, including glyoxylase	0.000674049	0.00271028
+Phosphopantetheine adenylyltransferase	2.35468e-05	8.2456e-06
+UniRef50_T5BQJ5	1.55853e-05	3.24165e-06
+excinuclease ABC subunit A	3.39787e-06	1.06386e-06
+hypothetical protein	6.16442e-06	2.79558e-05
+Ribosomal protein S18p alanine acetyltransferase	0.0217879	0.00229298
+UniRef50_U2LTW3	5.90604e-06	2.81505e-05
+Phosphomethylpyrimidine synthase ThiC	1.8343e-05	3.07448e-05
+NADH dehydrogenase [ubiquinone] iron sulfur protein 2, mitochondrial	2.07758e-05	1.72304e-05
+UniRef50_B4RJZ9	0.000263615	0.00270046
+hypothetical protein	0.000108748	1.68665e-05
+UniRef50_M4UTW5	4.60903e-05	9.88736e-06
+Transcriptional regulator, Fis family	0.00229837	0.000250818
+UniRef50_A0A029LHT4	0.002395	0.000859293
+UniRef50_A0A024HXI8	7.63784e-05	9.04485e-05
+UniRef50_C6SQS1	0.00470659	0.000638732
+Protein EssA	0.00936847	0.00159619
+Protein CysZ homolog	0.000923279	0.000177792
+Bacterial extracellular solute binding protein, family 5	0.000267661	0.00303362
+hypothetical protein	5.34645e-06	2.06558e-05
+hypothetical protein	0.00170926	0.0002841
+UniRef50_Q6FD73	0.00112183	0.0055012
+Adhesin Ata autotransporter	9.41992e-05	0.00295413
+Aspartate  tRNA ligase	2.41915e-06	6.87382e-06
+hypothetical protein	4.48311e-06	3.91779e-06
+dihydropyrimidine dehydrogenase subunit B, partial	0.000242935	6.52915e-05
+Aec68	0.000677391	0.00022051
+AraC family transcriptional regulator	0.000757811	7.61174e-05
+Methionyl tRNA formyltransferase	0.000200327	0.00256669
+Peptidase family S11	9.80093e-05	1.10092e-05
+UniRef50_Q3JHM0	0.000237643	0.00372037
+Aldehyde dehydrogenase gamma chain 	0.0653242	0.00277787
+UniRef50_V6UAA6	6.09941e-05	5.14084e-05
+hypothetical protein	2.88062e-06	4.21878e-06
+Dipeptide binding ABC transporter, periplasmic substrate binding component	0.00296073	0.000307542
+sodium	2.21753e-05	2.9171e-05
+Transcription repair coupling factor	0.0121208	0.00127468
+Probable 6 phospho beta glucosidase	0.00104617	0.0029436
+UniRef50_G4YC47	0.000381979	1.99212e-05
+UniRef50_Q5HP54	0.0128312	0.00161989
+Flagellar M ring protein	0.000580144	0.0004056
+UniRef50_D6SFZ2	6.50551e-05	0.000831341
+ABC 2 type transporter	0.00580242	0.000811255
+hypothetical protein	0.000192583	0.00297687
+Chaperone protein DnaJ	6.63134e-05	3.59997e-05
+Permease of the major facilitator family protein	1.9162e-05	2.59127e-05
+Methyltransferase MtaA CmuA family	0.00401069	0.000191553
+DNA repair protein RecN	0.000628659	0.000270832
+UniRef50_D7BZV1	5.44747e-05	2.04309e-05
+Chaperone protein YajL	0.00528561	0.00151349
+Inorganic pyrophosphatase	0.00418116	2.5706e-05
+hypothetical protein	4.78361e-06	5.27558e-06
+hypothetical protein	5.75829e-05	1.27856e-05
+hypothetical protein	1.33071e-05	9.20634e-06
+UniRef50_Q1GCB3	1.32151e-05	7.08429e-06
+Putative fluoride ion transporter CrcB	0.00180294	0.000231404
+UniRef50_A3V7A8	0.000199058	4.17397e-05
+Glycosyl transferase family protein	0.0017857	0.000123671
+DNA binding protein, excisionase family	0.000403594	0.000937239
+RepA	0.000148797	4.03466e-06
+hypothetical protein	1.7647e-05	1.82449e-05
+Oligopeptidase A	0.00109887	5.80756e-05
+UniRef50_A0A058Z2Y8	1.16608e-06	3.35398e-07
+methylcitrate synthase	3.31802e-05	2.79111e-05
+UniRef50_R5RD02	0.00116076	0.000272075
+acyl CoA dehydrogenase	3.7146e-05	7.0566e-06
+dihydroxyacetone kinase	1.61936e-05	0.000669833
+UDP N acetylmuramoylalanine  D glutamate ligase	0.000514586	0.000641971
+UniRef50_Q5M1E5	0.00403138	0.0017835
+Type IV pilus assembly PilZ	0.000199141	0.000172332
+UniRef50_V9WDB1	6.30567e-05	6.10721e-06
+translation initiation factor IF 3, partial	0.000194592	0.00015802
+Amidase	0.000171012	0.000147295
+reductase	0.000106051	0.000106906
+4 alpha glucanotransferase	1.23588e-05	0.000389234
+hypothetical protein	6.06322e-06	5.94117e-06
+Metal dependent phosphohydrolase, HD region	0.000235349	0.00167889
+ABC transporter permease	0.000172093	7.43729e-06
+hypothetical protein	2.2748e-06	2.00788e-06
+Short chain dehydrogenase 	2.07072e-05	2.56545e-05
+hypothetical protein	0.000310398	6.8023e-05
+DNA directed RNA polymerase subunit B	0.00243065	0.000464058
+amino acid permease	2.12683e-05	3.86964e-06
+hypothetical protein	3.77841e-05	1.30591e-05
+Predicted protein	0.000921386	4.66934e-05
+hypothetical protein	2.93015e-05	6.7857e-06
+hypothetical protein	1.2374e-05	0.000399633
+Acetylglutamate kinase	0.00527393	0.00139623
+Adhesin like protein	0.00365467	0.000390238
+Two component system response regulator	0.000681335	0.00187986
+Mitochondrial ribosomal protein S12	7.16345e-05	5.26411e-05
+UniRef50_C5Y1C5	3.11773e-05	3.94098e-05
+excinuclease ABC subunit A	7.23615e-06	1.19783e-05
+UniRef50_X7F301	4.41463e-05	1.60573e-05
+cysteine synthase	3.12515e-06	8.63659e-06
+alcohol dehydrogenase	9.23759e-06	4.90733e-06
+TRAP T family transporter, DctP  subunit	0.0113454	0.00201312
+UniRef50_C4J2K7	0.00013953	0.000382019
+PF04507 domain protein	1.40827e-05	1.48699e-05
+UniRef50_C5Y4M7	0.00021511	3.69973e-05
+Ribosomal RNA small subunit methyltransferase G	1.93766e-05	2.33001e-05
+Biotin  protein ligase	0.000962773	0.00120003
+UniRef50_L1K7Q7	0.0021847	0.000412055
+Hydrolase in agr operon	0.0168834	0.000929776
+DNA gyrase subunit B	1.03168e-05	7.94542e-06
+NADH dehydrogenase	0.000144856	0.00364629
+UniRef50_L0DVV1	5.06223e-05	0.000266219
+UniRef50_V9XXU6	4.39429e-06	0.000158275
+2,3 dehydroadipyl CoA hydratase	0.00203999	0.000525058
+PREDICTED	7.52752e-06	2.44145e-06
+UniRef50_F8KNY9	0.00286323	0.000816946
+UniRef50_N0CST0	9.07955e-05	5.97395e-05
+UniRef50_A6M3H8	0.000135341	0.000449592
+UniRef50_F3KGL6	7.15587e-05	6.33474e-05
+Citrate dependent iron transport, membrane bound protein	0.00289223	0.000494461
+Carbonic anhydrase, family 3	0.000185948	0.000324502
+MULTISPECIES	0.000268395	3.75503e-05
+ATP dependent DNA helicase RecQ	0.000331787	0.000873465
+diguanylate cyclase	5.57758e-06	3.07298e-05
+malto oligosyltrehalose synthase, partial	1.42702e-05	1.14517e-05
+Protein HemY	0.00222979	0.0010045
+Small GTP binding protein	0.00233147	0.000431965
+3 5 exoribonuclease YhaM	0.0227206	0.00376723
+hypothetical protein, partial	3.72569e-05	0.000278
+Phosphate import ATP binding protein PstB 1	5.52414e-06	4.38699e-05
+hypothetical protein	2.76576e-06	0.000119775
+Methionine import ATP binding protein MetN 2	1.85927e-05	8.5428e-05
+UniRef50_Q3J527	0.010869	0.00140307
+UniRef50_Q3J525	0.00322068	9.82357e-05
+UniRef50_Q3J523	0.000936658	0.000223902
+hypothetical protein	4.1624e-05	0.000116692
+hypothetical protein	2.64259e-05	2.30349e-05
+Phosphoenolpyruvate protein phosphotransferase PtsP	0.00213943	0.000525128
+NADP oxidoreductase coenzyme F420 dependent	0.00054872	0.000531923
+Msm operon regulatory protein	0.00245667	0.000217551
+hypothetical protein	3.99354e-06	0.000172885
+peptide ABC transporter ATP binding protein	4.33986e-05	1.83046e-05
+DNA mismatch repair protein MutL	3.11852e-06	2.73989e-06
+UniRef50_K2M973	0.000339917	1.60946e-05
+UDP N acetyl D mannosamine dehydrogenase	0.00214771	0.000331708
+UniRef50_I1PAG3	2.31034e-05	0.000141734
+hypothetical protein	2.30795e-05	1.95677e-05
+Xaa Pro aminopeptidase	0.00344381	0.0003398
+UDP glucose 4 epimerase	0.00080616	0.00361199
+PREDICTED	2.69367e-05	2.56223e-06
+Starvation protein B	0.000319508	0.00676634
+hypothetical protein	4.56634e-06	1.87236e-05
+Ssp gyrB intein	5.49182e-06	5.47781e-06
+hypothetical protein	1.6027e-05	1.49916e-05
+Phosphoribosylglycinamide formyltransferase	0.000659771	0.000805311
+30S ribosomal protein S4	1.11874e-05	2.6051e-05
+Marine sediment metagenome DNA, contig	2.28534e-05	1.01167e-05
+UniRef50_Q6FBI7	0.000118087	0.0050828
+ATP dependent Clp protease proteolytic subunit	0.0311069	0.00224549
+hypothetical protein	2.31641e-05	1.22708e-05
+Adenylosuccinate synthetase	3.86381e-06	5.1018e-06
+3 isopropylmalate dehydrogenase	2.62146e-05	0.00222081
+methionyl tRNA synthetase	1.33533e-05	2.19611e-05
+MIP family channel protein	0.000284007	0.000278434
+UniRef50_Q4L8Y1	0.015133	0.00239804
+hypothetical protein	1.53536e-05	1.13261e-05
+UniRef50_A4X3N1	7.76591e-06	3.51462e-05
+UniRef50_M7AGI7	3.279e-05	0.00022704
+UniRef50_A3UJ86	4.49865e-06	4.78505e-06
+Malonate decarboxylase gamma subunit	0.000528958	0.00449822
+Putative electron transfer flavoprotein subunit YgcR	0.00366264	0.000461525
+Dihydrofolate reductase	0.0032155	0.000675472
+Transaldolase	0.000451123	0.0175972
+hypothetical protein, partial	4.76967e-06	1.70998e-05
+200 kDa antigen p200, putative	4.24306e-05	9.75582e-05
+alkaline phosphatase family protein	0.000141984	3.4861e-05
+excinuclease ABC subunit C	2.13851e-06	1.69828e-05
+Lipoprotein releasing system ATP binding protein LolD	0.00292295	0.00672801
+Adenine deaminase	1.50355e-05	0.000614448
+UniRef50_V6QD47	6.73631e-05	3.21794e-05
+Iron compound ABC transporter ATP binding protein	0.000697744	0.000756503
+DNA processing protein	2.07026e-05	2.44837e-05
+Electron transport complex subunit B	0.00142333	0.000683866
+NADH pyrophosphatase	0.000135888	7.36588e-06
+UniRef50_X6L5V7	4.26219e-05	8.36827e-06
+transcriptional regulator	0.000197017	1.16086e-05
+Flagellar hook protein FlgE	0.000563152	0.000963138
+TonB dependent receptor	3.82442e-05	0.000947484
+hypothetical protein	1.77148e-05	2.45352e-05
+hypothetical protein	3.28837e-05	9.54054e-06
+UniRef50_V8PQC8	0.000152784	9.09121e-05
+acyl homoserine lactone synthase	7.56744e-06	6.89065e-06
+Stackhouse genomic scaffold, scaffold_590	0.000137062	1.34476e-05
+MULTISPECIES	0.000173134	0.000520931
+Elongation factor G 1, mitochondrial	7.79765e-06	9.48825e-06
+beta lactamase	3.69116e-05	4.7423e-06
+7 cyano 7 deazaguanine synthase	6.55757e-06	0.00077046
+Transcriptional regulator family protein	1.12384e-05	3.11376e-05
+Hemolysin type calcium binding region	2.34472e-05	3.1024e-06
+Sensor protein RstB	0.00295948	0.000157973
+hypothetical protein	1.05729e-05	5.6431e-06
+UniRef50_A7IEB4	0.000113645	2.33121e-05
+HAD hydrolase, IIB family	0.000307819	0.00133495
+hypothetical protein, partial	3.45209e-06	2.72893e-05
+ABC transporter permease	1.65732e-05	4.31135e-05
+putrescine spermidine ABC transporter substrate binding protein	4.13081e-05	1.06527e-05
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000128617	0.000272044
+Dihydropyrimidinase	0.000465527	0.000911324
+Trk system potassium uptake protein TrkG	0.0026527	0.000214894
+hypothetical protein	2.17115e-05	6.92878e-05
+hypothetical protein	1.41085e-05	0.000172613
+Protein L isoaspartate methyltransferase homolog	0.00368635	0.000123162
+GntR domain protein	0.000477686	0.000696421
+hypothetical protein	8.87718e-05	6.54624e-05
+hypothetical protein, partial	0.000850621	9.85695e-05
+ABC transporter permease	0.000411172	0.00692498
+Bacterial transferase hexapeptide	0.00228089	0.000159476
+Mur ligase middle domain protein	0.00208698	0.000373488
+L allo threonine aldolase	7.32623e-06	5.5237e-06
+Ribulose phosphate 3 epimerase	0.0131161	0.00119678
+UniRef50_A0A023S2Y3	0.000551719	0.00465029
+Uracil phosphoribosyltransferase	8.33822e-06	3.06887e-05
+sulfate permease, partial	0.000142511	2.81216e-05
+UniRef50_Q3KK43	9.99455e-05	3.34636e-05
+Binding protein dependent transport systems inner membrane component	0.0104719	0.00389508
+UniRef50_S9FAF7	0.000161714	0.000123913
+UniRef50_J9PA20	2.57149e-05	2.75909e-05
+Terminase large subunit	1.36244e-05	3.71241e-06
+DNA recombination protein RecAprecursor	0.00010063	9.57177e-05
+Holliday junction ATP dependent DNA helicase RuvA	1.24959e-05	5.78221e-06
+Protein NrdI	1.40204e-05	3.77069e-05
+UniRef50_A6FR36	7.44459e-05	0.000441495
+choline dehydrogenase, partial	2.16527e-05	4.49683e-06
+UniRef50_A3PNW7	0.00440125	0.000143546
+UniRef50_G8AX62	0.0118238	0.00191771
+UniRef50_G8AX61	0.00012795	0.000383093
+hypothetical protein	0.000198683	0.00020392
+Transcriptional regulator SarA	0.00417231	0.00183619
+Malate synthase 1, glyoxysomal	9.61772e-06	3.97703e-06
+UniRef50_U5BVT6	3.76094e-05	8.42559e-06
+hypothetical protein	9.3315e-06	1.59863e-05
+UniRef50_W4HL11	0.000164299	2.18482e-06
+hypothetical protein	5.83142e-05	0.000831572
+choline dehydrogenase	2.58276e-05	6.8839e-06
+UniRef50_K3Y3R8	3.87053e-05	0.00048799
+PREDICTED	5.45256e-06	5.80542e-06
+UniRef50_G7DEN0	0.000113167	4.04173e-05
+hypothetical protein	0.000183477	1.4725e-05
+ATP dependent helicase HrpA	0.00038631	7.02047e-05
+hypothetical protein	8.77944e-06	1.8525e-05
+ATPase AAA 2 domain protein	5.01e-06	7.79169e-06
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	4.38506e-06	4.56936e-06
+hypothetical protein	0.000545754	0.000413755
+Adenylate kinase	1.94383e-05	8.75546e-06
+3 hydroxybutyryl CoA dehydrogenase	2.71778e-06	3.22114e-05
+UniRef50_E1W4N2	1.65009e-05	0.000552561
+Penicillin binding protein 2	6.03563e-05	0.00122768
+Thromboxane receptor	0.00114883	0.00016021
+PE PGRS family protein	2.5579e-06	2.08401e-06
+Transposon Tn1546 resolvase	0.00628025	0.000555245
+Dihydrolipoyl dehydrogenase	0.00810718	0.000652881
+UniRef50_G7D8J6	3.24096e-05	2.03162e-05
+Cobaltochelatase subunit	0.000250427	0.00205984
+UniRef50_K2G5P2	0.000140818	0.000150566
+phosphopentomutase	8.98416e-06	9.58802e-06
+peptidase	1.15469e-05	4.38956e-05
+UniRef50_P65368	0.000451743	0.000217397
+Phytoene dehydrogenase	3.58283e-06	2.96643e-06
+Acetone carboxylase alpha subunit	5.43112e-05	0.00196481
+Metallophosphoesterase	0.000125734	0.000109896
+Transcriptional regulator	4.6676e-05	2.35926e-05
+UniRef50_U2PUQ4	5.06639e-06	3.99029e-06
+NAD dependent epimerase dehydratase	0.0060076	0.000762118
+Transcriptional regulator, DeoR family	0.000344589	0.00420589
+Spore envelope assembly protein SeaA	6.44789e-05	0.000123841
+2 methylcitrate dehydratase	0.00303413	0.000550868
+UniRef50_F2ADJ4	0.00123313	0.000129187
+UniRef50_R5QQN1	2.27342e-05	1.90335e-05
+UniRef50_D4DML3	1.81279e-05	0.000100344
+UniRef50_E4CT22	8.58602e-05	0.000690815
+Outer membrane specific lipoprotein transporter subunit LolC	0.00052861	0.00123321
+threonine dehydratase, partial	2.09262e-05	7.22366e-06
+UniRef50_E4WMF0	7.67513e-05	5.19185e-05
+hypothetical protein	3.05382e-06	2.46088e-06
+Amino acid adenylation	0.000157812	0.00392567
+dihydrolipoamide dehydrogenase	2.54669e-06	3.54775e-06
+ABC transporter permease	0.000134237	7.29197e-05
+hypothetical protein, partial	5.30356e-05	6.27115e-05
+Succinate semialdehyde dehydrogenase, mitochondrial	1.07114e-05	2.7258e-06
+Alkaline phosphatase III	0.0198	0.00201487
+UniRef50_S6AK43	6.86826e-06	1.17534e-05
+Acetyl coenzyme A synthetase	0.000545368	0.000151056
+UniRef50_P24197	0.0066695	0.000880464
+ABC transporter ecsA	0.0102999	0.00235638
+Homodimeric dihydroxyacetone kinase	0.000140471	0.00361093
+hypothetical protein	3.41374e-06	6.35329e-06
+Protein containing DUF28	4.27982e-05	3.63397e-05
+PREDICTED	4.50269e-05	0.000117955
+Translation initiation factor IF 1	0.000551719	0.000411857
+UPF0229 protein PP_0396	0.00336247	0.000182994
+Conserved domain protein	4.06728e-05	8.65687e-05
+Response regulator receiver protein	0.0300663	0.00279541
+translation elongation factor	8.37523e-07	5.12532e-06
+UniRef50_D0WHH7	4.31145e-05	7.18185e-05
+3 isopropylmalate dehydrogenase	1.74655e-05	1.66015e-05
+aldehyde dehydrogenase	1.68939e-05	2.53545e-05
+Ribulose phosphate 3 epimerase	0.0023751	0.000129747
+Sodium proline symporter	0.00325201	0.000114396
+Type 4 fimbrial biogenesis protein PilM	0.00120804	0.00376135
+Membrane protein insertase YidC 1	0.0272969	0.00407665
+ABC transporter like protein	2.14794e-05	4.40046e-05
+Bifunctional purine biosynthesis protein PurH	2.36122e-06	5.40469e-06
+Lipopolysaccharide biosynthesis protein WzzE	0.00272267	0.000128448
+ABC transporter ATP binding protein	3.79507e-06	2.00449e-06
+Histidine ammonia lyase	2.90947e-06	7.28338e-06
+GntR family transcriptional regulator	0.00155575	0.000208802
+Acetyl CoA acetyltransferase, cytosolic	0.0119002	0.0104943
+Flagellar motor switch protein FliG	0.00664798	0.00131832
+UniRef50_F2A6H7	0.000229888	4.53568e-05
+hypothetical protein	7.66851e-05	2.19823e-05
+Major Facilitator Superfamily protein	0.000107181	0.00237044
+UniRef50_V7ZFZ6	0.000201475	1.87417e-05
+Trifunctional purine biosynthetic protein adenosine 3	1.37643e-06	1.25057e-06
+hypothetical protein	4.16984e-05	8.74556e-06
+Cell wall protein, WapE	0.00481512	0.00087587
+Multiphosphoryl transfer protein	2.81399e-06	0.000223934
+Transposon protein	0.00560761	0.00143932
+Glycerol kinase	6.22034e-05	7.87436e-05
+Mannose 1 phosphate guanylyltransferase	9.43811e-06	7.732e-06
+UniRef50_V3L139	1.62696e-06	5.20988e-06
+GroEL	3.98506e-05	1.79244e-05
+Integral membrane transport protein	0.000186717	5.25672e-05
+Glycine dehydrogenase 	1.88849e-06	0.00153395
+UniRef50_X6L4K9	3.50312e-05	3.49709e-05
+Ribosomal RNA large subunit methyltransferase M	0.000469798	0.000364353
+Dihydropteroate synthase	0.000118922	0.00502842
+Enoyl CoA hydratase isomerase family protein	0.00116673	0.000443794
+UniRef50_K2JPR7	1.74805e-05	7.19594e-06
+dihydroorotate dehydrogenase 2, partial	0.000104779	0.000102609
+ binding domain protein	0.000161028	0.0318609
+hypothetical protein	9.13371e-06	1.32567e-05
+UniRef50_P11664	0.00326747	0.000288439
+Amidohydrolase	0.000116487	5.80006e-05
+Lipoprotein	0.000103553	0.00118107
+hypothetical protein	5.45959e-06	1.58803e-05
+MULTISPECIES	1.25389e-05	0.00015516
+Segregation and condensation protein A	0.0180377	0.00151376
+UniRef50_A7X311	0.0136986	0.000545404
+ArsR family transcriptional regulator	9.99883e-06	6.91276e-06
+Lipoprotein signal peptidase	1.07803e-05	8.69453e-06
+Orotidine 5 phosphate decarboxylase	2.052e-05	6.24801e-06
+UniRef50_B7UZF1	0.000256951	0.000755986
+Non canonical purine NTP pyrophosphatase	0.000735484	0.000603737
+methionine aminopeptidase	5.46342e-05	1.19003e-05
+hypothetical protein	6.91449e-06	3.01587e-06
+Cyclic pyranopterin monophosphate synthase accessory protein	0.0108953	0.000592339
+UniRef50_Q4A054	0.0122621	0.0021275
+S adenosylmethionine synthetase	3.52145e-05	0.00010854
+Extracellular solute binding protein, family 5	0.00566984	0.00138032
+30S ribosomal protein S2	6.77843e-06	7.58061e-06
+Probable 4 aminobutyrate aminotransferase	0.000435316	0.000736405
+PTS family mannitol porter	0.000408338	0.000851691
+UniRef50_M7A0H8	3.50729e-05	2.67584e-05
+TIGR01906 like family protein	7.72891e-05	4.38028e-05
+serine threonine protein phosphatase	4.82365e-06	6.38074e-06
+Haloacid dehalogenase like hydrolase	0.00578706	0.00135741
+UniRef50_P77634	0.00282988	0.00192257
+Transcriptional regulator, DeoR family	0.000772003	0.00161873
+YhgE Pip C terminal domain protein	1.69967e-06	1.62002e-06
+Biotin carboxylase	0.0162929	0.00226243
+cation	0.0001596	0.000448815
+Aldehyde dehydrogenase	9.87912e-05	0.00282487
+UTP  glucose 1 phosphate uridylyltransferase 1	0.00163476	0.00329644
+Transcriptional regulator pfoR	7.56764e-05	0.000219541
+hypothetical protein	6.08999e-05	0.000757905
+UniRef50_P0ADJ1	0.00264934	0.000473977
+2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component	0.000136071	0.00477587
+Lysophospholipase	7.90186e-06	1.25591e-05
+UniRef50_H6LRG1	0.0106373	0.000501072
+hypothetical protein	2.86606e-05	7.42276e-06
+Collagenase, peptidase family U32	0.00176903	0.000449434
+binding protein dependent transport systems inner membrane component	0.000197633	1.54848e-05
+hypothetical protein	3.61615e-05	7.74843e-06
+hypothetical protein	0.000220962	0.00020642
+UniRef50_C6UY37	5.8551e-05	1.38639e-05
+Phage protein	0.00675168	0.000612038
+Peptide deformylase 2	9.97059e-06	2.90987e-05
+Conserved virulence factor C	0.00729816	0.000594409
+serine dehydratase	8.30703e-06	9.86402e-05
+ABC transporter related	0.000143824	0.00115092
+H4MPT linked C1 transfer pathway protein	0.00546499	0.000201851
+hypothetical protein	9.37169e-05	8.50883e-06
+methionyl tRNA synthetase	7.13402e-06	8.48104e-06
+CDP 6 deoxy delta 3,4 glucoseen reductase	1.06932e-05	7.41628e-06
+UniRef50_Q5HLS8	0.00136752	0.00715476
+UniRef50_Q49XT6	0.00894624	0.000812612
+PTS system, mannose fructose sorbose family, IID component	0.00192084	0.000463152
+3 hydroxyisobutyrate dehydrogenase	0.00260839	0.000286879
+Macrolide export ATP binding permease protein MacB	2.03531e-06	3.21976e-06
+PREDICTED	6.35718e-06	3.48931e-05
+UniRef50_Q3IW34	0.0180216	0.00134813
+WGR domain containing protein	4.45508e-05	1.59981e-05
+UniRef50_Q3IW32	0.00504377	0.00827186
+trehalose phosphatase	2.69488e-05	1.1818e-05
+hypothetical protein	3.18894e-05	5.70212e-06
+hypothetical protein	2.58678e-05	5.8432e-06
+UniRef50_W4LSH7	2.23015e-05	3.86712e-05
+UniRef50_E4NIV5	4.28172e-05	9.0486e-06
+hypothetical protein	1.03562e-05	0.000212649
+Elongation factor G	5.16494e-06	1.4734e-05
+UniRef50_V4X579	1.931e-05	0.000181215
+hypothetical protein	5.56916e-06	1.50624e-05
+AraC family transcriptional regulator	8.82942e-06	1.84871e-05
+Lincomycin resistance protein	0.000102398	0.000233531
+Thioesterase superfamily	1.52023e-05	0.000590818
+Alginate lyase	0.000184244	0.000277761
+UniRef50_S0AG26	0.00012855	0.00137084
+Transcriptional regulator 	6.96903e-06	7.68621e-06
+UniRef50_L7EAU8	1.91432e-05	4.86046e-06
+Ubiquinol cytochrome c reductase cytochrome b subunit	0.000208789	0.00337233
+Anhydro N acetylmuramic acid kinase	4.32364e-06	1.2647e-05
+UniRef50_H0TL85	4.51483e-05	3.94262e-05
+Methyl accepting chemotaxis protein	0.000311139	0.000494676
+Phosphatidylglycerol lysyltransferase	0.0115557	0.00204506
+alcohol dehydrogenase	4.82523e-06	7.67965e-05
+Multiphosphoryl transfer protein 1	0.00339626	0.000299151
+Urease subunit gamma	0.00267846	0.00185443
+UniRef50_A5UKH6	0.00702471	0.000146947
+hypothetical protein	1.54431e-05	1.08793e-05
+UniRef50_K2AEY0	9.99016e-05	3.99605e-06
+PREDICTED	5.30681e-06	6.62257e-06
+UniRef50_F2TZS1	7.48072e-05	1.95007e-05
+UniRef50_Q1CW26	0.00012823	9.74345e-05
+UniRef50_I1B3F9	0.000451291	0.000163245
+ABC transporter, permease protein	0.00522945	0.00164104
+tRNA pseudouridine synthase B	0.00078041	0.000105878
+UniRef50_Q5HKS5	0.00117401	0.000632288
+Membrane protein, putative	0.00166562	0.000205452
+LysR family transcriptional regulator	0.00162722	0.000415147
+p aminobenzoate synthetase	0.000226064	0.00368884
+RepC like protein	0.000113591	2.11704e-05
+N5 carboxyaminoimidazole ribonucleotide mutase	0.00110409	0.00771729
+transposase	8.21433e-05	4.83971e-05
+tRNA delta isopentenylpyrophosphate transferase	2.16058e-05	5.99012e-06
+Ribose phosphate pyrophosphokinase	0.00277635	0.00330552
+UniRef50_D6CUH0	6.27996e-06	5.51801e-06
+OmpA MotB domain protein	0.000983368	8.23714e-05
+UniRef50_G9ADV3	1.21457e-05	3.81772e-06
+UniRef50_G9ADV1	5.6533e-05	2.65599e-05
+OrfD	0.0716471	0.000656652
+UniRef50_S4HRH5	7.65311e-05	3.85245e-05
+Oligo 1,6 glucosidase 1	0.0165943	0.00608652
+UniRef50_M5J6F3	1.78016e-05	2.55627e-05
+UniRef50_A9H974	7.08182e-05	3.5939e-05
+Metallophosphoesterase	0.000222509	0.000904254
+Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	3.26266e-05	1.10845e-05
+GntR family transcriptional regulator	1.26323e-05	1.158e-05
+UniRef50_L5RMF7	3.17313e-05	0.000344694
+Glucose 1 phosphate thymidylyltransferase	0.0386329	0.0457324
+Conserved domain protein	0.0006462	0.000675074
+Putative N acetylmannosaminyltransferase	0.00789018	0.00100809
+Valine  tRNA ligase	5.99367e-06	1.52309e-06
+UniRef50_A0A038FZN0	2.77486e-05	0.000289263
+UniRef50_A6LQR2	0.000201904	0.000358283
+UniRef50_Q9RV19	0.00115627	0.0155044
+UniRef50_J0F0U1	0.00171861	0.000544151
+ABC transporter	0.00488697	0.000754221
+hypothetical protein	1.62488e-05	7.7898e-05
+3 dehydroquinate synthase, chloroplastic	4.87049e-06	2.38357e-05
+Chemotaxis protein CheA	0.000574521	8.81441e-05
+UniRef50_I4TNI4	0.00171009	0.000121167
+Drug resistance transporter, EmrB QacA subfamily	0.000689368	0.000430447
+UniRef50_Q5HQY3	0.0189321	0.00238756
+Short chain specific acyl CoA dehydrogenase, mitochondrial	1.03955e-05	2.28261e-05
+UniRef50_B9KX63	0.00224366	0.00197353
+UniRef50_B9KX60	0.00188026	0.000221195
+UniRef50_A8Z124	0.0132866	0.00213519
+UniRef50_B9KX64	0.00591433	0.000585453
+hypothetical protein	7.85545e-06	9.07979e-06
+transcriptional regulator	8.7982e-06	5.42272e-06
+UniRef50_C1CYZ3	0.000218538	0.0381068
+Cysteine desulfurase family protein	9.1786e-05	0.000888369
+tRNA 2 thiocytidine biosynthesis protein TtcA	0.00882942	0.000836363
+UniRef50_F7ZKB0	1.12534e-05	7.64487e-06
+UniRef50_W5X4N7	3.7803e-05	5.07234e-05
+Nicotinate phosphoribosyltransferase	0.000476855	0.00404931
+Delta aminolevulinic acid dehydratase	0.000163231	0.0017676
+UniRef50_H1S081	8.69786e-05	5.67385e-06
+HTH type transcriptional regulator HdfR	0.00204926	0.000461406
+Fosmidomycin resistance protein	4.85004e-05	1.19067e-05
+hyalin	2.65852e-06	2.96568e-06
+ABC transporter permease	0.000778448	0.000248653
+hypothetical protein	5.54856e-06	8.34729e-05
+Protein HtrL	0.00146924	0.000128264
+UniRef50_P42506	0.0103771	0.00119286
+Glycosyl hydrolase family 20, catalytic domain protein	9.89931e-05	0.00218223
+UniRef50_V1BIM5	0.00150693	0.000256977
+PREDICTED	5.6323e-06	7.11525e-06
+hypothetical protein	0.000141685	3.25283e-05
+Glyoxylate hydroxypyruvate reductase B	0.00256685	9.7275e-05
+UniRef50_A3PIF6	0.000868577	0.000243912
+isopentenyl diphosphate delta isomerase	4.73158e-05	4.65308e-06
+50S ribosomal protein L2	0.00274401	0.000107785
+anthranilate synthase component I	3.57175e-06	2.64462e-06
+Signal transduction histidine kinase regulating citrate malate metabolism	0.00037896	0.00107518
+Glycosyltransferase, GT2 family	0.00184848	0.000185992
+Mechanosensitive  ion channel protein	0.00192097	0.000371491
+Nucleoside diphosphate kinase	0.0144783	2.51871e-05
+Tellurite resistance protein	0.000178383	0.00297017
+Ketoisovalerate oxidoreductase subunit VorB	0.00279035	0.000366576
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	8.94737e-06	4.20384e-06
+Sporulation stage II, protein E	8.3788e-05	0.000474453
+hypothetical protein	0.000172478	2.89833e-05
+competence protein	1.62755e-05	2.03794e-05
+sensor histidine kinase	5.41432e-06	4.35147e-06
+UniRef50_U5VXD2	4.14917e-05	1.86403e-05
+Phosphopentomutase	5.21304e-06	3.44437e-06
+Pyrrolidone carboxylate peptidase	0.00849842	0.000975526
+UniRef50_A3L8X2	0.000959704	0.000121004
+HTH type transcriptional regulator IdnR	0.0031307	9.2087e-05
+UniRef50_A6LUQ9	0.000813733	0.000285829
+UniRef50_A3L8X4	0.000195366	0.000153429
+UniRef50_B9E9D0	0.00658122	0.000164441
+Phosphopantetheine adenylyltransferase	0.0066885	0.000675074
+UniRef50_A6LUQ6	0.00164665	0.000955052
+FilB	0.000183572	0.00697759
+hypothetical protein	3.26867e-05	2.17527e-05
+Beta Ig H3 fasciclin	6.10086e-05	6.25401e-06
+Sensor protein torS	0.000162056	3.99221e-05
+hypothetical protein	3.66479e-05	6.13221e-06
+Penicillin insensitive murein endopeptidase	0.00283751	0.000666541
+Oxygen independent coproporphyrinogen III oxidase like protein BUsg_532	6.66206e-06	2.73139e-05
+UPF0276 protein NMCC_2101	0.000879469	0.000935522
+hypothetical protein	1.42762e-05	1.289e-05
+Phosphoenolpyruvate phosphomutase	0.000450301	0.000245885
+UniRef50_Q1JFX3	0.0052811	0.000569677
+hypothetical protein, partial	1.17764e-05	4.45246e-05
+Penicillinase repressor family protein	0.0238138	0.00161572
+hypothetical protein	0.00133527	0.000109519
+hypothetical protein	1.26385e-06	1.01731e-06
+L asparaginase I	0.000220929	0.00138381
+hypothetical protein	4.56663e-06	7.76755e-06
+UniRef50_B1Y2J2	1.38399e-05	3.69718e-05
+Putative NADH nitroreductase YdjA	0.00107613	0.000492425
+hypothetical protein	2.72856e-05	0.000290381
+Histidinol phosphate aminotransferase	0.00342626	0.000183723
+Iron ABC transporter, periplasmic substrate binding protein, putative	0.000238292	0.0255884
+UniRef50_I3BQN9	5.5177e-06	0.000100788
+3 hydroxybutyryl CoA dehydratase	4.79615e-05	1.13424e-05
+Phosphoribosylformylglycinamidine synthase 2	2.61242e-05	3.52299e-06
+choline dehydrogenase	3.53086e-05	5.53494e-06
+30S ribosomal protein S17	3.28206e-05	0.000162199
+DUTPase	0.0170152	0.000685628
+NMT1 THI5 like protein	0.000164706	0.000462844
+hypothetical protein	3.74758e-05	1.46359e-06
+Autoinducer 2 aldolase	0.000635096	0.000417388
+UniRef50_A0A034W5P4	8.71905e-06	1.57852e-06
+UniRef50_W8TZV3	1.78675e-05	7.25637e-05
+heavy metal transporter CzcA	1.2926e-06	3.36913e-06
+hypothetical protein	3.75248e-05	5.36406e-05
+Glycine betaine L proline transport system permease protein proW, putative	0.000813221	0.000366773
+UniRef50_T1E861	7.40354e-05	4.76789e-05
+UniRef50_Q8CS24	0.0226609	0.00216715
+Glutamyl Q tRNA synthetase	5.56918e-06	0.000437578
+UniRef50_Q0VT33	0.00132441	0.00015462
+Acetyltransferase	0.000176203	0.000785797
+formate dehydrogenase subunit alpha	0.00131114	0.000157472
+Acetylornithine aminotransferase	2.23029e-05	2.48977e-05
+PAS PAC sensor hybrid histidine kinase	1.86382e-06	1.62813e-05
+Ribonucleoside diphosphage reductase 1, beta subunit, B2	0.000599487	2.75177e-05
+N acetylmuramoyl L alanine amidase AmiC	0.00223151	0.000369139
+Alpha keto acid binding periplasmic protein TakP	0.00973367	0.000637439
+dihydroxy acid dehydratase	3.42418e-05	1.63394e-05
+PREDICTED	0.000122226	0.00028368
+Pilin glycosyl transferase A	0.000629968	0.00176546
+Transketolase	0.000119338	0.00270704
+Predicted protein	0.00111227	6.42306e-05
+Predicted protein	4.44165e-06	9.02188e-06
+CheW protein	0.0148843	0.000204056
+hypothetical protein	1.12481e-05	1.36848e-05
+Lipid A export ATP binding permease protein MsbA	0.000280819	3.70798e-06
+UniRef50_S4X152	0.00475707	0.000388679
+Branched chain amino acid transporter AzlC	3.34761e-05	1.89632e-05
+hypothetical protein	3.79848e-05	5.18632e-05
+Major facilitator superfamily MFS_1	7.88786e-05	0.00332219
+cobyrinic acid a c diamide adenosyltransferase	1.6501e-05	8.12898e-05
+Protein traU	0.000264757	2.75021e-05
+UniRef50_R1BAS7	7.04375e-06	1.09351e-05
+UniRef50_Q8DTW5	0.00386799	0.000722099
+UniRef50_E4N7W5	5.53175e-05	8.86407e-05
+UniRef50_Q8DTW1	0.00627226	0.000875662
+UniRef50_Q8DTW2	0.00384235	0.00211469
+lysophospholipase	1.14112e-06	5.60923e-06
+UniRef50_E4BFH6	2.97205e-05	6.81787e-05
+NADH	0.000334977	0.00101349
+UniRef50_Z5SAF9	1.48851e-05	1.39823e-05
+UniRef50_Q3IVP4	0.00117566	0.00015192
+UniRef50_Q3IVP3	8.50579e-05	0.000551879
+UniRef50_R1DLE7	1.21685e-05	2.4891e-06
+UniRef50_P44093	0.00342404	0.000783427
+hypothetical protein	2.58245e-06	7.7741e-07
+1 deoxy D xylulose 5 phosphate synthase	1.74934e-06	1.43092e-05
+O succinylbenzoic acid synthetase, putative	0.00754885	0.00136111
+UniRef50_UPI0003C1B3E9	6.43558e-05	5.5084e-05
+Methionine  tRNA ligase	3.1718e-06	1.59219e-06
+Transcriptional repressor NrdR	3.96956e-05	7.2066e-05
+UniRef50_A6LZR8	0.000405482	0.000944515
+Protocatechuate 3,4 dioxygenase beta chain	0.000143009	0.00162493
+UniRef50_K0S5L3	1.37198e-06	7.27178e-05
+iron hydroxamate transporter permease subunit, partial	9.97185e-06	3.25776e-05
+UniRef50_K2HGX5	2.29728e-05	4.3923e-06
+UniRef50_A3PL72	0.00706616	0.000404718
+Cell division protein FtsA	0.019159	0.00209065
+UniRef50_A0A011NNA2	0.000138892	0.000154483
+UniRef50_C4K9K2	5.47115e-05	2.81614e-05
+UniRef50_A4WYS1	5.41428e-05	3.76305e-05
+UniRef50_C6S8M1	8.94283e-05	0.00123669
+Ribosomal silencing factor RsfS	0.00134529	0.000810151
+pyruvate phosphate dikinase	3.00034e-06	5.75862e-06
+UniRef50_V4JG08	1.49056e-05	8.69995e-06
+DNA processing protein DprA	4.21399e-05	3.30175e-05
+hypothetical protein	0.000142338	2.87037e-05
+peroxiredoxin, ohr subfamily protein	1.88579e-05	0.00012388
+Putative TrmH family tRNA rRNA methyltransferase	0.0104679	0.00102746
+UniRef50_D0K0C5	0.000138617	0.00292559
+UniRef50_V6KIY8	4.79568e-05	0.000139599
+PREDICTED	4.92902e-05	6.02053e-05
+UniRef50_P37624	0.00195752	0.000368975
+UniRef50_F8JKY1	6.43515e-05	4.38445e-05
+Predicted periplasmic or secreted lipoprotein	0.000611906	0.000579257
+6 phospho alpha glucosidase 2	0.000613815	0.00147642
+MFS family transporter	0.000171272	0.000153878
+Translation initiation factor IF 3	0.0335964	0.00532907
+UniRef50_D8UHW0	4.54121e-06	3.21341e-05
+Whole genome shotgun sequence assembly, scaffold_16, strain Mel28	1.02264e-05	1.67959e-05
+Citrate synthase	1.15943e-05	6.74079e-06
+Thymidylate kinase	0.0126338	0.00166617
+hypothetical protein	7.61009e-06	3.84436e-06
+Sensor histidine kinase QseE	0.00164436	0.000475232
+UniRef50_S6AZJ1	0.00506292	0.000480555
+glycerol kinase	6.53754e-06	2.54659e-06
+UniRef50_N9ILP1	6.758e-05	0.000188188
+23S rRNA  C(5)) methyltransferase RlmD	0.000960613	0.000268685
+Dihydroorotase	0.000390813	0.000702384
+4 hydroxy tetrahydrodipicolinate synthase	6.47058e-06	0.00101888
+oxidoreductase, FAD binding protein, partial	5.23835e-05	1.28262e-05
+Cell division protein FtsK	0.000730641	6.98213e-05
+UniRef50_W1JGR6	1.6314e-05	2.62122e-05
+ABC transporter like protein	0.000244005	2.4566e-05
+hypothetical protein	1.39877e-05	2.10158e-06
+Transporter MIP family	0.00194278	0.000379668
+Adhesin like protein	0.00297529	0.000397286
+GCN5 related N acetyltransferase	0.000234667	0.000149392
+hypothetical protein	2.17427e-05	7.30519e-06
+Phosphate import ATP binding protein PstB	0.000238086	0.00281723
+Probable oligo 1,6 glucosidase 2	0.0119464	0.000479865
+UniRef50_Q3JSX2	6.64445e-05	8.79669e-05
+UniRef50_Q3JSX0	6.03134e-05	5.57271e-06
+excinuclease ABC subunit B	0.000288879	0.000799567
+UniRef50_A1B092	0.0104728	0.00119158
+UniRef50_F0QGI7	0.000246768	0.00249717
+2 oxoglutarate dehydrogenase E1, partial	3.26236e-06	4.16714e-06
+Putative pyridoxal phosphate dependent acyltransferase	0.00989891	0.00101322
+Methionyl tRNA formyltransferase	6.28657e-06	4.53549e-06
+ATP binding protein	0.000142106	1.71392e-05
+Non canonical purine NTP pyrophosphatase	5.22673e-06	0.00214917
+KHG KDPG aldolase	0.000383896	0.00135229
+UniRef50_Q3D1H7	0.00461833	0.000571587
+Urease subunit alpha	3.07122e-06	9.63312e-06
+Phosphoribosylaminoimidazole succinocarboxamide synthase	1.26107e-05	0.00137273
+UniRef50_U1VIQ4	0.000118492	0.00208714
+General secretion pathway protein G	9.57469e-07	1.33006e-05
+Dihydrolipoyl dehydrogenase 2, mitochondrial	2.36133e-05	3.52783e-05
+hypothetical protein	7.89173e-06	0.000112472
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	5.53408e-06	4.48443e-06
+hypothetical protein	6.37974e-05	3.33629e-05
+Regulator	0.000101035	4.49999e-05
+Macrolide export ATP binding permease protein MacB	2.04215e-06	7.24642e-06
+Putative IS30 family transposase	3.00754e-05	1.27865e-05
+UniRef50_F0RNU6	6.45338e-05	0.022456
+Copper exporting P type ATPase A	2.37896e-06	8.70144e-06
+UPF0502 protein YPTS_2082	0.00123696	0.00145584
+sodium	8.98171e-06	7.64325e-06
+Formate nitrite transporter family protein	0.00770158	0.00179226
+2 oxoglutarate oxidoreductase subunit KorA	6.72649e-05	0.0022298
+UniRef50_R7PY79	0.00232317	0.000512534
+Carbamoyl phosphate synthase large chain	1.22871e-05	3.69029e-05
+Uracil DNA glycosylase	0.00889376	0.00188013
+PAS PAC sensor signal transduction histidine kinase	0.000483149	0.000890838
+Xylose isomerase domain containing protein TIM barrel	0.000372014	0.000871419
+hypothetical protein	4.04424e-05	2.28234e-05
+Putative antiporter subunit mnhA2	0.0157363	0.00260344
+hypothetical protein, partial	7.92201e-05	5.85483e-05
+phospholipase C	4.73157e-06	6.4392e-06
+peptidase	4.21493e-05	5.38344e-06
+Tetratricopeptide TPR_4	2.53806e-05	1.23993e-05
+Phytoene disaturase 	4.35419e-05	1.45279e-05
+Serine type D ala D ala carboxypeptidase	0.00132012	0.000197335
+oxidoreductase	5.37672e-05	0.000392908
+Probable glycolipid permease LtaA	0.0186381	0.00208336
+UniRef50_Q31WQ9	0.000138497	0.000125573
+hypothetical protein	1.62972e-05	7.67942e-05
+Beta glucosidase like glycosyl hydrolase	0.0002842	0.000470512
+UniRef50_L1KBS6	0.000472578	7.93481e-05
+Bifunctional protein HldE	0.00218087	0.000648906
+UniRef50_Q5HR43	3.19527e-05	2.83615e-05
+DNA mismatch repair protein MutL	2.80358e-06	3.64514e-06
+dihydropyrimidine dehydrogenase subunit A	1.66147e-05	4.30715e-05
+Threonyl alanyl tRNA synthetase, SAD	9.54296e-05	0.000297055
+Ribosomal protein L11 methyltransferase	1.2251e-05	0.000191439
+Exo poly alpha D galacturonosidase	6.08356e-06	4.09667e-06
+Surfeit locus 1 family protein	7.18965e-06	6.47622e-06
+Phage integrase	0.000502692	0.00306468
+UniRef50_U4WEY2	0.000375526	4.98224e-05
+UniRef50_Q08YP9	0.000170477	4.39796e-05
+Glycerate dehydrogenase HprA	0.000211668	0.000481138
+hypothetical protein, partial	0.000488122	2.55578e-05
+GTPase like protein	0.00263203	0.000547186
+3 hydroxybutyryl CoA dehydrogenase	0.0103454	0.00110699
+Elongation factor Tu	0.0229327	0.00268326
+Anti repressor	0.0160422	0.00134303
+Transport protein, AzlD family	0.000109885	0.000458909
+Putative mating pair stabilization protein	1.5367e-05	5.95486e-06
+ABC transporter, ATP binding protein	0.00395025	0.000292649
+Hydroxyethylthiazole kinase	0.000165787	0.000116907
+Lipoprotein	0.000271605	2.8257e-05
+Delta aminolevulinic acid dehydratase	0.0113316	0.00125615
+Transglutaminase	0.000131636	0.00293004
+ABC transporter ATP binding protein	9.40742e-05	9.0121e-06
+tRNA specific 2 thiouridylase MnmA	0.00015581	0.00154794
+Transporter	0.00866083	0.00244408
+UniRef50_V6QBN8	0.000265696	0.000332537
+UniRef50_J7QD35	0.00346947	0.000304951
+UniRef50_A6LQ54	0.000138688	0.000293477
+ATP phosphoribosyltransferase	0.000644637	0.00381553
+UniRef50_A6LQ58	0.00087938	0.000360629
+Succinoglycan biosynthesis protein	0.00262157	0.000263384
+Probable zinc protease PqqL	0.00187278	0.000682188
+Glutamate 1 semialdehyde 2,1 aminomutase	7.62544e-06	0.00467851
+Sodium proline symporter	0.00191408	0.00031222
+UniRef50_F3SDM6	0.00012214	3.39835e-05
+hypothetical protein	0.00684633	0.000880244
+PRD domain protein	0.0100915	0.00104435
+UspA domain protein	0.000269959	0.00022224
+Putative structural protein 	0.000581928	0.000955158
+UniRef50_Q83LD5	0.000292072	1.76756e-05
+Gluconolactonase	0.000875112	0.000351406
+hypothetical protein	3.31227e-05	8.81505e-06
+Extracellular solute binding protein, family 5	0.0129945	0.00215848
+Cation diffusion facilitator family transporter	0.000332183	7.75344e-05
+von Willebrand factor, type A	0.000203456	6.89594e-06
+5 deoxynucleotidase VC_1978	0.000558041	0.000157517
+malto oligosyltrehalose synthase, partial	6.58357e-06	2.73307e-06
+UniRef50_F8G1E1	0.00344666	0.000155876
+ATPase	6.05791e-06	4.87767e-06
+UniRef50_R7F196	1.27967e-05	0.000270525
+hypothetical protein	4.19343e-05	4.16454e-05
+Aspartokinase	0.000114472	0.00128412
+hypothetical protein	0.00130887	5.16655e-05
+hypothetical protein, partial	1.20986e-05	9.53839e-06
+4Fe 4S binding domain protein	0.00729849	0.0022626
+hypothetical protein	1.6277e-06	1.5595e-06
+Urease subunit gamma	5.28681e-05	0.000106571
+UniRef50_D2PVS1	1.80164e-06	2.11737e-06
+30S ribosomal protein S1	0.00963337	0.0019035
+hypothetical protein	5.24428e-05	6.94226e-05
+Probable cell wall amidase LytH	0.0127405	0.00200477
+L fucose proton symporter	0.000412895	0.000108044
+Amino acid ABC transporter, permease amino acid binding protein, putative	0.00928935	0.00100616
+hypothetical protein	0.000111701	1.31831e-05
+UniRef50_B4RL88	0.000259883	0.00238857
+UniRef50_N0DYS1	1.2363e-05	0.000159476
+glycosyl transferase family 1	2.30316e-05	3.24637e-06
+SsrA binding protein, partial	3.47722e-05	4.35839e-05
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.12644e-05	1.14011e-05
+UniRef50_U5MTV6	0.000587783	0.000768714
+Proline specific permease	0.00394775	0.00102746
+RNA polymerase sigma 35 factor	0.000492599	0.00123652
+Inner membrane protein alx	0.00202104	0.00358367
+hypothetical protein, partial	8.64574e-05	5.28706e-06
+hypothetical protein	2.29203e-05	1.38185e-05
+Nucleoside diphosphate kinase 1	1.27446e-05	1.62527e-05
+hypothetical protein	2.45923e-05	0.000732367
+Arginine N succinyltransferase subunit alpha	0.000555301	0.000154535
+UniRef50_F0YH85	7.07042e-05	8.32665e-05
+UniRef50_I2JHH7	9.79351e-06	6.67622e-06
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000104953	0.00098162
+Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC	0.000371186	0.000851155
+UniRef50_Q38YR5	1.04322e-05	0.00212545
+UniRef50_A0A014QHI0	5.55025e-05	0.000424128
+AMP dependent synthetase	1.08586e-05	5.90572e-06
+UniRef50_A7AI53	3.73781e-05	0.000168209
+PREDICTED	5.09388e-05	8.08309e-05
+UniRef50_A0QI67	4.15046e-05	0.000161191
+hypothetical protein	1.4675e-05	8.9776e-05
+ABC transporter ATPase, partial	1.32197e-05	2.18994e-05
+Formate C acetyltransferase 3	0.0028353	0.000208235
+hypothetical protein	8.6456e-05	0.000940445
+40 residue YVTN family beta propeller repeat protein	0.00871382	0.00183516
+UniRef50_C5Z6N8	7.44637e-05	0.000441294
+FO synthase subunit 1	0.00211776	0.000218433
+Probable translation initiation factor IF 2	0.00212396	0.000173276
+Cell envelope like function transcriptional attenuator common domain protein	8.12324e-07	3.7852e-05
+tRNA specific 2 thiouridylase MnmA	0.000101066	0.00430986
+Expressed protein 	6.50527e-05	0.000160772
+NAD dependent epimerase dehydratase	0.0117376	0.000882287
+Amidase	0.000249142	0.000586226
+GTP binding protein LepA	2.5973e-05	3.25151e-05
+ABC transporter, ATP binding protein	0.0172466	0.00170141
+UniRef50_A7FBL3	0.000263484	0.00156758
+Pyruvate kinase I	0.00230872	0.000907561
+Acetolactate synthase, chloroplastic	8.55283e-06	6.65337e-06
+Phospho 2 dehydro 3 deoxyheptonate aldolase	3.69652e-05	2.68641e-06
+UniRef50_R7PTS8	0.00094613	9.86647e-05
+UniRef50_A0A032AQX4	5.93614e-05	3.46519e-05
+UniRef50_Q2NBB9	1.23974e-05	9.70101e-06
+UvrABC system protein A	0.0116474	0.00486979
+hypothetical protein	6.7209e-06	1.34026e-05
+UniRef50_E3A6L5	0.00263063	0.000299776
+Arabinose transport protein	3.93315e-05	5.63318e-05
+UniRef50_A4WT93	0.00860204	0.00072151
+Predicted protein	5.86391e-06	1.61434e-06
+UniRef50_C6SP54	0.00477052	0.00015427
+malonyl CoA acyl carrier protein transacylase, partial	9.8376e-05	0.000326935
+Ribose ABC transporter, periplasmic ribose binding protein RbsB	0.0110239	0.000356959
+3 oxoacyl [acyl carrier protein] synthase 3	0.0109014	0.00314008
+UniRef50_Q8XIK5	7.47886e-05	0.000783171
+DNA polymerase III subunit gamma tau	2.71939e-06	5.73605e-06
+Putrescine importer PuuP	0.000178935	0.000257175
+Ribonuclease 3	1.1854e-05	0.00215773
+Amino acid ABC transporter, amino acid binding protein	0.0081149	0.00231629
+mannose 1 phosphate guanylyltransferase	2.06823e-05	5.26937e-06
+Phosphoenolpyruvate sugar phosphotransferase	0.000151802	0.00220828
+hypothetical protein, partial	5.21682e-05	5.31369e-05
+UniRef50_A4VS44	0.000420098	0.000297259
+spermidine putrescine ABC transporter substrate binding protein	2.37342e-05	0.000101279
+UniRef50_C3ZSQ3	0.000167716	4.81543e-05
+Outer membrane protein assembly factor BamA	0.0102256	0.00166725
+UniRef50_B9E6Y5	0.0147151	0.00256237
+hypothetical protein	2.724e-05	0.000139569
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.71083e-06	1.45145e-05
+UniRef50_A4WW20	0.00017597	0.00164939
+UniRef50_A4WW27	0.00776267	0.0012627
+Glycerol 3 phosphate transporter	0.00135272	6.70036e-05
+Dihydroxyacetone kinase, L subunit	0.0226198	0.00222413
+hypothetical protein	3.58819e-05	2.18144e-05
+ABC transporter, ATP binding protein	0.000253999	0.00346679
+Prephenate dehydrogenase	0.00796991	0.00158979
+PEBP family protein	0.0260029	0.00160291
+UniRef50_K9WCH6	2.87773e-05	0.000204388
+mannose 1 phosphate guanyltransferase	2.04913e-05	3.69376e-06
+Riboflavin biosynthesis protein RibBA	9.03813e-06	0.00130176
+PREDICTED	6.90914e-05	0.00102611
+UniRef50_Q2C9Y7	0.000337581	2.30714e-05
+hypothetical protein	0.000129247	1.02321e-05
+plasmid pRiA4b ORF 3 family protein	7.42139e-06	5.82218e-06
+hypothetical protein	1.61437e-05	1.35071e-05
+xanthine dehydrogenase	4.43636e-05	1.69303e-05
+ATPase involved in DNA repair, SbcC	0.0029084	0.000593283
+Probable nitrilase C965.09	0.000270693	0.000121167
+UniRef50_E8PEL6	0.000189427	0.000888467
+Phosphoesterase RecJ domain protein	0.000119203	0.00263031
+Sodium hydrogen exchanger family, putative	0.00475684	0.000258393
+Peroxiredoxin HYR1	4.08949e-05	3.56404e-05
+UniRef50_C0BFU0	4.26763e-05	4.47495e-06
+glycine dehydrogenase	1.17162e-05	1.49168e-06
+hypothetical protein, partial	2.77363e-05	3.57129e-05
+Nitrogen regulation protein NR	0.0026113	0.000465951
+Type II secretion system protein N	9.72017e-05	3.42741e-05
+Inner membrane translocator	0.0106544	0.00178944
+UniRef50_R7PXT2	0.00294287	0.00025319
+hypothetical protein STEHIDRAFT_62958	2.81378e-05	0.000204035
+Diguanylate cyclase	0.000487537	0.00090629
+polar amino acid ABC transporter permease	3.34279e-06	1.99099e-06
+UniRef50_UPI00029D9246	3.51813e-05	2.01035e-05
+UniRef50_H8MF76	7.87781e-06	0.000469244
+DNA binding protein	0.000364493	0.00240793
+Bifunctional protein GlmU	3.6857e-06	2.55319e-06
+UniRef50_F2AC19	0.000208748	5.38034e-05
+ATP dependent 6 phosphofructokinase	1.63144e-06	1.46844e-06
+UniRef50_P0AD05	0.00625298	0.0017704
+UniRef50_A1B1Z9	0.0101399	0.002184
+Enolase	0.00222312	0.000417959
+UniRef50_F9NSM8	0.000495044	0.00188288
+Glutathione biosynthesis bifunctional protein GshAB	0.0049052	0.000916468
+Predicted protein	0.000473037	8.78581e-05
+ABC transporter related	0.000427308	0.000431578
+Glutamine ABC transporter, permease substrate binding protein	0.00599675	0.000806259
+argininosuccinate lyase	4.66103e-06	5.323e-06
+Fatty acid desaturase	0.000307932	0.00376453
+UniRef50_Q5GWS2	0.000400787	0.000125304
+Phosphatase yihX	6.20919e-05	9.02627e-05
+UniRef50_O31711	0.00286199	0.000168769
+UniRef50_O31716	0.00121971	0.00260413
+Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial	0.000497775	0.00151424
+ABC type transport system, involved in lipoprotein release, permease component	0.000263481	0.000711503
+AMP dependent synthetase and ligase	0.000629565	6.32733e-05
+4 hydroxy tetrahydrodipicolinate reductase	0.0155922	0.00258546
+Exodeoxyribonuclease V, gamma subunit	0.000172242	0.0017405
+Pseudolysin	0.00026006	6.52032e-05
+30S ribosomal protein S3	0.000279351	0.000531511
+Dihydroxy acid dehydratase	1.97148e-06	4.25117e-06
+PTS system, mannose fructose sorbose specific IID component	0.000936165	0.00162504
+PpiC type peptidyl prolyl cis trans isomerase	0.00892513	0.000986528
+Biotin dependent carboxylase like protein	4.19516e-06	3.40526e-05
+cold shock protein	1.94637e-05	1.72465e-05
+Sodium proline symporter	0.0211051	0.00371496
+hypothetical protein	3.7519e-06	7.23486e-06
+serine protease	1.61426e-05	1.18133e-05
+UniRef50_B7LN63	0.00418705	0.000396087
+alpha amylase	1.7865e-05	1.76247e-05
+UniRef50_Q3AZ12	0.000152416	1.04786e-05
+Phosphoserine phosphatase	0.000222389	0.000554103
+Molybdate ABC transporter, permease protein	0.00053504	0.000147188
+TRAP transporter solute receptor, TAXI family	6.51178e-05	3.95099e-05
+PREDICTED	6.82954e-06	2.62592e-05
+D alanine  D alanine ligase	5.64089e-06	0.000242662
+Mannitol 1 phosphate 5 dehydrogenase	0.00367247	0.000334631
+Ion transport 2 domain protein	0.000374105	0.000680665
+hypothetical protein	1.75805e-05	1.40786e-05
+membrane protein	3.12198e-05	0.000455565
+PREDICTED	5.073e-05	1.67755e-06
+hypothetical protein	6.67656e-06	7.73067e-06
+hypothetical protein	3.20519e-05	1.8719e-05
+Acyltransferase	0.000126206	0.000954391
+hypothetical protein	3.32686e-05	6.08934e-05
+Putative Lon protease homolog	0.00326784	5.21096e-05
+UniRef50_A1T5E9	3.41598e-05	7.61187e-06
+resolvase	6.50502e-05	0.000111385
+UniRef50_R7NTI0	5.7391e-06	6.03478e-06
+UniRef50_E6S0A0	1.84355e-05	1.9531e-05
+UniRef50_V6UAJ9	0.000370151	2.5172e-06
+UniRef50_Q8CU26	0.00292905	0.000706522
+hypothetical protein	0.000361582	0.000230347
+UniRef50_W4XFJ9	6.02716e-07	1.04665e-07
+hypothetical protein	8.41294e-05	3.38032e-05
+UniRef50_A6LT54	0.000166334	0.000553305
+UniRef50_A6LT50	0.000211555	0.00198473
+ABC polysaccharide export transporter, ATPase subunit	0.016525	0.00107236
+UniRef50_A6LT52	0.000248874	0.000255741
+UniRef50_A6LT53	0.000440569	0.000483425
+UniRef50_Q6ZD36	9.58621e-06	7.04183e-05
+Cell division ATP binding protein FtsE	0.00233	0.000136038
+DEAD DEAH box helicase domain protein	0.000611392	0.000498871
+Isoleucine  tRNA ligase	0.000659188	0.000169693
+ParB family protein	0.000531472	0.000169613
+cyclohexadienyl dehydrogenase, partial	4.02869e-05	7.42427e-05
+hypothetical protein	9.68709e-05	9.31745e-06
+preprotein translocase subunit SecB	3.07646e-05	3.03243e-05
+Exodeoxyribonuclease	0.00435444	0.0030272
+4 alpha glucanotransferase	9.63272e-06	0.000301248
+UniRef50_A5N248	0.00112795	0.00110185
+UniRef50_W1GUL6	3.21708e-05	1.15928e-05
+Terminase	3.81166e-06	1.63927e-05
+Holo [acyl carrier protein] synthase	7.97346e-05	0.000344003
+UniRef50_L8UK30	0.000627109	0.000349617
+NAD dependent dihydropyrimidine dehydrogenase subunit PreA	0.00147533	0.00150843
+Asparaginase	0.00445344	0.00415194
+hypothetical protein	4.53421e-05	1.13241e-05
+Succinate dehydrogenase subunit A like protein	0.000153561	0.000117035
+Radical SAM superfamily protein	0.00010441	0.00186542
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.36134e-05	3.88556e-06
+UniRef50_W7VMR8	6.81294e-05	0.000145849
+Phage terminase large subunit	4.75819e-06	8.32453e-06
+FMN binding domain protein	0.000133728	0.00075769
+UniRef50_U9XFZ5	0.00011575	6.71016e-05
+UniRef50_N2GFP3	0.000209906	0.000266243
+UniRef50_I0C1E1	0.00466022	0.00097352
+L carnitine CoA transferase	0.00215575	0.000503498
+Flagellar P ring protein	0.00841193	0.000737422
+UniRef50_Q92U29	9.19873e-05	0.000198565
+Thymidylate synthase	0.00127427	0.00816123
+hypothetical protein	3.17111e-06	5.2765e-06
+UniRef50_F0MG01	0.000179333	0.00132414
+UniRef50_W7TC28	1.31316e-05	1.10282e-05
+Glutamyl tRNA amidotransferase subunit E	0.00245194	0.000107378
+hypothetical protein	2.66738e-05	9.53652e-05
+Sulfate ABC transporter periplasmic sulfate binding protein	0.000282635	0.000138131
+UniRef50_Q1RFI5	0.00052861	0.000598566
+UDP N acetylenolpyruvoylglucosamine reductase	4.41237e-06	3.02198e-05
+UniRef50_B9AGR4	0.00115885	0.000130602
+UniRef50_G7ELT9	2.2389e-05	5.96051e-06
+Urea ABC transporter, urea binding protein	0.00622537	0.000786087
+UniRef50_D4HC81	0.00027745	0.00299692
+UniRef50_C0XT97	1.22108e-05	0.000946832
+UniRef50_Q55587	3.58671e-06	9.36803e-06
+UniRef50_F0VN90	7.32533e-06	6.42505e-06
+Major facilitator superfamily protein	2.70602e-05	3.1965e-05
+Glutathionyl hydroquinone reductase YqjG	0.0257575	0.00419751
+AsnC family transcriptional regulator	0.000121063	4.31045e-05
+UniRef50_I0LIW9	1.73914e-05	2.16209e-06
+hypothetical protein, partial	1.35431e-05	8.10792e-06
+Aspartate carbamoyltransferase	0.0109799	0.000617749
+UniRef50_V8FVT8	8.79482e-05	0.000801445
+Carbonic anhydrase, family 3	5.34806e-05	6.78304e-05
+UniRef50_A3PI07	0.00224495	0.000906918
+UniRef50_A7MMQ6	7.50584e-05	4.07789e-05
+Putative membrane protein	0.000112538	1.10848e-05
+hypothetical protein	1.8437e-05	1.96826e-05
+SAM dependent methyltransferase	1.15046e-05	1.50856e-05
+Chemotaxis response regulator protein glutamate methylesterase 2	8.93685e-05	0.000176432
+Cell division protein FtsW	0.00427559	0.00226221
+PTS sugar transporter subunit IIA	1.92751e-05	3.44723e-05
+Cell division cycle protein 48 homolog MJ1156	0.00178863	0.000182817
+sn glycerol 3 phosphate binding periplasmic protein UgpB	1.3854e-05	3.00484e-06
+hypothetical protein	7.72653e-06	2.91189e-06
+V type ATP synthase subunit I	0.00253597	0.000257305
+DNA topoisomerase 4 subunit B	0.025126	0.00704152
+Bifunctional coenzyme PQQ synthesis protein C D	0.000111096	1.10391e-05
+3 hydroxyacyl CoA dehydrogenase	4.89881e-05	0.00436173
+Fumarate hydratase 1, mitochondrial	1.17333e-05	1.729e-05
+Protease	0.000130573	0.00437798
+Putative transcriptional regulator	0.000154273	0.000168212
+Alpha glucoside transport system permease protein AglG	0.00624506	0.000251048
+hypothetical protein, partial	9.3623e-05	5.17564e-05
+UniRef50_N6V2G4	1.79644e-06	8.08549e-06
+50S ribosomal protein L4	0.000325168	0.000175704
+UniRef50_V4Z4F4	2.26835e-06	9.28406e-07
+UniRef50_R5NSU1	0.000427717	0.000128901
+Terminase small subunit family protein	0.000120773	1.44339e-05
+UPF0042 nucleotide binding protein SA0720	0.00948922	0.000100095
+ABC transporter, ATP binding protein	0.00371349	0.00105362
+hypothetical protein	1.61024e-05	0.000629945
+UniRef50_C7PA11	6.30452e-06	0.000386271
+Ribosomal RNA small subunit methyltransferase H	9.39902e-06	1.72027e-05
+UniRef50_F3U3C4	7.36404e-05	7.79865e-06
+Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial	8.90638e-06	0.00390152
+Electron transfer flavoprotein FAD binding domain protein	0.000249295	0.00302851
+Elongation factor G, chloroplastic	1.84206e-05	5.14511e-05
+UniRef50_A5IPV1	0.0072752	0.00317641
+Threonine  tRNA ligase	2.82194e-05	1.63436e-06
+Enolase 1	3.24214e-06	4.24165e-05
+hypothetical protein	0.00303378	0.000235085
+UniRef50_T0FGA8	1.31705e-05	1.18018e-05
+ATP dependent helicase HrpA	0.000253952	0.00163603
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	2.00685e-06	1.34581e-05
+VirB4 like protein	4.41665e-05	0.00175574
+SsrA binding protein	0.000466598	0.000598162
+hypothetical protein	0.000112857	1.4349e-05
+UniRef50_G7M5A0	0.000472613	0.000526435
+Arginine decarboxylase	0.000710961	0.000708737
+Very short patch repair protein	0.000552206	0.000240324
+5,10 methenyltetrahydromethanopterin hydrogenase	0.00255433	0.000460698
+Acyltransferase	0.0004147	0.000304128
+ISSpo9, transposase	7.12693e-05	3.92194e-05
+PREDICTED	2.10675e-06	7.03753e-06
+3 isopropylmalate dehydrogenase	1.76011e-05	1.24284e-05
+Putative acetylornithine succinylornithine aminotransferase family protein	2.34948e-06	1.90796e-06
+UniRef50_R5BW02	0.000530922	0.0011844
+TRAP transporter solute receptor, TAXI family	1.63122e-05	6.55407e-06
+Serine hydroxymethyltransferase	7.60227e-05	4.84108e-05
+Phage shock protein A homolog	0.000157021	0.0103869
+Acyl CoA dehydrogenase	0.000455755	0.00194911
+UniRef50_C3MFT1	0.000541189	3.00465e-05
+Flagellar protein FliS	0.00299774	0.000363501
+branched chain amino acid ABC transporter permease	3.92292e-05	0.000265426
+hypothetical protein	4.58412e-06	8.7004e-06
+UniRef50_Q21ET8	1.7307e-05	9.2032e-06
+Teichoic acids export ATP binding protein TagH	5.05217e-06	0.000415733
+Protein SseB	0.00466491	0.000597505
+UniRef50_G2DDB6	3.41894e-05	6.26629e-06
+Rhamnulokinase	0.00442036	0.00046765
+Nitrite reductase H), large subunit	0.000533673	0.000200119
+hypothetical protein	3.71332e-05	1.38689e-05
+Monosaccharide binding protein	9.19514e-06	0.00261561
+Transcriptional regulator, AraC family	0.0253549	0.00464134
+PREDICTED	8.77566e-05	2.60137e-05
+UniRef50_E0N7V9	0.000557815	0.00430836
+hypothetical protein, partial	6.1739e-06	1.22058e-05
+hypothetical protein	6.96755e-07	6.25048e-07
+TraU family protein	0.000102799	8.34065e-06
+Electron transfer flavoprotein ubiquinone oxidoreductase containing protein	2.36747e-06	4.36197e-06
+phosphoenolpyruvate protein phosphotransferase, partial	1.9252e-06	8.78457e-05
+Coproporphyrinogen III oxidase	0.00227541	0.000817902
+Histidinol dehydrogenase	0.00524476	0.00155508
+UniRef50_F6G400	8.84878e-05	2.03837e-05
+UniRef50_U5ACW9	0.000257588	6.48141e-05
+unnamed protein product	5.00557e-06	1.17506e-05
+Phage terminase, large subunit	1.35936e-05	9.16563e-05
+Coenzyme F390 synthetase like protein	9.62484e-05	0.000869678
+30S ribosomal protein S13	0.000750722	0.000203594
+hypothetical protein	6.00789e-06	1.59109e-05
+hypothetical protein	7.12082e-06	0.000411578
+hypothetical protein	6.22256e-06	1.68781e-06
+UniRef50_K1V4W8	0.00012157	9.52775e-06
+Glutamate synthase  small chain	0.00182666	0.000153724
+tRNA modification GTPase MnmE	0.00449979	0.00664836
+hypothetical protein	0.000104785	1.41598e-05
+Helicase	0.00276088	0.000392698
+UniRef50_A4HI31	5.78684e-06	7.41958e-06
+Two component, sigma54 specific, transcriptional regulator, Fis family	0.00273668	0.00070783
+nickel ABC transporter permease	8.01643e-05	2.3017e-05
+hypothetical protein	2.91424e-06	4.69612e-05
+cwf21 domain containing protein, partial	4.54612e-05	1.28038e-05
+UniRef50_Q5M4T5	0.00679179	0.00292222
+Iron hydroxamate import system permease protein FhuB	0.00233349	0.00070161
+UniRef50_M1MMU8	0.000177458	0.00152198
+UniRef50_J7RCA7	0.00486161	0.000183609
+3 oxoacyl [acyl carrier protein] reductase	0.0142713	0.00108766
+UPF0718 protein YraQ	0.00199334	0.000429609
+Transcriptional regulator ArsR family	0.00361408	0.000130123
+Fructokinase	0.0043247	0.00182656
+Probable cell wall hydrolase LytN	0.00563282	0.00048203
+Phosphate import ATP binding protein PstB	2.57204e-05	9.03931e-05
+Homoserine dehydrogenase	0.0227461	0.00487879
+Nickel dependent hydrogenase, b type cytochrome subunit	0.000314134	0.0028743
+3 hydroxybutyryl CoA dehydrogenase	8.27573e-06	0.000143515
+hypothetical protein	4.0989e-07	1.42188e-06
+Cell wall binding repeat domain protein	0.000225872	0.000450452
+UniRef50_S9QXB6	9.55156e-05	1.74771e-05
+UniRef50_M9VCS0	8.39273e-05	0.00144709
+hypothetical protein	8.03975e-06	6.40595e-06
+Protein BglB	0.00305725	0.00144123
+UniRef50_A0A024HX75	1.83388e-05	5.02347e-06
+Phosphate acetyltransferase	3.56332e-06	3.81096e-06
+ATPase of the AAA+ class	0.000115908	2.31116e-05
+Nitrogen regulation protein NIFR3	3.15515e-05	3.16196e-05
+hypothetical protein	2.77199e-06	3.45554e-06
+hypothetical protein	2.16315e-05	1.08794e-05
+multidrug ABC transporter permease	0.000202826	2.54845e-06
+UniRef50_D3NVZ1	4.79582e-05	8.84544e-06
+branched chain amino acid aminotransferase	6.59908e-05	3.12341e-05
+UniRef50_A0A022S140	3.92861e-05	0.000165345
+UniRef50_B0V541	0.000196429	0.00376167
+Arabinose efflux permease family protein	2.64302e-06	3.0498e-06
+Ribosomal RNA small subunit methyltransferase H	5.77139e-06	3.46625e-06
+ATP synthase gamma chain	0.000244466	0.000747944
+UniRef50_M1LPW4	0.000580024	0.000923226
+hypothetical protein	9.83288e-05	1.87504e-05
+UniRef50_A6LYK1	0.000140229	0.000295717
+MULTISPECIES	2.38374e-05	7.35457e-06
+UniRef50_B9ISU4	1.72756e-05	1.80531e-05
+Amino acid peptide transporter	0.000151358	0.00339229
+Hydroxypyruvate isomerase	0.000133375	0.000233815
+Diaminohydroxyphosphoribosylaminopyrimidine deaminase	9.72684e-05	0.000575003
+DNA topology modulation protein	1.65465e-05	8.53082e-06
+Fusion of IS1381 orf A and B	1.59151e-05	0.00113314
+Indole 3 glycerol phosphate synthase	0.000895725	0.00115692
+UniRef50_E5U188	0.000226763	4.51833e-05
+HD domain protein	1.64561e-05	1.19057e-05
+Na H(+) antiporter subunit E1	0.0149719	0.00136886
+side tail fiber protein	7.32565e-06	9.08333e-05
+hypothetical protein	9.1943e-05	8.26696e-06
+hypothetical protein	3.60059e-06	6.48836e-06
+Transcriptional regulatory protein CreB	0.00176353	0.000271253
+UPF0176 protein X964_08780	0.000347884	0.00360119
+hypothetical protein	0.000636019	6.21895e-05
+Transcriptional regulator	0.00107273	0.000298112
+hypothetical protein, partial	5.54188e-05	4.44458e-05
+UniRef50_M3HZS8	2.73448e-05	4.07452e-06
+iron hydroxamate transporter permease subunit, partial	1.63322e-05	1.763e-05
+Transcriptional regulator, PucR family	0.000187509	0.000691555
+hypothetical protein	7.51773e-06	0.000126586
+flagellar P ring protein FlgI	2.01425e-05	1.17419e-05
+UniRef50_Q6A615	8.25548e-05	0.00231472
+L ribulose 5 phosphate 3 epimerase UlaE	6.36099e-05	1.33331e-05
+UniRef50_B9KN41	0.00666306	0.000651171
+MULTISPECIES	6.36139e-05	1.46978e-05
+peptide ABC transporter ATP binding protein	4.97292e-05	8.62742e-06
+LPXTG motif cell wall anchor domain protein 	0.0305959	0.000487961
+UniRef50_R6A8H0	0.00159362	0.000343004
+hypothetical protein	2.25586e-05	2.25935e-06
+hypothetical protein	0.000115114	7.33726e-06
+macrolide transporter	6.9365e-06	2.47221e-06
+hypothetical protein	2.95606e-05	2.27513e-05
+PREDICTED	1.1446e-05	1.70687e-05
+Protein ViaA	0.00207942	0.000218799
+UniRef50_R5J6V4	0.000289689	0.000412115
+Right origin binding protein	0.00409287	0.000103558
+Acetyltransferase	0.00019993	0.00156661
+hypothetical protein	1.94428e-05	1.72605e-05
+Ribosome recycling factor	0.0154235	0.000855094
+Putative ABC transporter ATP binding protein AF_1841	4.91665e-05	1.39407e-05
+UniRef50_D4HE05	0.000747274	0.00398481
+UniRef50_A6LZK4	0.00130688	0.000909151
+NADH dehydrogenase subunit D	2.18182e-05	1.6121e-05
+hypothetical protein M271_24355	2.59972e-05	1.0523e-05
+Putative Mg chelatase like protein	7.09877e-06	6.4949e-06
+UniRef50_M4YVT1	7.0017e-05	9.78049e-05
+L lactate permease	0.000397525	0.00453376
+Putative tRNA binding protein YtpR	0.00830257	0.00172149
+Helicase	0.00226391	0.000294344
+Exonuclease SbcD	0.00057762	0.000106887
+Adhesin like protein	0.00253442	0.000261705
+Nuclease SbcCD subunit C	0.000492772	8.03389e-05
+UniRef50_A3PFK8	0.000996685	0.000169928
+hypothetical protein	4.09132e-06	3.34355e-06
+UniRef50_E9B5X1	7.09064e-07	2.90549e-06
+Sulfur transfer complex subunit TusD	0.000111098	0.000100781
+hypothetical protein	1.84785e-05	6.89518e-06
+Respiratory nitrate reductase subunit beta	2.52696e-05	5.389e-05
+Probable family 20 transposase	0.00238402	0.000448764
+PREDICTED	1.66325e-06	6.94234e-06
+Ribose transport permease protein, putative	0.000603537	0.000433866
+Inner membrane transport protein YnfM	0.00323303	0.000314055
+UniRef50_UPI00027FC17F	9.3903e-06	0.000118361
+Transposase	0.000372211	0.000112879
+hypothetical protein, partial	1.07748e-05	3.97436e-06
+UvrD REP helicase	0.00010166	0.00267542
+Predicted ATPase	0.002052	0.000816119
+UniRef50_Q2N696	9.39342e-05	0.000326083
+Acyl CoA dehydrogenase	0.00020491	0.00345344
+membrane protein, partial	0.000121182	0.000114842
+UniRef50_U3SV04	0.00287391	0.0011209
+UniRef50_C2ESX2	0.000355819	0.000119823
+ABC transporter	0.00702449	0.00036882
+Fibrillarin like rRNA tRNA 2 O methyltransferase	0.00121544	0.000146707
+HAD family hydrolase	0.000387685	0.000204988
+hypothetical protein	1.69818e-05	3.7402e-05
+UniRef50_N5R5Q8	0.000333216	0.000311753
+1 deoxy D xylulose 5 phosphate synthase	0.000781094	0.00223262
+hypothetical protein	1.16242e-05	2.46763e-06
+UniRef50_F7YLR6	1.15999e-05	4.8715e-05
+2  3 dephospho CoA	0.00992907	0.000597623
+Oxidoreductase, aldo keto reductase family	0.000254733	0.00226541
+magnesium chelatase	8.79032e-06	1.38718e-05
+Ferric alcaligin siderophore receptor	6.91538e-05	0.0019426
+Transcriptional regulatory protein UhpA	0.00159921	0.00172168
+UniRef50_E4D778	5.76548e-05	0.00067135
+UniRef50_R7IGH5	2.18871e-05	4.24e-05
+UniRef50_Q9RSP4	0.000489234	0.0245382
+hypothetical protein SMAC_09973	4.89362e-05	2.55094e-05
+ATP synthase gamma chain	0.0172763	0.00155586
+UniRef50_Q6A674	0.0004121	0.00526787
+UPF0214 protein YfeW	0.00242265	0.000329653
+UniRef50_P32134	0.00364013	0.000306523
+Bifunctional protein PyrR	0.00132531	0.0025909
+UniRef50_F0KEU9	0.000786117	0.00314896
+Carbamoyl phosphate synthase arginine specific large chain	1.54356e-05	6.12621e-06
+NAD NADP dependent betaine aldehyde dehydrogenase	0.00145715	0.000239593
+UniRef50_P32139	0.00173018	0.000480961
+phenylacetic acid degradation protein	1.50413e-05	1.64064e-05
+Plasmid pRiA4b ORF 3 like protein	0.000575503	6.56205e-05
+DGPF domain protein	3.70237e-05	1.39677e-05
+ABC transporter related protein	0.000468674	0.000531755
+Phosphatidylglycerol lysyltransferase	0.00252776	0.000394076
+Phosphodiesterase, MJ0936 family	0.00147742	0.00368183
+Transpeptidase transglycosylase component	3.52653e-05	0.0134779
+iron ABC transporter ATP binding protein	2.27419e-05	1.25964e-05
+Chorismate synthase	8.1363e-06	2.7137e-05
+UniRef50_Q9K411	4.12227e-06	0.000287441
+UniRef50_F2TZ40	2.90971e-05	5.30874e-06
+TonB dependent receptor	0.000147061	0.00387418
+UniRef50_C5N344	0.00920476	0.000987663
+sugar ABC transporter ATP binding protein	1.56573e-05	2.75883e-05
+UniRef50_C5N340	0.0106028	0.00256692
+hypothetical protein, partial	1.20171e-05	1.29103e-05
+UniRef50_P0AF43	0.00259716	0.000276493
+Cytochrome c oxidase subunit 3 	1.68946e-05	2.81008e-05
+DNA binding transcriptional activator	0.00185305	0.000258747
+Chemotactic signal response protein	0.000122917	3.8759e-05
+Phosphoribosylaminoimidazole succinocarboxamide synthase	1.84567e-05	0.00034477
+TRAP dicarboxylate transporter, DctM subunit	5.35327e-06	2.55564e-06
+Phytochrome sensor diguanylate cyclase phosphodiesterase	0.0232695	0.00261776
+UniRef50_I0JA88	0.00850269	0.00101785
+Hypothetical 18.9 kDa protein	0.000160012	0.00169447
+CBS domain protein	0.000955987	0.000151408
+UniRef50_A4WNP3	0.000265147	0.000286686
+Two component sensor	0.000107753	0.000333473
+Transcription repair coupling factor	7.00954e-05	0.0176385
+UniRef50_I3WYQ6	0.000526951	3.12301e-05
+LPXTG motif protein cell wall anchor domain protein	2.72551e-06	4.14477e-06
+hypothetical protein	2.0783e-05	1.1438e-05
+Gamma enolase	3.90952e-06	2.7157e-05
+type I restriction enzyme EcoKI subunit R	2.17165e-05	3.71204e-05
+UniRef50_UPI0003C15755	5.14549e-05	4.84208e-06
+UniRef50_H9K7J8	4.66331e-05	4.16902e-05
+Thioredoxin C 3	0.000643086	0.00242226
+UniRef50_Q3J3B6	0.0100639	0.00167523
+Release factor glutamine methyltransferase	0.000242703	0.00284309
+UniRef50_Q2YZ40	0.0266634	0.00178941
+single stranded DNA binding protein	2.06041e-05	0.000621607
+Putative potassium transporting ATPase B chain	0.000349426	0.0010147
+Catalase	1.84136e-05	0.00215739
+Zinc transporter ZupT	0.00511162	0.000251498
+Methanogenesis marker protein 17	0.00313362	0.000551544
+hypothetical protein, partial	3.22385e-05	3.39801e-05
+Nucleoside diphosphate kinase	0.0208565	0.0169355
+UniRef50_Q6F945	0.000118922	0.00358364
+Acetylornithine acetyl lysine aminotransferase	0.000319699	0.0222338
+Succinate dehydrogenase  cytochrome b subunit, b558 family	0.000183906	0.0018184
+UniRef50_E3L9A9	1.3575e-05	0.000473694
+Ribosomal RNA small subunit methyltransferase E	7.59908e-05	2.10946e-05
+UniRef50_S6AEF9	1.84023e-06	5.89591e-06
+GTPase HflX	0.000611571	0.00127879
+UDP N acetylmuramoylalanyl D glutamate  2, 6 diaminopimelate ligase	0.0207981	0.00248552
+Enoyl CoA hydratase carnithine racemase	0.000161802	0.00282397
+Major facilitator superfamily metabolite H symporter	0.000721081	0.000857411
+hypothetical protein	6.36643e-06	2.10624e-05
+UPF0313 protein CLB_0243	0.000582493	0.000488566
+Chaperone protein YcdY	0.00840493	0.00108802
+UniRef50_B6IPB9	0.000210774	0.000150093
+hypothetical protein	2.82364e-05	1.3502e-05
+Transposase like protein	0.000694098	0.0159495
+Methylmalonyl CoA carboxyltransferase 5S subunit	0.000194691	0.00376454
+DNA binding protein	8.02395e-05	2.24283e-05
+hypothetical protein	3.77965e-06	2.79544e-05
+Binding protein dependent transport systems inner membrane component	0.00601669	0.00012249
+Ribosomal RNA processing protein	1.5139e-06	1.53747e-05
+hypothetical protein	0.000100473	0.00375763
+CRISPR associated protein Csn1	1.19157e-05	6.78942e-05
+CTP synthase	6.67658e-06	7.37021e-05
+Teichoic acid translocation ATP binding protein, putative	0.00902032	0.000844771
+Thioesterase like protein	0.00515111	0.000629531
+D isomer specific 2 hydroxyacid dehydrogenase	0.00100766	0.00111955
+membrane protein	9.92699e-05	8.50689e-05
+Putative ATPase 	0.00196399	0.000261163
+UniRef50_M9RKI3	0.000130098	5.54561e-05
+Thioesterase family protein	1.94753e-05	0.000394458
+UniRef50_D8JFV1	0.000264305	0.0017874
+UniRef50_Q5HQT4	0.0253446	0.00107976
+mitochondrial ribosomal protein subunit L2	2.12952e-05	5.24709e-05
+Psp operon transcriptional activator	0.00262122	0.000390697
+D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein	0.00135714	0.00038315
+UniRef50_Q8CQM7	0.0203478	0.00123443
+Biotin synthase	4.48808e-06	6.88897e-05
+UniRef50_A5UKE2	0.00580513	0.00022559
+Aldose 1 epimerase	0.000104302	0.0010206
+hypothetical protein	2.5275e-06	6.57856e-06
+UniRef50_C7Q9W5	3.94583e-06	0.000459911
+hypothetical protein	6.71932e-06	1.56542e-05
+hypothetical protein	7.88359e-05	1.11265e-05
+Sigma B regulator protein	1.79667e-05	0.00178065
+Cysteine  tRNA ligase	1.52187e-05	0.00462701
+Lytic transglycosylase catalytic	0.000177757	0.000606534
+Truncated transposase	0.000587003	0.00102214
+hypothetical protein	5.65357e-06	3.52895e-06
+Glutamyl aminopeptidase	0.00417872	0.00357905
+MarR family transcriptional regulator	0.000670692	0.000196251
+Diguanylate cyclase	0.000119626	0.00105302
+Tungsten formylmethanofuran dehydrogenase, subunit H	0.00627907	0.000258002
+Expressed protein 	3.56854e-05	1.49583e-05
+UniRef50_UPI00032995A5	1.12823e-05	3.46054e-06
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.000152816	0.0112078
+Nicotinate phosphoribosyltransferase	0.000145957	0.00338136
+hypothetical protein	1.25367e-05	3.84778e-05
+Regulatory inactivation of DnaA Hda protein	0.000910104	0.00012956
+cobalamin adenosyltransferase	9.33574e-06	1.15314e-05
+Peptidase S15	0.00517284	0.00104937
+UniRef50_A9MUH4	0.000109283	0.000132485
+Cysteine synthase	0.00110002	0.000153741
+NADPH dependent curcumin reductase	0.00833656	0.00163931
+Sigma 54 dependent transcriptional regulator	0.000702263	0.000375406
+chromosomal replication initiation protein	3.96831e-06	2.693e-06
+UniRef50_B9TKF4	0.000412933	0.000487029
+UniRef50_K5DHJ7	0.00016911	2.89832e-05
+hypothetical protein	0.000295218	0.00195985
+Glycosyl hydrolase family 38 N terminal domain protein	3.23501e-05	0.00349461
+Acetate permease ActP 	0.00191052	0.000478137
+YdiK	0.000289233	8.70008e-05
+heptaprenyl diphosphate synthase subunit II	2.59087e-05	2.21822e-05
+hypothetical protein	4.02624e-05	9.11965e-06
+Iron regulated outer membrane protein FrbP_1	9.73078e-05	0.00121436
+DHH family protein	0.000274506	0.000385617
+methionine gamma lyase	2.31568e-05	3.66516e-06
+ATP dependent Clp protease proteolytic subunit	0.000226887	0.000450677
+Fe S metabolism associated SufE	0.000708601	3.61406e-05
+UniRef50_A5UMA7	0.00155549	0.00102793
+hypothetical protein	4.37768e-05	6.75995e-06
+Oligosaccharyl transferase, STT3 subunit	0.00333166	0.000571235
+hypothetical protein, partial	7.0217e-06	8.29894e-06
+LPS biosynthesis protein related protein	9.18695e-05	0.00108757
+Auxin Efflux Carrier	0.00011281	0.00053265
+Transposase	0.0249365	0.00713593
+UniRef50_K6X7D8	0.000244267	5.31367e-05
+Molybdopterin guanine dinucleotide biosynthesis protein A	3.72727e-06	9.22703e-06
+FeS assembly ATPase SufC	0.000675843	0.00043966
+Methyl accepting chemotaxis protein	0.00012338	0.00284247
+Chelated iron transport system membrane protein YfeC	0.00415815	0.000592619
+Flagellar hook associated protein 2	0.0019358	0.00102448
+UniRef50_X5EK07	5.50591e-05	0.000102356
+4 alpha glucanotransferase	1.61682e-05	0.000393243
+Lipoprotein NlpD LppB homolog	0.000543106	0.000210799
+UniRef50_I6T6E7	0.00424746	0.000888254
+NADH ubiquinone oxidoreductase chain	3.49511e-05	5.83287e-05
+NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial	6.78469e-05	5.35188e-06
+UniRef50_U3T764	0.000394393	0.000841338
+Cag17	0.00023025	0.000775747
+L rhamnonate dehydratase	0.00198199	8.37545e-05
+MULTISPECIES	1.29478e-05	1.54513e-05
+Urease isoform 4	1.01079e-05	1.20248e-05
+Response regulator receiver protein	0.000155514	0.000817842
+RES domain containing protein	0.0158735	0.00123843
+D amino acid dehydrogenase small subunit	0.000539249	0.000668062
+Serine protease	0.00528011	0.00263098
+Hypothetical 	0.00013853	3.47309e-05
+Metallo beta lactamase superfamily protein	0.00507819	0.000770749
+Phosphotransferase system, EIIC	0.000298189	0.00132839
+PREDICTED	0.000376733	1.80918e-05
+Uridylate kinase	0.00030459	0.00130929
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000220431	0.000210242
+Pyruvate dehydrogenase E1 component	3.95474e-05	0.0227101
+TRAP transporter solute receptor, TAXI family	1.0922e-05	5.10722e-06
+PREDICTED	2.56953e-05	2.65925e-05
+UniRef50_A7HWY8	2.69865e-05	1.97236e-05
+Multidrug resistance protein MdtC	0.00172171	0.000207635
+Putative L lactate permease	0.000272521	0.00143376
+MarR family transcriptional regulator	1.19206e-05	1.1612e-05
+ATP synthase subunit beta	1.37937e-05	0.00604367
+riboflavin synthase subunit alpha	6.56478e-06	1.22502e-05
+ATP dependent DNA helicase PcrA	1.73804e-05	4.93792e-06
+Nucleoside ABC transporter membrane protein	0.00299549	0.000406145
+Imidazole glycerol phosphate synthase subunit HisH	2.06265e-05	4.66524e-06
+diguanylate cyclase	7.5793e-06	3.73795e-06
+Glycosyl transferase, family 8	0.000384948	7.46341e-05
+UniRef50_E9CIL8	5.02652e-05	3.84847e-05
+Histidine biosynthesis bifunctional protein HisIE	0.00139264	0.00123594
+hypothetical protein	3.47873e-05	3.79609e-05
+phosphonate ABC transporter	0.000133072	2.19634e-05
+Glycosyl transferase, group 1	8.9034e-05	7.91754e-05
+hypothetical protein	0.000129942	1.84974e-05
+Urease subunit beta	6.90456e-05	1.94314e-05
+Glycine betaine carnitine choline transport system permease protein OpuCD	0.0286781	0.0070077
+hypothetical protein	4.02105e-06	6.66447e-06
+UniRef50_Q39BJ9	0.000132101	1.16187e-05
+Replication protein C	0.000200674	3.24815e-05
+ABC transporter, ATP binding protein	0.0180489	0.00293972
+UniRef50_X6K2H2	0.000218505	2.79571e-05
+Marine sediment metagenome DNA, contig	7.2995e-06	4.96316e-06
+Putative metabolite transport protein YaaU	0.00215537	0.00048335
+Selenophosphate dependent tRNA 2 selenouridine synthase	2.73454e-05	1.24334e-05
+rRNA methyltransferase	0.00664963	0.00236919
+hypothetical protein	3.43606e-05	8.09411e-06
+5 oxopent 3 ene 1,2,5 tricarboxylate decarboxylase	8.75839e-06	1.2236e-05
+Na+ melibiose symporter	2.58699e-05	2.17842e-06
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.00864772	0.00176657
+RNA binding protein 	2.00302e-06	3.14827e-05
+Phi PVL orfs 18 19 like protein	0.0188302	0.00202515
+Diguanylate cyclase	0.000375119	0.000426936
+UDP N acetylmuramate  L alanine ligase	1.00096e-05	2.64183e-06
+hypothetical protein	1.30698e-05	5.20098e-06
+UniRef50_L5S2T2	2.60847e-05	0.000272075
+Adhesin like protein	0.00241241	0.000433047
+lactoylglutathione lyase, partial	0.000341615	9.28342e-05
+UniRef50_D4YPZ1	4.12077e-05	7.69365e-05
+resolvase	4.86474e-05	1.40907e-05
+UniRef50_A9GRS6	4.76387e-06	0.000162851
+Dihydroorotate dehydrogenase 	8.82872e-06	8.45115e-06
+PREDICTED	2.27757e-05	6.16308e-05
+MerR family transcriptional regulator	0.000211842	1.6397e-05
+Dihydroorotate dehydrogenase B ), catalytic subunit	0.000400312	0.000600547
+Biotin synthase	0.0019405	0.000969281
+phosphohydrolase	3.86408e-06	6.71859e-06
+Hypothetical membrane protein	4.01763e-05	0.000130962
+Phosphopentomutase	0.00265438	0.000208621
+Peptidase, M50 family	0.000231154	0.00258195
+Fe S metabolism protein SufE	3.17498e-05	0.000502195
+hypothetical protein	4.66094e-06	5.62639e-06
+hypothetical protein	5.13094e-06	6.31532e-06
+Putative plasmid transfer protein	1.06599e-05	1.42318e-05
+UniRef50_R8X1X2	0.0012532	0.000119241
+50S ribosomal protein L6	9.33561e-06	0.000181809
+hypothetical protein	3.28607e-05	8.93043e-06
+Anaerobic nitric oxide reductase flavorubredoxin	0.000857281	0.000152509
+3 dehydroquinate synthase	0.00503982	0.00193086
+Acetyl CoA acetyltransferase	1.0204e-05	4.75431e-05
+membrane protein	6.94409e-06	6.19555e-06
+Tetracycline transcriptional regulator YcdC domain containing protein	0.0132569	0.00163133
+Inosine 5 monophosphate dehydrogenase 1	1.9815e-05	4.86138e-06
+integrase, partial	0.000269517	7.81622e-06
+Diguanylate phosphodiesterase	0.000144441	0.00015052
+Curli production assembly transport component CsgG	0.00266873	0.000431658
+UniRef50_Q9RXZ7	8.03844e-05	0.00756347
+UniRef50_A0A024E690	7.85234e-05	5.93344e-06
+ATP dependent Clp protease proteolytic subunit, mitochondrial	5.126e-06	3.19334e-05
+hypothetical protein	4.05901e-05	5.64055e-06
+UniRef50_E8NEK5	9.83544e-06	1.07119e-05
+UniRef50_A8NPH0	7.92784e-06	3.88283e-06
+hypothetical protein	6.94772e-05	3.39359e-05
+Malate dehydrogenase	1.69561e-05	8.48006e-06
+Chromosome 1 SCAF7036, whole genome shotgun sequence. 	8.34499e-06	1.72638e-05
+Molybdenum cofactor guanylyltransferase	0.000181265	0.00154692
+Putative ABC transporter ATP binding protein SAS2569	0.0107293	0.00326162
+tRNA 2 methylthio N dimethylallyladenosine synthase	8.9587e-05	0.0187957
+Phosphomethylpyrimidine synthase, chloroplastic	7.64304e-05	0.0177431
+UniRef50_UPI0003C10FC0	1.58761e-05	3.32717e-06
+UniRef50_M9S4J7	0.000295315	0.000284734
+Flagellar P ring protein	0.00319225	0.000475648
+hypothetical protein	7.84556e-05	5.65803e-06
+UPF0301 protein YPN_3133	0.00536892	7.63522e-06
+UniRef50_J9YRU2	0.000761091	0.00013461
+TRAP transporter solute receptor, TAXI family	5.98103e-06	2.26292e-05
+UniRef50_K2FX44	9.27797e-06	9.76091e-06
+UniRef50_J2LA76	0.000557102	8.20762e-05
+hypothetical protein	1.03787e-05	1.62449e-05
+PREDICTED	3.05678e-06	2.72854e-06
+Protein dipZ	2.57651e-05	1.10482e-05
+PREDICTED	1.55769e-05	6.09024e-05
+hypothetical protein	3.44729e-05	7.46606e-06
+Glycosyl transferase, putative	0.00381979	0.00072321
+UniRef50_B7I7I0	0.000278908	0.00978044
+Histidine kinase	0.000115388	0.000311209
+hypothetical protein	6.34399e-05	7.85906e-06
+Molybdopterin molybdenumtransferase 2	7.92115e-06	4.78175e-06
+UniRef50_F5M4L1	0.000506244	0.000198201
+Phosphoribosyl AMP cyclohydrolase	1.3572e-05	3.05676e-05
+Demethylmenaquinone methyltransferase	0.018158	0.00149515
+Ribose phosphate pyrophosphokinase 2	2.8514e-05	3.18255e-05
+Transcriptional regulator, MarR family	0.00447362	0.000602135
+hypothetical protein	4.80288e-05	7.86962e-06
+Anaphase promoting complex, cyclosome, subunit 3 family protein	1.24051e-05	0.000126458
+Predicted protein 	1.36506e-05	1.19897e-05
+hypothetical protein	2.54644e-05	3.60509e-05
+UniRef50_G2Z8U2	1.79899e-05	0.000341362
+Putative phosphoenolpyruvate synthase regulatory protein	3.61243e-05	1.8856e-05
+hypothetical protein	1.90368e-05	3.73548e-05
+UniRef50_F0I702	5.16446e-05	5.27078e-06
+Marine sediment metagenome DNA, contig	1.27632e-05	3.48634e-06
+hypothetical protein	2.67801e-05	8.91912e-05
+UniRef50_K2JK23	2.06364e-05	2.03963e-05
+Probable glycine dehydrogenase  subunit 1	0.0200736	0.00254912
+ABC type nitrate sulfonate bicarbonate transport system, periplasmic component	0.000403483	0.00139403
+UniRef50_A1IRX0	4.3617e-05	0.000534861
+hypothetical protein	0.000561717	0.000237975
+restriction endonuclease	1.6164e-06	0.000611952
+ATP dependent Clp protease adapter protein ClpS 2	0.000315514	0.00766022
+Glyceraldehyde 3 phosphate dehydrogenase GAPA2, chloroplastic	5.75766e-05	1.25621e-05
+3 isopropylmalate dehydratase large subunit	0.02823	0.00549826
+3 oxoacyl [acyl carrier protein] synthase 3	1.87692e-05	3.67416e-06
+Transposase	0.000237211	5.76219e-05
+UniRef50_G7ZR43	0.0142215	0.00294424
+Glycine  tRNA ligase	0.0159973	0.00380907
+UniRef50_UPI0003C104A0	1.29704e-05	8.93706e-07
+Vancomycin B type resistance protein VanW	0.00024547	0.000480599
+Phosphoenolpyruvate synthase	0.00276295	0.0075971
+Drug resistance MFS transporter, drug	0.000150984	0.00268618
+UniRef50_E6PX09	0.000159428	6.26003e-05
+PREDICTED	2.0839e-06	2.09403e-05
+hypothetical protein	1.48717e-06	2.83749e-06
+membrane protein	4.19497e-05	2.83769e-05
+protein export membrane protein SecD, partial	3.25641e-06	5.54047e-06
+4 methyl 5 thiazole monophosphate biosynthesis enzyme	0.000644932	0.000268014
+UniRef50_B7I6U8	0.00019014	0.00520715
+UniRef50_Q097C2	0.000125897	2.45901e-05
+4 alpha glucanotransferase	0.00486233	0.00305336
+UniRef50_C6SP30	0.00340764	0.00132773
+Ribose transport system permease protein RbsC	0.00659704	0.000622475
+UniRef50_K7SFB2	0.000105412	0.000116508
+peptide ABC transporter permease	2.19485e-06	2.04169e-05
+UPF0178 protein YaiI	0.00251994	1.27954e-05
+membrane protein	2.33987e-06	2.01388e-06
+Hydrogenase 1 large chain	0.00160722	0.00024784
+UniRef50_V7ZPF8	0.000232886	4.64326e-05
+Immunogenic protein	5.16535e-05	3.48476e-05
+GTPase Der	0.000360731	0.0272662
+UniRef50_X6DLZ2	0.000123731	2.7373e-05
+ribonuclease J	1.0765e-05	2.37336e-05
+hypothetical protein	8.13e-05	0.000230507
+hypothetical protein, partial	1.15159e-05	0.000255642
+2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase	0.0170849	0.00301648
+3 isopropylmalate dehydratase small subunit	0.000743568	0.000494845
+Methyl accepting chemotaxis sensory transducer	0.000356466	0.000928376
+Peptidyl tRNA hydrolase ArfB	0.00745869	0.000645934
+Homoserine kinase	0.000316271	0.00331107
+ABC transporter periplasmic protein, partial	9.83844e-05	0.000110795
+Methanogenesis marker protein 6	0.0017049	0.000970022
+Nucleoside diphosphate kinase	1.23011e-05	4.88031e-05
+ABC transporter permease	1.6525e-05	1.14841e-05
+3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.00764367	0.00227488
+UniRef50_W4M3I0	7.09457e-05	1.75135e-05
+Alanine racemase	0.000379898	7.43163e-06
+GTPase HflX	0.0191567	0.00255533
+Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion	0.000148351	0.00178128
+Oxidoreductase	0.000272541	0.000708825
+UniRef50_F9M5F2	0.00225655	0.000340094
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00905367	0.00384474
+Glutamate binding periplasmic protein	0.000267741	4.40795e-05
+NADPH dependent FMN reductase	0.00393364	0.000136659
+DNA recombination RmuC like protein	0.000114343	0.00204879
+Cobalamin biosynthesis protein CbiX	0.00222237	0.000104766
+Nucleoside diphosphate kinase	9.4411e-05	2.55292e-05
+hydantoinase	1.89044e-06	1.93595e-06
+GntR family transcriptional regulator	0.000162364	1.00266e-05
+Acetolactate synthase 	1.41898e-05	8.83076e-06
+50S ribosomal protein L3	4.3522e-06	2.08968e-05
+UniRef50_F9YZE2	0.00108564	0.00134658
+Phytoene desaturase	6.74195e-06	1.33036e-05
+UniRef50_H6LML3	0.00653241	0.00036014
+Phage tail tape measure protein, TP901 family	0.000335749	0.000818991
+hypothetical protein	2.33925e-05	0.000102492
+Ribose phosphate pyrophosphokinase	0.00211757	0.000310809
+hypothetical protein	9.79885e-06	1.93805e-05
+hypothetical protein, partial	0.000126787	1.71624e-05
+Flagellar hook associated protein 1	0.00575462	0.000735372
+hypothetical protein	0.000151083	1.50644e-05
+Multidrug efflux system transmembrane protein	0.00109545	9.43118e-05
+Succinate dehydrogenase iron sulfur protein subunit	0.00768419	0.0033073
+HTH type transcriptional regulator SarU	0.00521919	0.000157241
+hypothetical protein	6.72194e-05	6.5811e-05
+WGS CADB00000000 data, contig 29 	1.63787e-06	1.53046e-06
+Sugar ABC transporter, substrate binding protein	0.014679	0.00221754
+Hexagonally packed intermediate layer surface protein	7.71485e-05	0.0297327
+UniRef50_K0S670	0.000161927	5.64516e-05
+C type cytochrome	0.000403189	0.000244172
+UniRef50_G7MDF6	0.00219488	0.00124886
+50S ribosomal protein L25	0.000220539	2.80139e-05
+UniRef50_A0A024HXA7	6.4786e-06	1.29542e-06
+McpA	0.0119666	0.00221609
+Phosphoribosylformylglycinamidine synthase 2	2.03882e-05	2.99957e-06
+Sugar kinase	0.000528505	0.00471804
+hypothetical protein	3.87284e-06	3.16584e-05
+Replication initiator protein	4.45598e-05	3.37937e-06
+tRNA delta isopentenylpyrophosphate transferase	1.13462e-05	5.62273e-06
+UniRef50_V5LMT9	0.000294044	5.34835e-06
+gas vesicle protein, partial	0.000265526	7.27023e-05
+UniRef50_Q7VID0	0.000277535	0.00105328
+Xanthine uracil permease	0.0117136	0.00497231
+DNA primase	0.000122868	0.00260295
+UniRef50_K2ADM0	0.000199678	3.89916e-05
+Membrane protein	9.78536e-05	1.2406e-05
+Iron dependent repressor	0.00106992	0.000628235
+Lysine  tRNA ligase	2.985e-06	7.04132e-06
+UniRef50_Q8FEA4	0.000265696	1.7239e-05
+Uracil phosphoribosyltransferase	0.0204139	0.00522013
+Cell wall binding protein	0.000217596	0.000785307
+GTPase CgtA	9.15315e-06	0.000163294
+Marine sediment metagenome DNA, contig	2.94217e-05	8.11753e-06
+UniRef50_R5HYZ8	0.000571993	0.000582669
+Pseudouridine synthase	0.000165245	0.000631367
+UniRef50_D3VHY7	0.000129102	0.00078435
+GTP pyrophosphokinase	2.73859e-06	1.12063e-05
+UPF0257 lipoprotein YnfC	0.0053832	0.0010227
+hypothetical protein	8.96823e-06	5.77075e-05
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	0.000674674	0.00481749
+Methyl accepting chemotaxis transducer	0.000104923	0.000256095
+Putative branched chain amino acid permease 	2.57482e-05	7.68939e-06
+UniRef50_E2ZSI9	0.000147609	8.84281e-05
+UniRef50_B2V1Q0	0.000326222	0.000145755
+ATP dependent DNA helicase Rep	4.83217e-06	2.64037e-06
+DNA 3 methyladenine glycosylase I	0.0133544	0.00136075
+hypothetical protein	7.77632e-06	9.93782e-06
+Transposase	0.000629	0.000813179
+hypothetical protein	7.20927e-06	0.000106837
+hypothetical protein	4.78066e-06	7.88278e-05
+UniRef50_W5T9B1	1.14956e-05	9.00917e-05
+Flagellar biosynthesis protein FlhA	1.94605e-06	1.40253e-05
+transposase	1.21127e-05	7.43764e-06
+UniRef50_L1K4Y6	0.000701143	0.00264073
+Aminodeoxychorismate synthase, component I	0.000179157	0.00287906
+pirin	6.59792e-06	3.31502e-06
+hypothetical protein, partial	0.000140304	6.14856e-05
+Bacteriochlorophyll synthase 44.5 kDa chain	0.000339359	6.35415e-06
+peptidase M22	7.90979e-06	9.62622e-06
+Glycosyl transferase 2 family protein	8.18853e-05	0.00223214
+UniRef50_B9E294	8.08363e-05	0.00111971
+hypothetical protein	5.0739e-06	6.79411e-05
+Binding protein dependent transport systems inner membrane component	0.0111637	0.00236826
+hypothetical protein	2.24907e-05	2.40049e-05
+Phosphoheptose isomerase	1.75361e-05	1.30392e-05
+O acetylhomoserine  lyase	5.99196e-05	0.0183697
+hypothetical protein	1.70317e-05	6.85535e-06
+hypothetical protein	6.00247e-05	4.85047e-06
+UniRef50_A2ZQQ8	0.000117011	8.66665e-05
+PREDICTED	6.02978e-06	5.12663e-06
+UniRef50_W2CS51	2.02038e-05	1.72449e-05
+Transcriptional regulator, AraC family	0.000120627	0.00242739
+UniRef50_Q5HPM6	0.000980239	0.00099761
+Aminomethyltransferase	3.95961e-05	0.000167589
+UniRef50_Q5Z5L8	5.42749e-05	0.000207592
+UniRef50_Q5HPM0	0.000841371	0.000482714
+acetylornithine aminotransferase	4.12823e-06	5.05549e-06
+UniRef50_R6JRA3	6.64591e-06	6.27208e-06
+hypothetical protein	0.000938517	0.000300468
+UniRef50_J9YT54	2.43419e-05	1.93144e-05
+Sulfite reductase [NADPH] flavoprotein alpha component	0.000449361	0.000594664
+hypothetical protein	5.49827e-06	7.8069e-06
+Serine pyruvate aminotransferase archaeal aspartate aminotransferase	0.000414926	9.48098e-05
+hypothetical protein	0.000290115	3.78869e-05
+hypothetical protein	4.25974e-05	3.98429e-05
+hypothetical protein	6.13205e-05	1.07135e-05
+UniRef50_W7LMB8	2.95737e-05	2.6299e-05
+hypothetical protein	5.53912e-06	0.000711372
+TRAP transporter solute receptor, TAXI family	2.18743e-05	7.10457e-06
+UniRef50_A6M071	0.000449472	0.000256005
+glycosyl transferase	2.90974e-05	8.66143e-06
+GMP reductase 2	0.00269238	9.40561e-05
+Recombinase A 	0.000120664	2.2612e-05
+Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	6.22469e-06	0.00130408
+Replication initiator protein A	9.43012e-06	1.95317e-06
+UniRef50_Q8CUE8	0.0456965	0.003599
+UniRef50_Q8CUE9	0.0153112	0.000486253
+UniRef50_Q8CUE6	0.00719504	0.00109769
+UniRef50_Q8CUE4	0.0111285	0.00195158
+UniRef50_Q8CUE5	0.000902729	8.96302e-05
+UniRef50_Q8CUE2	0.0019023	0.00237528
+UniRef50_Q8CUE3	0.0196745	0.00398381
+UniRef50_A4YPV8	0.000213624	5.27075e-05
+UniRef50_M0SZR5	0.000230276	0.000144472
+hypothetical protein	4.28311e-06	1.37707e-05
+glyceraldehyde 3 phosphate dehydrogenase, partial	8.96547e-05	8.23119e-06
+Phosphoglycerate mutase family protein	4.49094e-05	0.000568005
+Periplasmic nitrate reductase, electron transfer subunit	0.00127187	0.000935259
+Transposase	0.000135734	0.000111654
+Integrase	0.0156614	0.00192011
+NADH quinone oxidoreductase subunit K	1.12688e-05	1.20315e-05
+50S ribosomal protein L18	4.38632e-05	0.000149905
+UniRef50_Q9JYT7	0.000389825	0.00149438
+Transporter, major facilitator family protein	0.000219577	0.00233075
+Homoserine O succinyltransferase	0.00489585	0.00116691
+UniRef50_W0CEL3	5.70372e-05	0.000244887
+[Citrate [pro 3S] lyase] ligase	0.00412291	0.000180121
+Integral membrane protein	9.99937e-06	8.78614e-06
+Glycine  tRNA ligase alpha subunit	2.40518e-05	0.000729976
+PREDICTED	2.8557e-06	1.1953e-06
+Histidinol phosphatase HisK	0.000129442	0.00032806
+Putative GTP cyclohydrolase 1 type 2	0.0154303	0.00319802
+Response regulator	0.00174409	0.000585834
+Respiratory nitrate reductase beta chain 	3.2795e-05	1.72733e-05
+Phosphoglycerate kinase	1.17765e-05	8.37862e-06
+putative short chain dehydrogenase	2.80938e-05	0.000132774
+Glyceraldehyde 3 phosphate dehydrogenase	0.0062831	0.0015582
+UniRef50_U7DV00	4.80925e-05	6.71294e-05
+Marine sediment metagenome DNA, contig	0.000114615	6.8898e-05
+Putative acyl CoA thioester hydrolase YbhC	0.00247276	0.000444761
+ABC transporter permease	5.40482e-06	3.87758e-06
+Transporter	6.98234e-05	0.00445505
+UniRef50_M4R0I6	8.54907e-05	0.00355006
+UniRef50_D5ANC8	9.71323e-06	6.45303e-06
+UniRef50_T0BL71	0.000249853	2.70792e-05
+Internalin E 	1.95944e-05	0.000694267
+UniRef50_A9H8V7	0.0223394	0.000358781
+Cobyrinic acid ac diamide synthase	3.15303e-06	6.13543e-06
+NADH quinone oxidoreductase subunit K	4.77931e-05	3.23937e-05
+UniRef50_C7C0M5	0.000141012	0.00100399
+Protein HflK	0.0038835	0.000330455
+Pseudouridine synthase	0.00019797	0.00345376
+L tartrate succinate antiporter	0.00238894	0.00034372
+Circadian clock protein kinase KaiC	4.11475e-05	6.73792e-06
+hypothetical protein	1.96398e-05	5.56103e-06
+ABC transporter ATP binding protein	0.00440287	0.000652471
+Fis family transcriptional regulator	3.176e-05	1.01706e-05
+Ribosome association toxin RatA	0.0045893	0.000706967
+Autoinducer 2 import system permease protein LsrC	0.00380902	0.000479836
+UniRef50_U6K454	6.87761e-05	6.68429e-06
+Exotoxin A regulatory protein	0.000264935	0.000729929
+Sigma 54 factor, interaction domain containing protein	0.00038191	0.000546068
+UniRef50_D5AT86	0.00119669	7.40799e-05
+Transcriptional regulator GntR family	0.00369925	0.00124004
+NADH quinone oxidoreductase subunit C D	0.00429946	0.000960382
+NAD kinase	1.63029e-05	9.881e-06
+UniRef50_Q0FLV7	5.76425e-05	1.58711e-05
+hypothetical protein	5.4661e-06	4.59464e-05
+UniRef50_F2N563	0.000529689	0.00116793
+UniRef50_H8I380	7.76499e-05	1.89154e-05
+DUF2188 family protein	0.00949699	0.00365458
+UniRef50_A0A011PD71	0.000109744	0.000222434
+hypothetical protein	6.57871e-05	8.33963e-05
+Phenazine specific methyltransferase PhzM	0.000302088	0.000247765
+Dihydrolipoyl dehydrogenase 	4.37398e-05	7.85907e-05
+UniRef50_D7FVW5	7.72514e-05	0.000291227
+Sensor histidine kinase YclK	0.000195668	0.000390693
+Protein FimH	0.000454725	9.82329e-05
+hypothetical protein	2.50138e-05	0.000899898
+UniRef50_A0A011UTJ0	5.75072e-05	7.24669e-06
+Type IV pilus assembly protein TapC	8.94283e-05	0.000461293
+hypothetical protein	5.12731e-05	6.91056e-06
+Marine sediment metagenome DNA, contig	6.04449e-05	0.000201786
+Cyclase dehydrase	0.00282747	0.000816226
+Flagellar M ring protein	0.000410333	0.000454948
+Transcription elongation factor GreA	0.00333872	0.000187052
+hemolysin expression modulating protein	4.14572e-06	1.73547e-06
+hypothetical protein	5.16257e-05	4.21468e-05
+UniRef50_D4ZAK4	0.00138314	0.00494791
+hypothetical protein, partial	2.71471e-05	0.000611133
+UniRef50_A4WXK1	2.13242e-05	0.000651603
+UniRef50_G0LPP3	1.56138e-05	4.50533e-06
+hypothetical protein	3.11564e-05	2.96766e-05
+hypothetical protein	1.7722e-05	7.18775e-05
+hypothetical protein	0.000137103	0.000116992
+hypothetical protein	0.00011078	9.82522e-06
+DEAD DEAH box helicase	0.000825464	8.22722e-05
+Probable tRNA sulfurtransferase	0.00285054	0.000110572
+PF07120 family protein	3.4064e-06	5.51293e-06
+GMP synthase [glutamine hydrolyzing]	4.26423e-05	8.9146e-06
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit	1.73845e-05	1.92527e-05
+RNA polymerase sigma factor	0.0137667	0.00204597
+tRNA dihydrouridine synthase	0.000229261	0.000806039
+Glycerophosphoryl diester phosphodiesterase family protein	0.0101562	0.000873242
+NADH ubiquinone oxidoreductase subunit	0.000284505	0.000123029
+Regulatory protein MsrR	0.0159821	0.0030091
+Ribonuclease R	0.00531047	0.00067729
+enterobactin ABC transporter permease	6.77822e-06	9.74678e-06
+resolvase	1.63059e-05	9.44328e-05
+Aconitate hydratase	8.04512e-06	3.61827e-05
+Probable cytosol aminopeptidase	0.000677388	0.00238924
+Short chain dehydrogenase reductase SDR	0.000923091	0.00380085
+hypothetical protein PFL1_00477	6.74449e-06	2.62881e-05
+hypothetical protein	9.02047e-05	3.64602e-05
+UniRef50_M9V9M5	0.000219881	0.00223402
+UniRef50_F5XYC9	0.000167675	0.000241151
+hypothetical protein	8.75601e-05	6.67072e-05
+UniRef50_P0A9V7	0.000580256	0.000366469
+UniRef50_K0R926	0.00011392	6.08916e-05
+UniRef50_B9KRR9	0.00101984	0.000291935
+hypothetical protein	0.000174456	0.000125513
+UniRef50_B7LBZ3	1.51531e-05	0.000504507
+hypothetical protein	4.73754e-06	1.08847e-05
+PREDICTED	2.48072e-06	2.56808e-06
+PolyA polymerase related protein  and P loop ATP ase domain	0.000753113	0.000527443
+helix turn helix domain containing protein	0.000312297	0.00011336
+Methylcrotonoyl CoA carboxylase beta chain, mitochondrial	0.00287767	0.0039431
+Peptide methionine sulfoxide reductase MsrA MsrB	8.78287e-05	0.00162874
+PREDICTED	1.97599e-05	0.000279676
+Adenylosuccinate lyase	0.000467059	0.00190114
+Cell surface flocculin	2.31572e-06	4.29222e-06
+Short chain dehydrogenase reductase SDR	2.20196e-06	1.44371e-06
+LuxR family transcriptional regulator	1.70788e-05	9.89247e-06
+Methionyl tRNA formyltransferase	6.39312e-06	1.3165e-05
+ABC transport system ATP binding protein	0.000417209	0.0024474
+NADH dehydrogenase [ubiquinone] iron sulfur protein 3, mitochondrial	1.36344e-05	5.54175e-06
+hypothetical protein	0.000104162	4.01302e-05
+Peptidase, U32 family	0.000501499	0.000200861
+Argininosuccinate lyase	1.23166e-05	8.07665e-06
+UniRef50_Q6A823	1.63593e-05	0.00176557
+NADPH dependent butanol dehydrogenase	0.00165499	0.00213862
+UniRef50_Q6A824	0.000185095	0.00012238
+hypothetical protein	1.38432e-05	5.93135e-05
+Homoserine kinase	0.00524613	0.000889693
+Bifunctional NADH hydrate repair enzyme Nnr	0.000187544	0.00242516
+Cobyrinic acid a,c diamide adenosyltransferase	1.0069e-05	1.13978e-05
+DNA repair protein RadA	3.92918e-05	0.000602229
+UniRef50_W7IVE6	0.00901852	0.0014225
+Putative acid  amine ligase YgiC	0.00259435	0.000177406
+hypothetical protein	3.05663e-06	2.48129e-06
+hypothetical protein	9.1146e-06	2.75818e-06
+Marine sediment metagenome DNA, contig	2.36651e-05	2.63163e-05
+Phosphopantetheine adenylyltransferase	1.05279e-05	7.98505e-06
+hypothetical protein	2.93796e-05	1.00605e-05
+UniRef50_F0S2L5	7.04837e-06	6.78909e-06
+UniRef50_K0HAG9	0.000296084	0.00476505
+UniRef50_G7LZX4	0.000241007	0.00010638
+Invasion associated locus B family protein	0.00389368	0.000302306
+Phosphomevalonate kinase	0.00400217	9.85564e-05
+UniRef50_A3PS67	0.00435651	0.00105939
+UniRef50_A4WQP0	0.000115457	0.000103368
+NADH quinone oxidoreductase subunit I 2	0.00175497	4.71486e-05
+C4 dicarboxylate binding protein	0.000757548	0.000143656
+Transposase	1.48603e-05	2.46485e-06
+7 cyano 7 deazaguanine synthase	0.00056243	0.00340191
+Soluble pyridine nucleotide transhydrogenase	0.00307991	0.00337493
+Bacteriophage capsid portal protein	0.00229138	0.000882466
+DNA polymerase III PolC	0.00591125	0.00258148
+Inner membrane transport YhjV domain protein	5.74504e-05	9.71984e-06
+UniRef50_T1XSP1	0.0116578	0.00197988
+Glutamine amidotransferase subunit PdxT	2.45654e-06	0.00167074
+hypothetical protein, partial	7.91315e-05	2.79051e-05
+Aspartyl glutamyl tRNA amidotransferase subunit B	5.588e-06	3.89808e-06
+Hydroxyethylthiazole kinase	0.00342119	0.00028835
+Radical SAM protein	0.000803415	0.000141171
+Amidohydrolase family protein	7.09519e-05	0.00408119
+hypothetical protein	0.000157664	1.35501e-05
+hypothetical protein	0.000135248	5.03909e-05
+Nitrate sulfonate bicarbonate ABC transporter, ATPase component	0.00229516	0.000418632
+Plasmid replication protein RepA	0.000220917	1.86143e-05
+glycosyl transferase	2.14978e-06	5.23072e-06
+Rhs element Vgr family protein	4.37834e-05	0.0010465
+Predicted protein 	2.03673e-05	8.67567e-06
+UniRef50_V6QB21	0.000495507	0.000472291
+UniRef50_V2VF38	0.000145054	0.00337975
+UniRef50_G9EIS6	2.41524e-05	1.64215e-05
+Type VI secretion ATPase, ClpV1 family	6.62932e-05	9.67481e-05
+UniRef50_L2SNR0	0.00011145	3.56024e-05
+16S rRNA methyltransferase	6.18863e-06	7.66432e-06
+hypothetical protein	6.87583e-05	1.39789e-05
+Peptidyl tRNA hydrolase	7.79117e-05	2.19782e-05
+Tellurite methyltransferase	0.00178426	0.000233815
+Predicted protein	1.95919e-06	0.00049907
+UniRef50_P75749	0.00239767	0.00038946
+Ribonuclease 3	2.10899e-05	3.54544e-05
+UniRef50_U8RNG4	0.000141042	6.60568e-05
+UniRef50_P75745	0.0019489	0.000316155
+Sodium sulphate symporter	7.34822e-05	0.00169921
+Anthranilate synthase component 1	1.93978e-05	0.00930409
+hypothetical protein	3.26859e-05	2.64879e-05
+UniRef50_A3SLT9	4.67332e-05	7.47919e-06
+UniRef50_W4PGX2	1.24348e-05	0.000116327
+Pirin	5.28513e-06	3.94236e-06
+chemotaxis protein CheY	0.000114942	2.15793e-05
+Fe S oxidoreductase	0.00169729	6.37677e-05
+ABC transporter related protein, partial	0.000396679	7.47157e-05
+UniRef50_W0L514	0.000123307	2.81202e-05
+NADH oxidase	0.00560225	0.00397756
+UniRef50_B7UYN1	0.00105211	7.84147e-05
+Ubiquinone menaquinone biosynthesis methyltransferase UbiE	0.000292651	0.00439328
+MULTISPECIES	4.90653e-06	2.25585e-06
+UniRef50_W9FFV8	3.22666e-05	2.34691e-05
+Predicted metal dependent phosphoesterase, PHP family	0.00468394	0.000494719
+hypothetical protein	2.16254e-06	3.27717e-06
+Branched chain amino acid transporter AzlC	0.000222408	4.51975e-05
+Prophage antirepressor	0.000331458	0.000593249
+UniRef50_D6UB35	7.0645e-05	5.56166e-05
+Type I restriction enzyme subunit M	0.000724804	0.000220192
+Phosphoenolpyruvate carboxylase family protein isoform 3	1.23386e-05	1.03871e-05
+Adenine specific DNA methylase	4.61658e-05	0.00251903
+30S ribosomal protein S8	0.00451301	0.00755069
+UniRef50_Q5HM58	0.0114144	0.00289961
+Exonuclease SbcC	0.000826688	0.00045054
+Phosphoesterase family protein	0.000156586	0.00204079
+Putative ABC transporter ATP binding protein CPE1583	1.05795e-05	0.000296994
+UniRef50_R9SKG8	0.0021544	0.000188624
+UniRef50_E6REC8	3.13462e-05	6.12565e-06
+PREDICTED	1.56765e-05	4.09933e-06
+UniRef50_C4J675	2.35343e-05	9.89836e-05
+AzlC family protein	0.0100736	0.00148227
+NADH dehydrogenase 	0.00299513	0.000120923
+Probable cytosol aminopeptidase	0.000143242	0.00212754
+ATP dependent 6 phosphofructokinase	1.46836e-05	3.88874e-06
+hypothetical protein	1.31212e-05	3.5006e-05
+Glutamyl tRNA amidotransferase subunit A	0.0056582	0.000570878
+50S ribosomal protein L10	0.000827578	0.00186035
+Phosphate import ATP binding protein PstB	0.00198361	0.000551311
+UniRef50_A0A058ZJ58	5.78696e-05	2.1333e-05
+RNA helicase, partial	4.93936e-06	1.08885e-05
+PREDICTED	4.1957e-05	1.08016e-05
+Molybdenum import ATP binding protein ModC	0.00217177	0.000503608
+signaling repeat GGDEF domain EAL domain containing protein	0.000113337	7.33533e-06
+UniRef50_A3M261	0.000569552	0.00300471
+Phosphoethanolamine transferase EptA	0.00257071	0.000417586
+Catalase	0.0195249	0.00409904
+Transcriptional regulator	0.000130148	1.659e-05
+Trk type potassium transport system membrane component TrkH	0.00220802	0.000365745
+H1 41 protein 	0.00149125	0.000163019
+ABC transporter ATP binding protein	4.69861e-05	6.96731e-06
+ABC transporter permease	0.000146817	4.82924e-05
+glutathione ABC transporter ATP binding protein	2.62981e-05	1.40426e-05
+hypothetical protein	8.6643e-06	8.49905e-06
+Chaperone protein HtpG	6.34997e-05	0.00135074
+Serine hydroxymethyltransferase 6 isoform 2	2.03407e-06	3.61531e-05
+Cyclic nucleotide binding protein	4.76544e-06	4.50863e-06
+PAS domain protein	3.71142e-06	4.36713e-06
+hypothetical protein	0.000155806	1.60331e-05
+UniRef50_T0N5V1	1.53876e-05	1.48928e-05
+hypothetical protein	5.50959e-05	2.75431e-05
+Putative acetyltransferase SH0499	3.39361e-05	9.08973e-06
+hypothetical protein	1.08374e-05	1.24839e-05
+hypothetical protein	1.60348e-06	3.72803e-06
+Aminotransferase, putative	9.03082e-05	0.0236507
+Chaperonin , alpha subunit	0.00272973	0.000923621
+PREDICTED	1.77701e-05	5.98129e-06
+Electron transport complex subunit C	0.00059708	0.0010213
+acyl CoA dehydrogenase	4.04635e-06	3.48904e-05
+Glutathione synthetase	0.000326119	0.00050621
+hypothetical protein	0.00018672	0.000320497
+Inner membrane protein YejM	0.00369503	6.80704e-05
+hypothetical protein	4.89524e-06	4.4999e-06
+Lysyl tRNA synthetase protein	0.000811713	0.00025016
+Orotidine 5 phosphate decarboxylase	0.00016042	9.8504e-06
+MULTISPECIES	9.36808e-06	1.01234e-05
+Succinate dehydrogenase fumarate reductase flavoprotein subunit	7.65931e-06	8.31287e-06
+Superoxide dismutase [Mn]	6.92966e-06	1.04167e-05
+hypothetical protein	1.07636e-05	4.45223e-06
+AraC family transcriptional regulator	0.000545668	0.000282676
+hypothetical protein	9.23498e-05	1.37592e-05
+hypothetical protein	5.11909e-06	7.47392e-05
+NADH quinone oxidoreductase subunit G	0.00596548	0.000436639
+FAD binding molybdopterin dehydrogenase	0.000241215	0.000614144
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0137923	0.00359721
+hypothetical protein	1.13947e-05	2.17015e-06
+UniRef50_B3G2P1	0.000506539	0.000224744
+TetR family regulatory protein	0.000150919	0.00391974
+hypothetical protein	3.78902e-06	1.3794e-05
+Hydrolase, alpha beta domain protein	0.00014039	0.00422606
+Pyocin protein	0.00124446	0.0004172
+Acetylornithine deacetylase	0.00324366	0.000248839
+UniRef50_M3Z5Z5	5.16502e-06	1.90907e-06
+Acetylglutamate kinase	0.00458797	0.000116611
+Maltose phosphorylase   Trehalose phosphorylase	0.000299598	0.000184363
+BolA family protein	2.49267e-05	2.25825e-05
+ABC transporter	0.000322021	5.83865e-06
+Glutamyl tRNA amidotransferase subunit A	0.00336769	0.000217795
+GAF sensor diguanylate cyclase	3.66269e-05	4.44452e-05
+UniRef50_F5TJT7	4.54929e-05	0.000250856
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	7.53307e-06	2.95056e-06
+hypothetical protein	9.00834e-06	1.71795e-05
+UniRef50_B7MVN0	0.00155229	0.0012823
+Arginine  tRNA ligase	0.000148398	0.00237951
+UniRef50_D3QAH6	3.69158e-05	2.29108e-05
+Transcriptional regulatory protein CpxR	0.00185044	0.000717425
+UniRef50_E6RH94	3.00222e-05	1.83457e-05
+Regulatory protein	0.000149577	0.000980751
+PREDICTED	1.86113e-05	1.08666e-05
+UniRef50_A7MKJ4	0.00308963	0.000727295
+UniRef50_D3QET5	0.0138011	0.000796359
+hypothetical protein	1.13736e-05	3.97022e-06
+Marine sediment metagenome DNA, contig	3.06587e-05	0.000172901
+Allergen V5 Tpx 1 family protein	0.00709808	0.00105959
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.012239	0.00122951
+MULTISPECIES	1.01166e-05	7.90722e-06
+Toxin YeeV	5.3266e-06	8.17803e-06
+Inner membrane protein YhcB	0.0146814	0.000225025
+UniRef50_R5VVL9	0.00443761	0.000292687
+Lipoyl synthase	0.00322702	0.00188563
+tetratricopeptide repeat protein kinase domain protein	3.17273e-06	6.03245e-05
+UniRef50_P76508	0.00409278	0.00166846
+Fumarate reductase succinate dehydrogenase flavoprotein domain protein	8.10594e-06	8.18247e-06
+N acetyl gamma glutamyl phosphate reductase	1.41975e-05	1.11527e-05
+UniRef50_K1JLF6	0.00153848	0.000265087
+UniRef50_P76507	0.00270373	0.000513471
+Holliday junction ATP dependent DNA helicase RuvB	0.0118663	0.00656037
+Coagulation factor 5 8 type domain containing protein	1.36767e-05	2.58084e-05
+UniRef50_A6M156	0.000883122	0.00124847
+UniRef50_I3TGS2	0.000113584	1.31124e-05
+UniRef50_B6AXL4	1.78268e-05	3.52109e-06
+NLPA lipoprotein	2.85559e-05	5.71456e-06
+Response regulator	7.58562e-05	6.77111e-05
+Alcohol dehydrogenase iron type protein	0.00983794	0.00103132
+hypothetical protein	3.97325e-05	2.81092e-05
+Alpha L Rha alpha 1,3 L rhamnosyltransferase	0.00560936	0.000715947
+Transposase IS66 family protein	5.31434e-05	3.47735e-05
+UniRef50_A8LR58	0.00227864	1.5651e-05
+hypothetical protein, partial	0.000302695	4.69518e-05
+Glutamate dehydrogenase	8.39971e-05	0.00250565
+hypothetical protein	6.45085e-06	1.2548e-05
+Malonate transporter, MadM subunit	0.000430524	0.00385861
+Bifunctional uridylyltransferase uridylyl removing enzyme	0.00302236	0.000407253
+manganese ABC transporter substrate binding protein	8.62633e-06	4.90696e-05
+Amidohydrolase homolog	9.50702e-05	0.000758209
+Peptidyl tRNA hydrolase	0.00226319	0.000423882
+Dipeptide transport system permease protein DppB 	2.481e-05	2.26441e-05
+Lipoprotein	3.26717e-05	6.5034e-05
+V type sodium ATP synthase subunit J	2.84874e-05	2.45508e-06
+tRNA specific adenosine deaminase	9.66498e-06	2.49714e-05
+Monosaccharide transporting ATPase	0.00289728	0.000348387
+transposase ISM1, partial	0.000626174	0.000277114
+Anhydrase, family 3 protein	5.158e-05	6.45284e-05
+hypothetical protein	2.10656e-05	6.49596e-06
+hypothetical protein, partial	3.65751e-05	1.89791e-05
+Sulfate adenylyltransferase subunit 1	0.00406807	0.00558486
+UniRef50_A7MQT1	5.00213e-05	9.83899e-05
+NAD dependent dehydrogenase	8.48682e-05	4.97573e-05
+Probable alpha glucosidase	3.7358e-05	1.13728e-05
+Lipoprotein, putative	0.00118612	0.000736606
+Transketolase, central region	0.000177131	0.00130024
+UniRef50_Q72VJ3	3.31611e-05	1.14364e-05
+hypothetical protein	7.2702e-05	2.23206e-05
+TT_ORF1 domain containing protein	5.69959e-05	8.19224e-05
+Periplasmic binding protein	2.54717e-06	1.4682e-05
+DNA polymerase III subunit delta	0.00181891	0.000621097
+Isopenicillin N epimerase CefD	0.000584867	0.000256624
+adenylylsulfate kinase	2.8316e-06	3.70607e-05
+Peptidoglycan binding domain 1 protein	1.00576e-05	1.02858e-06
+Oxygen dependent choline dehydrogenase	0.0237555	0.00438749
+4Fe 4S ferredoxin, iron sulfur binding domain protein	0.00110036	0.000661577
+UniRef50_D3HD08	0.00293073	0.000379829
+helix turn helix domain containing protein	6.68508e-05	2.28473e-05
+EsV 1 162	1.47158e-05	1.38468e-05
+UniRef50_T0QKP7	1.04732e-05	3.46656e-06
+Nod factor export ATP binding protein I	1.02921e-05	2.63724e-05
+Sulfotransferase family protein	0.000612265	0.000193353
+IS5 family transposase	5.63436e-05	2.44732e-05
+UniRef50_Q9RV93	0.000295218	0.0115013
+glutamate synthase, partial	0.000373741	2.3542e-05
+sugar ABC transporter permease	2.95854e-05	1.31334e-05
+hypothetical protein	1.50924e-06	1.36227e-06
+Adenine phosphoribosyltransferase	5.53964e-05	3.31015e-05
+Lysine  tRNA ligase	6.13578e-06	4.86033e-06
+Fasciclin domain protein	0.000247475	3.34883e-05
+UniRef50_Q84F59	0.0145909	0.00201643
+NADH dehydrogenase subunit 4	5.36769e-05	3.03625e-05
+PREDICTED	1.5144e-05	4.34929e-06
+Transcriptional regulator, LysR family	0.000219439	0.000198776
+hypothetical protein	6.78299e-06	5.95621e-05
+hypothetical protein	3.32682e-05	1.82923e-05
+CapB protein	0.0132875	0.00265045
+Argininosuccinate lyase	2.68575e-05	9.93735e-06
+Transposase for IS1272	0.00297516	0.00101167
+Pyrroline 5 carboxylate reductase	0.00166199	0.000242253
+Predicted protein	9.66691e-06	9.22174e-06
+UniRef50_Q9RUB4	0.000381868	0.01907
+UniRef50_S5YGA2	0.00215648	0.000448849
+UniRef50_G4R4C9	2.2203e-05	9.09976e-06
+hypothetical protein	9.9033e-06	4.76948e-05
+UniRef50_R5HYR6	0.000560216	0.000485578
+7 alpha hydroxysteroid dehydrogenase	0.00256672	0.000838163
+UniRef50_I6T5H3	0.00536498	0.000891048
+Transcriptional regulator, DeoR family	0.00466381	0.000443195
+UniRef50_D0FNY6	2.29027e-05	1.43772e-05
+hypothetical protein	5.7967e-05	0.000450354
+Mg chelatase like protein	1.43779e-05	1.42604e-05
+Histidine kinase	0.000163649	0.00453092
+Transglycosylase	9.00488e-05	0.00331548
+PspA IM30	2.97989e-05	0.000136038
+tRNA splicing ligase RtcB	0.00343189	0.000356487
+prolipoprotein diacylglyceryl transferase	7.85929e-06	3.59554e-06
+DNA topoisomerase 4 subunit A	0.00600818	0.000677671
+2 isopropylmalate synthase	1.30208e-05	2.66871e-06
+UniRef50_J7R5F6	0.00353146	0.000600822
+hypothetical protein	5.86985e-06	4.43623e-06
+UniRef50_Q5F6F8	3.70631e-05	7.45944e-05
+hypothetical protein	3.26139e-06	2.46195e-05
+50S ribosomal protein L18	0.000635383	9.37621e-05
+UniRef50_B9KWX6	0.00104887	0.000264106
+Propionyl CoA carboxylase alpha chain, mitochondrial	8.15929e-06	1.70013e-06
+Cytochrome c oxidase subunit 3	8.89998e-05	2.11564e-05
+ATPase	2.89443e-05	9.29182e-06
+Phosphonates import ATP binding protein PhnC	2.30615e-05	8.93569e-06
+Haloacid dehalogenase domain protein hydrolase	0.014439	0.0020414
+UniRef50_B1KTX4	9.24055e-06	3.72485e-06
+gluconate transporter	1.10513e-05	1.31806e-05
+UniRef50_D8TM72	2.35073e-06	1.24425e-05
+TRAP transporter solute receptor, TAXI family	2.96297e-05	2.45225e-05
+WGR domain containing protein	3.09183e-05	2.06516e-05
+Chromosomal replication initiator protein DnaA	7.49878e-05	6.71334e-06
+Multidrug resistance protein MdtL	0.00251214	0.000785268
+Sulfate adenylyltransferase	5.28522e-05	9.01507e-06
+hypothetical protein	4.37741e-06	6.22501e-06
+LPS assembly protein LptD	0.000492977	3.79159e-05
+ABC transporter permease	2.12349e-06	3.20621e-05
+UniRef50_UPI0003506E3F	7.70401e-06	0.000281953
+UniRef50_B0RWV1	3.67673e-05	1.11505e-05
+ADP dependent  NAD(P)H hydrate dehydratase	0.00772311	0.00375391
+UniRef50_J7QYC7	0.00212033	0.000391219
+Potassium transporting ATPase B chain 	9.62777e-06	0.00121325
+Amino acid ABC transporter, amino acid binding permease protein	0.000291805	0.000611711
+Quinone oxidoreductase 2	0.00329065	0.0168279
+PF06224 family protein	1.34897e-05	0.000875413
+PREDICTED	7.36148e-06	5.47548e-05
+Lon protease	0.000126974	0.00405177
+hypothetical protein	1.65207e-05	4.89256e-05
+2,4 dienoyl CoA reductase [NADPH]	0.00192071	0.000287132
+hypothetical protein, partial	0.000151417	1.04401e-05
+Mhp operon transcriptional activator	0.00246617	0.00113851
+Type IV conjugative transfer system lipoprotein 	0.00807043	0.00106596
+UniRef50_E4CEH2	1.07277e-05	1.52225e-05
+hypothetical protein	1.77342e-05	5.48547e-06
+Poly glycerophosphotransferase family protein	0.0111326	0.00223563
+UPF0750 membrane protein YdeO	0.0268906	0.00598042
+UniRef50_W9A418	2.49721e-05	2.72668e-05
+Transcriptional regulator, LysR family	0.00150291	0.000116302
+NADP oxidoreductase coenzyme F420 dependent	1.23065e-05	1.31977e-05
+Ribose transport system permease protein RbsC	0.00355362	0.000844096
+GF24314	2.55252e-06	1.78176e-05
+Integrase core domain protein	0.000717505	0.000452856
+Citrate synthase	0.0211965	0.00696933
+hypothetical protein	5.08165e-06	9.88311e-06
+WGR domain protein	0.000143279	1.75919e-05
+Glycosyltransferase Gtf1	0.0239482	0.00423854
+hypothetical protein	1.87623e-06	7.03288e-05
+Putative multidrug export ATP binding permease protein YgaD	0.0196148	0.00344666
+Flavoprotein involved in K+ transport like protein	3.40559e-06	0.000443481
+UniRef50_UPI0003C116D2	0.000238443	6.5044e-06
+Antiholin like protein LrgB	0.0109432	0.000269194
+Chlorophyllide reductase 52.5 kDa chain	0.00235233	0.000293151
+Protoheme IX farnesyltransferase	0.00364698	0.000223914
+cytochrome C biogenesis protein	3.83256e-05	6.11179e-05
+ISXoo4 transposase	4.83739e-06	1.00427e-05
+Siderophore interacting protein	0.000136439	0.0025713
+Portal protein	7.20704e-06	3.2466e-05
+hypothetical protein	1.00431e-05	7.49652e-06
+UniRef50_D3QH70	0.00470069	0.00168958
+amino acid ABC transporter permease	1.48988e-05	8.3308e-06
+UPF0313 protein PsycPRwf_2008	5.38478e-05	0.00442789
+ABC transporter, permease ATP binding protein	6.76253e-05	0.000462372
+40 residue YVTN family beta propeller repeat protein	0.000200113	1.17095e-05
+Succinyl CoA	4.41466e-06	2.44344e-05
+3 isopropylmalate dehydrogenase	2.81491e-05	1.33102e-05
+Phosphorylase family	0.0101716	0.000365971
+Translation initiation factor IF 2	0.00836938	0.000779669
+Ribonuclease BN like family protein	0.0176507	0.00385799
+UniRef50_K0B0P3	0.00146675	0.00063792
+UniRef50_E6CDL3	0.00106614	0.0016298
+Putative glucoamylase S1 S2	3.44197e-05	2.85934e-05
+hypothetical protein	1.05499e-05	2.76474e-05
+Glutamate racemase	4.28547e-06	1.54508e-05
+oligopeptide dipeptide ABC transporter ATPase, partial	2.4171e-05	4.21767e-05
+Pyrimidine specific ribonucleoside hydrolase rihA	0.0014312	0.000144581
+Multidrug export protein EmrB	0.00405434	0.00287497
+50S ribosomal protein L22	2.05101e-05	3.28217e-05
+Spermidine putrescine transport system permease protein PotC	0.00444813	0.000340445
+Adhesion protein associated protein	6.04671e-06	3.9311e-05
+3 5 exonuclease	9.27145e-05	2.45388e-05
+hypothetical protein	4.92812e-05	1.09561e-05
+Type IV pilus assembly protein PilC	0.000178598	0.00150453
+Putative	0.000141605	0.0024126
+Metallo beta lactamase superfamily protein	9.17587e-05	7.07997e-06
+UniRef50_F0KHD0	0.000125725	4.86434e-05
+UniRef50_V4ZPA3	1.05156e-05	8.50502e-06
+Fructose bisphosphate aldolase, class II	0.000224865	0.000232489
+hypothetical protein	3.85113e-05	7.30703e-05
+ABC transporter	6.06216e-06	4.07362e-05
+fusaric acid resistance protein, partial	4.0783e-06	2.47749e-05
+Putative acid  amine ligase HI_0929	8.76429e-05	0.00405185
+Hydroxyacid oxidase	3.62521e-06	2.0724e-05
+protoheme IX farnesyltransferase	5.05288e-06	5.08714e-06
+phosphate acetyltransferase	3.45304e-06	7.20514e-06
+UniRef50_K2EIZ6	5.25711e-05	7.39164e-06
+UDP glucose pyrophosphorylase	0.00460595	0.000367808
+Pyruvate dehydrogenase	0.00404174	0.00230867
+Major facilitator superfamily permease	0.00028535	0.00226784
+hypothetical protein	7.45386e-05	5.78339e-06
+UniRef50_UPI000350E784	2.68814e-05	2.24778e-05
+UniRef50_P0A9U1	0.00398662	0.000706146
+ArsR family transcriptional regulator	3.76409e-05	7.91844e-06
+UniRef50_P0A9U5	0.00372618	0.00252411
+Ribonuclease PH	2.46643e-05	0.000667961
+UniRef50_T0JW92	0.00932512	0.00506183
+hypothetical protein	0.000157912	2.66862e-05
+Phosphoserine phosphatase	7.23633e-06	7.63019e-06
+Transposase, IS4 family protein	4.52145e-05	1.44294e-05
+UniRef50_S1EIE9	1.91015e-05	2.87792e-05
+hypothetical protein	3.0632e-06	2.692e-06
+UniRef50_C0PC97	0.000135427	1.35768e-05
+Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic	0.0184328	0.00283813
+Surface lipoprotein related protein	0.00598338	0.000398281
+Helicase, putative	0.000362562	0.000843472
+UniRef50_P77427	0.00567362	0.0017454
+UniRef50_X5WUC6	1.30091e-05	2.17037e-05
+UniRef50_C5QZ07	0.0150232	0.000627866
+TraU protein	0.000130719	1.74287e-05
+UniRef50_M0SF49	7.51126e-05	0.000386379
+hypothetical protein	3.98669e-05	1.5793e-05
+TonB dependent receptor	0.00231724	0.000672724
+UniRef50_R8A8K0	0.000163075	1.44955e-05
+PREDICTED	0.000259365	0.000131992
+Membrane protein insertase YidC	0.00332572	0.000747837
+Dolichyl phosphate mannose protein mannosyltransferase	9.89849e-05	0.00274804
+UniRef50_W8YLC5	0.000204007	0.000774453
+NAD dependent dehydratase	9.40545e-06	2.17511e-05
+UniRef50_F0YP70	5.20694e-05	3.13903e-05
+Methyl accepting chemotaxis sensory transducer	0.000253653	0.000692596
+Hydrogenase 4 component B	0.00383414	0.000672937
+Expressed protein 	0.000445267	0.000444392
+Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase	0.000617586	0.000820307
+Peptidyl prolyl cis trans isomerase 9	3.05102e-06	1.79548e-06
+Magnesium transporter, CorA family	0.000283733	0.000100995
+UDP glucose 6 dehydrogenase	0.00244743	0.00224257
+PREDICTED	2.9905e-06	1.03188e-05
+Peptidyl prolyl cis trans isomerase	0.000353023	0.0240749
+urocanate hydratase, partial	1.34902e-05	1.08461e-05
+PHP domain protein	0.000152977	0.00066517
+Cell wall surface anchor family protein	0.000817752	6.88534e-05
+Complete genome, strain Sheeba	7.02607e-05	0.0019235
+UniRef50_U0FZ44	7.47602e-05	1.73559e-05
+UniRef50_C6SMN5	3.56566e-05	0.000288508
+UniRef50_I4EB03	0.000868549	0.000388679
+hypothetical protein	5.16852e-05	2.35272e-05
+Inner membrane protein YhiM	0.00150098	0.000391882
+Histidinol dehydrogenase	3.61018e-06	3.01225e-06
+DNA directed RNA polymerase subunit beta	3.94283e-06	2.71341e-06
+FIST domain containing protein	3.5598e-06	2.99005e-06
+Acyl CoA dehydrogenase	0.000232856	0.00229944
+Cystathionine beta lyase	0.00280973	0.000883573
+UniRef50_R9DK57	0.00157901	0.000897849
+Peptide chain release factor 3	0.0240492	0.00790691
+Disulfide bond oxidoreductase YfcG	0.0028577	0.000243981
+UniRef50_H8FYF0	0.000113129	7.66116e-05
+Metallo beta lactamase family protein	4.21418e-06	7.34463e-05
+UniRef50_N3SI82	6.21159e-05	0.000165251
+lactose phosphotransferase system repressor	7.81741e-06	1.31524e-05
+UniRef50_M0YT93	4.30787e-05	2.94231e-05
+Accessory gene regulator protein B	0.00461583	0.000509441
+Thiol	0.000159502	0.000164743
+UniRef50_A7FJ95	0.00281614	0.0015846
+hypothetical protein	1.27094e-05	8.14597e-06
+N5 carboxyaminoimidazole ribonucleotide mutase	0.000365048	0.00112888
+Galactosamine containing minor teichoic acid biosynthesis protein	0.00842982	0.00120605
+UniRef50_UPI0003C1158B	1.03826e-05	5.39342e-06
+hypothetical protein	2.73153e-06	6.1375e-06
+Transposase IS4 family protein	0.00381025	0.4416
+Plasmid pRiA4b ORF 3 like protein	0.000330193	3.76804e-05
+Ribosomal RNA small subunit methyltransferase C	0.00278324	0.000664146
+Bifunctional purine biosynthesis protein PurH	7.90453e-06	5.18206e-06
+hypothetical protein	0.0111221	0.00138294
+GMP synthase [glutamine hydrolyzing]	5.7825e-06	0.00231693
+UniRef50_E0NC31	0.000855632	0.000166998
+Putative antiporter subunit mnhE2	0.0205554	0.000977353
+hypothetical protein	3.54994e-05	4.74369e-05
+Probable succinyl CoA	6.02187e-05	4.76617e-05
+hypothetical protein	4.162e-05	1.18843e-05
+Rhs family protein	0.00176459	0.000257437
+branched chain amino acid transporter II carrier protein	1.92799e-05	4.16849e-06
+hypothetical protein	1.00928e-05	3.28584e-06
+hypothetical protein	3.12734e-05	7.97502e-06
+Protease HtpX homolog	0.00023659	0.000611342
+UniRef50_K7YQ94	0.00013339	0.00158624
+Phosphoribosylformylglycinamidine synthase	1.05261e-05	4.20514e-06
+UniRef50_Q3IWC2	0.00251021	0.000858383
+UniRef50_D0Z2D3	3.67074e-06	6.89306e-07
+UniRef50_R8ZFX9	0.00082085	0.000366469
+GCN5 related N acetyltransferase	0.000483142	0.000380882
+UniRef50_A0A058Z6L2	5.13331e-05	5.89139e-05
+Smooth muscle caldesmon	0.0043384	0.000992585
+hypothetical protein	3.91392e-06	7.64676e-06
+hypothetical protein	2.86594e-06	3.15073e-06
+Nitrilotriacetate monooxygenase family FMN dependent	0.000338534	9.13376e-05
+UniRef50_J5PQD7	4.72893e-05	2.30176e-05
+Export membrane family protein	2.44069e-05	2.77515e-05
+Aspartate proton symporter	7.90639e-05	0.00480062
+hypothetical protein	6.6985e-06	2.52065e-05
+Arginine biosynthesis bifunctional protein ArgJ	0.00171066	0.000966792
+UniRef50_U5MQZ5	0.000597566	0.00088864
+UniRef50_Q3JUT4	0.000174634	1.4335e-05
+SdrH protein	6.57282e-06	6.10817e-06
+hypothetical protein	8.00969e-06	1.04612e-05
+Integrase	0.303569	0.0580151
+ATP synthase subunit a	0.000162062	0.000602629
+Ferric uptake regulation protein FUR	0.0202664	0.00250806
+hypothetical protein	2.16192e-05	4.31089e-06
+Glycosyl transferase, group 1 family protein	0.00812568	0.00180919
+Aminomethyltransferase	4.04261e-05	0.000144763
+Protein LacX, chromosomal	0.00333965	0.000838732
+Transcriptional regulator, PadR family	8.7598e-05	0.000273661
+UniRef50_A0A022FMT2	0.000101508	1.19032e-05
+sn glycerol 3 phosphate import ATP binding protein UgpC	0.000106317	2.72967e-05
+3 hydroxyacyl CoA dehydrogenase NAD binding subunit	0.000105833	7.63477e-05
+Marine sediment metagenome DNA, contig	1.77402e-05	1.71981e-05
+HTH type transcriptional regulator AdiY domain protein	3.63577e-06	6.12744e-06
+7 cyano 7 deazaguanine synthase	1.52643e-05	1.46055e-05
+Reaction center protein M chain	0.0106092	0.00146895
+Multidrug resistance efflux pump	0.0128214	0.00145165
+membrane protein	9.05596e-06	1.45087e-05
+NADH quinone oxidoreductase subunit I 1	5.50005e-05	4.5873e-05
+UniRef50_P0ACM7	0.00161711	0.0013141
+GMP synthase [glutamine hydrolyzing]	1.03778e-05	8.89665e-06
+HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein	0.000154854	0.00260314
+UniRef50_C3EUD3	0.000737187	0.000413571
+UniRef50_P42360	0.00483898	0.00284808
+hypothetical protein	4.2945e-05	0.000612617
+UniRef50_T0Z4X5	1.73968e-05	1.02599e-05
+hypothetical protein	2.12191e-06	1.96133e-06
+UniRef50_U6ANF3	0.000640307	0.000156967
+hydroxyethylthiazole kinase	3.90352e-06	3.40435e-06
+UniRef50_D8ACP8	0.000444169	0.000272902
+UniRef50_Q7A7G4	0.0416628	0.0041122
+Ribose 5 phosphate isomerase B	0.00548877	0.00365594
+UniRef50_F2ENL3	1.09924e-05	9.42078e-06
+hypothetical protein	2.69311e-05	1.24182e-05
+hypothetical protein	3.17521e-05	2.82362e-05
+Probable L,D transpeptidase ErfK SrfK	0.00310612	0.00144269
+AMP binding protein	1.04299e-05	3.62727e-06
+UniRef50_E1NTN7	4.35472e-05	9.01807e-06
+PT repeat DnaJ domain containing protein	5.35295e-06	4.08863e-06
+UniRef50_J5KRR9	9.06107e-05	9.40296e-05
+YodP	0.000594627	0.000465092
+hypothetical protein	2.53181e-05	3.8721e-05
+tRNA sulfurtransferase	0.00635455	0.00032034
+LigA	5.09261e-05	0.000243549
+hypothetical protein	0.000300141	3.63216e-05
+hypothetical protein	4.40218e-06	7.63854e-07
+hypothetical protein	9.02297e-06	5.69626e-06
+ABC type transporter, ATPase component	0.00102511	0.000500222
+FAD dependent oxidoreductase	6.99685e-05	0.0114021
+Transporter	1.69587e-05	3.51398e-06
+hypothetical protein	2.42051e-05	1.57521e-05
+PfkB domain protein	0.000218538	0.0011613
+Elongation factor G, mitochondrial	6.97186e-06	1.9873e-06
+Peptidyl prolyl cis trans isomerase  (Rotamase)	0.000167172	0.00389576
+Probable bifunctional chitinase lysozyme	0.000275863	3.88679e-05
+UniRef50_G9AU18	0.00031023	3.61211e-05
+UniRef50_D3E347	0.000504826	0.000312839
+Hydrolase HAD superfamily	0.00408396	0.000234982
+ABC transporter ATP binding protein YojI	0.00136609	0.000225379
+UniRef50_X6DV46	0.000507027	6.11307e-05
+cytochrome C biogenesis protein	3.63583e-05	9.72904e-05
+Exonuclease, DNA polymerase III, epsilon subunit	0.000296939	0.00162738
+WdaG	0.000164938	1.32722e-05
+Cell division protein FtsX	0.00359187	0.000882636
+ABC transporter family protein	8.80249e-05	0.00315331
+UniRef50_A3PIS2	0.0112832	0.00169405
+Phenylacetate coenzyme A ligase	0.00310402	0.00327203
+Dipeptide transport system permease protein DppC	0.00340903	0.000429186
+UniRef50_A6NPX7	2.62806e-05	6.29881e-06
+Probable manganese dependent inorganic pyrophosphatase	0.0196485	0.00209872
+Ribonuclease 3	6.41547e-06	9.72134e-06
+UniRef50_I0JK39	0.000124956	0.000232146
+Acetyltransferase	0.000215276	0.000189021
+TetR family transcriptional regulator	0.0069942	0.000166886
+Clumping factor ClfB, fibrinogen binding protein	4.1498e-05	4.43601e-05
+Putative colanic acid biosynthesis glycosyl transferase WcaC	0.00165469	0.0004616
+hypothetical protein	4.90984e-05	8.72826e-06
+Inner membrane protein YbaL	0.00339448	0.000257572
+Cytoplasmic alpha amylase	0.00588899	0.00174003
+hypothetical protein	3.50697e-05	6.60796e-05
+PIN domain protein	0.0129919	0.00160809
+tRNA dimethylallyltransferase	1.0892e-05	0.000369123
+Hexulose 6 phosphate synthase	0.000155092	0.00233868
+UniRef50_C5W449	0.00327343	0.000402124
+UniRef50_B6VLA0	2.7783e-06	2.84512e-06
+D galactonate dehydratase	0.000199425	7.74007e-05
+Exotoxin 15	0.00976627	0.00219801
+hemolysin type calcium binding region	3.85827e-05	5.59364e-06
+ParB domain protein nuclease	9.34635e-05	9.72987e-06
+UniRef50_A3PSB0	0.00331068	0.000446248
+HTH type transcriptional regulator YidZ	0.00214721	0.000290282
+Major facilitator superfamily MFS_1	0.00475628	0.000659532
+FAD linked oxidase, C terminal domain protein	0.0003013	0.00289925
+Phosphate regulon sensor protein PhoR SphS	0.0166231	0.00335812
+UniRef50_G7U4H3	0.000775986	0.00462916
+RNA pyrophosphohydrolase	0.0181484	0.000222791
+3 isopropylmalate dehydrogenase	8.35921e-05	0.00013683
+UniRef50_S5CRE9	0.00041969	0.00497289
+Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.000158999	0.00255986
+LigA	3.23129e-06	0.000101151
+UniRef50_U3STE7	0.00328537	0.000150393
+UniRef50_M9VIL3	9.4008e-05	0.00365584
+SIR2 family protein	0.0132939	0.00230762
+ABC transport system permease	0.000306441	0.00152975
+Taurine import ATP binding protein TauB	1.9497e-05	5.98375e-06
+ATPase	8.85126e-07	1.18553e-06
+2 nitropropane dioxygenase	7.46593e-05	4.11191e-05
+Marine sediment metagenome DNA, contig	5.51615e-06	2.31619e-05
+UniRef50_R1DBP2	4.25079e-05	0.0013755
+UniRef50_C5Z1P3	0.00162718	0.000321368
+Urease accessory protein UreG	0.000332969	0.00156601
+UniRef50_B8LZL2	6.72035e-06	7.78376e-06
+Glyceraldehyde 3 phosphate dehydrogenase	1.55387e-05	1.43331e-05
+UniRef50_G0EU06	2.58719e-05	2.84065e-05
+Pirin domain protein	3.24763e-05	5.08289e-06
+Glutamate  tRNA ligase 1	3.3209e-06	6.24964e-06
+UniRef50_E8XZE4	6.90266e-06	6.06515e-06
+Putative isomerase YbhH	0.00362011	0.000477057
+Argininosuccinate synthase	3.44048e-06	2.55472e-05
+Bifunctional chorismate mutase prephenate dehydratase	0.000274562	0.000114814
+UniRef50_A6LVB7	0.000110882	0.000425664
+UniRef50_Q08NW1	2.69167e-05	1.11689e-06
+Cyclic di GMP phosphodiesterase response regulator RpfG	0.000150919	0.00148496
+RNase E specificity factor CsrD	0.00241186	0.000489799
+acetate permease, partial	0.00010437	0.000112916
+UniRef50_A3JZH8	0.000214285	1.74773e-05
+Predicted CRISPR associated protein	0.00258002	7.24071e-05
+ATP dependent dsDNA exonuclease 	2.88553e-05	0.00135115
+Probable ATP dependent helicase DinG homolog	0.0171259	0.00266766
+Rossmann fold nucleotide binding protein	9.02275e-05	0.00408587
+PREDICTED	2.12054e-06	1.9303e-05
+UniRef50_E3YUW5	0.000208847	0.000677697
+Aldehyde reductase YahK	0.00246586	0.00420788
+UniRef50_V1QTW1	0.00295675	0.000635682
+MULTISPECIES	0.000247904	2.86023e-05
+thioesterase	1.63687e-05	1.69189e-05
+Iron only hydrogenase maturation protein HydF	0.000187981	0.000699682
+UniRef50_Q6FDN2	1.46459e-05	0.000525058
+UniRef50_UPI000273D0E2	2.80041e-05	4.12422e-06
+UniRef50_R7PTK0	0.00313026	0.000364835
+Expressed protein 	0.000143525	0.000230815
+Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1	3.56698e-06	0.000299693
+Potassium transporting ATPase A chain	8.01268e-05	0.00804456
+UniRef50_K2DR39	9.51048e-06	1.64668e-05
+HTH type transcriptional regulator GmuR	0.000914778	0.00238484
+PF03904 domain protein	0.0294143	0.00394045
+PREDICTED	1.55347e-05	5.89549e-06
+DNA topoisomerase 1	4.6478e-06	8.87901e-07
+UniRef50_B2HZ46	0.000205254	0.00504452
+hypothetical protein, partial	1.10237e-05	0.000161211
+Cystathionine gamma synthase, putative	0.00418201	0.000848466
+Sulfatase	0.000746079	9.57458e-05
+Tagatose 1,6 diphosphate aldolase 2	1.75528e-05	0.000799492
+Rhodanese like domain protein	0.000181591	0.000151506
+DNA mismatch repair protein mutS	0.000312805	7.42104e-05
+UDP glucose 4 epimerase	0.00588161	0.00500317
+sugar ABC transporter ATP binding protein	6.77029e-06	3.19537e-06
+UniRef50_G2C2A9	2.51456e-05	0.000198315
+UniRef50_Q1IJ73	6.27365e-06	3.69026e-05
+Urease subunit beta	0.0107085	0.000995209
+Glutamyl tRNA amidotransferase subunit A	9.00854e-05	0.0038656
+hypothetical protein	6.17081e-05	4.69948e-06
+UniRef50_K0S5Y4	0.000166517	5.788e-05
+ABC transporter permease protein	0.0111681	0.00265827
+UniRef50_B9E1A4	0.000162584	0.000679846
+protein HflC	7.54662e-05	8.04067e-06
+Two component response regulator, PprB	0.000584421	0.000468585
+Integral membrane protein	5.91116e-05	0.000297398
+Phosphoenolpyruvate protein phosphotransferase	8.52741e-05	0.00271637
+UniRef50_A8L3Z7	2.36611e-05	4.12084e-06
+Nitrite oxidordeuctase B subunit 	2.06778e-05	1.36949e-05
+Methyl accepting chemotaxis protein	2.22377e-05	4.98998e-06
+6 pyruvoyl tetrahydropterin synthase	3.81837e-05	6.15327e-05
+Thioesterase like superfamily protein	0.027636	0.0028091
+Cell wall binding protein	0.00108474	0.00292277
+2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.00105548	0.000221691
+Phosphoribosylaminoimidazole carboxylase	1.8317e-05	1.19422e-05
+UniRef50_R1BXE4	0.000218685	0.000133442
+amino acid ABC transporter permease	3.5158e-05	3.25317e-05
+hypothetical protein	2.81032e-05	1.69055e-05
+UniRef50_O34947	0.000290128	0.000522233
+Permease of the drug metabolite transporter  superfamily	0.00316434	0.000315842
+UniRef50_S9SJZ0	0.000895045	0.000626654
+threonine dehydratase	2.6007e-06	6.72223e-06
+Transcriptional regulator of sugar metabolism	1.57316e-05	2.6001e-05
+UniRef50_A7FAZ1	0.000227911	0.00669315
+alpha beta hydrolase, partial	6.08267e-05	1.07526e-05
+acyl CoA dehydrogenase	5.9896e-06	1.10855e-05
+Branched chain amino acid ABC transporter nucleotide binding protein ATPase	3.10291e-05	3.46065e-05
+PHB depolymerase	0.00476863	0.000793981
+Glutamate ammonia ligase adenylyltransferase	0.000273241	0.00314806
+Thymidylate synthase	0.000103794	0.000300032
+OmpA MotB domain protein	0.00407543	0.000148165
+UniRef50_F7Y7I2	0.00021034	5.00492e-05
+Cobalt precorrin 5B C methyltransferase	0.000356766	0.000606429
+Phosphosugar isomerase transcriptional regulator	0.000162846	0.000776655
+UniRef50_L0NA87	0.00129221	0.000205987
+PAP2 superfamily protein	0.0156786	0.00337418
+mandelate racemase, partial	0.00268252	0.000746399
+PREDICTED	1.57538e-05	2.75013e-05
+Putative outer membrane lipoprotein	3.85167e-05	3.15015e-05
+UniRef50_Q17WK3	0.00020205	0.000184894
+PREDICTED	3.66368e-05	4.67995e-05
+UniRef50_J0XW17	0.000838632	3.02372e-05
+Methyl accepting chemotaxis sensory transducer	7.59132e-05	0.00023918
+SAM dependent methyltransferase, MraW methylase family	0.00753045	0.00152949
+Lytic transglycosylase, catalytic	0.000168099	4.10041e-05
+Ribosomal protein L11 methyltransferase	0.0223799	0.00477044
+cell division protein FtsW	4.69948e-06	3.48836e-06
+UniRef50_I0C5T1	0.00885277	0.00181697
+UniRef50_L2F8J3	1.35711e-05	1.01865e-05
+hypothetical protein	9.62449e-05	8.77451e-06
+UniRef50_C0PP21	6.92333e-06	6.5926e-05
+UniRef50_I0C5T9	0.0137102	0.00225208
+hypothetical protein	3.51403e-06	9.51855e-06
+Putative transposase InsK for insertion sequence element IS150	0.00193957	0.000414719
+Protocatechuate 3,4 dioxygenase alpha chain	0.000160772	0.00248996
+UniRef50_O32091	0.0222464	0.00442575
+PREDICTED	7.60053e-06	6.53496e-06
+PREDICTED	4.05613e-06	4.73809e-05
+UniRef50_Q9RWU2	3.47196e-05	0.00374489
+hypothetical protein	4.88427e-06	4.35428e-06
+UniRef50_W1A536	9.17295e-05	5.23742e-06
+Bifunctional protein GlmU	3.28986e-06	2.44598e-06
+UniRef50_F0Y3L5	0.000162018	0.000347888
+Cross beta structure silk protein 2	1.83322e-06	3.14149e-06
+hypothetical protein	1.45287e-05	9.98916e-06
+UniRef50_R0NY94	6.62015e-05	0.000216022
+Transposase like protein	0.0199426	0.00131284
+TraU	0.000102632	5.01013e-06
+Transposase, IS4	6.14046e-06	6.8853e-06
+UniRef50_F4S3R3	0.00014721	1.27589e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	4.53728e-06	0.0140405
+hypothetical protein	0.000118723	0.000205357
+UniRef50_H2JMH7	0.000130002	3.49146e-05
+ABC spermidine putrescine transporter, ATPase subunit	0.000103553	0.000139417
+NADP dependent dehydrogenase domain protein	0.000100694	0.000129442
+3 methyl 2 oxobutanoate hydroxymethyltransferase 2	0.00286546	0.000357867
+Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic	0.0135897	0.000945164
+Marine sediment metagenome DNA, contig	0.000214008	3.69366e-05
+DNA directed RNA polymerase subunit beta	3.23445e-06	9.17096e-07
+DNA damage inducible protein, putative	0.000453234	7.45103e-05
+PREDICTED	1.69819e-07	1.73798e-07
+UniRef50_Q49WP2	0.0159148	0.000285939
+UniRef50_H6SJN5	1.97361e-05	1.52713e-05
+UniRef50_M9VCC8	0.000229988	0.0019942
+UniRef50_X2M4F7	3.67138e-05	0.000134833
+Parallel beta helix repeat	0.0176727	0.003569
+citrate synthase I	0.000126674	0.000158133
+UniRef50_A4WZ48	0.00372779	0.000643475
+UniRef50_B9HS46	1.86215e-05	7.32804e-05
+UniRef50_A3UKH7	1.93886e-05	2.22706e-05
+UniRef50_B9KTI0	0.00541417	0.00101071
+Putative acetyltransferase 	0.000611517	0.00057425
+hypothetical protein	7.84386e-06	5.79368e-05
+L tyrosine decarboxylase	0.0024924	0.000249495
+UniRef50_B7LMR0	2.44815e-05	0.000141647
+Ecotin	0.00231378	0.000214796
+UPF0145 protein MTH_507	0.000598843	0.00181652
+Inner membrane transport protein YhjV	4.64036e-06	3.01047e-06
+Adenine phosphoribosyltransferase	1.06981e-05	1.11509e-05
+hypothetical protein	1.88337e-05	3.19111e-06
+Histidine biosynthesis bifunctional protein HisIE	0.0167506	0.00267792
+UniRef50_N1X5N0	7.43396e-05	4.28745e-05
+hypothetical protein	9.98908e-06	5.0238e-06
+nuclease PIN	5.80058e-06	6.21687e-06
+hypothetical protein	8.18536e-06	2.91787e-05
+Secretion protein HlyD family protein	0.000224452	0.00111472
+UniRef50_K4JRS2	3.67531e-06	3.05254e-05
+UDP N acetylglucosamine 2 epimerase	0.0207933	0.00815332
+hypothetical protein	5.56517e-05	9.95763e-06
+Malic enzyme	0.000515117	0.00137882
+FlgD like flagellar basal body rod modification protein	6.22824e-06	4.84323e-06
+KLTH0H11330p	1.99501e-05	2.976e-06
+Dihydroxy acid dehydratase	0.000469305	0.000756899
+Pyridoxine pyridoxamine 5 phosphate oxidase	8.78301e-06	0.000427094
+UniRef50_A7X1Z3	0.00686636	0.000883384
+3 oxoacyl [acyl carrier protein] synthase 3	8.50677e-06	2.72726e-05
+Arginine  tRNA ligase	0.000210938	0.00207552
+Imidazole glycerol phosphate synthase subunit HisF	0.00541045	0.00118809
+hypothetical protein	0.000304471	6.42485e-05
+UniRef50_E9SHD5	0.000680708	0.000165823
+hypothetical protein	8.51466e-05	2.17744e-05
+Cytoplasmic protein	1.75789e-05	1.52889e-05
+LigA	3.48161e-05	0.000109467
+UniRef50_A3UE81	9.71125e-06	1.37039e-05
+MobB like protein	0.00291843	0.000584967
+hypothetical protein	3.09338e-05	6.23558e-06
+Tryptophan repressor binding protein	0.000201526	0.000460233
+Putative membrane protein	9.4884e-05	0.00335953
+ATP dependent RNA helicase RhlB	0.000121352	0.00463105
+Cell cycle protein FtsW	0.000767003	0.000152489
+hypothetical protein	9.33912e-05	1.31749e-05
+Flagellin domain protein	0.000254961	0.000315008
+Bile acid	0.000828216	0.00559693
+Tryptophan 2,3 dioxygenase	0.000459453	0.00439573
+UniRef50_A6VDM0	0.000658221	0.000177097
+hypothetical protein	5.08924e-06	5.70438e-05
+UniRef50_G8V752	0.000240966	0.00191104
+hypothetical protein	1.26951e-05	3.86245e-06
+Cell wall binding protein	0.00121676	0.00101103
+NAD dependent protein deacetylase	0.00135386	0.00145485
+PREDICTED	4.00366e-05	1.20478e-05
+ABC transporter permease	2.30315e-05	3.32566e-05
+UniRef50_B9KM82	0.00050253	8.58442e-05
+Flagellin B	7.77847e-05	0.00526155
+hypothetical protein, partial	0.000109874	1.26452e-05
+UniRef50_L7VNU0	0.000213908	0.000956188
+Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit	5.15079e-06	4.64333e-05
+UniRef50_T0ZIX4	0.000465906	6.59918e-05
+UniRef50_P76482	0.00365211	0.000175361
+Cystathionine gamma synthase	0.0078324	0.00324506
+Probable cytosol aminopeptidase	2.91172e-06	6.42786e-06
+UniRef50_H9UNY1	0.00247104	0.00102228
+Biotin synthase 2	4.24975e-06	8.11112e-05
+Recombinational DNA repair ATPase 	9.99252e-06	3.15545e-05
+O acetylhomoserine aminocarboxypropyltransferase	3.14913e-05	2.18194e-05
+hypothetical protein	2.14896e-05	1.08663e-05
+hypothetical protein	0.000134172	3.06391e-05
+UniRef50_F8JSQ7	1.83932e-05	8.67591e-05
+Methyl accepting chemotaxis sensory transducer	0.000280784	0.000251081
+Alpha amylase, catalytic region	0.00039616	0.0029622
+UniRef50_J9NZQ0	1.36439e-05	3.95829e-05
+hypothetical protein	0.000163754	1.10956e-05
+Cell division protein FtsB	0.00435421	0.000319519
+UniRef50_A0A033TLC6	1.52852e-05	3.75544e-05
+Phage replisome organizer, putative	0.000468871	0.00140571
+hypothetical protein	6.89404e-06	1.16232e-05
+UniRef50_UPI0002C5976A	5.31871e-06	3.08989e-06
+Aldo keto reductase	0.00204889	0.000527821
+plasmid stablization protein ParB	2.63801e-05	0.000522658
+Trigger factor	0.000294536	0.0170918
+UniRef50_D2AEN1	2.34089e-06	4.30943e-06
+Phosphate ABC transporter, periplasmic binding protein	4.02402e-06	3.27525e-06
+Adenylyl sulfate kinase	0.0021658	0.000766399
+GTP binding protein, putative 	3.7351e-06	4.12508e-06
+4 hydroxy tetrahydrodipicolinate synthase	5.17534e-06	1.31166e-05
+transcription termination factor Rho	4.77244e-06	1.56208e-05
+HSP62=62 kDa urease associated heat shock protein 	2.39483e-05	0.000112542
+UniRef50_X0NX98	0.000104154	3.72352e-06
+hypothetical protein	3.02941e-05	1.38094e-05
+Ribosomal RNA small subunit methyltransferase H	0.00484919	0.00075464
+UniRef50_W5Y8P3	1.83488e-05	2.78823e-05
+Carbamoyl transferase	0.00130224	0.000228586
+hypothetical protein	2.32719e-05	0.000106159
+hypothetical protein	7.74301e-05	8.61787e-06
+hypothetical protein	1.54037e-05	1.44815e-05
+hypothetical protein	0.00650117	0.00188796
+UniRef50_Q8CSL5	0.0111383	0.000636544
+UniRef50_Q8CSL4	0.00907818	0.00209247
+UniRef50_R6GNH1	0.00042499	0.000200861
+ATP synthase subunit alpha	2.16937e-06	5.11278e-06
+hypothetical protein	8.67563e-05	1.72156e-05
+hypothetical protein	1.92384e-05	2.57015e-06
+DNA mismatch repair protein MutS	0.000228246	0.000232958
+Isopentenyl diphosphate Delta isomerase	6.53839e-05	9.76153e-06
+hypothetical protein	0.000166236	3.92231e-05
+phosphoribosylaminoimidazolecarboxamide formyltransferase	3.63536e-06	7.51585e-06
+DNA polymerase III subunit chi	1.5339e-05	0.000233815
+UniRef50_I2DEN6	8.49155e-05	0.00150603
+hypothetical protein	5.84689e-06	2.60507e-06
+O antigen polymerase	0.000487626	0.000292338
+UniRef50_Q08021	0.00214709	0.000880244
+acetyl CoA carboxylase subunit beta	6.51331e-06	1.45162e-05
+UniRef50_G2ZT62	3.51308e-06	6.54797e-06
+Protein RecA	0.00297539	0.0028383
+TraU family protein	8.92334e-05	6.14964e-06
+S adenosylmethionine synthase	0.0129255	0.0151766
+GTP sensing transcriptional pleiotropic repressor CodY	0.015561	0.00338894
+TonB dependent outermembrane ferric citrate receptor	0.000796752	9.46755e-05
+UniRef50_G8AGG5	3.78016e-05	3.96565e-05
+hypothetical protein	4.51243e-05	1.13915e-05
+Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons	0.000135378	0.00224375
+Phospholipid binding domain lipoprotein	0.00265047	0.000561155
+hypothetical protein	0.000106847	9.40826e-05
+hypothetical protein	7.96456e-06	2.76994e-06
+hypothetical protein	4.87129e-05	2.06559e-05
+Diphosphomevalonate decarboxylase	0.00368776	0.0019012
+UniRef50_UPI0003C1AF0C	1.16749e-05	7.97973e-06
+Sensory transduction protein BceR	0.0183925	0.00159955
+UniRef50_Q852F2	1.42536e-05	1.26582e-05
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000970164	0.000167822
+hypothetical protein	1.83723e-05	3.96607e-06
+Bifunctional protein GlmU	0.0293123	0.00672759
+Carbamoyl phosphate synthase small chain	1.79366e-05	3.91896e-06
+Lipoprotein releasing system transmembrane protein LolC E family	0.00356447	0.00038649
+Transcriptional regulator	0.010094	0.00114189
+FKBP type peptidyl prolyl cis trans isomerase FkpA	0.00145387	0.000125223
+Mevalonate kinase	0.00226353	0.000194994
+DUF21 CBS domain protein	0.0173843	0.00208633
+hypothetical protein	0.00129632	0.000136509
+Cytochrome c oxidase fixO chain	0.0145994	0.00153589
+UniRef50_B7V416	0.00103805	0.000662352
+Amino acid ABC transporter substrate binding protein	0.000579665	0.000351598
+2 isopropylmalate synthase 2	1.74505e-06	3.18652e-06
+50S ribosomal protein L35	0.00467417	0.00099761
+UniRef50_Q4FME5	8.70121e-06	1.31239e-05
+UniRef50_R1E3V2	7.00656e-05	0.000265838
+peptidase S8	2.38349e-05	0.00595649
+3D domain protein	0.00020563	0.000172663
+Type IV secretion system family protein	1.34525e-05	7.4083e-06
+Acyl coenzyme A dehydrogenase	0.000573063	0.00995285
+hypothetical protein SMAC_10343	6.73106e-06	8.73312e-06
+hypothetical protein	0.00015786	3.34254e-05
+hypothetical protein	8.34351e-06	0.00137826
+hypothetical protein	1.87666e-05	5.5864e-06
+Methionine aminopeptidase	2.33816e-05	0.00125376
+ S malonyltransferase	0.000295547	9.36234e-05
+peptide ABC transporter permease	9.23486e-06	4.23518e-06
+Protein translocase subunit SecA	9.68021e-05	0.00114994
+Ybl54	0.000525857	0.000111545
+hypothetical protein	1.82687e-05	2.20821e-05
+UspA domain protein	0.00168271	0.00012956
+CTP synthase	6.06417e-06	2.50162e-06
+GTPase Obg	0.0004202	0.00179213
+hypothetical protein	1.88559e-05	1.34059e-05
+Holliday junction ATP dependent DNA helicase ruvA	1.87134e-05	6.51554e-06
+CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase	1.14981e-05	1.04597e-05
+UniRef50_F0XVT1	1.09291e-05	2.4784e-05
+hypothetical protein	2.6323e-06	3.04768e-06
+Response regulator receiver protein	0.000195289	0.00054569
+MotB	3.93337e-05	7.52866e-05
+MULTISPECIES	3.94141e-05	1.4806e-05
+Chromosome partitioning protein transcriptional regulator	1.28818e-05	1.47034e-05
+hypothetical protein	2.53035e-05	2.55365e-05
+Marine sediment metagenome DNA, contig	4.94483e-05	0.000166215
+Probable multidrug resistance protein EmrK	0.00279033	0.000588965
+Thioesterase superfamily protein	8.74091e-06	3.09162e-05
+DNA polymerase III subunit alpha	1.56962e-05	1.70528e-06
+UniRef50_A0A023YHP1	1.25551e-05	5.89124e-06
+Riboflavin biosynthesis protein RibBA	1.07015e-05	4.66719e-06
+ABC transporter	5.96299e-06	5.59569e-06
+L serine deaminase	6.11035e-06	4.38029e-06
+hypothetical protein	7.9298e-07	4.87205e-05
+[citrate  lyase] ligase	0.00336559	0.000776342
+Glycerol dehydrogenase	0.000331594	0.000936512
+cold shock protein	4.18226e-05	2.53952e-05
+Serine acetyltransferase	9.21495e-06	0.00680128
+Putative arsenical pump membrane protein 	0.000437147	0.00015863
+hypothetical protein	7.78133e-06	1.56612e-06
+Hydrogenase 4 component A	0.00126193	0.00138608
+Mannitol specific phosphotransferase enzyme IIA component	0.00922053	0.000711519
+UPF0473 protein EF_1204	0.00188608	0.000352097
+UPF0272 protein Cbei_0559	0.000266472	0.000268825
+hypothetical protein	7.9172e-06	3.17703e-06
+UniRef50_A3PLE1	0.0100894	0.00057355
+Neutral endopeptidase PepO	0.000216301	0.000991055
+S1 RNA binding domain	0.000299486	0.000122156
+LexA repressor	0.000183865	0.00180789
+Cell division protein FtsK	0.000197697	2.57042e-05
+Truncated transposase of IS3 family	0.0172903	0.00335222
+UniRef50_M9V8F1	0.000235349	0.001901
+hypothetical protein	1.7038e-05	3.90473e-06
+Permease	0.000943048	8.11798e-05
+hypothetical protein	3.25386e-05	5.74513e-06
+FxsA cytoplasmic membrane protein	0.000429654	0.000275414
+DNA directed RNA polymerase subunit beta	5.92276e-06	6.22017e-06
+hypothetical protein, partial	5.28103e-06	5.69996e-06
+Lactaldehyde reductase	0.00380543	0.00434141
+Glucose 6 phosphate isomerase	0.000648714	0.000191736
+HTH type transcriptional regulator	0.00538317	0.00150894
+UniRef50_Q9RRG5	0.00020947	0.0441234
+UniRef50_Q9RRG4	0.000138166	0.00836546
+Baseplate J like family protein	1.13177e-05	3.11632e-06
+3 oxoadipate enol lactonase	0.00243626	0.00011423
+UniRef50_J9YYN1	0.000144765	2.66255e-05
+Tagatose 6 phosphate kinase	0.00019238	0.00247133
+Heavy metal RND efflux outer membrane protein CzcC family	8.19518e-05	0.00307293
+Oxidoreductase	0.000122381	0.00149081
+Pyruvate dehydrogenase E1 component	4.00927e-05	1.74474e-05
+UniRef50_A6LSX8	0.000214863	0.00132211
+UniRef50_U3U1D9	1.95996e-05	1.25372e-05
+hypothetical protein	1.52941e-05	0.000126126
+Hydrolase, haloacid dehalogenase like family protein	0.0158358	0.00317767
+FecCD transporter	0.0114228	0.00168413
+UniRef50_L1KZ69	7.04164e-05	7.21693e-05
+ABC transporter permease	5.68621e-06	1.55526e-05
+NADH quinone oxidoreductase subunit K	9.02243e-06	2.11001e-05
+Methyl accepting chemotaxis sensory transducer	0.000377463	0.000403391
+translation factor Sua5	8.13934e-05	0.000111545
+UniRef50_F6EUQ1	3.62225e-06	3.51155e-06
+hypothetical protein	1.28631e-05	8.50161e-06
+Catechol 1,2 dioxygenase 1	0.000669705	0.00186017
+mRNA interferase MazF	0.00251505	0.00234465
+UniRef50_A6LZS0	0.000128128	0.000288899
+ABC transporter related protein	0.000214362	0.000540534
+UniRef50_A6LZS9	0.000966249	0.000931303
+hypothetical protein	4.26285e-06	4.15209e-06
+hypothetical protein	1.03211e-05	0.000143108
+UniRef50_A4WVM4	0.0180063	0.00402951
+Cysteine desulfuration protein SufE	0.000150091	1.5511e-05
+amino acid ABC transporter	1.13598e-05	2.45122e-05
+UniRef50_F0YPX2	0.000297102	0.000378495
+dTDP 4 dehydrorhamnose 3,5 epimerase	0.0007378	0.00328587
+UniRef50_M1Z2C4	9.40349e-06	4.51145e-06
+hypothetical protein	2.07026e-06	0.000342301
+hypothetical protein	0.000168528	5.25976e-05
+Cyclic nucleotide binding protein	0.000270082	0.000611333
+DNA replication protein DnaC	0.00112406	0.0011381
+hypothetical protein	0.00015879	3.99042e-05
+TonB dependent receptor	0.000770887	0.000131483
+Two component transcriptional regulator, winged helix family	0.000507385	0.00127887
+Glutamate  putrescine ligase	0.00840421	0.00126406
+Flagellar motor switch protein FliG	0.000821212	0.000240095
+Metal nicotianamine transporter YSL2	5.23675e-05	0.00439386
+Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF	0.00486063	0.000366421
+Nucleoside triphosphatase YtkD	0.0190748	0.00231465
+UniRef50_A6LTZ5	0.000229988	0.000454656
+Transposase, IS3 IS911family	0.00258361	0.00187546
+UniRef50_UPI0003957091	1.15722e-05	1.7525e-05
+Hemerythrin	0.00036253	0.000402623
+Fe ions import ATP binding protein FbpC 1	7.36682e-05	1.3796e-05
+UniRef50_C9D087	0.000677138	0.000105047
+hypothetical protein	3.56421e-06	8.94668e-05
+Glutamate dehydrogenase	0.000123883	0.0118854
+Tellurite resistance protein TehB	2.94484e-05	1.45692e-05
+UniRef50_A6LTZ8	0.000640805	0.000260246
+Ktr system potassium transporter B	2.71851e-05	2.86226e-06
+HMP PP phosphatase	0.00271737	0.000680141
+DNA directed RNA polymerase subunit beta	1.32727e-06	0.00195108
+UniRef50_G9PNM2	0.000230336	9.67676e-05
+hypothetical protein	3.82404e-05	3.54045e-06
+hypothetical protein PFL1_04301	1.94106e-06	2.11016e-07
+Sulfoxide reductase catalytic subunit YedY	0.0118617	0.000284365
+AraC family transcriptional regulator	0.000109983	0.00356291
+UniRef50_V8FJ54	3.41605e-05	1.22816e-05
+2 succinylbenzoate  CoA ligase	4.3691e-06	0.000442781
+UniRef50_R6QTT5	2.09195e-05	6.27571e-06
+N acylamino acid racemase	3.13987e-05	0.00140253
+UniRef50_G7ZBU5	7.83849e-07	1.68071e-05
+Phospho N acetylmuramoyl pentapeptide transferase	4.88925e-06	8.33886e-06
+Elongation factor P	0.0111759	0.00101856
+UniRef50_A0A024K7R9	5.95588e-06	0.00013714
+Molecular chaperone, DnaJ family	0.000389825	0.000659357
+Inner membrane permease YgbN	0.00220801	0.0010435
+Probable phosphoenolpyruvate synthase	1.40198e-06	2.12934e-05
+Phosphoglucosamine mutase	0.000119485	0.018603
+Sulfurtransferase TusD homolog	0.000525857	0.000509469
+UniRef50_A4WUU1	0.000621467	0.000366608
+3 isopropylmalate dehydratase small subunit	0.00208622	0.000251375
+Trehalose synthase amylase TreS	2.37684e-06	2.90623e-05
+ATP dependent Clp protease ATP binding subunit ClpX	0.0382731	0.0190874
+Arginine serine rich splicing factor SR45 transcript VII	9.53939e-05	9.60384e-05
+ABC transporter membrane spanning protein	0.00749307	0.000563404
+UniRef50_E4PYK4	0.00803152	0.000780738
+hypothetical protein	2.46076e-06	5.47782e-06
+Putative dipeptidase SSP1012	0.0193765	0.00273308
+Holliday junction ATP dependent DNA helicase RuvA	2.26361e-05	3.26424e-05
+hypothetical protein	1.94806e-05	7.36405e-06
+UniRef50_Q7ML43	0.000132326	0.000115553
+hypothetical protein	2.66246e-05	4.67555e-05
+UniRef50_R6UK77	1.23995e-05	1.68701e-05
+MarR family transcriptional regulator	0.00900505	0.00151914
+ABC transporter substrate binding protein	4.85947e-05	5.40211e-06
+Spheroidene monooxygenase	0.001035	0.000357974
+UniRef50_B7UZN8	0.0010865	0.000614965
+UniRef50_W6LVN7	5.31866e-05	4.00079e-06
+Fructose 1,6 bisphosphatase class 1	1.93698e-05	4.63276e-06
+hypothetical protein	8.98106e-05	0.000307482
+hypothetical protein	1.70825e-06	6.98053e-06
+Penicillin binding protein 2	0.0176341	0.00268261
+Aspartate transaminase	0.000772281	7.74007e-05
+UniRef50_N6A8S2	0.114676	0.020707
+hypothetical protein	4.41612e-05	6.82601e-06
+UniRef50_V9AXK3	3.82732e-05	0.000525058
+Argininosuccinate synthase, chloroplastic	6.047e-06	5.37301e-05
+hypothetical protein	2.54871e-05	2.38436e-05
+Glutamate 1 semialdehyde 2,1 aminomutase	0.0188748	0.00425911
+UniRef50_T1IAF8	3.94211e-05	7.00897e-05
+UDP glucose 4 epimerase 3	0.00295533	0.00177438
+UniRef50_C7NJ54	2.38752e-05	3.03391e-05
+SnoaL like polyketide cyclase family protein	9.484e-05	3.92255e-05
+Quinone reactive Ni Fe hydrogenase small chain	0.000178009	0.000875506
+Putative metal ABC transporter metal binding protein	1.0607e-05	3.36292e-05
+Integral membrane sensor signal transduction histidine kinase	0.000100462	0.000973076
+UniRef50_C1DR09	0.000126004	6.24335e-05
+Lactose PTS family porter repressor	1.20992e-05	7.34107e-06
+Flavin binding monooxygenase	0.000911852	6.1203e-05
+PTS sugar transporter subunit IIA	8.67517e-06	1.48221e-05
+cell division protein FtsZ	4.92782e-06	1.0773e-05
+UniRef50_W5X4V3	1.42349e-05	0.000185796
+UniRef50_A3TWL6	0.000791127	0.000112186
+UniRef50_D9RF73	0.000118098	0.000116246
+UniRef50_F4NHW2	0.000285669	0.000564685
+hypothetical protein	0.000563014	0.000682744
+arginine ABC transporter ATP binding protein	6.99639e-05	2.10028e-05
+UniRef50_A4EQN9	2.35321e-05	8.46826e-05
+histidine kinase	7.01971e-06	2.82453e-06
+Transposase, RNaseH like family	0.0046615	0.000829111
+UniRef50_U5NRH5	0.0159521	0.0149641
+Glucose 6 phosphate 1 dehydrogenase	9.07261e-06	9.37592e-05
+Ectoine hydroxyectoine ABC transporter, ATP binding protein	0.0147333	0.00332165
+NUDIX hydrolase	0.000334519	1.23105e-05
+UniRef50_Q1NAN1	4.18651e-06	7.98074e-06
+sec independent translocation protein mttA Hcf106	5.03273e-05	2.15746e-05
+3 isopropylmalate dehydratase small subunit	0.0014391	0.000473719
+Phosphoribosylformylglycinamidine synthase I	2.2425e-05	1.67267e-05
+hypothetical protein	4.85868e-05	9.19231e-05
+UniRef50_A0A024HJZ5	0.000274266	5.17194e-05
+Flavodoxin 1	0.00341497	0.000343674
+Flagellar biosynthetic protein FlhB	0.000194138	0.00128854
+Fructan hydrolase FruB	0.0067322	0.00108578
+UniRef50_B7VA67	0.00162293	0.000357902
+UniRef50_Q0A562	2.39988e-05	1.02566e-05
+Ditrans,polycis undecaprenyl diphosphate synthase  farnesyl diphosphate specific)	0.0018264	0.000130054
+Glutathione S transferase YfcF	0.0052788	2.29566e-05
+Phosphotransacetylase	0.00020563	0.000331921
+MerR family regulatory protein	0.0103161	0.000365159
+Putative sialic acid transporter	0.00255453	0.00036758
+Zinc transporting ATPase	1.46617e-05	0.00111901
+ChaC family protein	3.46226e-06	1.69854e-06
+Diaminopimelate decarboxylase	0.00649399	0.000586037
+Ferric iron reductase protein FhuF	0.00301911	0.000149641
+pseudouridine synthase	1.02022e-05	9.03741e-06
+hypothetical protein	4.1876e-05	4.97814e-06
+hypothetical protein	3.44878e-05	2.16464e-05
+UniRef50_G8RZN0	4.90259e-06	1.36762e-05
+UniRef50_Q3J3J9	0.00062632	0.00045118
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	9.94725e-05	9.41985e-05
+Phosphoketolase	0.00034026	0.000130005
+ATPase associated with various cellular activities AAA_5	0.00259846	0.000666245
+CTP synthase	6.00189e-06	1.49219e-05
+Tryptophan  tRNA ligase	0.00416663	0.000722634
+Lactoylglutathione lyase	0.000357906	1.6401e-05
+hypothetical protein, partial	1.51576e-05	2.88767e-05
+UniRef50_G3NMT4	4.8149e-06	0.000194966
+Cytochrome bo ubiquinol oxidase subunit 1	0.00404335	0.00538937
+Galactosyl transferase CpsE	0.000158881	0.000230136
+CobW P47K family protein	9.38342e-06	6.53545e-06
+Predicted membrane associated Zn dependent protease	0.00248623	0.000270599
+UniRef50_A5UP18	0.00245519	0.000515064
+PREDICTED	5.62428e-05	5.48439e-05
+UniRef50_A3SUN2	0.00140331	6.54297e-05
+UniRef50_P64452	0.00409615	0.000871646
+Aerotaxis sensor receptor protein	9.86946e-05	8.76805e-05
+Chemotaxis response regulator protein glutamate methylesterase	6.01992e-05	4.73418e-06
+Guanylate kinase	8.59512e-06	2.70583e-05
+UniRef50_P0AGJ6	0.00199312	9.61294e-05
+PTS system beta glucoside specific EIIBCA component	0.000192889	0.00178738
+UniRef50_U5MWY6	0.00035926	0.000477579
+UniRef50_R4GFK2	1.02683e-05	5.22888e-05
+UniRef50_W7WSH9	3.50636e-05	0.000729686
+Uroporphyrinogen decarboxylase	0.00234021	0.000954232
+Phosphoribosylaminoimidazole carboxylase	1.65901e-05	1.33916e-05
+UniRef50_A0A038FKH8	0.00172931	0.000291871
+UniRef50_B9TKN7	3.17274e-05	1.26812e-05
+Glycerol 3 phosphate transporter	0.0020874	0.000176742
+UniRef50_F9EIW4	0.000169913	1.98832e-05
+molybdenum cofactor biosynthesis protein MoeA	4.62453e-06	2.24763e-05
+Tyrosine recombinase XerS	0.00598356	0.00102752
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.83878e-05	0.00019392
+NADH ubiquinone oxidoreductase chain G	0.000166884	0.000274419
+Probable S methyl 5 thioinosine phosphorylase	0.0014798	0.000124356
+UniRef50_F2LRZ3	2.14072e-05	3.86961e-06
+UniRef50_X7Y8I7	2.63637e-05	8.69453e-05
+Ribonucleotide reductase transcriptional regulator NrdR	3.92608e-05	6.79378e-05
+Inorganic triphosphatase	0.00316775	0.000572924
+Magnesium chelatase 30 kDa subunit	0.000761862	0.000166886
+UniRef50_P25747	0.00202325	0.000239385
+UniRef50_V8G0E8	0.000246828	0.000256519
+NADPH dependent 7 cyano 7 deazaguanine reductase	0.000110589	0.000471608
+UniRef50_Q1GFL6	0.00178435	0.000508171
+UniRef50_A9UPG1	1.86564e-06	4.89212e-07
+hypothetical protein	6.15102e-05	7.72172e-06
+hypothetical protein	0.00040606	7.89193e-05
+Pseudouridine synthase	0.00795701	0.000925703
+4 trimethylaminobutyraldehyde dehydrogenase	7.76631e-06	1.09097e-05
+Oxidoreductase	0.000292868	0.00393793
+Sulfite reductase, subunit C	0.000104518	0.000453771
+UniRef50_A6UYG3	0.000608877	9.31378e-05
+Transposase YhgA family protein	0.000479739	0.000650058
+CarR	1.82984e-05	0.000298691
+amino acid permease, partial	1.87764e-05	7.73429e-06
+5 nucleotidase domain containing protein	1.89465e-06	0.000301786
+Esterase YbfF	0.00252449	0.000729658
+hypothetical protein	7.19732e-06	0.000308124
+Histidine kinase	0.00014773	0.000663151
+UDP galactopyranose mutase	0.00235242	0.00228202
+GTPase Der	0.000439938	0.00361656
+tetracycline transporter	7.56973e-06	0.000136891
+UniRef50_D3QIS4	0.00060098	0.000801651
+Nitrite transporter NirC	0.00332382	0.000309261
+Phosphate acetyltransferase	0.000292668	0.00322889
+UPF0283 membrane protein YE2117	0.00314343	0.000107785
+UniRef50_W7Z054	1.99647e-05	6.32726e-06
+UniRef50_Q9K1N7	0.000686834	0.00416734
+UniRef50_W1YTD2	8.71371e-05	3.9149e-05
+Exodeoxyribonuclease III	0.000952767	0.00336609
+ATP dependent RNA helicase DBP9	4.91632e-06	6.09349e-06
+Predicted ATPase of the ABC class	0.00988643	0.00248719
+UniRef50_D4JAE0	0.000117128	0.000761273
+Phosphopantetheine adenylyltransferase	5.6892e-05	0.000417531
+PTS system transcriptional activator	0.000519792	0.000811459
+Ammonium transporter	0.000164975	0.000142742
+multi anti extrusion protein MatE	1.8886e-05	1.24778e-05
+hypothetical protein	0.00011735	8.43941e-06
+2 succinylbenzoate  CoA ligase	0.0132719	0.00105979
+UniRef50_D3E0E9	0.00277213	0.000451021
+Ribosomal RNA small subunit methyltransferase D	2.67896e-05	9.72799e-06
+ATP synthase subunit alpha	2.95011e-06	9.22333e-06
+Response regulator receiver protein	0.00552906	0.00272075
+PREDICTED	4.07258e-06	8.56683e-07
+methionine ABC transporter ATP binding protein	9.17212e-06	4.25627e-06
+UniRef50_W7VUU1	3.61215e-05	0.000124022
+RpiR family transcriptional regulator	2.38193e-05	1.32725e-05
+AraC type DNA binding domain containing protein	0.000808774	0.00240769
+hypothetical protein	1.9798e-05	1.25207e-05
+TonB dependent receptor	8.98946e-05	0.00391911
+hypothetical protein, partial	1.88065e-05	3.03737e-05
+Acyl CoA thioesterase	0.00418088	0.000772997
+UniRef50_K1UTW6	0.000168426	0.000359317
+UniRef50_D2ZP15	0.00184527	0.000164894
+Bll2159 protein	5.02082e-05	1.17252e-05
+Phenylalanine  tRNA ligase alpha subunit	0.00213798	0.000565301
+Alanine racemase domain protein	0.000705138	0.000272615
+Thioredoxin reductase	0.00343402	0.00166364
+Cell envelope related function transcriptional attenuator common domain protein	4.23047e-06	7.13925e-06
+UniRef50_E1ZFT3	2.57962e-06	6.21045e-06
+	0.000381056	0.000101797
+UniRef50_U3T490	0.00037921	0.00210307
+UniRef50_A4A899	4.09216e-05	1.99026e-05
+UniRef50_A6LY62	0.000377473	0.000393254
+hypothetical protein, partial	9.17884e-05	1.26012e-05
+UniRef50_U6M2X4	2.14158e-05	1.6834e-05
+GAF domain containing protein	1.04108e-05	1.68736e-05
+Protein SprT like	0.022002	0.000995477
+hypothetical protein	1.21846e-05	3.95887e-06
+hypothetical protein	3.19847e-06	7.58739e-06
+Transketolase	5.3619e-05	0.00275431
+Tail fibre protein, putative	0.000181925	0.000463214
+UniRef50_P45550	0.00392613	0.000382113
+Transposase for IS1272	0.00733548	0.000540906
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.41895e-05	5.10591e-06
+50S ribosomal protein L3	0.0117678	0.0025701
+ATP binding protein	0.00229842	0.00060839
+Flavin mononucleotide phosphatase YigB	0.00242818	0.000544302
+Acetyltransferase, GNAT family	0.00612927	0.000798879
+UDP N acetylmuramate  alanine ligase, partial	1.62521e-05	4.43992e-06
+hypothetical protein, partial	9.52635e-05	2.47774e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.1197e-05	5.71154e-06
+UniRef50_B3GYD9	6.67639e-05	1.5877e-05
+hypothetical protein	0.00086059	0.000927123
+UniRef50_O67444	8.05896e-06	1.13261e-05
+DNA processing protein	5.60527e-05	2.51013e-05
+hypothetical protein	1.7221e-05	1.47396e-05
+Protein TsgA homolog	0.00265125	0.000404079
+Diguanylate cyclase  domain protein	7.97508e-05	0.000231081
+UniRef50_K2SED6	0.000122185	3.79462e-05
+UniRef50_Q9RXB5	3.44589e-05	0.0110121
+UniRef50_Q9RXB7	0.000218538	0.0280509
+Ser Thr phosphatase family protein	9.81191e-05	0.00110695
+NADH dehydrogenase subunit M	6.94392e-05	0.00174612
+Putative fumarate hydratase subunit alpha	0.0029398	0.000117213
+Radical SAM domain protein	0.000296022	9.461e-05
+UniRef50_L7WSQ0	0.0234508	0.00316739
+Rsp	8.99862e-05	0.00210872
+alcohol dehydrogenase	8.96151e-05	1.67981e-05
+Predicted flagellar hook capping protein	7.60107e-06	5.94259e-06
+Dihydrolipoamide dehydrogenase	7.85716e-05	0.00100263
+Glycerol kinase	2.41768e-05	6.40648e-05
+50S ribosomal protein L3	0.00778314	0.000944401
+UniRef50_J9B6L5	8.72988e-06	9.00862e-06
+LysR family transcriptional regulator, partial	3.5772e-05	1.0462e-05
+Acetolactate synthase small subunit	0.0106316	0.00076764
+Outer membrane usher protein FimD	0.00269195	0.000587199
+Malonyl CoA acyl carrier protein transacylase	0.00156492	0.00114388
+hypothetical protein	3.83491e-05	9.28496e-06
+hypothetical protein	9.59785e-06	2.24669e-05
+UniRef50_V9UBP5	0.000123223	8.38327e-05
+UniRef50_I1EPG5	2.01934e-05	2.40249e-05
+UniRef50_E9BYY8	1.84695e-06	8.37258e-06
+UniRef50_I2QVL7	3.81786e-05	1.35833e-05
+UniRef50_E3A0E2	0.00039197	0.00170484
+hypothetical protein	0.000181965	1.3369e-05
+50S ribosomal protein L7 L12	0.00170847	0.00098358
+Histidine kinase, putative	0.00370705	0.000739623
+hypothetical protein	8.73073e-06	0.000120136
+PREDICTED	7.72853e-06	1.97589e-05
+UniRef50_A4X0E6	4.85785e-05	1.70326e-05
+UniRef50_G8V4L1	0.0121874	0.00159711
+Alkyl hydroperoxide reductase subunit F	6.87564e-05	0.000119759
+Transcriptional regulator, AraC family	0.000202965	8.92494e-05
+UniRef50_U4TYH6	0.00145118	0.000355868
+GNAT family acetyltransferase	3.45083e-05	1.21861e-05
+membrane protein	0.000448021	1.69992e-05
+AraC family transcriptional regulator	0.000101314	6.87819e-06
+UniRef50_F0Y7I6	0.000204712	0.00016679
+transcription termination factor Rho	1.05959e-05	3.35683e-06
+UniRef50_D0IRH3	0.000183906	0.000641096
+Adenine deaminase 2	2.47214e-05	3.74956e-06
+UniRef50_W1FF26	0.000474859	1.36641e-05
+Caspase 1, p20	0.00339841	0.000551033
+Cupin domain protein	1.67582e-05	2.49865e-05
+hypothetical protein, partial	2.59869e-05	7.56247e-06
+Tryptophan synthase beta chain 2	1.3676e-05	5.05142e-06
+Chorismate synthase	3.97521e-06	9.35959e-06
+ErfK YbiS YcfS YnhG family protein	0.00407889	0.00273258
+Ferric uptake regulator, Fur family	0.00955413	0.00115998
+2,3 cyclic nucleotide 2phosphodiesterase 	0.000337756	0.000556639
+UniRef50_D7A6Y6	9.58902e-06	4.07342e-06
+Pyridine nucleotide disulfide oxidoreductase family protein	4.4117e-05	0.00139552
+Uroporphyrinogen III C methyltransferase	4.81391e-05	0.00012956
+4 hydroxy tetrahydrodipicolinate synthase	4.84588e-06	1.48361e-05
+Transketolase	3.43121e-05	8.96919e-06
+Ribosome binding ATPase YchF	0.00693152	0.00265847
+UniRef50_D9RHA1	0.00709418	0.000781147
+UniRef50_A5IVA9	0.0103793	0.00156411
+hypothetical protein	2.02214e-05	1.48382e-05
+hypothetical protein	6.88826e-05	2.17952e-05
+3,4 dihydroxy 2 butanone 4 phosphate synthase	1.32973e-06	5.10708e-06
+hypothetical protein, partial	2.59573e-05	4.95621e-06
+Aromatic compounds catabolic protein	1.00378e-05	8.04534e-06
+Molybdate ABC transporter, periplasmic molybdate binding protein	0.0152643	0.00277004
+PREDICTED	5.12262e-05	0.000121386
+hypothetical protein	3.04234e-05	3.06476e-06
+Inner membrane protein YgaP	0.00124953	0.000361971
+ABC transporter	4.17134e-06	9.87539e-06
+Taurine transporting ATPase	0.000122381	0.000410349
+Ribosome maturation factor RimP	0.0049676	0.00141426
+Ribonucleoside diphosphate reductase subunit beta	0.0160982	0.00244591
+Marine sediment metagenome DNA, contig	2.30784e-05	8.50238e-05
+transport system permease	2.4579e-05	9.74567e-06
+3 dehydroquinate dehydratase	4.80481e-05	1.18392e-05
+UniRef50_K0RWJ4	3.84352e-06	2.78362e-06
+UniRef50_A3TPX9	6.33613e-05	0.000701703
+preprotein translocase subunit TatA	5.70361e-05	2.42598e-05
+Glutamine amidotransferase subunit PdxT	0.0162556	0.00334291
+DNA repair protein RecN	0.00532607	0.00279233
+ABC transporter	5.22603e-06	4.62708e-05
+Cell division protein FtsZ	0.000298349	0.00176713
+Transcriptional regulator, LuxR family	0.0117089	0.0024538
+hypothetical protein TGME49_010350	2.4597e-05	1.08923e-05
+Cobalt transport protein	1.79585e-05	2.1775e-05
+Trap transporter solute receptor, taxi family	4.41658e-05	5.82353e-06
+GTP cyclohydrolase MptA	0.00270772	0.000225333
+Aminotransferase	0.00699587	0.00130652
+Cyclopropane fatty acyl phospholipid synthase	0.000265976	0.000243598
+Anaerobic glycerol 3 phosphate dehydrogenase subunit A	0.00230792	0.000197617
+Protein flp	0.00825825	0.00159045
+PTT family thiamin transporter	0.0036492	0.000146468
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	5.67961e-06	4.46152e-06
+Ribosomal RNA small subunit methyltransferase F	0.00279682	0.000423681
+UniRef50_U7PCU9	4.0678e-05	0.00169406
+aldehyde dehydrogenase	3.41063e-06	3.12713e-06
+Short chain dehydrogenase reductase SDR	3.55436e-06	1.96346e-05
+Elongation factor Ts	0.0044923	0.00202782
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.00216905	9.08081e-06
+amidase	1.68352e-05	3.81507e-06
+Tryptophan biosynthesis protein TrpCF	0.00315492	0.000303892
+hypothetical protein	3.56662e-06	3.92106e-06
+CobQ CobB MinD ParA nucleotide binding domain protein	6.22021e-06	3.26345e-05
+aspartate ammonia lyase	3.2628e-05	1.199e-05
+glucose 1 phosphate adenylyltransferase	9.67432e-06	1.27115e-05
+UniRef50_Q46802	0.00457635	0.000538467
+Pyruvate carboxylase subunit A	6.96995e-06	7.82084e-06
+Secretory antigen SsaA like protein	0.00781341	0.00222433
+Glucoamylase S1 S2	0.000176922	9.48571e-05
+UniRef50_Q46809	0.00297384	0.000258384
+UniRef50_Q46808	0.00282279	0.00106897
+UniRef50_B0VB06	0.000239253	0.000382474
+Signal peptidase I	0.000937372	0.000447665
+Protein TolB	0.000222759	0.00546648
+Heavy metal translocating P type ATPase	0.000322281	0.000163335
+Glutamyl endopeptidase	0.0074861	0.000578053
+UniRef50_A0A011EDI0	1.94774e-05	3.224e-05
+Beta aspartyl peptidase	0.00136127	0.000173366
+UniRef50_A6FSN1	3.1936e-06	9.79613e-07
+PREDICTED	7.25419e-05	1.8729e-05
+hypothetical protein	4.13053e-06	1.65401e-06
+hypothetical protein	7.71783e-07	1.74058e-05
+anti sigma regulatory factor	2.06811e-05	0.00053088
+TonB dependent siderophore receptor family protein	0.000107366	0.00347038
+hypothetical protein	0.000405034	2.01005e-05
+N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase	0.00377697	0.000472971
+UniRef50_E1VQ96	0.000669795	9.52119e-05
+Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA	0.000768855	0.000108938
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.00285499	0.000167626
+4 hydroxybutyrate coenzyme A transferase	0.000769424	0.00106658
+Putative agmatine deiminase	0.00541869	0.00224918
+Fructose 1,6 bisphosphatase class 1	1.54848e-05	4.9502e-06
+Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000672513	0.000586822
+Bifunctional protein FolD	1.17507e-05	2.11277e-06
+hypothetical protein	2.3624e-05	2.68731e-06
+MazG family protein	0.00052861	0.0026797
+UniRef50_P76909	0.00298638	0.0004985
+Peptidase U32	4.98837e-05	0.0100358
+pseudouridine synthase	5.51211e-06	2.66203e-06
+tRNA  2 O) methyltransferase	0.0274883	0.0131846
+UPF0061 protein RHE_CH01223	6.89178e-05	0.000493316
+UniRef50_V4HW78	3.02232e-06	0.000100647
+UniRef50_A4EDG0	0.000203298	3.65521e-05
+Lipid II flippase FtsW	0.000266986	0.00147453
+Pathogenesis related protein 1 like protein	1.08861e-05	2.23718e-05
+hypothetical protein, partial	2.33159e-05	9.92741e-06
+Beta lactamase domain containing protein	0.000281932	3.30828e-05
+Nitrite reductase [NADH], large subunit	0.0255902	0.00394803
+GTP cyclohydrolase 1	0.000369458	0.0271012
+Zinc metalloproteinase	1.93711e-06	0.000642777
+Ornithine cyclodeaminase mu crystallin family protein	0.00712693	0.00197506
+hypothetical protein	2.22854e-05	1.64045e-05
+Segregation and condensation protein B	0.00155631	0.0012823
+Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase	0.00311935	0.000576887
+Electron transport complex subunit E	0.00330489	0.00104275
+arabinose transporter permease	7.82412e-06	3.94361e-06
+UniRef50_Q57661	0.00580401	0.000393793
+Probable aminomethyltransferase	7.02473e-06	2.64954e-05
+UniRef50_U1W1Q2	1.55635e-05	0.000563906
+UniRef50_V5VE78	0.000157115	0.00268551
+Ribonuclease Z	0.000415172	0.00281968
+Membrane protein	0.00308631	0.00103512
+Acetate CoA transferase subunit alpha	0.00118376	0.000769174
+Lipid A disaccharide synthase	0.00275611	0.000612609
+hypothetical protein TREMEDRAFT_38243	1.69999e-05	6.51535e-05
+UniRef50_Q3JKL4	3.44119e-05	2.93432e-05
+hypothetical protein	9.52698e-05	4.56538e-06
+Homoserine dehydrogenase	0.000106503	0.00884893
+UniRef50_R5ZCF8	3.04057e-06	7.39141e-06
+hypothetical protein	3.67557e-06	1.61324e-05
+NADP specific glutamate dehydrogenase	1.08945e-05	3.6688e-05
+hypothetical protein	3.11683e-06	2.81534e-06
+UniRef50_R0DWK7	6.57064e-05	5.15858e-05
+Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase	0.000189783	0.00301958
+hypothetical protein	5.39126e-06	1.76079e-05
+adenosylcobinamide kinase	2.1262e-05	2.05867e-05
+UniRef50_I4E1R6	0.0161581	0.00131732
+UniRef50_A4E9H7	3.01594e-05	0.000231488
+sugar ABC transporter substrate binding protein	4.43139e-06	1.05723e-05
+hypothetical protein	6.09197e-06	5.26279e-06
+Multidrug resistance protein B	0.0055458	0.001047
+UniRef50_B9TDS9	3.94488e-05	1.23195e-05
+hypothetical protein	1.22629e-05	4.37402e-05
+Predicted protein 	0.000124234	1.97677e-05
+Glutamate synthase	0.00114142	6.43619e-05
+Putative ABC transporter periplasmic binding protein YdcS	0.00342139	0.000747191
+Phosphatidylethanolamine N methyltransferase	0.00226658	0.000663362
+UniRef50_F5L317	1.72766e-05	8.65975e-06
+hypothetical protein	7.04069e-06	1.03887e-05
+hypothetical protein	1.11635e-05	1.06209e-05
+UniRef50_F8JXJ3	1.10926e-05	3.35714e-06
+Exodeoxyribonuclease 8  (EXOVIII)	0.000672874	0.000190114
+UniRef50_H3WGZ6	0.000416386	0.000184803
+Ribonuclease Z	0.00296239	0.000360366
+UniRef50_Q9P9X3	0.00206434	0.00010727
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00785695	0.00056043
+PE PGRS family protein	2.85886e-06	4.21118e-05
+UniRef50_V8FTC7	0.00143525	0.000443097
+L threonine dehydratase biosynthetic IlvA	1.2542e-05	0.000253768
+UniRef50_Q9RU40	0.000122828	0.0129852
+zinc ABC transporter permease, partial	9.8744e-05	4.50017e-05
+Ferrous iron transport protein B	0.00419544	0.000755292
+hypothetical protein	2.12311e-05	1.38222e-05
+Nitrogenase iron protein 2	0.00529819	0.000842665
+hypothetical protein, partial	3.87676e-05	0.00121836
+Autoinducer 2 kinase LsrK	0.000663945	7.03643e-05
+UniRef50_Q3JQJ9	0.000329941	2.86731e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00832506	0.00105305
+PREDICTED	2.32115e-05	1.1007e-05
+DNA directed RNA polymerase subunit beta	4.06602e-06	1.67355e-06
+YliJ	0.000324386	0.00203811
+M48B family peptidase	0.00153347	0.00138131
+SAM dependent methyltransferase	1.4624e-05	1.11375e-05
+Manganese ABC transporter, inner membrane permease protein SitD	0.0136319	0.00213961
+Tyrosine  tRNA ligase	3.26795e-06	2.35563e-06
+Bacterial regulatory s, tetR family protein	0.000190859	0.00220454
+PREDICTED	1.01289e-05	3.37639e-06
+aspartate aminotransferase	1.17831e-05	1.22105e-05
+Ferric uptake regulation protein	0.00544767	0.0168962
+FAD linked oxidase protein	3.87431e-05	0.000604145
+Alpha beta hydrolase	0.000302089	0.000637891
+Penicillin binding protein 2B	0.00036102	0.00225132
+DNA mismatch repair protein MutS	1.88418e-06	3.14699e-05
+UniRef50_L7EXS1	4.08641e-05	1.28438e-05
+phosphoribosylaminoimidazole carboxylase ATPase subunit, partial	1.41719e-05	6.8507e-06
+GroEL 	1.65989e-06	1.14512e-05
+Probable transaldolase 2	0.000145588	0.000260261
+Glyceraldehyde 3 phosphate dehydrogenase, glycosomal	4.30986e-05	0.00300778
+V type ATP synthase subunit E	0.00487589	0.000764126
+hypothetical protein	1.19752e-05	1.2846e-05
+Cation exchanger, putative	0.000132714	7.76574e-05
+Electron transfer flavoprotein ubiquinone oxidoreductase	2.11902e-05	2.28858e-05
+Formate dehydrogenase subunit beta	0.00402791	0.000674839
+Rubrerythrin	0.00020605	0.000335994
+Transcriptional regulator	0.00024807	0.000209289
+Type F conjugative transfer system protein TraW	6.85132e-05	9.83547e-06
+Efem EfeO family lipoprotein NMB0035	0.00185722	0.00288259
+ADP L glycero D manno heptose 6 epimerase	0.00218469	0.000282428
+hypothetical protein	2.41064e-05	1.31792e-05
+hypothetical protein	2.81108e-06	5.09622e-06
+Pts system, trehalose specific iibc component	0.000455987	0.00135103
+Pirin	6.406e-06	6.04343e-06
+Cobalamin biosynthesis like protein	0.0203472	0.00494336
+alcohol dehydrogenase	4.73979e-06	4.86925e-06
+Ribose import ATP binding protein RbsA	2.85997e-05	8.95368e-06
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.47693e-05	1.05688e-05
+hypothetical protein	1.71569e-06	1.03904e-06
+hypothetical protein	4.32566e-05	9.74284e-06
+UniRef50_G2QJ48	7.39772e-06	1.76911e-06
+Drug transporter, putative	0.00928897	0.00218765
+Outer membrane lipoprotein	0.0116402	0.0033028
+Extracellular cysteine protease	0.018287	0.00163701
+Multicopper oxidase, type 3	0.000113955	0.00010727
+Phenol hydroxylase, putative	5.79076e-05	3.64846e-06
+ATP dependent 6 phosphofructokinase	6.70685e-06	0.00416632
+Phenylacetaldehyde dehydrogenase	0.00264792	0.000555757
+acyl transferase	0.000122275	7.9387e-06
+Uridylate kinase	0.000231768	0.0049505
+hypothetical protein	2.01707e-05	5.81619e-06
+Adenylate cyclase	0.000848154	3.5828e-05
+Hemin import ATP binding protein HmuV	1.05049e-05	0.000681631
+TadG	0.00107483	5.37312e-05
+UniRef50_A5UNR9	0.000292651	0.000270436
+TonB dependent receptor protein	0.0113955	0.00140087
+UniRef50_M3AAW3	6.58608e-05	1.38558e-05
+GntR family transcriptional regulator	1.72536e-05	8.09521e-06
+Serine hydroxymethyltransferase	0.00248275	0.000527047
+transposase Tn3	6.23353e-06	0.000267805
+Pyruvate kinase	0.000754212	0.00111752
+transposase, partial	0.000110486	0.000214937
+UniRef50_J7R4E7	0.0028677	0.0027221
+UniRef50_W8EY20	2.97128e-05	1.38135e-05
+UniRef50_A0A037YSW4	8.41552e-05	3.06817e-05
+hypothetical protein, partial	7.31481e-06	1.4325e-05
+Folylpolyglutamate synthase	0.00129559	0.00024867
+UniRef50_D3E3E5	0.000729604	0.000830356
+hypothetical protein, partial	2.13969e-05	2.98523e-05
+UniRef50_W5L6H6	8.59273e-05	8.17181e-05
+UniRef50_D7FUW4	4.39951e-05	1.01247e-05
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.0117429	0.00254405
+ABC transporter permease protein	0.00388429	0.000760338
+hypothetical protein, partial	1.04227e-05	6.50868e-06
+Isopentenyl diphosphate delta isomerase	0.0234374	0.00286763
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00132733	0.000206367
+Chaperone protein dnaK3	0.0108068	0.00164266
+hypothetical protein	1.30294e-05	1.06634e-05
+p aminobenzoyl glutamate transport protein	0.00234047	0.000194244
+UniRef50_K8EYP9	0.00514739	0.00254066
+Marine sediment metagenome DNA, contig	6.55759e-06	0.00100273
+Polysaccharide ABC exporter membrane spanning protein	0.00242003	0.000358893
+UniRef50_X7E7Z7	0.000133218	5.6131e-05
+DedA family protein	0.00651577	0.000752111
+Acetylglutamate kinase	0.000401263	0.004423
+UniRef50_UPI0003C18C5D	8.71023e-06	2.39415e-05
+UniRef50_J8RTD6	7.39829e-06	7.89727e-06
+UniRef50_W1BD39	8.14173e-06	8.05221e-05
+UniRef50_I0C802	0.00431277	0.00101205
+Organic hydroperoxide resistance protein	7.46146e-06	2.26703e-05
+hypothetical protein	9.2251e-06	6.74855e-06
+DNA invertase	2.91004e-05	8.58957e-06
+UniRef50_A4IK10	6.9718e-06	7.17039e-06
+Regulatory protein YeiL	0.00117592	0.000135218
+hypothetical protein	8.39703e-05	3.19914e-05
+PREDICTED	8.32942e-06	2.04767e-06
+Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase	0.000201671	0.00295655
+Predicted protein 	0.000208978	0.000142272
+glucose methanol choline oxidoreductase	7.49687e-06	5.84239e-06
+Peptidoglycan glycosyltransferase	0.00201588	0.000271209
+UniRef50_A3PKF9	0.000250346	0.000251431
+Protoheme IX farnesyltransferase	8.27704e-06	1.62768e-05
+UTP  glucose 1 phosphate uridylyltransferase	0.00672131	0.00247349
+Response regulator UvrY	0.00179712	0.000139852
+Poly A polymerase family protein	0.000453729	0.000951221
+Transposase, IS4 family	1.93388e-05	0.0169586
+L asparaginase 2	0.00216053	0.00242655
+UniRef50_P40882	0.00245593	3.27183e-05
+Fumarate hydratase class II	5.7093e-06	2.20444e-06
+Glutamine  tRNA ligase	0.000157223	0.00262228
+UniRef50_W3SJV3	0.000346957	0.000676341
+Tat  pathway signal sequence	0.000419323	0.00250279
+hypothetical protein	0.000417209	0.000839111
+hypothetical protein	1.85956e-05	1.42652e-05
+Signal peptidase I	0.00019797	0.000373964
+Adhesin like protein	0.00336127	0.000360866
+Site specific recombinase, phage integrase family	0.00019123	0.000172998
+UniRef50_Q4A4A3	0.000193033	0.000575544
+Protein SprT	0.000615823	0.000180291
+Isocitrate dehydrogenase [NADP]	0.0090489	0.00142185
+Outer membrane protein assembly factor BamA	5.2531e-05	0.0018441
+UniRef50_Q8CT38	0.0133643	0.00204598
+N acetylgalactosamine permease IIC component 1	0.00288437	0.000808539
+GAF domain GGDEF domain EAL domain protein	0.000549568	0.000355725
+hypothetical protein	4.79499e-05	1.799e-05
+PREDICTED	6.37309e-05	6.06639e-05
+Hydroxyacylglutathione hydrolase	0.0138309	0.00395573
+ketol acid reductoisomerase	3.44548e-06	9.92096e-06
+Energy coupling factor transporter ATP binding protein EcfA2	0.00880899	0.00188582
+hypothetical protein	2.84807e-05	1.28141e-05
+UniRef50_B7UX08	0.000498022	0.000263018
+hypothetical protein	3.55397e-05	1.50382e-05
+ATP dependent helicase	0.000317707	0.00145849
+Sensor histidine kinase RegB	0.00366141	0.000868866
+UniRef50_Q1RF65	0.000249479	0.000239426
+Sel1 like repeat protein	0.00035803	0.00318971
+methyltransferase, partial	3.50367e-05	1.92074e-05
+UniRef50_L2YYW7	5.72274e-05	0.000226729
+Pyrazinamidase nicotinamidase	0.00575762	0.000561155
+UniRef50_A5UKM8	0.00386627	0.00033921
+PREDICTED	6.27998e-05	5.41591e-05
+UniRef50_B9KRZ3	0.00940096	0.000848661
+Phage amidase	0.0120854	0.000685511
+4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000518338	0.000461244
+UniRef50_I3XDK3	2.36973e-05	8.62603e-06
+Glutamate  cysteine ligase , divergent, of Alpha and Beta proteobacteria type	0.000152501	0.00164422
+Integral membrane protein	8.29618e-05	0.00143978
+DNA primase	3.23333e-06	2.28472e-06
+Glucose 1 phosphate thymidylyltransferase	7.20351e-06	7.84099e-06
+ABC transporter permease	5.84671e-06	5.86801e-06
+Membrane protein	8.27955e-06	4.18465e-05
+UniRef50_A0A059IJL8	0.000199036	7.21658e-05
+Diguanylate cyclase domain protein	0.00111845	3.60727e-05
+6 pyruvoyl tetrahydropterin synthase	0.000281459	7.32025e-05
+Probable metal binding protein YrpE	0.00879754	0.000283233
+Two component transcriptional regulator, winged helix family	0.000341097	0.0011617
+hypothetical protein	2.49013e-06	5.26476e-06
+UniRef50_G8VC64	0.00161871	0.00224549
+urea ABC transporter ATP binding protein UrtE, partial	0.000105815	2.43225e-05
+hypothetical protein PFL1_06357	6.31604e-06	8.9964e-06
+Fis family transcriptional regulator	3.30447e-05	2.14476e-05
+UniRef50_C2QZX3	5.82861e-06	0.000447659
+Isochorismatase family protein	0.00583215	0.000163543
+hypothetical protein	5.25829e-05	8.97074e-06
+UniRef50_J9JHU2	0.00019797	0.000141766
+UniRef50_A0A031K6Z2	2.98997e-05	9.98085e-06
+hypothetical protein	0.000224955	2.08739e-05
+hypothetical protein	0.00783408	0.00164008
+hypothetical protein	1.34488e-05	8.19953e-05
+Conserved protein	0.00265802	0.00129826
+UDP pyrophosphate phosphatase	8.39596e-05	7.36392e-06
+UniRef50_M2ADJ2	6.58199e-05	1.26611e-05
+hypothetical protein	0.000331639	0.000395343
+Flagellar biosynthetic protein FliR	0.00314177	0.000326914
+glutamine ABC transporter ATP binding protein	7.51729e-05	1.3622e-05
+ABC branched chain amino acid transporter, inner membrane subunit	0.00402352	0.00115962
+UniRef50_H1V624	9.01245e-06	3.70121e-06
+cold shock protein, partial	4.01287e-05	1.04146e-05
+membrane protein	7.64367e-05	1.65586e-05
+UniRef50_A4WQX9	0.00541423	0.00044461
+LacI family transcription regulator	0.000325274	0.0020649
+Iron sulfur cluster assembly 2	6.00424e-05	6.8699e-05
+Prophage LambdaSa1, minor structural protein, putative	0.000226728	9.73131e-05
+UniRef50_F0YEK3	8.0276e-06	4.80527e-05
+PREDICTED	4.11331e-05	5.99719e-06
+hypothetical protein	2.51949e-06	2.14989e-06
+Ferredoxin  NADP reductase	0.00374591	1.82178e-05
+PREDICTED	5.88992e-06	1.54215e-06
+Long chain fatty acid transporter, putative	0.00057449	5.09647e-06
+UniRef50_D8TNQ9	1.63782e-05	9.00565e-06
+DNA gyrase subunit A	0.00458444	0.00392529
+Phosphomethylpyrimidine kinase	0.00201981	0.000358432
+hypothetical protein	4.60124e-05	6.97801e-05
+UniRef50_J3P8W6	0.000169974	0.000151153
+Glucose 1 phosphate adenylyltransferase 2	8.28919e-06	1.03478e-05
+UniRef50_G4LJ72	0.00050473	0.000281016
+UniRef50_X6F3D8	7.04292e-06	0.000164591
+ABC transporter related protein	0.00173241	0.000409592
+hypothetical protein	2.73089e-06	1.58687e-05
+hypothetical protein	3.51407e-06	1.6062e-06
+Ferredoxin NADP reductase subunit alpha	0.000117359	4.29363e-05
+30S ribosomal protein S9	0.00180973	0.00302335
+2 heptyl 3 hydroxy 4 quinolone synthase	0.00066838	0.000176944
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.35963e-05	2.47808e-05
+hypothetical protein	2.46869e-05	2.34162e-05
+50S ribosomal protein L6	2.57094e-05	0.000166224
+hypothetical protein	3.46998e-06	0.000111068
+8 amino 7 oxononanoate synthase	4.59307e-06	2.42741e-06
+Transcription factor homologous to NACalpha BTF3 fused to metal binding domain	0.000858718	0.00038404
+3 isopropylmalate dehydratase small subunit 1	0.00100543	0.000243651
+UniRef50_W1DGA8	0.000345876	1.34778e-05
+Phenol hydroxylase P5 protein	1.2994e-05	1.09381e-05
+hypothetical protein, partial	0.000282545	1.73675e-05
+Periplasmic solute binding family protein	0.000286895	0.00354786
+Hypoxanthine guanine phosphoribosyltransferase	0.0107589	0.00157022
+Ribosomal RNA small subunit methyltransferase G	0.000159502	0.00529648
+Ammonium transporter	1.29226e-05	7.11155e-05
+UniRef50_Q2YSG3	0.000114975	0.000380218
+Catalase	0.000182022	0.0256353
+50S ribosomal protein L13	0.00087997	7.26915e-05
+Cell division protein FtsA	0.000150964	0.00999263
+Protein tyrosine phosphatase	0.000228495	0.000492605
+Methylenetetrahydrofolate reductase	0.000149245	0.00295259
+Probable oxidoreductase YjgC	0.0125452	0.00285908
+Predicted protein	5.47718e-05	1.10269e-05
+Protein PhnO	0.000437076	0.000308539
+hypothetical protein	1.05269e-05	9.18569e-06
+Serine acetyltransferase	0.00494309	0.000573861
+PREDICTED	1.68025e-05	1.26968e-05
+Phosphatase	3.23029e-05	1.59562e-05
+UniRef50_UPI0002BCA4B1	9.69805e-05	0.00012096
+hypothetical protein	3.80129e-05	8.18924e-06
+FKBP type peptidyl prolyl cis trans isomerase SlyD	1.64253e-05	9.79943e-06
+AlNc14C294G10284 protein	4.88265e-06	8.59574e-06
+Marine sediment metagenome DNA, contig	2.17032e-05	6.37324e-06
+UniRef50_R5WGC0	0.000151209	0.00139785
+hypothetical protein, partial	9.25575e-06	4.11497e-06
+L sorbose 1 dehydrogenase	2.22922e-05	1.15713e-05
+PREDICTED	4.86146e-05	2.60313e-05
+hypothetical protein	1.88739e-05	7.79497e-06
+Glycosyl transferase	0.000625074	0.000729882
+Membrane protein 	0.00126216	0.000170694
+UniRef50_N6UVZ9	4.47326e-06	1.04375e-06
+Sulfate adenylyltransferase	1.6084e-05	1.19853e-05
+Arabinose import ATP binding protein AraG	0.00405322	0.00038956
+UniRef50_Q2H308	0.000112578	3.20626e-05
+hypothetical protein	0.000318314	9.17353e-06
+Helix turn helix domain containing protein, AraC type	0.00079289	0.000307732
+D methionine transport system permease protein MetI	0.00366367	0.00571027
+Genomic scaffold, scaffold_5	1.83466e-05	5.66958e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0162733	0.00211278
+Phosphoglucosamine mutase	4.61779e-06	3.94189e-06
+Transposon Tn552 resolvase	0.163147	0.0191115
+Major Facilitator Superfamily protein	0.0002123	0.00400162
+3 isopropylmalate dehydratase small subunit	1.68271e-05	7.44046e-06
+Inositol monophosphatase	0.000100462	0.00461357
+UniRef50_D4GG42	0.00168274	0.000477579
+Permease of the major facilitator superfamily	1.76263e-05	2.12237e-06
+NADH quinone oxidoreductase subunit B	1.11039e-05	8.1121e-05
+Remnant of isrso5 transposase protein	0.0169104	0.001805
+hypothetical protein PFL1_01311	3.8693e-05	9.60201e-05
+ABC transporter ATP binding protein	7.28256e-06	2.14083e-05
+Malonyl CoA acyl carrier protein transacylase	3.7943e-06	0.000902824
+UDP 2,3 diacylglucosamine hydrolase	0.00302354	0.000395286
+Adenylate kinase	0.00423419	0.0043195
+hypothetical protein	0.000190407	2.69668e-05
+UniRef50_W5ASR4	0.000191221	4.16989e-05
+spermidine putrescine import ATP binding protein PotA	0.000108083	2.97962e-05
+NADPH dependent FMN reductase	0.000130109	0.00114441
+ATPase involved in chromosome partitioning	8.35683e-06	0.000392567
+UniRef50_Q5M456	0.00441332	0.00108775
+hypothetical protein	6.3114e-06	8.01855e-05
+PKHD type hydroxylase Mpe_A3725	3.24179e-05	1.9642e-05
+hypothetical protein	7.11269e-06	4.34047e-05
+MaoC domain containing protein dehydratase	3.03212e-05	1.02887e-05
+UniRef50_J0P6S9	0.00592105	0.000276261
+Colicin V processing peptidase	0.000229916	0.00637469
+Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 	9.35479e-07	1.41255e-07
+ABC transporter ATP binding protein	0.00128807	0.00022846
+Serine endoprotease DegS	0.00392814	0.000867145
+Lytic transglycosylase, catalytic	0.00841905	0.000933172
+hypothetical protein	1.30729e-05	7.30753e-07
+TetR family transcriptional regulator	9.00276e-06	1.08712e-05
+hypothetical protein, partial	3.20603e-05	0.000608048
+Membrane protein	1.47471e-06	1.40654e-06
+Major facilitator superfamily MFS_1	7.91879e-05	0.00239185
+UniRef50_UPI00042A98EF	0.000141036	6.7428e-05
+Lantibiotic transport ATP binding protein	0.0247987	0.00455449
+Glutamyl tRNA reductase	7.8817e-05	0.00551138
+Multiple sugar binding transport system permease protein MsmF	0.00356011	0.00154849
+ABC transporter, substrate binding protein	0.00760573	0.000542127
+UniRef50_F2AEH0	0.000424549	5.07343e-05
+UniRef50_G2QPJ3	4.0698e-06	3.55109e-06
+hypothetical protein	9.16374e-05	3.05137e-05
+Sulfotransferase domain protein	0.00217888	0.000119713
+Na+ H+ antiporter like protein	0.0177887	0.00262761
+UniRef50_E3D365	4.88694e-05	1.56745e-05
+Transposase	1.73936e-05	1.10443e-05
+Regulatory protein ArsR	0.00206313	0.00332051
+Major outer membrane protein P.IB	0.000106954	0.00119539
+Alpha galactosidase	0.00089574	0.000617766
+UniRef50_F7QLE1	0.00547363	0.000438257
+Na translocating NADH quinone reductase subunit F	0.000538505	0.00137142
+DNA glycosylase	3.78691e-05	2.07208e-05
+Transposase	0.000125682	4.04506e-05
+hypothetical protein	7.55638e-06	6.90056e-06
+Soluble cytochrome b562	0.000314531	0.000945104
+Outer membrane protein BabA	5.40206e-05	0.00169774
+Ribosomal protein L1p L10e family, putative isoform 1	1.85644e-05	4.07935e-05
+hypothetical protein, partial	8.75038e-05	0.00011438
+hypothetical protein	7.83889e-06	3.12407e-06
+Multi drug resistance efflux pump PmrA homolog	8.74152e-05	0.000501446
+hypothetical protein	1.23153e-06	1.49074e-06
+UniRef50_U2Z407	0.000131966	2.4155e-05
+Protein MpaA	0.0025474	0.000247341
+UniRef50_B6IU75	2.63896e-05	3.69927e-05
+UniRef50_D1B330	4.70526e-06	4.30516e-06
+Sec independent protein translocase protein TatC	0.0109052	0.00110115
+Aminotransferase, class V	0.000201519	0.000331028
+Phosphoserine aminotransferase	0.00418725	0.00522533
+Recombinase	4.4909e-06	7.67718e-05
+translation initiation factor IF 3	0.000125058	0.000115688
+Adenylate kinase	7.04899e-06	8.2865e-06
+Alanine dehydrogenase	2.79471e-05	0.000335305
+UniRef50_J2E9X6	0.000289988	1.53626e-05
+UniRef50_A9LZ58	0.000588516	0.00269432
+hypothetical protein	3.65472e-05	9.23951e-05
+hypothetical protein, partial	5.84787e-05	2.14563e-05
+Branched chain amino acid transport systemcarrier protein	0.00843782	0.000999129
+PREDICTED	1.80931e-05	1.05933e-05
+Deoxyribodipyrimidine photolyase , FAD binding	0.000144707	0.00295197
+PREDICTED	1.01636e-05	1.66024e-05
+UPF0271 protein SERP1168	0.0202672	0.00223977
+Nicotinamide phosphoribosyltransferase	0.000153989	0.0242881
+N acetylmuramic acid 6 phosphate etherase	7.32406e-06	5.86414e-06
+Glycine D amino acid oxidase 	0.000256914	1.9243e-05
+Ribonuclease J	3.14781e-05	6.97442e-05
+Rhamnosyltransferase WbbL	0.000834133	0.000113222
+UniRef50_I6U2T3	0.00298531	0.000190222
+L threonine 3 O phosphate decarboxylase	5.40523e-06	0.000195454
+Lipoprotein	8.83023e-06	0.00101205
+hypothetical protein	5.06309e-05	8.24007e-06
+Malate dehydrogenase  (NADP(+)), Phosphate acetyltransferase	0.00258008	0.00356589
+Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	2.42152e-05	7.68347e-05
+peptide ABC transporter permease	0.000105296	1.05892e-05
+hypothetical protein, partial	2.60496e-06	1.62631e-05
+membrane protein	9.91869e-06	5.4293e-06
+Riboflavin biosynthesis protein RibF	0.000109983	0.000814072
+methylmalonyl CoA mutase	5.58752e-05	2.55945e-05
+Putative Transcriptional regulator	0.000890489	0.00528146
+ISPa7 like transposase	0.000207261	1.77668e-05
+UniRef50_A5UKX6	0.000986501	0.000104889
+UniRef50_L4FV79	1.36727e-05	1.77717e-05
+Ribonuclease P protein component 3	0.00302207	0.000151664
+Thioesterase superfamily	5.14987e-06	3.15638e-06
+Aminotransferase	0.00220691	0.000419817
+Beta lactamase regulatory protein 	0.000567078	0.000110716
+hypothetical protein	5.02336e-06	4.26537e-06
+Dyp type peroxidase family protein	0.01196	0.00122705
+Cation efflux pump 	0.00626317	0.00326792
+UPF0301 protein ACD_16C00235G0006	3.30783e-05	2.93654e-05
+UniRef50_P77183	0.00643216	0.00057621
+Multiphosphoryl transfer protein	0.00199912	0.000423862
+chromosome partitioning protein ParA	1.08169e-05	5.29913e-05
+Bacterioferritin	8.86856e-05	6.14785e-05
+UniRef50_L1K7Z2	0.000445008	0.000444479
+Glutamine synthetase	0.000399567	0.00181478
+UniRef50_N6V491	5.9182e-05	5.26289e-05
+hypothetical protein, partial	1.87073e-05	1.37713e-05
+hypothetical protein	4.96908e-06	9.87631e-06
+heme exporter protein CcmA	3.07991e-06	1.3625e-05
+hypothetical protein	8.74013e-06	3.5123e-06
+Inosine uridine preferring nucleoside hydrolase	4.65264e-06	1.03855e-05
+UniRef50_W7W6N9	5.36731e-06	6.2799e-06
+Uridylate kinase	1.47496e-05	1.39019e-05
+Thioesterase superfamily protein	1.06915e-05	0.000955988
+Branched chain amino acid ABC uptake transporter substrate binding protein	0.00824496	0.00274282
+16S rRNA methyltransferase	1.37067e-05	3.74267e-05
+hypothetical protein	2.05369e-05	3.67599e-05
+Enhancing lycopene biosynthesis protein 2	0.00441026	0.00322897
+Relaxase mobilization nuclease domain protein	1.10562e-05	1.70721e-06
+PAS modulated sigma54 specific transcriptional regulator, Fis family	5.96365e-05	0.000665936
+Copper amine oxidase domain protein	6.27986e-06	7.15127e-06
+UniRef50_F0YJ43	0.000149379	1.9912e-05
+Aliphatic sulfonates import ATP binding protein SsuB 1	7.05998e-06	1.78106e-05
+hypothetical protein	2.45359e-06	3.17293e-06
+N acetylmuramoyl L alanine amidase AmiB	0.00356448	0.000422347
+Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.000219012	0.000614075
+UniRef50_A0A030STE3	0.000208932	2.45458e-05
+Alanine  tRNA ligase	0.0026081	0.00102616
+Glutaminase	0.00298508	0.000640983
+UniRef50_N6V723	2.92621e-05	1.72939e-05
+UniRef50_R5EPL7	1.69454e-06	0.00208451
+hypothetical protein	3.48868e-05	0.000199624
+Peptidyl tRNA hydrolase	0.000177131	0.000748988
+UniRef50_P76586	0.000825458	0.000656918
+UniRef50_P76584	0.00279036	0.000275084
+UniRef50_P76585	0.00317204	0.000460335
+Cobyrinic acid a,c diamide synthase 	2.13188e-05	5.1671e-05
+Homoserine kinase	0.000316461	0.00198518
+amino acid ABC transporter, permease ATP binding protein, His Glu Gln Arg opine family, partial	3.68094e-05	1.79002e-05
+hypothetical protein	7.54368e-06	1.92303e-06
+type I secretion protein	7.00701e-07	7.10118e-07
+Transcriptional regulator, PadR	0.000142273	2.30245e-05
+Marine sediment metagenome DNA, contig	0.000154659	6.63117e-05
+30S ribosomal protein S4	4.92509e-05	3.87255e-05
+UniRef50_Q8NY74	0.012782	0.00136386
+Homolog of FecCD transport family protein SstB	0.0156592	0.00267407
+UniRef50_V9VUC0	1.78326e-05	8.63131e-06
+4 hydroxythreonine 4 phosphate dehydrogenase	0.000412856	0.00263503
+Anthranilate synthase component II 	1.35779e-05	8.65076e-06
+UniRef50_Q5HRY7	0.00170135	0.00137815
+2 phosphoglycerate kinase, putative	8.24201e-05	0.00641252
+UniRef50_Q5HKC7	0.0169489	0.00631352
+UniRef50_A0A020CZ32	0.000720007	0.000102404
+FAD dependent urate hydroxylase	9.63402e-05	0.00600469
+multidrug transporter CflA	5.47932e-06	4.24908e-06
+Shikimate dehydrogenase	0.00012684	0.000105012
+Glycosyl transferase	0.000560988	0.00185209
+helicase related protein, partial	8.67393e-05	0.01359
+hypothetical protein	2.25411e-05	4.10693e-06
+UniRef50_E3F454	0.000154127	4.57929e-05
+Oxygen independent coproporphyrinogen III oxidase 1	0.000236335	0.000446049
+Nicotinate phosphoribosyltransferase	2.70734e-06	5.52663e-05
+hypothetical protein	1.63427e-05	3.4477e-06
+Sugar  transporter family protein	0.0190126	0.00219594
+hypothetical protein	3.94826e-06	4.95448e-06
+hypothetical protein	7.5902e-06	8.56179e-05
+Ethanolamine utilization protein EutJ	1.97916e-05	0.00149475
+UniRef50_V6AIC2	0.00010844	0.000190635
+tRNA N6 adenosine threonylcarbamoyltransferase	0.000228682	0.00485257
+UniRef50_I0KVQ6	1.39515e-05	2.74852e-05
+hypothetical protein	8.95076e-05	7.04328e-05
+Sigma E factor regulatory protein RseB	0.00320036	0.00020261
+Putative carbamoyl phosphate synthetase, large chain 	1.69958e-05	1.172e-05
+D ribose transporter ATP binding protein	1.37114e-05	1.78833e-05
+Endoribonuclease L PSP	0.000132522	1.992e-05
+CRISPR system Cascade subunit CasD	0.00256894	0.000133608
+Diaminopimelate decarboxylase	0.00401693	0.000892369
+Ferrous iron transport protein B	0.0186353	0.00323857
+Lactoylglutathione lyase	2.09086e-05	1.24245e-05
+UniRef50_R7IF37	2.72155e-05	4.43827e-05
+UniRef50_B5GQH0	2.52431e-05	1.20506e-05
+Thioesterase superfamily protein	3.99207e-06	8.6487e-05
+UniRef50_Q9RVA0	0.000165787	0.017764
+Putative peptidyl prolyl cis trans isomerase	0.0203856	0.00468672
+UniRef50_A5ULZ8	0.00407862	0.000322791
+Glucosamine 6 phosphate deaminase	8.27739e-06	1.14881e-05
+Phage portal protein	0.0124916	0.00231859
+UniRef50_A6LQB8	0.00042204	0.00106374
+UniRef50_R7U693	7.62796e-05	1.30537e-05
+YycI protein	0.011641	0.00290969
+UniRef50_W8YHT8	0.000496663	0.000106417
+ComE operon protein 1 related protein	0.000763163	0.00185935
+Glutamate synthase 1 [NADH], chloroplastic	9.67947e-07	4.69131e-06
+Alpha galactosidase	0.00220808	0.00030525
+UDP N acetylmuramoylalanine  D glutamate ligase	9.75503e-05	0.00112709
+UniRef50_N6VE85	0.000135334	2.83804e-05
+UniRef50_A0A011RZR4	7.06737e-05	5.60518e-05
+MULTISPECIES	0.000174188	5.31771e-05
+hypothetical protein	5.18996e-05	3.29946e-06
+DNA polymerase I	2.83921e-06	2.75201e-05
+Phosphate butyryltransferase	0.0020839	0.000227192
+DMT family permease	0.000586059	0.00413496
+hypothetical protein	2.00593e-05	7.44771e-06
+Zinc ABC transporter, inner membrane permease protein ZnuB	0.000658075	0.00219688
+hypothetical protein	7.98574e-07	1.0269e-05
+Bacterial membrane flanked domain protein	0.00373582	0.000128081
+UniRef50_C2L1L8	0.000248518	0.000172764
+Putrescine transport system permease protein	0.00527334	0.000872501
+LexA repressor	0.000110649	6.79563e-06
+UPF0149 protein YgfB	0.000537512	0.000455553
+Transcriptional antiterminator, BglG	0.000173903	0.001471
+UniRef50_J4SG21	7.27703e-06	5.60753e-06
+DNA polymerase IV	0.000159756	0.000206855
+Queuine tRNA ribosyltransferase	4.90441e-06	4.19818e-05
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.000711018	0.000235039
+Ferredoxin dependent glutamate synthase 1	2.01942e-06	1.16724e-06
+hypothetical protein	1.73843e-06	2.87883e-06
+Glutamine synthetase	0.0107255	0.000599569
+amino acid ABC transporter ATPase	1.54905e-05	4.85284e-05
+hypothetical protein	1.81561e-05	1.98412e-06
+UniRef50_Q5XA93	0.00102677	0.000695409
+UniRef50_Q6FDD7	0.00026089	0.0018987
+UniRef50_F0Y880	0.00061341	0.000394335
+Penicillin binding protein 1C	0.00193562	9.38674e-05
+ABC transporter, permease protein	0.000127965	0.00346611
+Ribosomal RNA large subunit methyltransferase E	3.69488e-05	1.44464e-05
+Major facilitator superfamily permease	9.80031e-05	0.00351961
+UniRef50_Q9RYA2	1.563e-05	0.0173418
+UniRef50_Q2C7C0	4.86056e-05	0.000321501
+hypothetical protein, partial	6.53115e-06	2.29899e-06
+3 carboxymuconate cyclase	5.42786e-06	5.51026e-06
+DNA directed RNA polymerase subunit beta	9.84683e-07	8.75591e-07
+hypothetical protein	6.21795e-06	3.17146e-05
+hypothetical protein	3.55686e-05	2.97471e-05
+hypothetical protein	2.12981e-05	2.06316e-06
+UniRef50_K0RCG6	1.64647e-05	2.03148e-06
+UniRef50_F0XXW5	0.000149138	3.00104e-05
+UniRef50_C5WE22	0.000831448	0.000503365
+hypothetical protein	4.71952e-05	4.30687e-05
+Transcriptional regulator PadR family	0.000143235	1.58589e-05
+Resolvase	0.000941413	0.0209024
+bicyclomycin resistance protein	8.09838e-06	1.64649e-05
+Aspartate semialdehyde dehydrogenase	0.000226535	0.000422383
+Transcriptional regulator, DeoR family	0.00489916	0.00105812
+UniRef50_N0AI85	2.06551e-05	7.4195e-05
+PREDICTED	1.94073e-05	2.49979e-05
+Glutathione regulated potassium efflux system protein KefB	8.15546e-05	0.00177702
+DNA binding HTH domain containing proteins	0.0116228	0.00342963
+Glycosyl hydrolase family 65 central catalytic domain protein	0.000191943	4.01722e-05
+Glycolate oxidase iron sulfur subunit	2.28118e-05	2.8216e-05
+hemolysin type calcium binding protein	1.84755e-06	2.08439e-05
+aldehyde activating protein	0.000139903	1.98616e-05
+30S ribosomal protein S15	7.16657e-05	1.22573e-05
+Elongation factor G, mitochondrial	1.02725e-05	3.6454e-06
+Extracellular solute binding protein family 1	0.0098852	0.000930576
+UniRef50_Q9RWX4	0.000430374	0.00995447
+Lipopolysaccharide core biosynthesis protein RfaG	0.00353629	0.000772432
+UniRef50_T2L9X3	0.000161335	2.66065e-05
+Transcriptional regulator, MerR family	0.000262723	0.0156743
+Transcriptional regulator, MerR family	0.00550624	0.000533851
+UniRef50_G7U539	4.52959e-05	0.00162672
+MULTISPECIES	7.14542e-06	1.18881e-05
+hypothetical protein	0.000119857	3.68543e-05
+hypothetical protein	7.24634e-05	1.49403e-05
+hypothetical protein	1.00213e-05	1.15326e-05
+methyltransferase	2.70031e-05	1.31966e-05
+UniRef50_B9E5C1	0.00020274	0.000224462
+UniRef50_U5MS98	0.000374961	0.000722728
+UniRef50_A3M1H8	6.91538e-05	0.00350911
+UniRef50_A4WTR8	0.00186054	0.00045118
+UniRef50_F9YXU6	0.00013738	0.000330134
+ATP dependent 6 phosphofructokinase	1.97687e-05	3.74702e-06
+histidine kinase, partial	0.000141012	0.000115553
+quercetin 2,3 dioxygenase	4.94503e-06	5.86542e-06
+ABC transporter permease protein	0.000901473	0.000245986
+Glucans biosynthesis glucosyltransferase H	0.00287633	0.000497833
+UniRef50_M1Z980	1.40784e-05	2.71981e-05
+translation initiation factor IF 3	0.000145799	0.000106588
+S adenosylmethionine synthase	0.000174701	0.0019163
+Sodium dependent dicarboxylate transporter SdcS	0.01028	0.000731912
+hypothetical protein, partial	1.07362e-05	1.81832e-05
+Sugar binding protein	0.000203697	0.00411117
+PREDICTED	0.000105888	9.39423e-05
+ABC transporter	1.98002e-06	1.76881e-06
+Alcohol dehydrogenase class 3	5.228e-06	0.00161092
+UniRef50_W9EWM1	7.16123e-05	2.78243e-05
+Prolipoprotein diacylglyceryl transferase	9.33716e-06	0.000264073
+hypothetical protein	1.76224e-05	5.23014e-06
+UniRef50_M9M1D4	0.000867565	0.000109856
+Transcriptional regulator, LysR family	0.00414611	0.000869462
+Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA dependent ATPase and ssDNA annealing activities involved in maintenance of genome	2.90187e-06	8.56535e-06
+Uracil DNA glycosylase	0.00707334	0.00106712
+hypothetical protein	1.87009e-05	1.62322e-05
+Allergen V5 Tpx 1 related protein	5.22316e-05	2.58803e-05
+Outer membrane protein A	0.00323247	0.000514638
+hypothetical protein	1.65823e-06	4.12835e-07
+oxidoreductase	7.30288e-06	6.20904e-06
+Formate dehydrogenase family accessory protein FdhD	0.000175591	0.000115702
+Entericidin EcnAB	0.000125872	0.000131437
+GntR family transcriptional regulator	0.000140034	0.000303662
+Potassium transporting ATPase A chain	9.01634e-06	0.000632674
+Possible tRNA io(6)a) hydroxylase	7.8811e-06	0.00180579
+HIT family protein	0.00268875	0.00482019
+Aminodeoxychorismate lyase	0.00163695	0.000305718
+hypothetical protein	5.03412e-05	1.30359e-05
+UniRef50_A3M8R9	8.6834e-05	0.00379409
+Terminase	1.53724e-06	2.35516e-06
+Metallophosphoesterase	6.48915e-06	7.62591e-06
+UniRef50_A8U0I4	1.26638e-06	1.8388e-06
+Protein L isoaspartate O methyltransferase	0.00189	0.000352097
+UniRef50_D7A8N8	0.00199523	0.000711841
+hypothetical protein	0.000193768	8.45622e-06
+DNA primase	0.00040596	0.00161322
+Adenine phosphoribosyltransferase	2.12752e-05	2.05986e-05
+UniRef50_G0MS24	1.69331e-05	1.13091e-05
+UniRef50_A5UL10	0.00525652	0.000242008
+Ig domain protein, group 2 domain protein	0.000262609	0.000821274
+hypothetical protein	4.37876e-06	7.08497e-07
+LexA repressor	5.57443e-05	7.91057e-06
+UDP glucose 6 dehydrogenase	0.00437702	0.00168017
+UniRef50_UPI0003C1975D	2.06138e-05	1.79159e-05
+hypothetical protein	6.91579e-06	1.92642e-06
+UniRef50_P45335	0.000182617	0.00127818
+Homocysteine S methyltransferase	0.00149353	0.000190626
+ATP dependent zinc metalloprotease FtsH	5.39053e-05	0.00295815
+3 dehydroquinate dehydratase	5.51723e-05	8.27775e-06
+PREDICTED	6.00379e-06	5.83392e-06
+SSS sodium solute transporter superfamily	0.000253216	0.000663427
+membrane protein	3.29574e-05	2.409e-06
+Phosphate import ATP binding protein PstB 2	5.53815e-06	7.96738e-05
+UniRef50_A0A031W8S5	4.29338e-05	2.37208e-05
+UniRef50_A6VAP8	0.000200329	0.000292962
+Cytochrome bo ubiquinol oxidase subunit 3	0.0039982	0.00132216
+Hemin receptor	3.7158e-05	0.00381754
+Phosphoribosyl AMP cyclohydrolase	2.11649e-05	3.0143e-05
+Urea ABC transporter, urea binding protein	0.015913	0.00198331
+Ornithine decarboxylase	0.00128303	0.00294361
+Cysteine desulfurase	0.000102815	0.00144412
+PREDICTED	6.48568e-05	4.09272e-05
+TonB like protein	0.000135057	8.7595e-05
+UniRef50_A0A024HEM4	0.000150817	6.91184e-05
+PREDICTED	3.86393e-06	8.09957e-06
+Enoyl CoA hydratase isomerase	0.000474237	9.75922e-05
+UniRef50_S3ZTJ7	0.000200725	1.3671e-05
+Flavodoxin	0.000295218	0.000577665
+UniRef50_I0EKX0	0.000112936	0.00289546
+UniRef50_I0EKX8	0.000212166	0.00138067
+30S ribosomal protein S2	1.87331e-05	5.8417e-05
+GMP synthase	2.78498e-06	6.73243e-06
+hypothetical protein	1.98039e-05	1.24987e-05
+Marine sediment metagenome DNA, contig	0.000110458	0.000811151
+UniRef50_S1SGR9	0.000251131	2.27253e-05
+UniRef50_G7ZV51	2.87758e-05	1.54067e-05
+Polysaccharide biosynthesis protein	0.000145492	0.00161968
+UniRef50_N0C5G3	0.00520029	0.00282112
+UniRef50_A3VF16	0.000232655	2.0572e-05
+Succinate dehydrogenase	0.00291575	0.000574635
+Phospho N acetylmuramoyl pentapeptide transferase	6.51467e-06	4.95057e-06
+type III secretion protein HrpI	5.37893e-06	2.84542e-06
+TetR family transcriptional regulator	0.000397932	0.000144581
+UniRef50_N6TVC0	0.00031528	1.10495e-05
+Type III restriction enzyme, res subunit	0.00881224	0.00270983
+RNA polymerase sigma factor RpoD	0.000716882	0.00144205
+Beta Ig H3 fasciclin	6.16908e-05	7.11086e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	1.3667e-05	0.00107613
+UniRef50_S9QZ13	4.44518e-05	3.83833e-05
+Predicted protein	2.02653e-05	6.35445e-05
+D tagatose 1,6 bisphosphate aldolase subunit KbaZ	0.00404831	0.000979377
+UniRef50_Q73Z69	2.31755e-06	1.07389e-06
+hypothetical protein	9.53145e-05	1.58508e-05
+cystathionine beta lyase	7.6527e-05	9.75349e-06
+RpiR family transcriptional regulator	0.000431975	0.00294828
+UniRef50_A7ZUM9	0.0103562	0.00137951
+glycine betaine ABC transporter ATP binding protein	0.000154196	6.82594e-06
+transcriptional regulator	3.00353e-05	4.03399e-05
+UniRef50_UPI0003C1848F	1.13308e-05	6.92397e-05
+COG4478, integral membrane protein	0.000215286	9.45116e-06
+sugar ABC transporter ATP binding protein	1.0217e-05	8.43397e-06
+Acetyl coenzyme A synthetase	0.00127416	0.00045554
+hypothetical protein	0.000515442	0.00017671
+hypothetical protein	0.000222584	3.09713e-05
+Expressed protein 	0.000119906	0.000146333
+FMN dependent NADH azoreductase 3	0.000238687	0.00160278
+hypothetical protein	1.3428e-05	6.01e-06
+Competence protein ComGD	0.00313404	0.00120401
+UniRef50_Z8E4W9	0.00042439	8.67307e-06
+N acetyl gamma glutamyl phosphate reductase	4.431e-06	2.6165e-06
+hypothetical protein	0.000155835	7.23951e-05
+3 oxoacyl [acyl carrier protein] synthase 2	0.00731626	0.000908675
+D Ala D Ala carboxypeptidase	0.000241542	0.0042967
+Methionine  tRNA ligase	5.74808e-05	0.00105685
+Ribosome biogenesis GTPase A	0.0050651	0.00146773
+UniRef50_W6I1I5	2.01882e-06	1.87366e-06
+UniRef50_W1X1F9	0.000763493	0.000163583
+UniRef50_B6IWY4	2.23126e-06	2.38229e-06
+Chorismate lyase	0.00273099	0.000160044
+UniRef50_D0Z8H8	1.36865e-05	0.00049204
+Potassium transporting ATPase B chain	1.67793e-05	0.000692623
+3 isopropylmalate dehydrogenase	4.68472e-05	3.14547e-05
+Glutamate synthase 1 [NADH], chloroplastic	9.25727e-07	5.55064e-06
+Pyruvate kinase II	0.00243138	0.000403483
+Cation acetate symporter ActP	0.000650617	0.000332281
+Antioxidant, AhpC TSA family	0.0015533	0.00590098
+Calcium translocating P type ATPase PMCA type	0.000403331	0.000619747
+Sugar ABC transporter substrate binding protein	0.000127634	9.3205e-06
+UniRef50_M9RA73	0.0291773	0.00018942
+Inosine 5 monophosphate dehydrogenase	0.00321595	0.000281585
+Isoform 2 of Glutamyl tRNA amidotransferase subunit B, chloroplastic mitochondrial	2.50585e-05	1.02265e-05
+hypothetical protein	2.47984e-05	3.24886e-07
+Tartrate transporter	0.000225529	0.00129247
+16S rRNA methyltransferase, partial	4.07028e-05	9.9472e-05
+hypothetical protein	6.21677e-05	1.09117e-05
+Type 4 fimbrial biogenesis protein PilX	0.000612985	0.000152695
+Capsular polysaccharide biosynthesis protein CapD	2.01501e-05	0.000555885
+D alanyl D alanine carboxypeptidase	0.000543703	0.000190928
+hypothetical protein	0.000199601	6.40696e-06
+Transcriptional regulator	0.00339995	0.000587311
+Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD dependent  butanediol dehydrogenase	5.28126e-06	1.40217e-05
+Ferric enterobactin transport system permease protein FepD	0.0039879	0.0011897
+UniRef50_L0Q6W3	8.65125e-07	6.22909e-05
+UniRef50_C5N3X1	0.00294458	0.00086309
+multiple sugar binding transporter like protein	1.28517e-05	1.30581e-05
+cyclase	8.87733e-06	0.00014624
+Polyketide synthase domain protein	4.24489e-05	0.000127679
+Coproporphyrinogen III oxidase, anaerobic 1	0.00970497	0.00165823
+SNF2 family protein	0.00047088	8.33021e-05
+Collagen adhesion protein	3.20729e-05	5.46469e-05
+hypothetical protein	7.08872e-06	3.10775e-06
+hypothetical protein	2.81532e-05	4.06252e-05
+Orotidine 5 phosphate decarboxylase	8.5609e-06	8.28436e-06
+UniRef50_U1EEA4	0.000748462	5.00518e-05
+ABC transporter ATP binding protein	0.00492783	0.00227464
+BioX, putative	0.0117173	0.000307482
+hypothetical protein	0.000102296	2.83656e-06
+FAD dependent oxidoreductase	2.72659e-05	1.59345e-05
+UniRef50_D2JAL6	0.00733661	0.00141823
+2 hydroxy acid oxidase	7.61225e-06	6.44185e-06
+MFS superfamily metabolite transporter	9.41834e-05	0.00295606
+Aminomethyltransferase, mitochondrial	4.74757e-06	3.50923e-06
+multidrug ABC transporter substrate binding protein	7.29131e-06	3.67039e-05
+UniRef50_A7FC02	0.012577	0.00122846
+NADH quinone oxidoreductase subunit E	0.000268274	5.00162e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	8.1193e-06	0.0010713
+Integral membrane sensor hybrid histidine kinase	0.000594305	0.00025851
+Prohead peptidase	0.0372174	0.00356883
+UniRef50_A6LU68	0.000174344	0.000616505
+UniRef50_P0ACU0	0.00067942	0.000267217
+UniRef50_J4PCY6	5.21956e-06	9.08316e-06
+UniRef50_J9NX48	7.90827e-05	6.28038e-05
+Phosphopantetheine adenylyltransferase	2.21601e-05	9.1214e-06
+Transcription elongation factor GreA	0.0378685	0.000575955
+Ribosomal RNA small subunit methyltransferase A	0.00336922	0.000759018
+Flagellar protein FlgJ	4.01339e-05	9.99633e-06
+Diaminopimelate decarboxylase	9.71571e-06	4.60336e-05
+UniRef50_A6L467	7.32689e-05	0.00199885
+antibiotic ABC transporter ATP binding protein	2.64106e-05	9.05268e-06
+hypothetical protein	7.1643e-05	3.38082e-05
+hypothetical protein	8.6497e-06	4.32644e-06
+Enolase 2	7.47843e-06	2.18263e-05
+UniRef50_Q9RUW7	0.000151598	0.0146535
+Methionine synthase	0.0108633	0.000702995
+hypothetical protein	1.87772e-05	2.75904e-05
+UniRef50_S9Q9U8	0.000744082	4.68939e-05
+Tryptophan synthase alpha chain	5.79121e-06	1.87824e-05
+Histone deacetylase family protein	0.000198743	0.00130749
+hypothetical protein	2.66817e-05	1.75738e-05
+DNA binding domain containing protein, AraC type	0.000241689	0.00121004
+DSBA oxidoreductase	0.00177935	0.000152695
+UniRef50_F4M1U9	0.00268394	0.000181018
+UniRef50_D9XYR1	0.000355509	0.00032181
+DNA directed RNA polymerase subunit beta	0.000112583	0.00148517
+hypothetical protein	6.66737e-06	1.28967e-05
+UniRef50_V4ZLE5	1.55498e-05	4.89956e-06
+hypothetical protein	5.84058e-05	3.22594e-05
+Protein tyrosine kinase	0.000397085	0.0276456
+Methionyl tRNA formyltransferase	0.000186626	0.00289002
+UDP N acetylglucosamine 2 epimerase	3.61389e-06	2.48571e-05
+methionyl tRNA synthetase	1.87491e-06	4.39297e-06
+methionine ABC transporter ATP binding protein	8.20174e-06	9.4379e-06
+UniRef50_I3TSH3	0.000168085	2.37402e-05
+hypothetical protein	0.000312517	2.61234e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000108562	9.76097e-06
+hypothetical protein	0.000296389	9.61308e-05
+UniRef50_D8LEP5	0.000108963	3.93758e-05
+hypothetical protein	4.71732e-06	2.67055e-06
+hypothetical protein	1.24997e-06	4.48836e-06
+Pyruvate dehydrogenase E1 component, beta subunit 	2.20748e-05	0.000189911
+UniRef50_F2A904	0.00126492	7.79382e-05
+Putative 5 deoxyribonucleotidase	0.015798	0.00255761
+hypothetical protein	3.09355e-05	0.000216419
+UniRef50_T1XMS0	0.00356071	0.00335227
+NLPA lipoprotein family protein 2	4.95844e-05	3.89962e-05
+Permease protein	3.60894e-06	0.000520886
+Cyclic pyranopterin monophosphate synthase accessory protein	1.12197e-05	1.89914e-05
+Inner membrane transport protein YhjV	0.002186	0.000308763
+Alpha beta hydrolase	0.000250532	0.00279279
+Enoyl [acyl carrier protein] reductase [NADH] FabI	1.8626e-05	1.72121e-05
+PREDICTED	1.87183e-05	3.24738e-05
+UniRef50_B4G025	0.000130917	2.76211e-05
+UniRef50_N1MD27	3.99181e-05	0.000202472
+hypothetical protein	1.26252e-05	3.41817e-05
+Binding protein dependent transport systems inner membrane component	0.000386444	0.000499108
+Chaperone protein ClpB	0.00318335	0.000595724
+UniRef50_A6LUL9	0.000232637	0.0017408
+Histidine biosynthesis bifunctional protein HisIE	1.02428e-05	2.74431e-05
+UniRef50_A4WZN4	0.0043483	0.000134327
+general APC amino acid permease	2.58964e-06	7.41701e-06
+PREDICTED	7.67554e-05	2.28071e-05
+Enolase	0.0255431	0.040276
+adenine deaminase	2.98835e-05	3.3135e-06
+Amidophosphoribosyltransferase	0.00343122	0.00110913
+PREDICTED	1.06242e-05	4.01953e-06
+Translation initiation factor IF 2	5.54144e-06	8.72295e-06
+UniRef50_B5GE97	5.5444e-05	6.16992e-05
+Cytochrome c oxidase subunit 3	5.84782e-05	5.79991e-06
+Cobyrinic acid ac diamide synthase	3.94992e-06	1.04671e-05
+Flagellar M ring protein	0.00304329	0.000946694
+Predicted ATPase, AAA+ superfamily	0.00802498	0.00114144
+30S ribosomal protein S14	0.000314531	0.00606774
+UniRef50_J9RWY1	1.72545e-05	9.26507e-06
+Inner membrane ABC transporter permease protein YejB	0.0100263	0.00143291
+hypothetical protein	1.44754e-05	3.13607e-06
+Pyridoxine pyridoxamine 5 phosphate oxidase	9.11198e-06	7.63985e-06
+UniRef50_Q9ZM43	0.000111072	0.00393816
+UniRef50_H6SQR1	1.71794e-05	0.000100137
+ABC transporter, substrate binding protein	2.69508e-05	1.18298e-05
+Cystathionine beta lyase	0.026407	0.00365765
+UniRef50_R4LHW2	2.56333e-05	0.000194012
+Potassium transporting ATPase A chain	3.21494e-06	0.000627642
+Glutamate synthase large subunit like protein YerD	0.020299	0.00183779
+siderophore interacting protein	5.87649e-06	0.000369215
+UniRef50_Q8E6D9	0.000276615	0.000404436
+UniRef50_O68826	0.000830689	0.000105878
+UniRef50_U3TU21	5.69384e-05	4.37638e-05
+Acyl coa ligase acetate coa synthetase like protein	3.55373e-05	4.53135e-05
+Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC	0.00572	0.000103678
+Light independent protochlorophyllide reductase subunit N	0.00249569	0.000125547
+Cytochrome C 	0.000332628	5.07937e-05
+Chemotaxis protein cheV	0.000232414	0.000199744
+UniRef50_E2PUY3	0.000351852	0.00024996
+UniRef50_Q4UTY2	1.6759e-05	0.000705732
+Signal transduction histidine protein kinase BarA	0.00227948	0.000564598
+Con	0.000313581	0.000124079
+Probable cysteine desulfurase	0.0103431	0.00169426
+Multidrug transporter MdfA	0.00302136	0.000102846
+citrate synthase	2.24907e-05	1.46134e-05
+UniRef50_H1QU98	2.96184e-05	2.05235e-05
+CDP alcohol phosphatidyltransferase	0.00498631	0.00143933
+hypothetical protein	3.63686e-06	4.74062e-05
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	2.34961e-05	2.38162e-06
+UniRef50_S2KTE6	5.16468e-05	2.43636e-05
+Probable malate	4.02833e-06	6.27431e-06
+Marine sediment metagenome DNA, contig	7.42222e-06	9.38862e-06
+Inner membrane symporter YicJ	0.00206459	6.53456e-05
+dihydrodipicolinate synthase	0.0002632	9.33723e-06
+UniRef50_G9ZDP3	0.000123363	0.000489961
+Phosphotransferase RcsD	0.00232365	0.000453354
+Serine threonine protein kinase PrkC	0.0178317	0.00318354
+Adenylyl sulfate kinase	8.64963e-06	0.000143791
+UniRef50_I4W1C3	1.01423e-05	1.14342e-05
+hypothetical protein	1.43308e-05	1.04918e-05
+Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	6.79517e-05	3.39142e-05
+PREDICTED	7.87039e-07	8.21206e-07
+hypothetical protein, partial	0.000430902	0.000123517
+UniRef50_A3PQ32	0.00249423	0.000131649
+Amino acid permease	0.000252398	0.000139689
+UniRef50_A3PQ31	0.0020492	8.74523e-05
+Iron regulated surface determinant protein B	0.0065596	0.000763979
+PREDICTED	7.8485e-06	6.13712e-05
+PREDICTED	5.25476e-06	5.44674e-06
+Prephenate dehydrogenase	0.000280202	0.00231984
+Queuine tRNA ribosyltransferase	0.000140424	0.00171304
+PREDICTED	7.14196e-05	2.85282e-06
+CBS domain containing protein	0.000292844	0.027349
+UniRef50_H7D9R4	2.41978e-05	1.40096e-05
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	7.498e-06	1.18774e-05
+Uroporphyrinogen decarboxylase	7.50822e-06	1.53248e-05
+UniRef50_R7B6C4	1.51417e-05	0.0022891
+Bifunctional DNA directed RNA polymerase subunit beta beta	1.60294e-06	4.95054e-07
+UniRef50_Q73CC8	3.90277e-05	0.000145631
+UniRef50_W2BNM9	0.00031336	9.13376e-05
+Chemotaxis signal transduction protein	0.00168274	0.000404436
+Lipoprotein, putative	0.00314622	0.000261002
+Alkaline shock protein 23	0.00837976	0.00237034
+NMT1 like family protein	0.000195441	0.00228883
+MULTISPECIES	4.74348e-05	2.51576e-06
+Bifunctional glyoxylate cycle protein	1.44336e-05	3.66425e-05
+membrane protein	0.000113138	1.28817e-05
+hypothetical protein	3.81982e-06	8.35565e-06
+hypothetical protein, partial	0.000254191	2.38551e-05
+CoA binding domain protein	0.010655	0.00189066
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	4.32282e-05	7.12256e-06
+NLP P60 protein	0.000711319	0.000744272
+UniRef50_D3VF61	0.000111512	0.00087608
+hypothetical protein	0.000467337	2.92549e-05
+2 isopropylmalate synthase	2.94315e-06	5.17446e-06
+UniRef50_D3E453	0.000250532	0.000227303
+Integral membrane sensor signal transduction histidine kinase	0.000433592	0.000157841
+Inner membrane protein YcfT	0.00215027	0.00133104
+Glutamate 5 kinase	2.94078e-06	1.20076e-05
+UniRef50_S6AZQ2	0.000445823	0.000178499
+hypothetical protein, partial	9.99987e-05	0.000186026
+UniRef50_M4U374	4.97313e-05	1.53853e-05
+UniRef50_A0A016RSJ2	1.06436e-05	2.35645e-06
+Lipoprotein signal peptidase	1.36081e-05	2.32781e-05
+short chain dehydrogenase	8.93338e-06	1.96897e-05
+ABC transporter permease protein	0.00488032	0.00232629
+UniRef50_N9UUM3	9.48333e-05	1.84293e-05
+DNA binding protein	3.94402e-06	8.55695e-06
+hypothetical protein, partial	0.000577047	6.94285e-05
+UniRef50_Q62EE6	0.000185495	6.75171e-05
+Conserved hypothetical membrane transport protein	2.15343e-05	2.58158e-06
+UniRef50_W4YD04	3.59703e-05	1.74304e-06
+Argininosuccinate lyase	9.71053e-06	7.69986e-06
+UniRef50_M1LMT5	0.000178474	0.000308992
+PTS system, glucose subfamily, IIA subunit	0.000305194	0.000747083
+ABC transporter, periplasmic substrate binding protein	0.000653688	0.000542468
+UniRef50_E3NWX2	1.21167e-05	1.01556e-05
+UniRef50_L7WTB5	0.0113097	0.00207403
+hypothetical protein	2.23599e-05	4.36217e-05
+CRISPR associated helicase Cas3	4.10657e-05	9.16347e-06
+Metabolite transporter	0.000404158	0.000350544
+hypothetical protein	3.25797e-05	1.11989e-05
+hypothetical protein	3.67129e-06	1.8761e-06
+hypothetical protein	7.37089e-06	5.13274e-06
+UniRef50_R7PV18	0.00226926	0.000777431
+AraC type DNA binding domain containing protein	0.00015533	0.00180517
+Predicted protein	0.000137036	0.00146038
+RND transporter, hydrophobe amphiphile efflux 1 family protein	0.000169534	0.00215132
+Suppressor protein suhB	0.0183093	0.00196604
+Chromosome partitioning protein ParA 	3.27614e-05	2.63106e-05
+NADH quinone oxidoreductase subunit C	2.04964e-05	9.81535e-06
+UniRef50_G2KMP2	6.67551e-05	5.8183e-06
+UniRef50_B4RBF0	2.50561e-05	6.02882e-06
+UniRef50_U7I221	8.93145e-06	0.000119308
+40 residue YVTN family beta propeller repeat protein	7.44678e-06	6.98758e-06
+UniRef50_F3U494	0.0018821	0.00021276
+PUCC protein	5.53987e-05	6.95315e-06
+UniRef50_W7Q5R4	9.57219e-05	2.90918e-05
+UniRef50_Q6A6L3	0.000376416	0.0013625
+WGR domain containing protein	1.13673e-05	1.60119e-05
+UniRef50_U5UEG4	0.00171126	0.000372551
+UniRef50_J9P5M7	0.000121977	1.6576e-05
+UPF0637 protein SA0957	0.0113863	0.000683318
+hypothetical protein	7.87908e-06	2.74136e-06
+hypothetical protein	0.00014099	9.60469e-05
+UniRef50_J2ESL9	4.40365e-05	0.000139717
+MATE efflux family protein	7.55158e-05	0.00131142
+30S ribosomal protein S3	0.000694169	0.000512666
+Anthranilate phosphoribosyltransferase	0.0120583	0.00114982
+Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.000685736	0.00161857
+hypothetical protein	5.2046e-05	5.94602e-05
+LysR family transcriptional regulator	5.22769e-06	3.87528e-06
+hypothetical protein	3.1114e-05	2.68313e-05
+Carbon nitrogen hydrolase family protein	0.0018936	0.000876623
+ABC type dipeptide transport system, periplasmic component	0.000244414	0.0228929
+Peptide deformylase 4	8.80025e-06	2.41204e-05
+Cell envelope biogenesis, outer membrane	0.00593927	0.00140516
+UDP 3 O acylglucosamine N acyltransferase	0.000171708	0.00134668
+RNA polymerase sigma factor	0.000419927	0.00217973
+hypothetical protein	6.13286e-06	1.31318e-05
+ABC transporter ATP binding protein, partial	4.92716e-06	7.56617e-06
+Transposase	1.76934e-05	0.000446691
+Fatty acid oxidation complex subunit alpha	0.000283628	8.2983e-05
+Isoleucine  tRNA ligase 2	9.032e-06	0.000546137
+Bifunctional protein FolD	4.90383e-06	0.00176751
+UniRef50_Q9HY42	0.00058354	0.000125049
+zinc ABC transporter permease	7.93712e-05	3.55064e-05
+PREDICTED	0.000103161	6.7892e-05
+Transcriptional regulator, GntR family	0.000179333	0.00418202
+UniRef50_K8BR71	1.35713e-05	7.73903e-05
+Fis family transcriptional regulator	0.000668967	5.07259e-05
+hypothetical protein	3.08166e-06	0.00035389
+imidazole glycerol phosphate dehydratase histidinol phosphatase, partial	2.7081e-05	5.46793e-06
+Fasciclin domain protein	0.000121377	1.17822e-05
+UniRef50_H0HUE0	8.29524e-05	6.02515e-05
+UniRef50_Q3JW66	5.45719e-05	8.89566e-05
+UniRef50_X9N9G2	2.14936e-05	1.22694e-05
+CRISPR associated protein, Csd1 family	0.00363572	0.00181836
+Alcohol dehydrogenase	0.00160321	0.000583019
+Acetyltransferase	0.000190859	0.00209271
+Ribose 5 phosphate isomerase B	0.00026089	0.00136728
+Staphylocoagulase	0.000794464	0.000141713
+UniRef50_I2DEZ6	0.000275859	0.00519095
+UniRef50_Q08YM3	7.18609e-05	7.16923e-05
+S adenosylmethionine synthase 1	2.39502e-05	7.2511e-05
+Accessory Sec system protein Asp3	0.0160644	0.00060155
+GTP binding protein	0.00345912	0.000133015
+Protoporphyrinogen oxidase	0.000107753	0.00294888
+BACTERIOPHYTOCHROME	8.20148e-05	6.90421e-05
+Acetyltransferase	0.00070461	0.0031891
+Transcriptional regulator MvfR	0.000419984	0.000160905
+UniRef50_F6CTL5	6.06964e-05	2.22427e-05
+hypothetical protein	1.26445e-06	1.04013e-06
+UniRef50_A3IGB3	9.46194e-05	6.62713e-05
+Type F conjugative transfer system protein TraU	6.88931e-05	3.13122e-06
+Class I fumarate hydratase	0.0110949	0.00128689
+UniRef50_B0T5G6	6.3617e-05	1.10849e-05
+InlD	7.99144e-06	0.000943413
+UniRef50_C8VZF1	0.000147684	0.000560753
+Transposase IS4 family protein	7.13363e-05	1.14526e-05
+UniRef50_A1VL02	3.38406e-06	6.96647e-06
+Exopolysaccharide synthesis, ExoD	0.0159968	0.000155606
+2 dehydropantoate 2 reductase	0.0107274	0.00130987
+GTA NlpC P60 family peptidase	1.93703e-06	8.15582e-06
+Sulfate adenylyltransferase	7.72685e-05	2.44535e-05
+Polysaccharide lyase family 8, N terminal alpha helical domain protein	0.00131969	7.49456e-05
+hypothetical protein	2.79576e-06	2.70708e-05
+UniRef50_A4WQ10	0.00853691	0.0024434
+Heat shock protein 70 	8.32989e-05	1.38414e-05
+hypothetical protein	0.000378919	6.57765e-05
+hypothetical protein	3.92772e-06	8.20751e-06
+DNA polymerase III, subunits gamma and tau	6.11166e-05	0.00101505
+ABC type dipeptide oligopeptide nickel transport system, permease component	0.00444787	0.0008958
+Serine type D Ala D Ala carboxypeptidase	0.0021687	0.000643049
+glycine cleavage system protein T	2.57486e-05	3.59078e-05
+UniRef50_P77395	0.00245708	0.000341806
+UniRef50_P77396	0.00462635	0.000106254
+Nitrate transporter, NarK NasA family	0.000167578	7.58318e-05
+UniRef50_P77393	0.00270624	0.000230218
+riboflavin biosynthesis protein RibD	3.52716e-06	1.10276e-05
+acetolactate synthase, partial	1.12466e-05	6.56195e-06
+UniRef50_E0RYK6	0.000425328	0.000185506
+UniRef50_Q1D2V0	0.000204407	3.52955e-05
+MgtE intracellular region	0.000694326	0.000924127
+Protein translocase subunit SecD	6.41452e-05	0.00218065
+UniRef50_Q9RY56	0.00114732	0.0434242
+Expressed protein 	6.0603e-05	0.000103178
+L lactate transport	5.70672e-06	1.20377e-05
+Probabable oxidoreductase	0.00136384	8.29038e-05
+FO synthase subunit 2	0.00390938	0.000339433
+Methyl accepting chemotaxis sensory transducer	0.000281416	0.000516188
+UniRef50_A7HAH7	0.00109638	1.35316e-05
+PREDICTED	0.000132135	0.000138106
+Marine sediment metagenome DNA, contig	1.24995e-05	1.16241e-05
+UniRef50_F0L9R1	0.00244948	0.000125049
+DNA RNA helicase, superfamily I	0.0129898	0.00284423
+Sortase like acyltransferase	0.00257968	0.00110618
+UniRef50_K0F249	0.00115468	0.000208123
+Glycosyl transferase family 2	0.000195289	0.000633542
+UniRef50_B5GAK8	9.42e-05	2.9709e-06
+L serine dehydratase TdcG	0.00220332	0.00105307
+Membrane protein, putative	0.00018858	0.00240951
+Cro Cl family transcriptional regulator	0.000198967	1.17563e-05
+SIR2 like domain protein	0.000155963	0.00226902
+Holliday junction ATP dependent DNA helicase RuvB	2.01499e-05	8.57809e-06
+N acetylmuramidase	8.06426e-05	5.00439e-05
+Expressed protein 	6.86912e-05	5.94224e-05
+UniRef50_R6W776	3.66277e-06	7.17105e-06
+UvrABC system protein A	0.00214433	0.00177835
+Transposase	0.00292756	0.000571648
+UniRef50_A3PMA4	0.00268915	0.000291433
+hypothetical protein	1.37029e-05	1.07284e-05
+hypothetical protein, partial	0.000188312	1.59075e-05
+Chromosome undetermined scaffold_2, whole genome shotgun sequence	4.51531e-06	2.42132e-06
+Rod shape determining protein RodA	0.00182765	0.000197816
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.49104e-05	5.3523e-05
+Glycosyl transferase	0.000191706	0.000330057
+UniRef50_A7FBG3	0.000196812	0.00262679
+hypothetical protein	1.68872e-05	4.05133e-06
+UDP N acetylglucosamine 1 carboxyvinyltransferase	3.80261e-06	1.42584e-05
+UniRef50_A7FBG6	0.000253044	0.00841098
+UniRef50_W5X953	6.72781e-06	1.11623e-05
+Inner membrane protein YhaH	0.000275859	0.000258002
+hypothetical protein	0.00040796	6.56583e-05
+4 alpha glucanotransferase	0.000414026	0.00165552
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	4.23831e-06	4.95963e-06
+Putative phosphoenolpyruvate synthase regulatory protein	4.28572e-05	2.09532e-05
+hypothetical protein	5.06161e-06	6.66392e-06
+3 deoxy d arabino heptulosonate 7 phosphate synthase isoform 2	7.97047e-05	3.68398e-06
+Fop carboxy terminal duplication domain protein	1.11091e-05	7.06096e-06
+UniRef50_F2K6Q0	0.000311009	0.000157193
+Predicted ATPase 	0.00123615	0.000281305
+pseudouridylate synthase	3.38365e-06	8.05886e-06
+UniRef50_U3SSX9	0.000980001	0.000664177
+UniRef50_B6JNM2	0.000129608	0.000726768
+hypothetical protein	2.5046e-06	3.59846e-06
+hypothetical protein	1.83622e-05	5.70425e-05
+UniRef50_L7ZK34	3.76194e-06	2.35629e-06
+N acetylglucosamine 6 phosphate deacetylase	3.48521e-06	2.19927e-05
+Conjugal transfer pilus assembly protein TraU	3.87186e-05	1.06315e-05
+Marine sediment metagenome DNA, contig	6.20038e-05	2.06695e-05
+UniRef50_F5M3F1	0.012569	0.000893543
+Poly hydroxyalkanoic acid synthase class I	0.0114345	0.00129494
+UniRef50_K4RP34	2.16051e-05	2.02642e-05
+UniRef50_K0CEM4	1.59248e-05	1.51676e-05
+UniRef50_G3JJ51	0.0003251	6.29931e-05
+Glucose 6 phosphate isomerase	0.000125099	0.00274372
+UniRef50_M7N0E8	9.61142e-06	8.90751e-05
+Protein CbrA	0.00241477	0.000525184
+Sugar binding domain containing protein	0.0212443	0.00217921
+Sugar ABC transporter, permease protein	0.00445446	0.000284644
+Dipeptide transport system permease protein DppB 	0.00115567	0.000289727
+Spermidine putrescine import ATP binding protein PotA	0.0196781	0.00597854
+DNA gyrase subunit A	0.000597547	0.000876888
+glucosamine 6 phosphate deaminase, partial	7.33171e-06	1.61578e-05
+UniRef50_V7CWH6	2.69898e-05	0.000552893
+cytidylate kinase, partial	3.3799e-06	1.09431e-05
+hypothetical protein	2.41697e-06	6.05405e-06
+UniRef50_B2TRK3	0.000291812	0.000648775
+Uracil phosphoribosyltransferase	3.81773e-05	4.25697e-05
+Purine nucleoside phosphorylase DeoD type 1	4.00009e-05	0.000100919
+Phosphoenolpyruvate carboxykinase [ATP]	2.03213e-05	5.08461e-05
+UniRef50_D7FYR4	3.99704e-06	1.03042e-05
+O succinylhomoserine sulfhydrylase	0.00602087	0.000607456
+UniRef50_U3SUT1	0.000978317	0.00024071
+DNA topology modulation protein	6.96495e-06	2.59126e-05
+30S ribosomal protein S5	0.000401552	0.00153477
+Multi copper polyphenol oxidoreductase, laccase	0.000610132	0.00211435
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0195866	0.00205139
+Methionine aminopeptidase	0.00684196	0.00285534
+GTP cyclohydrolase 1	4.34028e-05	3.58363e-05
+YjeF family protein	0.000125665	7.24345e-05
+PAP2 superfamily protein	0.00022288	0.00352613
+DNA mismatch repair protein MutL	0.00848787	0.00109848
+single stranded DNA binding protein	2.80425e-05	1.00538e-05
+TGS domain protein	9.79579e-05	2.98776e-05
+PREDICTED	2.87405e-05	2.64785e-05
+Os02g0130900 protein 	2.20962e-05	5.83529e-05
+UniRef50_A6QIU2	0.011914	0.00334561
+Histidine  tRNA ligase 2	5.39999e-06	8.00222e-05
+Protein YicC	0.000121938	0.000155069
+UniRef50_V5SV57	0.000458757	0.000118218
+UniRef50_Q8LJZ2	6.59923e-05	2.30362e-06
+Cysteine peptidase, Clan CA, family C2	3.40023e-05	5.75175e-05
+Methyltransferase type 11	0.000161543	0.000169405
+UniRef50_Q8CR86	0.0116132	0.00211021
+Acetate kinase	0.00984536	0.00127808
+Transferrin binding protein like lipoprotein 	0.000210202	0.00168407
+UniRef50_I8D2T2	3.49254e-05	1.76559e-05
+UniRef50_H4F9I1	0.000181959	0.000144119
+UniRef50_D3QE86	0.013319	0.00192571
+UniRef50_M0P490	7.55961e-06	1.98145e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0331244	0.00234668
+hypothetical protein	3.81446e-06	2.59254e-06
+UniRef50_R2QE79	5.41578e-05	1.0869e-05
+UniRef50_Q3J608	0.00215026	0.000573854
+Potassium transporting ATPase A chain	0.0108553	0.00156087
+Aminopeptidase	0.00020367	0.00254212
+Lantibiotic protection ABC transporter, ATP binding subunit	0.0043843	0.00232854
+UniRef50_UPI0003C1083C	1.03096e-05	3.95793e-05
+cytochrome C oxidase assembly protein	1.11331e-05	1.7388e-05
+UniRef50_R5XYA5	1.68307e-05	0.000214069
+Peptidase S8 and S53 subtilisin kexin sedolisin	0.000699108	0.00143077
+elongation factor Ts	9.09802e-06	3.85109e-05
+Saccharopine dehydrogenase 	0.000206086	0.00155169
+UniRef50_U3K301	1.17862e-05	6.35289e-06
+UniRef50_I4EDU8	0.000139655	4.09718e-05
+TetR family transcriptional regulator	0.000186971	5.89979e-06
+UniRef50_D0W128	2.01064e-05	0.000121169
+putative phosphotransferase	6.14845e-05	9.76911e-05
+Sulfite reductase [NADPH] flavoprotein, alpha component	0.00195699	0.000721823
+hypothetical protein	1.41815e-05	3.76591e-05
+Serine type site specific recombinase	1.22254e-05	0.000656798
+hypothetical protein	2.06739e-05	7.87672e-06
+serine hydroxymethyltransferase, partial	5.82817e-06	1.13182e-05
+LigA	0.000375202	0.000250773
+Probable thiol peroxidase	0.00312555	0.00587549
+Trans aconitate 2 methyltransferase	1.02484e-05	8.01338e-06
+Probable transcriptional regulatory protein Hore_12350	0.000463776	0.0010806
+ppGpp synthetase I, SpoT RelA	0.000251628	0.00431871
+Probable 3 hydroxyacyl CoA dehydrogenase F54C8.1	4.27678e-06	0.000103336
+ATP dependent Clp protease proteolytic subunit 1	0.0135288	0.00335929
+Riboflavin kinase FAD synthase	0.017464	0.00317684
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	3.50156e-05	0.000161796
+Mobilization protein	0.019494	0.00443396
+Aromatic amino acid aminotransferase	0.0024446	0.000120355
+Polyribonucleotide nucleotidyltransferase	6.81858e-06	1.9274e-06
+MULTISPECIES	6.32367e-06	3.64663e-06
+Short chain dehydrogenase family protein	2.51929e-05	7.42317e-05
+Aliphatic sulfonates import ATP binding protein SsuB	0.000127642	0.00417082
+Peptidyl tRNA hydrolase	0.00776288	0.00100505
+molybdopterin guanine dinucleotide biosynthesis protein A	6.49725e-06	4.44259e-06
+PTS family mannose porter, IIC component	0.00437842	0.00445109
+Phosphoglycolate phosphatase	0.00648763	0.000129001
+UniRef50_L4FKH2	4.02656e-05	2.64772e-05
+Transporter	7.62572e-05	0.00128833
+type III effector Hrp dependent outer protein	4.53755e-06	4.23692e-06
+UniRef50_A4WVU5	1.64441e-05	2.62513e-06
+Bifunctional protein PyrR	0.0259609	0.00651741
+Phosphate ABC transporter permease	0.00885294	0.000939239
+Terminase	6.06596e-05	4.31606e-06
+UniRef50_W7WA58	0.00032419	4.13484e-05
+hypothetical protein	2.54339e-05	2.21737e-05
+Expressed protein 	8.60341e-05	8.13318e-06
+Protein translocase subunit SecY	0.000117401	0.00688189
+UniRef50_G7IR91	0.000931369	0.000632473
+Metallopeptidase M24 family protein	0.000436023	0.000108515
+hypothetical protein	2.22543e-05	9.17211e-06
+spermidine putrescine ABC transporter ATP binding protein	2.89313e-05	7.56218e-06
+Phosphoenolpyruvate protein phosphotransferase	0.00635018	0.00387438
+UniRef50_Y0ZY08	0.00100333	0.000472552
+Predicted ATP utilizing enzyme	0.00407842	8.34432e-05
+PREDICTED	2.42617e-06	2.47048e-06
+5 formaminoimidazole 4 carboxamide 1  D ribofuranosyl 5 monophosphate synthetase	0.00247702	0.00100704
+nitrogen regulatory protein P II 1	0.000933357	0.000225401
+UniRef50_M1ZE43	0.000184041	7.20762e-05
+UniRef50_Q16CU0	0.000110996	1.13833e-05
+Dihydrolipoamide acetyltransferase	0.000240699	8.08873e-05
+Replication protein C	0.000128736	1.87724e-05
+UniRef50_V4L8B5	1.80833e-05	1.21424e-05
+hypothetical protein	0.000281772	1.65474e-05
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.0113597	0.00201923
+FeS assembly protein SufB 	4.06268e-06	1.25477e-05
+GntR family transcriptional regulator	2.2054e-05	1.88404e-05
+hypothetical protein	0.000101118	6.938e-05
+hypothetical protein	1.48151e-05	2.38068e-05
+UniRef50_R4YWZ2	0.000153126	0.000120032
+Large exoprotein	0.000564765	0.000258365
+Putative nitrate reductase beta chain 	3.86233e-05	2.65111e-05
+diguanylate cyclase	1.07966e-05	3.41807e-05
+Tyrosine recombinase XerD	0.000115256	0.0036506
+Group II intron encoding maturase	5.78594e-06	6.80144e-06
+hypothetical protein	0.000117691	1.80363e-05
+Electron transport complex subunit D	0.00270563	0.000399788
+UPF0264 protein SCO6440	0.0045002	0.000785453
+UniRef50_Q9ZA63	2.99815e-05	0.000688883
+Phosphoenolpyruvate carboxykinase AcuF	3.38542e-06	6.49829e-05
+glycine betaine ABC transporter ATP binding protein	1.30809e-05	4.1423e-06
+Aldehyde ferredoxin oxidoreductase	0.00157163	0.000359137
+polynucleotide phosphorylase	5.72604e-06	3.56731e-06
+Transcription termination antitermination protein NusG	0.00226384	0.00210992
+Short chain dehydrogenase reductase SDR	7.2714e-06	9.78314e-06
+Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein	3.20926e-05	1.15478e-05
+Histidine ammonia lyase	3.78721e-06	6.8553e-05
+S adenosylmethionine synthase	4.79322e-05	0.000265567
+Stationary phase inducible protein CsiE	0.00273197	0.000654823
+hypothetical protein	4.31384e-05	1.86988e-05
+Protein AroA	0.0129246	0.0019344
+Aspartate ammonia lyase	0.000182136	0.000360195
+Alpha 1,4 glucan	0.000487809	5.78884e-05
+LysR family transcriptional regulator	0.00553528	0.000732861
+D mannonate dehydratase	0.00128111	0.000240447
+UniRef50_Q60356	0.00258988	0.000382141
+riboflavin biosynthesis protein RibD, partial	0.000207057	0.000131464
+UniRef50_W1IMF3	9.58002e-05	0.00044349
+ZYRO0G15466p	0.000163373	0.00376903
+Cbb3 type cytochrome c oxidase subunit I	0.00308637	0.000950313
+Probable ABC transporter permease protein YqgI	0.00492948	0.00296321
+hypothetical protein	3.60642e-06	1.48687e-06
+MFS citrate proton symporter	0.0015639	0.00039615
+glyoxalase	2.53385e-05	1.11669e-05
+hypothetical protein	1.88457e-05	1.06653e-05
+UniRef50_N5H245	0.000330173	3.37018e-05
+UniRef50_I4CUW0	7.93069e-05	1.96436e-05
+Hydroxyacylglutathione hydrolase	0.00209424	0.000514558
+PREDICTED	9.86865e-05	4.20724e-05
+3 hydroxybutyryl CoA dehydratase	4.43657e-05	1.00517e-05
+hypothetical protein	4.997e-06	8.18637e-06
+GTP binding protein typA	1.01671e-05	8.16171e-06
+Peptide deformylase	0.00506329	0.000744086
+hypothetical protein	9.96519e-06	4.54515e-05
+Protein YqgE	7.85003e-05	8.58664e-05
+UniRef50_UPI0003347753	1.60847e-06	4.27208e-06
+UniRef50_Y4VDJ3	0.000297285	0.000359257
+hypothetical protein	8.68734e-06	0.000678026
+hypothetical protein	2.52958e-06	1.88336e-05
+UniRef50_I7DR67	2.00592e-05	1.13342e-05
+Ribose import ATP binding protein RbsA 1	9.03067e-05	6.95498e-06
+UniRef50_Q7DC27	0.00721175	0.000242662
+Putative methylthioribose 1 phosphate isomerase	0.00247	0.000531689
+Ribosomal protein serine N acetyltransferase	0.0104228	0.00106179
+PREDICTED	2.9926e-05	5.58358e-06
+Type VI secretion protein, ImpJ SciO VasE family	3.5948e-06	2.69176e-06
+UniRef50_D4DRQ8	0.000162778	0.000537664
+hypothetical protein	6.8925e-06	4.27168e-06
+Bifunctional purine biosynthesis protein PurH	0.00662146	0.00122211
+Gluconate 5 dehydrogenase	0.0029639	0.000525651
+Ribonuclease J 2	0.0193166	0.00354366
+ABC transporter related protein	0.0103595	0.00272412
+UniRef50_R8BTP6	1.18055e-05	9.33049e-06
+UniRef50_Q08YP5	1.69797e-05	1.22826e-06
+UniRef50_A6TKS3	0.000422735	0.000684
+Oxidoreductase YdhF	0.00237853	0.000312843
+ATP synthase subunit B	6.41114e-05	3.09802e-05
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit 3, mitochondrial	1.56028e-05	3.45749e-06
+MFS transporter	9.0793e-06	4.63831e-06
+ABC transporter ATP binding protein	7.7213e-05	6.8082e-06
+UniRef50_R5GI81	1.70395e-05	0.000396399
+UniRef50_E1V871	6.24244e-05	1.64018e-05
+UniRef50_Q67M06	6.43656e-06	2.48248e-05
+UniRef50_UPI0003C19124	0.000113548	7.02421e-06
+Beta Ig H3 Fasciclin	9.89691e-05	9.2826e-06
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.0184789	0.00254149
+Copper transporting P type ATPase	0.00270053	0.000360052
+ectoine utilization protein EutE, partial	0.000486651	0.000187882
+histidine kinase	1.74255e-06	5.21063e-05
+Myo inositol catabolism IolH protein	0.000209906	0.00282638
+UPF0365 protein RB6389	0.021763	0.00540398
+Phosphotransferase system, lactose cellobiose specific IIB subunit	0.000413789	0.000586829
+AraC family regulatory protein	0.0104224	0.00122169
+ATP dependent RNA helicase DbpA	0.00226932	0.000449562
+Cross beta structure silk protein 1	9.87202e-07	1.83035e-05
+multidrug transporter, partial	1.21536e-06	6.04265e-06
+UniRef50_E6MC83	0.0113267	0.00123063
+hypothetical protein	6.31597e-05	3.1809e-05
+ABC1 family protein	8.55632e-05	0.00417431
+Transcriptional regulatory protein RcsB	0.00158145	0.00174111
+UniRef50_Q5HQ65	0.00219801	0.000380027
+AraC family transcriptional regulator 	1.97848e-05	3.8559e-05
+PREDICTED	5.18032e-05	4.56226e-06
+UniRef50_U1R336	0.0080071	0.00159261
+UniRef50_B9T9L5	0.000169092	4.01651e-05
+UniRef50_Q9RZ19	8.9587e-05	0.00323071
+UniRef50_D3E128	0.00308754	0.000352444
+UniRef50_J9PBA5	2.78931e-05	5.61848e-05
+UniRef50_G8LLE6	5.64784e-05	1.67415e-05
+Phosphomethylpyrimidine synthase	0.00269921	0.000694827
+UniRef50_Q7AX67	8.64889e-05	0.00202715
+UniRef50_K0M6S7	0.022346	0.000839713
+ABC di oligopeptide transporter, periplasmic ligand binding protein	0.0149378	0.00110337
+HD GYP domain protein	0.000313038	0.000995625
+Two component transcriptional regulator, LuxR family	0.00398264	0.00017333
+tetracycline resistance protein	8.60239e-05	4.90988e-05
+UniRef50_K7EFD4	9.73411e-06	3.96505e-05
+N anthranilate isomerase	9.26585e-06	0.00059931
+Cobalt precorrin 6x reductase	0.000718699	0.00435552
+GA module	0.00862526	0.000922524
+IS1272 transposase	0.0007393	0.00115109
+UniRef50_G2JKN3	0.000402249	0.000892819
+2 octaprenyl 6 methoxyphenol hydroxylase	0.00312696	0.000833498
+Aminopeptidase YpdE	0.0022847	0.00135824
+Imidazole glycerol phosphate synthase subunit HisH	0.000170774	0.000926738
+hypothetical protein	3.47036e-07	2.15083e-06
+MFS transporter	2.0753e-05	0.000671208
+Elongation factor P	0.00251896	0.000520586
+UniRef50_S3BX82	4.18593e-05	5.58364e-05
+Alanine racemase 1	0.00301855	0.000265375
+Transcriptional regulator, TetR family	0.000175591	0.000151153
+Glucan binding protein D	0.00398305	0.000656952
+DnaJ domain protein	0.000101835	4.38241e-05
+Predicted protein	0.000159891	6.35381e-06
+Ribonuclease 3	0.000549772	0.000276529
+PREDICTED	2.92875e-05	1.70871e-05
+hypothetical protein	1.67972e-05	1.09022e-05
+Fructose bisphosphate aldolase 2 	0.0001885	0.000159999
+Thymidine kinase	4.34258e-05	1.70366e-05
+MULTISPECIES	1.25647e-05	7.30435e-06
+UniRef50_E1ZPF1	1.25438e-05	6.32346e-05
+UniRef50_D6ZZT0	0.000138014	1.84006e-05
+hypothetical protein	0.000110717	4.28439e-05
+Putative diguanylate cyclase YeaJ	0.0030618	0.000515131
+hypothetical protein	2.91984e-05	9.20189e-07
+hypothetical protein	5.33348e-05	4.9211e-06
+MarR family transcriptional regulator	0.000972421	0.00125041
+Transcriptional regulator, LysR family	0.000506511	0.000300284
+Phosphoglycerate kinase	1.55772e-05	1.28257e-05
+Guanine hypoxanthine permease GhxQ	0.00519521	0.000736172
+Serine hydroxymethyltransferase, mitochondrial	6.86968e-06	1.13799e-05
+hypothetical protein SMAC_10997	6.75229e-05	0.000745682
+Formate hydrogenlyase subunit 2	0.00160436	0.00307953
+Myrosinase binding protein related protein 	5.31657e-06	7.79812e-05
+Elongation factor Tu	0.00081915	0.0586621
+hypothetical protein	3.00829e-05	1.81587e-05
+PREDICTED	2.89653e-06	4.11613e-06
+Conserved domain protein	0.0192677	0.00320602
+Sugar phosphatase YfbT	0.00338482	0.000730065
+Uronate isomerase	0.00311335	0.000487383
+UniRef50_B9DZC4	0.00126953	0.000562353
+ribosomal protein L6	4.34619e-06	3.97638e-05
+UniRef50_Q9RSP5	0.000249295	0.0256768
+ATP phosphoribosyltransferase regulatory subunit	0.00436323	0.000595394
+UniRef50_Q9RSP7	0.000653382	0.0118452
+Probable malate	0.0345996	0.00794319
+YvrB	1.36886e-05	0.00013358
+Leucine  tRNA ligase	3.27289e-06	0.00242862
+Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic	8.06764e-06	2.10811e-05
+UniRef50_A5UMQ3	0.00221303	0.000106129
+UniRef50_W8RY01	0.000274082	8.97297e-05
+hypothetical protein	1.70492e-06	6.31111e-05
+UniRef50_J7TAV9	0.000174679	0.000899016
+hypothetical protein	6.2399e-06	1.56343e-05
+hypothetical protein, partial	9.12705e-05	3.8461e-05
+UniRef50_A7I5Y0	0.00431433	0.000166674
+UniRef50_T2A2T5	0.000567217	0.000758297
+hypothetical protein, partial	3.48943e-05	0.000226507
+UniRef50_Q7NSL8	0.000178793	2.31132e-05
+UniRef50_I6TSJ0	0.00777206	0.000637299
+Xanthine dehydrogenase, large subunit molybdenum cofactor binding domain containing protein	0.000322503	0.000604045
+Protease YdeA	0.00361927	0.000510317
+Xaa Pro dipeptidyl peptidase	0.000258575	0.00153384
+hypothetical protein	8.61888e-06	8.17875e-06
+Protein FixB	0.00357328	0.000192055
+Methyl accepting chemotaxis protein	5.11472e-05	0.00230969
+hypothetical protein	7.91799e-05	1.34713e-05
+Formate transporter	4.27777e-05	7.13128e-05
+High affinity branched chain amino acid transport ATP binding protein LivF	0.00323952	0.0268678
+Glutamyl endopeptidase	0.00602987	0.00155527
+hypothetical protein	3.78853e-05	5.78847e-05
+Riboflavin biosynthesis protein RibBA	1.06488e-05	4.64411e-06
+3 octaprenyl 4 hydroxybenzoate carboxy lyase	6.80794e-06	3.26559e-05
+Glutamate synthase [NADPH] large chain	0.00182933	5.04032e-06
+TRAP type C4 dicarboxylate transport system, small permease component	6.46909e-05	1.71193e-05
+Topology modulation protein	1.02568e-05	0.000221367
+hypothetical protein	3.43387e-05	0.000297363
+FKBP type peptidyl prolyl cis trans isomerase SlyD	0.00560177	0.000513233
+hypothetical protein	2.3519e-05	2.11099e-05
+UniRef50_G7U8F4	0.000284823	0.00293145
+large conductance mechanosensitive channel protein MscL	8.41684e-06	7.69207e-06
+hypothetical protein, partial	0.000282493	0.000102253
+Transcriptional regulator, MerR family protein	0.01003	0.00155721
+Mannose permease IID component	0.0035517	0.00249503
+KaiC like protein 1	0.00358055	0.00107805
+Sulfonate ABC transporter substrate binding protein	1.21083e-05	4.93617e-06
+patatin	2.04039e-05	1.20488e-05
+PREDICTED	1.45837e-05	3.32327e-06
+UniRef50_F8FV37	0.000652973	0.000101452
+ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94	1.69866e-06	4.71231e-06
+Fimbrial biogenesis outer membrane usher protein	8.68293e-05	0.000132608
+UniRef50_S2J745	7.322e-06	3.14554e-06
+C4 dicarboxylic acid transporter DauA	0.00221346	0.00034489
+hypothetical protein	0.000110178	9.44232e-05
+UniRef50_E4U3H9	2.13959e-06	2.17729e-05
+Jag protein	0.00486325	0.000753262
+PHP C terminal domain protein	0.000258094	0.00075648
+UniRef50_A0A041VEI8	4.55439e-05	2.02504e-05
+Phosphate acetyltransferase	3.27698e-06	5.13912e-06
+Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.0020278	0.000861788
+50S ribosomal protein L15	0.00296932	0.00018589
+hypothetical protein	4.41578e-06	3.25874e-05
+cold shock protein	1.53482e-05	1.35414e-05
+Transcription repair coupling factor	0.000719767	8.19935e-05
+hypothetical protein	9.10357e-05	4.91299e-05
+UniRef50_O24850	0.000250222	0.00215834
+Binding protein dependent transport systems inner membrane component	5.04348e-06	3.57767e-06
+WejK	0.00112311	0.000162001
+D amino acid dehydrogenase 3 small subunit	0.000210128	0.00376728
+hypothetical protein	1.20343e-05	2.7051e-06
+Transcriptional regulator GadE	0.00274984	0.000686721
+UniRef50_G7U9H2	0.000378195	0.00227724
+purine binding chemotaxis protein	1.90505e-05	3.38821e-05
+hypothetical protein	4.00448e-06	6.97258e-06
+Transcriptional regulator, PadR family	0.00010792	1.02488e-05
+Uracil permease	0.0221273	0.00209454
+Degenerate transposase 	0.000129211	0.000627866
+excinuclease ABC subunit C	2.74737e-06	3.30816e-06
+UniRef50_R7VY37	1.55113e-06	3.18011e-06
+RNA pyrophosphohydrolase	7.27707e-06	0.000175704
+hypothetical protein	2.64706e-05	8.75131e-06
+50S ribosomal protein L4	0.0169085	0.00590991
+Pentapeptide repeat protein	0.000232907	0.000383619
+UniRef50_I3UGR0	4.66912e-06	1.93905e-06
+UniRef50_B9CVK2	0.00333586	0.00012213
+3 isopropylmalate dehydrogenase	3.04995e-05	1.66557e-05
+N acetyl gamma glutamyl phosphate reductase	1.29254e-05	5.78387e-06
+Phosphopantetheine adenylyltransferase	8.96582e-06	1.39119e-05
+UniRef50_UPI0000EBCE17	0.000154438	6.9582e-05
+Response regulator receiver	0.000437839	0.000127665
+Protein YaaA	1.81568e-05	4.02802e-05
+Light independent protochlorophyllide reductase subunit N	8.78147e-05	1.60022e-05
+Chaperone protein DnaK	0.0209683	0.00550832
+hypothetical protein	0.000115673	2.39267e-05
+Competence protein ComGB	1.07881e-05	0.0013669
+Putative phage major capsid protein, gp36	0.0158917	0.00203302
+UniRef50_F0YS40	0.000208342	0.000266281
+Spermidine putrescine ABC transporter inner membrane protein	0.00145936	0.000452171
+Cobalamin biosynthesis protein G, CbiG	0.0025519	0.00019844
+NifC like ABC type porter molybdate ABC transporter, permease protein	3.7957e-05	1.57507e-05
+Chloramphenicol resistance protein 	0.00871449	0.00154095
+DNA helicase related protein	0.00328729	0.000221204
+ApbE family lipoprotein	0.000686519	0.000165961
+Cu responsive transcriptional regulator	0.00199675	0.00761235
+serine threonine phosphatase	8.31176e-06	6.29764e-06
+Transporter	0.000117503	0.00207627
+Methyl coenzyme M reductase II subunit gamma	0.00201158	0.000240066
+UniRef50_M1N2U9	0.000101779	0.000645913
+hypothetical protein	5.01487e-06	5.50563e-06
+Transcription antiterminator	0.00566071	0.00124551
+Spermidine N acetyltransferase	0.00308172	0.000175361
+spore coat protein	3.79475e-06	3.19432e-06
+UniRef50_Q2CDQ9	9.8632e-05	8.72668e-05
+biotin synthase like protein	1.9959e-05	0.000131058
+CreA protein	3.80554e-06	8.37048e-06
+Paraquat inducible protein A	0.000172001	0.000364035
+UniRef50_V6UC46	1.35286e-05	1.70403e-05
+DMT family permease	0.000412671	0.00235411
+PREDICTED	1.03058e-05	0.000221092
+hypothetical protein	7.65576e-06	9.39896e-06
+ATP synthase subunit alpha	1.57502e-06	3.97916e-06
+HAD superfamily subfamily IIA hydrolase	0.00384597	0.00239683
+Protein kinase transcriptional regulator	4.15821e-05	3.45511e-06
+UniRef50_E3A4M7	0.00122507	0.000242079
+Oligo 1,6 glucosidase	0.000275166	0.000735709
+50S ribosomal protein L6	0.00690157	0.000701487
+Diguanylate cyclase with GAF sensor	1.11542e-05	0.00317814
+UniRef50_M1ZLS1	6.59504e-05	0.000347053
+PTS system sucrose specific IIBC component	0.00307725	0.00208945
+Transcription factor	0.00961666	0.00160464
+hypothetical protein	1.19427e-05	6.74753e-06
+UniRef50_D9RMZ4	0.00188014	0.000487961
+hypothetical protein	6.98036e-06	4.94795e-06
+Copper exporting P type ATPase B	0.00470784	0.000829663
+hypothetical protein	5.82049e-06	5.28285e-07
+UniRef50_G4I6C2	9.15308e-07	1.71095e-05
+UniRef50_G8ATH1	2.363e-05	8.84663e-06
+UniRef50_L0M824	4.09022e-06	1.34569e-06
+DUF28 domain containing protein	5.06291e-06	1.29051e-05
+Phosphonates import ATP binding protein PhnC 1	8.40618e-06	1.00983e-05
+PilT protein domain protein	0.0036935	0.00279098
+NADH quinone oxidoreductase subunit C D	0.0101104	0.00464852
+TonB dependent receptor SusC	1.25906e-06	1.09541e-05
+UniRef50_B7V600	0.00088076	0.000188228
+UniRef50_P75982	0.00157215	0.000861554
+hypothetical protein	0.000155118	1.77214e-05
+Membrane protein	0.00869853	0.00161732
+hypothetical protein	2.59521e-06	6.59687e-06
+Chromosomal replication initiator protein DnaA	8.51303e-05	0.00112507
+Acetoacetyl CoA transferase, beta subunit	0.00085329	0.00576072
+Cell divisio initiation protein	0.0179487	0.00256228
+PREDICTED	2.8512e-05	0.000258593
+NLPA lipoprotein	0.000668788	0.0289905
+5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase	1.53716e-05	7.53188e-06
+Isoleucine  tRNA ligase	1.2652e-06	1.07517e-06
+NAD dependent protein deacylase	0.000299604	0.00394186
+UniRef50_M9VFI4	0.000117537	0.00151298
+PREDICTED	1.60323e-06	1.19109e-06
+hypothetical protein	0.000155086	9.17494e-05
+Conserved domain protein	0.00453893	0.00283691
+Membrane protein	0.000161012	0.000244338
+UniRef50_Q46888	0.00346137	0.00106261
+hypothetical protein	5.7013e-06	8.6254e-06
+Phosphodiesterase YfcE	0.00180787	0.00017037
+Septum site determining protein MinD	0.000372381	0.0166297
+UniRef50_Q7NV70	1.82501e-05	1.93945e-05
+Copper homeostasis protein CutC	0.00159822	0.00070999
+UniRef50_W9A1R1	4.36793e-05	0.000338848
+Iron sulfur  cluster formation protein IscU	0.00198172	0.00160408
+33 kDa chaperonin	0.000557169	0.000100543
+Histidine  tRNA ligase	0.00685654	0.00396214
+Peptidoglycan binding like protein	0.00769906	0.000886405
+3 methyl 2 oxobutanoate hydroxymethyltransferase 1, mitochondrial	8.66733e-06	4.04002e-06
+UniRef50_A6M083	0.000622726	0.000731199
+Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase	5.7727e-05	0.0151527
+Binding protein dependent transport systems inner membrane component	0.0078107	0.00187616
+hypothetical protein	2.33923e-05	3.68196e-05
+CRISPR system Cascade subunit CasE	0.000550118	0.000330091
+Type 1 restriction enzyme R protein	0.0122054	0.00135204
+Exodeoxyribonuclease III Xth	0.00420493	0.000570255
+UniRef50_Q2G1E0	0.0198769	0.00318375
+hypothetical protein	1.05608e-05	8.7737e-05
+Glucose 6 phosphate 1 dehydrogenase	0.0086468	0.00236568
+hypothetical protein, partial	1.93727e-05	2.73521e-05
+Metalloprotease LoiP	0.00439551	0.000237842
+UniRef50_D5WIJ5	0.00341975	0.00100744
+UniRef50_Q2FG30	0.0150483	0.00252201
+hypothetical protein	2.56563e-05	5.48104e-06
+UniRef50_A0A058ZKQ4	0.000108345	4.5086e-05
+ATP dependent dethiobiotin synthetase BioD 1	0.0027424	0.000268846
+Chromosome undetermined SCAF8206, whole genome shotgun sequence. 	7.1909e-06	3.43571e-06
+cobyrinic acid a c diamide adenosyltransferase, partial	1.33003e-05	1.15235e-05
+Glutathione S transferase, N terminal domain	0.00713802	0.0021481
+Cupin domain protein	0.000126469	4.68631e-05
+hypothetical protein	5.17485e-06	2.15359e-06
+PREDICTED	5.45822e-06	3.79758e-06
+Arginine repressor	0.0194507	0.006425
+UniRef50_G8AXA5	2.59996e-05	3.79642e-06
+Tyrosine  tRNA ligase	4.24532e-06	3.76222e-05
+tRNA N6 adenosine threonylcarbamoyltransferase	1.06367e-05	1.06185e-05
+Arginine N succinyltransferase	0.00255943	0.00661814
+DNA 3 methyladenine glycosylase 2	0.00333644	0.000691402
+UniRef50_F5J5S5	0.000158452	9.79259e-05
+hypothetical protein	1.40198e-05	1.8314e-05
+Aminopeptidase	6.02055e-05	0.00197376
+Phosphatidylglycerophosphatase B like protein	0.00711341	0.00267287
+YCII related protein	2.27881e-05	1.09563e-05
+Glycerophosphodiester phosphodiesterase family protein	0.000336549	0.00351341
+hypothetical protein	3.00749e-05	3.55664e-06
+UniRef50_I4CSN5	0.00124962	0.000320456
+Iron compound ABC transporter	9.60647e-05	0.00375091
+Phosphate ABC transporter substrate binding protein 	0.000206831	1.37268e-05
+Leucyl phenylalanyl tRNA  protein transferase	6.57122e-06	1.58643e-05
+Putative transposase	2.15533e-05	3.33551e-06
+Molybdopterin guanine dinucleotide biosynthesis protein	4.08676e-06	9.5939e-06
+PREDICTED	1.13428e-05	1.65756e-05
+Membrane protein	3.08834e-05	0.000532532
+Phosphate starvation inducible protein PhoH, predicted ATPase	0.00294196	0.00102182
+hypothetical protein	3.6193e-06	0.00158935
+Medium chain fatty acid  CoA ligase	0.000300279	0.0181081
+UniRef50_B0VCS4	0.00012253	0.00336666
+UniRef50_P24203	0.00162517	0.000195642
+hypothetical protein	3.66341e-06	3.17789e-06
+PUR operon repressor	0.000307094	0.00169061
+Thioredoxin	0.000531392	0.000288697
+Glyceraldehyde 3 phosphate dehydrogenase 3	1.00047e-05	5.05103e-06
+Cytoplasmic membrane protein	1.70456e-05	0.00154733
+Putative gluconeogenesis factor	0.00604258	0.0015119
+Transketolase 	0.000141554	3.2702e-05
+hypothetical protein	9.20736e-06	8.87274e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	3.25768e-05	3.78733e-05
+Polyamine aminopropyl transferase	0.000151371	0.00167704
+glucose 1 phosphate thymidylyltransferase	0.000192221	7.1992e-05
+sn glycerol 3 phosphate import ATP binding protein UgpC	0.0042801	0.000655185
+ABC transporter ATP binding protein, partial	5.60949e-06	1.33282e-05
+D alanyl D alanine carboxypeptidase	0.00699507	0.000932822
+Bifunctional protein GlmU	3.76308e-06	3.45824e-06
+Glycosyl transferase, family 2	0.00277756	0.000632454
+DNA directed RNA polymerase subunit beta	2.90096e-06	8.03167e-07
+Potassium efflux system protein	0.000202437	0.00467674
+hypothetical protein	0.00040372	3.98049e-05
+UniRef50_A0A021WXJ4	1.38021e-05	1.31414e-05
+hypothetical protein	1.06309e-05	5.8707e-06
+hypothetical protein	6.10663e-05	3.68048e-06
+PREDICTED	6.65923e-06	1.12831e-05
+Tryptophanase L cysteine desulfhydrase, PLP dependent	0.000296389	0.00283156
+TraW protein	7.51763e-05	1.51484e-05
+molybdopterin biosynthesis protein MoeB, partial	7.2262e-06	1.05534e-05
+hypothetical protein	4.10069e-06	9.48458e-06
+UniRef50_C5N2S8	0.0179806	0.00501165
+UniRef50_A9M1X9	0.000267811	0.000765705
+hypothetical protein	7.16664e-06	2.92969e-06
+Glycosyltransferase	0.000282024	0.00291851
+UniRef50_Q49ZP2	3.50574e-05	3.17714e-05
+Peptide transport system permease protein sapB	0.00012318	8.19419e-05
+cysteinyl tRNA synthetase	2.64808e-06	3.33361e-06
+hypothetical protein	7.63105e-06	5.91005e-06
+Polar amino acid ABC transporter, inner membrane subunit	0.000483642	0.000566144
+UniRef50_F2AIJ3	0.00063027	0.000256665
+UniRef50_R6Z8P0	1.08417e-05	3.18191e-05
+hypothetical protein	3.80633e-06	2.47449e-06
+Essential for conjugative transfer protein	7.85193e-06	3.02193e-06
+protease I	5.76306e-06	1.21785e-05
+Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein	0.00618711	0.000948066
+UniRef50_U5URI8	0.011178	0.00178009
+UniRef50_B9KPC4	0.000782973	0.000350553
+UniRef50_D3Q1B6	2.86583e-06	8.23935e-06
+LysR family transcriptional regulator	0.000365471	0.00207113
+UniRef50_N6DL92	4.27041e-05	4.87741e-05
+UniRef50_T1ATE5	0.00089766	4.36317e-05
+T121.1	4.08284e-06	3.26953e-05
+Aldehyde dehydrogenase	4.11727e-05	2.80057e-05
+Flp pilus assembly protein, pilin Flp	5.44193e-05	2.49301e-05
+PREDICTED	2.14007e-05	6.74518e-06
+UniRef50_I6U0J6	0.00310252	0.0011233
+UniRef50_Q8FHD1	0.00163767	0.000131264
+NADH quinone oxidoreductase subunit L	0.000119646	0.00211649
+UniRef50_A4QB30	0.000633977	0.00186626
+hypothetical protein	4.5295e-06	8.43471e-06
+Nitroreductase	0.00483456	0.000531783
+transcriptional regulator	5.57316e-06	5.23062e-06
+hypothetical protein	0.0001323	1.71151e-05
+UniRef50_M5E3Y3	4.52156e-05	1.63232e-05
+Glycine  tRNA ligase	0.002227	0.000352379
+UniRef50_A4EG79	1.96722e-05	2.73546e-05
+Ribonucleoside triphosphate reductase class III catalytic subunit	0.0159385	0.00478973
+UniRef50_Q3IV40	0.0160795	0.00200122
+hypothetical protein	0.000144617	2.66518e-05
+2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase	5.53622e-05	2.28031e-05
+PREDICTED	2.32624e-05	1.46269e-06
+UniRef50_K0L2H6	0.00310913	0.000924188
+UniRef50_O06997	0.000290973	0.000939072
+Response regulator MprA	5.76223e-05	0.00013173
+GGDEF domain protein	1.76446e-05	0.000108114
+Phosphopentomutase	1.17843e-05	0.00115519
+Ribosomal RNA large subunit methyltransferase E	7.65054e-05	2.45853e-05
+Primosomal protein 1	0.00100163	0.00272075
+UniRef50_A9GTV7	0.000213523	0.000179846
+Probable chemoreceptor glutamine deamidase CheD	0.000270253	7.96462e-05
+hypothetical protein	0.000230782	1.87077e-05
+hypothetical protein	1.61897e-05	1.38711e-05
+UniRef50_V6FEQ6	0.000283522	0.000239767
+UniRef50_I6T6N0	0.00327618	0.00113208
+MULTISPECIES	3.29674e-06	3.69798e-06
+ABC 2 type transporter	0.000605878	0.00492808
+UniRef50_A3VVX3	3.98914e-06	1.21938e-06
+PREDICTED	6.78579e-05	0.000185567
+CreA	1.26574e-05	9.30146e-06
+23S rRNA tRNA pseudouridine synthase A	0.000101135	1.88595e-05
+UniRef50_U1T6A5	0.00015267	2.33634e-06
+Aldehyde dehydrogenase	0.000239405	0.000855499
+hypothetical protein	3.73828e-06	3.14313e-06
+hypothetical protein	5.40952e-06	3.30552e-06
+TonB denpendent receptor	0.000231936	0.000323787
+Accessory Sec system protein translocase subunit SecY2	0.00954191	0.00162588
+hypothetical protein	8.08992e-06	4.05335e-06
+Ribosomal RNA small subunit methyltransferase I	0.00399903	0.00108713
+Peptidase S14, ClpP	0.000603011	0.000687799
+UniRef50_Q5FQ01	0.000244466	0.000441572
+DNA polymerase I	3.76516e-06	2.32956e-05
+Aminotransferase	0.00459345	0.000716944
+tRNA pseudouridine synthase D	4.77605e-06	3.76643e-06
+Heavy metal cation  efflux system protein, CzcD family	0.00233372	0.000613713
+Transposase	7.85774e-05	3.03237e-05
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	1.23744e-05	2.23574e-05
+UniRef50_S5XNV8	0.000589514	2.80464e-05
+hypothetical protein	1.56071e-06	6.9631e-06
+UniRef50_F9Z292	0.000275108	0.00388207
+Ribonuclease H	3.8593e-05	1.2375e-05
+Ribonucleoside diphosphate reductase subunit beta	0.000239307	0.0155033
+hypothetical protein	7.50434e-06	6.57167e-05
+UniRef50_A0A037J8C0	0.00014905	3.07798e-05
+ABC transporter	5.08894e-06	2.92633e-06
+FprA	8.80249e-05	0.000205507
+5 formyltetrahydrofolate cyclo ligase family protein	0.00850183	0.000515172
+Glutaminase	0.000930103	0.000979037
+hypothetical protein	0.00010152	1.22195e-05
+Aldehyde alcohol dehydrogenase	0.000700465	0.00101928
+GTP cyclohydrolase 1	3.37586e-05	2.81701e-05
+Cyclic di GMP phosphodiesterase	0.00320999	0.000409098
+UniRef50_B9TCQ2	4.56146e-05	0.000286599
+hypothetical protein	6.81585e-06	7.35682e-07
+UniRef50_Q2Y7Q1	5.4547e-06	8.91019e-06
+UniRef50_A0A023PYQ4	8.47457e-06	0.00040429
+Chaperone protein DnaJ	0.00387489	8.8808e-05
+Nitrate nitrite sensor protein NarQ	0.00284714	0.000610677
+Phosphoglucosamine mutase	0.00342054	0.000851603
+hypothetical protein	9.94781e-05	7.186e-05
+Alpha galactosidase	0.00366896	0.0014874
+Isopentenyl diphosphate Delta isomerase	5.04165e-05	7.32355e-06
+hypothetical protein	7.74083e-06	1.8157e-05
+CBS domain containing protein	0.00251688	0.000443596
+Sphingosine kinase	0.000112433	0.00209601
+UniRef50_Q8DTR9	0.00423364	0.000908593
+UDP N acetylmuramoylalanine  D glutamate ligase	0.00275595	0.000140194
+Orotate phosphoribosyltransferase	1.9515e-05	3.69407e-05
+Expressed protein 	0.000280695	0.000377791
+Rhamnan synthesis protein F	3.48473e-06	3.41257e-06
+50S ribosomal protein L5	0.000254163	0.000156611
+NH dependent NAD(+) synthetase	3.32337e-05	4.33096e-05
+UniRef50_J7P463	2.73702e-06	0.000747318
+Macrolide export ATP binding permease protein MacB	4.39172e-06	2.76559e-06
+UniRef50_G9AIM1	1.60806e-05	7.77932e-05
+UniRef50_B5JD39	8.7911e-06	0.000226009
+WD repeat family protein	0.000151826	0.00113692
+UniRef50_X6XZ89	0.000298754	0.000241357
+UniRef50_A0A059LAV6	0.000226777	0.000527695
+Holliday junction resolvase RecU	0.0046651	0.00189845
+UniRef50_K1Y1K5	0.000239112	1.2349e-05
+hypothetical protein	3.29073e-05	5.86875e-05
+Peptide chain release factor 1	9.34857e-05	0.000265887
+histidinol dehydrogenase	3.79156e-06	3.44246e-06
+Oxidoreductase, FAD FMN binding protein	0.0110428	0.00133048
+Probable Ni Fe hydrogenase B type cytochrome subunit	0.0119031	0.00183357
+UniRef50_A6LWU3	0.000146367	0.00035223
+UniRef50_D3A715	3.7509e-05	0.000189179
+N acetyl gamma glutamyl phosphate reductase	1.60906e-05	2.31577e-05
+hypothetical protein	4.3613e-06	1.13158e-05
+Antitermination protein Q homolog from lambdoid prophage Qin	0.00367309	0.00034021
+UniRef50_U2ZTD9	3.25286e-07	5.16946e-07
+Excision nuclease UvrA 	0.00014746	0.000111932
+Acyl carrier protein	2.73339e-05	0.000207761
+Shikimate dehydrogenase	3.84463e-05	1.85892e-05
+hypothetical protein	2.77653e-05	1.69057e-05
+peptide ABC transporter ATP binding protein	1.99995e-06	3.97501e-06
+UniRef50_D5ZSF1	0.000348511	0.000756337
+Helix turn helix domain protein	0.000100064	0.000331713
+hypothetical protein	2.70766e-05	6.51327e-05
+UPF0260 protein Plav_0898	0.0149956	0.00119369
+hypothetical protein	9.17639e-06	9.83831e-05
+Aminotransferase	0.011326	0.00190133
+UniRef50_A1B4T6	0.000286012	0.000403675
+Periplasmic binding protein LacI transcriptionalregulator	0.000115382	1.30842e-05
+UniRef50_B8J6J0	1.10092e-05	4.96333e-05
+hypothetical protein	1.87946e-05	1.33207e-05
+Monofunctional biosynthetic peptidoglycan transglycosylase	0.00635035	0.000214284
+Endonuclease 4	0.00285706	0.00267973
+UniRef50_G8ATW7	0.000111113	1.66115e-05
+hypothetical protein, partial	3.83403e-05	5.4697e-05
+Fibrillar collagen chain FAp1 alpha	7.48753e-06	2.65903e-06
+Transcriptional regulator, LysR family	0.00015438	0.00340604
+GTP binding protein Era, partial	1.63947e-05	7.7575e-05
+Periplasmic tail specific protease	0.000818982	8.64743e-05
+Superoxide dismutase [Mn]	0.000204382	3.32827e-05
+hypothetical protein	1.10561e-06	8.28174e-06
+UniRef50_B2FUP3	0.000112417	4.099e-05
+DNA polymerase II large subunit	2.5371e-06	3.37387e-05
+Dihydroorotate dehydrogenase	0.000300121	1.03081e-05
+UniRef50_Q9RSJ1	1.80305e-06	0.000764865
+UniRef50_Q2C7C2	2.89927e-05	1.5977e-05
+UniRef50_A8SBF8	2.39123e-05	9.97832e-06
+Probable acyltransferase YihG	0.00254676	0.000106003
+hypothetical protein	0.000164174	4.04081e-05
+UniRef50_B5Z3J3	7.60111e-05	6.52428e-06
+UniRef50_Q1BAN7	0.00176517	0.00314682
+UniRef50_G0NRW8	1.97982e-06	1.33124e-05
+PREDICTED	4.70259e-05	0.00409624
+Aminomethyltransferase	1.97588e-05	7.51889e-06
+Dyp type peroxidase	0.000238124	0.00208549
+UniRef50_F0VQM4	5.75945e-06	5.12237e-06
+hypothetical protein	4.66233e-05	3.5029e-05
+Protein YdeP	0.00154177	0.000383465
+Hydrolase, haloacid dehalogenase like family	0.00911846	0.000150393
+hypothetical protein	5.17496e-06	4.42191e-06
+riboflavin biosynthesis protein RibF	9.00214e-06	6.53499e-06
+LuxR family transcriptional regulator	8.23716e-06	5.93284e-06
+BldA regulated nucleotide binding protein 	0.000165756	0.00015377
+Catabolic 3 dehydroquinase	0.000102651	2.06996e-05
+Conserved repeat protein 	0.000541849	0.000159578
+Lipoprotein, YaeC family	7.21127e-05	2.435e-05
+hypothetical protein	5.85727e-06	1.94889e-05
+binding protein dependent transporter inner membrane component	4.57193e-05	5.63988e-06
+Acetyl CoA acetyltransferase	4.31475e-06	3.10184e-06
+Exodeoxyribonuclease I	0.000458997	0.000239091
+L seryl tRNA selenium transferase	0.000112183	0.00151467
+Acetyltransferase	0.00516689	0.00103178
+Endonuclease exonuclease phosphatase	9.52496e-05	0.00373262
+esterase, partial	2.41802e-05	1.27305e-05
+Isopentenyl diphosphate Delta isomerase	5.40434e-05	8.02278e-06
+hypothetical protein	7.47891e-06	6.25882e-05
+UniRef50_A0A059IPL7	0.000476744	0.000724071
+Protein involved in meta pathway of phenol degradation	0.000144235	0.00189784
+methionine aminopeptidase	4.84928e-05	5.91177e-06
+hypothetical protein	2.59551e-06	0.000732039
+glycosyl transferase family protein	2.83261e-05	1.55652e-05
+Sensor protein PilS	0.000460019	0.000353368
+Aldehyde reductase Ahr	0.00316015	0.00470566
+UniRef50_I0J9Y4	0.00579986	0.000528146
+hypothetical protein	5.33629e-06	3.9941e-06
+UniRef50_B9KRB9	0.00501844	6.20643e-05
+TRAP dicarboxylate transporter	2.66119e-05	1.9716e-05
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	6.97393e-06	5.78473e-06
+UniRef50_Q9HTN0	0.00143222	0.000255307
+Zinc dependent alcohol dehydrogenase	0.000130277	0.00203146
+sugar kinase	0.000105873	4.90752e-05
+Protein ArsC 1	0.0072603	0.000423513
+Putative major facilitator superfamily transporter	0.000307507	0.000348325
+hypothetical protein	3.88063e-06	1.48712e-05
+Putative arginyl tRNA  protein transferase	0.00821105	0.000942318
+cation	0.000243787	0.000131379
+hypothetical protein	1.00402e-05	8.18669e-06
+UPF0271 protein Bxeno_A4200	0.00484679	0.000299867
+Aminopeptidase	0.000238178	0.0164808
+UniRef50_E6RJK7	6.92655e-05	1.51763e-05
+UniRef50_Q3HKI4	0.0235298	0.00431641
+UniRef50_Q3HKI5	0.0470582	0.0053626
+UniRef50_UPI00034472D6	2.91348e-05	4.54405e-05
+Putative 3 methyladenine DNA glycosylase	6.40583e-06	1.20259e-05
+phosphohydrolase	3.70267e-05	0.000164702
+Sua5 YciO YrdC YwlC family protein, partial	2.31348e-05	4.80008e-05
+UniRef50_E8RT81	9.28342e-05	1.89868e-05
+Propionate catabolism operon regulatory protein	0.00570408	0.00135145
+Alanine  tRNA ligase	0.0102407	0.00347733
+UniRef50_B9G127	7.38047e-05	5.28377e-05
+UniRef50_UPI0003C17643	4.76549e-06	1.65545e-06
+Chaperone protein HtpG	0.000904133	0.000621164
+hypothetical protein	7.27847e-05	4.57667e-06
+Phosphopantetheine adenylyltransferase	5.88783e-05	0.000642677
+UniRef50_G4LM89	0.00105266	0.000177769
+UniRef50_S0F055	2.62085e-06	2.83202e-06
+hypothetical protein	7.67847e-06	4.08265e-05
+Ribonuclease H	1.29066e-05	4.71054e-05
+Phosphatidylcholine synthase	0.00794209	0.00228293
+Nucleoside diphosphate kinase A	1.13413e-05	9.2104e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0116168	0.00160275
+hypothetical protein	4.68582e-05	6.98496e-06
+Putative carboxypeptidase YocD	8.37208e-06	0.000794831
+Glycosyltransferase Gtf1	9.88503e-05	0.00158483
+UniRef50_F8WKF3	0.0173957	0.00119616
+DNA polymerase III, alpha subunit	2.97217e-05	0.00344243
+UniRef50_M1LZD3	0.000245695	0.000168189
+UniRef50_D7W4Z4	1.84845e-05	8.24813e-06
+Glycerol 3 phosphate dehydrogenase	0.000137554	0.00350262
+UniRef50_R7PG96	0.000223373	0.00064132
+Lactoylglutathione lyase	0.00197743	0.00330768
+Marine sediment metagenome DNA, contig	1.21209e-05	9.75203e-06
+Riboflavin transporter RibU	0.00780076	0.000187052
+Transketolase	0.000140605	4.28498e-05
+UniRef50_P45564	0.00313532	0.000552979
+UniRef50_Q8CQW0	0.00837697	0.00207742
+hypothetical protein	9.29714e-06	4.51738e-05
+Propionyl coenzyme A carboxylase alpha chain	4.35443e-06	1.81238e-06
+UniRef50_G2JJI4	0.000433614	0.00258348
+hypothetical protein	2.37966e-05	1.12633e-05
+UniRef50_I4YT79	2.50816e-05	1.06802e-05
+FMN reductase 	0.000180616	0.00029632
+Alcohol dehydrogenase, zinc containing	0.00975527	0.00136048
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00319634	0.0110615
+UniRef50_F0KMP6	0.00013984	0.00317192
+PREDICTED	2.25265e-05	0.000177794
+RNA pseudouridylate synthase family protein	0.00138132	0.000354881
+Sodium D alanine glycine symporter	0.000438725	0.000936107
+Oligopeptide ABC transporter membrane spanning protein	0.00225278	0.000716198
+citryl CoA lyase	5.09868e-05	5.06679e-06
+TRAP dicarboxylate transporter, DctM subunit	0.00367719	0.000477105
+hypothetical protein	6.40602e-06	2.27121e-06
+Phage protein	0.00363649	0.00126558
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.41536e-05	6.42865e-06
+Teichoic acid biosynthesis protein B	0.00652952	0.00149757
+hypothetical protein	5.55664e-05	1.44355e-05
+UniRef50_Q8DSW4	0.00384769	0.000775216
+hypothetical protein	8.01519e-06	2.2052e-05
+L lactate permease	0.0065142	0.0230196
+Short chain dehydrogenase reductase SDR	0.00104386	0.000801167
+hypothetical protein	2.22475e-06	3.8278e-06
+FeS assembly protein SufD	0.00772689	0.000807553
+Primosome assembly protein PriA	0.000181623	0.003052
+PREDICTED	1.59479e-06	2.39531e-06
+D5 like N terminal domain protein 	8.06064e-06	8.99086e-06
+Transcriptional regulator, TetR family	0.000684603	0.00123812
+UniRef50_Q3J4U2	0.0115027	0.00146131
+hypothetical protein	0.000213558	4.46539e-05
+Cryptic outer membrane porin BglH	0.00419947	0.000604578
+Transglutaminase like domain protein	0.00266458	0.000353266
+UPF0234 protein PMI0103	0.00260397	0.00263977
+30S ribosomal protein S17	8.87324e-05	0.000216074
+Methyltransferase	0.000147179	0.00609218
+Inner membrane translocator	0.000112183	0.0019181
+UniRef50_A6QIK5	0.00155999	0.00628494
+Pseudouridine synthase	0.000120339	0.00299007
+hypothetical protein	1.59255e-05	1.2903e-05
+thioredoxin	0.00022241	7.29478e-05
+UniRef50_I6U015	0.00323642	0.000883199
+Iron compound ABC transporter, permease protein	0.0154048	0.00158924
+major facilitator transporter	0.00046163	6.65073e-05
+Lon protease	0.000508833	0.000129712
+Integrase	0.000114787	4.48908e-05
+Alanine dehydrogenase	0.000350041	0.00440528
+UniRef50_E6E9V0	0.000115979	0.00066782
+Membrane protein, putative	0.00033055	0.00311241
+Predicted tubulin like protein	0.00160965	0.000124356
+Putative antiporter subunit mnhG2	0.0137693	0.000226158
+GCN5 related N acetyltransferase	0.000385361	0.000419555
+Transcriptional regulator MarR family	0.00177842	0.000458992
+Flagellar hook basal body protein	0.000914348	0.00028647
+Adenylate kinase	6.947e-06	1.42695e-05
+Marine sediment metagenome DNA, contig	2.70122e-05	0.00198053
+DNA primase	0.00319682	0.000566232
+Ribose phosphate pyrophosphokinase	4.27215e-05	3.3027e-05
+UniRef50_D8PHS6	4.22849e-06	0.000226221
+putative oxidase	2.74655e-05	9.80164e-05
+Chemotaxis protein methyltransferase 2	0.000872301	0.000606084
+UniRef50_F9YAM3	0.000732641	4.17263e-05
+ISSep1, transposase family protein	0.00104273	0.00010774
+Sulfolipid biosynthesis protein	0.000749774	0.000110436
+UniRef50_A3PLB3	0.00972911	0.00159589
+UniRef50_B3JPS9	2.19112e-05	1.10453e-05
+transcriptional regulator	0.000126358	2.7304e-05
+UPF0259 membrane protein plu2479	0.00200104	0.000504791
+Acetyltransferase	0.0129725	0.000761286
+Lipoyl synthase	4.74353e-06	1.70886e-05
+UniRef50_A0A059KIS0	1.05818e-05	2.03032e-05
+Glutamate  tRNA ligase	4.33121e-06	2.90745e-05
+hypothetical protein	3.24842e-06	2.3495e-06
+PREDICTED	9.32102e-06	5.56263e-06
+Cell wall biosynthesis protein, MurD like peptide ligase family	0.00359417	0.000480463
+Permease	0.00415199	0.000869611
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.42384e-05	1.04751e-05
+extracellular solute binding protein	8.84229e-06	0.000259771
+UniRef50_Q5HS30	0.00316893	0.00164252
+acetyltransferase	0.000108509	6.5423e-05
+PTS glucose transporter subunit IIA	1.00692e-05	3.51392e-06
+UniRef50_E1RMJ4	2.33067e-05	2.0726e-05
+Bacterial PH domain protein	0.0043846	0.000762055
+UniRef50_V9WPU7	0.000142697	6.69032e-05
+UniRef50_D4HFD7	3.63689e-05	0.000180264
+UniRef50_U5NML8	0.00210854	0.000322967
+UniRef50_Q9I082	3.21558e-05	0.000444342
+UniRef50_U5NML2	0.00856357	0.00154459
+UniRef50_Q9I089	0.000388325	0.000293023
+Ferredoxin dependent glutamate synthase 2, chloroplastic	1.96525e-06	1.39871e-06
+Transcriptional activator protein NhaR	0.00240563	0.000219331
+ATP synthase subunit b	0.0255777	0.00305854
+electron transporter RnfB, partial	4.18703e-05	1.15834e-05
+Putative ABC transporter solute binding lipoprotein	4.74458e-05	4.21922e-05
+Putative membrane protein	3.5209e-05	5.66807e-05
+hypothetical protein	8.57081e-05	4.14966e-05
+Low specificity L threonine aldolase	0.000488335	0.000551699
+HTH type transcriptional regulator VqsM	0.000489718	0.000109494
+Cytosine deaminase	0.00262104	0.00103313
+lysophospholipase	2.10286e-05	2.34941e-05
+ShET2 enterotoxin domain protein	0.00284944	0.000285239
+hypothetical protein	8.24971e-06	8.73605e-06
+Nucleoside diphosphate sugar epimerase dehydratase	6.85901e-05	0.00147701
+Monosaccharide ABC transporter membrane protein, CUT2 family 	0.000486185	0.000186296
+UniRef50_V5XTJ1	0.00139589	0.000480857
+hypothetical protein	8.40074e-05	2.09527e-05
+Non ribosomal peptide synthetase	3.2648e-05	9.69009e-06
+Probable remnant of a transposase protein	4.19863e-05	2.16766e-05
+UniRef50_W1K3W6	1.97304e-05	5.24551e-06
+ABC transporter homolog	0.00577289	0.000108567
+5 methylcytosine specific restriction enzyme A	0.00251697	0.002933
+UniRef50_Q49XC4	0.0188875	0.0023141
+Secondary thiamine phosphate synthase enzyme, variant	1.42341e-05	1.35298e-05
+Universal stress protein UspA	0.000118364	0.00312766
+conserved hypothetical protein	4.74182e-05	8.51321e-06
+Putative aminotransferase YugH	0.00019676	0.000699592
+UniRef50_I3TTH4	8.41234e-05	2.59051e-05
+hypothetical protein	0.000149854	1.00392e-05
+UniRef50_I3TTH2	0.0134494	0.0017785
+UniRef50_I3TTH3	0.000328801	4.2097e-05
+Membrane flanked domain containing protein	3.44947e-05	0.000173428
+Acetolactate synthase small subunit 1, chloroplastic	1.93383e-05	8.37136e-05
+UniRef50_Q49XL3	0.0077214	0.0026517
+UniRef50_I1G1I4	3.25161e-05	3.2924e-06
+LolC E family lipoprotein releasing system, transmembrane protein	6.19391e-06	9.3287e-06
+cytochrome C550	0.000390881	4.23773e-05
+NADPH dependent FMN reductase	0.0011549	0.00169228
+Chloride channel protein	8.40671e-05	0.00228772
+UniRef50_U1RIR7	0.000112826	2.15136e-05
+Argininosuccinate lyase	0.00214507	0.000501554
+DNA entry nuclease	0.00576456	0.00136306
+UDP 4 amino 4 deoxy L arabinose  oxoglutarate aminotransferase	0.00265231	0.000187111
+Nuclease SbcCD subunit C	0.00829188	0.001705
+UniRef50_Q8CQW1	0.00215711	0.000156342
+Ribosomal RNA large subunit methyltransferase F	0.000416133	0.000592814
+UniRef50_Q8CQW3	0.00903258	0.00239004
+UniRef50_Q8CQW5	0.00445763	0.00181213
+UniRef50_Q8CQW7	0.0154443	0.000446691
+Pyridoxal phosphate enzyme, YggS family	0.00483809	0.00238024
+UniRef50_A6LZ09	0.00114786	0.00106738
+Aspartate aminotransferase	0.000352838	0.00043565
+Phage infection protein, putative	0.000313461	0.000396349
+DNA helicase, Rad3	0.000227709	0.000425876
+UniRef50_I0EP63	7.16569e-05	0.00108945
+hypothetical protein	0.000146574	0.000181075
+spermidine putrescine ABC transporter permease, partial	2.71272e-05	0.000109119
+Respiratory chain NADH dehydrogenase domain, 51 kDa subunit	0.000749631	0.00138039
+Bcr CflA subfamily drug resistance transporter	8.48768e-06	4.32194e-06
+hypothetical protein	7.28131e-05	0.00033673
+Arabitol phosphate dehydrogenase	0.000106728	0.00100042
+Uracil permease	0.00422191	0.00154146
+UniRef50_C4J3V7	0.000166542	9.50335e-05
+Transposase	8.4265e-06	7.34708e-06
+Acetylornithine deacetylase	0.00852831	0.00214255
+UniRef50_A5UKP7	0.00231055	0.00011845
+membrane protein	0.000257601	0.000120699
+GTP binding protein	0.00269365	0.000486531
+Acyl CoA dehydrogenase	0.0133981	0.00132
+LysR family bacterial regulatory helix turn helix protein	0.000148259	0.000319315
+Lysine  tRNA ligase	1.32826e-05	2.19873e-06
+Putative transcriptional regulator	5.5541e-05	0.00016828
+ATP phosphoribosyltransferase	3.46149e-05	0.00100908
+UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.0155926	0.00194877
+Methylenetetrahydrofolate reductase	0.000242513	0.000587082
+Cysteine desulfurase, SufS subfamily	0.000248062	0.000349839
+inosine uridine nucleoside hydrolase	9.98614e-06	3.92751e-06
+Maltodextrin phosphorylase	0.00409548	0.00272448
+UniRef50_P76272	0.00301526	0.000600678
+Tributyrin esterase	0.0354768	0.00374313
+UniRef50_G4KXX3	8.96666e-05	0.000739823
+Shikimate 5 dehydrogenase	2.95807e-05	1.4036e-05
+50S ribosomal protein L6	0.0240311	0.00232851
+UniRef50_A6M2I8	0.000392305	0.000439467
+MarR family transcriptional regulator	0.00137429	0.000446134
+Type II secretion system protein L	0.00376247	0.000282176
+Acetyltransferase, GNAT family	0.0190317	0.000754707
+L lactate dehydrogenase	0.000251838	0.000517284
+50S ribosomal protein L7 L12	0.0272869	0.00188819
+UniRef50_D4HCK8	0.000612763	0.00263437
+Polyribonucleotide nucleotidyltransferase	4.0686e-06	9.38052e-06
+MutT nudix family protein	0.000251782	0.022184
+Pyridine nucleotide disulfide oxidoreductase	0.000182907	0.001906
+Glutathione peroxidase	0.00237742	0.000514834
+sn glycerol 3 phosphate import ATP binding protein UgpC	5.66917e-05	2.60928e-05
+sugar ABC transporter permease	5.50821e-05	9.78596e-05
+HTH type transcriptional regulator CueR	0.00417084	0.0118481
+Segregation and condensation protein B	0.0145725	0.000852473
+Peptidase U32	0.00244321	0.000629789
+Clumping factor A	0.0224119	0.00212922
+UniRef50_Q9RVI9	0.000611906	0.0237674
+UniRef50_Q9RVI8	9.65244e-05	0.0240936
+Regulatory protein UhpC	0.00182004	0.000518611
+UniRef50_C7DA27	2.46956e-05	9.67932e-06
+hypothetical protein	0.000147746	1.04924e-05
+UniRef50_U1KC82	6.94247e-06	5.8052e-06
+50S ribosomal protein L13	1.79599e-05	4.44308e-05
+Pseudouridine 5 phosphate glycosidase	0.00279394	0.0004272
+Permease	0.00478933	0.00073811
+coproporphyrinogen III oxidase	2.63695e-05	6.1552e-06
+HTH type transcriptional regulator SarX	0.00576817	0.0014605
+Os03g0204900 protein 	0.000255501	0.00030472
+Transcriptional regulator	0.010483	0.000261002
+hypothetical protein	4.02323e-06	0.000181893
+hypothetical protein	3.39822e-06	2.21124e-05
+2 hydroxyacid dehydrogenase	1.52405e-05	3.15504e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.00216357	0.000435057
+Ferrous iron transporter B	0.000202097	0.00383815
+Predicted protein 	9.84587e-05	7.96093e-05
+UniRef50_C5YL49	6.1152e-05	2.27474e-05
+PTS sugar transporter subunit IIA	1.7433e-05	4.69985e-05
+branched chain amino acid ABC transporter ATP binding protein	9.69579e-06	0.000176171
+UniRef50_Q5JN18	0.000222724	0.000166184
+UniRef50_A0A059ILG1	3.19231e-05	1.07102e-05
+Class II aldolase adducin family protein	0.000682268	0.0024628
+ATP synthase gamma chain	0.000254757	0.00314701
+Valine  tRNA ligase	1.85632e-06	2.05891e-06
+UniRef50_E3A2F4	0.000594962	0.000145233
+hypothetical protein, partial	1.46617e-05	1.05674e-05
+UniRef50_A8NT37	6.24871e-05	4.32073e-05
+Adenylyltransferase and sulfurtransferase MOCS3	3.2759e-06	3.50865e-06
+3 oxoacyl [acyl carrier protein] reductase	6.94902e-06	2.46642e-05
+Cell wall associated hydrolase like protein	0.000372563	0.00095761
+Adenylosuccinate lyase	0.000255921	7.1943e-05
+Chaperone SurA	0.00334599	0.000232452
+Two component sensor protein	0.00495077	0.000319322
+ErfK YbiS YcfS YnhG	0.000339771	0.00290125
+Probable acetolactate synthase small subunit	3.9428e-05	0.000255676
+UniRef50_Q6FE82	0.000270682	0.00118628
+Putative reductase Bcenmc03_4815	0.000437485	0.000131264
+Oxidoreductase	0.000199785	0.00224867
+sodium	5.80411e-05	0.00309004
+hypothetical protein, partial	6.02507e-05	0.000163762
+acetyl CoA acetyltransferase	4.24431e-06	6.11813e-05
+UniRef50_Q9RYY7	4.28678e-05	0.00620375
+hypothetical protein	1.82669e-06	6.61112e-05
+UniRef50_Q8DW90	0.00547742	0.000794723
+UniRef50_A6EWF4	1.76748e-05	0.000647955
+tRNA dihydrouridine synthase C	0.00425385	0.00084471
+D galactose binding periplasmic protein MglB	0.000120339	8.64979e-05
+DEAD DEAH box helicase domain protein	0.000177023	0.0122575
+Phage primase	5.41075e-05	0.00255231
+UniRef50_M5ADI0	9.02462e-06	6.02104e-06
+L Threonine dehydratase biosynthetic IlvA	0.00340617	0.0191979
+hypothetical protein	4.01713e-06	3.28678e-05
+UniRef50_I0JFD7	0.00347718	0.000466631
+hypothetical protein	0.00014685	1.97294e-05
+UniRef50_X5FYX4	2.43526e-05	1.52828e-05
+hypothetical protein	2.60576e-05	0.000105243
+UniRef50_A9GJ97	6.19601e-05	7.09002e-06
+Respiratory nitrate reductase beta chain	4.02906e-05	2.75532e-05
+Phosphoribosylformylglycinamidine cyclo ligase	0.0025384	0.000583976
+hypothetical protein	6.55345e-06	1.24074e-05
+Nucleoside diphosphate kinase II, chloroplastic	7.28105e-06	1.93037e-05
+Two component sensor histidine kinase like protein	0.0249722	0.00277967
+Thymidylate kinase	0.000371193	0.00753505
+UniRef50_A7X0T7	0.00980163	0.00297986
+Hemolysin type calcium binding region	2.57068e-05	1.12652e-05
+hypothetical protein, partial	1.8749e-05	9.05188e-06
+ABC type transporter, periplasmic subunit family 3	0.00219247	0.000267217
+NAD transhydrogenase subunit beta	6.00213e-06	2.84542e-06
+ATP dependent helicase nuclease subunit A	0.000353714	0.00192818
+UniRef50_F0J0R1	1.15238e-06	1.17052e-06
+UniRef50_I4JFC2	6.39893e-05	4.68748e-05
+hypothetical protein	8.85245e-05	5.52673e-05
+UniRef50_W4FWB3	1.23884e-05	1.36668e-05
+AraC family transcriptional regulator	0.000243684	3.72379e-05
+2 oxoglutarate dehydrogenase E1 component	1.37756e-06	1.85118e-05
+PREDICTED	1.63533e-05	2.21634e-05
+recombination and repair protein	2.43936e-06	2.89756e-06
+Multidrug resistance protein MdtC	3.29842e-05	5.96395e-05
+Replication initiator RepC	0.000445433	4.97686e-05
+UniRef50_J3IXG8	0.000151598	0.000182221
+Transporter CDF family	0.00236567	0.000352227
+Hsp33 like chaperonin	0.000694873	0.000129433
+DNA polymerase I	9.03994e-05	0.00320795
+DNA invertase	0.000199332	0.000116842
+Bacterial extracellular solute binding family protein	0.0123609	0.0012186
+Dihydroxy acid dehydratase	5.32616e-05	4.90145e-05
+hypothetical protein	3.35432e-05	2.85211e-05
+Probable enoyl CoA hydratase, mitochondrial	9.96067e-06	8.75103e-06
+hypothetical protein	2.12056e-05	2.73576e-05
+UniRef50_J9V4P4	0.00208005	0.000423513
+PE family protein	5.42316e-06	8.86957e-05
+UniRef50_G8AVW9	6.48006e-05	6.3525e-05
+ATP dependent RNA helicase DBP2	0.00367994	0.00197266
+UniRef50_P30979	0.00482187	0.000233
+Putative aliphatic sulfonates binding protein	1.65433e-05	2.84636e-05
+hypothetical protein M271_01890	9.41589e-06	3.9298e-06
+UniRef50_Q0APX2	3.25889e-05	8.73569e-06
+UniRef50_M7XX40	6.13869e-05	2.70127e-05
+TonB denpendent receptor	0.00106032	0.000269739
+UniRef50_A6LV94	0.000611227	0.00239491
+HTH like domain protein	0.000204156	4.30684e-05
+UniRef50_C2ZZN3	7.87017e-06	0.000314156
+Metallophosphoesterase	0.00208726	0.000213828
+hypothetical protein	6.21621e-05	7.31045e-06
+hypothetical protein	4.39559e-05	5.91914e-06
+light independent protochlorophyllide reductase subunit B	0.000230134	8.37954e-06
+hypothetical protein, partial	6.65729e-05	9.19978e-06
+UniRef50_I5BWG8	8.37528e-05	9.02988e-06
+hypothetical protein	1.2355e-05	2.28915e-05
+flagellin	1.21419e-06	6.73873e-06
+hypothetical protein	0.000119181	2.49275e-05
+Lipopolysaccharide export system ATP binding protein LptB 	2.64221e-05	7.85822e-05
+CpaB family protein	0.00511853	0.0004298
+UniRef50_X5ERA2	7.26887e-05	0.000180268
+DNA recombination protein RecO	1.62191e-05	3.2639e-05
+hypothetical protein	5.45508e-05	2.08987e-05
+UniRef50_E3ZRD8	5.49265e-05	0.000183927
+Isoprenyl transferase	8.09066e-06	5.60799e-06
+3 oxoacyl [acyl carrier protein] synthase 3	1.09929e-05	2.30396e-05
+hypothetical protein	6.62873e-05	2.78407e-05
+type I secretion protein	1.22191e-06	4.85431e-06
+hypothetical protein	6.11454e-06	6.70343e-06
+Uroporphyrinogen decarboxylase	5.02016e-06	0.00175504
+translation initiation factor IF 3	2.04306e-05	2.29956e-05
+hypothetical protein DICSQDRAFT_95428	6.35363e-05	0.000160205
+Non ribosomal peptide synthetase modules and related proteins like	6.23642e-05	0.000100529
+Flagellar FlaF family protein	4.08134e-05	1.12834e-05
+3 keto L gulonate 6 phosphate decarboxylase	2.54273e-05	3.50067e-05
+UniRef50_W7X754	0.000132106	3.58448e-06
+Lipoprotein, putative	0.00680314	0.00115634
+Cobalt insertion protein	0.0123096	0.000998471
+UPF0301 protein Nwi_2752	1.58551e-05	1.83282e-05
+Thioredoxin reductase	0.000395276	0.00264076
+ThiW protein	0.000220929	0.000864097
+hypothetical protein	8.91553e-06	2.03201e-05
+translation initiation factor IF 3	0.000265923	0.000231358
+Glycosyl transferases group 1 family protein	0.00716509	0.00213839
+hypothetical protein	1.23154e-05	5.54027e-06
+hypothetical protein	0.00016303	0.000316041
+Trimethylamine N oxide reductase 2	0.00207569	0.00165273
+hypothetical protein, partial	0.000293583	5.92236e-05
+Cell division protein FtsZ	0.0194971	0.00269127
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.27801e-05	2.77563e-06
+peptidase M24	2.76524e-06	3.28339e-05
+Anti sigma factor N terminus	0.000105281	0.00076486
+1,2 phenylacetyl CoA epoxidase, subunit C	0.00226495	0.00455468
+Transcriptional regulator	0.000191835	0.000176557
+UniRef50_Q57747	0.0017474	0.000484811
+UniRef50_E3M3A4	6.9251e-06	0.000117112
+Ribonuclease 3	5.55856e-06	1.68676e-05
+DNA directed RNA polymerase subunit beta	4.6239e-06	5.8572e-06
+Alcohol dehydrogenase GroES domain protein	0.000281262	0.000101912
+UniRef50_C5X103	3.49059e-05	0.000134488
+tRNA dimethylallyltransferase	0.000321202	0.0019962
+Type III restriction modification system DNA endonuclease	7.46668e-05	0.0022757
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	3.94571e-06	1.31784e-06
+L lactate dehydrogenase 	0.00445911	0.000290007
+Peptidase, M20 M25 M40 family	0.0117304	0.0022202
+UniRef50_B5ERH7	1.68804e-05	1.11969e-05
+Exodeoxyribonuclease III	0.00258306	0.000940836
+UniRef50_B6GDZ1	9.04857e-05	2.79754e-06
+UniRef50_Q3Y002	7.33856e-06	0.000108044
+TonB dependent receptor	3.94393e-05	0.00216592
+UniRef50_A8LL44	0.000162064	0.00014437
+Response regulator receiver protein	0.00010366	0.000337902
+UniRef50_UPI0003C14EB6	5.25316e-06	1.30946e-06
+Glutamate dehydrogenase	0.000657406	0.000284633
+UniRef50_L1K914	0.0012869	0.000158136
+damage inducible protein CinA	1.59086e-05	2.34123e-06
+UniRef50_X6J8Z0	4.43152e-05	3.33474e-05
+hypothetical protein SMAC_10035	0.000162568	5.69507e-06
+NH dependent NAD(+) synthetase	0.000130109	7.28502e-06
+Two component transcriptional regulator, LuxR family	0.0119272	0.00191581
+Wall associated protein	0.00446914	0.000511423
+ATP dependent 6 phosphofructokinase	2.33514e-05	6.96909e-06
+PREDICTED	1.19906e-05	8.2292e-06
+UniRef50_A0A037Z3Z8	1.76937e-05	2.27936e-05
+Putative phosphonates transport system permease protein PhnE	0.00432043	0.000205929
+UniRef50_M7A0E0	8.13472e-06	0.000308756
+Multiphosphoryl transfer protein 2	0.00292562	0.000367876
+Cobalt transporter	1.78474e-05	9.83979e-06
+Potassium efflux system KefA protein   Small conductance mechanosensitive channel	0.00016964	2.70436e-05
+UniRef50_A0A017HSP4	6.36129e-05	1.82655e-05
+SEC C motif domain protein	0.000250265	0.00114242
+PREDICTED	1.26686e-06	5.84022e-06
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	6.30781e-06	8.17548e-06
+Chromosome I, genome	0.000115996	3.85574e-05
+Rhs element Vgr family protein	5.24875e-05	4.9208e-06
+Ubiquinone biosynthesis O methyltransferase	0.00563986	0.00128166
+UniRef50_L7WZX4	0.000917075	5.43118e-05
+Formate dehydrogenase N alpha subunit @ selenocysteine containing	0.00162986	0.000238134
+UniRef50_A0A017HCQ2	3.11893e-05	8.54492e-06
+Deoxyribose phosphate aldolase	0.000627109	0.0017606
+Marine sediment metagenome DNA, contig	2.67056e-05	0.000131723
+HTH type transcriptional regulator YjiE	0.00129804	0.000202495
+Diguanylate cyclase domain protein	0.000714832	0.00024048
+UniRef50_F8JJM3	2.6595e-06	4.24375e-06
+Oxoglutarate dehydrogenase , E1 component	0.000159875	6.48503e-05
+UniRef50_P44908	0.00344458	0.00207039
+UniRef50_E3F0C5	0.00290757	0.000459229
+hypothetical protein	0.00011625	2.23509e-05
+Chemotaxis protein MotB	0.000577662	9.06918e-05
+Tryptophanase	0.00180301	0.000216541
+UniRef50_F3U1C5	0.00260815	0.000670036
+Chloride channel protein	0.0027344	0.000427036
+Biotin [acetyl CoA carboxylase] ligase	0.000495256	0.000633465
+hypothetical protein, partial	1.04521e-05	7.17047e-06
+UniRef50_F4N161	0.00130433	0.000102845
+ribonucleoside diphosphate reductase	6.0368e-05	8.0623e-06
+Excinuclease ABC, A subunit 	1.09825e-05	1.27949e-05
+1,4 alpha glucan branching enzyme	0.000215095	0.00047643
+hypothetical protein	0.000716461	1.70907e-05
+Ribosomal protein L25 L23	1.39033e-06	2.88274e-06
+UniRef50_Z4K4V4	0.000339603	8.8287e-05
+UniRef50_X1YKP1	0.000163904	0.000145283
+hypothetical protein	5.06804e-06	2.54201e-05
+Flagellar protein FlaF, putative	2.43944e-05	3.6967e-05
+Alpha glucosidase	0.00600122	0.000843896
+Probable nuclear antigen	3.3543e-05	1.46567e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00738574	0.00111443
+NAD dependent epimerase dehydratase	0.00912181	0.000584759
+DNA replication and repair protein RecF	0.0006696	0.000246325
+Long chain fatty acid  CoA ligase	0.00333901	0.00260151
+Sigma 54 interacting domain protein	7.15047e-05	0.0259718
+Met 10+ like protein	0.000586171	0.000758621
+Histidine kinase	0.00198051	0.000134573
+UniRef50_C8N7Z4	3.79124e-05	5.67419e-06
+hypothetical protein	4.07498e-06	1.79008e-06
+hypothetical protein, partial	3.20362e-05	7.28789e-05
+Glutaminase asparaginase	0.000362032	8.58364e-05
+Internalin J	1.48834e-05	5.0398e-06
+Cation transport protein ChaC, putative	1.55728e-05	1.0985e-05
+extracellular solute binding protein	3.03761e-05	6.00813e-05
+7 cyano 7 deazaguanine synthase	0.00719056	0.00243524
+Nitrate reductase Z subunit beta	4.7406e-05	4.89432e-05
+UniRef50_R4GKP1	4.39528e-05	2.97543e-06
+UniRef50_E4RQB3	8.89323e-05	2.21591e-05
+Ribonuclease 3	0.000153698	0.0036568
+Rhodanese like protein	1.18798e-05	2.49501e-05
+UniRef50_I6TRN9	0.00618411	0.00112611
+Cell wall binding repeat protein	1.24211e-06	0.00136899
+hypothetical protein	1.09478e-05	2.45172e-05
+ATP dependent helicase	0.00022643	0.00288281
+UniRef50_U6KE00	6.16306e-06	1.04535e-05
+FAD dependent oxidoreductase	1.98852e-05	0.00116002
+hypothetical protein	9.71799e-05	2.05116e-05
+Cytochrome c	0.00682773	0.000465713
+UniRef50_Q5HRL1	0.0102191	0.00229665
+UniRef50_E3A2F6	0.00218511	0.00113257
+Peptidyl tRNA hydrolase	4.03546e-05	1.47644e-05
+hypothetical protein	3.90136e-06	3.14748e-06
+Methyl accepting chemotaxis protein TlpC	0.000289442	0.000250113
+UniRef50_C1CXQ2	0.000237682	0.0168856
+Phospholipid binding protein	0.000168274	0.00316081
+PREDICTED	1.6552e-05	4.70557e-05
+hypothetical protein	1.60251e-05	3.1925e-05
+UniRef50_A0RBY1	7.1967e-05	0.000916121
+UniRef50_U3T289	0.000276432	0.00271834
+UniRef50_J0JAX6	5.81281e-05	1.52271e-05
+UniRef50_B9TMP1	4.84612e-06	0.000112512
+Ribosomal protein L7Ae L30e S12e Gadd45	0.000379566	0.000335018
+UniRef50_A5UJE1	0.00245266	8.50235e-05
+UniRef50_G0DRR1	0.000524365	0.00109805
+PREDICTED	2.58884e-06	1.20126e-05
+UniRef50_A3CLV1	0.00560762	0.00164284
+hypothetical protein	0.000348457	1.79503e-05
+UniRef50_I6U158	0.00440887	0.000175704
+MULTISPECIES	1.64921e-05	2.06734e-05
+hypothetical protein	7.54459e-06	2.37099e-05
+UniRef50_J8V820	0.000287888	8.55122e-05
+Ribosomal RNA small subunit methyltransferase H	0.000169706	0.00356422
+UniRef50_S5ZQH2	4.06938e-05	0.00271958
+Nickel import ATP binding protein NikD	0.00210112	0.00012249
+Quinolinate synthase A	1.19e-05	0.00088161
+UniRef50_U5RSM0	0.000464561	0.000605144
+UniRef50_R5FEK9	3.23807e-05	0.000448383
+ATP synthase subunit a	0.000116857	0.000105258
+UniRef50_I8QU08	4.2603e-05	0.000102585
+PREDICTED	0.000169092	1.60519e-05
+2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.00308841	0.000201503
+Hemolysin type calcium binding region	9.96783e-06	2.8391e-06
+PTS system glucose specific EIICB component	0.00369322	0.000873602
+Hydrogenase maturation factor, HypF	0.00209487	0.000772987
+UniRef50_R6UTM8	1.21206e-05	1.31712e-05
+UniRef50_UPI0002ADB961	1.09871e-05	1.2286e-05
+UniRef50_Q5HQZ0	0.0116886	0.00157329
+Porin D	0.00081716	0.000507173
+3 5 exonuclease	6.33382e-05	0.00073418
+HupH hydrogenase expression protein	0.000134268	1.66114e-05
+hypothetical protein	2.03571e-05	9.97023e-06
+UniRef50_A0A030TPT1	0.000470179	0.000166249
+Type II secretion system protein F, GspF	0.00183797	0.000164743
+hypothetical protein	3.12811e-05	4.28092e-06
+Alanine racemase	0.000152514	0.000307285
+Mg2+ transporter protein, CorA family protein	0.0196269	0.00212011
+3 isopropylmalate dehydrogenase 1	4.705e-06	3.62046e-06
+UniRef50_B0VUU2	0.000153911	0.00429798
+Replication associated protein	0.0139389	0.00314195
+UniRef50_E3A4C5	2.45796e-06	3.96006e-05
+Phosphoribosylformylglycinamidine synthase 2	1.68817e-05	0.00110448
+UniRef50_S5RIW0	0.000204241	0.00118423
+hypothetical protein	0.000283438	0.000125677
+Methionine synthase	2.28575e-06	3.63554e-05
+hypothetical protein	1.24495e-05	4.38378e-05
+UniRef50_A6LRU6	0.000121352	0.00119012
+UniRef50_A6LRU7	0.000422072	0.00102882
+UniRef50_A1SVB2	3.22184e-05	0.00187589
+UniRef50_B0V786	0.000193419	0.00922405
+TetR family transcriptional regulator	0.000318014	2.072e-05
+dihydroorotase	1.78956e-05	2.6488e-06
+hypothetical protein	1.09051e-05	0.000606108
+UniRef50_A6FKW5	2.68162e-05	1.20915e-05
+DNA mismatch repair protein MutS	3.54171e-06	2.78706e-05
+hypothetical protein	4.73638e-06	0.000336103
+hypothetical protein	4.78536e-06	2.53368e-06
+UniRef50_Q73D76	3.83935e-05	8.32112e-05
+hypothetical protein	2.52513e-05	0.000104933
+PhoH family protein	0.000889103	0.000149583
+UniRef50_Q8H580	8.21006e-05	1.64376e-05
+UniRef50_D7B233	1.5041e-05	8.4014e-06
+glutathione ABC transporter substrate binding protein GsiB	2.02454e-05	1.22506e-05
+Extracellular solute binding protein, family 1	0.000436876	0.000213692
+3 deoxy D manno octulosonic acid  8 phosphate synthase	2.62369e-05	2.68981e-05
+MULTISPECIES	0.00013882	4.27704e-05
+50S ribosomal protein L19	0.021064	0.000372551
+UniRef50_Q28MI3	0.000209983	1.21975e-05
+UniRef50_Q28MI2	7.90941e-05	1.83119e-05
+glyceraldehyde 3 phosphate dehydrogenase	8.18807e-05	2.51686e-05
+Aryl alcohol dehydrogenase family enzyme	0.00496441	0.00145889
+Predicted protein	4.04207e-05	1.31036e-05
+Multidrug ABC transporter, ATPase component	0.00339399	0.000518169
+UniRef50_F0YBG4	2.32276e-06	4.75998e-06
+Glutathione synthetase	5.48144e-05	5.55768e-06
+sulfoxide reductase heme binding subunit yedz	5.02363e-05	8.27293e-06
+Cytosine deaminase	0.000484591	0.000168564
+Na translocating NADH quinone reductase subunit C	0.000845887	0.000163442
+PREDICTED	9.1668e-06	1.33699e-05
+Esterase YqiA	0.00109133	0.000368091
+hypothetical protein	1.6069e-05	2.35054e-05
+UniRef50_K0HFH6	0.000261566	0.00270056
+UniRef50_Q3J266	0.00358304	0.000749427
+UniRef50_Q3J267	0.00208034	0.000173625
+ABC transporter	0.000127322	0.00287613
+Carbamate kinase 2	0.0109067	0.00291763
+Thiamine binding protein	0.0017341	0.000140729
+UniRef50_E8QNM4	9.96339e-05	0.0017655
+Phage tail sheath protein FI	0.00099067	0.000582508
+Ribonuclease P protein component	0.00165965	0.000528612
+Oxidoreductase, Gfo Idh MocA family protein	0.000123731	0.00323036
+Putative permease IIC component	0.00268638	7.07524e-05
+hypothetical protein	9.74167e-06	2.5641e-06
+hypothetical protein	5.64178e-05	2.85886e-05
+UniRef50_X6KZ77	0.00050129	0.000132182
+hypothetical protein	2.32248e-05	1.31396e-05
+DNA polymerase III subunit alpha	6.49173e-06	1.43676e-06
+3 phosphoshikimate 1 carboxyvinyltransferase	0.000611143	0.000403211
+UniRef50_F0XXB3	9.52113e-05	0.000100436
+Putative TonB dependent receptor	0.000292436	0.000205316
+Iron containing alcohol dehydrogenase	0.00099964	0.000413824
+Serine rich repeat protein	2.31757e-06	3.31334e-06
+UniRef50_Q8H3H1	0.00026241	1.384e-05
+Glutamate racemase	0.000101517	5.11765e-05
+DNA polymerase of the X family containing C terminal PHP hydrolase domain	6.06758e-05	0.00281414
+hypothetical protein	5.0333e-05	0.000140268
+UniRef50_A0A037W4W5	3.04334e-05	7.22218e-06
+Cyclase family protein	0.000691538	0.00046709
+Ribose ABC transporter, periplasmic ribose binding protein RbsB 	0.000413458	3.58262e-05
+NAD dependent epimerase dehydratase	0.00026709	9.56175e-05
+Putative phosphatase	0.000298816	9.67194e-05
+von Willebrand factor type A	0.00704618	0.000356396
+hypothetical protein	4.63756e-05	1.07682e-05
+N acetyl gamma glutamyl phosphate reductase	0.00049101	0.00509351
+Fatty acid metabolism regulator protein	0.00201205	0.00138973
+UniRef50_A6QFE8	0.017777	0.00425865
+Probable amidophosphoribosyltransferase	0.000460783	0.000457634
+hypothetical protein, partial	4.13248e-05	3.25084e-05
+Diguanylate cyclase and metal dependent phosphohydrolase	0.000318709	0.000425931
+Type I restriction modification system, specificity determinant	0.00482764	0.00113029
+Acetyl CoA hydrolase	0.00843902	0.000717019
+L serine ammonia lyase, partial	1.74823e-05	0.000102506
+hypothetical protein	2.44194e-05	7.41987e-06
+Elongation factor P	8.80736e-06	1.80624e-05
+UniRef50_Q8P1D8	0.00524316	0.000590566
+histidine kinase, partial	4.94063e-05	0.0026167
+Adapter protein MecA	0.000164437	0.000119236
+UniRef50_J0EKQ4	0.000485407	0.000224579
+Ferritin	0.00972529	0.00125918
+Replication initiation protein RepC 	0.000288915	2.02904e-05
+Tryptophan synthase alpha chain	1.29931e-05	2.75052e-06
+Cysteine desulfurase	0.0257702	0.00323855
+Transportin, putative	9.40581e-07	0.000181737
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0190318	0.0024472
+UniRef50_A8Z4C3	8.24645e-05	0.000276621
+Ser Asp rich fibrinogen binding protein	0.0114534	0.00166052
+hypothetical protein	4.20398e-05	8.03006e-06
+DNA 3 methylpurine glycosylase	0.000119626	0.000788494
+hypothetical protein	7.26249e-06	0.000250584
+UniRef50_B0V5G5	0.000647001	0.00355803
+Mll5269 protein	0.00208281	0.000571906
+hypothetical protein	2.62655e-06	3.00575e-05
+Transcriptional regulator, TetR family	0.000169404	0.000997972
+hypothetical protein	1.53647e-05	3.47468e-06
+Signal transduction histidine kinase, LytS	0.00103358	0.000903589
+Peptidyl tRNA hydrolase	6.45732e-05	1.79168e-05
+Replicative DNA helicase	8.1031e-05	0.00414997
+Glucose 1 phosphate adenylyltransferase	9.74396e-06	1.20135e-05
+TRAP T family transporter, large  inner membrane subunit	0.00340573	0.000155796
+Dihydroorotate dehydrogenase 	5.18942e-06	3.52981e-06
+thioredoxin	0.000302664	0.000105288
+UniRef50_K9ERP2	5.81158e-06	1.08536e-05
+Diaminohydroxyphosphoribosylaminopyrimidine deaminase	0.000188764	0.00174707
+UniRef50_J7N582	2.75048e-05	0.00156611
+Ribonuclease 3	1.4111e-05	6.59923e-06
+UniRef50_Q8CR64	0.0099856	0.00182809
+Trimethylamine methyltransferase MttB like protein	0.0041463	0.000838604
+ParB like nuclease	3.44582e-05	0.000114961
+Arginine  tRNA ligase	2.82696e-06	4.01238e-06
+Malate dehydrogenase	0.0100871	0.00156836
+Thioredoxin reductase	6.4556e-05	5.67202e-05
+Zonadhesin	5.80924e-05	7.86217e-06
+porphyrin biosynthesis protein HemD	3.3226e-06	5.36046e-06
+hypothetical protein	4.36885e-05	0.000168603
+UniRef50_F4MZ90	9.46213e-05	5.93526e-05
+UniRef50_Q3IWQ9	0.000527442	0.000326088
+Ribosomal protein alanine acetyltransferase	0.000465861	0.00111568
+hypothetical protein	7.16677e-05	3.9947e-05
+UniRef50_P37498	8.44892e-05	0.00109041
+UniRef50_P37497	0.000400955	0.000438277
+Inner membrane transporter ygjI	8.1423e-05	7.63477e-05
+UniRef50_A3M617	0.000238687	0.00113456
+UniRef50_Q3IXS5	0.00252339	0.00159779
+Non canonical purine NTP pyrophosphatase	0.00011234	1.86692e-05
+tRNA N6 adenosine threonylcarbamoyltransferase	9.9743e-06	1.64181e-06
+hypothetical protein	0.000253381	2.87792e-05
+Beta glucosidase A	2.86252e-06	4.33033e-06
+Thioesterase superfamily protein	1.22286e-05	0.000273702
+amidohydrolase	1.03982e-05	1.01273e-05
+UniRef50_I0C5D3	0.00262425	0.00029632
+MreB like protein	0.000346007	0.00476074
+hypothetical protein, partial	2.88119e-06	7.86999e-06
+antitermination protein NusG	2.84838e-05	0.000363882
+DNA topoisomerase 4 subunit B	3.62063e-06	3.92081e-06
+Plasmid recombination enzyme type 3 	0.000959999	0.000153689
+UniRef50_F9YWG0	0.000627109	0.00174348
+Membrane protein	1.73445e-05	0.000953626
+UniRef50_F6E617	1.72732e-05	4.47177e-06
+Membrane protein insertase YidC	7.93123e-05	0.00121219
+FhuE receptor	0.00306262	0.00080601
+Chitinase	0.000127538	0.000942534
+Soluble epoxide hydrolase	0.000296016	0.000151153
+NAD specific glutamate dehydrogenase	4.62061e-05	2.11717e-05
+UniRef50_M5EIH7	0.00024036	0.000107179
+DNA polymerase III subunit alpha	0.0105231	0.0011888
+DNA methylase	0.000359219	0.000442151
+hypothetical protein	0.000163616	1.31128e-05
+1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000112308	0.00119727
+UniRef50_E6KS29	7.94524e-05	0.00327215
+UniRef50_D6UC71	0.000594038	1.64475e-05
+Peptide chain release factor 1	0.000284513	0.00264146
+flagellar P ring protein FlgI	6.57048e-06	7.56235e-06
+UniRef50_P76594	0.00158345	0.000364997
+Probable allantoicase	0.000149577	0.00255722
+Transcription termination factor NusA	0.00140005	0.00179648
+UniRef50_Q8X958	0.00203496	0.000628073
+UniRef50_M4D1J6	3.41887e-05	0.000210382
+Fibrinogen binding protein	6.31349e-05	2.3739e-05
+aminoglycoside resistance protein	5.86148e-06	5.02486e-06
+UniRef50_M4IFW7	0.000210648	3.84871e-05
+UniRef50_W1IYA0	2.37186e-06	3.98609e-06
+UniRef50_A0A011NJ23	3.39603e-06	7.17335e-06
+Glyoxalase bleomycin resistance protein dioxygenase	0.000701143	0.0177361
+Non canonical purine NTP pyrophosphatase	7.64378e-05	1.07868e-05
+Apolipoprotein N acyltransferase	0.000587157	0.000217324
+Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000245702	0.000217429
+integrase catalytic subunit	0.000561732	1.34663e-05
+BRO, N terminal	7.61025e-05	1.23564e-05
+UniRef50_Q9I122	7.26364e-05	3.82898e-05
+hypothetical protein, partial	1.53397e-05	1.46678e-05
+Bifunctional enzyme IspD IspF	5.10108e-06	4.15505e-06
+Minor tail protein gp26 related protein	1.09088e-05	0.00120345
+hypothetical protein	6.38955e-06	0.000538311
+Predicted DNA modification methylase	0.00276833	0.000271963
+UniRef50_U2FHG3	0.000197141	0.000152717
+UniRef50_A0A011QRD8	2.56358e-05	0.000232138
+hypothetical protein	1.8958e-05	9.57701e-07
+Secretory lipase family protein	1.29544e-05	6.41318e-06
+UTP  glucose 1 phosphate uridylyltransferase	0.000278042	5.94847e-05
+UniRef50_R9SMD3	0.00304688	0.000352758
+cell division protein FtsZ	1.07429e-05	7.61842e-06
+Ribosomal RNA small subunit methyltransferase A	0.00258503	0.00135999
+gas vesicle protein	3.94058e-05	4.78308e-05
+hypothetical protein, partial	0.000652138	9.37605e-05
+hypothetical protein	4.02651e-05	1.54522e-05
+hypothetical protein	0.00010755	8.9724e-05
+Farnesyl diphosphate synthase	0.00278731	0.00144418
+UniRef50_D3QDI5	0.0115593	0.000671842
+NAD transhydrogenase subunit alpha part 1	0.000179413	0.00518514
+Selenium dependent molybdenum hydroxylase 1	0.000530167	0.000762781
+Hydrolase, NUDIX family	0.000359776	0.00314347
+dihydropyrimidine dehydrogenase subunit A	1.02593e-05	1.53436e-05
+UniRef50_Z6NTK4	4.22878e-05	0.000916172
+NifS IcsS protein homolog	0.00341331	0.00105726
+Mercuric reductase like protein	0.0188046	0.00181813
+1 deoxy D xylulose 5 phosphate synthase	2.11431e-06	5.05542e-06
+ribonucleotide diphosphate reductase subunit alpha, partial	3.70219e-05	0.00395752
+Ferritin like protein	0.000195289	0.00170089
+FMN dependent NADH azoreductase	0.00959043	0.00156101
+3 hydroxybutyrate dehydrogenase	8.68537e-05	2.47083e-05
+Hydrolase, haloacid dehalogenase like family	0.0195421	0.00363489
+hypothetical protein	1.18175e-05	4.86893e-06
+HTH type transcriptional regulator GlvR	0.000262247	0.0001235
+hypothetical protein	9.74032e-05	0.000179096
+glutathione synthetase	3.49199e-05	1.47173e-05
+UniRef50_A0A038FYY7	0.000207813	1.15429e-05
+Predicted protein	8.26193e-05	1.06094e-05
+peptide ABC transporter ATPase	1.15321e-05	2.70929e-06
+PREDICTED	7.20829e-06	1.20835e-05
+UniRef50_S6BC90	0.00636272	0.000870379
+Pheromone autoinducer 2 transporter	9.98371e-05	1.25322e-05
+hypothetical protein	1.18401e-05	1.36524e-05
+Type IV fimbrial assembly protein PilC	0.00173022	0.000107398
+UPF0355 protein MRSA252	0.00395615	0.000443382
+UniRef50_G8RDK6	0.0137834	0.000214796
+Hypothetical glucose inhibited protein n terminal and c terminal truncated	1.25815e-05	1.17186e-05
+Cardiolipin synthase 1	0.00899202	0.0018531
+PTS system, IIC component	0.000121938	0.00016535
+UniRef50_D4HDK7	0.000161285	0.00394386
+Para nitrobenzyl esterase chain A	0.0153625	0.00267035
+UniRef50_A6LQ09	0.000597267	0.000625318
+Amidophosphoribosyltransferase	7.18364e-06	4.7388e-05
+MFS transporter	8.76429e-05	0.00161743
+Imidazolonepropionase	9.17026e-05	0.00387829
+Succinyl CoA	0.000189234	5.9917e-05
+Translation factor GUF1 homolog, mitochondrial	1.08139e-05	2.48555e-06
+Mlr7559 protein	2.52925e-06	2.02014e-06
+UTP  glucose 1 phosphate uridylyltransferase	0.000194009	4.07042e-05
+DNA gyrase subunit A	7.16931e-06	8.09957e-06
+Tyrosine  tRNA ligase	0.00134233	0.0026152
+Truncated transposase	4.26174e-05	0.000925617
+ABC transporter	6.34003e-05	1.64271e-05
+PTS fructose transporter subunit IIC, partial	0.000339457	0.000509895
+hypothetical protein	6.54144e-05	1.10133e-05
+Cell division protein FtsA	0.000729208	0.000487861
+UniRef50_E2RPM1	1.58648e-05	7.73341e-05
+UniRef50_I0ETC3	0.000154854	0.00154302
+UniRef50_S3ASG0	0.000183373	0.000103798
+UniRef50_U7QZ50	2.64831e-05	7.16135e-06
+UniRef50_A0NWG0	0.000439065	0.000678148
+Transcriptional regulator, GntR family	0.0108229	0.00107677
+Succinate semialdehyde dehydrogenase (+))	0.00776561	0.000970728
+Tagatose 6 phosphate kinase	0.0223543	0.00324738
+acyl CoA dehydrogenase	1.5537e-05	2.10717e-05
+ATPase, partial	0.00100442	3.96835e-05
+UniRef50_B9AFH1	6.64758e-05	6.60529e-06
+Glycosyl transferase family 2	0.00203339	0.00035454
+Methyl accepting chemotaxis sensory transducer	0.000203225	0.000690151
+UniRef50_P77316	0.0104851	0.00336674
+Probable dihydroorotate dehydrogenase A 	0.00538133	0.00359527
+Methyl accepting chemotaxis sensory transducer	0.000334903	0.0013875
+UniRef50_P77318	0.00132228	0.000191397
+Acetylxylan esterase enzyme	0.000340913	0.000732391
+Isoprenyl transferase 1	0.000243876	0.00381222
+hypothetical protein	2.64572e-06	0.000208204
+Integral membrane protein	0.000163808	2.23666e-05
+RmlC	0.0194501	0.00277936
+hypothetical protein	3.7967e-05	1.11137e-05
+Integration host factor subunit alpha	0.000912624	0.000309603
+UniRef50_D1GN41	0.000157848	9.02545e-06
+UniRef50_K1ZZ76	0.000115431	1.95112e-05
+hydrogenase nickel incorporation protein HypA	0.000742717	3.40012e-05
+hypothetical protein	2.99437e-05	1.6977e-05
+Ion transport 2 domain protein	0.000284097	0.00101141
+FMN oxidoreductase	9.47135e-05	0.00435214
+RNA binding protein	0.00094381	0.0015039
+Aspartate aminotransferase	8.25548e-05	0.00281873
+Protein phosphatase CheZ	0.00132943	0.000828838
+Secretory antigen SsaA like protein	0.00988104	0.00263982
+methionyl tRNA formyltransferase	4.27029e-05	5.83267e-06
+Isocitrate dehydrogenase [NADP]	0.0118005	0.0021553
+Vng6359h	2.17984e-05	5.19539e-05
+UniRef50_H6U1K2	9.76109e-05	2.85266e-05
+hypothetical protein	3.60769e-06	0.000122748
+UniRef50_A6LX18	0.000355893	0.00039989
+Acyl carrier protein	4.30553e-05	0.000150303
+IS911 ORF2	3.46987e-05	3.88153e-05
+UniRef50_W7WXB1	0.000162802	0.000448478
+Tetratricopeptide TPR_4	1.33929e-05	1.08024e-05
+cobinamide adenolsyltransferase	0.000143745	0.00105643
+Probable protein kinase UbiB	0.00285376	0.000756234
+UniRef50_Q9RZR2	0.000256255	0.00951556
+hypothetical protein	5.14688e-06	8.20294e-05
+Putative dioxygenase subunit alpha YeaW	0.0025708	0.00344075
+AraC family transcriptional regulator	0.000926791	8.74244e-05
+UniRef50_Q9RZR8	0.00101016	0.0802339
+UniRef50_K0CFL0	2.42973e-05	1.83172e-05
+UniRef50_D4HCQ6	0.000348154	0.00165408
+SH3, type 3 domain protein	0.000115125	0.000716489
+UniRef50_I1EBV8	2.12608e-05	0.0015261
+Glucuronide carrier protein	0.00242258	0.000828346
+UniRef50_V7EQN7	5.00199e-05	7.95222e-06
+Transposase IS4 family protein	2.91261e-05	1.5702e-05
+Integral membrane protein	0.00597771	0.000375199
+UniRef50_A0A022P2T6	0.000225515	4.02801e-05
+2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.00266801	0.00134483
+hypothetical protein	8.42828e-05	6.88447e-05
+Periplasmic metal binding protein	0.00065811	0.00222532
+UniRef50_A4EN59	0.0012461	0.000255071
+Pyruvate kinase I 	0.00102419	0.000954573
+Multidrug resistance protein	0.00355978	0.000717068
+diaminohydroxyphosphoribosylaminopyrimidine deaminase	3.88926e-05	0.000128802
+tRNA pseudouridine synthase Pus10	0.00190487	7.45103e-05
+hypothetical protein STEHIDRAFT_148098	1.5276e-05	1.10538e-05
+UniRef50_D1DJ22	2.20053e-05	5.84558e-05
+Proline glycine betaine ABC type transport system, ATPase component	0.000620226	0.000248906
+methylcitrate synthase	2.04993e-05	2.51293e-05
+hypothetical protein	1.17387e-05	1.04653e-05
+hypothetical protein	0.000141836	1.99945e-05
+UniRef50_Q2NAA1	3.82385e-06	3.40412e-06
+hypothetical protein, partial	1.24275e-05	8.14797e-05
+glyceraldehyde 3 phosphate dehydrogenase, partial	0.000163353	2.67815e-05
+Efflux ABC transporter permease	4.62504e-05	0.00351253
+hypothetical protein	7.30243e-06	6.95624e-06
+UniRef50_I0GDF4	1.46244e-05	1.54092e-05
+Allophanate hydrolase AtzF	0.000300999	0.00369813
+UniRef50_D1NC80	0.000128005	2.76152e-05
+PREDICTED	1.5081e-05	0.000344581
+hypothetical protein	0.000135327	1.96471e-05
+Pimeloyl [acyl carrier protein] methyl ester esterase	0.00291764	0.000663336
+UniRef50_A3JZS3	0.000176225	0.000158951
+UniRef50_E5CPU2	0.00158427	0.000198003
+Arginase	0.0111512	0.000718577
+hypothetical protein	4.90483e-06	6.9985e-05
+Precorrin 6A synthase 	0.000630776	0.00295157
+2 dehydropantoate 2 reductase	0.00740777	0.00121987
+30S ribosomal protein S5	1.08183e-05	9.21023e-06
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00461051	0.00317329
+UniRef50_O34997	0.0163203	0.00272417
+dTDP 4 dehydrorhamnose reductase	0.00808837	0.00148203
+UniRef50_A7FAW9	0.000255212	0.00378334
+Accessory Sec system protein Asp2	0.019179	0.00388958
+UniRef50_A7FAW6	0.000132326	0.0069426
+UniRef50_A7FAW0	0.000519203	0.00690908
+UniRef50_A7FAW2	0.000332829	0.00441918
+ABC transporter ATP binding protein	0.00248199	0.000171019
+hypothetical protein	1.29397e-05	9.34952e-06
+UniRef50_U3SSP8	0.00480648	0.000396064
+hypothetical protein	0.000148505	1.79577e-05
+PREDICTED	1.43566e-05	1.38336e-05
+hypothetical protein	0.000408573	0.000129203
+30S ribosomal protein S19	0.00171979	0.000219523
+Beta hexosaminidase	4.46118e-06	0.00442948
+Inner membrane protein YiaH	0.00136031	0.000139852
+UniRef50_U3SSP7	0.00569095	0.00257027
+ABC D methionine uptake transporter, substrate binding protein	3.3559e-05	1.05885e-05
+Membrane protein	8.69349e-06	1.0272e-05
+Dipeptidyl peptidase IV related protein	0.000214532	0.0219544
+NADH	2.49542e-06	5.87669e-06
+hypothetical protein	6.93392e-06	1.07611e-05
+Type IV pilus biogenesis stability protein PilW	7.45627e-06	7.87153e-06
+UniRef50_D6SDK6	0.000218305	9.0055e-05
+MarR family transcriptional regulator	2.5235e-05	9.35353e-05
+DNA helicase UvrD REP helicase family	0.00230103	0.000571858
+UniRef50_P57527	0.00222938	0.000139417
+TVP38 TMEM64 family membrane protein YdjX	0.00301596	0.000262033
+UniRef50_G8V0Z4	0.0078226	0.00261459
+PREDICTED	2.81161e-05	1.61926e-05
+PREDICTED	8.06705e-05	8.11065e-05
+Polyribonucleotide nucleotidyltransferase	6.94379e-06	3.23088e-06
+Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR	0.000167902	0.0031971
+Formylmethanofuran  tetrahydromethanopterin formyltransferase	0.00235837	0.000104401
+Methyl accepting chemotaxis sensory transducer	0.000770214	0.000908535
+Glucose specific phosphotransferase enzyme IIA component	0.0226935	0.00020735
+ArsC family protein	0.000118391	4.63652e-05
+Large conductance mechanosensitive channel	0.0179277	0.00190046
+UniRef50_B6AX96	0.000279845	4.66103e-05
+Sulfite reductase [NADPH] flavoprotein alpha component	0.000113879	0.00170939
+MDR permease	0.00410383	0.000761363
+UniRef50_Q6F6V8	0.000444778	0.00445064
+hypothetical protein	2.68315e-06	5.3885e-06
+Beta lactamase domain containing protein	7.34665e-06	1.4021e-05
+UniRef50_H6LL43	0.000258715	3.73327e-05
+Two component histidine kinase SenX3	0.000152514	0.00222005
+UniRef50_Q8CU74	0.00637681	0.00139821
+ICESt1 ORFD ATP GTP binding protein	0.00058847	4.48028e-05
+hypothetical protein	2.5125e-05	3.85304e-06
+Transcription termination antitermination protein NusG	0.000250532	0.00395802
+Formate nitrite transporter	0.00412063	0.000112091
+UniRef50_B9KPG8	1.60223e-05	1.40408e-06
+UniRef50_J9D1K7	0.000288977	0.00127719
+D isomer specific 2 hydroxyacid dehydrogenases family protein	0.00173882	0.000127354
+3 hydroxybutyryl CoA dehydratase	0.000791387	0.00333953
+Acetyl CoA C acetyltransferase	0.000501473	0.00625691
+UniRef50_Q9RR73	0.000892256	0.0254698
+UniRef50_A5VNQ2	0.00050389	2.86534e-05
+Adhesin MafA 3	0.000109864	0.00572493
+Flagellar scaffolding protein FlgD	8.84478e-06	6.93959e-06
+UniRef50_W4U0B3	0.000145451	7.18636e-05
+UniRef50_Z5JZC3	5.36689e-05	0.000170334
+UniRef50_K7RUT9	0.000149577	0.00319381
+PilS cassette	5.65063e-05	8.34176e-05
+Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme	0.000668496	0.00024345
+Lactate utilization protein A	0.00294285	0.000316969
+purine nucleoside phosphorylase	4.23877e-05	9.83692e-05
+ABC transporter permease protein	0.0159587	0.00156922
+Urease subunit beta	6.44351e-05	1.58131e-05
+Membrane family protein	5.54545e-06	1.51876e-05
+PREDICTED	2.28033e-05	1.44174e-05
+3 oxoacyl [acyl carrier protein] reductase FabG	0.0276355	0.00683827
+UniRef50_U6KAI1	2.27119e-05	1.70465e-05
+cupin	7.20584e-05	1.23991e-05
+Polyphosphate kinase 	1.05097e-05	0.000265696
+Cystathionine beta synthase	0.000213099	0.00373153
+Guanylate kinase	0.0309293	0.00713635
+DNA polymerase III subunit beta	0.00800616	0.0043941
+Cell shape determining protein MreC	0.0007122	0.00125368
+betaine aldehyde dehydrogenase, partial	5.83115e-05	0.000148348
+damage inducible protein CinA	2.17462e-05	3.84683e-06
+ABC type multidrug transport system, ATPase and permease component	0.000239882	0.000416164
+Succinylglutamate desuccinylase	0.00186761	0.000303941
+7 cyano 7 deazaguanine synthase	3.60108e-05	0.00165312
+UniRef50_Q3JJR8	8.87367e-06	9.9309e-05
+Type II restriction endonuclease	0.00242753	0.000689125
+UniRef50_Q3JU21	1.94924e-05	1.51248e-06
+fucose isomerase	0.000132728	0.000343527
+ATP dependent 6 phosphofructokinase isozyme 1	0.0311987	0.00430392
+Acetyl  propionyl coenzyme A carboxylase alpha chain	7.91136e-05	0.00331276
+Pyridine nucleotide transhydrogenase subunit alpha	6.916e-06	7.19008e-06
+hypothetical protein	7.85425e-06	4.60473e-05
+PF09994 domain protein	3.61011e-06	1.27438e-05
+PTS fructose transporter subunit IIC, partial	5.37711e-06	7.79377e-05
+UniRef50_C6SPS1	0.00171398	0.000458759
+hypothetical protein	7.5501e-06	1.42592e-06
+UniRef50_V4L8J8	0.000125499	1.49e-05
+Leucyl phenylalanyl tRNA  protein transferase	5.2895e-06	5.24574e-06
+Thioesterase family protein	0.000131123	5.17078e-05
+glycine betaine ABC transporter ATP binding protein	7.87024e-05	3.90282e-06
+Colicin I receptor	0.00325272	0.00112909
+Threonine  tRNA ligase	0.000122697	0.0213309
+Aminomethyltransferase	0.000862162	0.000341626
+UniRef50_T0VCJ2	1.74239e-05	0.00284676
+Predicted phosphatase homologous to the C terminal domain of histone macroH2A1	1.23603e-05	7.91029e-05
+Lactose specific phosphotransferase enzyme IIA component	4.28907e-05	0.000844632
+hypothetical protein	8.38916e-06	5.8311e-05
+modular polyketide synthase, partial	1.41688e-05	4.52214e-05
+LuxR family transcriptional regulator	3.75072e-05	2.92967e-05
+hypothetical protein	1.5351e-05	1.03564e-05
+UniRef50_Q8XA81	0.00285511	0.000413538
+Integral membrane sensor signal transduction histidine kinase	0.000268074	0.0005464
+Chaperone protein DnaJ 2	0.000459827	0.0025143
+Putative ribose uptake protein RbsU	0.0243775	0.00439565
+UniRef50_A0A023RQK0	0.00020274	0.00279835
+UniRef50_A6V0G0	0.000191548	7.29958e-05
+Manganese transport system membrane protein MntC	0.0164291	0.00374084
+Dihydroorotate dehydrogenase 	0.000100342	3.61766e-06
+Glucosyltransferase SI	0.00160615	8.15485e-05
+Universal stress protein	1.07674e-05	0.000117391
+Nitrogenase iron protein	0.0119497	0.00422846
+Marine sediment metagenome DNA, contig	0.000163166	1.80858e-05
+serine threonine protein phosphatase	5.36492e-06	8.3638e-06
+hypothetical protein	1.11488e-05	3.23077e-06
+UniRef50_S9SME8	0.00126939	0.000316304
+Putative aminoacrylate hydrolase RutD	0.00199291	0.00080272
+Serine pyruvate aminotransferase and or alanine glyoxylate transaminase	0.000139454	8.87202e-05
+hypothetical protein	1.69008e-05	2.1264e-06
+Dehydrogenase E1 component family protein	7.94726e-05	0.00176288
+Peptide ABC transporter permease	0.000395939	0.000279704
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	1.34794e-05	2.12784e-05
+hypothetical protein	2.72502e-05	3.76169e-05
+hypothetical protein	2.63009e-06	5.26613e-06
+UniRef50_S2VYA1	0.00143722	0.000319519
+Phosphoadenosine phosphosulfate reductase	7.88622e-05	7.36393e-06
+hypothetical protein	1.10863e-05	4.36333e-06
+hypothetical protein	1.84358e-05	0.00170317
+UniRef50_K9ZZM6	8.1006e-05	0.000653721
+UPF0226 protein YfcJ	0.00135159	0.000206555
+PREDICTED	1.11195e-05	8.02069e-06
+molybdenum ABC transporter permease, partial	6.21158e-05	8.59166e-05
+hypothetical protein	6.96649e-05	2.28815e-05
+Respiratory nitrate reductase alpha subunit apoprotein	0.00310176	0.000506161
+Transcriptional antiterminator, BglG	0.000522036	0.000432954
+Acyl carrier protein	3.9562e-05	6.85967e-05
+Glucosidase YgjK	0.00238788	0.000919579
+30S ribosomal protein S6	0.00475667	0.00152482
+UniRef50_F5XFZ9	0.00010366	0.00254472
+UniRef50_L7VWI6	0.000264365	0.00109137
+UniRef50_Q3JWK6	9.90168e-05	3.12176e-05
+Amino acid ABC transporter, permease protein	0.000820967	0.00474729
+Glycine rich protein	3.35062e-05	4.23159e-05
+UniRef50_V9WKD4	1.48769e-05	1.37778e-05
+PREDICTED	0.000195053	6.36388e-05
+ binding protein	0.000246311	0.000188624
+Thiamine phosphate synthase	0.0144888	0.00269621
+UniRef50_S9TII9	2.45839e-05	2.84554e-05
+hypothetical protein	1.33701e-05	2.20942e-05
+UniRef50_D2PYN9	1.19685e-06	1.83918e-05
+Chromosomal replication initiator, DnaA	0.000226181	0.000153847
+CG6695, isoform A	2.01537e-05	4.97459e-06
+Bifunctional protein PyrR	3.38324e-05	4.0171e-05
+Putative thioesterase	1.67386e-06	0.000527965
+heme ABC transporter ATP binding protein	3.29227e-06	2.27296e-06
+6 pyruvoyl tetrahydropterin synthase	0.000953288	0.000305813
+UniRef50_G2PZY4	1.74312e-05	4.21298e-05
+50S ribosomal protein L6	0.000198915	0.000193721
+hypothetical protein	2.71209e-06	5.34626e-06
+serine threonine protein kinase	3.06801e-06	2.26799e-06
+Transcriptional regulator, TetR family	0.00138478	0.000972924
+ABC type dipeptide transport system, periplasmic component	0.000283578	0.00219902
+GTP sensing transcriptional pleiotropic repressor CodY	0.00554088	0.00138963
+Probable uracil permease	0.00119447	0.00202715
+UDP glucose GDP mannose dehydrogenase family protein	0.00971587	0.00116863
+Probable potassium transport system protein kup	0.000115716	4.79108e-05
+UniRef50_D2Q0P5	1.02658e-05	2.96892e-05
+UniRef50_K2FFC0	0.000117199	0.000282445
+UniRef50_H0B2B9	0.00980506	0.00156577
+Formamidopyrimidine DNA glycosylase	4.28378e-06	5.55769e-06
+MULTISPECIES	1.02799e-05	3.04766e-06
+UniRef50_G2T8N1	0.00365906	0.00041091
+2,3 dihydroxybenzoate 2,3 dehydrogenase	1.48572e-05	1.28069e-05
+UniRef50_M9TV63	0.000262246	0.000233207
+UniRef50_A4EKM3	5.33673e-05	2.81632e-05
+UniRef50_Q3JMQ9	4.47818e-05	6.88112e-05
+UniRef50_U3T560	0.000194727	0.00283466
+UniRef50_G6Y004	0.000259477	3.26699e-05
+Transcriptional regulator, XRE family	9.9082e-05	0.0011822
+Carnitine operon protein CaiE	0.00744864	0.00534476
+large conductance mechanosensitive channel protein	9.39293e-06	1.24831e-05
+polar amino acid ABC transporter permease	6.34532e-06	1.55348e-05
+Signal recognition particle receptor FtsY	0.000207639	0.00135363
+Response regulator aspartate phosphatase	1.40165e-05	8.96952e-05
+hypothetical protein	3.78198e-05	0.000240351
+Frd operon probable iron sulfur subunit A 	0.000214362	0.00059069
+Outer membrane lipoprotein	0.00058361	0.00116415
+hypothetical protein	1.20107e-05	9.50443e-06
+UniRef50_UPI0003D0DACE	2.37324e-05	4.19046e-06
+ABC transporter permease	6.25505e-06	4.6196e-05
+hypothetical protein	0.000168291	1.28588e-05
+UniRef50_Q8TMA8	0.000509101	0.00174925
+hypothetical protein	8.30575e-06	3.00424e-05
+UniRef50_Q5HNQ0	0.020589	0.00436051
+UniRef50_C5N6Q3	0.00674887	0.000437975
+Flagellar hook capping protein	0.00495443	0.00139456
+UniRef50_C5N6Q5	0.000634997	0.000163557
+hypothetical protein	1.46048e-05	5.04119e-06
+hypothetical protein	6.98926e-05	2.81035e-05
+D allose kinase	0.00376686	0.000386132
+UniRef50_L7MJF8	4.51012e-05	2.40137e-05
+hypothetical protein, partial	2.72679e-06	1.21527e-05
+UniRef50_G8B073	0.000690411	0.000657997
+Alpha D glucose 1 phosphate phosphatase YihX	0.00554569	0.000149891
+Transporter ExbD Tol family	0.00213221	0.000236276
+UniRef50_V8G3J5	0.000388992	0.000143198
+ATPase components of various ABC type transport systems, contain duplicated ATPase	0.00312683	0.000301456
+Leucine  tRNA ligase	1.39655e-06	1.06656e-06
+Putative type II secretion system protein F	0.00150197	0.000838349
+Formamidopyrimidine DNA glycosylase	6.34624e-06	4.74796e-06
+Ribonuclease HI	4.2723e-05	1.23827e-05
+Spermidine putrescine transport system permease protein PotB	0.00224158	0.000420046
+UniRef50_F3WY50	2.1037e-05	1.0968e-05
+UniRef50_X7TVE6	0.000151173	4.05982e-05
+Amino acid transporter	0.0018849	0.000701174
+Zinc containing alcohol dehydrogenase superfamily	0.000818932	0.000211801
+hypothetical protein	5.9927e-05	3.48472e-05
+hypothetical protein, partial	6.54669e-05	8.58592e-06
+hypothetical protein	6.31225e-06	1.36505e-05
+UniRef50_L1JWK7	1.51941e-05	1.37928e-05
+UniRef50_M1X9S4	0.00121404	0.000153292
+Peptide deformylase	5.40641e-05	3.99325e-05
+UniRef50_B0VM85	0.000105171	0.00246962
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.000264999	0.00166135
+Glycosyl transferase, family 2	0.000187318	0.000308358
+Ribosomal RNA small subunit methyltransferase I	3.57655e-05	7.64229e-06
+Cellulose synthase like protein	0.00398171	0.000199848
+LigA	0.000175452	2.26291e-05
+UPF0118 inner membrane protein YhhT	0.00230638	0.000515249
+Transcriptional regulator	0.000109269	0.000169405
+Hydroxyethylthiazole kinase	1.00362e-05	4.76863e-06
+hypothetical protein	0.000263326	9.8906e-05
+UniRef50_S3L5X6	3.87229e-05	0.000100215
+UniRef50_K8EUS8	5.37583e-06	0.000811729
+Ribonuclease J 2	0.000463225	0.0024011
+UniRef50_P45848	0.00256407	0.000555271
+UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	9.94725e-05	6.34074e-05
+hypothetical protein	4.39689e-05	8.26348e-05
+Sporulation transcription regulator WhiA	0.000154854	0.00340007
+UniRef50_Q8X8Q3	0.00181472	0.000179294
+UniRef50_R6XPV2	0.000186801	0.000148941
+ABC transporter permease protein	0.0131322	0.000995646
+Argininosuccinate synthase	0.0189339	0.00296333
+Predicted protein	2.61748e-05	0.000115109
+Lytic transglycosylase	0.000547057	0.000125944
+UniRef50_A4CBF5	1.18377e-05	9.8894e-06
+cobalamin adenosyltransferase family protein	2.80024e-05	8.07732e-06
+Protein RecA	0.0222696	0.00358757
+UniRef50_C8RX55	2.36797e-05	4.09669e-06
+UniRef50_T1JH80	1.08999e-06	4.93987e-07
+Energy coupling factor transporter ATP binding protein EcfA1	2.15991e-05	5.1029e-06
+ATP dependent RNA helicase DeaD	0.00699163	0.000792225
+Nitrate reductase subunit beta NarH2	1.92758e-05	5.14468e-06
+Monosaccharide ABC transporter substrate binding protein, CUT2 family	0.000966322	0.000651994
+Bifunctional protein PyrR	7.99447e-06	4.35545e-05
+UniRef50_S5CVX5	9.66823e-05	0.00208426
+GCN5 related N acetyltransferase	0.00158814	0.00110556
+UniRef50_C5MZ73	0.00870053	0.00142739
+MarR family transcriptional regulator	0.000294357	0.00222861
+Beta lactamase HcpA	0.000323866	0.00341386
+DnaJ like protein DjlA	0.00344974	0.000624951
+nickel ABC transporter permease	4.10433e-05	3.51179e-05
+AMP dependent synthetase and ligase	0.000363013	0.0029555
+tRNA 2 methylthio N dimethylallyladenosine synthase	9.27131e-05	0.00237459
+UniRef50_C5Y6L8	0.00029845	2.17727e-05
+UniRef50_D8LGM3	1.7755e-06	6.29068e-06
+Replication initiation protein, truncated	0.195633	0.0431745
+Phosphopantetheine adenylyltransferase	7.76743e-05	7.97137e-06
+Glutathionylspermidine synthase	0.00620599	0.000402295
+Long chain fatty acid transporter	0.000787881	0.000406453
+HTH type transcriptional repressor CsiR	0.0032032	0.000482714
+Chemotaxis protein CheW	0.0161497	0.00271186
+UniRef50_A8LLG1	1.71379e-05	7.79738e-06
+hypothetical protein	7.42201e-06	5.90178e-06
+Succinate dehydrogenase hydrophobic membrane anchor subunit	3.53146e-05	7.87853e-05
+Predicted single stranded DNA specific exonuclease	0.00349314	9.21816e-05
+UniRef50_S9SJ05	0.000664918	6.6095e-05
+TRAP transporter, 4TM 12TM fusion protein	0.00557804	0.000860246
+ATPase, BadF BadG BcrA BcrD type	0.000423451	0.000607535
+UniRef50_J9P613	1.80615e-05	1.49446e-05
+UniRef50_K5P2M6	4.22269e-05	0.000391331
+Predicted transcriptional regulator, AraC family	0.000269959	0.000824098
+hypothetical protein	3.05727e-05	2.60508e-05
+Competence protein	1.06692e-05	0.000399542
+ABC transport system ATP binding protein	0.000557735	0.000455871
+Single stranded DNA binding protein	0.000348154	0.00523423
+Ferrochelatase	0.0126748	0.00123135
+UniRef50_Q9RSX3	0.000647209	0.00765853
+UniRef50_Q9RSX2	0.000144235	0.02359
+hypothetical protein	0.000338299	6.40282e-05
+Nitroreductase family	0.000354262	0.0196365
+hypothetical protein	0.000193276	4.74527e-05
+Glycine  tRNA ligase beta subunit	0.000170101	0.000836461
+5 methyltetrahydrofolate  homocysteine methyltransferase	0.00146532	7.61439e-05
+Lysine specific permease 2	0.00798115	0.00777722
+30S ribosomal protein S15	9.7509e-05	2.70596e-05
+Sugar isomerase 	0.00102999	0.000347088
+Cupin 2 conserved barrel domain protein	9.51343e-05	1.692e-05
+Putative DNA helicase II, UvrD	0.000788872	0.000418981
+Transmembrane protein	0.00604274	0.00100201
+UniRef50_Q7R6Y8	9.89226e-05	0.00109787
+Cag pathogenicity island protein Cagb	9.50918e-05	0.001717
+Glycerol kinase 	0.000515425	5.93031e-05
+UniRef50_M1CWM3	2.75766e-06	4.37135e-06
+Multimeric flavodoxin	0.00839967	0.00468739
+UniRef50_A6LYF1	0.000498181	0.000113508
+Protein MurJ homolog	0.000304324	0.00041294
+UniRef50_A0A031I8F2	3.36198e-05	1.71862e-05
+aldolase	2.61906e-05	2.31243e-06
+hypothetical protein, partial	1.10637e-05	4.84825e-06
+Non canonical purine NTP pyrophosphatase	5.70172e-05	7.2053e-06
+Phosphate acetyltransferase	2.97043e-06	3.23231e-06
+MerR family transcriptional regulator	0.000461337	3.16615e-05
+Phage portal protein, lambda family	0.00326055	6.49673e-05
+RNA directed DNA polymerase, partial	1.02655e-05	3.02665e-05
+PREDICTED	9.70207e-06	7.1913e-06
+chemotaxis protein	0.00012626	3.93913e-05
+Phosphoribosylglycinamide formyltransferase	0.000355371	0.00254538
+Integral membrane protein	1.97944e-05	5.07162e-05
+UniRef50_L8XYT3	5.22111e-06	4.79683e-06
+PREDICTED	6.0048e-06	3.15349e-06
+Outer membrane porin	0.000634832	6.85381e-05
+Acyl CoA dehydrogenase	0.000286725	0.00324009
+UniRef50_I1E8F4	0.000833867	0.000128462
+Non heme chloroperoxidase	1.92351e-05	0.00288124
+isoleucyl tRNA synthase	2.94955e-06	4.12783e-06
+Sensor histidine kinase	0.000148915	0.000813781
+Transcriptional regulator, GntR family	0.00695486	0.000254345
+Deoxyribose phosphate aldolase	0.000210782	0.000562744
+AMP nucleosidase	0.00824227	0.0014982
+UniRef50_S5RJR0	0.000802959	8.8284e-05
+hypothetical protein	2.44735e-06	1.6494e-06
+Phage integrase	0.00851747	0.00175908
+Response regulator receiver and SARP domain protein	0.000907612	0.000336
+Energy converting hydrogenase B, subunit K, EhbK	0.00398957	0.000327232
+hypothetical protein, partial	7.68439e-05	4.85536e-05
+Marine sediment metagenome DNA, contig	9.74676e-05	1.5382e-05
+Phage phi PVL amidase like protein	0.00113411	0.00362923
+Peptide deformylase 1	9.12918e-06	6.8681e-06
+hypothetical protein TRAVEDRAFT_74361	6.76267e-05	3.65931e-06
+hypothetical protein	1.47121e-05	1.74589e-05
+hypothetical protein	2.69413e-05	1.54598e-05
+ABC transporter, periplasmic substrate binding protein	0.00659874	0.000909866
+UniRef50_A6LZL2	0.000517936	0.00076933
+4 alpha glucanotransferase	9.73164e-06	0.000306719
+Pirin domain protein	0.000291662	0.000436703
+DMSO membrane protein	0.000443078	0.00012331
+DNA invertase, partial	0.000195863	0.00011013
+Anthranilate synthase component 1	2.42159e-05	1.14764e-05
+Transposase	9.3684e-05	1.87903e-05
+GntR family transcriptional regulator	5.89261e-05	1.16926e-05
+UniRef50_F3SV61	3.90973e-05	2.68209e-05
+Phosphoribosylformylglycinamidine synthase, purS	2.34272e-05	1.40091e-05
+Malonyl CoA acyl carrier protein transacylase	2.04679e-05	3.29021e-05
+PREDICTED	7.85801e-06	1.07136e-05
+Membrane associated PIN like nuclease	9.89849e-05	0.00997699
+UniRef50_A3X2R1	0.000152868	5.97705e-06
+Site specific DNA methyltransferase 	0.0166381	0.00182125
+hypothetical protein	0.000302695	2.08817e-05
+Redox sensing transcriptional repressor Rex	0.0118447	0.00465392
+UniRef50_R5MZ93	6.93661e-07	9.35866e-05
+TRAP dicarboxylate transporter, DctP subunit	0.0010132	0.000239183
+UniRef50_A6LTW4	0.000245656	0.000217924
+UniRef50_A6LTW3	0.00044644	0.000291325
+Protein chain release factor B 	0.000886265	6.0814e-05
+4 alpha glucanotransferase, chloroplastic amyloplastic	6.94075e-06	0.000243215
+UniRef50_A6LTW8	0.000567424	0.00157933
+UniRef50_B9E4P1	0.000267875	0.000165964
+Integral membrane sensor hybrid histidine kinase	0.000426114	0.000154601
+DNA recombination protein RecA, partial	0.00015371	0.000141055
+Transcriptional activator protein LysR	0.00209127	0.000566603
+Nitric oxide reductase subunit B	0.0102996	0.00100108
+hypothetical protein	5.78491e-06	1.45741e-05
+Sulfate thiosulfate import ATP binding protein CysA	9.40383e-05	1.48916e-05
+resolvase	3.08004e-05	9.77855e-06
+UniRef50_Q7UE67	3.46129e-06	2.45508e-05
+sodium hydrogen exchanger family protein	7.38273e-06	3.28078e-06
+UniRef50_P39356	0.00247064	0.000749531
+UniRef50_P39357	0.0303467	0.00286537
+Nucleoside diphosphate kinase	5.35765e-05	1.02994e-05
+Elongation factor G, mitochondrial	8.03466e-06	1.96685e-06
+UniRef50_P39353	0.0020049	0.00463408
+UniRef50_P39351	0.0013838	0.000291509
+Biotin transport ATP binding protein BioM	0.000200725	1.25549e-05
+UniRef50_C5WG38	0.000763376	0.000154841
+Alginate lyase	0.00900902	0.00252836
+adenylosuccinate lyase, partial	2.38953e-05	1.31024e-05
+UniRef50_Q8DVI5	0.00154427	0.0016324
+Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	3.83683e-05	4.08693e-05
+K insensitive pyrophosphate energized proton pump	0.0003848	0.000660747
+UniRef50_A9DEP6	8.30756e-05	4.99208e-05
+hypothetical protein	1.6813e-05	1.24537e-05
+UniRef50_F8JJ47	1.27964e-05	2.98065e-06
+Precorrin 2 C methyltransferase	0.000427816	0.00104112
+Methionine aminopeptidase	3.90881e-05	0.00365682
+Amino acid carrier family protein	0.000175186	0.00182069
+ABC transporter ATP binding protein	0.000173423	1.71127e-05
+hypothetical protein	2.17243e-06	1.10981e-06
+Nitrogen fixation protein NifU	0.000794997	0.00164232
+hypothetical protein	5.968e-05	2.13593e-05
+DnaJ family heat shock protein	7.35279e-06	6.49315e-06
+Argininosuccinate synthase	0.000282234	0.000881084
+Esterase EstA	0.000639578	0.000105368
+hypothetical protein	3.34901e-06	3.77356e-06
+CREA protein	0.000211349	6.59258e-05
+Minor teichoic acid biosynthesis protein GgaB	0.00319557	0.000143713
+Putrescine binding periplasmic protein	0.00182742	0.00013461
+UniRef50_D4HAV0	0.000437076	0.000675074
+Peptidoglycan endo beta N acetylglucosaminidase	0.0126331	0.00202495
+Marine sediment metagenome DNA, contig	1.12747e-05	1.09833e-05
+Phenol soluble modulin beta 1 family protein 	0.00132848	0.0018787
+Internalin A	5.33262e-06	1.74203e-06
+UniRef50_R7AAF8	8.68476e-05	3.45294e-05
+N acetylneuraminate synthase	0.00313886	0.000822467
+UniRef50_Q1YUP9	5.05216e-05	5.43045e-06
+hypothetical protein	1.21363e-05	7.46841e-06
+UniRef50_V4JMQ3	6.77565e-05	3.48337e-05
+Cobalt ABC transporter, inner membrane subunit CbiQ	0.000113955	0.000210223
+hypothetical protein	0.000121663	4.51387e-06
+UniRef50_F2ABZ8	0.000316946	4.19735e-05
+Glycerol 3 phosphate cytidyltransferase	0.00762344	0.000327682
+tRNA specific 2 thiouridylase MnmA	0.00652634	0.00632699
+hypothetical protein	3.62847e-05	0.000399163
+Type II secretion system protein, putative	0.000208372	0.00447885
+Tripartite ATP independent periplasmic transporter, DctQ component	0.00681519	0.00147951
+Inner membrane protein YgaZ	0.00317254	0.000916415
+Pyridine nucleotide transhydrogenase	7.25773e-05	3.19911e-05
+Tandem lipo protein within Pathogenicity island	1.26511e-05	1.4221e-05
+UniRef50_E6JNN1	0.00148574	0.000285607
+Glycerol 3 phosphate dehydrogenase [NAD+]	0.000103606	0.00422507
+thioredoxin	1.57336e-05	3.29404e-05
+Inner membrane protein YicO	0.000101676	0.000123671
+TrbL VirB6 plasmid conjugal transfer family protein	0.000174077	0.00150538
+Fructose bisphosphate aldolase class 1	0.0224253	0.00664108
+Arginine biosynthesis bifunctional protein ArgJ	5.04066e-05	0.00230002
+Amino acid carrier protein	0.000159615	0.00340875
+Type IV pili biogenesis protein PilF	1.17236e-05	0.000329132
+UniRef50_B9KMF9	0.00156101	1.0927e-05
+PREDICTED	3.15535e-05	4.77704e-06
+UniRef50_F5XQJ4	0.000691538	0.00113011
+Putative Diguanylate cyclase  with GAF sensor	4.30278e-06	0.00143259
+UniRef50_B9KMF2	2.97716e-06	0.000254348
+UniRef50_Q73WQ0	0.000218343	0.00017222
+Oligoendopeptidase F homolog	0.0212754	0.00276434
+Adenine phosphoribosyltransferase	0.031454	0.00310659
+PREDICTED	8.33052e-05	1.66985e-06
+glycogen debranching protein	8.2877e-06	8.42214e-06
+Peptide methionine sulfoxide reductase MsrA MsrB	3.74667e-06	0.00109653
+Anthranilate phosphoribosyltransferase	5.62712e-06	3.99861e-06
+D 3 phosphoglycerate dehydrogenase 2	2.12758e-05	1.24472e-05
+Marine sediment metagenome DNA, contig	1.04589e-05	1.89495e-05
+RfbX family protein involved in the export of O antigen and teichoic acid	8.55632e-05	0.00327906
+UniRef50_A4EKV5	0.000116692	2.34759e-05
+hypothetical protein	0.000103327	0.00010732
+Taurine binding periplasmic protein	0.000599559	0.000382063
+Resolvase, putative	0.00060098	0.183306
+UniRef50_Q3JXV9	0.000175357	9.59035e-06
+Marine sediment metagenome DNA, contig	4.85603e-05	0.000382402
+Putative chromosomal replication initiator, DnaA homolog protein	5.27714e-05	5.19882e-06
+transcriptional regulator	9.9595e-05	6.87004e-06
+DNA polymerase I, partial	2.73604e-06	5.82626e-05
+PREDICTED	3.63949e-06	1.74395e-05
+hypothetical protein	4.24874e-06	1.82499e-05
+DNA mismatch repair protein	0.000470419	0.000594522
+UniRef50_Q9P6J4	0.00147791	0.000234065
+aminotransferase, partial	0.000235392	6.15868e-06
+UniRef50_M9R9X0	0.00178252	0.000161158
+UniRef50_Q9PB92	9.57832e-05	2.09874e-05
+Homoprotocatechuate 2,3 dioxygenase, putative	0.00027852	0.0294344
+hypothetical protein	1.04102e-05	3.88068e-06
+Adenine phosphoribosyltransferase	4.41167e-05	1.90423e-05
+3,5 bisphosphate nucleotidase CysQ	0.00351877	0.000182861
+MULTISPECIES	8.32525e-05	1.84586e-05
+hypothetical protein	0.000153344	1.7369e-05
+NrdI protein	3.40862e-05	1.87521e-05
+UPF0176 protein Lm4b_01393	0.0143482	0.00947441
+Marine sediment metagenome DNA, contig	1.30612e-05	1.69389e-05
+Permease	1.02246e-05	8.22374e-06
+Anaerobic ribonucleoside triphosphate reductase activating protein	0.0257955	0.00253333
+hypothetical protein	4.98799e-05	1.73199e-05
+MafB family protein	6.16013e-05	0.000475562
+Fumarate reductase iron sulfur subunit	0.00176815	0.000693662
+hypothetical protein	2.80479e-05	1.93457e-05
+UniRef50_A3K301	5.58936e-06	2.35796e-06
+S formylglutathione hydrolase FrmB	0.013242	0.00212371
+Neutral zinc metallopeptidase	0.000305832	5.53524e-06
+hypothetical protein	8.92416e-06	2.0846e-05
+Peptide ABC transporter, permease protein	0.00207135	0.0273984
+alcohol dehydrogenase, partial	1.19518e-05	5.37592e-05
+GMP reductase	0.0189357	0.00806863
+UniRef50_F2LNV1	1.81195e-05	1.01558e-05
+UniRef50_B5Z6V3	0.000114994	0.00186917
+UniRef50_D3QCT2	0.0115105	0.0039134
+Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL	0.00716161	0.000513056
+Magnesium protoporphyrin chelatase	7.85977e-05	0.000567297
+hypothetical protein	2.86548e-05	2.22014e-05
+Cytochrome c assembly protein	0.000114985	0.00984949
+Phosphohistidine phosphatase SixA	0.00175126	0.000185506
+TrbC, sex pilus assembly and mating pair formation protein	0.000974181	0.000207355
+UniRef50_A0A023LBQ7	2.03784e-05	4.02286e-06
+UniRef50_A5MYM8	0.000296078	0.000783779
+UniRef50_L1L1V6	5.93166e-05	4.93748e-06
+xanthine dehydrogenase	4.1142e-06	7.25288e-05
+hypothetical protein	9.4822e-06	7.0651e-05
+UniRef50_I0I1B3	1.12928e-05	4.68194e-05
+Shikimate kinase	0.0151342	0.000743607
+Na+transporting ATP synthase	0.0141965	0.00237582
+Expressed protein 	0.000373067	0.000134996
+hypothetical protein	1.52948e-05	0.000311865
+UniRef50_K3ZIS6	2.42736e-05	0.00010859
+hypothetical protein	5.89889e-05	4.34671e-05
+Lipid A core O antigen ligase	0.000154868	0.00212002
+Glycine dehydrogenase 	2.9468e-06	3.46328e-06
+Phage cell wall peptidase, NlpC P60 family	0.00202327	0.000261763
+UniRef50_A5UMD8	0.0026857	0.000453473
+Ferrous iron transport protein B	0.00020274	0.000310138
+PREDICTED	7.0191e-05	2.47508e-05
+UniRef50_C4J1N8	0.000122671	1.72696e-05
+Prolipoprotein diacylglyceryl transferase	0.00126755	0.00196087
+Putative potassium uptake system protein	0.00552327	0.00114349
+amino acid transporter	6.65771e-06	0.000308569
+DNA repair protein RadA	9.16747e-06	3.94051e-05
+Phosphoglucomutase	0.00160857	0.00348449
+hypothetical protein	1.47361e-06	1.23127e-05
+NADH oxidase	6.78079e-06	4.15799e-06
+Flagellar biosynthetic protein FlhB	0.00231901	0.000486108
+UniRef50_J9P7D1	1.76311e-06	9.79837e-07
+UniRef50_D7GE04	7.80034e-05	0.000202572
+5 aminovalerate aminotransferase DavT	0.000937532	0.00586248
+citrate lyase subunit beta	7.69151e-05	1.74257e-05
+Acyl homoserine lactone acylase PvdQ	0.00031562	3.9689e-05
+PREDICTED	5.54411e-06	8.83347e-06
+LysR family transcriptional regulator	5.32508e-06	8.93913e-05
+UniRef50_C5X3K1	2.51373e-05	0.00014933
+PREDICTED	4.73967e-06	3.88238e-05
+Probable DNA endonuclease SmrA	0.00240527	0.000754495
+UniRef50_V4IVP0	0.00158544	0.000865488
+Arginine  tRNA ligase	5.69635e-06	0.00295146
+Small acid soluble spore protein, alpha beta type	0.00877953	0.000435849
+Cro CI family transcriptional regulator	0.000607292	0.000343244
+Transporter, major facilitator family protein	8.60005e-05	0.00097085
+PSP1 domain protein	0.011906	0.000713354
+UniRef50_J2DHS3	1.70978e-05	2.92459e-05
+UniRef50_P77297	0.00401858	0.00120651
+UniRef50_P77296	0.00627229	0.000256528
+UniRef50_L1K9E2	0.011681	0.00311846
+Adenylate cyclase CyaA	0.00224872	0.000360118
+UniRef50_E3J3H5	7.27682e-06	1.52347e-06
+ribose phosphate pyrophosphokinase	8.05483e-05	1.78762e-05
+Hydrolase, alpha beta domain protein	0.000157021	0.00275975
+hypothetical protein	8.19479e-06	1.59397e-05
+2 deoxy D gluconate 3 dehydrogenase	6.73149e-06	5.72324e-06
+UniRef50_D8JEW7	0.000368679	0.00355317
+Transposase IS66	9.4242e-06	3.35448e-06
+UniRef50_A5UNB4	0.00168188	0.000583291
+UniRef50_A0A024C317	0.0045893	0.000356289
+hypothetical protein	5.66508e-06	2.56652e-06
+NAD dependent epimerase dehydratase family protein 	0.0028858	0.000140682
+S adenosylmethionine synthase 5	3.85279e-05	5.45468e-05
+tRNA N6 adenosine threonylcarbamoyltransferase	0.000370035	0.0083987
+Ribose 1,5 bisphosphate phosphokinase PhnN	0.00338534	0.000161194
+hypothetical protein	3.44607e-05	1.30988e-05
+4Fe 4S binding domain containing protein	0.00323921	0.000676862
+Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00239088	0.00591651
+iron ABC transporter permease	8.72909e-06	4.43675e-05
+NADH	0.000249152	0.000623868
+UniRef50_I7EMW2	0.00569862	0.000121004
+Bicyclomycin resistance protein	0.00252901	0.000739429
+hypothetical protein	3.88175e-05	7.31011e-06
+UniRef50_Q02H49	0.000963001	0.000331286
+UniRef50_K2F5A0	0.000451941	0.00110474
+Accessory colonization factor AcfD	0.000318195	0.000116147
+Peptidoglycan binding domain 1 protein	0.000194537	0.000552422
+Pyruvate kinase	0.000478548	0.000133523
+hypothetical protein	0.000415938	1.39185e-05
+Putative sulfate permease 	0.000850979	0.000208109
+UniRef50_Q4L4H7	0.0339436	0.00678337
+InlA	1.25778e-05	2.28064e-06
+Regulator of sigma D	0.00639995	0.00714347
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.75328e-05	2.81958e-05
+L asparaginase	4.73814e-05	0.00149606
+Bifunctional enzyme IspD IspF	4.98654e-06	3.72743e-06
+Cbb3 type cytochrome c oxidase subunit CcoP	0.000392463	0.00186464
+UniRef50_A0A011TPN1	9.83548e-05	1.47838e-05
+hypothetical protein	1.40149e-05	5.63416e-06
+HTH type transcriptional regulator HexR	0.00429385	0.0014992
+UniRef50_X7ED55	7.64845e-05	3.90687e-05
+hypothetical protein, partial	9.12224e-06	1.98127e-05
+Calcium transporter ChaC	2.19445e-06	1.06565e-06
+Methyl accepting chemotaxis protein CtpH	6.25555e-05	5.40222e-05
+Folylpolyglutamate Synthase	9.39208e-06	4.13739e-06
+sn glycerol 3 phosphate ABC transporter substrate binding protein UgpB 1	1.33198e-05	2.82576e-06
+UniRef50_D8UC33	5.86375e-06	1.05064e-06
+PTS system sucrose specific transporter subunit IIABC	7.89017e-06	6.20772e-06
+Glutamine ABC transporter permease substrate binding protein	0.00432604	0.000571467
+Two component sensor	0.000184477	0.00351031
+aldehyde dehydrogenase	2.69242e-06	0.000179951
+Uracil phosphoribosyltransferase	1.58545e-05	0.0049158
+Proline  tRNA ligase 2	4.30674e-06	0.0215251
+UniRef50_Q3IX83	0.00178457	0.000252039
+Virulence sensor histidine kinase PhoQ	0.0028572	0.000171698
+Uracil phosphoribosyltransferase	3.2741e-05	0.00171349
+hypothetical protein	5.1172e-05	9.04351e-06
+UniRef50_R1CV54	1.85828e-05	4.96068e-05
+UniRef50_UPI000273CDF3	0.000500931	7.19671e-05
+hypothetical protein	4.38646e-06	6.39722e-07
+Tail protein	9.11919e-05	5.64611e-05
+UniRef50_F9Z2A5	0.000220936	0.000931769
+6 pyruvoyl tetrahydropterin synthase	0.000110646	0.000695091
+PREDICTED	6.5359e-06	2.94115e-06
+hypothetical protein	1.57751e-05	6.506e-06
+UniRef50_D2ZQZ2	0.00110727	0.000313933
+PpGpp synthetase	0.00394225	0.0014999
+Probable thiol peroxidase	0.0118366	0.00200745
+PREDICTED	2.71477e-05	1.1697e-05
+30S ribosomal protein S10	0.001632	0.0152557
+Phosphoglucosamine mutase	3.58352e-06	2.47718e-06
+ABC transporter ATP binding protein	3.74251e-06	4.04352e-06
+hypothetical protein	5.80657e-06	9.10158e-06
+Anhydro N acetylmuramic acid kinase	5.31124e-06	1.53361e-05
+hypothetical protein, partial	5.79998e-06	5.02633e-06
+Branched chain amino acid aminotransferase, putative	0.00894719	0.00102084
+Inner membrane protein YijD	0.000946137	0.000393793
+UniRef50_V4QDE8	5.89983e-05	0.000148853
+UniRef50_U8EUK5	0.002109	0.00046678
+Mov34 MPN PAD 1 family protein	0.000428638	0.000165661
+hypothetical protein	1.17674e-05	9.5264e-06
+MerR family transcriptional regulator	4.59902e-05	4.56145e-06
+UniRef50_J3L9G7	0.00128432	0.000188822
+Myo inositol catabolism protein	0.000667823	0.00243006
+Proteasome activating nucleotidase	0.00185877	7.34737e-05
+UniRef50_U7JTW3	8.99805e-06	3.206e-05
+MULTISPECIES	1.24747e-05	1.5712e-05
+Glucose   Sorbosone dehydrogenase family protein	0.000350167	0.00197276
+hypothetical protein	8.28257e-05	2.64117e-06
+UniRef50_D3HHR2	0.00208006	0.000768997
+hypothetical protein, partial	3.99995e-05	8.67367e-06
+UniRef50_W8YGK7	8.16985e-05	4.16186e-05
+UniRef50_J0D235	3.62184e-06	4.03162e-06
+resolvase, partial	0.000127478	2.59925e-05
+Thioesterase superfamily protein	7.35709e-06	0.000318758
+N acetyl D glucosamine kinase	0.00549565	0.000113222
+DNA directed RNA polymerase subunit beta	3.50568e-06	1.07041e-06
+Saccharopine dehydrogenase and related proteins	0.000266351	0.0030265
+Predicted protein 	0.000133673	0.00012199
+UniRef50_A7A5J4	3.48164e-05	2.196e-05
+MULTISPECIES	1.74636e-05	9.89494e-06
+2,5 diketo D gluconic acid reductase	2.14359e-05	4.37878e-06
+Deoxyribose phosphate aldolase	0.045338	0.0202917
+flagellar P ring protein FlgI	2.68901e-05	1.64263e-05
+Acetamidase formamidase	0.00127177	0.000404716
+hypothetical protein, partial	1.05363e-05	3.74704e-05
+Probable acyl activating enzyme 5, peroxisomal	0.0114717	0.000930146
+UniRef50_I0B601	0.000412692	0.0161981
+Arginine biosynthesis bifunctional protein ArgJ	0.00890324	0.0014658
+Thermonuclease	0.00761841	0.000336061
+Ferredoxin  NADP+ reductase	0.000158252	0.0032164
+hypothetical protein, partial	4.89668e-05	0.000326792
+Phosphate import ATP binding protein PstB	0.0107448	0.00221052
+UniRef50_A4WXS2	0.00142208	0.000180291
+UniRef50_A6QDJ4	0.0102178	0.000930561
+3 octaprenyl 4 hydroxybenzoate carboxy lyase	9.16426e-06	0.00147296
+Sodium hydrogen exchanger	0.00108217	0.000215951
+Cytochrome C type biogenesis protein CcmF	0.000112563	5.2727e-05
+UniRef50_U7J4M5	7.57992e-05	0.00328217
+Peptide deformylase	7.30606e-05	2.52676e-05
+chromosome partitioning protein ParB	5.85134e-05	0.000440587
+UniRef50_E0VHF0	1.00429e-06	1.67933e-06
+D galactonate transporter	0.000408071	0.000272075
+Peptidase, M23 M37 family	3.96251e-06	4.70648e-06
+hypothetical protein	0.000124563	1.96852e-05
+Myosin cross reactive antigen	0.00222406	0.000156967
+NADH quinone oxidoreductase subunit F	0.0083899	0.000583846
+UniRef50_A3JRD5	0.000106379	0.000121985
+hypothetical protein	6.02715e-05	1.86313e-05
+UniRef50_Q2YVA6	0.000657778	0.000200961
+Flagellin domain protein	0.00915038	0.00167163
+Cobalamin independent methionine synthase II, putative	0.00373838	0.000972112
+hypothetical protein	5.05934e-06	5.91165e-06
+UniRef50_A3M7T3	0.000332423	0.00459062
+DNA binding protein, H NS family	0.00222808	0.000308539
+Cell shape determining protein	0.000185105	2.67033e-05
+Precorrin 2 C methyltransferase	6.69268e-05	1.64643e-05
+hypothetical protein	0.000203146	8.22782e-05
+UniRef50_Q3IYL4	0.00719295	0.000117567
+DNA repair protein radA	0.000788405	0.000377425
+Lactate utilization protein A	9.57906e-06	3.64204e-05
+Alkanesulfonate monooxygenase	0.000304891	0.00190507
+Stage IV sporulation protein A	0.000156561	0.000430498
+UniRef50_V5BSI8	6.59568e-06	4.11071e-05
+UniRef50_L7WY01	0.0209975	0.00232127
+hypothetical protein	1.60216e-05	6.80862e-06
+PREDICTED	0.000130776	0.000116295
+XRE family transcriptional regulator	0.00505477	0.000290109
+hypothetical protein	1.16666e-05	6.71491e-06
+RmuC domain protein	0.00497024	0.000537456
+Ribose phosphate pyrophosphokinase	4.7375e-06	0.00198088
+hypothetical protein, partial	5.6236e-06	2.60191e-05
+hypothetical protein	3.95885e-06	6.37318e-06
+Radical SAM domain containing protein	0.00418209	0.000180806
+NADH quinone oxidoreductase subunit M	7.46779e-05	0.00237826
+Laminin binding fimbrial subunit ElfA	0.00349223	0.00179077
+PREDICTED	2.79071e-05	3.60402e-05
+Alpha acetolactate decarboxylase	0.01411	0.00193819
+Hydrogenase 4 component D	0.00295075	0.000555724
+ABC transporter	2.20292e-05	3.63151e-06
+NH dependent NAD(+) synthetase	7.11129e-05	3.99737e-05
+FIST domain protein	2.95267e-06	2.45212e-06
+HTH type transcriptional regulator PgrR	0.00229571	0.00136003
+Epoxide hydrolase	0.000225367	0.000743353
+Glucose 1 phosphate adenylyltransferase	0.000791165	7.11449e-05
+MotA TolQ ExbB proton channel	0.00790037	0.00360589
+UniRef50_C3AI25	1.46213e-05	0.000221305
+hypothetical protein	1.32041e-05	8.18841e-06
+hypothetical protein	7.57166e-06	5.63817e-06
+hypothetical protein	2.17871e-05	5.98125e-06
+UniRef50_A0A023RZD3	7.0506e-05	0.00388356
+Glycosyl transferase group 1	0.000162062	0.000165279
+hypothetical protein	1.30633e-05	2.70306e-06
+ATPase AAA	1.52663e-05	1.88778e-05
+UniRef50_A3S801	0.000364162	5.85742e-06
+Iron hydroxamate import ATP binding protein FhuC	6.61724e-05	0.000498975
+UniRef50_A4WQH4	0.00650144	0.000455394
+serine threonine phosphatase	4.86851e-06	5.46711e-06
+Recombinase	8.90035e-06	8.74168e-06
+hypothetical protein	7.658e-06	4.28819e-05
+Alginate biosynthesis protein AlgA	2.24153e-05	1.5062e-05
+ATP synthase protein I2	2.74303e-05	2.85735e-05
+Trans 2 decenoyl [acyl carrier protein] isomerase	0.00740695	0.00442508
+Marine sediment metagenome DNA, contig	2.83512e-05	1.00127e-05
+Protein Ddg	0.00484402	0.000852328
+Type I restriction enzyme, S subunit	0.000434739	0.000829057
+hypothetical protein	7.10874e-06	1.70154e-05
+hypothetical protein	0.00011314	6.83356e-05
+UniRef50_H8H3X9	7.26773e-06	0.000152945
+CoA transferase	9.04973e-06	0.000176765
+UniRef50_R4KIZ1	5.45087e-06	8.11065e-05
+ABC transporter permease	1.04641e-05	5.79019e-06
+Putative type II secretion system protein H	0.00287567	0.000197764
+Glutamate ammonia ligase adenylyltransferase	0.000321232	7.23162e-05
+Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA	0.00213965	0.000155606
+6 pyruvoyl tetrahydropterin synthase	8.99806e-05	0.000309274
+Transport system permease protein	0.00390479	0.000358107
+hypothetical protein	8.97744e-05	1.54307e-05
+PTS system, glucose subfamily, IIA component	0.0101282	0.00113199
+UniRef50_G0LQ60	0.0148321	0.00124471
+UniRef50_X2MMA8	0.00060126	1.16893e-05
+Putative thyroid hormone receptor associated protein complex subunit 	4.52972e-06	5.05275e-05
+Putative flagellar rod assembly protein muramidase FlgJ	4.79222e-05	4.4072e-05
+UniRef50_R0J3J3	1.01783e-05	2.74737e-06
+UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.0039397	0.00220032
+methionine aminopeptidase	4.72129e-05	9.52988e-06
+PREDICTED	9.46242e-07	1.35992e-07
+hypothetical protein, partial	1.36809e-05	0.000115733
+hypothetical protein	0.000111423	2.27131e-05
+TRAP transporter, DctM subunit	7.64392e-05	1.71405e-05
+Shikimate kinase	0.00209892	0.000607596
+hypothetical protein	3.43192e-06	5.30539e-06
+DNA processing protein DprA	4.79616e-05	3.08907e-05
+ATP synthase subunit alpha	4.32459e-06	9.74854e-06
+ABC transporter, ATP binding permease protein	0.0062841	0.000805445
+L proline glycine betaine binding ABC transporter protein ProX	0.00269498	0.000442597
+Anthranilate synthase component II	0.0142096	0.00285045
+FeMo cofactor biosynthesis protein NifB	0.000600417	6.85381e-05
+Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000277333	0.000803323
+UniRef50_A0A059ECE9	2.90491e-05	1.75788e-05
+monosaccharide transporting ATPase	0.000161323	1.75908e-05
+Phosphomannomutase, ManB	0.00237208	0.000474642
+hypothetical protein	5.3062e-06	3.22688e-06
+5 hydroxyisourate hydrolase	4.25878e-05	2.89715e-05
+Serine protease	0.00868715	0.00166449
+Transposase for insertion sequence element IS232	0.000411334	0.000506768
+PREDICTED	6.15722e-06	2.35633e-06
+UniRef50_X8EYS2	7.55155e-05	0.00022174
+Polymorphic outer membrane protein	8.99196e-06	2.24212e-07
+glycine cleavage system protein H	7.87023e-05	1.50336e-05
+Anthranilate phosphoribosyltransferase	0.00561482	0.00227458
+Transposase	4.2614e-05	7.31877e-06
+O acetylserine dependent cystathionine beta synthase	1.04413e-05	0.0026226
+UniRef50_Q3JHP8	3.28686e-06	5.56646e-06
+EaeH	9.67287e-05	4.54227e-05
+Octanoyl [GcvH]	0.0191159	0.00330474
+Transposase for insertion sequence element IS4351	0.000467775	0.0144924
+Membrane protein, putative	0.00563792	0.0007338
+NADH quinone oxidoreductase subunit M	1.9822e-05	4.72078e-06
+Trehalose 6 phosphate phosphatase	0.000289626	0.000999309
+Probable malate	4.13321e-06	6.45421e-06
+FAD dependent pyridine nucleotide disulfide oxidoreductase	0.000228803	0.000111534
+5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	1.2352e-05	1.64337e-06
+UniRef50_K5Z1T4	7.3683e-06	6.52265e-06
+IstB domain protein ATP binding protein	0.000479509	0.000431641
+UniRef50_Q5HP08	0.00592688	0.0016462
+malonyl CoA ACP transacylase	9.32855e-06	1.33725e-05
+UniRef50_D3E006	0.00284896	0.000767392
+UniRef50_Z6ILY0	0.202075	0.0208634
+hypothetical protein	2.28649e-05	9.85506e-06
+50S ribosomal protein L2	0.00180158	0.0252705
+Beta lactamase like protein	6.212e-05	8.87765e-06
+ATP dependent DNA helicase UvrD1	1.72241e-05	6.31692e-06
+Polyribonucleotide nucleotidyltransferase	6.5979e-06	8.04614e-06
+Nuclease SbcCD subunit C	0.00239393	0.00100567
+Regulatory protein, LacI	0.000459917	0.00042997
+hypothetical protein	4.47622e-06	3.72764e-05
+Ethanolamine utilization protein EutA	0.00285662	0.000286121
+NAD specific glutamate dehydrogenase	0.0221299	0.00362245
+Nicotinate nucleotide adenylyltransferase	0.000985137	0.00118537
+competence protein	1.55181e-05	3.56186e-06
+MFS transporter	0.000150469	0.0034599
+Ketol acid reductoisomerase	0.0142469	0.00865372
+Probable tRNA sulfurtransferase	0.000157757	0.00075855
+UniRef50_L8P9Y5	4.04702e-05	1.58691e-05
+hypothetical protein	2.23008e-05	8.29176e-05
+hypothetical protein	6.14823e-06	1.46415e-05
+UniRef50_D4FA45	0.000397731	2.93826e-05
+2 hydroxy 3 oxopropionate reductase	0.00346996	0.000341712
+GTP pyrophosphokinase	0.00405972	0.000535394
+hypothetical protein	1.183e-05	9.02225e-06
+UniRef50_R6GAB3	1.16446e-05	0.000195536
+PTS system glucose specific transporter subunit IICBA	0.0104904	0.00208851
+UniRef50_P0AAY8	0.00301023	0.00018942
+SpoU rRNA Methylase family protein	0.0151672	0.00141702
+Phosphate acetyltransferase	3.57373e-06	2.14442e-05
+Thioesterase superfamily protein	9.64497e-06	1.33931e-05
+UPF0301 protein BN820_01713	1.68957e-05	1.43236e-05
+UniRef50_A6LR77	0.000538892	0.000200593
+Phage infection protein	0.00859891	0.00112681
+hypothetical protein	2.7881e-06	2.73251e-06
+2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase	0.00185048	0.000470749
+TraB protein	0.000286713	0.00707697
+F box LRR repeat protein 20	2.38104e-05	1.89563e-05
+Penicillinase repressor	0.0916013	0.0047958
+oligo 1,6 glucosidase	4.32822e-06	1.29636e-05
+Sex pilus assembly and synthesis protein TraW	9.81894e-05	1.07332e-05
+metallophosphatase	1.97028e-05	7.98629e-05
+5 methyltetrahydrofolate  homocysteine methyltransferase  homocysteine binding subunit	0.0011041	8.33657e-05
+Oxygen dependent choline dehydrogenase	0.00257231	0.000319706
+Protein PucC	0.00251972	0.000297494
+hypothetical protein	1.75049e-05	5.08965e-05
+Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA	0.0021138	0.000104116
+Chaperone protein	0.000160071	0.00375371
+hypothetical protein	4.42302e-05	3.89e-06
+peptide ABC transporter permease	1.12461e-05	1.05554e-05
+FolC	0.000188758	7.12578e-05
+Probable transcriptional regulatory protein SAB0618	0.0221926	0.00228776
+Regulatory protein MerR	0.000367197	0.00321033
+Protein TSIB_0916	0.00124275	0.000392985
+UniRef50_A6LR78	0.000221414	0.000217397
+UniRef50_H6P8H2	0.0042334	0.00295113
+Integral membrane protein MviN 	0.000303085	0.000150222
+Enoyl [acyl carrier protein] reductase 	6.69449e-05	6.77448e-05
+TRAP type C4 dicarboxylate transport system,large permease component	4.79741e-05	1.73734e-05
+Phage portal protein, HK97 family	0.010546	0.00189334
+hypothetical protein	0.00296716	0.000319513
+SpeB arginase agmatinase formimionoglutamate hydrolase SpeB	4.74087e-06	1.01243e-05
+UniRef50_Q72ZS2	4.07115e-05	0.000110887
+Accumulation associated protein	0.00418977	0.00101063
+hypothetical protein	2.42845e-06	0.000118948
+Chaperone CupB2	0.00106242	0.000269167
+tRNA specific 2 thiouridylase MnmA	0.00075649	5.56214e-06
+Integral membrane protein	0.000141978	0.00143829
+Linear gramicidin synthetase LgrC	2.33445e-05	2.28846e-05
+UniRef50_Q8CUF5	0.0120142	0.00184519
+S adenosylmethionine synthase	0.00250346	0.00269713
+Transposase	0.000444764	3.20517e-05
+30S ribosomal protein S4	3.70577e-05	1.44201e-05
+GMP synthase , N terminal domain protein (Fragment)	0.000103052	5.37071e-05
+hypothetical protein	1.15645e-05	2.25612e-05
+UniRef50_Q8CUF8	0.036364	0.0067728
+Soluble lytic murein transglycosylase	0.00313459	0.000164291
+UniRef50_T1YBP6	0.0036761	0.00116357
+UniRef50_D8LEF1	8.09271e-06	1.67873e-05
+hypothetical protein, partial	9.41567e-05	0.000185193
+NusA antitermination factor	0.0001945	0.000327434
+hypothetical protein	1.7824e-05	0.000336277
+UniRef50_F0KKH9	6.19528e-05	0.00178173
+Truncated pilin	0.000371193	0.000260246
+Transcriptional regulator, PadR family	0.000305029	0.000290566
+p hydroxybenzoic acid efflux pump subunit AaeA	0.00237786	0.000899181
+hypothetical protein	1.21116e-05	2.84401e-06
+UniRef50_W9UYG1	0.000101574	2.35016e-05
+ABC transporter permease, partial	8.79253e-05	7.70648e-06
+hypothetical protein	9.014e-05	1.85547e-05
+ABC transporter ATP binding protein	3.8775e-06	6.23194e-06
+ribosome biogenesis GTPase ObgE	1.42448e-05	0.000524054
+hypothetical protein	1.4148e-05	1.39875e-05
+Cobalt ABC transporter, permease component, CbiQ	0.0022607	0.000250971
+Phosphomethylpyrimidine synthase	2.32336e-06	4.8995e-06
+Jhp0563 like glycosyltransferase	0.000345349	0.000291512
+UniRef50_W7X9E0	3.87262e-05	0.000126327
+Succinate semialdehyde dehydrogenase (+))	1.10792e-05	9.34502e-06
+ABC transporter related	0.000207398	0.000672446
+Marine sediment metagenome DNA, contig	2.67135e-05	8.3425e-06
+UniRef50_UPI00046E044E	6.67599e-06	2.34218e-06
+UniRef50_C5YVS6	1.76595e-06	6.4372e-06
+hypothetical protein	3.34225e-06	2.44493e-05
+Polyamine aminopropyl transferase	0.00335965	0.000381893
+UniRef50_D3D5C3	2.1921e-05	1.3516e-06
+Carbonic anhydrase Gamma family Zn dependent enzyme protein	1.46684e-05	7.51659e-06
+Surface presentation of antigens  protein	0.00986846	0.00105361
+hypothetical protein	8.26816e-06	1.23738e-05
+Uracil DNA glycosylase, family 4	5.94774e-06	7.57039e-05
+hypothetical protein	1.45818e-05	0.000118476
+Spermidine putrescine ABC transporter permease protein	0.0169093	0.00678141
+SWIM zinc finger domain protein	0.0130229	0.000810549
+UniRef50_N8ZPV3	6.84859e-06	0.0007227
+UPF0755 protein YceG	0.00333267	0.000282244
+ABC transporter substrate binding protein	3.71313e-06	5.18971e-06
+UniRef50_A0A023LG84	0.000650804	0.000325307
+UniRef50_T2A0U3	0.00574316	0.00147911
+ATP binding protein	0.00470786	0.00076096
+Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	5.98977e-05	1.08066e-05
+UniRef50_T2SKF0	4.82392e-05	0.000478862
+Poly polymerase	0.000160913	0.00181134
+Histidine kinase	0.00408158	0.00357162
+Chromosome 10 SCAF14634, whole genome shotgun sequence	7.91879e-05	7.00897e-05
+carnitine dehydratase	8.40855e-06	9.13358e-05
+Predicted esterase of the alpha beta hydrolase superfamily	9.36592e-05	8.16226e-05
+DNA repair protein radA	6.33371e-05	0.000254474
+ S malonyltransferase like protein	0.000256255	0.00367826
+3 ketoacyl ACP reductase	8.34637e-06	3.99687e-05
+PREDICTED	2.15969e-05	4.92854e-06
+hypothetical protein	9.4997e-05	1.29858e-05
+UniRef50_A3XF72	7.31097e-05	1.49013e-05
+MULTISPECIES	3.51721e-06	0.000245843
+UniRef50_A6M2A6	0.000576229	0.00109254
+hypothetical protein	2.79888e-05	1.51433e-05
+iron transporter FeoB	1.80758e-06	8.9086e-06
+pyridine nucleotide disulfide oxidoreductase	6.1813e-06	2.96385e-05
+Serine threonine transporter SstT	0.00134779	0.00881802
+dihydrofolate reductase	8.37579e-06	8.49152e-06
+Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase	0.000182393	0.000173827
+Oxygen dependent choline dehydrogenase	0.00177428	0.00447926
+Lipid A disaccharide synthase	0.000101472	0.0024325
+Diaminopimelate epimerase	6.2407e-06	6.38305e-06
+Queuine tRNA ribosyltransferase	0.00637853	0.00379999
+ubiquitin activating enzyme E1C	6.4736e-06	2.94385e-06
+hypothetical protein	0.000320398	0.000227181
+Inner membrane transport YhaO domain protein	5.92026e-06	2.70318e-05
+PREDICTED	4.70226e-05	3.25404e-05
+MazG family protein	1.10349e-05	4.16575e-06
+Adenylosuccinate lyase	1.95469e-05	0.00197187
+Glutamate  tRNA ligase	0.0272838	0.00728009
+Putative VGR related protein	0.000194971	0.00310666
+4Fe 4S binding domain protein	0.000213697	0.000252681
+hypothetical protein	4.50258e-06	1.95244e-06
+Elongation factor P   beta lysine ligase	0.00232473	0.000412007
+Putative PE PGRS family protein	1.49171e-05	8.09824e-05
+Phosphoglycerate kinase	3.47627e-05	1.78036e-05
+ABC transporter, membrane spanning permease amino acid transport	0.00350043	0.000842189
+hypothetical protein	8.68837e-05	3.39665e-05
+UniRef50_A0A009ENE3	0.000752446	0.000854232
+Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	1.95236e-05	4.15486e-05
+Response regulator receiver modulated diguanylate cyclase	0.00027506	0.000340734
+UniRef50_N6UYM2	0.00082215	0.000943707
+Membrane protein, putative	0.00647364	0.00157029
+UniRef50_Q6F9M2	0.000135341	0.00142653
+hypothetical protein	2.72378e-05	1.48431e-05
+UniRef50_D6SFU4	0.00934747	0.000385168
+acriflavine resistance protein B, partial	0.000945481	0.000253125
+Protein CreA	1.886e-05	7.37542e-06
+Glycerophosphoryl diester phosphodiesterase family protein	0.000182411	0.00213999
+ferredoxin	3.97877e-06	1.98792e-05
+Ferrochelatase	0.000109085	0.00185911
+MJ0042 family finger like protein	0.000389087	1.46269e-05
+Methionyl tRNA formyltransferase	6.27048e-06	4.11543e-06
+UniRef50_M2P9Q5	6.39469e-06	7.00364e-06
+Glutamate synthase 2 [NADH], chloroplastic	1.035e-06	3.86692e-06
+Phosphodiesterase	9.96089e-06	7.12285e-06
+RNA binding region RNP 1	0.000353185	3.92079e-05
+ABC type multidrug transport system, permease component	0.000214212	0.000686407
+Uracil phosphoribosyltransferase	5.59399e-06	1.58096e-05
+UniRef50_G3VFK2	0.000205139	5.55046e-05
+hypothetical protein	5.54523e-06	4.35326e-06
+Diguanylate cyclase with GAF sensor	0.000340317	0.00034037
+UniRef50_Q9RXG2	0.000345769	0.00268894
+NADH quinone oxidoreductase subunit B	0.00360871	0.00254839
+NADH quinone oxidoreductase subunit K	1.19934e-05	0.0021191
+Peptidase, M48 family protein	0.000144557	6.47798e-05
+3 keto L gulonate 6 phosphate decarboxylase UlaD	9.21345e-05	3.69861e-05
+HD domain containing protein	0.000417283	0.000149929
+hypothetical protein	2.99395e-06	0.00014546
+Ferripyochelin binding protein	5.83821e-05	1.40975e-05
+ATP dependent DNA helicase	2.16375e-05	3.90311e-06
+Cyclic diguanosine monophosphate binding protein PA4608	0.000943594	0.00236276
+UniRef50_C7NJL3	9.79356e-05	0.000459338
+Probable acetyl CoA acyltransferase	0.0181415	0.00230069
+heme oxygenase BphO	7.03905e-05	0.000117824
+UniRef50_U3T6D3	2.4291e-05	0.00029632
+UniRef50_Q9I5S3	0.000447511	0.000408519
+UniRef50_Q9I5S0	0.00155436	9.16172e-05
+6 phospho beta glucosidase	0.00416938	0.000287788
+Modular polyketide synthase 	0.00036575	0.000300875
+Heavy metal transport detoxification protein	0.000281892	0.000259671
+UniRef50_F8TV67	3.08756e-05	5.22441e-06
+PREDICTED	7.10271e-05	0.000135976
+Dihydrodipicolinate synthetase	0.000219488	0.0038193
+Putative minor silk ampullate protein	4.2174e-05	1.96479e-05
+UvrABC system protein B	0.00240925	0.00421365
+AsnC family transcriptional regulator	0.000127965	0.00279334
+UniRef50_F0BGS2	7.19721e-06	2.14805e-05
+Probable dual specificity RNA methyltransferase RlmN	0.0154378	0.0022238
+ABC transporter ATP binding protein	0.0233507	0.00534047
+Putative N acetylmannosamine 6 phosphate 2 epimerase	0.000250532	0.000704901
+Flagellar protein FlgJ	0.000638004	0.000571061
+Urocanate hydratase	0.0162411	0.0345123
+UniRef50_A6LXE4	0.000133023	0.00037427
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0129505	0.00241678
+Sex pilus assembly	7.89519e-05	3.50506e-06
+HAD hydrolase family IIA	0.000248681	0.000607069
+PREDICTED	2.6585e-05	6.80636e-06
+NMT1 THI5 like domain containing protein	0.000197234	0.000770352
+hypothetical protein	5.64171e-06	2.2185e-06
+Restriction modification system DNA specificity domain	0.000563041	0.000487563
+UvrABC system protein B	0.000144476	0.0264233
+UniRef50_P64625	0.00309181	0.000188624
+AzlC family protein	0.000426736	0.000420201
+PREDICTED	0.000224081	4.65965e-05
+hypothetical protein	4.90452e-05	0.000228332
+Succinate dehydrogenase	0.00695099	0.00156145
+Exoribonuclease 2	0.00291141	0.000445203
+Hydrolase 	0.0206275	0.00386589
+UniRef50_T0U7I8	6.45443e-06	8.38219e-06
+aliphatic sulfonate ABC transporter ATP binding protein	1.99666e-05	6.78311e-06
+UniRef50_UPI0002C44C85	8.43977e-05	4.95501e-05
+MerR family transcriptional regulator	0.000192558	7.89277e-05
+UniRef50_L7X2B6	0.00842299	0.000923865
+UniRef50_E1HW74	0.00021777	7.03467e-05
+Extracellular matrix binding protein ebh	0.00297329	2.33511e-05
+2 desacetyl 2 hydroxyethyl bacteriochlorophyllide a dehydrogenase 	0.000261951	8.06134e-05
+N acetylmuramoyl L alanine amidase AmiC	1.1701e-05	4.39989e-06
+Urease isoform 3	1.00318e-05	9.34402e-06
+Altronate oxidoreductase	0.000298288	6.67049e-05
+UniRef50_D4TSX0	7.8702e-06	0.000886061
+PREDICTED	1.452e-05	2.39483e-05
+NADH dehydrogenase  iron sulfur	1.3311e-05	1.51939e-05
+UniRef50_H4AYY9	0.000242121	0.000215311
+hypothetical protein	1.03617e-05	4.55746e-06
+ABC transporter ATP binding protein	4.24561e-05	7.42018e-05
+CreA family protein	2.99581e-05	9.60063e-06
+UniRef50_P75713	0.00288116	0.00136225
+Histidinol phosphate aminotransferase 2	2.02541e-05	1.6645e-05
+30S ribosomal protein S2	1.25952e-05	3.60178e-05
+ribonucleoside diphosphate reductase, partial	2.25191e-05	3.50463e-05
+Magnesium transporter	0.0160172	0.00122006
+UniRef50_E8SE09	0.00420856	0.000952313
+Secreted protein	3.03754e-05	6.56026e-06
+hypothetical protein SMAC_11079	0.000114304	0.000209868
+Acetyl CoA acetyltransferase IB	1.08144e-05	2.06632e-05
+L lactate dehydrogenase	0.000397867	0.00289471
+hypothetical protein	1.79119e-05	1.87486e-05
+hypothetical protein	1.90712e-05	2.73791e-05
+Ribose import ATP binding protein RbsA	0.00392973	0.000155756
+UniRef50_U2ZG68	7.12064e-05	7.96205e-06
+Glutamate 5 kinase	6.66595e-06	0.00122278
+UniRef50_G7VUW1	1.87402e-05	1.07099e-05
+Transcriptional regulator	1.21953e-05	5.04162e-06
+DNA primase	7.45126e-05	0.000268607
+Putative spermidine synthase	7.03791e-06	2.19461e-05
+Archaeosine tRNA ribosyltransferase	0.00171302	0.00121946
+hypothetical protein	6.50305e-05	0.000145941
+hypothetical protein ORF028	5.52828e-05	7.5845e-06
+UniRef50_D6TC11	1.83017e-05	2.40423e-05
+UniRef50_H6MGY8	0.000770722	0.000729958
+DEAD DEAH box helicase	1.04927e-05	2.10278e-05
+UniRef50_D2AI68	0.00060541	3.87595e-06
+UniRef50_Q5HM66	0.0167882	0.0028594
+Protease HtpX homolog	0.00284655	0.00268016
+UniRef50_R7IC53	4.20517e-06	5.79585e-06
+Chemotaxis response regulator protein glutamate methylesterase 2	7.52715e-05	4.63734e-06
+hypothetical protein	6.13649e-06	3.82588e-05
+DNA gyrase subunit A	0.000829674	0.00184559
+NADH quinone oxidoreductase subunit K	3.58964e-05	2.94664e-05
+hypothetical protein	5.46529e-06	2.29122e-05
+hypothetical protein	0.000137967	3.06214e-05
+Opacity protein	0.00326984	0.000304355
+ABC transporter permease	4.99922e-05	2.1883e-05
+UniRef50_C6S5R7	0.000537046	0.00227167
+Chromosomal replication initiator DnaA	7.3979e-05	6.86826e-06
+UniRef50_Q9I633	0.000981799	0.000572468
+UniRef50_S5UJA4	0.000502187	0.00010933
+hypothetical protein	1.10216e-05	6.82398e-06
+UniRef50_A6QI12	0.0160124	0.00368928
+PREDICTED	5.16218e-05	2.5538e-06
+UniRef50_F3ZDJ3	2.10312e-05	3.06384e-06
+Phage major tail protein 2	0.00917795	0.000500553
+Inosine uridine preferring nucleoside hydrolase	0.0159546	0.00290724
+UniRef50_A0A032VXU1	0.000117794	1.48475e-05
+UniRef50_J4TL27	4.45822e-05	1.34706e-05
+Cytochrome c oxidase subunit 1	0.0121619	0.00158943
+hypothetical protein	9.08828e-06	5.71324e-06
+UniRef50_R7B083	0.000623531	0.0010187
+Modification methylase EcoRII	0.00247458	0.000914151
+Lipoprotein signal peptidase	1.36432e-05	1.12272e-05
+N acetyl gamma glutamyl phosphate reductase	0.00166903	0.00027644
+EAL domain protein	0.00256877	0.000763021
+TRAP dicarboxylate family transporter DctQ subunit	0.018563	0.000160905
+Polyphosphate kinase	2.11031e-06	0.000155837
+UniRef50_W5YF86	4.44301e-05	1.57251e-05
+UniRef50_P30866	0.00460251	0.000177792
+UniRef50_M1FJM0	0.000108571	2.38207e-05
+Septum formation, penicillin binding protein 3, peptidoglycan synthetase	6.15638e-05	0.0037527
+hypothetical protein	4.86204e-06	4.65262e-06
+Phosphomannomutase	0.00270298	0.00310895
+Bacteriophage related protein	0.00446725	0.000127899
+UniRef50_F4DMU6	0.00170133	0.000302807
+hypothetical protein	3.80108e-05	2.60356e-05
+Glyoxalase family protein	1.06017e-05	1.43631e-05
+Putative L galactonate oxidoreductase	0.00216083	0.000632894
+Thiamine biosynthesis protein ThiH	0.000479326	0.000113115
+SAF domain protein	0.00429364	0.000891125
+N acetylgalactosaminoglycan deacetylase	0.000795787	0.00248086
+UniRef50_P23842	0.00247904	0.000489091
+hypothetical protein	3.68238e-05	1.25477e-05
+Isoprenyl transferase	0.000141804	0.00119955
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.010568	0.00101979
+DNA directed RNA polymerase subunit A	0.00322901	0.000210319
+Isochorismatase hydrolase	0.000210782	0.00016535
+hypothetical protein	7.11557e-05	1.0353e-05
+Cbb3 type cytochrome c oxidase subunit FixP	5.22269e-05	1.87764e-05
+UniRef50_Q49YW6	0.0214339	0.00187083
+putative tartrate dehydrogenase	4.60825e-05	3.64992e-05
+Xylose transport system permease protein XylH	0.000408368	0.000425564
+ABC transporter ATP binding protein uup	0.00210292	0.000334264
+UPF0301 protein Rru_A3059	2.7594e-05	2.16454e-05
+UniRef50_R5BPH7	0.000141605	0.00158739
+Virulence factor MviN 	1.91543e-05	1.11497e-05
+UniRef50_M1XJR0	5.91618e-06	6.13046e-06
+MerR family transcriptional regulator	4.74169e-05	4.53429e-05
+Aspartate  tRNA ligase	0.000179621	0.0209937
+cystathionine beta lyase	1.10549e-05	2.44374e-05
+RNA polymerase sigma factor	0.00115441	0.000119713
+MerR family transcriptional regulator	0.000259336	6.5811e-05
+Plasminogen binding protein PgbB	7.77847e-05	0.00162351
+Protein FdhD homolog	0.000926657	0.000797563
+NADH dehydrogenase  1 alpha subcomplex subunit 9	6.50081e-05	3.79351e-06
+hypothetical protein	1.76589e-05	4.0547e-05
+UniRef50_M2IF34	0.00276838	0.00099761
+Ferredoxin flavodoxin oxidoreductase family protein, putative	0.00582121	0.00116357
+UniRef50_C5XYX3	0.000272866	2.96176e-05
+6,7 dimethyl 8 ribityllumazine synthase	1.72786e-05	0.00400592
+UniRef50_C6A0C0	0.000522515	0.000978294
+Thioredoxin	0.000374122	0.0019509
+Pyridoxal phosphate dependent enzyme family protein	0.000665413	0.00262663
+hypothetical protein	0.000124996	2.87164e-05
+Probable cytosol aminopeptidase	0.000520366	0.00131484
+hypothetical protein	1.24437e-05	7.17755e-06
+UniRef50_D4HCP3	9.22051e-05	0.00105957
+Histidine ammonia lyase	3.22178e-06	4.695e-05
+UniRef50_C9ADA6	0.00177131	0.000284129
+UniRef50_C9ADA5	0.00274908	0.00112887
+UniRef50_Q46858	0.00240863	0.000475692
+Probable D,D dipeptide transport ATP binding protein DdpF	0.00218301	0.00110838
+MULTISPECIES	4.31692e-05	4.73474e-05
+Riboflavin biosynthesis protein RibBA	0.0169951	0.00281645
+Phosphoadenosine phosphosulfate reductase	0.00292678	0.000414744
+Electron transport complex subunit A	0.0151844	0.000641907
+Vasa intronic gene	0.000135642	0.000115988
+S methyl 5 thioadenosine phosphorylase	0.000651183	0.000120841
+binding protein dependent transport systems inner membrane component	5.98416e-06	1.37639e-05
+Propionyl CoA carboxylase alpha chain, mitochondrial	1.44374e-05	1.64232e-06
+PREDICTED	7.6053e-06	2.64398e-06
+Transglutaminase like enzymes	2.30577e-05	5.43459e-05
+UniRef50_K2BIT5	0.000115063	0.000145595
+Amino acid ABC transporter permease protein	0.00251094	0.00042645
+hypothetical protein	5.55057e-06	1.23179e-05
+UniRef50_E2XPH3	0.000259054	0.000175019
+8 amino 7 oxononanoate synthase	1.1194e-05	2.55839e-05
+UniRef50_C6S4Z8	1.29452e-05	0.00060542
+Glutathione S transferase	0.000347799	0.000168136
+Orotidine 5 phosphate decarboxylase	0.00346256	0.00060445
+Probable potassium transport system protein kup	0.000395431	0.000913847
+UniRef50_Q3IW67	0.00204625	0.0011699
+Chorismate synthase	5.15275e-06	7.38084e-06
+PREDICTED	3.73474e-06	1.474e-05
+Pirin domain protein 	1.80071e-05	8.94914e-06
+UniRef50_F3MX46	0.000780976	0.000645974
+oxidoreductase	1.24698e-05	5.62157e-06
+UniRef50_C6SS05	0.00533876	9.84483e-05
+UniRef50_C6SS04	0.00524175	0.0011433
+CRISPR associated helicase Cas3 	0.000336705	1.10881e-05
+UniRef50_I6FFI0	0.000170807	1.551e-05
+Putative ADP ribosylation Crystallin J1	7.62438e-05	0.000137298
+Trans aconitate 2 methyltransferase	0.000135523	0.0123248
+pH regulator (Monovalent cation	0.00225445	0.00127761
+Transporting ATPase	5.55262e-05	1.29898e-05
+Putative aldehyde alcohol dehydrogenase 	0.00251602	0.000340574
+UniRef50_P55604	0.000587235	2.26381e-05
+Cyclic nucleotide binding domain protein	0.000452756	0.00305493
+ATP synthase subunit a 2	0.00401055	0.000762606
+UniRef50_Z9WHX3	0.000196947	3.77062e-05
+phosphogluconate dehydratase	9.44576e-06	2.44798e-05
+3 oxoacyl ACP synthase	1.00583e-05	3.87502e-06
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.000627109	0.000583786
+Iron sulfur protein	0.000153936	0.00210051
+hypothetical protein	1.59887e-05	6.38625e-06
+hypothetical protein	0.000354082	0.00024644
+UniRef50_F0YDM5	1.35304e-05	0.000144086
+3 methyl 2 oxobutanoate hydroxymethyltransferase	6.42209e-06	5.57672e-06
+anaerobic dehydrogenase iron sulfur binding subunit 1, partial	1.06302e-05	9.48792e-06
+Arginase	0.000205577	0.00201315
+sodium	1.1921e-05	0.00153537
+Gram positive signal peptide protein, YSIRK family	0.00920317	0.00132694
+hypothetical protein	8.41176e-06	4.59371e-05
+UniRef50_X1YQR0	5.4696e-05	8.83557e-06
+Tripartite ATP independent periplasmic transporter DctQ component	6.98185e-05	1.17001e-05
+Marine sediment metagenome DNA, contig	7.27595e-06	7.79568e-06
+UniRef50_G4LLH9	0.000958509	0.000475503
+rtx family calcium binding cytotoxins and bacteriocins protein, partial	9.82942e-06	1.41291e-05
+tryptophan synthase subunit alpha, partial	1.15901e-05	6.2128e-06
+Plasma membrane H+ transporting two sector ATPase, C subunit	0.000130173	3.0809e-05
+SH3, type 3 domain protein	0.000200327	0.000271493
+Iron chelate ABC transporter permease protein	0.000209017	0.000487112
+L carnitine dehydratase bile acid inducible protein F	0.000783914	0.000167864
+UniRef50_A0A037XJM6	2.88495e-06	8.78342e-07
+UniRef50_V8HAI2	1.89511e-05	8.07026e-06
+UniRef50_K2HT96	0.000244252	9.57454e-06
+Phage portal protein, HK97 family	3.35431e-06	3.42095e-06
+Putative uracil permease 	5.56727e-05	1.5515e-05
+Sec independent protein translocase protein TatB	0.000471797	0.0010488
+UniRef50_B7RPE0	0.00034474	0.000186663
+Glycerol 3 phosphate dehydrogenase [NAD+]	0.00053598	0.00197688
+UniRef50_V4IFH3	7.45762e-06	1.31039e-05
+hypothetical protein	1.94095e-05	1.93239e-06
+carboxymuconolactone decarboxylase	2.27403e-05	3.15346e-05
+DEAD DEAH box helicase	2.33089e-06	4.97409e-06
+UniRef50_C5N0Y3	0.0104181	0.00117992
+ribonuclease D	5.23791e-05	5.50942e-06
+UniRef50_C5N0Y1	0.00846098	0.00197378
+Pyruvate formate lyase activating enzyme	0.00513918	0.0021413
+phosphoenolpyruvate synthase	1.84603e-06	4.5855e-05
+hypothetical protein	8.51034e-06	9.45166e-06
+APC family amino acid polyamine organocation transporter	0.0114791	0.00344944
+hypothetical protein	0.000952545	9.53491e-05
+Anthranilate synthase component 2	1.0343e-05	8.67325e-06
+Methanol cobalamin methyltransferase B subunit	0.00239017	0.000157824
+glycerol 3 phosphate ABC transporter ATPase	3.1396e-05	2.18512e-05
+pyrroline 5 carboxylate reductase, partial	2.80099e-05	4.26859e-05
+HPr kinase phosphorylase	0.0044388	0.00318798
+50S ribosomal protein L16	0.0233133	0.0123691
+calcium binding protein	1.46812e-06	1.59227e-06
+UniRef50_Q47QB9	0.00100606	0.0377856
+hypothetical protein	1.92473e-05	3.57106e-06
+Lipoprotein	0.00732154	0.000938268
+Multidrug efflux pump subunit AcrA	0.00273939	0.000321622
+UniRef50_K1QDX5	0.000151891	9.63198e-06
+hypothetical protein	9.01477e-05	4.20589e-05
+UniRef50_U5LCP0	1.15737e-05	0.000442116
+UniRef50_M9VES2	0.000395695	0.000943668
+hypothetical protein	0.000112468	1.99382e-05
+PREDICTED	7.86492e-06	0.000167371
+Arginase agmatinase family protein	0.00201892	0.000254501
+UniRef50_E4U2W7	3.56219e-05	1.58612e-05
+30S ribosomal protein S2	1.2678e-05	7.29425e-05
+Probable amidophosphoribosyltransferase	6.98498e-06	3.23798e-05
+hypothetical protein	0.000182684	3.61542e-05
+Marine sediment metagenome DNA, contig	4.42103e-05	8.0904e-05
+UniRef50_G2JLL9	0.000118503	0.00227446
+L 2,4 diaminobutyrate decarboxylase	9.33992e-05	0.00244412
+UniRef50_A0A008Q9S3	6.74443e-05	6.96921e-05
+Catabolite repressor activator	0.00209422	0.000532155
+UniRef50_B7V6Q1	0.000572872	0.000372551
+UniRef50_K0DWJ8	8.16427e-05	3.72276e-05
+hypothetical protein	3.47789e-06	9.49946e-06
+peptidase	3.30858e-05	1.70611e-05
+UniRef50_H4F7M3	1.01178e-05	1.88687e-05
+Protein AbrB	0.00201164	0.000804696
+UniRef50_T1JYL1	7.15302e-06	5.94176e-06
+Putative glutamate binding periplasmic protein	0.000107616	4.58499e-05
+Catalase	0.000358039	0.0240794
+Prolipoprotein diacylglyceryl transferase	0.000298127	0.00237774
+Ornithine aminotransferase	0.0324034	0.0019574
+Transcriptional regulator, TetR family	0.00144887	0.000437975
+UniRef50_W4U293	0.000560914	0.00133178
+UniRef50_A3PNI0	0.0176567	0.00220607
+hypothetical protein	7.50335e-05	7.76802e-05
+Mutlidrug resistance protein	9.14534e-05	0.00234455
+Glucan biosynthesis protein MdoG	6.05833e-05	0.000147943
+hypothetical protein, partial	7.72736e-05	3.58268e-06
+UniRef50_G7U887	0.00113267	0.00318507
+Transferase hexapeptide repeat containing protein	0.000418869	0.00169945
+hypothetical protein	1.60193e-05	5.1797e-06
+Glycine cleavage system T protein	1.79771e-05	3.85141e-06
+Lipoyl synthase	4.97981e-06	1.98463e-05
+PREDICTED	1.23683e-05	6.39825e-06
+Oxidoreductase,likely required for utilization of stachydrine	0.00564759	0.00102489
+Spermidine putrescine ABC transporter ATPase subunit	0.00101132	0.000419773
+3 methyl 2 oxobutanoate hydroxymethyltransferase	5.93135e-06	0.000995635
+UniRef50_A0A035ZUD7	3.64049e-05	3.98055e-06
+Dihydroorotate dehydrogenase	0.00318362	9.71698e-05
+UniRef50_A3TG55	9.48697e-05	7.5871e-05
+taurine  pyruvate aminotransferase, partial	0.000361764	5.01902e-05
+Oxidoreductase, short chain dehydrogenase	0.00716136	0.00327805
+Binding protein dependent transport systems inner membrane component	0.0108489	0.000636255
+Small heat shock protein	0.000773675	0.00214658
+D galactose binding periplasmic protein	0.000807488	0.00133784
+transcriptional regulator	0.000148586	3.21992e-05
+UniRef50_W4SPZ4	1.68134e-05	4.74672e-06
+molybdenum ABC transporter permease, partial	1.10258e-05	1.83597e-05
+Argininosuccinate synthase	4.1636e-06	9.61755e-05
+hypothetical protein	5.17544e-05	6.86476e-06
+UniRef50_A4WTW6	0.0122233	0.00118874
+UniRef50_G5SIY2	0.000143072	0.000775287
+von Willebrand factor type A domain containing protein	0.000592881	0.00469536
+CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	1.45121e-05	3.1062e-05
+Poly beta 1,6 N acetyl D glucosamine N deacetylase	0.00294225	0.000477906
+Phosphoglycerate mutase family protein	0.000193419	0.0033803
+Outer membrane protein assembly factor BamA	8.71954e-05	0.00135118
+Molybdopterin guanine dinucleotide biosynthesis protein	8.21545e-05	0.000226136
+hypothetical protein	0.000213796	2.41366e-05
+5 aminolevulinate synthase, erythroid specific, mitochondrial	6.54171e-06	1.77786e-06
+MULTISPECIES	9.89081e-06	8.014e-06
+AsnC family transcriptional regulator, partial	0.000176794	4.94808e-05
+Outer membrane usher protein	0.000128074	0.00489663
+NADH quinone oxidoreductase subunit A	1.71438e-05	3.64849e-05
+serine dehydratase subunit beta	9.93063e-06	8.5215e-05
+Thioredoxin reductase	5.32391e-05	8.69165e-06
+UniRef50_S3BAZ0	2.2131e-05	0.000337552
+Bacterial extracellular solute binding s, 3 family protein	0.000351618	4.70817e-05
+hypothetical protein	9.92618e-06	4.99874e-06
+Sua5 YciO YrdC YwlC family protein	2.18478e-05	1.24414e-05
+Rubrerythrin	0.000130445	0.00076659
+UniRef50_W0HD99	0.000251986	9.0055e-05
+Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter	0.0187453	0.00215272
+hypothetical protein	2.67375e-05	2.16012e-05
+Reaction center protein L chain	0.014464	0.00122943
+hypothetical protein	2.85695e-05	2.5406e-05
+hypothetical protein, partial	6.02704e-06	3.93728e-06
+UniRef50_W8XZ85	0.000164279	0.000242621
+Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	5.00189e-06	7.84627e-06
+Sensor protein CreC	0.00178484	0.000225733
+3 beta hydroxysteroid dehydrogenase isomerase family protein	0.000444019	9.35259e-05
+Lysine exporter protein 	0.000891671	0.00029486
+PREDICTED	1.84169e-05	1.06554e-05
+3 isopropylmalate dehydratase large subunit	0.00483956	0.0099116
+Calcium transporting ATPase lmo0841	1.23356e-05	0.000844094
+UniRef50_K0YSF4	6.0169e-06	1.60118e-05
+Molybdenum cofactor synthesis domain protein	0.000286629	0.000493706
+multidrug MFS transporter	1.49985e-05	4.01668e-06
+Rare lipoprotein A	0.00220326	0.000160905
+Methyl accepting chemotaxis sensory transducer	0.000244352	0.00045041
+Response regulator receiver sensor signal transduction histidine kinase	7.95623e-05	0.000504143
+50S ribosomal protein L4	2.28892e-05	6.35373e-05
+UniRef50_A9H7F9	0.000107983	0.000104228
+hypothetical protein	1.31054e-05	5.5399e-06
+Energy converting hydrogenase A subunit Q EhaQ	0.00361855	0.000362499
+hypothetical protein, partial	5.15681e-05	5.33346e-05
+Protein NrdI	0.00024807	0.00515972
+UniRef50_K1X086	0.000266358	0.000114377
+Glucokinase	0.000237296	0.00121989
+hypothetical protein	1.10512e-05	3.35622e-06
+Zeta toxin	0.00170742	0.0017299
+UniRef50_F2PQ83	1.70453e-05	8.64288e-06
+Gramicidin S synthetase	0.00460335	0.000663461
+Serine dehydratase alpha chain domain protein	1.95935e-05	1.01124e-05
+hypothetical protein	4.61878e-06	1.47892e-05
+L cystine import ATP binding protein TcyN	0.00820525	0.0135587
+Dephospho CoA kinase, CoaE	0.000807329	0.00109004
+hypothetical protein, partial	3.90414e-05	6.40975e-05
+BH1014 protein	7.36947e-06	4.31081e-05
+Endoglucanase, putative	0.000100763	0.0160469
+Cobalamin biosynthesis protein CobD	2.7539e-05	6.09984e-05
+amino acid transporter	6.30496e-06	1.03089e-05
+UniRef50_B5XSL3	4.858e-05	4.19619e-05
+RNA polymerase sigma factor RpoH	0.000538906	0.00253349
+Tyrosine recombinase XerC	4.11658e-06	4.78253e-06
+Gluconate kinase, FGGY family	0.00881648	0.0017781
+hypothetical protein	9.35365e-07	3.93873e-06
+Molybdenum cofactor biosynthesis protein B	0.0188136	0.00700955
+Acetylornithine aminotransferase	0.000427504	0.00311708
+P loop containing nucleoside triphosphate hydrolase protein	7.27604e-07	1.83155e-07
+Transcriptional regulatory protein PcoR	0.000150245	0.000168769
+Beta D glucuronidase	0.000279248	0.00230864
+Tryptophan synthase beta chain 1	1.83314e-05	8.27209e-06
+L rhamnose proton symporter	0.00279079	0.000651492
+UniRef50_W7NL02	0.0287735	6.17251e-05
+DNA adenine methylase	0.00395517	0.00059296
+ATPase AAA	8.72411e-05	6.26994e-06
+Cysteine  tRNA ligase	2.45991e-06	5.53953e-06
+ABC transporter	1.12255e-05	0.000194444
+Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex	0.00726272	0.00122823
+ABC transporter ATP binding protein	0.00110831	9.96502e-05
+acetolactate synthase	1.51588e-05	8.48575e-05
+UniRef50_Q4ZMZ5	0.00144312	0.000164825
+hypothetical protein, partial	3.96862e-05	3.99727e-05
+Siderophore interacting protein	0.00044782	0.00407066
+UniRef50_B4U3Z1	0.000113291	4.2656e-05
+UniRef50_B0VQL7	0.000166334	0.00222102
+Gamma glutamyl gamma aminobutyrate hydrolase	0.0053536	0.00183072
+Multidrug transport protein, mfs family	3.38235e-05	0.000328044
+Epoxide hydrolase domain containing protein	0.000208311	0.000970449
+Putative quercetin 2,3 dioxygenase PA2418	0.000131365	0.000215364
+Translation initiation factor IF 2	0.000154691	0.00167138
+RND type efflux pump	0.00101002	0.00603737
+iron ABC transporter	1.18016e-05	0.000489268
+ABC type dipeptide transport system, periplasmic component	1.21971e-05	1.04895e-05
+Formamidopyrimidine DNA glycosylase	9.05978e-06	5.1414e-06
+hypothetical protein	1.95358e-05	3.32432e-05
+UniRef50_Q8DTP8	0.00700716	0.000307482
+Transcriptional antiterminator, BglG family	0.00716189	0.00171494
+Putative ribosomal RNA methyltransferase CG11447	3.04943e-05	1.76119e-05
+Ribosomal RNA small subunit methyltransferase A	0.0113718	0.00402103
+ATP synthase subunit alpha	0.000590105	0.00216278
+Amidohydrolase family protein 	0.000320522	0.000751096
+UniRef50_B2VBD6	6.5437e-05	3.66487e-05
+UniRef50_B6AY70	0.000149175	5.8669e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000103578	5.17376e-06
+PREDICTED	9.60961e-07	2.94471e-06
+LexA repressor	2.68276e-05	5.81417e-06
+UniRef50_C9A6P4	0.00277981	0.0121434
+UniRef50_X8DM60	1.13163e-05	0.00011397
+Aldo keto reductase	2.13216e-05	9.35226e-05
+UniRef50_A0A058ZFV0	1.8375e-06	2.47535e-06
+ABC transporter	6.96994e-05	2.8874e-06
+ATP dependent DNA helicase RecQ	1.67237e-05	2.86473e-06
+Marine sediment metagenome DNA, contig	7.32497e-05	1.37648e-05
+zinc transporter	1.77217e-05	2.61079e-05
+3 oxoacyl [acyl carrier protein] synthase 2	8.18189e-05	0.00131889
+UniRef50_P0ADP3	0.000299598	0.000608963
+UniRef50_R9SKB3	0.00343717	0.000125925
+UniRef50_I6L8Z7	0.00536605	0.00130102
+50S ribosomal protein L15	5.46755e-05	7.3975e-05
+Indole 3 glycerol phosphate synthase	1.09226e-05	0.00459065
+hypothetical protein	6.18819e-06	5.35663e-06
+UniRef50_J9QWN8	3.10963e-05	6.14646e-05
+PREDICTED	2.48255e-05	2.34102e-06
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	6.27126e-06	2.59939e-06
+UniRef50_M9RBK8	0.000101244	1.03162e-05
+Prophage lambda integrase	0.00353479	0.000634296
+arginyl tRNA ligase	0.000160752	2.65918e-05
+Polyphosphate kinase	8.33218e-06	0.000203662
+Putative 2 hydroxyacid dehydrogenase SERP1888	0.0179769	0.00376295
+membrane protein	3.58313e-05	1.42615e-05
+dipeptidase PepV	6.21961e-06	4.01999e-06
+UniRef50_A3SGM5	2.17131e-05	2.49027e-05
+UniRef50_X5RWX0	0.000548693	8.26186e-05
+UniRef50_B0V917	0.000355509	0.000477579
+Sulfite oxidoreductase, molibdopterin binding subunit	0.00175147	0.000335511
+Lytic regulatory protein, putative	0.00950315	0.00154178
+S adenosylmethionine synthase	3.76877e-05	0.000117174
+NTPase, KAP P loop domain containing family	3.25071e-06	5.71726e-06
+hypothetical protein	5.14772e-05	3.21311e-06
+UniRef50_M4VPY4	3.03767e-05	1.53524e-05
+Putative biopolymer transport protein ExbB homolog	0.00335925	0.0004942
+hypothetical protein, partial	7.90444e-05	0.000181353
+hypothetical protein	9.30264e-06	9.89941e-06
+UniRef50_Q6FF14	0.000359375	0.00275567
+UniRef50_F9Y8H3	2.28514e-05	3.43871e-06
+GTPase CgtA	7.46244e-06	0.000206053
+UniRef50_D0Z2G0	5.46743e-05	1.59313e-05
+hypothetical protein	6.07536e-06	3.3903e-05
+Putative cytochrome P450 YjiB	7.65979e-06	4.08523e-05
+Phage minor structural protein	0.000314035	0.00128434
+Pyruvate dehydrogenase [NADP], mitochondrial	0.000532018	0.000758459
+UniRef50_B4RAW2	0.00909987	0.00119068
+Phosphoribosylaminoimidazole carboxylase atpase subunit protein	0.000124341	0.0010872
+Cadmium, zinc and cobalt transporting ATPase	4.6694e-06	0.000797657
+multidrug transporter	0.000145101	5.40394e-05
+hypothetical protein	2.33675e-05	2.75353e-05
+Glutamine synthetase	0.0091485	0.00231096
+Helix turn helix domain containing protein, AraC type	0.000427275	0.00124169
+Transcriptional regulator, LysR family	0.000120053	0.000667383
+UniRef50_F4A8L7	0.000331031	0.000307443
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial	4.61911e-05	2.6771e-05
+30S ribosomal protein S2, partial	1.25464e-05	2.14021e-05
+ABC transport system, ATP binding protein	0.0100053	0.00171593
+Cytochrome c oxidase assembly protein CtaG	0.00304847	0.000171019
+Cell divisionFtsK SpoIIIE	0.00014384	0.000465613
+PREDICTED	3.15716e-05	4.42055e-05
+UniRef50_W1V573	0.000231745	0.00107686
+UniRef50_A2WHS9	0.000235249	5.77041e-05
+Partitioning protein	0.00990265	0.00390659
+hypothetical protein	1.51303e-05	8.98706e-06
+Flagellar protein FlgJ putative	9.55106e-05	3.00883e-05
+Signal transduction histidine kinase CheA	0.000261314	0.000126058
+PREDICTED	4.73039e-06	2.01471e-05
+Universal bacterial protein YeaZ	0.000152284	0.00180668
+hypothetical protein	1.48583e-05	2.57649e-06
+Polysaccharide biosynthesis protein	0.00490153	0.000618178
+ABC transporter, ATP binding protein	0.0058677	0.00101559
+Cell division protein SepF	0.00330269	0.00155172
+hypothetical protein	3.10286e-05	2.85962e-06
+hypothetical protein	0.000133384	1.92533e-05
+UniRef50_C5WTK0	5.25456e-05	4.5412e-05
+Virulence factor MviN 	0.000109345	7.54508e-05
+Phosphate transporter	0.00305009	0.000282465
+sn glycerol 3 phosphate import ATP binding protein UgpC	9.22882e-05	2.44039e-05
+Fructose bisphosphate aldolase	7.46789e-05	0.00199532
+UDP glucose	0.00220269	0.0005512
+SAM dependent methyltransferase	0.000168336	0.00735957
+hypothetical protein	5.62905e-06	1.17598e-05
+Hemin import ATP binding protein HmuV	6.26737e-06	0.000218684
+hypothetical protein	2.45258e-05	6.60994e-06
+PTS system maltose and glucose specific EIICB component	8.43405e-05	2.10404e-05
+Phosphoribosylglycinamide formyltransferase 2	0.00186394	0.000433592
+UniRef50_A0A011NL09	3.5512e-06	0.000830797
+aldehyde activating protein	1.26069e-05	1.35192e-05
+Periplasmic sensor diguanylate cyclase phosphodiesterase	0.00305135	0.00049192
+Putative 1 deoxy D xylulose 5 phosphate synthase 	0.000110288	3.8298e-05
+Putative vgr related protein	4.27699e-05	2.28559e-05
+D aminoacid aminotransferase like PLP dependent enzymes superfamily protein isoform 3	8.1806e-06	1.38973e-05
+Putative outer membrane protein YiaT	0.00123844	0.000138986
+YD repeat protein 	0.000131801	0.00305234
+HTH type transcriptional regulator PetP	0.00749671	0.000176395
+UniRef50_A6U9L1	0.000105953	2.4155e-05
+UniRef50_G0DWF3	0.000134996	0.00161332
+Serine acetyltransferase	0.0235161	0.00412277
+Recombinase	0.00974367	0.00134967
+hypothetical protein	2.51403e-05	1.66754e-05
+GumN family protein	1.03372e-05	4.90959e-06
+hypothetical protein, partial	6.56806e-05	1.45946e-05
+Alanine  tRNA ligase	4.58305e-05	0.00228627
+hypothetical protein	0.000219347	4.75214e-05
+magnesium transporter	4.15382e-05	0.000255882
+hypothetical protein	1.45133e-05	7.78217e-06
+Predicted protein	0.000123128	0.00627443
+Insect intestinal mucin IIM22	0.000451847	6.90848e-05
+Cell division protein FtsX	0.000320257	0.000506677
+O acetylhomoserine aminocarboxypropyltransferase	1.67041e-05	3.75834e-06
+Putative glutamine amidotransferase YafJ	0.00228704	0.00067701
+Hypoxanthine phosphoribosyltransferase	0.00229068	0.00322972
+lysine transporter LysE	6.7567e-05	2.99958e-05
+phenylacetate CoA oxygenase reductase subunit PaaK	1.03403e-05	7.84968e-06
+DnaJ like protein 	4.09925e-05	3.6306e-05
+Nif specific regulatory protein	0.00196261	0.000620447
+UniRef50_U0B3S9	0.000195281	0.00010588
+DNA topoisomerase 4 subunit A	0.00446541	0.00364203
+Alpha glucoside transport system permease protein AglF	0.0109192	0.00164589
+ATP dependent DNA helicase RecG	0.000158774	0.000475097
+PTS system N acetylmuramic acid specific EIIBC component	0.00164934	0.000428804
+UniRef50_D8QID1	0.000117872	4.92529e-05
+UniRef50_X7XPI4	0.000131164	0.000137389
+Transport system permease protein	0.0003478	0.000112654
+Adenylyl sulfate kinase 3	9.40579e-06	0.000240182
+hypothetical protein	0.000213766	3.57007e-05
+D xylose transport system substrate binding protein	0.00795287	0.00143983
+Septum site determining protein 	7.8395e-05	0.000154587
+UniRef50_E3A1I4	0.00174494	0.000416426
+Imidazoleglycerol phosphate dehydratase	0.000114517	6.6897e-06
+Regulatory protein, LysR	0.000108915	0.000728371
+Transcriptional regulator, GntR family, putative	0.000659203	0.00133345
+Transcriptional regulator, GntR family	0.00101706	0.00126641
+UniRef50_C7M5H1	0.0071806	0.000356799
+UniRef50_F9EIQ5	0.000116111	0.000389318
+Cyclohexanone monooxygenase	0.000398315	0.000364273
+Sodium	0.000278755	0.00014323
+Bacterial regulatory s, gntR family protein	0.000746344	0.00256726
+DNA mismatch repair protein MutS	0.00734873	0.00132043
+Methionyl tRNA formyltransferase	4.72081e-06	1.75196e-05
+UniRef50_S1PI08	0.00317466	0.00146243
+Response regulator receiver protein	0.000235044	0.000527739
+UniRef50_R5I1Z2	0.000142204	0.00197932
+TonB dependent receptor plug domain protein	4.23687e-05	0.00235468
+UniRef50_F0MSR5	0.000182907	0.00279856
+UniRef50_D0IYV6	0.000117351	1.7165e-05
+Stringent starvation protein A	6.73528e-06	5.18185e-05
+UniRef50_B7UY15	0.000278791	0.000446578
+UniRef50_A6LX91	0.000275155	0.000616606
+UniRef50_P0A0K1	0.00772967	0.00183964
+6 phosphofructokinase	1.48919e-05	3.26036e-06
+ABC transporter related protein	0.00026943	0.00118735
+Extracellular solute binding protein	0.000492169	0.00531473
+UniRef50_K2FKB3	3.58872e-05	0.000190961
+UniRef50_K4JSU1	0.000138127	4.65191e-05
+Aconitate hydratase	0.0153756	0.0026013
+N anthranilate isomerase	1.03188e-05	0.00280077
+Cell division protein DivIB	0.00327467	0.000920174
+hypothetical protein	4.99372e-05	3.69625e-05
+UniRef50_A6LX65	0.000352158	0.000607651
+Riboflavin synthase, alpha subunit	0.00553897	0.000312839
+UniRef50_U2YCQ7	3.92407e-05	8.22505e-05
+UniRef50_R7PTH2	0.000359801	0.000123671
+UniRef50_Q2SCI9	1.48758e-05	1.09782e-05
+hypothetical protein	4.20909e-06	5.24893e-06
+RelA SpoT domain protein	0.00913162	0.00317774
+UniRef50_B9DZ64	8.72641e-05	0.000103798
+UniRef50_A7FBW9	0.00167991	0.00707641
+UniRef50_A7FBW8	0.00139974	0.00422205
+UniRef50_P76046	0.00267337	0.000286232
+UniRef50_P76044	0.00290647	0.000733275
+Glyoxalase family protein	0.0160314	0.00105124
+Intron encoded DNA endonuclease I AniI	0.000175014	3.75066e-05
+sn glycerol 3 phosphate import ATP binding protein UgpC 1	1.70063e-05	2.09569e-05
+UniRef50_C6STT6	0.00210452	0.000444873
+Protein containing PAS PAC domain	2.58537e-06	0.000112091
+Thymidine kinase	0.000173479	0.00241056
+Glutamine amidotransferase subunit PdxT	0.00135144	0.00123348
+hypothetical protein	0.000259667	2.52549e-05
+Phosphomannomutase	0.000898768	0.00224126
+Carbamoyl phosphate synthase large chain	1.73845e-05	7.84457e-06
+UniRef50_J8V402	5.50806e-05	3.70966e-05
+hypothetical protein	3.17899e-06	2.38149e-05
+UniRef50_D8TJQ5	9.08276e-06	1.81719e-05
+UniRef50_H3VMS8	0.000214818	2.01258e-05
+glycerophosphoryl diester phosphodiesterase	9.99551e-07	0.000305528
+UniRef50_R1FE37	0.000109361	1.55458e-05
+molybdopterin guanine dinucleotide biosynthesis protein A	6.10641e-06	4.19088e-06
+Alpha xylosidase	0.00633532	0.000628734
+UniRef50_J8V5R5	0.000104981	1.07628e-05
+histidinol dehydrogenase	1.52331e-05	2.86448e-05
+MaoC like dehydratase, putative	1.80176e-05	5.73375e-06
+NADH quinone oxidoreductase subunit B 2	5.57609e-06	0.000825302
+DNA polymerase V component	0.0013523	0.00671837
+Phenylalanine  tRNA ligase beta subunit	0.000105675	0.00155299
+CDP diacylglycerol  serine O phosphatidyltransferase	0.00327315	0.000229751
+Leucyl phenylalanyl tRNA  protein transferase	0.00152218	0.000405075
+hypothetical protein, partial	6.04691e-06	3.95799e-06
+hypothetical protein	9.43561e-06	5.76222e-06
+UniRef50_Q3BY50	3.26978e-06	1.29414e-05
+UniRef50_N6D480	0.00823792	0.00118485
+UniRef50_P0ADQ4	0.00362881	0.00105267
+UniRef50_A3M418	0.000341674	0.00259928
+acetyl CoA acetyltransferase, partial	0.000106049	0.000188709
+Transcription repressor of sporulation, septation and degradation PaiA	0.0111033	0.00526677
+UniRef50_F8I0C3	3.28737e-06	3.44473e-06
+NAD dependent malic enzyme 1	2.29225e-05	1.11884e-05
+YALI0B14971p	1.14048e-06	2.01479e-05
+UniRef50_S5XJ53	0.000145599	8.2055e-05
+Exonuclease V subunit alpha	6.25943e-05	0.00255266
+UniRef50_A3L1C1	0.000392398	0.000508497
+hypothetical protein	4.75218e-06	4.52438e-06
+PREDICTED	4.32001e-06	2.95207e-06
+UniRef50_D2ZNL5	0.00629026	0.000371034
+UniRef50_R3B8E7	3.16332e-05	2.8927e-05
+hypothetical protein	2.75695e-06	0.000108786
+peptide ABC transporter permease	4.17988e-06	4.8511e-06
+orotidine 5 phosphate decarboxylase, partial	2.06758e-05	8.8782e-06
+hypothetical protein	4.09599e-05	5.19387e-06
+Branched chain amino acid transport system 	4.466e-05	6.07431e-05
+UniRef50_H0PS77	0.000160299	0.000156052
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.017128	0.0014369
+Inner membrane translocator	0.000224452	0.00144937
+Protein RnfH	3.27548e-05	2.11013e-05
+Hyaluronate lyase	0.0163692	0.00185428
+ATP dependent RNA helicase SrmB	0.00208022	0.000181434
+hypothetical protein	3.74642e-05	1.62557e-05
+Short chain dehydrogenase reductase SDR	4.39655e-06	8.77094e-06
+Acetoacetyl CoA reductase	0.0136303	0.00346299
+Protein GltF	0.00325038	0.000605534
+UniRef50_F2UKD5	6.56999e-06	1.11209e-05
+Multimodular transpeptidase transglycosylase	0.0180381	0.00231906
+N5 carboxyaminoimidazole ribonucleotide synthase	0.000853749	3.14106e-06
+UniRef50_S3DKH9	0.000116419	2.15975e-06
+Anthranilate 1,2 dioxygenase small subunit	0.00476777	0.00482934
+Oligoribonuclease	7.27799e-05	3.96744e-05
+single stranded DNA binding protein	1.51625e-05	4.39741e-05
+GTP cyclohydrolase FolE2	0.01039	0.00140787
+NADH ubiquinone oxidoreductase 20 kDa subunit	0.00145187	0.000227148
+UniRef50_A3M2G1	0.000446241	0.0031757
+Sulfate transporter	0.00104471	0.00026129
+adenosylcobinamide kinase	5.5421e-05	1.51427e-05
+Tyrosine recombinase XerC	0.000230062	0.00274015
+Exodeoxyribonuclease V subunit gamma	1.68052e-05	5.19373e-05
+UniRef50_Q5GWV2	0.00179573	5.18362e-06
+X2R	4.44753e-05	1.28787e-05
+Molybdopterin guanine dinucleotide biosynthesis protein MobA	1.45448e-05	9.78404e-06
+MscS Mechanosensitive ion channel	0.000623024	0.000105505
+UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase	0.000697707	0.00472644
+MULTISPECIES	9.44525e-06	4.20907e-06
+Membrane fusion protein MtrC	0.000454049	0.000610107
+Magnesium transporter	0.00630601	0.00114962
+Putative two component membrane permease complex subunit SMU_747c	0.00345073	0.00299446
+Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	6.19573e-06	3.90576e-06
+UniRef50_A0A020CZ26	0.0187638	0.00281379
+UniRef50_Q2CIE7	2.26671e-05	2.00359e-05
+PREDICTED	5.19338e-06	7.0405e-06
+inositol monophosphatase	1.50917e-05	3.22172e-05
+Potassium transporting ATPase subunit B 	2.11466e-05	0.00124645
+UniRef50_F5M3E9	0.00179683	0.00045118
+hypothetical protein	9.78639e-06	2.0677e-06
+Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein	9.72684e-05	0.00039951
+UniRef50_A4FA42	1.92181e-05	5.72071e-06
+UniRef50_T6N9U5	0.000761357	8.96952e-05
+A G specific adenine glycosylase	0.00354634	0.000634125
+D amino acid dehydrogenase Alanine racemase fusion protein	0.00275758	0.000445773
+UniRef50_G7ZH30	6.78299e-06	2.66515e-06
+Mevalonate kinase	0.00357368	0.000775371
+N acetylglucosamine 6 phosphate deacetylase	0.00252388	0.000119236
+UniRef50_B9KUF9	2.02042e-05	9.95126e-06
+GMP synthase [glutamine hydrolyzing]	0.0367829	0.0309268
+UniRef50_H8FW24	2.0544e-05	8.89741e-06
+UniRef50_A6LW90	0.000110223	0.00044415
+Antiholin like protein LrgB	0.00490101	0.00129302
+UPF0125 protein HMPREF1028_02272	1.76345e-05	4.89043e-05
+UniRef50_B0VLI0	0.000295218	0.00379589
+Putative oxidoreductase	0.000134966	0.000686855
+UniRef50_A6WEM4	2.53526e-06	1.67868e-05
+Transcriptional regulator	0.000433324	0.00019434
+Adenylosuccinate synthetase	0.00178402	0.000390123
+hypothetical protein	4.32665e-06	1.50285e-05
+3,5 bisphosphate nucleotidase	0.0058949	0.000768491
+Penicillin binding protein 	0.000168555	0.00251311
+Formamidopyrimidine DNA glycosylase	0.0160722	0.00181425
+UniRef50_C6E3P1	2.79601e-05	3.43426e-06
+Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase	6.0494e-05	0.00108473
+hypothetical protein	5.4074e-06	3.95789e-06
+UniRef50_E5QW86	0.000960937	0.000421525
+Capsular polysaccharide biosynthesis protein, putative	0.00585842	0.000663193
+UniRef50_T0K2V4	3.47833e-05	1.72417e-05
+Aspartate semialdehyde dehydrogenase	0.0123181	0.00111834
+Cell wall surface anchor family protein	2.70687e-06	0.000113138
+DNA repair protein radA	0.00612392	0.00165572
+hypothetical protein	1.00617e-05	2.14336e-05
+Methionine  tRNA ligase	0.00273903	0.000362401
+hypothetical protein	0.000352452	2.51337e-05
+fructose 1,6 bisphosphatase	1.46377e-05	0.000157298
+Xanthine phosphoribosyltransferase	4.33646e-05	3.36701e-05
+Sulfate adenylyltransferase	6.13395e-05	2.20333e-05
+Transposase	0.000626074	0.00627613
+N acetyl gamma glutamyl phosphate reductase	9.00498e-06	5.8901e-06
+UniRef50_U6ECP8	0.000159572	2.04083e-05
+UniRef50_Q3JPC5	4.24785e-05	0.00187342
+formyltetrahydrofolate deformylase, partial	4.63682e-05	8.00772e-06
+DNA polymerase IV	3.80513e-06	7.0985e-06
+UniRef50_Q6A6W0	0.000106503	0.00274111
+Nucleoside diphosphate kinase	0.000167151	9.63319e-05
+Prophage antirepressor	7.50207e-06	7.76634e-06
+UniRef50_G8RG67	0.0130885	0.00189557
+Desulfoferrodoxin 	0.0118951	0.00092087
+UniRef50_I1F5H5	1.20675e-05	1.13011e-05
+Predicted protein	1.38705e-05	5.72265e-06
+GAF domain GGDEF domain EAL domain containing protein	2.7018e-06	3.7707e-05
+Conjugal transfer protein 	0.00027141	0.000295724
+Peptide chain release factor 1	0.000393349	0.00379705
+UniRef50_P56259	0.000282024	0.000229629
+UniRef50_W9H1I0	9.9579e-05	4.08249e-05
+2,4 dienoyl CoA reductase FadH2	7.2532e-05	0.000141179
+accessory secretory protein Asp2	3.72436e-05	5.86446e-05
+UniRef50_H4F217	6.87203e-05	4.30689e-06
+membrane protein	0.000127171	3.14697e-05
+Dihydroorotate dehydrogenase 	3.93498e-06	7.84814e-06
+Serine  tRNA ligase	0.028727	0.00892177
+hypothetical protein	1.16888e-05	3.70181e-06
+hypothetical protein	9.22254e-05	1.55891e-05
+Elongation factor G, mitochondrial	4.56771e-06	4.63086e-06
+Pyridoxine pyridoxamine 5 phosphate oxidase	8.6638e-06	0.000226759
+hypothetical protein	0.000126419	1.40854e-05
+hypothetical protein	3.76772e-05	6.87095e-05
+UDP galactose lipid carrier transferase	0.000190859	0.000440561
+Imidazolonepropionase	0.013543	0.00219719
+Amylopullulanase AmyB	0.000217233	0.000765049
+Na+ H+ antiporter, putative	0.000182988	0.0109978
+Urea amidolyase related protein	0.01095	0.00039743
+Polyribonucleotide nucleotidyltransferase	2.10643e-06	2.86443e-05
+Acyl CoA dehydrogenase, putative	0.000364928	0.0260349
+Protease subunit HflC	0.000275108	0.000111673
+UniRef50_A6LU25	0.00054872	0.000457289
+hypothetical protein, partial	2.70902e-06	1.73371e-05
+Probable chromosome partitioning protein ParB	0.000123128	0.00149356
+hemolysin type calcium binding protein, partial	2.70396e-06	1.37012e-06
+potassium transporter KefB	1.9457e-05	3.16304e-05
+N acetylmuramic acid 6 phosphate etherase	7.55833e-06	5.47938e-06
+30S ribosomal protein S15	0.00023949	3.45273e-05
+TRAP dicarboxylate transporter DctP subunit	0.0111968	0.00123342
+Glutamate ammonia ligase adenylyltransferase	0.000507617	3.22619e-05
+LigA	3.41831e-05	0.000211756
+UniRef50_M9S6C0	0.000637462	0.000493464
+UniRef50_Q3JNY9	3.7256e-05	3.20203e-05
+hypothetical protein	6.72392e-05	2.101e-05
+UniRef50_P77588	0.0028686	0.000512967
+[Fe] hydrogenase	0.000582917	6.86954e-05
+hypothetical protein	0.00367509	0.00320598
+aminotransferase, partial	3.15223e-05	2.53314e-05
+Spermidine putrescine binding periplasmic protein 2	8.40465e-05	8.35025e-05
+NAD dependent epimerase	0.00965782	0.0012875
+NADH quinone oxidoreductase subunit J	4.80346e-05	5.84065e-05
+hypothetical protein	1.67155e-05	1.09391e-05
+UniRef50_J9P5P7	1.54835e-05	6.68999e-06
+hypothetical protein	2.11798e-06	2.26519e-05
+50S ribosomal protein L3, partial	2.63062e-05	3.12434e-05
+Metallo beta lactamase	0.00511416	0.00105775
+hypothetical protein, partial	2.11003e-05	0.000122648
+PREDICTED	9.63635e-06	2.96415e-06
+Shikimate dehydrogenase	0.00220748	0.000314087
+flagellar biosynthetic protein FliQ	0.00151441	4.8568e-05
+UniRef50_A3TWT0	0.000678266	0.000114324
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.00690346	0.00237138
+UniRef50_D5MJP7	0.000327641	0.000335821
+hypothetical protein	4.04533e-05	5.93302e-05
+N acetyl gamma glutamyl phosphate reductase	2.34625e-05	0.00142038
+hypothetical protein	3.86345e-06	9.19041e-06
+cation	7.40765e-05	8.1225e-05
+Putative glutathione reductase	0.00629008	0.000753887
+Gar1 	5.62824e-05	0.000118249
+N succinyldiaminopimelate aminotransferase	0.0223236	0.0043908
+tRNA  methyltransferase	7.94471e-06	3.23229e-06
+PREDICTED	2.42605e-05	0.000200986
+Lipid A export ATP binding permease protein MsbA	0.00259901	0.000248951
+sn glycerol 3 phosphate binding periplasmic protein ugpB	2.9909e-05	8.78339e-06
+Nitrous oxide reductase	0.000726338	0.00022064
+30S ribosomal protein S3	0.000134979	0.00512618
+Marine sediment metagenome DNA, contig	3.20445e-05	1.36095e-05
+Phosphoribosyl AMP cyclohydrolase	2.34413e-05	9.18208e-06
+DNA directed RNA polymerase subunit beta	3.84339e-06	2.14537e-06
+Predicted protein	0.000108906	4.32281e-05
+UniRef50_M8UUK1	0.000115918	7.41877e-05
+PREDICTED	2.21361e-05	9.08055e-06
+Orotidine 5 phosphate decarboxylase	0.000558894	0.00197486
+TspB3	0.00011144	0.00285262
+riboflavin biosynthesis protein RibD	3.69278e-06	1.67653e-05
+Bifunctional protein FolD	5.33478e-06	2.51244e-06
+Shikimate dehydrogenase	0.00350109	0.00118376
+hypothetical protein	3.71736e-05	8.60248e-06
+excinuclease ABC, B subunit, partial	0.000161668	1.92594e-05
+UniRef50_W4UC70	7.98779e-05	0.000381278
+GTP binding protein TypA BipA	2.00273e-05	1.23525e-05
+hypothetical protein, partial	6.20657e-05	6.95718e-05
+UniRef50_A0A059LBF3	0.000257129	8.44486e-05
+UniRef50_B7V938	0.000392669	0.00014816
+hypothetical protein	1.45291e-05	3.38383e-05
+Putative prophage CPZ 55 integrase	0.00321222	8.83709e-05
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	5.69103e-05	2.88275e-05
+UniRef50_A3SZC0	0.0010384	0.00015038
+Beta hexosaminidase	2.25864e-05	1.74176e-05
+hypothetical protein	0.000253098	0.000231337
+Heme A synthase	0.00694829	0.00130105
+Predicted protein	6.08662e-06	9.27202e-06
+Marine sediment metagenome DNA, contig	5.89503e-06	5.4592e-06
+hypothetical protein	5.67791e-06	1.72495e-06
+UniRef50_Q3JR20	2.51902e-06	4.27291e-06
+Rrf2 family transcriptional regulator	2.18333e-05	2.28741e-05
+Malate dehydrogenase	1.53254e-05	1.40375e-05
+Thioredoxin reductase NTRA	4.78759e-05	1.03975e-05
+methionyl tRNA synthetase	2.26e-06	7.47508e-06
+Membrane bound lytic murein transglycosylase B	0.000100864	0.00364396
+UniRef50_K9EE72	8.90263e-06	2.64434e-05
+UniRef50_G1L4H7	2.18325e-05	1.38709e-05
+Iojap like protein	0.000368484	0.00461664
+hypothetical protein, partial	0.000730435	7.32125e-05
+UniRef50_F3U4V8	0.00135207	0.000493765
+hypothetical protein, partial	2.16159e-05	4.30251e-05
+Transcriptional regulator	0.00368692	0.00110536
+hypothetical protein	4.74457e-05	3.8024e-06
+hypothetical protein	1.42141e-05	1.60982e-05
+L sulfolactate dehydrogenase	0.00164135	0.000271886
+UniRef50_G2MPZ1	3.18118e-05	3.85463e-06
+Excinuclease ABC subunit C	4.8316e-05	1.51364e-05
+Beta lactamase domain protein	0.000134979	0.000225025
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00870346	0.000564754
+UniRef50_M1MPJ0	0.000148915	0.000300368
+Anaerobic C4 dicarboxylate transporter	0.000371239	0.000104644
+Bifunctional enzyme IspD IspF	4.53678e-06	8.96506e-06
+hypothetical protein	5.14324e-06	5.94997e-06
+Aminomethyltransferase	3.69406e-05	1.05908e-05
+DNA binding response regulator VncR	0.000731627	0.00221061
+UniRef50_M4EC72	9.45488e-06	1.44137e-05
+ABC transporter related protein	0.000563947	0.000463908
+NADPH dependent FMN reductase	0.00535786	0.00372174
+Peptidase M42	0.000389482	0.000230286
+enoyl CoA hydratase	6.41395e-06	9.1469e-06
+UniRef50_D5ALC3	4.44721e-05	5.96255e-05
+UniRef50_A0A059LAL0	0.000203223	1.70407e-05
+GBS Bsp like repeat protein	0.00101937	0.000650869
+4 hydroxy tetrahydrodipicolinate synthase	0.00161594	1.322e-05
+Energy coupling factor transporter ATP binding protein EcfA1	0.00013769	0.000982698
+CadB	0.0536274	0.0062218
+hypothetical protein	1.28976e-06	0.000199042
+UniRef50_R9ZL92	0.00043767	0.000280679
+Predicted ring cleavage extradiol dioxygenase	0.0202911	0.00300678
+Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific	0.00892224	0.00174903
+ABC transporter related protein	5.93211e-05	0.00484282
+UniRef50_P52143	0.00266678	0.000384851
+helicase SNF2	3.57568e-06	0.000194067
+Aconitate hydratase	1.36723e-05	5.30931e-05
+30S ribosomal protein S5	0.00272711	0.000266424
+succinylarginine dihydrolase, partial	2.9804e-05	5.59239e-05
+Quinate shikimate dehydrogenase 	9.5372e-05	0.0029992
+HNH endonuclease	0.000525389	4.89704e-05
+UniRef50_V4ZHB5	1.74247e-06	9.85172e-06
+UniRef50_Q9RZD4	0.000336421	0.00357524
+Methionine biosynthesis protein MetW	0.000172885	0.00348802
+UniRef50_F6DMK6	4.0288e-05	3.44158e-05
+Mini ribonuclease 3	0.00428537	0.00239079
+UniRef50_A3JQ23	1.15553e-05	9.93993e-06
+ABC family transporter, periplasmic protein	0.000506723	0.000151603
+UniRef50_J1K243	1.04008e-05	9.13889e-06
+UBA THIF type NAD FAD binding protein	5.95661e-05	8.74374e-06
+Arginine repressor	0.00371526	0.000389104
+PTS system cellobiose specific transporter subunit IIA	3.46026e-05	1.47097e-05
+Serine threonine protein phosphatase	0.000114698	0.000929311
+Cysteine desulfurase, mitosomal	0.00107947	0.00670167
+cell division protein FtsZ	1.19775e-05	1.52726e-05
+Single stranded DNA specific exonuclease	0.00318765	0.00184376
+Heat shock 70 kDa protein, mitochondrial, putative	7.19305e-06	1.28366e-06
+UniRef50_W5N2Q1	2.68794e-05	0.000189593
+ferredoxin	3.52436e-05	0.000191375
+Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000357937	0.000673408
+Helicase IV	0.00309605	0.000382896
+hypothetical protein	7.47535e-06	5.08755e-05
+Succinyl CoA ligase [ADP forming] subunit alpha	2.22904e-05	2.69182e-05
+Alpha galactosidase	0.000124858	0.00331581
+membrane protein	0.000128767	7.71692e-05
+ComE operon protein 3	0.000318849	0.00350307
+ABC transporter	2.72418e-05	8.53986e-06
+Crossover junction endodeoxyribonuclease RuvC	0.00599991	0.00164399
+Adenosylhomocysteinase	0.00131109	0.00444966
+Bacteriophage replication gene A protein 	0.000128186	0.000117284
+electron transfer flavoprotein, alpha subunit FixB family protein	7.06934e-06	3.33683e-06
+hypothetical protein	1.60503e-05	6.30565e-06
+UniRef50_X7YY04	1.12342e-05	9.03578e-05
+UniRef50_F3SAU0	0.000329679	8.12607e-05
+Putative hydroxypyruvate reductase	0.000197678	0.000181648
+Putative cross wall targeting lipoprotein signal 	0.00104198	0.000202209
+Putative ECF RNA polymerase sigma factor protein	0.00186577	0.00103469
+Serine  tRNA ligase	4.06021e-06	2.54081e-06
+Queuine tRNA ribosyltransferase	4.55595e-06	1.3509e-05
+Predicted deacylase	0.00233614	0.00160902
+3 oxoacyl [acyl carrier protein] synthase 3	0.000207851	0.00266158
+Methyl accepting chemotaxis sensory transducer	0.000346697	0.00092348
+PTS system fructose specific IIABC component	2.93231e-05	0.00163428
+GTP cyclohydrolase 1	3.69461e-05	2.53881e-05
+Putative arginine ornithine antiporter	0.00286841	0.000602419
+OmpA domain protein	0.0018291	0.000256528
+UniRef50_N8JY23	0.000726054	9.92684e-05
+Curli production assembly transport component CsgE	0.000262929	0.000232002
+hypothetical protein	2.57237e-06	1.95823e-06
+hypothetical protein	1.23607e-05	4.58562e-05
+PUCC protein	2.25498e-05	3.7835e-06
+Putative zinc metalloprotease CPE1693	0.00010313	0.000966504
+Probable acyl activating enzyme 2	2.44939e-05	1.26263e-05
+UniRef50_W4SG00	1.98321e-05	1.80729e-05
+Predicted universal stress protein, UspA	0.000238687	0.000212257
+Regulatory protein	0.000159291	9.00876e-06
+Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	3.19673e-05	1.68108e-05
+Transcriptional regulator, Cro CI family	0.000281762	8.92494e-05
+Protein map	0.000366303	3.80929e-05
+ATP synthase subunit beta, mitochondrial	1.87636e-05	3.32272e-06
+PREDICTED	0.000142796	2.68887e-05
+GTP binding protein TypA BipA homolog	0.00247178	0.00436988
+UniRef50_T0IMD9	1.08779e-05	8.1924e-06
+50S ribosomal protein L9	0.00753696	0.00158312
+Acetaldehyde dehydrogenase	0.00283787	0.000432116
+50S ribosomal protein L4	1.37128e-05	4.18156e-05
+Transcriptional regulator, MarR family	0.000446746	0.00100948
+Low molecular weight protein tyrosine phosphatase PtpB	0.00251421	0.000741433
+Putative peptidyl prolyl cis trans isomerase	6.97358e-06	0.000123811
+butanediol dehydrogenase	2.95664e-05	1.97949e-05
+Oxidoreductase family, NAD binding Rossmann fold domain protein	8.91913e-05	0.0028152
+hypothetical protein	1.78011e-05	1.45744e-05
+Cytidine deaminase	0.00195063	0.0020887
+UniRef50_UPI00022CE1AC	1.29098e-06	7.57551e-06
+YhgE Pip domain containing protein	0.000180653	0.000428687
+Nitrogenase	0.000153384	0.000139082
+UniRef50_F0RQS6	3.62894e-05	8.91571e-05
+ADP compounds hydrolase NudE	0.0045083	0.000166577
+UniRef50_O26664	0.00394449	0.000594986
+putative transposase	6.62746e-05	0.063192
+GTP binding protein Obg CgtA	2.96865e-06	8.22547e-05
+hypothetical protein	0.000227968	0.000240013
+MFS transporter	0.000198698	7.66082e-05
+Ferric hydroxamate receptor 1	0.00523661	0.00060759
+BCCT transporter	6.40599e-05	1.20638e-05
+Melibiose carrier protein	0.0024918	0.000568014
+Putative O antigen transporter	0.00328261	0.000262621
+30S ribosomal protein S2	2.02222e-05	9.19727e-06
+UniRef50_L1KZ53	1.6938e-05	0.000223956
+N acetyl glucosamine matabolism	1.92426e-05	8.32227e-06
+UniRef50_H8XGR9	0.0107075	0.000826682
+PREDICTED	3.91877e-06	4.31266e-06
+N acetylglucosamine 6 phosphate deacetylase	0.0225834	0.00198369
+Cation transporting P type ATPase A	0.000116993	0.00327511
+UniRef50_F4M600	0.00173895	0.000430454
+PREDICTED	3.17198e-06	1.94628e-06
+hypothetical protein	7.23935e-05	7.00031e-06
+hypothetical protein	2.33636e-05	3.58812e-05
+Aminopeptidase T	9.30549e-05	3.05828e-05
+Stage 0 sporulation protein	0.00489614	0.00210826
+ABC transporter permease	0.000730024	0.000593161
+hypothetical protein	4.79002e-06	1.83606e-06
+UniRef50_A0A029PSG2	2.42932e-05	2.35347e-05
+Plasmid partitioning protein	0.000138335	1.32266e-05
+UniRef50_P9WQK2	0.00260098	0.009039
+Valine  tRNA ligase	8.68823e-05	0.00172125
+UniRef50_A6LZT7	0.000870384	0.000761549
+UniRef50_W7G027	7.71907e-05	1.86341e-05
+Pseudouridine synthase	0.00656229	0.00108061
+Esterase YpfH	0.00201035	0.000600226
+DeoR family transcriptional regulator	1.19722e-05	1.598e-05
+UniRef50_D2QMM0	2.18037e-05	7.94306e-05
+CheA Signal Transduction Histidine Kinases , partial	3.09383e-06	9.54055e-06
+polyamine ABC transporter ATPase	6.86851e-05	9.68202e-06
+Topology modulation protein	1.64632e-05	1.63176e-05
+Glyceraldehyde 3 phosphate dehydrogenase GAPB, chloroplastic	3.52451e-05	8.45907e-06
+UniRef50_Q67TG7	4.16994e-06	5.25952e-06
+UniRef50_W4UAM7	3.12979e-05	0.000173642
+hypothetical protein	1.63707e-05	1.79286e-05
+NLPA lipoprotein	3.39444e-05	3.86883e-05
+hypothetical protein, partial	0.000407373	0.000103062
+MutT Nudix family protein	0.00111361	0.00490018
+cytidine deaminase	3.14487e-05	1.58416e-05
+hypothetical protein	4.45037e-06	1.12895e-05
+sugar ABC transporter, partial	2.58806e-05	2.87316e-06
+Glycosyltransferase	0.00445186	0.00112594
+UniRef50_X6L644	6.85037e-05	2.40971e-05
+Bifunctional protein GlmU	2.14393e-05	3.17305e-06
+PREDICTED	4.50144e-06	0.000126458
+Holin like protein CidA	0.00835409	0.00183848
+Flagella synthesis protein FlgN	0.00106818	0.000907524
+Endoribonuclease L PSP	2.5379e-05	2.85347e-05
+hypothetical protein	0.000177815	0.000243319
+Maltodextrin phosphorylase	0.00372537	0.00073545
+Asparagine synthetase, AsnB	0.00247676	0.000225127
+UniRef50_K2DSG6	8.44433e-05	3.83683e-05
+cytochrome b 	0.000162638	3.54769e-05
+MFS transporter	2.31052e-05	7.44749e-05
+UniRef50_A6QHT5	0.0108287	0.000218987
+UniRef50_Q8DV31	0.000794321	0.00217094
+31 kDa immunogenic protein	8.45562e-06	1.79891e-05
+UniRef50_D3NZU9	0.00679998	0.00034039
+GTPase Era	0.00105431	0.00305615
+diaminopimelate decarboxylase, partial	7.67033e-06	5.36863e-06
+multidrug transporter	0.000146661	7.86622e-05
+Adenylosuccinate synthetase	0.0309791	0.00713842
+UniRef50_M9VFY2	9.69881e-05	0.00218645
+Flagellar hook capping protein	6.53222e-06	5.08578e-06
+Oxidoreductase, short chain dehydrogenase reductase family	0.0117969	0.00253206
+hypothetical protein, partial	5.91412e-05	1.39496e-05
+UniRef50_M3F475	1.33238e-05	0.000518949
+carnitine dehydratase	9.37395e-06	9.17729e-05
+Predicted protein	1.15004e-06	0.000109813
+Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein	0.00100411	0.000150646
+serine dehydratase	6.99799e-06	5.87006e-06
+DNA binding protein	1.46772e-05	3.86267e-06
+UniRef50_G5RJ22	0.000265555	0.000232441
+UniRef50_W0YK09	0.00168274	0.000264852
+UniRef50_I6B1F5	0.00012763	3.57639e-05
+Transcriptional regulator, AraC family	0.00196609	0.000366469
+peptide ABC transporter permease	5.16495e-06	9.52745e-07
+hypothetical protein	4.92386e-06	1.22422e-05
+Acyl CoA synthetase	0.00130506	0.000405173
+ABC transporter ATP binding protein yxdL	0.012748	0.000600968
+Cell shape determining protein MreC	0.001039	0.00235897
+LmbE family protein	5.24889e-06	9.01872e-06
+Myo inositol 1 monophosphatase	0.0112214	0.00333251
+Glutamyl Q tRNA synthetase	4.87662e-06	4.99732e-06
+Conjugal transfer protein	0.000123731	0.00536067
+ABC transporter permease, partial	0.000227697	6.57896e-05
+hypothetical protein	4.44934e-06	4.21597e-06
+Ribonuclease, Rne Rng family	0.000778772	0.000288058
+Fatty acid oxidation complex subunit alpha	0.00195852	0.00455307
+GTP binding protein Era	1.33538e-05	3.63757e-05
+MULTISPECIES	2.07661e-05	1.98344e-05
+Ribulose phosphate 3 epimerase	0.00355769	0.00125937
+Capsular polysaccharide synthesis enzyme Cap5B	0.00817964	0.0014381
+Malate synthase A	0.00294447	0.000121524
+UniRef50_A0A036W4K8	0.000156889	5.34964e-06
+glutathione synthetase	6.03543e-06	6.70438e-06
+UniRef50_P32167	0.00562891	0.00196149
+Delta aminolevulinic acid dehydratase	0.00028742	0.000261604
+Phosphoribosylglycinamide formyltransferase	0.00410473	0.000686832
+membrane protein	2.21004e-05	6.6956e-05
+UniRef50_M5DTI1	1.1841e-05	9.46437e-06
+L allo threonine aldolase	0.00315382	0.000254768
+UniRef50_V8CW46	0.00192431	0.000306371
+Urocanate hydratase	5.05581e-05	0.00421199
+UniRef50_M7AG58	5.04413e-05	1.34438e-05
+Inner membrane metabolite transport protein YhjE	0.00259153	0.00372483
+flagellar biosynthesis protein FlhB	0.000136373	1.04541e-05
+hypothetical protein	4.15051e-06	3.81649e-06
+Tail specific protease	0.00279276	0.000613043
+Outer membrane protein	5.20436e-05	0.00470035
+Molybdopterin guanine dinucleotide biosynthesis protein MobA	6.60167e-06	9.96547e-06
+DNA polymerase III, subunits gamma and tau	0.000109148	0.00218475
+Flagellar motor rotation protein MotA	0.000142605	0.000326925
+UniRef50_G5M6M8	0.000205119	0.000888959
+UniRef50_N6UCJ2	6.92084e-06	6.07335e-05
+UniRef50_C5N315	0.013578	0.000313933
+ferredoxin	1.72715e-05	8.50073e-05
+DNA binding protein	3.06629e-05	2.33668e-05
+UniRef50_A1AZ02	1.51711e-05	4.46891e-06
+hemolysin type calcium binding protein	3.43038e-05	8.74046e-06
+DcaP like protein	0.000231278	0.00415957
+UniRef50_V4A4N8	3.56513e-05	3.63463e-05
+Citrate synthase	1.46894e-05	4.54912e-05
+UniRef50_V4YV07	0.000407115	0.000362036
+UniRef50_F3U350	0.00663228	0.00113596
+Glycerol 3 phosphate cytidyltransferase TagD	0.00337988	0.000387808
+PREDICTED	1.17461e-06	1.054e-06
+iron ABC transporter	7.86841e-06	2.0293e-05
+Pyrimidine nucleoside phosphorylase	0.00905902	0.00419112
+Uridylate kinase	0.000449087	0.00341624
+Thymidylate synthase	3.26537e-05	0.000178518
+UniRef50_A6UJH5	4.85807e-05	0.000109896
+UniRef50_H5LJB5	0.00142532	0.000122825
+UniRef50_D6K6K4	0.000148388	8.27428e-05
+UniRef50_B1TED8	5.54926e-05	5.06737e-05
+Formyltetrahydrofolate deformylase	1.7537e-05	1.32216e-05
+Arsenic transporter ATPase	0.000141547	0.00293749
+Two component transcriptional regulator, winged helix family	0.000153675	0.00142814
+L lactate permease	0.00934597	0.000633543
+ABC transporter related	0.000217774	0.000561381
+Phosphoglucosamine mutase	3.67394e-06	2.20398e-05
+UniRef50_A0A024HWF4	6.41501e-06	6.56526e-05
+Membrane spanning protein	0.000296084	0.00319483
+ABC type branched chain amino acid transport ATPase component	0.0110112	0.00113244
+Methyl accepting chemotaxis sensory transducer	0.000291967	0.000428438
+UniRef50_K2KCN1	2.105e-05	8.90518e-06
+ATP binding transport protein SmoK	0.00172705	0.000788105
+DNA topoisomerase I	1.75168e-06	4.8136e-06
+UniRef50_P0AA51	0.00298301	0.00148116
+UniRef50_F8KLF6	0.0143893	0.000620653
+3 oxoacyl [acyl carrier protein] synthase 3	3.66166e-05	6.32485e-06
+Amino acid ABC transporter permease	0.000320522	0.000581902
+glucose 6 phosphate 1 dehydrogenase, partial	9.36664e-06	5.23378e-06
+3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000239106	0.00247366
+UniRef50_Q08WZ7	0.000149078	3.21725e-05
+multidrug ABC transporter ATP binding protein	1.5087e-05	3.93845e-06
+hypothetical protein	9.18854e-05	0.000194269
+glycerol 3 phosphate dehydrogenase	1.6585e-05	3.00493e-06
+UniRef50_Q9AF05	1.65853e-05	4.74065e-06
+UniRef50_B6ITD9	2.17533e-05	3.42318e-05
+Sec independent protein translocase protein TatC	0.00219187	0.000670483
+Cell division protein ftsA	0.000273291	0.00239942
+UniRef50_Q9RTP9	9.65653e-06	0.0521311
+UniRef50_R0PW25	0.000150022	0.00129928
+NADH quinone oxidoreductase subunit N	9.27193e-05	0.00316973
+aspartyl glutamyl tRNA amidotransferase subunit B	8.34986e-05	1.20062e-05
+Radical S adenosyl methionine domain containing protein 1, mitochondrial	2.25724e-05	5.06286e-06
+hypothetical protein	7.9515e-06	2.06593e-06
+hypothetical protein	1.54217e-05	1.88842e-05
+Argininosuccinate lyase	4.22045e-06	0.00318002
+DNA directed RNA polymerase subunit beta	0.00647019	0.00298835
+Replication protein C	7.15997e-05	7.27557e-06
+Spore coat protein	0.00029543	0.000785348
+hypothetical protein	6.94085e-05	1.41329e-05
+PREDICTED	1.95077e-05	6.98448e-06
+Manganese dependent inorganic pyrophosphatase	0.00440071	0.00466834
+Flap endonuclease 1	0.0017001	9.42129e-05
+NAD transhydrogenase subunit beta	0.000220237	0.00443163
+Membrane protein	4.39205e-05	3.66825e-06
+branched chain amino acid ABC transporter ATP binding protein	6.14066e-05	4.24566e-06
+Peptidase M50	0.00498243	0.000731194
+catalase	0.000107013	7.31624e-05
+NifU like domain protein	0.00364795	0.000439069
+hypothetical protein	4.65862e-05	7.42151e-06
+Gamma glutamyltranspeptidase Ggt	0.0012127	0.000445924
+LuxR family transcriptional regulator	3.76714e-05	0.000504456
+Transcription cofactor HES 6 	1.38608e-05	6.95047e-05
+Phosphoglycerate kinase	0.00160083	0.00151967
+Lipoprotein	0.00886801	0.000342249
+UniRef50_G7MAA3	0.00016912	0.00158816
+PREDICTED	0.000130139	2.26171e-05
+Radical SAM family protein	3.2312e-05	1.67355e-05
+hypothetical protein	7.73979e-06	9.24812e-06
+Plasmid replication protein	3.36319e-05	3.39888e-06
+FAD dependent oxidoreductase	1.25466e-05	1.88135e-06
+Diaminopimelate decarboxylase	1.37503e-05	5.04888e-05
+Spanin, inner membrane subunit	0.000747886	0.00330913
+RhsA	0.000678812	0.000197265
+Polyribonucleotide nucleotidyltransferase	1.30003e-05	1.50021e-05
+Cell shape determinant MreD	0.0103215	0.00407095
+Protease HtpX homolog	0.00225257	0.000548604
+Histone deacetylase superfamily	0.0026298	0.000304303
+Tagatose 6 phosphate kinase	0.00680347	0.00171921
+UniRef50_Q9K1M6	8.06651e-05	0.00151353
+UniRef50_G9P654	0.000189003	0.00012712
+AAA ATPase	0.00029387	0.000418638
+UniRef50_P77216	0.00289184	0.000802442
+Pyruvate, phosphate dikinase	0.000897892	0.00315709
+AMP dependent synthetase ligase	2.77597e-05	1.38423e-05
+Malonyl CoA acyl carrier protein transacylase	0.000540927	0.000472362
+Regulatory protein BlaR1	0.000377469	7.82101e-05
+UniRef50_G7M658	0.000728865	0.000195432
+UniRef50_B9NM77	0.000818312	0.000199311
+GMP synthase 	0.000113209	4.97594e-05
+Cell division protein DivIB	0.00787638	0.00174246
+PREDICTED	1.22389e-05	6.10511e-06
+UniRef50_H8GRZ1	0.000164525	0.00223778
+PREDICTED	6.70889e-06	3.10572e-06
+Aerobic respiration control protein ArcA	0.00186396	0.0015857
+Conserved domain protein	0.000109198	3.36355e-05
+UniRef50_I7BX60	0.000617776	0.000222573
+UniRef50_N8WA96	0.000230883	0.00358097
+Thymidine kinase	1.60296e-05	5.48336e-06
+GTPase, G3E family	0.000148477	0.00975039
+Type I secretion C terminal target domain protein, VC_A0849 subclass family	7.94768e-05	0.00129423
+UniRef50_U6H4I5	2.47007e-05	9.26213e-05
+Chaperonin CPN60 like 1, mitochondrial	0.0294473	0.0311408
+Uroporphyrinogen III C methyltransferase	1.99749e-05	1.33725e-05
+hypothetical protein	2.86852e-06	0.0002225
+Guanine deaminase	0.000606975	0.00338606
+Glycine betaine ABC transporter substrate binding protein	0.00161945	0.000282818
+hypothetical protein	0.000616888	5.89798e-05
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.13147e-05	2.08677e-05
+Sensor protein VraS	0.0154024	0.00175601
+Putative aminopeptidase SgcX	0.00280578	0.00157904
+hypothetical protein	5.35949e-05	1.96431e-05
+Prolipoprotein diacylglyceryl transferase	1.38344e-05	6.78975e-06
+Ferripyoverdine receptor	0.00102778	0.000286684
+50S ribosomal protein L10	0.000175706	6.73994e-05
+hypothetical protein	9.34945e-06	1.11749e-05
+Quinol oxidase subunit 2	5.20548e-05	0.000176049
+UniRef50_G6XJ67	6.22307e-06	1.2665e-05
+autotransporter associated beta strand repeat protein, partial	3.6147e-05	2.14806e-06
+Glycine  tRNA ligase alpha subunit	0.00103877	0.0018789
+Transcriptional regulator, GntR family	0.000572849	0.000811385
+Bacterial regulatory s, tetR family protein	0.00838484	0.000721295
+UniRef50_F8HGF9	0.00733618	0.011963
+phosphoenolpyruvate carboxykinase	2.42546e-05	5.87477e-05
+ferredoxin NADP reductase subunit alpha	8.06339e-05	9.10064e-05
+mannose 1 phosphate guanyltransferase	2.37345e-05	5.98028e-06
+UniRef50_A4X0F9	0.00151005	0.000340094
+Hydrolase, NUDIX family protein	0.000228427	0.00279112
+UniRef50_W0T788	7.06716e-06	3.3425e-05
+Major facilitator transporter	0.000157598	1.831e-05
+Nuclease SbcCD subunit D	0.0219514	0.00288875
+ABC transporter, periplasmic spermidine putrescine binding protein PotD	0.00161844	0.000620032
+ATP synthase subunit alpha	0.000536207	0.00297988
+UPF0758 protein SH1266	0.0144568	0.00111901
+Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	8.61472e-05	0.00292295
+uridine kinase	8.81794e-06	0.000129846
+UniRef50_F3KRZ8	6.70385e-05	1.32921e-05
+UniRef50_R5Q800	0.00234211	0.000402794
+UniRef50_K0HYU5	0.00059857	0.00578116
+Xanthine dehydrogenase accessory factor	0.000149741	1.52561e-05
+Heme A synthase	0.00531818	0.000289125
+30S ribosomal protein S1	0.010695	0.00235131
+Oligopeptide transport system permease protein OppB	0.000682498	0.000589929
+Type VII secretion system , usher family protein	0.000972713	0.000282015
+UniRef50_D0WC80	2.27708e-05	0.000177289
+Xylose operon regulatory protein	0.0035093	0.000154669
+Glutathione reductase	0.00536043	0.00300563
+4 carboxymuconolactone decarboxylase	3.35837e-05	0.000139568
+Elongation factor P	0.00113443	4.93932e-05
+Glyoxalase bleomycin resistance protein dioxygenase	0.000301387	0.000421525
+Leucine  tRNA ligase	5.35722e-06	1.09301e-06
+Cysteine rich domain protein	0.000515125	0.00322043
+ADL112Wp	0.000255884	7.17074e-05
+hypothetical protein	2.97151e-05	2.98286e-05
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	7.09774e-05	2.76937e-05
+Penicillin amidase	0.000397131	4.27547e-05
+UniRef50_A4WV32	0.000738004	0.000496704
+hemolysin type calcium binding region	1.96799e-05	1.56498e-05
+UniRef50_I6SV43	0.00241598	0.00247768
+hypothetical protein	1.17575e-05	1.1954e-05
+UniRef50_A6M0W1	0.000327509	0.000594316
+Multidrug resistance ABC transporter ATP binding and permease protein	3.38238e-05	1.74947e-05
+Aldehyde dehydrogenase	0.00144235	0.000452389
+Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor]	0.00355451	0.00109568
+S adenosylmethionine synthase	4.12875e-05	0.00211899
+Non homologous end joining protein Ku	0.000412877	0.000410962
+Long chain fatty acid transporter	0.000390676	0.00912202
+Porphobilinogen deaminase	8.62034e-06	4.95519e-06
+Glyoxalase	7.90063e-06	0.000120517
+UniRef50_A6LTD1	0.000388325	0.000220061
+Tyrosine recombinase XerD	0.00778325	0.000771244
+UniRef50_K8NEW5	8.12397e-05	7.64499e-05
+Glutamine ABC transporter substrate binding protein	0.000298796	0.000144581
+Arginine repressor	0.0111521	0.00375463
+Magnesium protoporphyrin chelatase, putative	2.01223e-05	0.000159041
+UniRef50_D3D6E8	4.87108e-05	5.0606e-06
+Gluconokinase	0.012595	0.00126359
+hypothetical protein	3.24991e-06	4.77165e-06
+Transglutaminase domain containing protein	0.000988071	0.000681394
+hypothetical protein	4.9803e-06	1.65627e-05
+Light independent protochlorophyllide reductase iron sulfur ATP binding protein	0.0113623	0.000528016
+UniRef50_C2ZDZ0	8.319e-05	9.30413e-05
+Signal recognition particle receptor FtsY	0.00404074	0.00125858
+DNA mismatch repair protein MutL	5.18033e-05	0.00435941
+ribosomal large subunit pseudouridine synthase A	3.92024e-06	2.31587e-06
+5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase	0.000330746	0.022465
+hypothetical protein	0.00173679	0.000231404
+hypothetical protein	3.00303e-06	5.61657e-05
+30S ribosomal protein S13	3.83179e-05	0.000130444
+Gyrase B 	4.31845e-05	4.36799e-06
+ABC transporter	1.46089e-05	2.17247e-05
+UniRef50_Q8DV69	0.0141834	0.000184363
+LysM domain protein	0.00921536	0.00159674
+Conserved domain protein	1.27358e-05	1.45836e-05
+Peptidyl tRNA hydrolase	6.4478e-05	1.70111e-05
+Type II restriction endonuclease	0.000104735	0.00115246
+UniRef50_S4AF74	3.98006e-05	5.72501e-06
+UniRef50_F4FDU4	2.71204e-05	0.000100239
+UniRef50_Q932N6	0.000672504	0.000111863
+UniRef50_D2NSF8	2.74517e-05	0.000216091
+UniRef50_M0TB60	7.73658e-05	0.000211049
+Ribonuclease 3	1.39743e-05	5.97734e-06
+Secreted hemolysin type calcium binding protein bacteriocin, putative	1.06907e-06	1.39525e-06
+UniRef50_R1DNP7	4.99074e-05	2.15727e-05
+hypothetical protein, partial	6.23214e-06	4.39265e-06
+Auxin binding protein	6.24384e-06	1.60802e-05
+tRNA lysidine synthase	0.000394548	0.000362214
+Flagellar hook capping protein	6.99021e-06	6.21143e-06
+3 oxoadipate enol lactonase	8.76556e-06	1.9313e-05
+TIGR03943 family protein	0.000743065	0.000719444
+Peptidoglycan associated lipoprotein	0.00181224	0.000560719
+Nitric oxide reductase FlRd NAD reductase	0.00375441	0.000588921
+HAE1 family hydrophobic amphiphilic exporter 1 	0.000209156	0.00370236
+UniRef50_L7WTZ4	0.0119747	0.00168117
+UniRef50_B4R909	0.000101824	2.29753e-05
+ABC transporter permease	0.000109477	9.52454e-06
+UniRef50_V1XPG8	0.000410898	9.11702e-05
+UniRef50_B9DXX3	0.000378336	0.00188721
+Lactoylglutathione lyase	8.9984e-05	1.61933e-05
+Possible replication protein C	0.0355852	0.00481226
+PUCC protein	2.41656e-05	5.4673e-06
+hypothetical protein	2.72968e-05	1.65115e-05
+UniRef50_W4KF41	6.96914e-05	3.09808e-05
+NADH quinone oxidoreductase subunit K	0.000112481	1.49207e-05
+hypothetical protein, partial	0.000759891	0.0011747
+hypothetical protein	1.01956e-05	9.1456e-06
+UniRef50_W4KF45	5.43809e-06	5.39941e-06
+hypothetical protein	4.53389e-05	4.97441e-06
+UniRef50_D8NYU1	2.78166e-05	1.4183e-05
+UniRef50_V6L4N0	9.44994e-06	7.42228e-06
+Phosphosulfolactate synthase	0.00297137	0.000551944
+UniRef50_A1BCD3	0.00214699	0.000178854
+glucose 6 phosphate dehydrogenase	3.01809e-06	2.68145e-06
+ChaC like protein	9.86957e-06	1.00228e-05
+Replication associated recombination protein A	7.2846e-05	0.00326203
+47 kDa protein	7.66989e-06	5.09328e-06
+phosphoesterase	1.18205e-05	7.54544e-06
+UniRef50_Q1IYN8	0.000477972	0.00496907
+hydrogenase nickel insertion protein HypA	0.00018672	2.37987e-05
+hydantoinase	3.45989e-06	3.51982e-06
+carboxypeptidase	1.00899e-05	2.72744e-06
+Xaa Pro aminopeptidase 2	4.20933e-06	1.4286e-05
+hypothetical protein	4.42512e-05	0.000100943
+DNA gyrase subunit A	2.30708e-06	1.72688e-06
+Galactonate dehydratase	9.70813e-05	0.000768087
+Catecholate siderophore receptor CirA	0.000481871	5.50827e-05
+Heavy metal translocating P type ATPase	0.000356607	0.000646743
+UniRef50_C4J951	3.92147e-05	0.000931652
+Spermidine synthase like protein	7.6567e-06	1.6888e-05
+RNA polymerase associated protein RapA	0.00134613	0.000101082
+hydrogenase	0.00012392	4.52738e-05
+UniRef50_Q3JT43	0.000123311	1.56768e-05
+Transcriptional regulator, MerR family	0.0202343	0.00284168
+Adenylate kinase	8.89772e-06	1.14057e-05
+UniRef50_Q46855	0.00249131	0.000916841
+transcriptional regulator	0.000170713	1.71124e-05
+Leucine specific binding protein	0.0040724	0.000809433
+Mg transport ATPase protein C	0.000439959	0.00209272
+UniRef50_S6DCW1	0.000163446	0.000109854
+Protein tyrosine phosphatase	0.0191654	0.00126057
+Tryptophan  tRNA ligase	0.00124741	0.000230953
+Cardiolipin synthase 2	0.0213435	0.00413605
+Membrane protein, putative	7.719e-05	6.60669e-05
+UniRef50_W4TSQ7	0.000224453	0.000157244
+UniRef50_W4TSQ5	0.000303802	0.00269551
+tRNA dihydrouridine synthase A	0.000750643	0.000124627
+UniRef50_E0Q484	0.00021622	1.45072e-06
+hypothetical protein, partial	4.90901e-05	0.000107788
+HTH type transcriptional regulator DctR	0.000974353	0.000433743
+DnaA regulatory inactivator Hda	0.00394287	0.000391415
+hypothetical protein, partial	7.64594e-06	3.64022e-06
+dTDP glucose 4,6 dehydratase 2	0.000216214	0.000779563
+hypothetical protein	1.26224e-05	4.11629e-06
+VanW like protein	7.62572e-05	0.00869394
+Ribosomal RNA small subunit methyltransferase H	1.41088e-05	4.72881e-06
+ribosome binding factor A	1.88498e-05	3.45014e-05
+Binding protein dependent transport systems inner membrane component	0.00275322	0.000405555
+DGPFAETKE domain protein	2.47718e-05	1.22218e-05
+hypothetical protein	8.79958e-06	9.97952e-06
+helicase	2.41965e-06	3.13691e-06
+branched chain amino acid ABC transporter ATP binding protein	8.6641e-06	6.51324e-06
+MaoC like dehydratase	3.6617e-05	1.23953e-05
+UniRef50_G8LZB4	4.18063e-05	2.4146e-05
+RecF RecN SMC N terminal domain protein	2.92906e-05	0.000249584
+Ferric enterobactin transport protein FepE	0.00177509	0.000817532
+Proteophosphoglycan ppg1	1.61078e-06	1.23291e-05
+Dihydroorotase	1.66278e-05	3.04511e-06
+putative N acylamino acid racemase	1.31885e-05	0.000272026
+UniRef50_G4U7X4	1.18801e-06	7.00159e-07
+phosphatase	7.3856e-06	1.00596e-05
+carboxynorspermidine decarboxylase	2.76189e-05	1.96986e-05
+hypothetical protein	1.28847e-05	0.00174673
+Marine sediment metagenome DNA, contig	7.90281e-06	1.83289e-05
+Formate dehydrogenase, alpha subunit	0.000349265	0.000979611
+Sulfate transporter	0.000208506	3.66294e-05
+UniRef50_R6HNH6	7.67481e-05	2.26344e-05
+Phosphohydrolase, Icc family	0.0121402	0.00111566
+quinone oxidoreductase	5.90778e-06	3.51648e-05
+Phosphate transporter	0.000804765	0.0379399
+Histidinol phosphate aminotransferase	8.97463e-05	0.00327898
+UniRef50_G9ZDV2	4.76101e-05	2.6109e-05
+Phenylacetate CoA oxygenase subunit PaaA	0.000129111	0.00291458
+hypothetical protein	2.17809e-05	3.62167e-06
+hypothetical protein	5.21528e-06	1.54958e-05
+UniRef50_U5MNP0	0.000210655	0.000860711
+Cell wall biosynthesis protein Mur ligase family	0.00166033	6.65073e-05
+hypothetical protein	0.000124425	1.48764e-05
+HTH type transcriptional regulator cbl	0.00278861	0.000483923
+UniRef50_U4TH79	0.00373205	0.000241357
+Periplasmic binding protein	0.000134619	0.000429501
+Flagellar basal body rod protein FlgB	0.000733407	0.000216872
+UniRef50_A0A059DWP9	2.45898e-05	9.11336e-06
+UniRef50_Z8B9P7	0.0128888	0.00146755
+hypothetical protein	1.51674e-05	1.09114e-05
+ABC transporter, permease component	0.00849752	0.000884532
+UDP N acetylglucosamine 2 epimerase	0.000303809	0.00310562
+hypothetical protein, partial	5.13321e-06	2.46025e-05
+hypothetical protein	1.06022e-05	6.97375e-06
+hypothetical protein	1.2502e-05	1.93509e-05
+NADH quinone oxidoreductase subunit B C D	8.69554e-06	1.75973e-05
+Branched chain amino acids ABC transporter permease,azaleucine resistance protein	4.69641e-05	4.06317e-05
+Putative secreted adhesin	9.5547e-06	2.7723e-06
+Phosphorylase	0.00946159	0.00115737
+CsuD	0.000166454	0.00208505
+Cation transport protein ChaC, putative	5.49535e-06	1.3979e-05
+PREDICTED	6.34519e-06	2.98262e-06
+UniRef50_F3G839	1.28297e-05	6.14943e-06
+UniRef50_B9J7K1	6.97837e-05	2.39288e-05
+Glycosyltransferase	0.000171126	0.00341552
+UniRef50_U3TVU1	0.000122364	0.000617157
+Enterobactin synthase subunit F	0.00285452	0.000515659
+Cytochrome D ubiquinol oxidase subunit I	0.0211928	0.00326999
+Electron transport complex subunit D	0.0031114	9.11521e-05
+Cell surface protein	0.00021567	3.88679e-05
+Cobalamin synthase	0.00297816	0.000250912
+Transcription repair coupling factor	0.00067962	0.000643936
+Potassium transporting ATPase B chain	0.000213411	0.00010206
+Predicted multimeric flavodoxin	0.00391453	0.000187834
+UniRef50_D2ZS60	0.00266103	0.000186808
+UniRef50_A5UM77	0.00168519	0.000763058
+50S ribosomal protein L22	1.0085e-05	1.67828e-05
+UniRef50_Q11H35	0.000298267	3.80788e-05
+Urease subunit alpha 2	4.84919e-06	8.46698e-06
+UniRef50_J9NYD9	1.12827e-05	1.43728e-05
+Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED	0.000159502	0.0206487
+hypothetical protein	0.000136505	2.47405e-05
+Phosphate import ATP binding protein PstB 3	2.06993e-05	0.000101458
+transporter	2.96576e-06	0.000203473
+UniRef50_A9WS29	1.74937e-05	4.61217e-05
+hypothetical protein	0.000140105	0.000110602
+Possible membrane protein	0.000187666	0.000370793
+UniRef50_Q9HX91	0.00108107	0.000447646
+Predicted protein	4.99059e-05	0.000406029
+Putative cryptic C4 dicarboxylate transporter DcuD	0.0021338	0.000560368
+UniRef50_X6M7B3	8.78443e-07	9.64894e-07
+Type IV pilus biogenesis stability protein PilW	4.54451e-06	4.68599e-06
+Oligopeptide dipeptide ABC transporter ATPase subunit	0.000503196	0.00240057
+D specific D 2 hydroxyacid dehydrogenase	0.0069495	0.000119395
+UniRef50_T1Z3D7	0.00564384	0.00276937
+UniRef50_H2HHM8	9.73892e-05	0.00266945
+hypothetical protein	7.32436e-06	4.47413e-06
+sulfate	2.63648e-06	2.5434e-06
+hypothetical protein	9.95037e-06	5.8519e-05
+Putrescine binding periplasmic protein	0.000679173	0.000177826
+AAA domain family protein	0.000297194	0.000169081
+hypothetical protein	3.74112e-05	3.95054e-06
+hypothetical protein	0.000109968	6.48213e-06
+Phosphate import ATP binding protein PstB	1.66197e-05	0.000120203
+Phosphotransferase system, EIIC	7.4348e-05	0.000674844
+Yop proteins translocation protein C	0.000487232	5.97769e-05
+Macrolide specific efflux protein MacA	0.000125734	0.00303099
+Predicted protein	0.000105751	0.000154628
+Transketolase	3.01188e-05	1.5453e-05
+Succinyl diaminopimelate desuccinylase	0.000136994	0.00240031
+hypothetical protein	2.90504e-06	0.000336048
+UniRef50_U7PWZ9	1.16871e-05	1.93561e-05
+UniRef50_I6F1W3	6.90948e-05	3.84123e-05
+UniRef50_L1J0A5	1.60562e-06	7.84845e-07
+Internalin J	4.42292e-06	1.56278e-05
+UniRef50_B9E249	0.000697466	0.000347584
+SdrD protein 	0.000472919	0.000205594
+Uroporphyrinogen III C methyltransferase	0.000769719	1.83212e-05
+UniRef50_E4QDT6	0.000157021	0.000332407
+Alpha ribazole phosphatase	0.00171141	0.000382177
+hypothetical protein	5.29546e-06	1.20094e-05
+Seg	5.25965e-05	5.73753e-05
+Release factor glutamine methyltransferase	8.21083e-06	0.00107836
+type II secretion system protein F	3.0597e-06	3.01206e-06
+Prephenate dehydratase	0.00107993	0.00118421
+Lipopolysaccharide 1,3 galactosyltransferase	0.00119919	0.00022719
+Acetoacetyl CoA synthetase	0.000232339	4.63765e-05
+molybdopterin guanine dinucleotide biosynthesis protein A	6.44561e-06	1.06244e-05
+hypothetical protein	0.000154058	1.11677e-05
+UniRef50_S6AM82	0.000476332	0.000337537
+Alcohol dehydrogenase class 3	0.000468488	0.0030875
+cell wall hydrolase	1.78547e-05	6.19579e-06
+Transcriptional regulator, LysR family	0.000489313	0.000293177
+UniRef50_D3PTH4	0.000135523	0.000241033
+UniRef50_Q98457	1.10649e-05	1.13946e-05
+Transcriptional regulator, LysR family	3.23675e-05	3.00886e-05
+hypothetical protein	2.07756e-05	9.1934e-06
+UniRef50_A7ZXV0	7.86991e-05	4.90801e-05
+Bifunctional pantoate ligase cytidylate kinase	3.32928e-06	8.15518e-06
+Anaerobic dimethyl sulfoxide reductase chain B	0.00411769	0.000374104
+hypothetical protein	1.39347e-05	9.12273e-06
+hypothetical protein	2.75756e-06	3.02956e-06
+Anaerobic ribonucleoside triphosphate reductase	0.00291288	0.00117263
+Phosphatidylserine synthase	0.000272877	0.00024071
+hypothetical protein	0.000108091	2.25595e-05
+UniRef50_S9SA83	1.96764e-05	6.0015e-05
+hypothetical protein, partial	6.31643e-06	8.90059e-06
+hypothetical protein	2.24493e-05	8.02831e-06
+hypothetical protein	3.53276e-05	7.30814e-06
+UniRef50_S9SA88	0.000137309	0.000190408
+hypothetical protein, partial	2.80994e-05	6.49281e-06
+1 deoxy D xylulose 5 phosphate synthase, chloroplastic	1.73688e-05	4.52269e-05
+UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.0225725	0.00270199
+UPF0301 protein SLG_23610	1.11513e-05	9.33043e-06
+D galactose binding periplasmic protein	0.00308722	0.000205497
+UniRef50_Q022D1	1.55548e-05	6.93185e-06
+Para aminobenzoate synthetase component I   4 amino 4 deoxychorismate lyase	0.000119782	0.00254164
+Binding protein dependent transport systems inner membrane component	0.0105641	0.0012871
+UniRef50_V9UQ05	2.86987e-05	5.68646e-06
+UniRef50_C8NMF6	0.000220639	0.000230717
+UniRef50_A3PKK7	0.000547544	0.000260835
+DNA gyrase subunit A	3.03906e-05	5.19754e-05
+NADH quinone oxidoreductase subunits H I	1.99387e-06	1.62592e-05
+hypothetical protein	5.02865e-06	9.00188e-06
+ABC transporter ATP binding protein, partial	9.67568e-05	6.94521e-06
+UniRef50_H9JRN0	8.75698e-05	0.000162329
+Asparagine  tRNA ligase	0.00204343	0.000639929
+hypothetical protein	3.88894e-05	0.000358782
+ABC transporter permease	4.08747e-06	3.90743e-06
+Ribosomal RNA small subunit methyltransferase J	0.000403142	0.000810827
+UniRef50_W5HYZ3	7.39126e-05	6.6854e-05
+UniRef50_J9YT00	0.000181918	8.78521e-05
+D alanyl D alanine dipeptidase	0.00584137	0.000157794
+Glyoxalase	0.000216198	0.000193086
+hypothetical protein	1.26311e-05	1.02959e-05
+UniRef50_W6RE07	0.000331317	5.9421e-05
+hypothetical protein, partial	0.000476181	0.000296571
+Trigger factor	7.57424e-05	0.0040814
+Nitrogenase molybdenum iron protein alpha chain	0.0129173	0.000782345
+hypothetical protein	1.72864e-05	0.000591777
+Biotin synthase	0.000124648	0.000428783
+S1 RNA binding domain protein	0.00379795	0.00283352
+Marine sediment metagenome DNA, contig	0.000266001	3.89219e-05
+amidophosphoribosyltransferase, partial	1.62252e-05	5.41073e-05
+Type III restriction modification system EcoPI enzyme, subunit res	6.99083e-05	0.00159249
+Arsenate reductase like protein	0.000111271	3.71783e-05
+hypothetical protein	5.1102e-05	1.96191e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	6.83621e-06	1.00191e-05
+hypothetical protein	1.4856e-05	1.4955e-05
+Maf like protein ACIAD0829	0.000195289	0.00528753
+Transposase C for	0.00027141	0.000976652
+hypothetical protein	1.0763e-05	2.48127e-05
+Rhs element Vgr protein	0.00272022	0.000289652
+Aminomethyltransferase	0.000188175	0.0234734
+Phosphatidate cytidylyltransferase like protein	0.00399768	0.000169086
+Chaperone CupC2	0.000184242	0.000268817
+NADH dehydrogenase	2.70732e-06	2.90472e-05
+cold shock protein	3.01244e-05	1.06217e-05
+xanthine CO dehydrogenase maturation protein	3.27409e-06	7.93124e-06
+ABC putrescine transporter, inner membrane subunit PotI	0.000127642	0.00157312
+amino acid carrier protein, partial	1.47067e-05	0.000470621
+3 methyl 2 oxobutanoate hydroxymethyltransferase	2.57046e-05	4.71362e-05
+UniRef50_I4F4V3	6.00405e-05	9.315e-06
+UniRef50_A0A059ABD6	3.80701e-05	1.80277e-05
+hypothetical protein	1.28936e-05	4.74598e-05
+Putative 3 oxoacyl ACP synthase II	1.56286e-06	0.000125249
+UniRef50_H3F275	0.000176821	0.000319247
+UniRef50_D9SKB5	0.00033432	0.00025383
+Magnesium transporter	0.000268523	0.00465582
+UniRef50_F5M3S4	0.0076392	5.78923e-05
+Mannonate dehydratase	0.00186655	0.000256112
+UniRef50_M9VAU8	0.000219966	0.0028538
+hypothetical protein	3.0738e-06	0.000152867
+UniRef50_P0A130	0.00118759	0.000358221
+UniRef50_Q3IZJ1	0.00349308	0.000108567
+Lipoprotein signal peptidase	9.77023e-06	1.83329e-05
+Glucose 6 phosphate 1 dehydrogenase	0.00683494	0.000508955
+glutamyl tRNA synthetase	6.26158e-06	2.14663e-06
+UniRef50_A6QDY9	0.0102079	0.000975847
+Molybdenum ABC transporter, ATP binding protein ModC	0.0271799	0.00316084
+UniRef50_F4T4M6	0.000361635	6.01089e-06
+Mutator protein	0.00226795	0.000998467
+hypothetical protein, partial	1.95904e-05	0.000115138
+Efflux ABC transporter permease	0.000235583	0.00334464
+ABC transporter ATP binding protein	2.44238e-05	2.02877e-05
+Tex like N terminal domain protein	5.79647e-06	0.000163139
+ribose galactose ABC transporterpermease, partial	0.00042919	0.000239949
+UniRef50_Q02N09	0.00020274	0.000180654
+Cation multidrug efflux pump	0.000428371	0.00021678
+Transcriptional regulator, BadM Rrf2 family	2.74307e-05	2.44651e-05
+glucose 6 phosphate dehydrogenase	3.57497e-06	3.17894e-06
+PREDICTED	2.5844e-06	3.906e-06
+hypothetical protein	1.32547e-05	1.17152e-05
+UniRef50_M4MUD1	3.51018e-05	0.000185832
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0101409	0.00184296
+UniRef50_G8V7N9	0.000199316	0.00310991
+Chorismate synthase	1.1753e-05	6.37813e-05
+LPXTG motif cell wall anchor domain protein	0.000218242	0.00116228
+transcriptional regulator	0.000261144	3.53414e-05
+UniRef50_Q9HTE2	0.000666987	0.000179211
+Deoxyguanosinetriphosphate triphosphohydrolase like protein 2	0.0136347	0.000564463
+alkane 1 monooxygenase	4.35526e-06	7.9679e-06
+GAF sensor hybrid histidine kinase	4.78121e-06	0.00012521
+Lipoprotein	0.000696551	0.00586135
+3 oxoacyl ACP reductase	7.7201e-06	2.05846e-05
+ABC transporter permease	0.000132696	4.71145e-05
+PTS system mannose specific EIIAB component	0.00404265	0.000138771
+Pyruvate carboxylase	0.00563089	0.00106997
+HTH type transcriptional regulator YdeO	0.00231517	0.000120679
+Phosphate specific transport system accessory protein PhoU	0.00299938	0.000890995
+UniRef50_Q8E4M4	0.0066767	0.000799869
+gas vesicle protein	0.000292295	0.00010059
+UniRef50_Q9RVY3	0.00072914	0.0221869
+UniRef50_P27238	0.000595432	0.000354881
+Expressed protein 	0.000163186	8.19161e-06
+maltooligosyl trehalose synthase	2.67817e-06	1.01239e-06
+Dihydrolipoyl dehydrogenase	0.0107617	0.00181053
+Isocitrate dehydrogenase [NADP]	0.0158649	0.0255927
+Phosphofructokinase	0.000286583	0.00265578
+UniRef50_N6YIN7	2.60753e-05	7.12063e-06
+UniRef50_D6M4Q7	6.80686e-05	0.000291875
+UniRef50_E1V3L9	0.000221621	8.82898e-05
+UniRef50_C6STB9	0.0055548	0.00199641
+DNA gyrase subunit B	1.87293e-05	1.43758e-05
+hypothetical protein	1.08102e-05	7.53211e-06
+SMC domain protein	9.00257e-05	0.000424181
+Protein CreA	1.1226e-05	7.30052e-06
+Binding protein dependent transport systems inner membrane component	0.000133023	0.000758141
+Probable transcriptional regulatory protein TM_0466	0.011253	0.000607415
+UniRef50_J9P642	1.09507e-05	8.04814e-06
+Aminomethyltransferase, mitochondrial	1.44119e-05	3.08563e-06
+Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system	0.00471215	0.00105934
+Extracellular Matrix protein PelB	5.66739e-06	3.99779e-06
+hypothetical protein, partial	3.09555e-05	1.2323e-05
+alpha dehydro beta deoxy D glucarate aldolase	5.05327e-05	0.000196323
+hypothetical protein	2.48003e-06	2.06247e-06
+Ribosomal RNA large subunit methyltransferase H	0.00253388	0.000795292
+hypothetical protein	0.0140972	0.00146894
+UniRef50_D9ST52	0.00050632	0.000467117
+UniRef50_R0XB61	0.00774322	0.000693352
+Chitinase	0.000216089	0.000400783
+hypothetical protein	2.87635e-06	5.78779e-06
+Dihydrodipicolinate synthetase	0.00134075	0.000313527
+hypothetical protein, partial	6.99776e-06	3.68817e-05
+Ureidoglycolate dehydrogenase )	0.00180611	0.00070578
+Mammalian cell entry related domain protein	0.00144564	3.08374e-05
+UniRef50_Q5N7D3	9.46173e-05	1.18247e-05
+UniRef50_Q6A5B4	0.000240392	0.000953385
+aminotransferase	5.49017e-06	3.61608e-05
+1,4 alpha glucan branching enzyme GlgB	0.000361305	0.0011283
+biotin biosynthesis protein BioY	1.18531e-05	2.31885e-05
+Methyl coenzyme M reductase I subunit beta	0.00433917	0.00123426
+Permease YjgP YjgQ family protein	0.00110101	0.000486887
+UniRef50_K2AI23	9.46934e-05	1.75254e-05
+hypothetical protein	1.12133e-05	3.75964e-06
+Transcriptional regulator, Fis family	3.44812e-05	0.000146093
+Marine sediment metagenome DNA, contig	2.36562e-05	4.29917e-05
+2 alkenal reductase	8.33729e-05	0.000838324
+UniRef50_P75828	0.00391677	0.000801986
+LRG5	1.42475e-05	5.69105e-06
+Peroxiredoxin	8.0057e-06	0.000290863
+hypothetical protein	1.82826e-05	4.76195e-05
+PREDICTED	3.40045e-06	1.47633e-05
+hypothetical protein	3.82731e-05	3.07426e-05
+Predicted nucleotide kinase	0.000209036	0.000180291
+TRAP type C4 dicarboxylate transport system, large permease component	0.00043313	9.69848e-05
+Probable cobalamin biosynthesis protein CobD	0.00187266	0.000106254
+DnaJ domain protein	3.06481e-05	5.55506e-05
+Polysaccharide deacetylase	0.000130277	0.00194967
+TIGR01906 family protein	3.15456e-05	1.3084e-05
+UniRef50_U5MRU9	0.000188016	0.000561457
+flagellar biosynthesis protein FlhA, partial	1.40218e-06	7.40214e-06
+UniRef50_B4WWC7	8.43473e-06	0.000569955
+UniRef50_I8QJJ6	0.000141176	8.74783e-05
+UniRef50_UPI0001D61AB0	1.65621e-05	3.21237e-06
+UniRef50_B9KKZ2	0.000866405	0.000385343
+UniRef50_P39165	0.00301108	0.00082697
+Glucosamine 6 phosphate deaminase	0.0180973	0.00358873
+CCA adding enzyme	8.7071e-06	0.000165108
+UPF0226 protein YhhS	0.00233704	0.000236758
+Replication initiator protein	0.00140025	6.61305e-05
+Bacterial regulatory helix turn helix , lysR family protein	0.000173479	0.000435849
+hypothetical protein	1.0962e-05	5.0179e-06
+Drug resistance transporter, EmrB QacA subfamily	0.00111249	0.000375183
+isoleucyl tRNA synthase	1.27139e-06	1.45028e-06
+Succinate acetate proton symporter SatP	0.00133591	0.00258503
+hypothetical protein	2.34666e-06	0.000131963
+HTH type transcriptional regulator GntR	0.00179207	0.000121167
+UvrABC system protein C	0.00214068	0.000602169
+hypothetical protein	2.56819e-06	9.59675e-06
+Sulfite reductase [NADPH] hemoprotein beta component	0.00402966	0.00192556
+Arginine  tRNA ligase	0.000533565	0.000419346
+hypothetical protein	0.00011923	5.20195e-06
+Isoprenyl transferase	8.8738e-06	7.61569e-06
+Dihydropyrimidinase	0.000119485	0.000304527
+UniRef50_H0YAA0	0.000283647	1.09873e-05
+Fructose bisphosphate aldolase	0.000115125	0.00264481
+UniRef50_A0A023LEN6	0.000297047	0.00057824
+ferredoxin	2.06171e-05	4.45047e-05
+Male sterility C terminal domain	0.000298284	0.00108183
+hypothetical protein	2.35428e-06	3.60861e-06
+DNA topoisomerase 3	0.00229042	0.000662562
+hypothetical protein	0.00010804	4.95084e-05
+Aspartyl glutamyl tRNA amidotransferase subunit C	0.00573323	0.000332537
+UniRef50_L7WTC7	0.0125826	0.00105063
+hypothetical protein	0.000174969	6.1228e-05
+Protein YhjJ	0.00330718	0.000329564
+Phage portal protein, HK97 family	1.00819e-05	1.18566e-05
+Glucans biosynthesis protein D	0.00278216	0.000281449
+UniRef50_N6VC63	1.63426e-05	4.5316e-05
+diacylglyceryl transferase	3.36071e-06	6.21578e-06
+Ribosomal RNA small subunit methyltransferase G	3.77289e-05	2.16707e-05
+UniRef50_P75791	0.00280334	0.000512747
+hypothetical protein	4.31702e-06	3.80979e-06
+UniRef50_Q3J6L2	0.0119169	0.00172409
+Bacteriocin production protein, putative	0.00592181	0.00128377
+UniRef50_B7RN53	0.000191992	1.54938e-05
+Holliday junction ATP dependent DNA helicase RuvB	1.05658e-05	4.98074e-06
+Nicotinate phosphoribosyltransferase	0.0159018	0.00383116
+UniRef50_M5VMV2	8.97207e-06	9.65449e-06
+2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.0001585	5.36829e-06
+Expressed protein 	9.28069e-05	3.82632e-05
+hypothetical protein	4.11199e-06	5.14005e-05
+Siroheme synthase	9.58928e-06	5.77687e-06
+Triosephosphate isomerase	6.25023e-06	5.32491e-06
+chemotaxis protein CheY	0.000132957	7.32724e-05
+Sucrose operon repressor	0.0214748	0.00223102
+Amino acid permease	8.98261e-05	0.00301147
+Cytochrome c type biogenesis protein CcmE	0.00160309	0.000223902
+hypothetical protein	1.19139e-05	5.39954e-05
+UniRef50_C6SQA7	0.00352383	0.000123162
+NH dependent NAD(+) synthetase	2.65663e-05	3.87928e-06
+hypothetical protein	2.30801e-05	2.88392e-05
+Tryptophan  tRNA ligase	0.00974762	0.000572662
+hypothetical protein	1.38829e-05	4.61207e-06
+ABC type metal ion transport system, periplasmic component surface antigen	3.64219e-05	9.19515e-06
+UniRef50_F7CCI5	2.77881e-05	3.29384e-06
+Bifunctional dihydrofolate reductase thymidylate synthase	7.07544e-06	2.00971e-06
+UniRef50_F0QJF6	0.000420686	0.00140709
+hypothetical protein	9.29157e-06	7.87849e-06
+UniRef50_B9E8W4	0.0228821	0.00214294
+hypothetical protein	2.22937e-05	2.12176e-05
+hypothetical protein	6.23034e-06	5.38361e-06
+UniRef50_K2JZV8	0.000170014	5.91372e-05
+hypothetical protein	3.23563e-05	1.26056e-05
+Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	0.00208111	0.000172746
+Protoporphyrinogen oxidase	0.000542273	0.0160991
+GTP binding protein TypA BipA homolog	0.000187801	0.00456474
+Putative binding protein dependent transport system protein 	6.37917e-05	0.000136778
+UniRef50_R6FYV1	0.00109649	0.00206384
+YGGT family protein	0.0122616	0.000341387
+helicase UvrD	4.64174e-06	1.30655e-05
+hypothetical protein, partial	3.24214e-05	2.8377e-05
+hypothetical protein SMAC_09879, partial	3.0311e-05	2.08804e-05
+Putative ribosomal protein 	0.000696307	0.000619206
+AraC family transcriptional regulator, putative	0.0104298	0.000959275
+hypothetical protein, partial	1.73391e-05	1.45752e-05
+L serine dehydratase, beta subunit	9.64391e-06	0.000131071
+UPF0397 protein LACR_0367	0.0189329	0.00503788
+Flagellum specific ATP synthase	0.00034099	0.000173844
+Acyl CoA thioesterase	0.000256907	0.00371454
+sulfate ABC transporter ATP binding protein	0.000109116	8.64667e-05
+UniRef50_D4HA77	0.000209036	0.0074518
+UniRef50_E6IF75	0.0018471	0.000547469
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	5.31957e-06	7.70053e-06
+COG1620	1.56232e-05	1.34391e-05
+Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000128946	0.000510866
+200 kDa antigen p200, putative	0.000602475	0.000534794
+Galactitol permease IIC component	0.00204895	0.000332029
+Putative lysophospholipase	2.42221e-05	1.07264e-05
+ABC transporter ATP binding protein	0.00401405	0.000314556
+deaminase reductase, partial	4.04494e-05	0.000224208
+Pre mRNA splicing ribonucleoprotein PRP31	0.00196972	0.000120517
+UniRef50_J2X7R8	0.000576046	9.4362e-05
+PREDICTED	5.1836e-06	7.52386e-05
+Stage III sporulation protein AF	0.000168837	0.000750961
+phosphoenolpyruvate synthase	1.77474e-06	0.000284766
+PPE family protein	1.78275e-05	2.73633e-05
+UniRef50_F8KL74	0.00871436	0.00136961
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	2.22529e-05	1.71505e-05
+Glycerophosphodiester phosphodiesterase family protein	0.000978633	0.000311267
+glycine cleavage system potein H	1.88556e-05	1.67691e-05
+Type IV pilus biogenesis stability protein PilW	5.78092e-06	7.93539e-06
+UniRef50_J9NUS4	0.000190239	1.89187e-05
+UniRef50_J9NUS2	3.08081e-05	4.90059e-05
+hypothetical protein	2.0092e-05	0.00319748
+GntR family transcriptional regulator, partial	2.13893e-05	1.90209e-05
+Methyl coenzyme M reductase II subunit alpha	0.00262882	0.000987615
+Transporter	0.00516035	0.0007678
+Trehalose 6 phosphate phosphatase 	0.00774845	0.00208202
+D amino acid dehydrogenase	1.86335e-05	5.62164e-06
+UniRef50_A0A023LC15	0.000613741	0.000488883
+Acyl protein synthetase related protein	0.000188914	0.00074005
+Protein YqjC	0.000611906	0.000231404
+50S ribosomal protein L10	0.0125442	0.000217924
+O acetylhomoserine  lyase, partial	1.57355e-05	7.30549e-06
+UniRef50_Q8CRJ8	0.016309	0.00534726
+BAAT Acyl CoA thioester hydrolase like protein	0.000130953	0.000675093
+UniRef50_UPI00022CA5D6	3.87028e-06	2.94805e-06
+hypothetical protein	4.08709e-06	2.48118e-06
+hypothetical protein	1.94369e-05	1.26362e-05
+Circumsporozoite protein, putative 	6.86602e-05	5.1894e-05
+Catalase HPII	0.00781551	0.00107094
+UniRef50_K7U318	6.02661e-05	0.000164771
+Cysteine  tRNA ligase	5.10524e-06	0.000178956
+ferredoxin	3.82907e-05	3.55941e-05
+Iron ABC transporter permease protein	0.000565996	0.00101105
+PTS mannose transporter subunit IIA	9.01124e-06	1.95459e-05
+UniRef50_A5UKG0	0.00054282	0.000328882
+SNARE associated Golgi protein	0.0102485	0.00332657
+UniRef50_A8LR27	7.30926e-05	0.000284129
+hypothetical protein	4.53214e-05	2.07636e-05
+Conserved protein with a HD domain	0.000140424	0.000408769
+Ribose import ATP binding protein RbsA	0.00272472	0.000594317
+Ferredoxin  NADP reductase	0.0121727	0.0019022
+Os02g0235900 protein 	0.000218625	0.000239574
+Replication initiation and membrane attachment protein	0.00569051	0.00130769
+flagellar biosynthesis protein FliQ	0.000505745	5.42494e-05
+Carbamoyl phosphate synthase large chain, chloroplastic	0.000110066	0.00218528
+peptide ABC transporter permease	2.77946e-05	4.75504e-06
+Malate dehydrogenase	7.72271e-05	1.28472e-05
+Replication initiator RepC	4.2493e-06	7.64179e-06
+Long chain fatty acid  CoA ligase synthetase	0.000162311	0.00236817
+Riboflavin biosynthesis protein RibBA	0.000378938	0.00894001
+hypothetical protein	5.37572e-06	9.27548e-06
+Ribosomal RNA small subunit methyltransferase G	3.42732e-05	1.60599e-05
+hypothetical protein	0.000420948	8.2434e-05
+UniRef50_H0A863	1.22499e-05	2.38465e-05
+Glutaredoxin family protein 	5.87817e-05	8.94152e-05
+Transcriptional regulator, MarR family	0.000269239	0.00109729
+Amino acid acetyltransferase	0.00301517	0.000469626
+NAD dependent dehydrogenase	0.00246614	0.000358192
+ABC transporter substrate binding protein, partial	1.48412e-05	4.02777e-05
+Glycosyl hydrolase, BNR repeat protein	0.000414011	0.000143426
+UniRef50_Q8CQX8	0.00529859	0.00228644
+2Fe 2S ferredoxin	0.00276575	0.00166612
+L fucose operon activator	0.00274171	0.00092979
+hypothetical protein	3.86532e-06	2.97005e-05
+glycine cleavage system protein H	7.18927e-05	1.55299e-05
+UniRef50_K0CDY8	0.000175638	0.000602594
+CobW P47K family protein	4.5665e-06	5.06813e-06
+Marine sediment metagenome DNA, contig	4.13847e-06	1.17767e-05
+UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00096889	0.00132299
+Citrate transporter family protein	0.01404	0.00335001
+UniRef50_R6M017	0.000126135	4.68757e-05
+Competence specific sigma factor ComX	0.0100117	0.00164883
+UniRef50_T9NAD2	0.00334451	0.000319251
+Transport protein	0.000952617	0.000235656
+Phosphoribosyl dephospho CoA transferase	0.000619415	0.0072627
+Mammalian cell entry related domain protein	0.000319075	0.000190021
+AMP dependent synthetase and ligase	0.000152232	0.00777562
+Chorismate synthase	1.16571e-05	4.31835e-05
+UniRef50_F0A5S1	2.04579e-06	0.000998132
+UniRef50_G4LSM0	0.0011884	0.000419692
+Periplasmic [NiFe] hydrogenase small subunit 1	6.11106e-05	8.85488e-06
+Bifunctional protein FolD	1.98842e-05	1.60625e-06
+tRNA  ) methyltransferase	0.00177465	0.00105835
+Protoporphyrinogen oxidase	0.0206554	0.00189953
+Marine sediment metagenome DNA, contig	3.57514e-05	0.000407124
+LysR family transcriptional regulator	0.000137367	0.000324968
+Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2	0.00116812	0.000135832
+alkyl hydroperoxide reductase	1.14408e-05	0.000486811
+dihydrolipoyllysine succinyltransferase	1.10081e-05	6.8075e-06
+ABC transporter ATP binding protein	0.0570538	0.00662905
+Galactitol specific phosphotransferase enzyme IIA component	0.00348109	0.000399044
+Maltose binding periplasmic protein	0.00208679	0.000815501
+hypothetical protein	1.6082e-05	2.68458e-05
+Mg2+ transporter protein, CorA family protein	0.000349867	0.00046816
+DoxX family protein	0.00354685	0.00119672
+Membrane protein	0.000712639	0.000317489
+UniRef50_U3SVR2	0.0053241	0.00118428
+queuine tRNA ribosyltransferase, partial	5.23203e-06	2.72573e-05
+helicase DnaB, partial	7.4416e-06	0.000173421
+Methionyl tRNA formyltransferase	7.32722e-06	7.92569e-06
+Regulatory protein, LuxR	0.000343598	0.000141797
+UniRef50_Q2GUA3	1.16917e-06	1.10802e-06
+hypothetical protein	6.90878e-06	5.87397e-06
+Non canonical purine NTP pyrophosphatase	4.54912e-05	0.000291509
+UniRef50_R1D6J3	2.30859e-05	6.12348e-06
+Sex pilus assembly protein	5.23458e-05	2.53268e-06
+Extracellular solute binding protein family 3	0.00189536	0.00042581
+PREDICTED	3.16525e-06	9.87732e-05
+Putative quercetin 2,3 dioxygenase PA1205	0.000156373	9.68553e-05
+Peptide methionine sulfoxide reductase MsrA	0.0346438	0.00510975
+UniRef50_G2JLT4	1.503e-05	0.00835725
+UniRef50_X6G7G7	4.90385e-05	1.03569e-05
+6 carboxy 5,6,7,8 tetrahydropterin synthase	1.92982e-05	0.00113009
+hypothetical protein	5.99695e-06	6.27171e-06
+Nitrogen regulatory protein	0.000220673	0.00112883
+Phosphoribosylformylglycinamidine synthase 2	1.35937e-05	1.84689e-06
+UniRef50_Q1NB30	0.000164139	2.41036e-05
+Oligopeptide transport system permease protein	0.000334376	0.00389067
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	5.01586e-05	2.66032e-05
+ABC transporter ATP binding protein	0.000165409	0.00220527
+Nickel transport system permease protein NikB	8.14895e-06	1.32593e-05
+Branched chain amino acid ABC transporter, permease protein	0.00710934	0.00245118
+PREDICTED	6.44497e-05	0.00010883
+Membrane protein related to purine degradation	0.000148314	1.53706e-05
+Mg chelatase, subunit ChlI	2.23964e-06	3.11063e-06
+Citrate synthase	2.07361e-05	2.74624e-05
+Ketol acid reductoisomerase	1.98344e-05	1.93924e-05
+Cation transport protein chaC	1.03405e-05	5.50866e-06
+oligo 1,6 glucosidase	3.14488e-06	2.93205e-06
+PREDICTED	2.26991e-05	2.87751e-05
+sodium	1.22051e-05	0.00182496
+chemotaxis protein CheR	8.61876e-05	1.23695e-05
+Alanine racemase	0.00514274	0.00160428
+hypothetical protein	0.00154487	0.000726837
+2,3 diaminopropionate biosynthesis protein SbnB	0.0123979	0.00101678
+hypothetical protein	3.36998e-06	4.90094e-06
+UniRef50_R6AVV6	4.58556e-06	1.86252e-05
+N acetylmuramoyl L alanine amidase	0.00191049	0.000102261
+Peptide methionine sulfoxide reductase MsrA	0.023249	0.000925427
+Cysteine synthase ornithine cyclodeaminase	0.000104626	0.00250894
+UvrB protein	0.0176961	0.00518764
+Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	7.5965e-06	8.45858e-06
+5 nucleotidase ;exopolyphosphatase ;3 nucleotidase	5.42028e-05	0.000140887
+hypothetical protein	9.31065e-06	1.54639e-06
+ABC transporter ATP binding protein	0.000506679	0.00558867
+UniRef50_Q2CFL1	3.92026e-06	3.48617e-06
+Spermidine putrescine binding periplasmic protein	0.0122098	0.00130411
+Argininosuccinate lyase	0.000305468	0.00162784
+Prophage LambdaSa1, pblA protein, internal deletion	0.000108535	0.000105752
+UniRef50_R4WZZ5	0.00726488	0.00119935
+ATP dependent DNA helicase RecQ	1.55836e-05	4.83016e-06
+hypothetical protein	3.34261e-05	0.00013998
+UniRef50_A6QGQ2	0.000156721	5.89494e-05
+hypothetical protein	3.23404e-05	2.6128e-06
+hypothetical protein	0.00141012	0.000106223
+UniRef50_A6V155	0.000492367	0.000121331
+hypothetical protein	5.24264e-06	4.75354e-06
+Endoribonuclease YbeY	0.0105931	0.00102545
+Protein TolR	0.00361339	0.000210269
+UniRef50_J9NZ26	0.000100965	0.000170424
+MULTISPECIES	8.16206e-05	4.87152e-05
+1 deoxy D xylulose 5 phosphate synthase	6.01487e-06	3.75968e-06
+hypothetical protein	0.000534498	7.17902e-05
+hypothetical protein	2.02224e-05	1.8381e-05
+Protein YiiM	0.00355874	0.000572776
+Peptidase, M23 M37 family	0.00208855	0.00020082
+bile acid	0.000226434	7.4304e-05
+PPC, peptidase containing PKD repeats	7.07705e-06	0.000648496
+Phytoene desaturase	6.29848e-05	0.0195157
+Fumarate hydratase class II	4.78103e-06	2.05608e-06
+Probable iron chelatin transport system permease protein jhp_0822	0.000111563	0.000911028
+Transketolase	0.00127671	0.00247623
+UniRef50_Q9HXC0	0.000670142	4.81162e-05
+hypothetical protein	9.06532e-06	0.000332715
+sulfate ABC transporter permease	8.58456e-06	4.81163e-06
+UniRef50_W3MN34	7.26972e-05	0.000732335
+CRISPR associated protein, Cas5h family	0.000286916	3.19927e-05
+UniRef50_Q9RT77	0.000242121	0.00122377
+UniRef50_Q9RT76	0.00302123	0.0201465
+ACT domain containing protein	0.00026089	0.00711286
+Homoserine dehydrogenase	3.59064e-06	3.16921e-05
+Threonine  tRNA ligase	0.0110861	0.00367812
+Glycine betaine L proline ABC transporter, permease protein ProW 1	0.0113537	0.000549725
+Arsenate reductase	0.000361007	0.000112383
+UniRef50_G4LDX4	0.000126245	0.000126411
+Carnitine transport ATP binding protein OpuCA	0.0309627	0.00665296
+Queuine tRNA ribosyltransferase	4.63354e-06	1.62026e-05
+Tyrosine protein kinase ptk	0.000317312	0.0032963
+UniRef50_E5QV38	0.00935718	0.000599432
+S formylglutathione hydrolase	2.5246e-05	1.93688e-05
+Flagellar FliJ protein	0.00125825	0.000621198
+hypothetical protein	4.72342e-06	9.97506e-06
+HAD family hydrolase	7.05243e-05	0.000124205
+GTPase Era	0.0211048	0.0060533
+hypothetical protein, partial	3.76071e-05	2.91099e-05
+Cytochrome bd II oxidase subunit 2	0.000684796	0.000196549
+UniRef50_A0A010ITK8	1.66392e-05	2.11708e-05
+Xanthine dehydrogenase accessory factor	5.99006e-06	2.21387e-05
+RND family efflux transporter MFP subunit	0.000227779	0.000248857
+UniRef50_B9DZY6	0.000252615	0.00251692
+hypothetical protein	5.57755e-06	4.12536e-06
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.0043855	0.00614236
+hypothetical protein	2.78079e-06	0.000191252
+hypothetical protein CONPUDRAFT_85381	7.60576e-06	4.75249e-07
+hypothetical protein	1.00977e-05	1.2025e-05
+Ribonuclease HII	0.000531179	0.000325935
+UniRef50_F9ECL7	6.00772e-05	0.00164277
+UniRef50_A3M1W3	0.000183572	0.0019286
+DEAD DEAH box helicase	2.99383e-06	9.67429e-06
+Fumarate hydratase class II	0.000849141	0.000344765
+Marine sediment metagenome DNA, contig	1.29116e-05	4.22516e-06
+PE PGRS FAMILY PROTEIN like	4.83134e-05	1.10829e-05
+NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	2.92739e-05	1.46452e-05
+Putative L,D transpeptidase in ATP synthase subunits region ORF 5	0.0110589	0.00251315
+hypothetical protein	3.11296e-06	2.80971e-06
+fimbrial protein, partial	6.95727e-06	4.05255e-06
+Threonine  tRNA ligase	0.0113723	0.00219652
+Aminomethyltransferase	3.43739e-05	1.61409e-05
+hypothetical protein	1.6167e-05	0.000105432
+UniRef50_Z2DM67	0.000361997	0.000103285
+Mannose 6 phosphate isomerase	0.0253798	0.00512326
+Putative replication protein A 	0.000697997	0.000128021
+Transcriptional regulator, TrmB	0.00196736	0.000214796
+PP177	0.00036323	9.41138e-05
+hypothetical protein	0.000175828	0.00167014
+GTP pyrophosphokinase	0.000156023	0.0033514
+S adenosylmethionine synthase	7.73631e-06	0.000157706
+hypothetical protein	6.60246e-06	2.24105e-05
+Serine threonine protein phosphatase	3.87751e-06	5.89662e-05
+UniRef50_Q74NK6	0.000112902	0.00101984
+UniRef50_P43319	0.00267612	8.32884e-05
+UniRef50_M8E6M3	4.6257e-05	0.000464585
+Leucyl phenylalanyl tRNA  protein transferase	1.45359e-05	6.03532e-05
+UniRef50_Q57847	0.00259765	0.000240066
+UniRef50_Q745F5	4.39751e-05	5.75913e-05
+hypothetical protein, partial	4.61065e-06	6.80616e-05
+hypothetical protein BC1G_06634	3.95915e-06	1.70797e-05
+UniRef50_G9EQ58	3.6722e-05	8.44844e-05
+Permease	0.00431889	0.00256645
+hypothetical protein, partial	8.81241e-06	7.82225e-06
+Ribose phosphate pyrophosphokinase	3.22266e-05	3.92665e-05
+ABC transporter ATP binding protein	5.41336e-07	2.49507e-06
+ABC transporter substrate binding protein, partial	1.42112e-05	0.000288076
+L aspartate oxidase	0.000287735	0.00167771
+BadF BadG BcrA BcrD ATPase family protein	0.000189072	0.00483321
+macrolide ABC transporter ATP binding protein	5.16338e-06	1.16506e-05
+Protein visC	8.2085e-05	0.00339463
+iron ABC transporter	4.33022e-06	1.42931e-05
+hypothetical protein	9.81492e-06	8.69131e-06
+UniRef50_U3T3A9	3.06887e-05	0.00053075
+lamb YcsF family protein	0.000100067	1.3685e-05
+UniRef50_Q9RWW8	0.000167147	0.0243868
+UniRef50_C6ZBM7	3.65021e-05	2.56035e-05
+Response regulator receiver protein	0.000233175	0.00024152
+Phosphoribosylformylglycinamidine synthase, purS	3.24236e-05	3.87489e-05
+hypothetical protein	5.51801e-06	2.44751e-06
+Predicted protein	1.90218e-05	2.92572e-06
+Large terminase subunit	0.00355514	6.64581e-05
+UniRef50_N8WPF6	0.000223373	0.00481454
+HSP70 class molecular chaperones involved in cell morphogenesis	0.00371724	0.000197305
+DNA polymerase 3 5 exonuclease PolX	0.0173202	0.00372282
+iron sulfur cluster assembly accessory protein	0.000739619	7.0001e-05
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0153583	0.00626107
+UniRef50_K0S5W4	6.54339e-05	6.83256e-05
+Fosmidomycin resistance protein	0.000103924	6.38387e-05
+Inner membrane protein CbrB	0.000996489	0.000268817
+UniRef50_B4G1R8	0.000386098	0.000171673
+Putative ribose galactose methyl galactoside import ATP binding protein	0.000228656	0.00280218
+L cystine ABC transporter substrate binding component	0.00357206	0.00200011
+Membrane associated protein	0.000194231	0.00243706
+UniRef50_U5UTH9	0.000155759	7.23223e-05
+UniRef50_K0S8Y4	6.61196e-05	2.77197e-05
+Transposase	7.9924e-05	1.12517e-05
+DNA primase	2.99443e-06	1.99491e-06
+UniRef50_Q6Z5U8	0.000606535	0.000264462
+Phosphoribosylformylglycinamidine synthase protein	9.78336e-05	2.85309e-05
+hypothetical protein	6.86347e-05	2.78868e-05
+Abortive phage resistance protein	0.00882121	0.00208752
+hypothetical protein	8.21662e-05	1.48956e-05
+UniRef50_A0A024IFX7	4.66714e-05	0.00192268
+O acetylserine dependent cystathionine beta synthase	0.0219643	0.00393838
+N utilization substance protein B homolog	0.000983693	0.00392544
+Cobalamin synthesis protein, P47K	4.84271e-06	5.99104e-06
+Proteophosphoglycan ppg3	6.8241e-05	0.000235762
+Ferric enterobactin transporter binding protein	1.36278e-05	0.000823585
+cytochrome C oxidase	2.55456e-06	1.32001e-05
+UniRef50_B0VKG9	3.22503e-05	5.23547e-05
+Response regulator receiver protein	0.000511318	0.000332564
+UniRef50_M9R1A8	9.45689e-05	3.60249e-05
+rRNA methylase	0.000149577	0.000129935
+DNA polymerase III, beta subunit	0.00628251	0.00157414
+hypothetical protein	0.000183038	3.40846e-05
+Cyclic pyranopterin monophosphate synthase	0.000211219	0.000160764
+YhgE Pip C terminal domain protein	0.0144525	0.0017097
+UniRef50_D8HBY6	0.00883197	0.00040808
+UniRef50_A0A032VR07	0.00849105	0.000408444
+UDP N acetyl D mannosamine transferase	0.00902055	0.00125128
+UniRef50_M2I9S9	0.000502311	0.000360582
+UniRef50_R1D153	0.000851285	2.2497e-05
+Short chain specific acyl CoA dehydrogenase, mitochondrial	1.05759e-05	2.29315e-05
+UniRef50_W4TL26	0.000124109	0.000167037
+Cytidylate kinase	8.21606e-06	0.00248997
+Oxidoreductase short chain dehydrogenase reductase family protein	0.00278047	0.0004877
+Phospho N acetylmuramoyl pentapeptide transferase	6.69372e-06	7.71085e-06
+DNA mismatch repair protein Vsr	9.39823e-06	3.33437e-05
+hypothetical protein	1.27136e-05	5.88959e-06
+DEAD DEAH box helicase	9.66793e-07	1.65987e-05
+deoxyribonucleotide triphosphate pyrophosphatase	5.84028e-06	6.32197e-06
+Penicillin binding protein	0.000126209	0.00220199
+UniRef50_E2X4D1	0.000286106	0.000431729
+UniRef50_Q02IQ8	0.000165573	7.32317e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000361456	0.0032437
+UniRef50_M0SUV4	1.79952e-05	2.5827e-05
+L threonine 3 dehydrogenase	5.02977e-06	2.37263e-05
+Cell division protein ftsA	0.00710209	0.00169164
+hypothetical protein, partial	4.75994e-05	1.45772e-05
+GroESL operon, partial sequence. 	3.97635e-05	0.00013426
+Ribonuclease J	0.000291205	0.00274957
+Marine sediment metagenome DNA, contig	1.45769e-05	2.01123e-05
+Putative osmoprotectant uptake system substrate binding protein OsmF	0.00110547	0.000313642
+Lactoylglutathione lyase	6.48773e-06	8.13883e-06
+DNA binding helix turn helix protein	0.000237108	0.00447375
+hypothetical protein	5.55984e-07	4.52666e-05
+Chaperone protein HscC	0.00196611	0.000383041
+UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00018094	0.00121654
+Glutamate ammonia ligase adenylyltransferase	0.000496279	6.25897e-05
+7 carboxy 7 deazaguanine synthase	0.00105257	0.00327751
+Orotate phosphoribosyltransferase	0.00337398	0.000212469
+YbaR	0.0260683	0.0184558
+Transcriptional regulator, XRE family	0.000363182	0.000765976
+Transposase	1.32641e-05	2.48787e-05
+PF12266 family protein	4.34201e-05	0.000510175
+DNA mismatch repair protein MutL	0.00529839	0.00132862
+UniRef50_M8SYD2	3.50011e-05	4.21813e-05
+Fis family transcriptional regulator	2.14684e-05	1.92679e-05
+Thiamine monphosphate kinase, ThiL	0.00140618	0.000270688
+Predicted protein	1.79299e-05	0.000488119
+Precorrin 2 dehydrogenase	0.0104165	0.00591457
+hypothetical protein, partial	1.2711e-06	2.41223e-06
+UniRef50_J6MTI6	0.0078405	0.000834844
+Putative ribosome biogenesis GTPase RsgA	0.00184057	0.00206651
+hypothetical protein	7.33544e-05	2.31969e-05
+hypothetical protein	3.92263e-06	9.9752e-05
+hypothetical protein	2.18182e-06	3.92001e-06
+Glutamate  putrescine ligase	0.00118791	0.000367452
+UniRef50_L1KHU2	0.00117709	0.000268656
+5 nucleotidase	1.86751e-06	9.45417e-05
+Phosphoribosyl AMP cyclohydrolase	2.15975e-05	1.09912e-05
+NLP P60 family protein	2.7e-05	0.000537213
+Glycine  tRNA ligase	0.000329391	0.00314548
+Urease subunit gamma	0.000203965	0.000141085
+UniRef50_G0DXU0	0.000568029	0.00363813
+hypothetical protein, partial	0.000134591	2.72242e-05
+UniRef50_A0A017HQ29	3.01703e-06	8.74942e-07
+Aldehyde dehydrogenase A	0.00212568	0.000263769
+FeS cluster assembly protein SufB	0.00195685	0.00248274
+acyl CoA dehydrogenase	3.84172e-06	3.48016e-06
+Bis tetraphosphatase PrpE [asymmetrical]	2.93003e-05	0.000403733
+DNA gyrase subunit A	5.01944e-06	6.52824e-06
+chromosomal replication initiation protein, partial	5.56644e-06	1.07848e-05
+Sulfoxide reductase heme binding subunit YedZ	0.00917513	0.000812185
+iron transporter FeoB	6.51176e-06	1.91322e-06
+Ribosomal RNA large subunit methyltransferase E	0.00447185	0.00444896
+hypothetical protein	4.39951e-05	4.44252e-05
+hypothetical protein	1.40287e-05	4.49896e-06
+UniRef50_P45527	0.0113482	0.00186299
+thioredoxin	0.000242486	0.000272098
+Type I ferripyoverdine receptor, FpvB	0.000556559	8.5131e-05
+hypothetical protein	5.30435e-05	1.78428e-05
+Inner membrane protein YedI	0.00385129	0.000766028
+Type III restriction enzyme, res subunit	0.00142356	0.000226219
+nitrate ABC transporter ATP binding protein	3.87472e-05	6.52145e-06
+5 formyltetrahydrofolate cyclo ligase	0.000398282	0.00171986
+transposase IS3 IS911 family protein	3.75293e-05	3.24964e-05
+NADH dehydrogenase, FAD containing subunit	0.00352221	0.000451898
+Glutamate dehydrogenase	7.53515e-07	3.14065e-06
+8 amino 7 oxononanoate synthase	2.97619e-05	2.62202e-05
+Dihydrolipoamide dehydrogenase	0.00200158	0.000168436
+Ribose phosphate pyrophosphokinase 2	0.00530443	0.000704499
+UniRef50_Q9RUT4	8.70384e-05	0.0177028
+UPF0135 protein BH1380	1.3242e-05	5.52517e-06
+Heptaprenylglyceryl phosphate synthase	0.0122969	0.00246004
+UniRef50_I4F0A8	0.000196646	3.93505e-05
+PTS system transporter subunit IIBC	0.000249175	6.56322e-05
+UniRef50_D3V6J7	0.000153265	0.0011876
+UniRef50_A1SKT2	2.87223e-05	4.79729e-05
+methionine aminopeptidase	2.05421e-05	6.44057e-06
+PREDICTED	7.71189e-06	1.96936e-05
+Transmembrane protein	0.000188196	0.000414712
+Asparagine  tRNA ligase	2.69475e-05	0.00301662
+Fructokinase	0.000657334	0.0019926
+HTH type transcriptional regulator AscG	0.00410254	0.000266661
+Putative solute symporter protein	1.69692e-05	2.72263e-05
+hypothetical protein	0.000121129	9.79345e-06
+Putative transcriptional regulator	0.00164419	0.000108567
+UniRef50_UPI00032A2B8F	6.12901e-05	0.000571574
+Predicted DNA binding protein	0.00228075	0.000792536
+BirA bifunctional protein	0.0160665	0.00375351
+UniRef50_Q9RZR4	4.9444e-05	0.0153311
+hypothetical protein	4.73899e-06	5.17505e-06
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO 2	1.13079e-05	5.1618e-06
+UPF0342 protein SpyM51181	0.000620401	3.11161e-05
+TIGR01906 family protein	2.01289e-05	8.73395e-06
+Ribonucleoside diphosphate reductase 1 subunit alpha	0.00225639	0.00041022
+UniRef50_D3QGY3	0.00537831	0.000357621
+dihydrolipoamide dehydrogenase	2.51338e-06	3.06237e-06
+potassium transporter	1.18746e-05	1.23031e-05
+hypothetical protein	0.000703044	0.000629907
+UniRef50_W1UDI4	0.00158376	0.000360582
+Glucosamine 6 phosphate deaminase	0.00701268	0.00494481
+UniRef50_A7HHV0	0.000567553	0.000167294
+Marine sediment metagenome DNA, contig	1.60479e-06	4.27563e-06
+3 oxoacyl [acyl carrier protein] reductase FabG	0.000295638	0.00183798
+Histidine kinase	0.00011552	0.00095807
+NADH quinone oxidoreductase subunit L	0.000179827	0.00516048
+Cytochrome c type protein NapC	0.0150116	0.0024397
+Nucleoside diphosphate kinase	7.94059e-06	7.70047e-06
+amino acid permease	2.95174e-06	1.05288e-05
+S8 S53 family peptidase	0.00021059	0.000703332
+Exodeoxyribonuclease 7 large subunit	0.00043386	0.000920429
+Non ribosomal peptide synthetase 	0.000287224	6.58221e-05
+UniRef50_A6M093	0.000566765	0.000460995
+1 deoxy D xylulose 5 phosphate synthase	0.000251604	0.000953983
+tartrate dehydrogenase	5.98323e-05	2.81219e-05
+Cyanide insensitive terminal oxidase	9.19532e-05	0.00263735
+PREDICTED	6.1658e-06	1.21821e-06
+UniRef50_V4RP20	1.45861e-05	4.29895e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	2.01039e-05	1.13491e-05
+Elongation factor G, chloroplastic 	2.50838e-05	4.79738e-05
+Phosphoenolpyruvate carboxykinase [ATP]	9.15987e-06	6.74652e-05
+Acyl carrier protein	0.000535444	0.000366469
+UniRef50_N9WEN9	1.46066e-05	6.22347e-06
+UniRef50_R1DJF2	5.37488e-05	2.50677e-05
+UniRef50_Q5QU71	1.76913e-05	6.74194e-06
+Potassium transporting ATPase C chain	1.72268e-06	0.000154997
+Lipoprotein, putative	0.00596721	0.00339047
+Elongation factor P hydroxylase	0.00295277	0.000289629
+hypothetical protein	4.88125e-06	2.00145e-05
+Homoserine dehydrogenase	0.000414241	0.000165973
+Transcriptional regulator, TetR family	0.0056977	0.000306403
+UniRef50_I6TVX8	0.00686138	0.00149257
+ribonuclease III	1.10198e-05	6.96646e-06
+Serine phosphatase RsbU, regulator of sigma subunit	0.000148003	5.20784e-05
+Multi sensor hybrid histidine kinase	0.000336129	0.000383007
+UniRef50_F7WGV5	2.38959e-05	0.000100095
+Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.000990874	0.000105878
+Carbonic anhydrase 2	0.0033813	4.19725e-05
+Hydrogenase nickel incorporation protein HypB	0.00937533	0.000948661
+N acetylmannosamine kinase	0.00323709	0.000102846
+PREDICTED	2.74656e-06	1.48153e-06
+MULTISPECIES	1.52825e-05	9.64236e-06
+triosephosphate isomerase	1.25925e-05	1.75668e-05
+2 amino 3 ketobutyrate coenzyme A ligase	7.86037e-05	5.42031e-06
+UniRef50_F1ZDB1	3.06205e-05	8.09375e-06
+CCA adding enzyme	0.0180595	0.00279927
+Membrane lipoprotein	0.000201585	2.56066e-05
+UniRef50_M9VIA3	0.000127803	0.00461508
+KHG KDPG aldolase	0.00329747	0.000186856
+Outer membrane protein P1	0.000126181	0.00148967
+hypothetical protein	8.26349e-06	0.000163582
+Putative aminopeptidase YhfE	0.00764578	0.00300689
+UniRef50_D8TJY5	1.06854e-05	3.79698e-06
+PREDICTED	5.15135e-05	9.43946e-05
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	1.53928e-05	0.000181483
+tRNA  ) methyltransferase	0.000228427	0.00430288
+hypothetical protein	4.0331e-06	0.000312914
+hypothetical protein	1.62372e-05	2.0505e-05
+hypothetical protein	1.22497e-05	8.08704e-06
+UniRef50_A0A035VZY3	0.000521698	0.000155628
+3 oxoacyl [acyl carrier protein] synthase 3	0.000108854	1.79077e-05
+hypothetical protein	4.76424e-05	2.97176e-06
+GntR domain protein	0.00235199	0.00053942
+UniRef50_R7PTP8	0.00177588	0.000125749
+Lactoylglutathione lyase	0.000121372	0.0013941
+UniRef50_Q0FYC5	7.36896e-05	0.000172455
+hypothetical protein	5.20508e-06	1.73517e-05
+Isopentenyl diphosphate Delta isomerase	0.00990404	0.0032487
+UniRef50_A3PRG0	0.00074598	0.000499279
+Voltage gated ClC type chloride channel ClcB	0.000826356	0.00040987
+GTP binding protein TypA BipA homolog	0.0201898	0.00351034
+Pyruvate	0.00229302	0.000467144
+ATP dependent zinc metalloprotease FtsH	0.00061854	0.00185484
+NADH quinone oxidoreductase subunit B	2.42245e-05	9.60715e-05
+phosphoglyceromutase	1.47618e-05	8.3982e-06
+Marine sediment metagenome DNA, contig	6.13357e-06	3.85093e-06
+CoB  CoM heterodisulfide reductase iron sulfur subunit C	0.00180719	8.77662e-05
+UniRef50_K2AN26	1.54504e-05	1.63096e-05
+UniRef50_I4GV48	2.2116e-06	1.69065e-06
+UniRef50_F0RC69	1.78697e-06	1.2477e-05
+Sodium hydrogen exchanger family protein	0.0187778	0.00371449
+Glycerol 1 phosphate dehydrogenase (+))	0.00059092	0.000343655
+Holliday junction ATP dependent DNA helicase RuvB	1.38661e-05	4.79714e-06
+Plasmid partitioning protein RepA	0.000297162	5.38384e-05
+hypothetical protein	4.61127e-06	5.45163e-06
+Polyribonucleotide nucleotidyltransferase	0.00046993	0.00165579
+Ribonuclease PH	6.82658e-06	1.07265e-05
+UniRef50_U5UJE9	0.0161015	0.00197429
+Signal transduction histidine kinase, LytS	0.000187989	0.000369868
+Formamidopyrimidine DNA glycosylase	5.62199e-06	0.000220913
+Cold shock DEAD box protein A	7.94121e-06	5.77145e-06
+1 deoxy D xylulose 5 phosphate synthase	2.48728e-06	4.90331e-05
+UniRef50_I0KD42	7.70229e-05	1.42298e-05
+UniRef50_Y3FJT1	0.00375918	0.000152178
+UniRef50_V4VCN9	0.000147179	1.65827e-06
+Glutamate 1 semialdehyde 2,1 aminomutase	6.3522e-06	1.8509e-05
+Cyclic di GMP binding protein	0.00488518	0.000722338
+Type I restriction modification DNA specificity domain protein	0.000353923	0.0018004
+Cyclic AMP receptor like protein	0.000528766	0.000218455
+Bacteriocin operon protein ScnE homolog	0.00459136	0.000352794
+UniRef50_Q1Q2Q1	1.99337e-05	1.55418e-05
+1 deoxy D xylulose 5 phosphate reductoisomerase	0.000397595	0.00332003
+hypothetical protein	1.35483e-05	1.54256e-05
+Anti sigma factor	2.55901e-05	0.000712477
+UniRef50_B9E8P7	0.0104834	0.00184126
+hypothetical protein	1.94067e-06	2.22209e-06
+Putative conjugative transfer factor, TraB	0.00522818	0.000701908
+UniRef50_A3JQQ6	8.06974e-06	2.89615e-06
+UniRef50_B1JLB8	0.00115306	0.000802351
+UniRef50_A1B1W2	0.000275248	2.08841e-05
+UniRef50_P64543	0.000738633	0.000431658
+KAP P loop domain protein	8.16589e-06	0.000662658
+Quinolone resistance protein	0.000722051	0.000764525
+UniRef50_A0A058ZI44	4.89426e-05	2.73311e-05
+6,7 dimethyl 8 ribityllumazine synthase	1.60752e-05	1.43329e-05
+UniRef50_E6MX89	0.000667721	0.0209077
+Alanine racemase	1.15232e-05	0.00111444
+Elongation factor G 1	0.000230055	0.00687167
+UniRef50_E7IEY2	0.000123405	1.35481e-05
+Phosphoglycerate mutase family protein	0.000708523	0.00478452
+UniRef50_A5IPM4	0.0143172	0.00282621
+hypothetical protein	8.38632e-05	1.16195e-05
+hypothetical protein	4.87061e-06	3.93665e-06
+Beta galactosidase small chain family protein	0.00188209	0.000171524
+ABC transporter, permease ATP binding protein	5.38928e-06	5.89448e-06
+Phosphoglycerate kinase	2.32636e-05	1.34408e-05
+Leucine responsive transcriptional regulator protein, AsnC family	0.0166123	0.000906607
+Imidazole glycerol phosphate synthase subunit HisF	0.0256942	0.0016357
+Glycine  tRNA ligase alpha subunit	0.0110328	0.00746071
+50S ribosomal protein L17	9.98248e-06	3.65338e-05
+PREDICTED	1.5887e-05	0.000175115
+Orotate phosphoribosyltransferase	9.91586e-05	2.99963e-05
+Zinc type alcohol dehydrogenase like protein SERP1785	0.0209266	0.00382498
+Forkhead associated protein	0.000685231	7.39579e-05
+hypothetical protein	0.000345506	7.41289e-05
+Non specific ribonucleoside hydrolase RihC	0.00279532	0.000206402
+Probable oxalyl CoA decarboxylase	0.00190371	0.000404323
+HTH type transcriptional regulator BetI	0.0106531	0.000705947
+PglB	8.27578e-05	0.0011789
+UniRef50_A0A023KRT9	0.00208405	0.000180654
+PE PGRS family protein PE_PGRS54	4.47243e-07	1.08464e-06
+hypothetical protein	4.13855e-06	3.84124e-06
+UniRef50_UPI0003C15BBB	7.8842e-06	1.37092e-06
+Amino acid permease associated region	0.000385521	0.00067945
+hypothetical protein	2.04436e-05	2.76436e-05
+Uroporphyrinogen III synthase	0.00658859	0.000575127
+Bll7176 protein	0.00684015	0.00113768
+UniRef50_Q6F885	0.000262929	0.00328178
+tRNA threonylcarbamoyl adenosine modification protein YeaZ	0.0214223	0.00433636
+Marine sediment metagenome DNA, contig	3.56518e-05	1.84287e-05
+UniRef50_Q5HL89	0.00844872	0.0017908
+Branched chain amino acid ABC transporter ATP binding protein	0.00889215	0.00139328
+Acetate kinase	0.000854362	0.00231176
+TonB dependent siderophore receptor	0.00972057	0.00102254
+hypothetical protein	8.76387e-06	1.13609e-05
+UniRef50_B0KMS2	9.30932e-06	4.20119e-05
+hypothetical protein	0.000412336	5.15546e-05
+Marine sediment metagenome DNA, contig	0.000398273	0.000173639
+branched chain amino acid ABC transporter, ATP binding protein, putative, partial	0.000153913	2.9367e-05
+Phosphate ABC transporter membrane protein 2, PhoT family	0.00320294	0.000223024
+Adhesin like protein	0.0040147	0.000572846
+Anchored repeat type ABC transporter, ATP binding subunit	0.000708249	0.00108934
+PREDICTED	0.000893453	0.000256611
+hypothetical protein	6.26242e-06	1.08133e-06
+ABC transporter ATP binding protein	0.000331654	0.00283334
+MerR family transcriptional regulator	0.000159673	1.43924e-05
+GTP cyclohydrolase 1	0.00606712	0.00222854
+hypothetical protein	0.000385142	2.99706e-05
+PyrE like protein	0.00326203	0.000682416
+UniRef50_F2AIM9	0.00218454	0.000653946
+N acetyltransferase, GNAT family	0.00243948	0.000527785
+Gamma glutamyltransferase	0.000132525	0.00271195
+Trans aconitate 2 methyltransferase	0.000375575	0.000475772
+GntR family transcriptional regulator	4.4699e-05	6.18533e-05
+UniRef50_R4K9K7	0.00023913	0.000783045
+UniRef50_B7A6L8	3.93234e-05	0.000354592
+Argininosuccinate lyase	0.00263628	0.00070023
+UniRef50_B0VLA1	0.00015309	0.00299188
+Trans feruloyl CoA synthase	6.33404e-05	0.00410332
+hypothetical protein	6.71332e-06	1.28691e-05
+UniRef50_K5YBM6	5.35665e-05	3.55298e-05
+UniRef50_R5ZXT3	6.99092e-06	6.4683e-06
+hypothetical protein	4.44255e-06	1.41865e-05
+Adhesin like protein	0.00197607	0.000366409
+UniRef50_G7M5R9	0.000408491	0.000644566
+Predicted acyltransferase	0.000249295	0.00171019
+S adenosylmethionine decarboxylase proenzyme	0.00363126	0.00284789
+Acetolactate synthase large subunit	1.2731e-05	1.89732e-05
+Sensor histidine kinase	0.000309683	0.000560294
+UniRef50_C2Z7L9	5.54852e-05	0.000374634
+UniRef50_E8SFE6	0.0069594	0.00180655
+UniRef50_M4R5V1	0.000304583	0.00192078
+DNA gyrase subunit B	5.43001e-06	8.8907e-06
+UniRef50_Q8FCZ8	0.00115932	0.000353484
+UniRef50_Q8FIB4	0.00287924	0.000335132
+Enterobactin synthase	6.81324e-05	7.01551e-05
+UniRef50_A9GRJ8	1.08649e-05	0.000317411
+Putative GTP cyclohydrolase 1 type 2	8.28343e-06	0.000111812
+hypothetical protein	3.47307e-05	2.96988e-05
+Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.000779941	0.000250049
+UniRef50_UPI000350BA5C	4.72434e-06	3.6824e-06
+Phosphate starvation inducible protein	0.00724764	0.00176488
+UniRef50_P77503	0.00309797	0.00250355
+Cation efflux system protein CusA	0.000375492	6.25868e-05
+Glutathione S transferase domain protein	0.00199205	0.000187834
+DNA binding protein	0.000144437	0.000563817
+UniRef50_Q9CJR2	0.000106975	0.000715595
+UniRef50_P77509	0.000484206	0.00029163
+UniRef50_B9KPE8	0.00899871	0.000291313
+UniRef50_J9P5H2	4.32043e-05	6.95468e-05
+Urease subunit beta	0.00136954	0.000293415
+ATP synthase gamma chain	0.00692533	0.000380463
+hypothetical protein	4.63848e-05	3.91803e-05
+PTS fructose transporter subunit IIBC	4.54547e-06	0.00019168
+30S ribosomal protein S3	0.00210843	0.000617324
+Lipoyltransferase and lipoate protein ligase	0.00511424	0.000907496
+hypothetical protein	1.22467e-06	1.48243e-06
+UniRef50_M1BG02	7.78874e-07	8.61737e-06
+ATP dependent Clp protease proteolytic subunit	7.70287e-06	8.14253e-05
+PREDICTED	6.9807e-05	8.82072e-06
+1 deoxy D xylulose 5 phosphate reductoisomerase	0.000242305	0.00273356
+hypothetical protein FOMMEDRAFT_83654	8.26088e-05	0.000174172
+Aromatic amino acid transporter	0.00156611	0.000107527
+Segregation and condensation protein A	0.00286745	0.00135593
+FtsQ	2.05967e-05	1.36794e-05
+hypothetical protein	1.31622e-05	8.13617e-06
+Imidazole glycerol phosphate synthase subunit HisF	0.00608598	0.00171452
+molybdopterin molybdochelatase	7.06376e-06	8.09659e-06
+UniRef50_A9W3A9	5.02477e-05	6.2324e-06
+Integrase core domain protein	0.00268725	0.000916172
+UDP glucose 6 dehydrogenase	0.000542912	0.000667268
+Ribosomal RNA small subunit methyltransferase I	0.000361574	0.00059211
+allantoinase, partial	5.76236e-06	6.99243e-06
+UniRef50_Q0FVS1	3.30564e-05	7.96523e-06
+Cation transport protein	0.000666798	0.00178336
+UniRef50_F4BLG0	7.19868e-06	1.52537e-05
+6 phospho alpha glucosidase	0.000546879	0.00148983
+UniRef50_X1Y8J9	6.23462e-06	7.08026e-06
+Uridine kinase	0.0201026	0.00817095
+GTA host specificity protein	7.50387e-06	4.02287e-06
+hypothetical protein, partial	7.16184e-05	2.06917e-06
+Probable low affinity inorganic phosphate transporter	0.0236379	0.00368522
+UniRef50_R0ZXH9	2.78565e-05	4.7599e-05
+3 sulfolactaldehyde reductase	0.00373986	0.000744453
+tRNA dimethylallyltransferase	0.00394293	0.000486152
+Glycoside hydrolase, family 16	0.0015296	0.000189021
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000223466	0.00232692
+hypothetical protein	4.35325e-05	8.77883e-06
+UniRef50_A0A033NL01	9.21533e-05	9.10284e-06
+UPF0272 protein SERP0253	0.0108453	0.00152482
+UniRef50_Q5HNA8	0.00784114	0.000935864
+UniRef50_R4REY2	8.34457e-05	0.000105311
+Methyl accepting chemotaxis sensory transducer	0.000192216	0.00069887
+Branched chain amino acid transaminase	0.00701306	0.00117526
+Glutathione transport system permease protein GsiD	0.00175822	0.000118294
+UniRef50_I4F571	0.000307571	7.29989e-05
+UniRef50_G7M5T5	0.000454194	0.000283993
+Outer membrane protein assembly factor BamC	0.00183534	0.000139852
+3 hydroxyacyl CoA dehydrogenase	1.1236e-05	1.3662e-05
+hypothetical protein	9.33399e-05	2.83164e-05
+Phage related protein  family protein	0.000313843	0.00397118
+UniRef50_Q2W276	0.000118322	5.59887e-05
+Elongation factor G, domain IV	0.000689353	0.000328492
+MarR family transcriptional regulator	1.34047e-05	5.93267e-05
+transposase	0.000168159	8.6193e-05
+Inner membrane protein YjiY	0.00268465	0.000848338
+mannitol ABC transporter permease	0.000345637	9.0441e-05
+hypothetical protein	1.02319e-05	2.72968e-05
+PF06738 domain protein	5.42015e-05	2.38684e-05
+Rhodanese like domain protein	0.00267568	0.000558309
+UniRef50_A7MGP9	0.000267102	0.000348003
+50S ribosomal protein L1	3.04947e-05	0.000153046
+Probable hypoxanthine oxidase XdhD	0.00218889	0.000407683
+PREDICTED	1.25553e-05	6.56903e-05
+UniRef50_B9T9T8	0.000178682	2.44283e-05
+UniRef50_P76369	0.00248069	0.000151664
+UniRef50_A0A023B4Y6	1.28687e-05	8.40776e-06
+Dipeptide ABC transporter, periplasmic dipeptide binding protein	0.0013117	0.000376238
+30S ribosomal protein S7	0.0491774	0.0282469
+ABC type Fe3+ hydroxamate transport system, periplasmic component	0.000217057	0.000923389
+hypothetical protein	1.85195e-05	4.25883e-06
+Glutamine transport ATP binding protein GlnQ	0.00680683	0.00140182
+Alcohol dehydrogenase, zinc containing protein	0.000897009	9.07835e-05
+UniRef50_Z4CKX6	0.000212437	3.11647e-05
+Protein CBG21728	0.000335806	0.000206361
+PREDICTED	2.15998e-05	5.38585e-06
+dTDP 4 amino 4,6 dideoxygalactose transaminase	0.00249849	0.00023538
+RNA binding protein	0.00187605	0.000318374
+PREDICTED	4.56115e-05	3.51222e-05
+UniRef50_UPI00027F4AD8	0.000500518	0.000363349
+UniRef50_N1M8P2	0.000518455	0.000151946
+Protein RGD1566084	1.72273e-05	4.64578e-06
+Methionine import ATP binding protein MetN 2	0.000195792	4.48201e-06
+hypothetical protein	3.5681e-05	3.19364e-05
+UniRef50_C0DRQ8	7.1016e-05	1.74077e-05
+ribonuclease E	7.02448e-06	1.63821e-06
+Protein translocase subunit SecA 2	0.022875	0.00276334
+UniRef50_D5ALK5	0.00136854	0.000285783
+HTH type transcriptional regulator AdiY	0.00583874	0.00151149
+alpha amylase	2.91595e-06	2.29797e-06
+hypothetical protein	9.56351e-06	3.54155e-05
+UPF0324 membrane protein CT0845	0.00026805	0.000745433
+Phosphotransferase enzyme family protein	0.000299334	0.00237951
+hypothetical protein	1.05052e-05	3.93328e-05
+UniRef50_A0A059DM35	1.20324e-05	3.59647e-05
+DNA translocase FtsK	0.000197783	0.00294298
+DNA directed RNA polymerase subunit beta	0.000192156	7.93592e-05
+UniRef50_UPI0003C10113	2.13757e-05	2.3144e-05
+UniRef50_W7WPQ3	0.00109672	0.0014859
+Ketol acid reductoisomerase	0.00234266	0.000619523
+UniRef50_J4SMJ9	9.02969e-05	3.09268e-05
+Hemin import ATP binding protein HmuV	5.60677e-06	2.10916e-05
+Probable acyl CoA dehydrogenase	0.000159507	0.000236608
+Phosphatase NudJ	0.00447862	0.000606061
+Efem EfeO family lipoprotein	0.0106709	0.00138804
+Putative outer membrane lipoprotein	1.0245e-05	3.58566e-06
+CpxR	1.23539e-05	1.48446e-05
+hypothetical protein	3.2385e-06	0.000133072
+PTS system, galactitol specific IIC component	0.00154327	0.000196897
+Putative phosphoenolpyruvate synthase regulatory protein	0.000364201	0.0136822
+phospholipase C, partial	4.41067e-06	7.58619e-06
+Nicotinate phosphoribosyltransferase	2.77883e-06	3.84363e-06
+Transposase IS66	2.50872e-06	2.25476e-06
+Transposase	4.57788e-05	0.00136045
+Tryptophan  tRNA ligase	0.00214982	0.000169223
+UniRef50_A5UJH1	0.0023739	0.000371544
+hypothetical protein	2.84295e-05	0.000105312
+Replication initiation protein 	0.000218823	8.38488e-05
+Secretory antigen SsaA	0.0108374	0.000292736
+Luciferase like monooxygenase	0.0190383	0.00309192
+Putative phosphotransferase ydiA domain protein	0.00116051	0.000221691
+PREDICTED	0.000178221	0.000172905
+hypothetical protein, partial	3.60913e-05	3.07615e-05
+Methyl coenzyme M reductase subunit alpha	0.00416648	0.000124645
+Adenine phosphoribosyltransferase	0.00019014	0.0065697
+MULTISPECIES	8.18341e-05	4.35502e-05
+hypothetical protein, partial	1.46331e-05	0.000144339
+UniRef50_E6M7L3	0.000465275	6.29922e-05
+Dihydroorotate dehydrogenase 	5.8841e-06	4.3055e-06
+UniRef50_A0A058Z181	3.4751e-07	4.26934e-06
+MULTISPECIES	0.000108383	5.78317e-05
+Nitrite extrusion protein	0.000183612	0.000257226
+3D  trihydroxycyclohexane 1,2 dione hydrolase	7.03586e-05	0.00284876
+Nickel import ATP binding protein NikE	0.00154119	0.000174002
+phage tail protein	1.94044e-05	1.71661e-05
+Transcriptional regulator	0.00476915	0.00112233
+ATPase, ParA type	0.0175142	0.00232152
+Putative membrane protein	2.92195e-05	0.000158689
+Lipoprotein signal peptidase	1.00769e-05	1.45537e-05
+40 residue YVTN family beta propeller repeat protein	9.62664e-05	5.75865e-06
+Lipoprotein signal peptidase	0.000393624	0.00243099
+CoA disulfide reductase	4.09593e-05	0.000647386
+Fe S oxidoreductase	4.90037e-06	5.95826e-06
+OmpA MotB domain protein	0.00242144	0.000947967
+UniRef50_F2AJ88	0.00035857	7.90955e-05
+dihydroxy acid dehydratase	4.16709e-05	1.57367e-05
+Triphosphoribosyl dephospho CoA protein	0.00321542	0.000799126
+UniRef50_E6CES2	1.93324e-06	0.00329251
+UniRef50_U3P882	0.000101882	0.00290563
+Short chain dehydrogenase reductase SDR	0.000275352	0.00321246
+Fe S metabolism associated family protein	0.000184915	1.33219e-05
+hypothetical protein	0.000192982	2.29287e-05
+PREDICTED	1.23958e-05	3.3243e-05
+hypothetical protein	2.64871e-06	1.31584e-05
+iron ABC transporter substrate binding protein	2.97988e-05	1.82728e-05
+UniRef50_I1B3N6	0.000972673	0.000238965
+Nucleoside diphosphate kinase	1.3919e-05	9.08649e-06
+Transcription elongation factor Spt5	0.000215276	0.000382878
+macrolide ABC transporter ATP binding protein	3.66428e-06	0.000314276
+Dihydrolipoamide acetyl transferase, E2 component, putative	0.00485857	0.00109035
+UniRef50_R7KL80	0.000431694	0.00223542
+Anti sigma E factor RseA	0.00242538	0.000695578
+6 pyruvoyl tetrahydropterin synthase	8.77749e-05	0.000111533
+DNA gyrase modulator	0.00213709	0.000369054
+Uptake hydrogenase large subunit	0.00897818	0.00107787
+UniRef50_S4MZL0	0.000127792	7.6867e-05
+UPF0324 membrane protein SA0329	0.0193624	0.0051521
+hypothetical protein	2.0044e-05	0.000101413
+UniRef50_R7PUY3	0.00213452	0.000493032
+Glutamate pyruvate aminotransferase AlaA	0.00258632	0.000543335
+Flagellar hook protein FlgE	0.00070319	0.000153459
+UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000785479	0.00414007
+UniRef50_R0XQP3	1.49601e-05	1.35924e-05
+UniRef50_A8IEX2	2.06631e-05	4.69394e-05
+Putative two component membrane permease complex subunit SMU_746c	0.00662045	0.000924724
+Nitrate reductase, large subunit	8.86493e-05	0.00374772
+Riboflavin biosynthesis protein RibBA	2.56551e-05	4.30081e-05
+tRNA 2 selenouridine synthase	2.71435e-05	1.15803e-05
+UniRef50_K0HTN3	0.000284826	0.00322727
+Geranyltranstransferase	0.000741371	0.000219903
+hypothetical protein	1.58125e-05	4.20823e-06
+ribonuclease PH	2.42705e-05	3.39016e-06
+hypothetical protein, partial	3.14585e-05	8.05851e-05
+ABC transporter arginine binding protein 1	0.00362031	0.000240507
+Fatty acid binding protein 	0.000163583	7.97269e-05
+CreA family protein	9.05961e-06	8.67946e-06
+UniRef50_B9KJQ4	0.00324965	0.000207564
+hypothetical protein	1.74463e-05	4.85209e-06
+PREDICTED	4.36094e-06	3.01503e-06
+Sulfofructosephosphate aldolase	0.00336142	0.000583162
+acyl CoA dehydrogenase domain containing protein	4.59103e-06	5.7905e-06
+UniRef50_B0V590	0.00045531	0.00382269
+UniRef50_W0W629	0.000301698	0.000237811
+Thioredoxin like protein YdbP	0.00265682	0.000645934
+XkdX family protein	0.000691538	0.000718279
+GTPase Era	0.000305135	0.00348611
+UniRef50_B9KJN1	0.000282896	0.00014983
+Glutamate synthase, NADH NADPH, small subunit	0.0244857	0.00445004
+phosphoribosylaminoimidazolecarboxamide formyltransferase	2.62644e-06	1.60311e-05
+30S ribosomal protein S2	1.82996e-05	1.37354e-05
+hypothetical protein	0.00013364	1.88359e-05
+UniRef50_A3M5J5	0.000406128	0.00398724
+UniRef50_A0A058ZCQ6	9.30978e-05	4.13946e-05
+UniRef50_A0NWH9	0.000764696	0.000324894
+Transcriptional regulator	0.000465252	0.0006566
+UniRef50_H5YDF6	7.69592e-05	6.10834e-05
+hypothetical protein	3.78158e-05	5.14765e-05
+aldehyde dehydrogenase	3.68651e-05	9.83849e-06
+UniRef50_C5Q4V1	0.00757917	0.000586829
+hypothetical protein	2.55362e-05	6.83744e-06
+UniRef50_F0JCL8	0.000121831	6.73901e-06
+RNA binding protein, putative	0.00072004	0.000193563
+Thiamine import ATP binding protein ThiQ	0.00238175	0.00032044
+6 pyruvoyl tetrahydropterin synthase	2.70728e-05	7.28304e-05
+Magnesium chelatase 38 kDa subunit	0.00142755	0.000199827
+ATG13 multi domain protein	0.000131927	9.83302e-06
+UniRef50_L7WZ17	0.00626901	0.00226221
+UniRef50_H6RCQ6	3.32289e-05	2.276e-05
+PREDICTED	1.07921e-05	0.000603678
+excinuclease ABC subunit A	1.00154e-06	5.94265e-06
+Primosomal protein DnaI	0.011218	0.00182
+AraC family transcriptional regulator	0.000444362	6.59296e-05
+Major ampullate silk protein 1 	6.68408e-05	1.47488e-05
+hypothetical protein	2.6121e-05	6.56649e-05
+TetR family transcriptional regulator	2.46547e-05	4.02288e-05
+Adhesin like protein	0.00374088	0.000218838
+Dehydrosqualene synthase	0.011096	0.00159051
+Putative UTP  glucose 1 phosphate uridylyltransferase	0.000176216	5.15736e-05
+UniRef50_U7IYF3	0.000392858	0.000532867
+Marine sediment metagenome DNA, contig	0.000434297	0.000109124
+hypothetical protein	5.2811e-06	2.07449e-06
+hypothetical protein	1.76748e-05	7.56851e-05
+Superoxide dismutase [Mn]	9.59325e-06	1.73918e-05
+High affinity heme uptake system protein IsdE	0.00842928	0.000649354
+UniRef50_A0A059ITV9	2.91069e-05	9.06159e-05
+Methyl coenzyme M reductase system, component A2 homolog	0.00218123	0.000421034
+glyoxylate reductase	1.2486e-05	4.66348e-06
+FAD dependent oxidoreductase, partial	3.65018e-05	1.0309e-05
+Lipoprotein, putative	2.95927e-05	3.36562e-05
+UniRef50_L7TP46	5.06018e-05	2.13321e-05
+hypothetical protein	3.58666e-06	0.000380762
+hypothetical protein	5.5253e-06	1.00062e-06
+UniRef50_X1XR73	7.3056e-06	1.72359e-06
+hypothetical protein, partial	2.70014e-05	1.1207e-06
+UniRef50_W1MW06	6.76088e-05	3.75875e-05
+UniRef50_E8SHT5	7.45702e-05	5.0326e-05
+UniRef50_W0A6S5	2.20507e-05	7.62713e-06
+Leucine  tRNA ligase	0.000426733	0.000507222
+Serine cycle enzyme, putative	0.000157266	0.0184624
+transcriptional regulator	0.00101076	0.000188782
+Nitroreductase family protein	0.00703397	0.00116963
+ABC transport protein permease component	0.00439448	0.000339821
+Phosphopantetheine adenylyltransferase	0.00202409	0.00571959
+UniRef50_R5TNC8	0.000699282	0.00052755
+hypothetical protein	3.31898e-06	9.02842e-06
+UniRef50_C8S4K0	2.59784e-05	1.83947e-05
+Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial	2.24443e-06	4.19477e-06
+hypothetical protein, partial	3.98857e-05	1.84409e-05
+Ornithine cyclodeaminase domain protein	0.000715424	0.000156538
+hypothetical protein	0.000720717	0.00014095
+50S ribosomal protein L6, partial	0.000204742	2.03522e-05
+Protein CreA	1.88656e-05	8.41153e-06
+UniRef50_F7XFL7	0.00312962	0.000256514
+Thymidine kinase	1.46206e-05	6.46505e-06
+Cytochrome c type biogenesis protein CcmB	0.000467852	0.000730574
+PREDICTED	9.03082e-05	2.16103e-05
+Methionine synthase	1.56328e-05	1.85078e-05
+Bifunctional protein PyrR	3.74448e-05	4.69515e-05
+3 isopropylmalate dehydrogenase	3.62042e-05	0.00190339
+50S ribosomal protein L22, partial	5.44905e-05	1.00188e-05
+PE PGRS family protein PE_PGRS6 	8.83132e-06	4.49765e-05
+UPF0114 protein YqhA	0.00102482	0.000364609
+hypothetical protein	1.41566e-05	1.54531e-06
+hypothetical protein	4.81517e-06	2.81559e-06
+spore coat protein	6.37984e-05	6.0175e-06
+Topology modulation protein	8.75494e-06	4.93161e-05
+dehydrogenase	2.97086e-05	1.32619e-05
+UniRef50_R9VB07	0.000428851	0.000183366
+PREDICTED	5.14247e-05	9.05063e-05
+Dipeptide transport system permease protein DppC	1.37372e-05	1.24772e-05
+hypothetical protein	1.23369e-05	1.64802e-05
+luciferase	4.27898e-05	1.34299e-05
+UvrD REP helicase	0.000305785	0.00025594
+Evolved beta galactosidase subunit alpha	0.000498335	6.8808e-05
+Arylamine N acetyltransferase	0.000543291	0.000503625
+UniRef50_E8U3M5	0.000130498	0.00113338
+DeoR family transcriptional regulator	0.000339918	0.000469424
+Starvation sensing protein RspB	0.000820263	0.000121331
+UniRef50_A4XE82	0.000199667	4.13748e-05
+UniRef50_A6DYV9	0.000405412	3.11246e-05
+UniRef50_W3E224	0.000420702	0.00604148
+Catalase	1.64619e-05	2.24396e-05
+ABC transporter	4.82361e-06	5.01922e-06
+Histidinol phosphate aminotransferase	0.00420362	0.000238211
+L seryl tRNA selenium transferase	0.00210826	0.000413304
+Chaperone, putative	4.26759e-06	2.80925e-06
+Glutamate 5 kinase	8.91486e-06	6.52889e-06
+DNA gyrase subunit A	1.87564e-06	1.30096e-06
+oxidoreductase	5.85481e-05	8.29728e-05
+hypothetical protein	4.26444e-06	6.14259e-06
+resolvase domain containing protein	6.7647e-05	2.30081e-05
+Protein CobW	0.00102269	8.11065e-05
+3 oxoadipate enol lactonase	2.8965e-06	1.5286e-05
+Site specific DNA methylase	8.49155e-05	0.00312383
+UniRef50_A1U4W5	4.73394e-06	8.25048e-06
+Penicillin binding protein 1C	0.00161072	0.000160937
+UniRef50_L7WU63	0.0103786	0.00342132
+Di  tripeptide transporter	0.000142048	0.00262805
+flagellin FliC	5.46709e-06	1.39236e-06
+Transcriptional regulator, LacI family	2.52346e-06	4.92155e-06
+Ribulose bisphosphate carboxylase small chain	0.000498257	3.82925e-05
+PREDICTED	0.000107954	4.72552e-05
+Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.00959048	0.00124833
+Arsenite resistance protein ArsB	0.000199513	0.000590125
+UniRef50_U6N0Z9	1.61483e-05	7.12397e-06
+UniRef50_A0A059II46	0.000109406	2.05015e-05
+UniRef50_K0K2V8	1.4625e-05	0.000329844
+Biphenyl 2,3 diol 1,2 dioxygenase protein	0.000676264	0.000484241
+DNA directed RNA polymerase subunit omega	0.0105137	0.000255797
+Transposase	0.000102363	1.95167e-05
+UniRef50_P37682	0.00152348	0.000780238
+Phospho 2 dehydro 3 deoxyheptonate aldolase	9.86946e-05	0.00349146
+hypothetical protein	6.41422e-05	4.4253e-05
+UniRef50_A5UP62	0.00355139	0.000103918
+UniRef50_A5UP68	0.00379678	0.000561565
+UniRef50_C0F8A8	9.3409e-06	1.68793e-05
+D alanine  D alanine ligase	0.000160516	0.00160264
+Oligogalacturonide transporter	0.000605553	0.000262115
+3 oxoacyl ACP synthase, partial	2.19963e-05	1.40449e-05
+Glycosyltransferase, GT2 family	0.00109202	0.000107014
+UniRef50_E6MVK2	0.000185086	0.00176871
+Glutamate ammonia ligase adenylyltransferase	0.000222995	0.00270294
+UniRef50_K4NHA2	1.03946e-05	0.00123158
+Efflux pump membrane transporter BepE	2.01432e-06	6.46022e-06
+Superoxide dismutase [Mn Fe]	0.00393038	0.000149891
+amino acid ABC transporter substrate binding protein	1.48795e-05	0.000170233
+hypothetical protein	0.000275989	4.26024e-05
+deoxyguanosinetriphosphate triphosphohydrolase	0.000468497	9.1106e-05
+Transcriptional regulator, MerR family	0.00822995	0.00187349
+TRAP transporter solute receptor TAXI family 	6.47409e-05	4.12376e-06
+UniRef50_E1HGR2	0.000104384	8.18355e-05
+hypothetical protein	0.00035476	3.51029e-05
+23S rRNA  C(5)) methyltransferase RlmD	0.00150725	7.06411e-05
+UniRef50_Q3JXF7	0.000461567	0.000228484
+UniRef50_L0DDS9	3.97087e-05	1.00172e-05
+hypothetical protein	2.96188e-06	5.82172e-06
+FK506 binding protein 1	2.28453e-05	1.29018e-05
+4 diphosphocytidyl 2 C methyl D erythritol kinase	6.24291e-06	0.000938885
+Glutamate synthase subunit alpha	0.00074225	8.70095e-05
+UPF0301 protein CC_3395	2.67429e-05	2.24377e-05
+pilus modification protein PilQ	3.31732e-06	3.01958e-06
+NADP reducing hydrogenase subunit HndC	0.00055571	0.000565847
+UniRef50_R7YUC0	3.06288e-06	0.000336505
+Short chain dehydrogenase reductase SDR	7.76488e-05	0.000148785
+Probable GTP binding protein EngB	0.0103544	0.00334463
+Metallo beta lactamase superfamily domain protein 	0.00179869	0.000211608
+zinc iron permease	3.36945e-05	1.61264e-06
+hypothetical protein	1.68015e-06	3.35031e-05
+UniRef50_X1Y0Y0	4.31803e-05	7.10959e-06
+Cupin	9.12482e-05	2.12385e-05
+Glutamate 5 kinase	0.00303125	0.00162369
+acyltransferase	0.000364411	9.64217e-06
+UniRef50_D6AF37	0.00018336	9.6945e-05
+Dephospho CoA kinase	0.000710801	0.000302306
+UniRef50_C5YML5	0.000361909	0.000418286
+Cell division ATP binding protein FtsE	0.00300394	0.000377247
+hypothetical protein	2.07667e-05	1.2357e-05
+Cell division protein FtsN	0.0028906	9.70647e-05
+N anthranilate isomerase	9.14742e-06	7.78292e-05
+UniRef50_D2UBU1	1.20903e-05	1.04352e-05
+hypothetical protein	1.20477e-05	3.03205e-06
+UniRef50_D3QIX9	0.0158484	0.00295973
+helicase	4.3162e-06	0.000301873
+hypothetical protein	1.25314e-05	1.363e-05
+UniRef50_R7YU19	0.0172123	0.000866616
+UniRef50_A0A028ILN1	0.000127803	0.0019775
+Thioredoxin reductase	0.000228945	0.0274262
+Serine aspartate repeat containing protein D	0.000634191	2.24126e-05
+30S ribosomal protein S3	0.0010628	0.00121693
+N5 carboxyaminoimidazole ribonucleotide synthase	0.00409501	0.00117401
+RutC family protein YoaB	0.00146325	0.000255797
+Aminoacyl histidine dipeptidase	0.000244172	0.00392003
+Phosphate transporter	9.28837e-05	0.00202762
+UniRef50_Q9RSU4	0.00019268	0.0332551
+AICARFT IMPCHase bienzyme	0.00037563	0.0036261
+UniRef50_E6N0K4	0.000224727	0.00579618
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00795724	0.000644667
+UniRef50_K1YQK0	3.05776e-06	8.97626e-06
+Type II secretion system protein E	0.000297551	0.000596581
+SirB protein	0.00866423	0.00241642
+hypothetical protein	4.81138e-06	4.6803e-06
+Transcription activator, effector binding	0.000129111	0.000337212
+ABC transporter permease	3.50354e-05	2.66771e-05
+HNH endonuclease	5.23659e-05	2.11102e-05
+HAD superfamily hydrolase, subfamily IIA	0.0040104	0.000153216
+Os01g0323600 protein 	2.83171e-05	2.13314e-05
+ABC transporter	2.75566e-05	1.35288e-05
+PpiC type peptidyl prolyl cis trans isomerase	0.000288383	0.00140971
+hypothetical protein	5.95899e-05	6.00866e-06
+Transposase from transposon Tn1545	0.00475012	0.000412699
+hypothetical protein	8.81422e-05	1.63428e-05
+Tail fiber assembly protein	0.00184113	0.000291885
+hypothetical protein	8.23069e-05	6.27565e-06
+transcription factor WhiB	2.25867e-05	2.63142e-05
+peptide ABC transporter permease	2.03387e-05	2.93493e-05
+Apolipoprotein N acyltransferase	0.00217517	0.000355948
+UniRef50_A6LY96	0.000801318	0.00120171
+hypothetical protein	3.12937e-06	0.000644725
+UniRef50_Q0FWM3	0.000261979	3.83478e-05
+30S ribosomal protein S11	0.000155535	0.000357656
+hypothetical protein	8.79034e-06	2.37745e-05
+tRNA specific adenosine deaminase	1.14932e-05	2.15491e-05
+hypothetical protein	0.00013822	1.57684e-05
+tRNA binding protein, putative	0.00240053	0.000345058
+hypothetical protein	8.597e-06	6.19639e-06
+UniRef50_F3SBC7	0.000873182	0.000358021
+hypothetical protein	0.000332944	3.95275e-05
+hypothetical protein	1.17263e-05	4.86264e-06
+Acetylglutamate kinase	3.70401e-05	7.88362e-06
+UniRef50_P76162	0.00318356	0.00102529
+hypothetical protein	6.32688e-06	2.56235e-05
+1 pyrroline 5 carboxylate dehydrogenase 	0.000144197	0.00205074
+MmpL domain containing protein	0.000308992	0.000505914
+Putative lipoyl synthase	1.30293e-05	0.000130091
+Lysine  tRNA ligase	0.00345978	0.00563373
+putrescine spermidine ABC transporter substrate binding protein	4.40805e-05	7.9513e-05
+Type I secretion outer membrane protein, TolC	0.00164139	0.000144905
+Colanic acid biosynthesis protein WcaK	0.00360065	0.00142091
+Xylan 1,4 beta xylosidase	0.000250985	0.000220742
+UniRef50_K2CIP8	0.000256263	0.00013809
+Putative LysR family transcriptional regulator	5.76344e-06	4.37783e-06
+UniRef50_K0H1B5	0.000177442	0.00242181
+spermidine putrescine ABC transporter substrate binding protein	1.94877e-05	7.10653e-05
+5 methyltetrahydrofolate  homocysteine methyltransferase	2.29158e-06	4.78346e-05
+hypothetical protein	3.40818e-06	3.83103e-06
+Bisphosphoglycerate mutase	6.18617e-06	5.48615e-06
+Cro Cl family transcriptional regulator	0.000133689	9.58382e-06
+Glutamyl tRNA reductase	0.0200459	0.0039172
+Phosphoribosylaminoimidazole succinocarboxamide synthase	1.28028e-05	7.19147e-06
+iron ABC transporter permease	2.42925e-05	1.89507e-05
+N5 carboxyaminoimidazole ribonucleotide mutase	6.06136e-05	0.000649567
+hypothetical protein	1.10298e-05	9.72095e-06
+ErfK YbiS YcfS YnhG family protein	0.000145064	0.000129935
+hypothetical protein	2.61146e-05	4.68318e-06
+Periplasmic [NiFe] hydrogenase small subunit	6.85701e-05	9.55478e-06
+Peptidase M23B	0.000145273	0.000291411
+Processive diacylglycerol beta glucosyltransferase	0.0176942	0.00342514
+Ribokinase family Sugar kinase	0.00011991	0.00173074
+Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328	0.00944893	0.000578271
+Surfactin synthetase	0.00401547	0.000817366
+NADH quinone oxidoreductase subunit J	0.00122346	0.000467131
+Protein MrkE	0.00194223	0.000122657
+UniRef50_F1B2P1	7.65234e-05	9.34329e-05
+hypothetical protein	1.69122e-06	4.29385e-05
+Superoxide dismutase [Mn]	8.01054e-06	5.14951e-05
+hypothetical protein	2.75092e-05	4.71756e-05
+Poly E rich protein	8.67393e-05	0.000818736
+Lipoprotein signal peptidase	0.000188016	0.029882
+UniRef50_I4CUQ3	1.06497e-05	1.27942e-05
+ABC transporter ATP binding protein	3.51765e-06	5.41414e-06
+UniRef50_E1ZBZ0	2.55623e-05	8.71388e-06
+FK506 binding protein 1	2.08257e-05	2.01995e-05
+UniRef50_A6LTL3	0.000580733	0.000966226
+Expressed protein 	6.95915e-05	7.99699e-05
+translation initiation factor IF 3	9.3617e-05	8.09171e-05
+Flagellar brake protein YcgR	0.00215077	0.000532546
+UniRef50_V4JQ05	0.00375093	0.000785565
+TPR domain protein	0.00383642	0.000553363
+UniRef50_X5EHV6	0.0090431	0.00232008
+UniRef50_E8QKL2	0.000202711	0.00127329
+UniRef50_UPI000329FDA5	5.83714e-05	3.61242e-05
+UniRef50_B9TMP8	1.16734e-05	1.4561e-05
+Ribonuclease E	0.00245176	0.000702886
+UniRef50_W4HN66	4.62863e-05	3.26446e-06
+Tlr0743 protein	3.85709e-05	2.5553e-05
+hypothetical protein	5.98734e-06	8.45917e-06
+hemolysin, partial	4.02724e-06	3.13613e-05
+UniRef50_E6V9U6	2.87803e-07	1.46785e-06
+UniRef50_Q6FFH7	0.000286631	0.00495815
+Ppx GppA phosphatase	0.000259083	0.000251339
+UniRef50_C4Z2C3	0.000831991	0.0016217
+hypothetical protein	7.23933e-06	4.01154e-06
+Peptidase S41	7.5403e-05	0.0116363
+Iron ABC transport system substrate binding protein	9.03561e-06	1.71928e-05
+hypothetical protein	1.25138e-05	1.09539e-05
+LPS assembly protein LptD	0.00317484	0.000872631
+hypothetical protein	3.15746e-05	0.000119101
+Multidrug resistance protein MdtA	0.00237359	0.000815763
+Dehydrogenase	0.00197585	0.000669393
+Acetolactate synthase large subunit	1.5076e-05	0.00116826
+hypothetical protein	3.58509e-05	2.82145e-05
+PREDICTED	3.78774e-06	2.49757e-06
+hypothetical protein	0.000653181	2.766e-05
+Predicted ATPase, AAA+ superfamily	0.00190139	0.000396091
+ferredoxin, putative, partial	0.00016716	0.0237238
+hypothetical protein	3.78646e-06	6.18912e-06
+Superoxide dismutase [Mn] 1	1.80662e-05	4.43211e-05
+hypothetical protein	3.79294e-05	1.64106e-05
+hypothetical protein	9.70395e-05	3.49057e-05
+Cystine binding periplasmic protein	0.00170638	0.000230072
+UniRef50_B1JXE0	5.94085e-05	8.78088e-05
+Transcriptional regulator, TetR family	0.00939328	0.00113835
+Poly  alpha glucosyltransferase	0.00712113	0.00173713
+ABC transporter substrate binding protein	0.000603426	0.000188423
+Adenosine deaminase	0.000183541	0.00157156
+UniRef50_P0AFU3	0.00340062	0.000292817
+Integral membrane sensor signal transduction histidine kinase	0.000237854	0.000324041
+UniRef50_Q02LE1	0.000184242	6.60289e-06
+Dihydroxyacid dehydratase phosphogluconate dehydratase	0.000157636	0.00110589
+Aspartate carbamoyltransferase	0.000236634	0.00144044
+Oligopeptide ABC transporter, permease protein	0.00778556	0.000828184
+Histidinol phosphate aminotransferase	0.000482624	0.00131205
+hypothetical protein, partial	2.40365e-07	3.08365e-06
+Cysteine synthase	0.000333142	0.000246308
+UniRef50_W8S4A8	2.52329e-05	9.45294e-05
+CSS motif domain associated with EAL family protein	0.000327807	0.000192259
+ABC transporter ATP binding protein	5.54652e-05	1.14288e-05
+Heme sensor protein HssS	0.0184658	0.00344815
+Related to ECM4 protein 	8.91735e-05	7.55873e-06
+Diguanylate cyclase with GAF sensor	4.59682e-06	0.000753027
+Zn dependent hydrolase, glyoxylase	0.000308289	0.00305268
+N succinylglutamate 5 semialdehyde dehydrogenase	0.000189647	0.00367388
+3 isopropylmalate dehydratase large subunit	0.00267811	0.00167157
+Inner membrane peptidase, Serine peptidase, MEROPS family S49	0.000890501	0.0043059
+ABC transporter protein	0.00495439	0.00108232
+Phosphoadenosine phosphosulfate reductase	3.53648e-06	3.13102e-06
+indole 3 glycerol phosphate synthase	6.36083e-06	6.41283e-06
+Transcriptional regulator, TetR family	0.00019268	0.0186814
+GTP cyclohydrolase I	2.27931e-05	4.98745e-05
+ABC transporter, ATP binding protein	0.00919989	0.00112829
+Type II secretion system protein E	0.000149799	0.000908708
+UniRef50_W4K0D8	0.000109189	8.04526e-06
+Aldehyde dehydrogenase	7.02607e-05	0.000162507
+UniRef50_K2D6N5	2.2438e-05	6.94515e-06
+hypothetical protein	0.000229353	1.23427e-05
+histidine kinase	2.52492e-05	3.68733e-05
+Putative sugar phosphate isomerase YwlF	0.00023104	0.0117023
+UniRef50_G7U731	0.000924953	0.00557647
+UniRef50_B9J3P1	0.000335268	2.70725e-05
+Putative aminopeptidase FrvX	0.00235233	0.000566201
+Pseudouridine synthase	0.00555413	0.000809326
+Pirin like protein	9.60123e-06	8.24593e-06
+Anti sigma regulatory factor	2.22094e-05	0.000995327
+UniRef50_Q744M7	7.33557e-05	0.000207806
+UniRef50_A6FZQ4	1.04955e-06	9.64188e-07
+Proline racemase	0.00598256	0.000500331
+hypothetical protein	3.08042e-06	1.0427e-05
+UniRef50_X0NIS7	0.000224366	3.28615e-05
+Glycolate oxidase subunit GlcD	0.00939143	0.00136211
+UniRef50_Q4ZLN0	8.58542e-05	0.000108305
+UniRef50_UPI0003C1B110	3.94663e-06	1.63283e-05
+Imidazole glycerol phosphate synthase subunit HisH	0.000407115	0.00156446
+UvrABC system protein C	8.15546e-05	0.00441214
+hypothetical protein	0.000215632	5.55106e-05
+PREDICTED	0.000226239	3.70106e-05
+Cobyric acid synthase	0.00579929	0.00113004
+Competence protein ComFC	0.00602248	0.000406266
+UniRef50_D4J129	8.47184e-06	7.74489e-06
+Type F conjugative transfer system protein TraW	0.000302887	6.64165e-05
+Membrane protein	0.00016912	0.000187444
+UniRef50_J0VQZ8	7.52834e-05	5.53787e-05
+hypothetical protein	1.40455e-05	7.47226e-06
+hypothetical protein	7.05109e-05	3.58593e-05
+hypothetical protein, partial	9.57689e-06	3.36706e-05
+Glutamine amidotransferase subunit PdxT	0.0120746	0.00118089
+SorC family transcriptional regulator	0.000104953	0.00231371
+Glycosyltransferases involved in cell wall biogenesis	0.00191372	0.00101226
+Threonine dehydratase	6.95501e-05	5.99761e-05
+PREDICTED	2.77953e-05	6.12057e-06
+hypothetical protein	2.65138e-06	9.48771e-06
+DNA polymerase II large subunit	4.64396e-05	5.22891e-05
+Selenate reductase YgfK	0.000209508	0.000654664
+Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated	0.00343775	0.000257263
+hypothetical protein	0.00021444	3.14946e-06
+Transporting ATPase	0.000130835	3.19725e-05
+UniRef50_K9ZWQ1	1.69197e-05	0.000583424
+hypothetical protein	8.0174e-05	3.24249e-06
+UniRef50_Q3JRN2	5.04813e-05	6.86429e-05
+UniRef50_K9ZWQ8	0.000413526	0.0299373
+Peptide deformylase 1	4.55611e-05	0.000257263
+5,10 methylenetetrahydrofolate reductase, putative	0.00740591	0.000744488
+hypothetical protein, partial	9.19571e-05	2.10702e-05
+Adenylosuccinate synthetase	0.00423907	0.000571188
+chemotaxis protein CheW	0.000226122	5.12737e-05
+Energy coupling factor transporter ATP binding protein EcfA	1.00566e-05	1.56557e-05
+Inner membrane protein YghQ	0.00226569	0.000151408
+Phosphoribosylformylglycinamidine synthase,synthetase subunit   Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit	0.000484278	7.0708e-05
+UniRef50_V4JYH9	4.44952e-05	4.31599e-05
+PREDICTED	3.41628e-05	0.00011706
+PREDICTED	1.11261e-05	7.77934e-06
+UniRef50_A6LU01	0.00127292	0.000558576
+UniRef50_C5N580	0.0140352	0.00142346
+Oxidoreductase	0.00054282	0.000507259
+UniRef50_A4WZ24	3.63425e-05	5.46984e-05
+UniRef50_D0K9R4	0.017308	0.000367372
+DNA polymerase III PolC type	3.12575e-06	8.25253e-07
+Multidrug resistance protein MdtM	0.0014757	0.000642787
+EcsB	0.00954967	0.00094399
+AraC type DNA binding domain containing protein	0.000252128	0.00144969
+adenosylcobinamide kinase	5.54382e-05	6.90023e-05
+family 2 glycosyl transferase	0.000419578	5.58162e-05
+Hydrolase NUDIX family	0.00357103	0.000801439
+Oxygen dependent coproporphyrinogen III oxidase	0.0023606	0.000813994
+hypothetical protein	8.81229e-06	4.43076e-06
+Phenylalanine specific permease	0.0092904	0.0128407
+UniRef50_Q3J2Z9	0.00160571	0.000431658
+Snf2 family protein	2.3169e-05	0.00061364
+UniRef50_Q093G7	1.12944e-05	3.84532e-06
+hypothetical protein	2.31485e-06	2.23525e-06
+hypothetical protein	1.4483e-05	7.79239e-06
+UniRef50_D0D8I9	4.91604e-05	2.35313e-06
+UniRef50_D5V7X1	5.19726e-06	7.11567e-05
+Mobile element protein	0.000169917	4.59371e-05
+hypothetical protein	7.54661e-05	1.14495e-05
+Beta hexosaminidase	1.32388e-05	1.25037e-05
+UniRef50_I1F0Y4	4.17569e-05	4.92954e-06
+Marine sediment metagenome DNA, contig	2.18285e-05	1.35413e-05
+Hydroxylamine reductase	0.00403159	0.000156882
+DNA directed RNA polymerase subunit beta	5.03406e-06	1.64462e-06
+UniRef50_K2SHY0	0.000750101	4.14581e-05
+Acetyltransferase	0.00169439	0.000497856
+Transcriptional regulator, MarR family	0.0126969	0.000362767
+Citrate proton symporter	0.000117674	0.00278925
+hypothetical protein	3.34404e-06	1.62464e-06
+Glucose 1 phosphate adenylyltransferase	7.03508e-06	3.32263e-06
+hypothetical protein	1.83281e-06	3.12846e-06
+hypothetical protein, partial	3.9435e-05	2.67906e-05
+Dihydroorotase	4.09035e-06	3.64012e-06
+hydrolase	0.000260218	5.46277e-06
+UniRef50_Y5FPX8	3.01368e-05	2.0474e-05
+PREDICTED	1.30143e-05	3.30315e-05
+UniRef50_G8AE70	0.00011786	3.05713e-05
+Tetrapyrrole  Methylases family protein (Fragment)	0.000353023	0.000272496
+Isoform 2 of Glutaredoxin 3	8.85084e-05	3.85257e-05
+hypothetical protein	5.37915e-06	8.26918e-06
+UniRef50_Q21NT4	4.6364e-05	5.38901e-06
+PREDICTED	4.39378e-06	3.28237e-06
+Ferric uptake regulation protein	0.0133687	0.00114536
+hypothetical protein	9.92662e-06	9.3115e-06
+Permease	0.000218613	0.00019188
+UniRef50_A5VZX6	2.14982e-05	5.1881e-06
+Tryptophan synthase beta chain	0.000104873	1.03696e-05
+LysR family transcriptional regulator	0.000130614	0.00413619
+hypothetical protein	1.88806e-06	1.6799e-06
+UniRef50_J3JJ09	0.000126398	2.27339e-05
+hypothetical protein	1.98654e-05	1.71713e-05
+Rim protein 	8.26616e-06	0.000288381
+UniRef50_A3PH50	0.00753859	0.000930478
+UniRef50_Q3IV16	0.0213113	0.00122602
+Replication factor C large subunit	0.00182065	0.000284991
+UniRef50_Q3IV10	0.00814965	0.00231943
+MULTISPECIES	6.18047e-05	2.55522e-06
+hypothetical protein, partial	5.50516e-05	5.36107e-05
+oxidoreductase	1.84256e-06	3.64874e-06
+Predicted Fe S oxidoreductase	0.00232616	0.000199217
+Penicillin binding protein, transpeptidase	0.000295891	0.000923962
+hypothetical protein	2.92497e-05	3.39498e-06
+hypothetical protein	5.8001e-06	0.000121808
+PTS system, glucose like IIB component domain protein	0.00146754	0.000119395
+hypothetical protein	0.000459914	4.54289e-05
+molybdopterin biosynthesis protein MoeB	1.50502e-05	1.35402e-05
+Cellulose synthesis regulatory protein	0.0012615	0.000148147
+2 phospho L lactate transferase	0.0020416	0.000792577
+Drug resistance transporter, EmrB QacA subfamily	8.60738e-05	0.000523326
+hypothetical protein	4.75062e-05	9.46123e-06
+UniRef50_Q8FE40	8.60601e-06	7.38688e-05
+UniRef50_K9VLK6	0.000120815	7.95342e-06
+Replication protein Rep	0.00391629	0.00040538
+hypothetical protein	7.65877e-06	0.000107703
+Probable dual specificity RNA methyltransferase RlmN	0.0068739	0.00337177
+UniRef50_X2N374	0.00145412	0.000190626
+UniRef50_G8PS78	2.54114e-06	2.42627e-06
+Adenylate guanylate cyclase	0.000163273	0.00481879
+PREDICTED	4.0178e-05	1.88628e-05
+Probable outer membrane usher protein EcpC	0.000669421	0.000666277
+Diguanylate cyclase	3.01194e-06	0.00051251
+O succinylhomoserine sulfhydrylase	0.000315608	0.00186691
+Mannose 6 phosphate isomerase	0.000176079	0.00207553
+UniRef50_U5NZ17	0.00108636	0.000375225
+Delta aminolevulinic acid dehydratase	5.06443e-05	3.29547e-05
+UniRef50_Z5R973	1.89104e-05	1.79819e-05
+Archaea specific RecJ like exonuclease	0.00413399	0.000127556
+Pyrrolidone carboxylate peptidase	1.15289e-05	1.92476e-05
+Beta glucuronidase UidA	0.00163817	0.000251376
+Imidazoleglycerol phosphate dehydratase	1.25669e-05	0.00015642
+hypothetical protein	2.37867e-06	3.21097e-06
+UniRef50_X5E185	0.000553061	0.000137747
+hypothetical protein	1.67986e-05	8.06159e-05
+UniRef50_A1V6Q7	3.98196e-05	2.33414e-05
+Tetrahydromethanopterin S methyltransferase subunit E	0.00159333	0.000559269
+GTPase Era	0.00141813	0.000472486
+UniRef50_A5UNW2	0.00254688	0.000693247
+UniRef50_A5UNW3	0.00215894	0.000164589
+UniRef50_A5UNW4	0.0022071	0.000256521
+UniRef50_A5UNW5	0.00304213	0.000508104
+NAD transhydrogenase, subunit alpha part 2	4.60871e-05	2.65585e-05
+UniRef50_Q10216	2.83721e-05	2.38171e-05
+60 kDa chaperonin 	2.09402e-05	4.1942e-05
+Phage tail tape measure protein, TP901 family, core region	4.03684e-06	0.00150074
+L carnitine dehydratase bile acid inducible protein F	9.047e-05	0.00247681
+UniRef50_P76319	0.0062761	0.000376456
+Mannitol 1 phosphate 5 dehydrogenase	0.000622014	5.3509e-05
+UDP N acetylglucosamine pyrophosphorylase	3.41749e-06	5.77269e-06
+hypothetical protein	2.28415e-06	1.97444e-06
+UniRef50_P94909	4.30055e-05	1.30425e-05
+Mannose 1 phosphate guanylyltransferase	0.000195314	0.00212804
+Neurofilament heavy polypeptide	4.73204e-06	1.95939e-06
+N carbamoylputrescine amidase	0.0011845	0.00170957
+UniRef50_U5T4K4	0.00576788	0.000498667
+UniRef50_Q9RW76	0.000721175	0.0226599
+UniRef50_I6SVC2	0.00249905	0.00100739
+hypothetical protein	2.18417e-05	1.05342e-05
+MAP domain protein	0.0076198	0.000848221
+hypothetical protein	0.000147127	6.59571e-05
+UniRef50_B9NSA4	6.99062e-05	2.10469e-05
+hypothetical protein	9.81216e-05	2.24808e-05
+Methyl viologen resistance protein smvA	0.000220262	0.0034483
+hypothetical protein	5.57136e-05	2.64646e-05
+UniRef50_G4T2X8	0.00197113	0.000724071
+UniRef50_F9YYN2	0.00272877	0.00286613
+Chorismate synthase	1.50426e-05	5.73532e-05
+UniRef50_S5CTY8	7.38045e-05	0.00267437
+Lysine sensitive aspartokinase 3	0.00420564	0.00069001
+Ribonuclease P protein component	0.00692139	0.000260246
+Peptide methionine sulfoxide reductase MsrA MsrB	0.00235732	0.000241457
+UniRef50_S3G9A5	7.41749e-05	1.44383e-05
+Cytochrome C biogenesis protein CcmI	2.5647e-05	0.000238156
+MFS transporter	9.32947e-05	3.26655e-06
+Valine  tRNA ligase 	0.00890978	0.00158083
+Repressor protein	0.00307477	0.000298289
+ABC transporter ATPase	6.88016e-06	0.000159108
+UniRef50_A4U2D7	6.9322e-05	2.44541e-05
+PREDICTED	3.4074e-05	5.08666e-05
+Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase	0.00228426	0.00035352
+Peptidase M20D, amidohydrolase	0.000397209	0.0447
+UniRef50_J3N2U1	0.0010109	2.20774e-05
+DNA binding protein	3.69055e-06	0.000198956
+UniRef50_A0Z0Z6	2.80747e-06	2.54018e-06
+ribosomal protein L36	4.51724e-05	0.000232774
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	2.53756e-05	3.29278e-06
+hypothetical protein	1.36139e-06	8.74651e-06
+PREDICTED	1.54405e-05	3.45966e-05
+Exopolysaccharide biosynthesis protein	0.000218397	0.00046807
+UniRef50_F0JXQ7	7.80672e-05	0.000187808
+hypothetical protein	2.33733e-05	1.68598e-06
+Superoxide dismutase [Mn]	0.00153938	0.00115741
+UniRef50_Q9RYV9	0.000301569	0.00451869
+Nicotinamide mononucleotide transporter	0.00373305	0.000510557
+Queuine tRNA ribosyltransferase	0.00310339	0.00130478
+5 Nucleotidase domain containing protein	0.000235389	0.00116
+Iron transporting membrane protein, putative	0.00678279	0.000342811
+Plasmid stabilization system	0.000186883	2.16391e-05
+Monooxygenase, putative	7.07035e-05	0.00389843
+HAD hydrolase, family IIA	0.000405074	0.00311387
+Transcriptional regulator, AraC family	0.00831597	0.0010616
+UniRef50_F1UC42	0.00012301	0.000289174
+GntR family transcriptional regulator	0.000228546	0.000377279
+PTS glucose transporter subunit IIA	1.76981e-05	3.17355e-05
+GtrA family protein	0.0101074	0.000504322
+UniRef50_A3JMR3	0.000155478	1.7756e-05
+hypothetical protein	4.95507e-05	1.75071e-05
+UniRef50_A6M2M1	0.000247207	0.00110545
+hypothetical protein PUNSTDRAFT_59595	3.55837e-06	6.87719e-06
+Hydrolase, TatD family	0.00101205	0.000568558
+hypothetical protein	3.80625e-05	1.49481e-05
+Transcriptional regulator, TetR family	0.00161517	0.0006965
+tRNA dihydrouridine synthase B	0.00107723	0.00218663
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.000156189	0.00354359
+Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG	0.0126237	0.00244048
+hypothetical protein	1.54889e-05	1.81907e-05
+hypothetical protein	1.19711e-05	1.74368e-06
+UniRef50_Q3HKG9	0.0153935	0.00134727
+Branched chain amino acid transport	3.8294e-05	2.27018e-05
+hypothetical protein, partial	0.0001883	2.62909e-05
+hypothetical protein, partial	7.61527e-05	0.000358841
+UPF0145 protein HDEF_1024	0.000399142	0.00107021
+hypothetical protein	7.31099e-06	6.38736e-05
+Bifunctional enzyme Fae Hps	0.00187016	0.000148348
+Glycine dehydrogenase 	0.000312773	0.00344811
+UniRef50_A8A338	0.00364981	0.000981255
+Putative type II secretion system protein L	0.00297929	0.000404709
+UniRef50_M9VKX5	0.000686466	0.00472362
+ATP dependent 6 phosphofructokinase 2	1.66056e-05	1.3124e-05
+Putative peptidase, aminobenzoyl glutamate utilization protein 	0.00267426	0.000174002
+cobinamide kinase	7.95039e-06	6.24261e-05
+HTH type transcriptional regulator MurR	0.00410513	0.000860671
+UniRef50_K0SVQ3	0.0001018	0.000157205
+UniRef50_I0TP75	0.0109821	0.00149123
+Iron ABC transporter permease	0.000308813	0.000861534
+UniRef50_Q8ZPN4	0.00429898	0.00152619
+UniRef50_V5BVX1	0.00067361	7.69601e-05
+Permease protein HisM	0.000134571	0.000100543
+cold shock protein	1.24646e-05	5.59261e-06
+Flagellar hook length control protein	0.00319925	0.000259066
+UniRef50_W9CKC5	1.9205e-05	9.20412e-06
+Transposase IS5	0.000441993	6.0038e-05
+Surface antigen 	0.00141582	0.000165868
+UniRef50_I6TXF6	0.00116337	0.000492746
+UniRef50_D4HD50	0.000258981	0.000130416
+hypothetical protein	3.01063e-05	7.46955e-06
+UniRef50_D4HD52	9.89849e-05	0.0023846
+Inner membrane translocator	0.00574888	0.00267227
+hypothetical protein	1.62228e-05	1.01844e-05
+GntR family transcriptional regulator	0.000215276	0.00265691
+Urease subunit beta 	8.5309e-06	1.88223e-05
+Apolipoprotein N acyltransferase	0.000157877	0.00425617
+phosphoadenosine phosphosulfate reductase	9.99675e-06	8.42419e-06
+bacteriophage replication gene A protein 	0.000199456	0.000128138
+UPF0125 protein HP15_3087	1.52217e-05	1.75485e-05
+UniRef50_B7V3C6	0.000553506	9.76984e-05
+cytochrome D ubiquinol oxidase subunit II	1.30145e-05	1.03899e-05
+3 oxoacyl [acyl carrier protein] synthase 3	0.000535023	0.000105626
+hypothetical protein	3.72288e-06	5.65361e-06
+Signal transduction histidine kinase regulating citrate malate metabolism	8.21518e-05	0.000196908
+Lipoyl synthase	3.51591e-06	0.0285612
+PREDICTED	5.81353e-06	5.16981e-06
+UniRef50_A0A058YZC5	1.32795e-05	5.48375e-05
+PREDICTED	1.82259e-05	5.64885e-05
+UniRef50_R8A9F1	0.00198221	0.000666807
+YVTN beta propeller repeat containing protein	0.000144526	7.50171e-06
+Methylated DNA  protein cysteine methyltransferase	0.00335026	0.000175704
+hypothetical protein	7.06473e-06	1.53302e-06
+Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase	0.00300276	0.000499612
+hypothetical protein	2.41605e-05	2.87559e-06
+hypothetical protein	2.26147e-06	7.2836e-06
+prolipoprotein diacylglyceryl transferase	0.000122708	5.09026e-06
+Putative branched chain amino acid carrier protein SE_1090	0.0138764	0.00243336
+UniRef50_G8AFT7	0.0105923	8.27867e-05
+TonB dependent receptor	0.000190652	9.09039e-05
+UniRef50_U2RQ03	0.000570421	0.00251115
+UniRef50_F5M4B6	0.00026449	0.000352164
+UniRef50_Q9I7A3	0.000670692	9.55158e-05
+Aminoglycoside phosphotransferase	0.000718963	0.000167197
+3 phenylpropionate cinnamic acid dioxygenase subunit alpha	0.00326271	0.0011698
+DNA directed RNA polymerase subunit beta	3.794e-06	2.45864e-06
+Spermidine putrescine ABC transporter permease	0.0167389	0.004382
+Ribulose phosphate 3 epimerase	0.000484082	0.000563306
+Peptidyl tRNA hydrolase	1.54492e-05	1.43654e-05
+alcohol dehydrogenase	1.04072e-05	8.77309e-06
+Alanine dehydrogenase 2, putative	1.16719e-05	6.11598e-06
+UniRef50_D5ALB3	0.000294828	2.69851e-05
+Homocysteine S methyltransferase	0.000295499	9.76984e-05
+Maltose maltodextrin import ATP binding protein MalK	6.9392e-05	1.16364e-05
+Dihydroxy acid dehydratase	3.36441e-05	1.81732e-05
+hypothetical protein	3.78318e-05	2.14799e-05
+UniRef50_Q3J7W9	2.52879e-05	5.50531e-05
+putative nitrate transport ATP binding protein, partial	9.46187e-05	7.75486e-05
+hypothetical protein	8.74164e-06	4.23199e-06
+hypothetical protein	9.43219e-06	1.16276e-06
+Phosphopantetheine adenylyltransferase	2.87126e-05	7.63593e-06
+adenylosuccinate lyase	5.29731e-05	3.09845e-05
+hypothetical protein	0.000104679	2.51207e-05
+UniRef50_Q3HKJ2	0.00240295	0.000549765
+hypothetical protein	0.00703258	0.000279704
+UniRef50_U6ZV82	0.000289457	0.000140301
+DNA topoisomerase 1	0.00263643	0.00205284
+2 oxo hepta 3 ene 1,7 dioic acid hydratase	0.000586539	0.000452652
+Cupin domain protein	0.000317925	0.000218351
+ATP dependent helicase deoxyribonuclease subunit B	1.02745e-05	0.00186618
+General secretion pathway protein D, putative	0.000105888	0.0207079
+Abortive infection protein	0.000286661	0.000924193
+Isopropylmalate homocitrate citramalate synthase	0.000481416	0.000117778
+UniRef50_E8P8P5	0.000126999	0.00433408
+Teichoic acid export ATP binding protein TagH	0.00838783	0.00142097
+UniRef50_E8P8P8	7.16061e-05	0.003624
+Protein containing tetrapyrrole methyltransferase domain and MazG like  domain	0.0185326	0.00301461
+LytR family regulatory protein	4.96227e-06	1.06627e-05
+hypothetical protein, partial	4.60166e-05	4.89697e-06
+UniRef50_A4VGB2	1.25053e-05	0.000481149
+Antitoxin HicB 1	0.0036989	0.000212257
+2 isopropylmalate synthase	2.44323e-06	9.53831e-06
+Cardiolipin synthetase	0.00047458	0.000128264
+UniRef50_W9FRU9	1.90497e-05	0.000192613
+UniRef50_K0SKL9	3.8257e-05	0.000524887
+Uridylate kinase	0.0140435	0.00675369
+UniRef50_Q6G726	0.00110936	0.00222197
+Acyl carrier protein	1.96617e-05	5.46474e-05
+hypothetical protein	7.00933e-06	1.24695e-06
+hypothetical protein	1.55838e-06	7.2133e-06
+Dipeptide transporter permease DppB	0.000113047	4.96659e-05
+UniRef50_F0RJ20	5.92773e-05	0.000344974
+Permease, cytosine purine, uracil, thiamine, allantoin family	0.000393884	0.000160538
+GTP pyrophosphokinase YjbM	0.00294114	0.00130441
+UniRef50_A6W7I0	3.85333e-05	9.32209e-05
+Multidrug resistance protein, AcrB family	0.00317062	9.46787e-05
+UniRef50_W0X4S5	0.000119485	0.000310316
+ABC peptide opine transporter, ATPase subunit	0.000276699	0.000171019
+hypothetical protein	0.000240207	7.24331e-06
+FKBP type peptidyl prolyl cis trans isomerase 	0.000312934	3.8968e-05
+beta hexosaminidase	1.10442e-05	1.3093e-05
+Alcohol dehydrogenase , GroES like protein	0.00355814	0.000667241
+Ribose phosphate pyrophosphokinase 1	1.60233e-05	0.00643229
+hypothetical protein	5.49637e-06	5.90521e-05
+Choline carnitine betaine transporter	0.00887527	0.00112441
+Acetylornithine deacetylase	0.000196289	0.000111258
+DnaA initiator associating factor for replication initiation HobA	0.000478505	0.000846308
+Phospho N acetylmuramoyl pentapeptide transferase	5.3521e-06	1.57067e-05
+UniRef50_U3AIN5	8.88908e-06	6.72062e-06
+Acyl coenzyme A	0.0200794	0.00260414
+Membrane protein, putative	2.64108e-05	8.3361e-06
+DegV family protein	0.000893041	0.000237911
+DNA topoisomerase 1	4.75826e-06	8.64258e-07
+Autolysin	0.00561034	0.000932812
+Xylose isomerase	0.000200904	0.0034834
+ATP dependent DNA helicase PcrA	1.80366e-05	2.29586e-06
+Lead, cadmium, zinc and mercury transporting ATPase	0.00331306	0.000498934
+oxidoreductase	8.0966e-05	0.00266375
+thioredoxin	4.69338e-05	3.20101e-05
+transposase	6.34564e-05	6.80182e-05
+UniRef50_R9SIT6	0.00094012	0.000179462
+cobinamide adenolsyltransferase	7.50766e-05	0.0135556
+Anthranilate synthase component 1	9.55311e-06	2.94499e-06
+Ferritin	0.0389947	0.00130903
+GTP pyrophosphokinase	5.5813e-06	1.3621e-06
+Staphopain B	0.00674189	0.00162892
+Predicted RNA binding protein	0.00192446	0.00148095
+Malate synthase G	0.00298091	0.000329732
+Putrescine carbamoyltransferase	0.00749464	0.00179972
+UniRef50_J9NSA1	3.22681e-05	1.13347e-05
+glutaredoxin	5.58617e-05	0.000187895
+Thymocyte nuclear protein 1	2.22538e-05	8.95509e-06
+UniRef50_A5MC69	5.78452e-05	0.00200605
+UniRef50_M4AFD6	1.6354e-05	1.41317e-05
+hypothetical protein	1.95458e-05	8.05616e-05
+Plasmid partitioning protein RepA	0.000284642	4.81802e-05
+Phage portal protein	0.00025627	0.00127141
+Bifunctional uridylyltransferase uridylyl removing enzyme	0.000732278	0.000106367
+Threonine  tRNA ligase	0.00132001	0.000787845
+Ribonucleoside diphosphate reductase	0.00408735	0.00269158
+Threonine dehydratase, mitochondrial	5.97376e-06	6.88775e-06
+Phenylalanine  tRNA ligase beta subunit	0.0170549	0.00354771
+UniRef50_V6NXW6	6.4679e-05	7.98807e-05
+Peptide ABC transporter, permease protein	0.000280681	0.0300319
+Phosphatidate cytidylyltransferase	0.000191584	0.000698169
+PREDICTED	6.16202e-06	2.3543e-06
+Integral membrane protein	7.39688e-06	0.0316633
+ribonucleoside hydrolase, partial	7.9221e-06	2.93994e-05
+endonuclease	7.88637e-05	8.36101e-05
+TetR family transcriptional regulator	6.4605e-05	3.64873e-05
+UniRef50_C4U4D5	5.24252e-05	3.25101e-05
+UniRef50_A4X048	0.000701137	0.000203626
+2 oxoglutarate dehydrogenase E1 component	4.75158e-06	0.000211969
+Cytochrome P450	8.96666e-05	0.0240566
+glycogen starch alpha glucan phosphorylase	0.000563952	0.000778016
+PREDICTED	8.51266e-06	4.21343e-05
+hypothetical protein	0.000299285	5.78715e-05
+hypothetical protein	1.49517e-05	3.70553e-07
+UniRef50_S4MC93	0.000318951	0.000158238
+Fosmidomycin resistance protein	0.00194035	0.000595161
+UniRef50_A0A059DRC5	0.000196005	4.22644e-05
+UniRef50_S5CP54	0.000141005	0.0033545
+PTS system sucrose specific EIIBCA component	0.0037563	0.000502274
+UniRef50_A3CNS7	0.00809343	0.00447946
+ABC transporter ATP binding protein	0.00326617	0.00061105
+Glutathione peroxidase	0.00540801	0.000737679
+hypothetical protein	6.11901e-06	1.81546e-05
+UniRef50_A6UGG8	2.29777e-06	1.52588e-05
+hypothetical protein TREMEDRAFT_28317	7.40606e-06	2.7125e-05
+histidine kinase	4.53811e-05	5.31413e-05
+Methionine import ATP binding protein MetN	2.09363e-05	4.22512e-06
+hypothetical protein PFL1_00418	1.28697e-05	8.57876e-06
+UniRef50_C5MYZ4	0.0140026	0.00147319
+UniRef50_A0A059IL85	3.91478e-05	1.82585e-05
+HTH type transcriptional regulator TreR	0.00182231	0.00123848
+hypothetical protein	5.3332e-06	1.74369e-05
+UniRef50_E2PIJ4	0.00091786	0.0011053
+Protein map	0.00537078	0.000376611
+Thioesterase superfamily protein	2.57711e-05	0.000399633
+hypothetical protein	4.54922e-06	5.5249e-06
+Type VI secretion protein, family	5.56594e-06	4.88441e-06
+Phosphoribosylformylglycinamidine synthase 2	1.58414e-05	1.64209e-06
+Dehydrogenase	0.000753005	0.00225035
+UniRef50_A4EC20	5.23002e-05	2.31675e-05
+UniRef50_C3M9I7	0.000153962	2.91019e-05
+Lfe103p1 	2.26121e-05	3.22925e-05
+ABC transporter permease	0.00667926	0.00207935
+PTS system trehalose specific EIIBC component	0.00310778	0.00227437
+SsrA binding protein	9.74717e-06	1.90903e-05
+Nicotinate phosphoribosyltransferase	2.48555e-06	4.02893e-06
+UniRef50_W0NF85	4.25669e-06	3.35335e-06
+FAD dependent oxidoreductase	2.4676e-05	5.12642e-06
+Transketolase	5.19105e-06	5.43176e-06
+UniRef50_L7DMI2	0.000829629	6.17957e-05
+Probable fimbrial chaperone EcpE	0.00366217	0.00012956
+ATPase P	2.37851e-06	1.37922e-05
+ATP dependent Clp protease proteolytic subunit 2	6.9523e-06	0.000155069
+Transposase, IS5 family	0.000273562	6.5242e-05
+DNA damage inducible protein D	0.00140848	0.000727495
+Multidrug resistance efflux pump	0.000480019	0.00278183
+Amino acid ABC transporter substrate binding protein, PAAT family 	0.00250837	0.000443029
+hypothetical protein	2.58258e-05	2.70046e-06
+Carboxynorspermidine carboxyspermidine decarboxylase	6.16476e-05	4.26237e-06
+DGPF domain containing protein	4.20702e-05	1.26319e-05
+3 hydroxyisobutyrate dehydrogenase	6.90367e-06	4.42594e-06
+4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000378304	0.000253047
+UniRef50_P77154	0.00159356	0.000618005
+ribosomal large subunit pseudouridine synthase A, partial	0.00034253	3.675e-05
+Pheromone shutdown protein, TraB family	0.00220783	0.000682786
+UniRef50_Q02RK7	0.000649694	9.83405e-05
+Probable butyrate kinase	8.53462e-05	0.000649808
+Zinc transporter ZupT	0.000106954	0.000272043
+3 isopropylmalate dehydratase small subunit	1.06359e-05	1.1476e-05
+UniRef50_E6MWH5	0.00200008	0.00132037
+Ribulose phosphate 3 epimerase	0.000730337	0.00104012
+Putative pyruvate, phosphate dikinase regulatory protein	0.000206895	0.000574136
+UniRef50_Q6ZKP4	7.40914e-05	1.89708e-05
+ATPase	5.12856e-06	1.8321e-06
+Histidine biosynthesis bifunctional protein HisB	0.000812383	0.000179805
+UniRef50_D8LJV9	3.18802e-05	2.83054e-05
+alkaline phosphatase	5.13012e-06	1.66981e-06
+UniRef50_H9UZ27	0.000708733	0.000272075
+UniRef50_F3U4H9	0.00116791	0.000234248
+UniRef50_A0A022NNU5	7.92161e-05	8.69547e-06
+Ribonuclease HII	0.00268052	0.000144349
+hypothetical protein, partial	4.84848e-05	9.10391e-06
+3 oxoacyl [acyl carrier protein] synthase 1	0.000411416	0.00241975
+transporter	0.000202921	2.04185e-05
+Cytosine deaminase like metal dependent hydrolase	7.64304e-05	0.000598577
+Putative phosphonates utilization ATP binding protein PhnK	0.00242476	0.000137918
+UniRef50_B4RDA5	1.52548e-05	2.36008e-05
+hypothetical protein	0.000134876	2.69687e-05
+UniRef50_U6LWE1	9.33892e-06	5.81284e-06
+Urea amidolyase	0.0169233	0.00231864
+Acyl CoA dehydrogenase, putative	0.000131455	0.0269543
+hypothetical protein	4.82083e-06	4.13419e-06
+Elongation factor P	1.41566e-05	0.00332634
+ComEC Rec2 related protein	0.000782155	0.000100075
+Glycine betaine transport ATP binding protein OpuAA	0.00409824	0.00226718
+hypothetical protein	0.000180867	1.92754e-05
+UniRef50_I7BZ98	1.46463e-05	0.000322935
+Pseudouridine synthase	0.000483084	0.00436693
+Fatty oxidation complex, alpha subunit 	0.000285843	0.000391048
+sugar ABC transporter permease	0.00317389	0.000347493
+Rod shape determining protein RodA	0.000377483	8.19953e-05
+adenylosuccinate synthetase	1.69758e-05	6.60285e-06
+UniRef50_G8VQJ8	0.00023104	0.00353977
+UniRef50_R9IVY1	1.35618e-05	0.00207631
+hypothetical protein	3.69239e-06	3.08454e-06
+amino acid ABC transporter permease	1.94094e-05	2.27038e-05
+transporter	2.40519e-05	0.000101018
+Phosphate acetyltransferase	3.65423e-06	0.0109152
+UniRef50_C9CZK5	0.000117479	4.84071e-05
+UniRef50_Y5PA95	1.62359e-05	1.34163e-05
+RelA SpoT domain protein	0.00109239	0.0020847
+UniRef50_O32035	0.0171914	0.00126019
+UniRef50_O32034	0.0198545	0.00281227
+hypothetical protein	1.57052e-05	6.26809e-05
+UniRef50_UPI0002B4A544	4.43726e-07	2.06627e-05
+Lon protease	4.33007e-06	2.25504e-06
+TPR repeat containing protein	0.000275511	0.000406953
+Undefined function	0.00275028	0.000590078
+Phosphoribosyl ATP pyrophosphatase	0.00117226	0.000510575
+Probable enoyl CoA hydratase, mitochondrial	7.88089e-06	8.40141e-06
+UniRef50_U1EG57	3.50308e-05	7.73217e-05
+FMN binding domain protein	0.000460291	0.00059706
+hypothetical protein	6.31659e-06	1.27212e-05
+Ferrous iron transporter B	0.000490119	0.00585976
+Putative acyl CoA dehydrogenase AidB	0.00333354	0.000548526
+Ribose phosphate pyrophosphokinase	1.69044e-05	8.39785e-06
+hypothetical protein	0.000127914	3.105e-05
+membrane protein	4.62289e-06	0.000526933
+UniRef50_N0AUD5	0.000214433	1.49375e-05
+UniRef50_M4WTT8	0.000222389	0.000132037
+UniRef50_X6L243	0.000458758	6.79359e-05
+phosphonate ABC transporter ATP binding protein	8.79817e-06	5.63305e-05
+Histidinol phosphate phosphatase HisJ family	0.000170548	0.000254987
+ABC transporter	3.46262e-06	6.77187e-06
+Uracil permease	0.000229569	0.0115448
+hypothetical protein	4.47922e-06	8.77962e-05
+L aspartate aminotransferase	2.0602e-06	1.70074e-05
+hypothetical protein	4.13292e-06	3.47641e-06
+Putative membrane spanning protein	9.88136e-07	9.93253e-07
+UniRef50_A5ULW0	0.00342712	0.000464893
+hypothetical protein	3.34807e-05	2.55328e-05
+Sulfate thiosulfate import ATP binding protein CysA	0.000104654	2.69473e-05
+Amidohydrolase family protein	0.000428801	6.89592e-05
+ hydrogenase maturation protein HypF	0.000752178	0.000777558
+UniRef50_C0VQW3	5.83378e-06	5.50827e-05
+hypothetical protein, partial	6.34998e-06	7.87657e-06
+IS1478 transposase	3.23819e-05	1.43516e-05
+RepB plasmid partition	1.74195e-06	5.72235e-06
+Permease for cytosine purines uracil thiamine allantoin	7.08523e-05	0.00293609
+UniRef50_W6K6P7	0.00159004	0.000477579
+spermidine putrescine ABC transporter substrate binding protein	7.28766e-06	9.85466e-05
+Iron regulated outer membrane protein	0.000157922	0.00291992
+UniRef50_D8GLI1	0.000233714	0.000620639
+2 amino 3 ketobutyrate CoA ligase	3.06718e-05	4.21675e-06
+Xanthine phosphoribosyltransferase	2.12084e-05	2.10971e-05
+Expressed protein 	4.72964e-05	0.000114448
+Sensor protein gacS	8.19893e-05	0.00272101
+alpha amylase, catalytic subdomain	4.57867e-06	1.48919e-05
+hypothetical protein	2.90748e-05	1.74874e-05
+RND multidrug efflux transporter Acriflavin resistance protein	0.010834	0.00144803
+UniRef50_K0SH63	5.66393e-05	0.000214532
+3 oxoacyl ACP reductase	3.91312e-06	2.81023e-05
+UniRef50_A6LZZ2	0.00136642	0.000262486
+hypothetical protein, partial	6.64693e-05	2.37561e-05
+UniRef50_Q5F653	6.98234e-05	0.001091
+Beta hexosaminidase	1.68116e-05	1.55186e-05
+sn glycerol 3 phosphate transport system substrate binding protein	6.6429e-06	2.95769e-06
+UniRef50_W6M4I0	1.00201e-05	0.000199282
+glutathione dependent formaldehyde activating protein	3.88757e-05	3.45098e-05
+LemA family protein	0.000999649	0.00036465
+O antigen polymerase	0.000148259	0.0128995
+hypothetical protein	9.90076e-06	1.57241e-05
+UniRef50_Z7T5S7	4.02899e-05	4.51634e-05
+D mannonate oxidoreductase	0.00616608	0.00127806
+PREDICTED	3.70106e-05	1.03871e-05
+UniRef50_A6LZZ5	0.00044295	0.00075569
+ADP ribose pyrophosphatase	1.55555e-05	5.6657e-05
+7 carboxy 7 deazaguanine synthase	0.00140713	0.000613741
+UniRef50_B9E3V1	0.000677419	0.000204996
+hypothetical protein	2.1205e-06	7.83915e-05
+ATPase	1.54708e-05	3.28684e-06
+hypothetical protein	5.99856e-05	1.05624e-05
+Nudix family hydrolase	0.000683424	0.000829429
+UniRef50_W5BNZ7	6.88599e-06	6.80367e-06
+1,4 alpha glucan branching enzyme GlgB	3.43068e-06	3.79454e-06
+Permease	0.00364466	9.92098e-05
+Diguanylate cyclase	0.000182907	0.000625799
+Coagulase family protein	0.00844679	0.00105211
+UniRef50_Q5Z8R4	5.40465e-06	6.70332e-06
+UniRef50_H3FSC0	9.02486e-05	8.56489e-06
+anthranilate synthase subunit I	1.21705e-05	2.52828e-05
+Glycosyl transferase, family 8 SP1766	0.000476144	8.01651e-05
+DNA gyrase subunit A	0.00992659	0.00195778
+UniRef50_A0A011QMZ0	0.00169781	0.000167822
+PREDICTED	1.75563e-05	1.75157e-05
+Prolipoprotein diacylglyceryl transferase	4.713e-06	5.62337e-06
+UniRef50_M4XH87	0.0029303	0.000188228
+DNA repair protein RadA	4.58357e-06	2.49847e-06
+hypothetical protein, partial	6.73612e-06	9.7637e-06
+glycoside hydrolase	7.17482e-05	2.51586e-05
+hypothetical protein	1.55833e-05	0.00103748
+UniRef50_UPI0003C175AF	3.65436e-05	1.10214e-05
+Pyruvate kinase	0.00493963	0.00234769
+Phosphoribosyl AMP cyclohydrolase	0.00294233	0.00215677
+ATP synthase subunit beta, chloroplastic 	1.35651e-05	4.7932e-06
+UniRef50_Q1I6V1	9.45681e-05	2.28853e-05
+Clumping factor	0.000546634	0.00025777
+UniRef50_V6Q8F3	0.0190782	0.00190778
+50S ribosomal protein L15	0.0245869	0.00255781
+DNA polymerase III subunit alpha	5.28928e-06	4.55436e-06
+Bacterial type II and III secretion system family protein	0.00091127	0.000206008
+UniRef50_A6U466	0.000117418	0.000571878
+MobA	0.000296073	2.30523e-05
+UniRef50_F5XM79	0.000299732	0.00276018
+Flagellar L ring protein	0.000343137	0.000287364
+hypothetical protein	1.24359e-05	1.80032e-05
+short chain dehydrogenase	1.04378e-05	2.25038e-05
+UniRef50_Q06ZX9	2.45947e-05	6.95633e-05
+Alcohol dehydrogenase, class IV	9.08772e-05	0.000927423
+hypothetical protein, partial	3.28728e-05	0.000107037
+UniRef50_E0IXG6	0.00040261	0.000535971
+Aminoacyltransferase FemB	0.0159179	0.00179235
+UniRef50_Q8PI35	5.48272e-05	3.78725e-05
+HD domain containing protein	0.00322811	0.000243526
+RNA helicase	2.32507e-05	2.27841e-05
+UniRef50_F9CJM1	9.12996e-05	0.000400825
+UniRef50_T0TL30	0.00432331	0.000327386
+Endonuclease III	0.0127216	0.000974113
+Helicase C terminal domain protein	0.000285472	0.00287108
+hypothetical protein	8.82529e-06	1.23709e-05
+TRAP transporter solute receptor, TAXI family	0.000105074	5.68505e-05
+hypothetical protein	3.22859e-06	1.25032e-05
+Aminopeptidase N	0.00383444	0.00312068
+PREDICTED	3.00103e-05	0.000161611
+PREDICTED	2.81579e-06	1.61344e-06
+Valine  tRNA ligase	2.65977e-06	1.10216e-06
+Energy coupling factor transporter ATP binding protein EcfA1	0.00705122	0.00602478
+Replication protein A, putative	9.62364e-05	1.52241e-05
+hypothetical protein	2.33097e-06	2.11549e-06
+UniRef50_L5KY59	0.000174882	1.60557e-05
+Uroporphyrinogen III C methyltransferase	0.0115007	0.00198267
+hypothetical protein	0.000777665	0.000277739
+hypothetical protein	6.42632e-06	2.53618e-05
+hypothetical protein	0.000122844	1.8838e-05
+UPF0312 protein SERP2314	0.00946511	0.00034868
+Methyl accepting chemotaxis protein	0.000557045	0.000440795
+UniRef50_E0TB06	1.43213e-05	1.27548e-05
+UniRef50_M9R6I4	1.93252e-05	7.08542e-06
+acetolactate synthase catalytic subunit	1.702e-05	8.60105e-06
+Nitrogen regulation protein NtrB	0.00525454	0.00025013
+PTS system galactitol specific enzyme IIC component	0.000110223	0.00485358
+Lipoprotein	2.88689e-05	2.3681e-05
+Acyl CoA dehydrogenase	0.000472051	0.000347165
+Virulence transcriptional regulatory protein PhoP	0.00423506	0.0008809
+Benzoate transport porin BenP	0.000203558	0.00193046
+hypothetical protein	2.73582e-06	9.77516e-05
+UniRef50_F5LYA7	0.00223876	0.00257744
+Transposase InsI for insertion sequence element IS30B C D	0.00559785	0.000225348
+MULTISPECIES	1.34702e-05	4.76531e-06
+Membrane flavodoxin oxidoreductase	0.000447905	0.000308427
+Dihydroxyacetone kinase subunit DhaK	0.0216888	0.0018192
+Probable threonylcarbamoyladenosine tRNA methylthiotransferase	0.00269825	8.40682e-05
+YyaJ	0.000158627	0.00380437
+6,7 dimethyl 8 ribityllumazine synthase	1.58634e-05	3.92629e-05
+NAD transhydrogenase subunit alpha	0.000137089	0.00220885
+Tetratricopeptide repeat family protein	9.12342e-06	3.80437e-06
+Outer membrane usher protein YehB	0.00171818	0.00133226
+Acyl carrier protein	0.0119428	0.00506635
+Type III restriction enzyme, res subunit	5.91127e-05	0.00301631
+Cytochrome bd type ubiquinol oxidase subunit II	0.0154129	0.00317531
+UniRef50_Z4WXY4	0.00212267	0.000411866
+Tellurite resistance protein TerB	2.98816e-05	4.97997e-06
+Transcriptional regulator, HxlR family	4.21891e-05	0.00243159
+hypothetical protein	9.17006e-05	3.84667e-05
+TcaB protein	0.0224994	0.00321599
+Dihydroorotase	4.12597e-06	4.89614e-06
+Replication protein RepA 	8.25184e-05	3.48575e-05
+Probable bifunctional SAT APS kinase 2	2.96557e-06	0.000100995
+UniRef50_A6LQC9	0.000275859	0.000732026
+NlpC P60 family protein	0.000133905	0.0017307
+UniRef50_Q2CCV7	0.000507641	0.000168698
+Hydrogenase 2 small chain	0.00293151	0.00038892
+hypothetical protein	5.57478e-05	1.56291e-05
+UniRef50_V9VZ32	0.000704735	0.000106605
+CylG	0.000699589	0.000165961
+UniRef50_K0RNQ3	0.0011254	0.00014297
+XRE family transcriptional regulator, partial	3.56325e-05	9.60327e-06
+Deoxyribodipyrimidine photo lyase	0.00235488	0.000819565
+PREDICTED	2.52541e-06	5.13503e-07
+UniRef50_W7ST93	0.000100763	0.000607149
+Phosphoribosylformylglycinamidine synthase 2	5.54063e-06	0.00700492
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.67211e-05	2.80184e-06
+UniRef50_B9L9J4	0.000186626	0.0013712
+UniRef50_UPI0003C12600	1.64681e-05	1.79658e-05
+DNA recombination protein RmuC homolog	0.000451854	0.000866469
+PREDICTED	2.10505e-06	5.223e-05
+PREDICTED	7.37315e-05	2.95691e-05
+Triosephosphate isomerase	1.29478e-05	2.91007e-05
+hypothetical protein	1.41602e-05	7.7303e-06
+UniRef50_W1PEW2	1.16711e-05	1.13422e-06
+cell division protein FtsZ	7.78939e-06	4.8451e-06
+Ferrichrysobactin receptor	0.000115569	0.00014198
+hypothetical protein	1.25196e-05	8.90674e-05
+30S ribosomal protein S5	1.14028e-05	7.13059e-06
+Flagellar hook capping protein	5.9387e-06	4.59321e-06
+hypothetical protein	4.29328e-06	1.6056e-05
+L sorbosone dehydrogenase	0.000896398	0.000100769
+UniRef50_Q3JSM3	1.34174e-05	1.45878e-05
+HdhA domain protein	3.36731e-05	0.000167496
+sulfonate ABC transporter ATP binding protein	4.5762e-05	1.36919e-05
+UniRef50_B0VPR5	0.000273233	0.0029998
+Cobalamin synthase	0.000137367	0.00289243
+2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000632052	0.000397725
+Blr0964 protein	1.31193e-05	0.000419366
+Inner membrane transport protein YhaO	2.09327e-05	1.44561e-05
+Mercury transport protein	0.00903551	0.00123798
+UniRef50_M7XVH9	0.000100727	0.000181186
+DNA repair helicase	0.00233194	0.000470202
+Energy coupling factor transporter ATP binding protein EcfA	8.99249e-06	6.6706e-06
+Peptidyl tRNA hydrolase	0.000999479	0.000309828
+ribonuclease, Rne Rng family protein	1.93907e-06	8.48194e-07
+short chain dehydrogenase	6.73986e-06	5.73035e-06
+inosine uridine preferring nucleoside hydrolase, partial	7.9613e-06	1.80929e-05
+Penicillin amidase V	0.0094685	0.00257907
+GntR family transcriptional regulator	1.94688e-05	2.46001e-05
+UniRef50_Q49XR9	0.0165872	0.00287618
+Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II	9.59967e-05	0.00328215
+Amino acid ABC transporter, periplasmic amino acid binding protein	0.000471915	0.0370389
+Thymidylate synthase	0.0162023	0.00483809
+tRNA N6 adenosine threonylcarbamoyltransferase	0.00380766	0.00752405
+ABC transporter	0.0214214	0.00277227
+hypothetical protein	0.000123488	6.93395e-06
+Glutamate  tRNA ligase 2	3.99597e-06	2.61061e-06
+MULTISPECIES	6.39328e-05	6.14484e-06
+HTH type transcriptional regulator PecT	0.00245905	0.000630566
+UniRef50_S9S860	1.83667e-05	4.62218e-06
+UniRef50_UPI0003D719FF	3.31305e-05	7.0748e-05
+calcium binding protein, partial	3.03282e-05	2.77268e-05
+Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA	0.00239771	0.000200763
+Hydrogenase maturation factor	0.00122276	0.00043709
+Aldehyde dehydrogenase	0.000254894	6.29862e-05
+Translation initiation factor 5A	0.00108626	0.000724326
+GMP synthase [glutamine hydrolyzing]	4.13559e-05	1.24355e-05
+UPF0125 protein Nwat_1827	0.000214676	1.72118e-05
+Pantothenate kinase	2.04134e-05	0.00498082
+NAD NADP transhydrogenase alpha subunit like protein	6.15569e-05	4.02269e-05
+Triacylglycerol lipase	0.000109625	0.000395733
+Transcriptional regulator	0.0178314	0.00102199
+Phosphoglycerate kinase	1.12882e-05	3.05082e-05
+hypothetical protein	0.000128775	4.7965e-05
+UPF0118 inner membrane protein YdiK	0.00123717	0.000112091
+UniRef50_Q2RPW6	0.00159099	0.00017993
+Mandelate racemase muconate lactonizing enzyme family protein	0.00114421	7.73341e-05
+Transcriptional regulator	0.00389675	0.00143593
+2 methylcitrate synthase	1.22841e-05	1.17936e-05
+YALI0C14234p	5.65571e-05	1.85652e-05
+UniRef50_W0YNG1	0.000407115	0.000285031
+Putative phospho N acetylmuramoyl pentapeptide transferase	0.00224095	8.51041e-05
+Ferric enterobactin transport ATP binding protein FepC	0.00266425	0.000167509
+UniRef50_D9RDD4	0.0105716	0.000729232
+HTH domain protein	0.000233096	0.0025651
+hypothetical protein PFL1_00982	0.000152472	5.36895e-05
+50S ribosomal protein L32	0.0127585	0.000665073
+DNA 3 methyladenine glycosylase	2.31728e-05	1.21541e-05
+H repeat associated protein YbfD	0.0035397	0.000426923
+FKBP type peptidyl prolyl cis trans isomerase	5.86252e-05	3.72135e-05
+ABC transporter	4.43426e-06	5.78943e-06
+Type II secretory pathway pseudopilin PulG like protein	0.000248681	0.00111078
+Transcriptional regulatory protein LiaR	0.0240042	0.00481196
+ribonuclease III	1.18778e-05	2.1267e-05
+UniRef50_G2JLA5	0.00259349	0.00224344
+UniRef50_A0A022GY86	2.3704e-05	8.01128e-06
+Major facilitator transporter	2.29788e-06	4.41604e-05
+hypothetical protein	0.000385636	1.42664e-05
+ATP phosphoribosyltransferase	0.000883842	0.000686274
+Aldo keto reductase	0.00989697	0.00163674
+hypothetical protein	3.52509e-06	1.54217e-05
+MULTISPECIES	9.60279e-06	4.20575e-05
+MaoC family protein	4.14929e-05	1.28969e-05
+TPR repeat containing protein PA4667	0.000165897	0.000117378
+Amino acid permease associated region	0.00991853	0.00233933
+hypothetical protein	2.81202e-05	3.21785e-05
+AFG1 family ATPase	0.0094269	0.000735324
+Decarboxylase family protein	0.00131724	0.000610889
+Diaphanous protein, putative 	5.1365e-06	2.64879e-06
+HipA domain protein	0.0111944	0.00125323
+hypothetical protein	2.55262e-05	2.04397e-06
+chromosome partitioning protein ParB	4.89035e-05	0.000746117
+Alpha glucosidase	9.51241e-06	4.10086e-06
+UniRef50_G0HDD8	6.37805e-05	0.00367182
+UniRef50_A4CMU2	1.50157e-05	7.05513e-06
+UniRef50_I6RKC9	0.00062461	0.00019898
+phage terminase, partial	0.000273983	1.21071e-05
+UniRef50_H3LAA4	4.38048e-05	1.98855e-05
+UniRef50_D3E1C3	0.00388972	0.000190426
+UniRef50_B9KX02	0.0019419	0.000196862
+UniRef50_G4YDD7	2.03526e-05	3.05647e-05
+UniRef50_Q9HYT1	0.00123262	0.000105012
+hypothetical protein, partial	3.55477e-05	1.85639e-06
+UniRef50_Q9HYT3	0.000302361	0.000138058
+ComB, accessory factor for ComA	0.0043075	0.00108342
+Flagellar hook capping protein	6.57987e-06	5.47471e-06
+Phosphotransferase system, EIIC	8.32354e-05	9.78049e-05
+UniRef50_D0RWK6	0.00353761	0.000124012
+UniRef50_Q9RUL2	0.000891556	0.0216597
+L threonine 3 dehydrogenase	5.34503e-06	5.11333e-05
+Proline  tRNA ligase	4.33235e-06	3.63125e-05
+UniRef50_C4UFH2	9.76922e-06	5.04939e-06
+Transcriptional regulator, TetR family	0.000565926	0.00808253
+Ethanolamine ammonia lyase, large subunit	0.000938134	0.00418823
+UniRef50_D2P376	1.30222e-05	0.00019908
+tRNA  ) methyltransferase	8.71135e-05	0.00211987
+Glycine dehydrogenase	0.00185137	0.000514762
+sugar ABC transporter permease	1.92658e-05	5.72543e-06
+UniRef50_A0A024HX03	3.7197e-06	3.28731e-06
+mechanosensitive ion channel protein MscL	0.000345395	3.88176e-05
+Periplasmic endochitinase	0.00117107	0.000107865
+UniRef50_G2JK97	0.000311737	0.000968015
+hypothetical protein	1.77229e-05	0.000231626
+UniRef50_M4MLE9	0.00707664	0.000190991
+Saccharopine dehydrogenase	0.00956368	0.00194692
+hypothetical protein	0.000171936	1.56188e-05
+choline dehydrogenase	4.72726e-05	8.26941e-06
+UniRef50_M4QZX1	0.000524721	0.0053194
+Cobalt zinc cadmium resistance protein CzcD	0.00107395	0.0033083
+Deoxyribonuclease	3.01449e-06	8.26166e-05
+peptidase	5.75385e-06	9.87411e-06
+UniRef50_X5DX77	0.00479144	0.000966246
+Sulfate ABC transporter, periplasmic sulfate binding protein	0.0102592	0.00109084
+hypothetical protein	3.55651e-05	1.68146e-05
+acetyl CoA	5.50786e-06	8.83015e-06
+hypothetical protein, partial	0.000350096	1.6027e-05
+3 phosphoshikimate 1 carboxyvinyltransferase	4.12683e-06	3.1015e-06
+NagD protein	2.60795e-05	5.5014e-05
+hypothetical protein SMAC_11040, partial	2.95244e-05	0.000537402
+UniRef50_D8GQL0	0.000186281	0.000980621
+hypothetical protein	1.63795e-06	2.07812e-06
+Single stranded DNA binding protein 1	0.00350874	0.00154244
+Inner membrane protein YbiR	0.00269471	0.00104682
+UniRef50_D4Z138	9.53379e-05	2.91855e-05
+transposase IS3 family protein	0.000255523	4.40183e-05
+UniRef50_U3SWI7	0.00535964	0.000929311
+Excinuclease ABC	2.65223e-05	6.88127e-05
+Phage major tail protein	0.0182066	0.00250383
+hypothetical protein	6.4338e-06	5.70765e-06
+Polyribonucleotide nucleotidyltransferase	0.000111004	0.00233053
+Glycosyltransferase stabilizing protein Gtf2	0.0078022	0.00155238
+UniRef50_I6SK88	0.000212557	0.000304355
+ABC type dipeptide transport system, periplasmic component, partial	2.79357e-05	6.89064e-05
+UniRef50_A3W978	2.33117e-06	0.000158903
+Basic proline rich protein, putative	1.88269e-06	1.61309e-05
+hypothetical protein, partial	1.93378e-05	7.67956e-06
+Hydrogenase 2 maturation protease	0.000221334	8.74428e-05
+D 3 phosphoglycerate dehydrogenase	0.00319553	0.000179484
+GTPase Der	1.00503e-05	1.19181e-05
+DnaJ related protein	1.32859e-05	7.50914e-06
+hypothetical protein, partial	8.19048e-05	0.000130947
+Putative transposase InsQ for insertion sequence element IS609	0.00156831	0.000158432
+Lipid A biosynthesis lauroyl acyltransferase 	0.000332824	0.00560609
+Partition protein A	0.0129562	0.00133937
+UniRef50_Q3J218	0.0027389	0.000868886
+UniRef50_K0TK24	0.00022018	2.43981e-05
+hypothetical protein	3.4297e-05	0.000411154
+hypothetical protein	4.22894e-06	3.4692e-05
+Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family	0.00281199	0.000137076
+GntR family transcriptional regulator	1.42112e-05	1.57144e-05
+UniRef50_Q3J215	0.00107275	0.00319517
+zinc metalloprotease	1.64229e-05	7.82241e-06
+Glyceraldehyde 3 phosphate dehydrogenase, testis specific	3.86778e-06	3.93998e-06
+Sulfate adenylyltransferase subunit 2	0.00019014	0.00286042
+Flavoprotein	0.000140328	0.00306163
+Cell envelope related transcriptional attenuator	2.95174e-06	5.71017e-06
+Periplasmic YigE like protein	1.93669e-05	0.000350519
+Acyl CoA dehydrogenase, C terminal domain family	0.000111194	0.00310939
+hypothetical protein	0.000109993	1.99545e-05
+glycine cleavage system protein H	0.000111314	2.36076e-05
+Sugar ABC transporter permease	0.000767442	0.000330322
+transposase	0.000343152	2.00391e-05
+Holliday junction ATP dependent DNA helicase RuvA	1.82678e-05	5.00418e-06
+hypothetical protein	3.01848e-06	0.000112337
+UniRef50_A1BAZ5	0.00869122	0.000721954
+Predicted flavoprotein	0.0041457	0.000388566
+hypothetical protein	1.25139e-05	5.71059e-06
+polymerase	3.72053e-05	1.09864e-05
+Putative metal dependent protease of the PAD1 JAB1 superfamily	0.0205465	0.00890031
+6 carboxyhexanoate  CoA ligase	0.0237574	0.00296386
+Methyl accepting chemotaxis protein IV	0.00144474	0.000576525
+UniRef50_I3Y049	3.07418e-05	1.28407e-05
+hypothetical protein	8.61825e-05	4.91696e-06
+PREDICTED	6.18332e-05	5.15575e-06
+UniRef50_O68872	2.42615e-05	6.80867e-06
+NADH quinone oxidoreductase subunit D	2.73666e-05	3.1444e-05
+N acetylneuraminate epimerase	0.000686198	0.00030914
+Putative HTH type transcriptional regulator rrf2 like protein	4.37529e-05	1.16444e-05
+50S ribosomal protein L13	0.000230513	0.0278295
+UniRef50_D3E348	0.00344543	0.000896424
+Flagellar hook capping protein	6.88199e-06	5.35843e-06
+ABC transporter, partial	5.72068e-05	5.98569e-05
+UniRef50_A3WH30	0.000146512	9.26275e-05
+hypothetical protein	1.06853e-05	3.05341e-06
+UniRef50_A0A011PL33	0.000333937	5.94659e-06
+DEAD box ATP dependent RNA helicase 53	7.57892e-06	5.41509e-05
+PREDICTED	0.000144591	2.67399e-05
+Glyoxalase bleomycin resistance protein dioxygenas 	0.000858045	8.77875e-05
+ABC transporter ATP binding protein	0.000323953	1.10067e-05
+DNA helicase, ATP dependent resolution of Holliday junctions, branch migration	0.000933087	0.000176444
+UniRef50_Q49Y17	0.0181003	0.00288757
+UniRef50_A8AKZ3	0.00936603	0.000369979
+Putative peroxiredoxin bcp	0.004414	0.000198201
+UniRef50_Q5HLM6	0.00359842	0.000499558
+C4 dicarboxylate ABC transporter	0.00710859	0.000845005
+UniRef50_A4WSF9	9.95553e-05	5.29442e-06
+hypothetical protein	2.3701e-05	3.86245e-06
+UniRef50_W4U1X8	4.27697e-06	6.14086e-06
+UniRef50_B2T0E3	0.000111359	2.14654e-05
+High frequency lysogenization protein HflD homolog	0.000289263	0.00265647
+UniRef50_A0A029AVJ5	7.92585e-06	3.17107e-05
+Fosmidomycin resistance protein 	0.000243069	3.70862e-05
+ATP synthase epsilon chain 2	0.000238687	0.0013081
+LysR family transcriptional regulator, partial	6.98952e-06	4.01692e-06
+UniRef50_P33368	0.00331026	0.00149664
+hypothetical protein	1.43205e-05	2.92458e-05
+UniRef50_C3FDC0	0.000235489	0.000564557
+UniRef50_B9KUV4	0.000339911	8.50235e-05
+UniRef50_C6STH9	0.00801821	0.00040578
+UniRef50_V5EUP7	3.43445e-06	0.000232235
+3 hydroxybutyryl CoA epimerase	1.90867e-06	3.53346e-06
+Rb142	8.52561e-06	1.95761e-06
+DNA topoisomerase I	2.52939e-06	5.37019e-06
+PREDICTED	4.52144e-06	3.31668e-05
+Integral membrane protein	0.0185387	0.00293208
+Proline specific permease ProY	0.000527969	0.00315342
+30S ribosomal protein S4	0.00032834	0.023646
+hypothetical protein	5.75198e-06	1.89929e-06
+GntR family transcriptional regulator	0.000658701	0.000481964
+Beta hexosaminidase	4.51524e-06	6.86657e-06
+hypothetical protein	8.84636e-06	9.90774e-05
+Potential ATP binding protein	0.0858903	0.0117585
+hypothetical protein	4.27384e-06	3.26821e-06
+Aminomethyltransferase	6.11409e-05	3.87423e-05
+PREDICTED	5.15596e-06	2.27506e-06
+hypothetical protein	3.01765e-05	9.4669e-07
+UniRef50_G7ZS60	0.0578684	0.000601333
+Fumarate reductase succinate dehydrogenase flavoprotein domain protein	1.43862e-05	7.52154e-06
+ABC transporter family protein	0.00667453	0.00266251
+Dissimilatory sulfite reductase 	0.000426308	9.77637e-05
+UniRef50_Q8DUY9	0.00362049	0.000625328
+Ribosomal RNA small subunit methyltransferase E	0.00149176	0.000122993
+Aconitate hydratase 2	0.00130469	0.00356587
+Lipoyl synthase	4.44935e-06	0.000528453
+hypothetical protein	7.01958e-05	4.688e-05
+Chemotaxis response regulator protein glutamate methylesterase 1	6.16157e-05	4.62507e-06
+Flagellar motor switch protein FliM	0.000653116	0.00016033
+malate	2.62639e-06	4.57009e-06
+UDP glucose 4 epimerase	0.000291743	0.00138333
+Pantothenate synthetase	0.00151692	0.00018589
+Aminotransferase, class V	0.000236174	0.00478655
+UniRef50_H8GYV6	0.000180294	0.0126824
+Polyphenol oxidase	0.00113622	0.000165961
+Ethanolamine utilization protein EutQ	0.00141753	0.000704764
+Ascorbate specific permease IIC component UlaA	0.00317317	0.000749389
+flagellar motor switch protein	5.68195e-05	2.45119e-05
+UniRef50_D8N1D9	3.8753e-07	3.3558e-07
+Protein CreA	2.05197e-05	9.96773e-06
+NADPH dependent FMN reductase	0.000194912	0.00240414
+UniRef50_P75693	0.00142771	0.000458899
+hypothetical protein	6.6912e-06	5.44501e-06
+Metallo beta lactamase superfamily protein PA0057	0.000437207	6.32745e-06
+Pyridoxal dependent decarboxylase	0.0131181	0.00152914
+UniRef50_X7FEK2	3.55447e-05	1.70984e-05
+hypothetical protein	5.45371e-06	1.72489e-05
+UniRef50_B0VLY8	7.10018e-05	0.00358234
+Riboflavin biosynthesis protein RibF 	0.000308533	0.00372435
+Ribulose bisphosphate carboxylase small chain	0.000359112	2.69254e-05
+ROK family protein	0.00019993	0.00354718
+Rhamnulose 1 phosphate aldolase	0.00027141	0.00018249
+Tat proofreading chaperone DmsD	0.00201284	0.000561155
+Glutamyl tRNA amidotransferase subunit B, mitochondrial	5.57992e-06	2.81316e-06
+hypothetical protein	4.32567e-06	3.90081e-06
+PRC barrel domain protein	0.00520651	0.000261763
+AAA superfamily ATPases with N terminal receiver domain	0.000112166	0.000245352
+Chemotaxis protein CheA	0.00194763	0.000275485
+UniRef50_A6QE42	0.00175174	0.00068749
+UniRef50_Q6F806	0.000152514	0.00297431
+Cation efflux protein	0.000465773	0.00203425
+Chromosome 16 SCAF14537, whole genome shotgun sequence. 	0.000306182	1.78962e-05
+UniRef50_Q9LDF4	2.02606e-05	0.000195383
+Cytochrome c oxidase subunit 1+2	6.04671e-06	1.08444e-05
+Indole 3 glycerol phosphate synthase	0.00565194	0.000478407
+Spermidine export protein MdtJ	0.000588662	0.000406266
+Sugar  transporter family protein	0.00918038	0.00164265
+hypothetical protein	8.61247e-06	1.42666e-06
+Gamma glutamyltranspeptidase	0.00868654	0.00226887
+PTS beta glucoside transporter subunit IIABC	2.78366e-06	5.57684e-06
+Homoisocitrate dehydrogenase	1.03736e-05	1.00148e-05
+Dienelactone hydrolase	0.00035525	0.00313788
+DNA directed RNA polymerase subunit alpha	3.43666e-05	1.46215e-05
+UniRef50_F3ZLH7	0.00101369	0.000113949
+Serine 3 dehydrogenase	0.00137192	0.000695084
+Primosome assembly protein PriA 	6.47653e-06	0.000379878
+Protein translocase subunit SecA	0.00534242	0.000615806
+Putative serine protease	0.000132499	0.000485635
+Porin thermoregulatory protein envY	0.000237032	2.3667e-05
+hypothetical protein	8.37468e-06	7.89904e-06
+Methyl accepting chemotaxis sensory transducer	0.00156348	0.00130836
+UniRef50_J0MRE5	0.047091	0.00505778
+hypothetical protein	1.40704e-05	3.75732e-06
+UniRef50_A6LQ39	0.000253999	0.000128081
+hypothetical protein	1.05865e-05	9.59292e-06
+Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000453222	0.000851912
+Competence protein	9.74567e-06	2.57621e-05
+UniRef50_Q3JTH0	1.1915e-05	5.98558e-05
+UniRef50_D2NF85	0.000128098	3.24311e-05
+ABC transporter related	0.00699331	0.00107602
+Molybdopterin dehydrogenase FAD binding protein	0.000106055	0.00344351
+hypothetical protein, partial	0.000159841	4.18e-05
+Arrestin domain containing 4	1.98106e-05	1.47589e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	1.42487e-05	2.57489e-06
+ABC transporter, ATP binding protein	0.0114951	0.00153006
+Phosphoglucosamine mutase	0.000154877	0.00473836
+Transcription regulator	0.00246915	0.000295604
+Putative L,D transpeptidase YafK	0.00618112	0.000834453
+Biotin synthase Bio B	8.2348e-06	1.27232e-05
+ABC transporter related protein	0.000630632	0.00016236
+UniRef50_C5MZ72	0.00193419	0.000255797
+hypothetical protein	0.000369834	0.000186158
+Phosphoadenosine phosphosulfate reductase	0.00707023	0.0048661
+Type III secretion protein PcrV	0.000272219	0.000183234
+hypothetical protein	5.60296e-06	5.53869e-06
+ABC type proline glycine betaine transport system, permease component	0.00268243	0.000806015
+Polygalacturonase	6.47124e-06	0.00149686
+Glutamate glutamine aspartate asparagine transport ATP binding protein BztD	0.0147253	0.00284876
+hypothetical protein	0.000116086	2.79109e-05
+Silk fibroin 	2.38345e-05	5.44243e-06
+UniRef50_H2WUA1	8.9159e-07	4.96027e-06
+UniRef50_Q1RFT2	0.000305953	0.0028045
+Immunogenic protein	4.6952e-05	5.19104e-06
+hypothetical protein	1.10036e-05	0.000237073
+PREDICTED	1.10226e-05	1.01175e-05
+hypothetical protein	0.000322411	5.12814e-05
+hypothetical protein	0.0022066	0.000252205
+Phage minor tail protein	0.000436446	0.00101757
+Probable membrane protein YCR013c yeast 	9.5907e-05	8.78059e-05
+Bifunctional purine biosynthesis protein PurH	0.000229979	9.24544e-05
+UniRef50_P56117	0.000142671	0.00179307
+PREDICTED	1.88878e-05	9.8424e-06
+UniRef50_A6LTX3	0.000582488	0.000172996
+PA phosphatase	7.23988e-05	1.8969e-05
+L alanine exporter AlaE	0.000878739	0.000221145
+Oligopeptide binding protein OppA	6.06394e-05	0.00193839
+Ribosomal RNA small subunit methyltransferase I	8.18482e-06	1.48328e-05
+arginine ABC transporter ATP binding protein	0.000140763	2.69707e-05
+UniRef50_D5APQ0	0.00968226	0.00270862
+UniRef50_Q4EQ49	0.000781454	0.000122535
+TetR family transcriptional regulator	0.0109272	0.00177096
+ATP synthase epsilon chain	0.00269147	0.0018452
+GTP cyclohydrolase 1 1	0.000117456	5.86097e-05
+hypothetical protein	6.00682e-06	1.26576e-05
+Peptide deformylase 2	9.97059e-06	2.90987e-05
+UniRef50_Q99SN7	0.00767538	0.0019783
+Regulatory protein	9.80352e-06	0.00218171
+Catecholate siderophore receptor Fiu	0.00307253	0.000394731
+Methionine  tRNA ligase	0.00567796	0.00215154
+UniRef50_G0FNR8	0.000181143	2.77292e-05
+Chaperone protein HscA	0.000101621	6.32538e-05
+UniRef50_B9EUP4	1.86099e-05	3.17436e-06
+Alcohol dehydrogenase, zinc binding	0.000594674	0.000139417
+Heat shock protein 71 kDa protein	1.28188e-05	2.52933e-06
+RNA polymerase associated protein RapA	0.00201644	0.000462414
+UniRef50_H8GTZ6	8.39539e-05	0.0112264
+hypothetical protein	0.000144654	4.64763e-05
+Imidazole glycerol phosphate synthase subunit HisF	0.000732672	0.0039715
+sn glycerol 3 phosphate import ATP binding protein UgpC 2	9.49907e-05	3.12026e-05
+50S ribosomal protein L4	0.000478505	0.00017434
+protein pucC, partial	0.000134845	3.84093e-05
+Two component transcriptional regulator, LuxR family	0.000597423	0.00287053
+CreA protein	0.000100659	2.95646e-05
+O sialoglycoprotein endopeptidase	4.16062e-06	1.10153e-05
+UniRef50_R5FR54	1.22375e-05	0.00265811
+hypothetical protein	8.66181e-06	4.78464e-06
+GTP cyclohydrolase 1	3.98145e-05	2.84672e-05
+HAD hydrolase, family IIB	0.000698321	0.00149243
+tRNA  ) methyltransferase	0.0156106	0.0030835
+Proofreading thioesterase EntH	0.00586138	0.000217397
+Sensor histidine kinase	0.000101593	0.000319244
+hypothetical protein	0.000189719	6.05738e-05
+DNA topoisomerase III, partial	3.58649e-06	6.54246e-06
+Flagellar regulator flk	0.00191535	0.00053799
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	6.70036e-05	2.34138e-05
+3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000239284	0.00476228
+2 isopropylmalate synthase 1	8.77057e-06	3.31018e-06
+GTP cyclohydrolase 1	5.01486e-05	3.83321e-05
+putative D amino acid dehydrogenase small subunit, partial	4.26689e-05	1.6352e-05
+Tagatose 1,6 diphosphate aldolase 2	0.0246018	0.00450699
+Pirin family protein	5.03129e-06	5.31746e-06
+UniRef50_D4H966	1.8197e-05	0.000428932
+Peptide deformylase	2.64402e-05	2.27866e-05
+GAF modulated sigma54 specific transcriptional regulator, Fis family	0.00038223	0.00106644
+UniRef50_D4DVN6	3.49212e-06	0.000266929
+Superantigen like protein	0.0120154	0.000590767
+hypothetical protein	7.97357e-05	2.69965e-05
+hypothetical protein	0.000741528	0.000107702
+BglP	0.00033329	0.000544966
+L serine dehydratase	1.40594e-05	1.61076e-05
+Histone like nucleoid structuring protein H NS	0.00234544	0.00615902
+type II secretion system protein E	4.53873e-06	3.59757e-06
+PREDICTED	5.99913e-06	3.4775e-06
+UniRef50_Q9RZQ5	3.38343e-05	0.00874236
+hypothetical protein	6.2972e-06	3.35473e-06
+UniRef50_Q9RZQ2	5.754e-05	0.0165099
+TetR family regulatory protein	0.000713507	0.00547535
+UniRef50_A3PMN1	0.00678058	0.000797904
+16S rRNA methyltransferase	1.82282e-05	1.20076e-05
+UniRef50_U3AG04	0.000216693	1.51526e-05
+tRNA dihydrouridine synthase	0.000275635	0.00542999
+Biotin and thiamin synthesis associated	0.000161622	0.00222352
+UniRef50_W8T306	0.000187318	0.00016236
+UniRef50_UPI0000E48B78	7.17212e-05	3.52373e-05
+UniRef50_G7U5D1	0.000400653	0.000658304
+Fur family transcriptional regulator	2.16329e-05	2.76348e-05
+UniRef50_B7VBB6	0.00079953	0.000341102
+Peptide deformylase 3	2.19451e-05	2.15972e-05
+dihydrolipoamide dehydrogenase	3.93096e-05	2.56044e-06
+50S ribosomal protein L20	3.71649e-05	5.63578e-05
+UniRef50_P76097	0.00317662	0.000538767
+UniRef50_P76091	0.00179837	0.000258408
+UniRef50_P76092	0.00210165	0.000395389
+UniRef50_P76093	0.00222895	0.000869901
+succinylglutamate desuccinylase	0.000154066	3.75029e-05
+2,3 diketo L gulonate reductase	0.00299309	0.000414154
+Sorbitol 6 phosphate 2 dehydrogenase	0.00629888	0.00150743
+UniRef50_M4VE07	0.000365122	5.65596e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0123365	0.000790848
+UniRef50_G0W8W8	2.91755e-05	1.20514e-05
+Rhamnan synthesis F	3.22841e-06	2.75129e-06
+UniRef50_K8BHL7	0.000106543	6.40905e-05
+Cytidylate kinase	1.59365e-05	6.42316e-06
+ malyl CoA thioesterase	0.00657617	0.00360498
+UniRef50_W5XB80	7.03275e-06	5.34809e-06
+Protease DegQ	0.00391302	0.000870059
+PREDICTED	3.98605e-05	1.20815e-05
+hypothetical protein	2.76708e-06	4.00635e-06
+Permease family protein	0.00366598	0.000254348
+hypothetical protein	6.20934e-05	6.1803e-06
+GumN family protein	0.00199411	0.000240254
+hypothetical protein, partial	2.89159e-05	0.000182586
+Protein tex	0.00187387	0.0034103
+Flagellar basal body associated protein FliL	0.00058361	0.000386816
+hypothetical protein	1.81663e-05	5.51538e-05
+Histidine binding periplasmic protein	0.00293156	0.000187442
+Membrane protein, putative	0.00368899	0.000222366
+UniRef50_W0RB11	2.5829e-06	0.000112031
+UniRef50_A3PRR5	0.000996628	0.000102964
+Heme NO binding domain protein	0.00381675	0.000481539
+Beta lactamase	0.00868525	0.000788137
+Non canonical purine NTP pyrophosphatase	5.22392e-06	1.57254e-05
+UniRef50_E4BAZ7	0.000149135	0.00161654
+Allophanate hydrolase subunit 1 and 2	9.45361e-05	0.00478772
+UniRef50_B2A6S5	4.8913e-06	0.000267498
+ATP synthase subunit b	0.00157757	0.000385757
+UniRef50_A0A059IQJ7	1.53172e-05	1.12571e-05
+hypothetical protein	6.78848e-06	4.0767e-06
+Methionine  tRNA ligase MetG	0.000293562	0.000363212
+ABC transporter related	0.000146964	0.000130691
+Long chain fatty acid  CoA ligase	0.00658896	0.0013644
+Glycosyltransferase	0.000112936	0.00031111
+ATP dependent DNA helicase PcrA	0.000235732	0.000385857
+COG1494	0.000206703	3.26311e-05
+Glycerol 3 phosphate acyltransferase	0.00633826	0.00222195
+Probable endopeptidase YafL	0.00357848	0.000747178
+Glyceraldehyde 3 phosphate dehydrogenase 3	0.0101332	0.00162839
+Predicted protein	5.06041e-06	1.6268e-06
+uridylate kinase	1.0574e-05	0.000163908
+hypothetical protein	6.75913e-05	2.74921e-06
+UniRef50_G4SV55	0.000145134	8.61998e-05
+Membrane bound lytic murein transglycosylase A	0.000111201	2.36761e-05
+Glycine cleavage system H protein 2	0.000236451	0.00615551
+hypothetical protein	8.77558e-06	0.000717033
+1 deoxy D xylulose 5 phosphate synthase	0.00287316	0.000368939
+Formyltetrahydrofolate deformylase	0.0026473	0.000986446
+Transcriptional regulator, TetR family	0.000621542	0.00227115
+RNA polymerase sigma70 factor	4.70553e-06	3.32533e-06
+UniRef50_B2UC97	1.3369e-05	1.70141e-05
+Enoyl [acyl carrier protein] reductase [NADH] FabI	6.87762e-06	1.974e-05
+hypothetical protein	7.14464e-06	4.73548e-06
+UniRef50_D6SDD7	0.00280713	0.000450649
+Transcriptional regulator, RpiR family	0.000860089	0.000958549
+Glyceraldehyde 3 phosphate dehydrogenase	0.0278246	0.0133018
+Neutral endopeptidase PepO	0.000164293	0.000720997
+UniRef50_Q1YYL9	7.14842e-05	0.000121015
+PREDICTED	8.05846e-06	1.34241e-05
+UniRef50_B2TKY4	0.000265696	0.00164444
+UniRef50_V4KU43	1.36372e-05	3.26441e-06
+UniRef50_Q2S8X6	0.000920738	0.000401067
+UniRef50_Q9RWK1	0.000295218	0.0298516
+Sugar kinase	0.000180294	0.00188305
+Arginine transport ATP binding protein ArtP	0.00100079	0.000724191
+Protein GrpE	0.0193865	0.00231649
+ABC 2 type transport system permease protein	0.0135743	0.00164071
+Nucleoside diphosphate kinase	2.64457e-05	6.23166e-05
+GTP cyclohydrolase 1	1.59002e-05	1.34294e-05
+Xylulose kinase	0.0108509	0.00242185
+Carbamoyl phosphate synthase large chain, C terminal section	1.95852e-06	6.00673e-06
+2 isopropylmalate synthase	0.000208426	0.00382645
+UniRef50_Z5QLE0	0.000174567	3.87383e-05
+Arginine biosynthesis bifunctional protein ArgJ	6.78483e-06	7.91608e-06
+Putative HTH type transcriptional regulator YhjB	0.00150091	0.000568614
+Putative 3 methyladenine DNA glycosylase	3.0892e-05	1.53607e-05
+Protein translocase subunit SecY	0.013694	0.00143065
+Transcriptional regulator, BolA protein family	3.101e-05	5.15328e-05
+ribonuclease J	3.93761e-05	3.85545e-05
+UniRef50_D6RK40	3.46639e-06	2.89973e-06
+Fis family transcriptional regulator	2.54708e-05	3.47213e-05
+Bacterial regulatory helix turn helix protein, AraC family protein	0.000508134	0.00219059
+UniRef50_D9SLQ3	0.00033987	0.00218922
+UniRef50_D1QZF9	0.00178187	0.000490628
+hypothetical protein, partial	6.34187e-06	5.29599e-06
+UniRef50_M2SBT2	2.09432e-05	1.22418e-05
+UniRef50_W4SVI6	1.56619e-05	4.31127e-06
+UniRef50_T0U4L8	0.000146391	1.95311e-05
+RNaseH ribonuclease	1.08051e-05	1.01671e-05
+UniRef50_J0G9L6	0.0212116	0.00235451
+Sugar efflux transporter	0.000222768	0.00032541
+Two component sensor histidine kinase	0.00704716	0.00110574
+hypothetical protein	1.32789e-05	1.03976e-05
+Ribosomal RNA small subunit methyltransferase H	5.38403e-06	4.97749e-06
+hypothetical protein	3.87322e-06	6.82023e-05
+UniRef50_M1XJ95	0.000552869	0.00124469
+UniRef50_S1SS99	0.000166247	0.000143485
+Peroxiredoxin Q, chloroplastic 	1.12413e-05	0.000146915
+Propionyl CoA carboxylase, beta subunit, putative	0.000219019	0.01904
+Metal dependent phosphohydrolase	0.000246153	0.000561606
+hypothetical protein	8.08824e-06	4.29157e-05
+Adhesin like protein	0.00240667	0.000199396
+hypothetical protein, partial	2.10384e-05	1.93295e-05
+UniRef50_P45475	0.00251768	0.000252003
+Transcriptional activator, TenA family	0.00323589	0.000635496
+Phosphoribosylformylglycinamidine cyclo ligase	0.000120888	0.000104329
+UniRef50_M8BCA5	3.85812e-05	2.64256e-05
+hypothetical protein	0.000226745	2.74296e-05
+Putative L ribulose 5 phosphate 3 epimerase SgbU	0.00447706	0.00247599
+ABC transporter ATP binding protein	0.0102353	0.00176546
+hypothetical protein, partial	0.00010759	5.21491e-05
+UniRef50_I5C4V6	4.24872e-05	1.84138e-05
+Dipeptide and tripeptide permease A	0.00339355	0.000848247
+UniRef50_K6WI65	2.16127e-05	3.99862e-05
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.17697e-05	1.89729e-05
+Putative sgc region transcriptional regulator	0.00276782	0.000370272
+FAD dependent oxidoreductase	3.35699e-05	3.269e-06
+Holliday junction ATP dependent DNA helicase RuvB	1.2027e-05	7.84008e-06
+UniRef50_I0C1C0	0.0124545	0.00163019
+ABC transporter	1.90916e-06	3.79179e-06
+UniRef50_C6SPV4	0.00492058	0.00057287
+Inner membrane protein	8.57085e-05	0.00205065
+Membrane protein, putative	9.92769e-05	0.000214541
+Transcriptional regulator	0.00359088	0.000710056
+UniRef50_X6L6D5	0.000416674	2.93491e-05
+UniRef50_N6V1G3	0.000242012	4.28905e-05
+UPF0380 protein YubP	4.9038e-05	6.86226e-06
+UniRef50_P96704	0.000958999	0.000611819
+Inositol monophosphatase family protein	0.000670419	0.0027241
+RNA polymerase sigma factor RpoD	0.00818173	0.000845262
+16S rRNA methyltransferase	1.5833e-05	2.04379e-05
+Succinate dehydrogenase subunit D	0.00545707	0.000242662
+Uptake hydrogenase small subunit	0.000202982	2.6363e-05
+UniRef50_K2DSW0	4.31789e-05	0.000122312
+UniRef50_G1XZ93	4.84137e-05	1.15013e-05
+Acetyl CoA acetyltransferase, cytosolic 1	5.42299e-06	3.06204e-06
+Multi sensor signal transduction histidine kinase	0.000131483	0.000477224
+Glutathione synthetase	4.60087e-06	5.01862e-06
+30S ribosomal protein S18	0.00315853	0.000766345
+UniRef50_P11290	0.000504554	8.86326e-05
+Transcriptional regulator	0.00268185	0.00259744
+UniRef50_A6V7V9	0.00119325	4.77908e-06
+Chromosome partition protein Smc	0.000125879	0.00354252
+Aminopeptidase AmpS	0.000107409	0.000770429
+UniRef50_Q6A6Z0	0.000136362	0.00249001
+UniRef50_F5M502	0.00209306	0.00058373
+alpha beta hydrolase	6.94491e-05	1.34268e-05
+UniRef50_F5M500	0.00155799	0.000103685
+hypothetical protein	8.73977e-06	5.18344e-06
+Translocase subunit	0.000216662	0.00262118
+D xylose binding periplasmic protein	0.00359911	0.000101797
+NADH dependent enoyl ACP reductase	2.8595e-05	5.55082e-05
+30S ribosomal protein S16	0.0015533	0.000632288
+heme ABC transporter ATP binding protein	9.72521e-06	3.75095e-05
+Myo inositol catabolism protein	0.000262246	0.00412844
+Sensor response regulator hybrid	8.50333e-05	2.31763e-05
+polar amino acid ABC transporter, inner membrane subunit	5.57318e-06	5.71995e-06
+Threonine synthase	7.83278e-05	0.00244165
+CobW related protein	0.000404086	0.00093265
+Ribonuclease M5	0.00547633	0.0014235
+UniRef50_A0A023RUP9	0.000410425	0.00124255
+Argininosuccinate synthase	2.03313e-05	2.28698e-05
+UniRef50_B8A191	1.24016e-05	1.28807e-05
+Response regulator receiver protein	0.011447	0.00134775
+Glutamate  tRNA ligase 1	0.004916	0.000916937
+tRNA specific adenosine deaminase	0.000201526	0.00184068
+UniRef50_D4HA24	9.81647e-06	0.00198106
+Type 4 prepilin like proteins leader peptide processing enzyme	0.000421799	0.000126592
+hypothetical protein	3.73154e-06	3.91194e-06
+Chitin deacetylase	0.00628899	0.000454457
+DNA polymerase II protein 	8.92753e-06	0.000170851
+Cobalamin synthesis protein P47K	4.62866e-06	3.43462e-06
+UniRef50_J3UP44	0.00764144	0.000848864
+NADH ubiquinone oxidoreductase chain 6	9.86794e-05	7.30011e-06
+major facilitator transporter	1.58314e-05	5.83441e-06
+Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.000461614	0.00243408
+Oligopeptide ABC transporter permease protein	0.000379134	0.000574446
+UniRef50_F9YZR2	0.000355537	0.000890265
+Magnesium transporter	0.000321214	0.00104707
+peptide ABC transporter substrate binding protein	5.53349e-05	2.47615e-06
+Isocitrate dehydrogenase kinase phosphatase	0.000641991	0.000371591
+UniRef50_F9YZR4	0.000320472	0.000311753
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.43766e-05	4.0934e-06
+GTP binding protein lepA, putative	1.89088e-05	6.45068e-06
+hypothetical protein	1.11399e-05	2.69092e-06
+Leu Ile Val binding protein homolog 1	4.9104e-05	8.34933e-05
+Putative peroxiredoxin YgaF	1.38218e-05	0.000214782
+Holliday junction ATP dependent DNA helicase RuvB	9.67083e-06	4.93507e-06
+Leucyl phenylalanyl tRNA  protein transferase	0.00166398	1.18688e-05
+Glutamate  tRNA ligase, chloroplastic mitochondrial	3.13759e-06	2.88212e-06
+UniRef50_R0D1R5	1.43665e-05	7.96014e-06
+UniRef50_UPI0003C19684	7.07918e-05	1.49176e-06
+PREDICTED	3.54209e-05	1.86185e-05
+UniRef50_A3PJ06	0.000455934	0.000514467
+Blr5730 protein	0.00131077	1.91776e-05
+hemin ABC transporter ATP binding protein	8.06397e-06	9.24516e-05
+50S ribosomal protein L4, partial	2.40384e-05	0.000138899
+Protein transport protein HofB homolog	0.0034566	0.000455183
+hypothetical protein	1.42957e-05	1.6307e-05
+D amino acid dehydrogenase small subunit	2.91621e-05	1.08053e-05
+Adenylylsulfate reductase	0.000448683	0.000205718
+Recombinase A 	8.06661e-05	5.24794e-05
+Thioesterase superfamily protein	2.27488e-05	3.69049e-05
+Delta aminolevulinic acid dehydratase	0.00921738	0.00131761
+hypothetical protein	0.000924018	0.000408113
+D alanine aminotransferase	0.0114913	0.00193833
+Protein FmtA	0.0153984	0.00254048
+CHAT domain protein	6.07809e-05	0.000105029
+NUDIX family protein	0.000200327	0.000429593
+UniRef50_K2FFD1	4.1702e-06	4.49412e-06
+Phosphatidate cytidylyltransferase	0.000107868	0.000221334
+Mevalonate kinase	0.0210111	0.00333558
+Expressed protein 	0.000317803	4.9741e-05
+PREDICTED	5.07493e-05	1.94425e-05
+Peptide chain release factor 1	0.00924211	0.00328224
+Phosphate ABC transporter, periplasmic phosphate binding protein	4.61414e-06	4.4916e-06
+hypothetical protein	6.89676e-05	0.000117942
+hypothetical protein	7.92288e-06	1.10245e-05
+Mlr6247 protein	0.0122888	0.00104451
+UniRef50_Q9RZ42	0.000363007	0.0298587
+alkaline phosphatase	6.73712e-06	9.06379e-07
+UniRef50_Q9RZ45	0.000100156	0.0116686
+UniRef50_Q9RZ47	0.000376242	0.0327345
+UniRef50_Q9RZ48	0.00027179	0.0536039
+Probable nitronate monooxygenase	0.0160418	0.000761845
+Transcriptional regulator, repressor of sugar transport operon	0.00496969	0.00167787
+4 hydroxy tetrahydrodipicolinate synthase	0.000125734	0.00334329
+UPF0246 protein PANA_0658	2.91269e-05	2.19523e-05
+ThiC associated domain protein	2.15926e-05	5.02717e-05
+UniRef50_I6T523	0.00845919	0.00177967
+hypothetical protein	9.0742e-06	1.364e-05
+sulfate ABC transporter ATPase	7.32965e-05	2.57355e-05
+hypothetical protein	3.34155e-06	5.56635e-05
+Methionine  tRNA ligase	1.00594e-05	9.3593e-06
+Anaerobic dimethyl sulfoxide reductase chain A	0.00377009	0.000739401
+Altronate oxidoreductase	0.00233051	0.000178033
+Penicillin binding protein 4	0.00800313	0.00195305
+Histidinol dehydrogenase	0.0138175	0.00142029
+Replication initiator protein	3.16096e-05	2.7551e-06
+UniRef50_V9FLN1	2.22481e-05	0.000513335
+UniRef50_Q2VP64	9.25688e-06	7.57025e-06
+Modification methylase BabI	0.00576938	0.00123242
+UniRef50_D2NA34	0.00857951	0.00158695
+Periplasmic oligopeptide binding protein	0.00234935	0.000239724
+glycerophosphoryl diester phosphodiesterase	5.04775e-05	1.0116e-05
+6 phosphogluconolactonase	0.000542089	0.00324483
+RNA polymerase, sigma 28 subunit, FliA WhiG	0.00761442	0.00171983
+PREDICTED	7.66961e-05	2.62087e-05
+Staphylococcal accessory regulator	0.0102	0.000410743
+Diguanylate cyclase phosphodiesterase	0.000303487	0.000356824
+biotin attachment protein	2.97862e-05	1.47601e-05
+Respiratory nitrate reductase, gamma subunit	0.0155341	0.00381026
+UniRef50_Q21JR5	3.55076e-05	2.053e-05
+D alanine  D alanine ligase	0.000298817	0.00259175
+hypothetical protein	5.6783e-06	4.30858e-05
+UniRef50_B7KZS8	2.95506e-05	1.08276e-05
+MULTISPECIES	1.22806e-05	1.54837e-05
+two component LuxR family transcriptional regulator	1.37039e-05	1.25522e-05
+Transposase, IS4 family	0.00147271	0.00063291
+Bifunctional protein FolD	7.25852e-06	1.2424e-06
+Flagellar motor switch protein FliG	0.00174028	0.000233113
+Diacetyl reductase [ acetoin forming]	0.00225737	0.000799246
+UniRef50_F0YAY5	0.000221657	7.43311e-05
+3 oxoacyl [acyl carrier protein] synthase 3	3.43496e-05	0.00227128
+Adenylate kinase	0.000206991	0.000203597
+NADPH	8.32121e-06	4.15711e-05
+UniRef50_I0UU63	1.65571e-06	4.07896e-06
+Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.0116833	0.00205053
+Isoleucine  tRNA ligase	0.0028415	0.00043673
+hypothetical protein, partial	3.31222e-05	1.46129e-05
+Catalase 1	1.40795e-05	2.24503e-05
+Ribonuclease E	0.00838101	0.000560739
+GTP cyclohydrolase 1	5.44623e-05	2.03688e-05
+Tyrosine protein kinase wzc	0.00318924	0.000434212
+30S ribosomal protein S2	1.16813e-05	5.37438e-06
+UniRef50_W1MMZ8	3.65083e-05	7.70368e-05
+phospholipase C	3.05608e-06	2.38542e-06
+UniRef50_P32151	0.00348233	0.000500373
+UniRef50_B4D0M3	5.76944e-05	4.33357e-06
+hypothetical protein	4.40745e-06	0.000105723
+hypothetical protein	3.19143e-05	8.63083e-06
+diaminopimelate decarboxylase	4.25731e-06	5.1319e-05
+Adhesin MafB2	0.000207746	0.00134648
+hypothetical protein, partial	0.00105899	0.000185893
+UniRef50_V6F621	1.61063e-05	2.89786e-05
+hypothetical protein TREMEDRAFT_69682	3.34658e-06	3.52185e-06
+hypothetical protein	1.32706e-06	5.69618e-06
+Competence protein ComA	0.000198573	0.00201101
+UniRef50_R8HF68	5.16157e-06	0.000268817
+hypothetical protein	6.4828e-06	6.81283e-06
+transposase	1.36317e-05	0.00135099
+UniRef50_R1CYW6	8.57039e-06	3.20277e-05
+5 hydroxyisourate hydrolase	3.4693e-05	2.43519e-05
+Transcriptional regulator, LysR family	0.00019268	0.000150142
+UniRef50_UPI0002C376E7	5.57785e-05	3.11947e-05
+MULTISPECIES	8.40844e-06	3.68023e-06
+UniRef50_A5ISN2	6.65052e-05	7.08643e-05
+Mg chelatase subunit ChlI	1.20525e-05	4.407e-05
+UniRef50_X6KUI6	7.43551e-06	3.12187e-05
+UniRef50_Q849Z0	0.00328458	0.000392074
+UniRef50_G6A195	3.66122e-05	3.13158e-05
+UniRef50_P46331	0.0282313	0.00340044
+UniRef50_B6JCL5	0.000653238	0.00307413
+UniRef50_F0P804	0.021068	0.000894493
+UniRef50_W1YTI2	0.000152143	0.00129542
+Probable iron export ATP binding protein FetA	0.00339057	0.000853391
+Malate permease, putative	0.00447459	0.00131193
+hypothetical protein	0.000550233	3.69885e-05
+ABC type amino acid transport system, permease component	0.00549509	0.00106823
+Type I secretion membrane fusion protein, HlyD family	0.00527381	0.00103724
+GMP synthase [glutamine hydrolyzing]	2.18747e-05	2.31749e-05
+4 hydroxy tetrahydrodipicolinate reductase	0.000316325	0.000715417
+hypothetical protein	2.27797e-05	1.74362e-05
+UniRef50_G5JDC1	1.64669e-05	3.08981e-05
+Acyl CoA dehydrogenase FadE23	0.000708503	7.85519e-05
+PREDICTED	5.60675e-07	8.18583e-06
+lysyl tRNA synthetase	3.70944e-06	2.6617e-06
+Protein smf	0.00300958	0.000474357
+cell division protein FtsZ	7.8752e-06	1.35801e-05
+Cysteine  tRNA ligase	4.09175e-06	6.09559e-06
+hypothetical protein	2.07901e-05	3.25519e-05
+PREDICTED	1.00872e-05	3.97998e-06
+Transposase related	3.78678e-05	0.0216861
+porin	3.43091e-05	6.04571e-06
+UniRef50_J6J4P6	0.000106689	5.82872e-05
+acetolactate synthase	8.31566e-06	0.000182255
+Tim44 family protein	0.000339111	0.000139852
+UniRef50_C5QYU7	0.000539635	2.9705e-05
+Alpha beta hydrolase family protein	0.000931239	0.000160905
+NAD+ synthetase	0.000186974	0.00306497
+hypothetical protein	2.7204e-05	2.0431e-05
+Coenzyme PQQ synthesis protein D	0.000572974	0.000225067
+Beta tubulin cofactor d, putative	2.89682e-05	2.67621e-05
+MULTISPECIES	5.79846e-05	0.00205201
+Putative aminopeptidase MJ0555	0.002703	0.000846815
+Phage prohead protease	0.000341674	0.000191439
+MutE	0.00286814	0.000120194
+magnesium transporter	0.000434447	8.90153e-06
+hypothetical protein	9.23458e-06	0.00100536
+cation diffusion facilitator family transporter	6.92197e-06	2.11667e-05
+Branched chain amino acid transport family protein	3.0929e-05	2.03886e-05
+Secreted lipoprotein	0.000116617	0.000135118
+Fumarate reductase cytochrome b subunit	0.00013198	0.00511278
+UniRef50_A0A023Z2T1	0.000131767	2.00412e-05
+L serine dehydratase 2	0.0063332	0.00139836
+Phosphoheptose isomerase	7.906e-06	6.22434e-06
+L serine ammonia lyase beta subunit, partial	1.26358e-05	8.71886e-05
+Ferrous iron transport protein B	0.00432255	0.00130895
+Mll2216 protein	0.00487312	0.00101497
+Putative  citramalate synthase CimA	0.00665615	0.000655496
+UniRef50_G3NJA9	3.03953e-06	1.28251e-06
+3 phosphoglycerate dehydrogenase	5.4657e-06	2.8664e-06
+DEAD DEAH box helicase family protein	0.000664184	0.000948418
+hypothetical protein	5.19098e-05	3.57576e-05
+4 deoxy L threo 5 hexosulose uronate ketol isomerase	6.35839e-06	4.88765e-06
+N anthranilate isomerase	0.00875101	0.000282787
+Lipoprotein releasing system ATP binding protein LolD	3.25489e-05	1.89923e-05
+Diguanylate cyclase	0.000184323	0.000835437
+N acetyl gamma glutamyl phosphate reductase	1.76956e-05	1.45396e-05
+hypothetical protein, partial	9.49755e-06	6.58975e-06
+Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	6.91426e-06	3.12923e-06
+hypothetical protein	6.75115e-06	9.96443e-05
+UniRef50_K0R3E3	2.14981e-05	2.86048e-05
+Translation initiation factor IF 3	0.010932	0.00172132
+hypothetical protein	2.62625e-06	0.000121483
+UniRef50_A6LSJ0	0.000283397	0.000382372
+UniRef50_Q4MH05	5.58464e-06	4.9438e-06
+UniRef50_A3M6B4	0.000214818	0.00219285
+UniRef50_R0FJ43	0.000110498	3.54368e-05
+DNA topoisomerase 1	1.60577e-06	2.44988e-06
+UniRef50_A3M6B3	0.000273313	0.00291747
+UniRef50_A3M6B2	0.000303939	0.00486908
+Replicative DNA helicase	0.0319004	0.00776688
+Valine  tRNA ligase	7.34336e-06	2.1131e-06
+hypothetical protein	2.44273e-06	6.81653e-06
+UniRef50_G7DHM9	2.73273e-05	4.07138e-05
+ABC transporter ATP binding protein, partial	0.000162715	1.71507e-05
+LysR family transcriptional regulator	0.000156677	4.71815e-05
+Predicted protein	2.18432e-05	2.05205e-05
+IS1167, transposase domain protein	0.000109938	0.000229311
+UPF0735 ACT domain containing protein SA1469	0.0102876	0.000833439
+UniRef50_A6LZA0	0.000905216	0.000478022
+UniRef50_Q6F925	0.000324647	0.00393883
+ATP dependent Clp protease proteolytic subunit	0.000761773	0.00054794
+GerA spore germination protein	0.000170736	0.000714895
+UniRef50_A5UP49	0.00214661	0.000178854
+UniRef50_A3PFM0	0.00193556	0.000440845
+UniRef50_Q1RB71	0.000594931	0.000250796
+Antibacterial protein 3 homolog	0.0399013	0.00281792
+UniRef50_U9FRQ4	0.00015812	0.000287966
+UniRef50_P37017	0.00386911	0.000235656
+ABC transporter ATP binding protein	3.66934e-05	4.75523e-05
+hypothetical protein	2.13213e-05	7.74417e-05
+UniRef50_T1XUW5	0.00739497	0.000327386
+Enterochelin esterase	0.00211821	0.000298639
+Quinohemoprotein alcohol dehydrogenase protein	3.5076e-05	1.17094e-05
+hypothetical protein	1.23047e-05	1.08897e-05
+metal ABC transporter permease	1.09267e-05	3.03627e-05
+MarR family regulatory protein	0.0120671	0.000874748
+PREDICTED	3.35636e-06	8.97849e-05
+UniRef50_Q8E035	0.00131514	6.34175e-06
+hypothetical protein	8.87405e-05	1.91401e-05
+UniRef50_R9ZBZ3	0.00229311	0.00019908
+UniRef50_R5RCP3	6.95791e-06	0.00124511
+hypothetical protein, partial	0.000153639	4.91111e-05
+Folylpolyglutamate synthase    Dihydrofolate synthase (EC 6.3.2.12)	0.000125266	0.00112764
+UniRef50_B9EUD8	4.10807e-05	3.04874e-05
+Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.00411232	0.000430919
+Catalase B	1.5553e-05	1.65461e-05
+DEAD DEAH box helicase like protein	2.24173e-06	2.25757e-05
+TonB denpendent receptor	0.000715922	0.000707339
+Predicted transcriptional regulator	0.00266551	0.000472599
+hypothetical protein	2.2126e-05	2.88792e-06
+UniRef50_S1T170	0.000631029	0.000534434
+Transposase	2.6397e-05	1.60238e-05
+Expressed protein 	3.37391e-05	3.28315e-06
+UniRef50_U3TBQ8	0.000446866	0.00306216
+HTH type transcriptional regulator SarR	0.00338542	0.000262529
+Ethanolamine permease	0.00130363	0.00364075
+short chain dehydrogenase	3.02646e-05	1.65967e-05
+UniRef50_P39369	0.00191552	9.74863e-05
+Phosphomethylpyrimidine synthase	2.86196e-06	0.00180287
+MULTISPECIES	2.54072e-06	2.14782e-06
+guanosine 3,5 bis 3 pyrophosphohydrolase	7.5149e-06	5.33542e-06
+Na H(+) antiporter subunit F1	0.000795689	0.000313933
+Lipopolysaccharide 1,6 galactosyltransferase	0.00243155	0.000686737
+hypothetical protein	5.18859e-05	1.65084e-05
+Xylose import ATP binding protein XylG	0.00236645	0.000687635
+UniRef50_I2AGX0	3.31271e-07	1.49376e-05
+Lipoprotein	5.48782e-06	4.51877e-06
+Probable serine acetyltransferase	9.37586e-06	1.47938e-05
+UniRef50_V0UHK4	0.000417745	0.000159232
+Tartrate dehydrogenase	0.00151654	0.000179742
+UniRef50_D6AP01	0.000138091	0.001147
+hypothetical protein	1.69649e-05	3.14213e-06
+Glycosyl hydrolase, alpha L fucosidase	0.000104626	0.00341236
+Methyl accepting chemotaxis sensory transducer	0.00194284	0.000577795
+Hydrogenase expression protein HypA	0.000214948	5.76939e-05
+hypothetical protein	0.000107224	3.09796e-05
+hypothetical protein	3.88968e-06	1.22343e-05
+UniRef50_R5MTV1	0.000114037	2.10439e-05
+CoA substrate specific enzyme activase	0.00014542	0.00369661
+Replication initiation protein RepC 	9.22337e-05	4.64233e-05
+Phosphoribosylformylglycinamidine synthase 1	0.000502095	0.00174362
+Potassium transporter	0.00055363	0.000274331
+hypothetical protein	4.5226e-05	1.57815e-05
+Arginine ornithine antiporter ArcD	0.000250654	0.00296272
+UniRef50_H6CP54	2.24979e-05	0.000110971
+MmoB DmpM family	0.0240664	0.000981255
+UniRef50_M1N619	0.00027721	0.000343352
+UniRef50_U3T2N9	0.000228945	0.005071
+Major Facilitator Superfamily protein	0.00253489	0.00113372
+hypothetical protein	3.62177e-05	1.64885e-05
+Cell division protein FtsZ	5.46227e-06	2.49498e-05
+hypothetical protein	3.44712e-05	2.66391e-05
+Membrane protein	0.000357437	4.84512e-05
+hypothetical protein	3.64007e-05	2.06176e-05
+JmjC domain containing protein, putative	6.6597e-06	3.19803e-06
+NAD transhydrogenase subunit beta	0.000835518	0.000129239
+membrane protein	5.91151e-06	3.16155e-05
+Transcriptional regulatory protein RtcR	0.00299089	0.00108831
+UniRef50_D3E234	0.00339222	0.000208839
+Staphylococcal secretory antigen SssA	0.0363863	0.00116744
+TonB dependent vitamin B12 receptor	0.000537713	0.000311931
+orotate phosphoribosyltransferase	1.29693e-05	3.35217e-05
+Probable ABC transporter permease protein YphD	0.00550944	0.000236338
+Sporulation protein YtaF	0.00105686	0.00041762
+hypothetical protein	2.04032e-05	1.4505e-05
+UniRef50_T2ES40	0.00223998	0.00123859
+Putative ribosomal RNA large subunit methyltransferase YwbD	0.000612515	0.000808704
+Transcriptional regulator, AsnC family	0.000343417	0.002994
+UniRef50_N1ZJ21	0.000165495	1.46652e-05
+succinate dehydrogenase	4.36237e-05	0.000124717
+Holliday junction ATP dependent DNA helicase RuvA	1.22338e-05	4.65649e-05
+UniRef50_N6V8V2	0.0002178	2.87366e-06
+UniRef50_A3N3J7	0.00538879	0.000553872
+Alginate production protein AlgE	0.000783785	0.000331821
+response regulator receiver protein	5.67951e-06	5.2279e-06
+UniRef50_P38102	0.000823308	0.000277114
+N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase	1.02607e-05	9.51642e-05
+Sulfide dehydrogenase subunit beta	0.000343417	0.00147206
+UniRef50_A6LU85	0.000142004	0.000505322
+hypothetical protein	0.000213324	0.000214223
+Electron transport complex subunit C	0.000152861	9.17344e-05
+50S ribosomal protein L18	0.0220634	0.0169561
+hypothetical protein	4.00429e-06	1.18304e-05
+Periplasmic binding protein	1.54462e-05	8.72143e-05
+prephenate dehydrogenase	5.46119e-06	8.10874e-05
+flagellar biosynthesis protein FlhB	0.00132086	7.55559e-05
+Acyl homoserine lactone synthase	7.04019e-06	6.32321e-06
+hypothetical protein	0.000206888	5.34629e-06
+GTP cyclohydrolase I	3.9948e-06	1.28468e-05
+UniRef50_A0A017HMU3	0.000220747	1.68522e-05
+UniRef50_E8TGI4	0.00019715	4.26694e-05
+Lipoate protein ligase A	0.00151417	0.000686694
+Glycosyltransferase	0.00271679	0.000189632
+Serine protein kinase RsbW	5.30477e-05	0.000397278
+Phosphoribosylformylglycinamidine synthase 2	4.48532e-05	0.00269478
+PTS lactose transporter subunit IIC	1.43342e-05	1.50013e-05
+Ribosomal RNA small subunit methyltransferase E	0.000324645	0.00365033
+Methylenetetrahydrofolate reductase	0.000145692	0.0185344
+hypothetical protein	0.000123087	6.32745e-06
+LysR family transcriptional regulatory protein	0.000182576	0.00252554
+ACP S malonyltransferase	6.17116e-06	2.62346e-05
+Purine NTPase involved in DNA repair, Rad50	0.00234846	0.000100395
+Acetyltransferase, putative	0.000179015	0.0173319
+Inner membrane protein	8.79694e-05	0.000117152
+UniRef50_W7D2J3	2.10105e-05	1.0046e-05
+UniRef50_I6WPK4	6.14971e-06	2.12922e-05
+UniRef50_U4V0C7	0.00123141	8.79813e-05
+Uridylate kinase	0.000298085	0.00177593
+hypothetical protein	5.04598e-05	1.05965e-05
+hypothetical protein	2.72969e-05	2.72378e-05
+Sulphur oxidation protein SoxZ	0.00347917	0.00017957
+transcriptional regulator, partial	0.000102268	2.97788e-05
+Membrane protein	7.43979e-05	1.31816e-05
+DNA mismatch repair enzyme	0.000163934	0.00405872
+Sulfite reductase flavoprotein alpha component	0.00940558	0.00110485
+hypothetical protein	0.000891736	2.61752e-05
+Transposase IS116 IS110 IS902 family protein	0.000489664	0.00151161
+MFS transporter	2.50378e-06	2.07781e-06
+hypothetical protein	1.18904e-05	0.000196366
+hypothetical protein	6.7547e-05	7.27201e-06
+UniRef50_O27587	0.00280767	0.000107398
+hypothetical protein	4.87411e-06	3.98992e-06
+Monofunctional glycosyltransferase	0.0203784	0.00115401
+hypothetical protein	4.1692e-05	4.21241e-06
+Beta hexosaminidase	0.00390915	0.000588564
+serine threonine protein phosphatase	5.88432e-06	5.24698e-06
+UniRef50_J0JV07	0.000706046	0.000648729
+Calcineurin like phosphoesterase	0.000111317	0.00241467
+Hypothetical CdoFa	1.57405e-05	4.87919e-06
+Inner membrane translocator	0.000525128	0.00142108
+Propionyl CoA carboxylase alpha chain, mitochondrial	7.26933e-06	1.80856e-06
+UniRef50_P77460	0.00189479	0.000286081
+Metallophosphatase	0.000130445	0.00272359
+Peptidase, M16 family	0.0142583	0.00221566
+Conserved domain protein	0.000136439	6.72005e-05
+Nuclease, putative	2.51807e-05	4.1915e-06
+Protein fecR	4.85102e-06	4.76113e-06
+hypothetical protein	0.00105017	5.99331e-05
+ATP dependent RNA helicase	2.56129e-06	0.000466678
+Signal transduction histidine protein kinase ArlS	0.0143188	0.00118312
+UniRef50_Q3IV94	0.0329961	0.000747534
+UniRef50_Q3IV95	0.010029	0.000419311
+UniRef50_Q3IV96	0.00881741	0.00227444
+UniRef50_Q3IUU5	0.0173022	0.00279614
+UniRef50_Q3IV90	0.012396	0.00157111
+UniRef50_Q3IV91	0.0139021	0.000745155
+UniRef50_Q3IV92	0.0144162	0.00282057
+hypothetical protein	9.27035e-06	0.000119266
+UniRef50_J9NYT9	1.79311e-05	1.51314e-05
+UniRef50_M9RZ09	0.00104396	0.000286331
+UniRef50_A7HTG1	1.49445e-05	4.1741e-06
+UniRef50_Q3JGL0	0.000142404	8.98126e-05
+mannose 1 phosphate guanylyltransferase, partial	1.08391e-05	1.9284e-06
+UniRef50_W5YSI9	6.3931e-05	3.04081e-05
+UniRef50_Q3IUU4	0.0275347	0.00279965
+UniRef50_I0EQF7	0.000186626	0.00123014
+LuxR family transcriptional regulator	3.73117e-05	6.11062e-06
+surfeit locus 1 family protein	1.22632e-05	1.17374e-05
+Chemotaxis protein methyltransferase 3	3.35046e-05	1.24358e-05
+UniRef50_D3QHI5	0.0092837	0.000374193
+Thiamine monophosphate kinase	0.000105833	0.00191386
+Isoform 1 of S adenosylmethionine synthase	0.00010562	0.000352443
+Sigma 54 modulation protein   SSU ribosomal protein S30P	0.0190992	0.00109902
+UniRef50_D3QHI9	0.000745953	0.000152955
+Ethanolamine utilization protein EutJ	0.00363797	0.000233442
+UniRef50_Q1GW94	0.000110826	1.49698e-05
+Phosphopantetheine adenylyltransferase	0.00135643	1.33729e-05
+Expressed protein 	5.97792e-05	5.44257e-05
+Ribosomal RNA small subunit methyltransferase G	4.35269e-05	2.63312e-05
+DNA gyrase subunit B	8.20711e-06	4.78501e-06
+Putative purine permease CPE0397	0.000290927	0.000146095
+UniRef50_J4UL42	2.51766e-05	4.77956e-06
+UniRef50_M1NX79	0.00028166	3.01951e-05
+Phosphatidylglycerophosphate synthase	0.000736968	0.00342196
+UDP N acetylmuramate  L alanine ligase	1.27734e-05	5.94873e-06
+UniRef50_A3VYM7	0.000311513	2.74608e-05
+UniRef50_Q02MT4	0.000433324	0.000111748
+Elongation factor P 1	0.00395398	0.0039165
+Predicted Fe S cluster redox enzyme	4.77112e-05	0.00206411
+Nonfunctional major facilitator superfamily MFS_1	0.00210379	8.70008e-05
+Tryptophan synthase alpha chain	0.00518996	0.00165888
+UniRef50_Q9RX01	0.00246991	0.00535158
+hypothetical protein	1.08683e-05	4.14409e-05
+Serine acetyltransferase	1.24935e-05	0.000165591
+hypothetical protein	9.9499e-06	2.17025e-05
+Probable adenylyl sulfate kinase	8.56165e-06	9.90364e-06
+50S ribosomal protein L11	0.000764883	0.00301819
+beta methylgalactoside transporter permease	1.03712e-05	4.40017e-06
+Triosephosphate isomerase	1.68916e-05	5.05698e-05
+UniRef50_Q1MYB0	4.85737e-06	2.5259e-05
+Zinc finger protein	0.000467429	0.000337537
+hypothetical protein	9.01559e-06	8.34055e-05
+UniRef50_B9ADZ7	0.000804391	0.000249402
+TorCAD operon transcriptional regulatory protein TorR	0.00106989	0.000718214
+UniRef50_R1CDN5	1.98317e-05	9.98815e-06
+adenine deaminase	2.98432e-06	5.25556e-05
+Type 2 DNA topoisomerase 6 subunit A	0.00301401	0.000524933
+hypothetical protein BC1G_05447	4.0534e-05	0.000156085
+PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM	0.00544683	0.000417329
+Elongation factor 2	0.00339481	0.00022356
+Zinc import ATP binding protein ZnuC	2.13283e-05	9.25865e-06
+hypothetical protein	5.2158e-05	2.78417e-05
+Transcriptional regulator	0.000182576	0.000360582
+DNA topoisomerase 1	0.00520308	0.000412788
+UniRef50_Q3JX48	4.07203e-05	3.34229e-05
+UniRef50_G1Y3U3	3.09768e-05	0.000145524
+Thymidine kinase	0.00032834	0.000595872
+uracil phosphoribosyltransferase	7.45462e-06	2.48482e-05
+N acetyl gamma glutamyl phosphate reductase	1.09755e-05	0.000109804
+Enoyl CoA hydratase isomerase	0.000300138	0.000746627
+phosphoenolpyruvate protein phosphotransferase	2.90376e-06	0.000122242
+hypothetical protein	1.41775e-05	7.50155e-06
+hypothetical protein, partial	5.52347e-05	2.91583e-05
+UniRef50_UPI0003C10252	0.000488452	2.67987e-05
+COG1166	0.000814615	0.000619681
+Anthranilate synthase component 2	0.00547063	0.00237036
+hypothetical protein	9.67537e-06	8.22617e-06
+UniRef50_E3BCS0	1.03524e-05	0.000762518
+UniRef50_L7WT69	0.00755563	0.000402961
+UniRef50_P54425	0.0227182	0.00270392
+Tat pathway signal sequence domain protein	0.00517681	0.00214214
+UniRef50_T0ZN95	0.0001085	0.000828487
+UniRef50_P32677	0.00189276	0.000758409
+IS911 ORF2	1.33481e-05	1.93092e-05
+Putative RNA  2 O) methyltransferase	0.00152483	0.00547568
+RNA polymerase, sigma 24 subunit, ECF subfamily	0.00656585	0.000282342
+D isomer specific 2 hydroxyacid dehydrogenase NAD binding	0.000211596	0.00339551
+DNA adenine methyltransferase YhdJ	0.00308564	0.000938113
+Predicted biotin biosynthesis protein	0.000611906	0.000429722
+Pyrroloquinoline quinone synthase	0.00554272	0.00176756
+Iron dicitrate sensor protein FecR	3.19442e-05	7.70458e-06
+FolC	0.000272144	0.000415662
+UPF0425 pyridoxal phosphate dependent protein Msp_0916	0.00249216	0.000159344
+Phospholipase carboxylesterase	3.16923e-05	0.000359669
+Glycine oxidase, putative	0.00672315	0.000994554
+Heat shock protein SSC1, mitochondrial	0.000194871	0.00262964
+Tandem lipoprotein	0.000952011	2.01488e-05
+Transcriptional regulator	0.00815785	0.00357838
+Glycine  tRNA ligase beta subunit	0.00647719	0.00109873
+DNA polymerase IV	3.96551e-06	5.0803e-06
+hypothetical protein	7.93766e-06	5.76173e-05
+Putative DNA binding protein	0.00476254	0.00382624
+ATM1 type heavy metal exporter	0.00296376	0.000522476
+Phosphoglucosamine mutase	0.000635266	0.000239776
+GntR family transcriptional regulator	2.55758e-05	1.745e-05
+Membrane protein	0.000785303	0.000204521
+UniRef50_A6LWP9	0.000173777	0.000599817
+UniRef50_C8XAV6	5.27713e-05	1.07431e-05
+2 isopropylmalate synthase	2.57782e-06	9.22024e-06
+Multisubunit potassium proton antiporter, PhaD subunit	0.00421281	0.000369467
+UniRef50_A6LWP5	0.00018094	0.000788174
+LysR family transcriptional regulator	0.000204796	0.000280956
+Glutamate 5 kinase	7.83906e-06	3.22744e-06
+UniRef50_A1ZV16	6.06338e-06	0.000347258
+Cytochrome b	0.00108971	0.000154828
+Phosphoenolpyruvate carboxykinase [GTP], mitochondrial	0.00022459	0.00496924
+PTS enzyme II glucose specific factor IIABC component	0.00394949	0.00123504
+Exotoxin	0.0105354	0.000937901
+Peptide deformylase	0.00254646	0.0029605
+Flagellar protein FlgJ, putative	4.34369e-05	1.27474e-05
+hypothetical protein	8.61955e-05	5.61525e-05
+Predicted protein 	7.00032e-07	9.4514e-05
+UniRef50_D8JDR1	0.000104735	0.00393954
+UniRef50_A3PJK1	0.00263813	0.00131059
+UniRef50_O05389	0.000158999	0.000866082
+UniRef50_A3PJK2	0.00431615	0.000816226
+dimethyladenosine transferase, partial	8.59689e-06	1.8478e-05
+ketodeoxygluconokinase	1.09736e-05	7.3476e-06
+UniRef50_R6XMV8	8.03109e-05	8.86264e-06
+Nucleoside diphosphate kinase	3.93591e-05	5.03648e-05
+HupH hydrogenase expression protein	0.000139935	1.30841e-05
+DegT DnrJ EryC1 StrS family protein	3.40004e-06	5.55316e-06
+Phi105 orf 44 like protein	0.00255573	0.000362036
+ABC transporter substrate binding protein	0.00282982	0.000490586
+UniRef50_I4L8Z6	5.32536e-05	4.75708e-05
+hypothetical protein	3.01003e-05	5.99955e-06
+Transporter, RhaT family, DMT superfamily	0.000114863	0.000100095
+UniRef50_R7PSP1	0.00255179	0.000345768
+Homocysteine S methyltransferase	0.000201526	0.00233468
+UniRef50_B3T1S1	0.000619154	0.00116809
+hypothetical protein	1.39931e-05	1.38716e-05
+PREDICTED	8.00649e-05	7.99358e-05
+UniRef50_F9Y4R9	0.000423341	0.000373779
+Adhesin like protein	0.00320162	0.000388224
+UniRef50_U7XVU8	4.12614e-05	0.00010376
+Thiamine phosphate synthase	0.00175395	0.00152061
+GWSI6489	7.69547e-05	0.00289027
+UniRef50_K1ZGG7	0.000390602	1.34521e-05
+UniRef50_B7UWX0	0.000154484	5.28968e-05
+Serine  tRNA ligase	4.03984e-06	6.99898e-06
+hypothetical protein	4.8176e-05	1.1116e-05
+UniRef50_A4WXV4	0.00337541	0.00406285
+hypothetical protein	3.17076e-05	0.000171394
+LacI family transcriptional regulator	0.00011181	0.00452022
+Zinc binding dehydrogenase	0.000299086	0.00132257
+UniRef50_A0B8A2	0.002288	0.000175485
+Glyoxylate carboligase	0.000523685	6.11613e-05
+Aspartate  tRNA ligase	2.88314e-06	4.84987e-06
+UniRef50_Q88MC6	0.000249295	2.34954e-05
+UniRef50_G8AMM6	0.000280547	0.000100589
+hypothetical protein	6.91116e-06	6.43462e-06
+2 isopropylmalate synthase	1.50251e-05	5.40356e-06
+UniRef50_Q57060	0.00864796	0.00319571
+UniRef50_X5X5U8	0.0017609	6.33604e-05
+Putative transcriptional regulator, MerR family protein	2.0825e-05	0.000168265
+hypothetical protein	2.24431e-05	1.79948e-05
+hypothetical protein	3.82778e-06	5.29619e-06
+hypothetical protein	4.79854e-05	2.76626e-06
+UniRef50_A7IB90	1.81471e-05	5.05367e-06
+hypothetical protein	1.30039e-05	5.73858e-06
+UniRef50_W4RTV0	1.61584e-05	1.36802e-05
+PREDICTED	2.76811e-05	1.33522e-06
+Cell envelope related transcriptional attenuator	4.12421e-06	8.20184e-06
+Cytochrome c1	0.0119492	0.00221329
+DNA directed RNA polymerase subunit alpha	2.83495e-05	0.00637654
+hypothetical protein, partial	5.26023e-05	3.65011e-05
+hypothetical protein	5.24054e-05	2.42488e-05
+Receptor protein	0.00370253	0.00103779
+Pyridine nucleotide transhydrogenase subunit alpha 	2.1294e-05	2.11828e-05
+Ribosomal RNA large subunit methyltransferase F	0.00054209	9.66468e-05
+glutamine ABC transporter ATP binding protein	7.92461e-05	3.73325e-05
+Sensor protein GtcS	0.000214094	0.000441604
+UniRef50_A8IMG6	9.38037e-06	8.24225e-06
+NADH quinone oxidoreductase subunit F	3.15604e-06	4.25403e-06
+UniRef50_A3CP57	0.0080864	0.000437505
+Appr 1 p processing domain protein	4.77275e-06	4.84884e-05
+Bifunctional purine biosynthesis protein PurH	0.019503	0.00231722
+Molybdopterin biosynthesis protein MoeA1	0.00289705	0.000229264
+Cysteine synthase A	0.000115918	0.00282307
+UniRef50_F9ZDK1	3.00552e-05	3.38197e-06
+8 amino 7 oxononanoate synthase	0.00356452	0.00171057
+UniRef50_B0VSH8	0.00012829	0.00557514
+UniRef50_D1WNS1	3.37828e-05	0.000831341
+UniRef50_V9Y3L4	0.000359193	0.000168038
+Asparagine synthetase A	4.12866e-05	1.67975e-05
+Putative transposase	5.92163e-06	0.000431852
+Biotin requiring enzyme	7.17588e-05	0.000991104
+Quinolone resistance protein norA	0.000608854	0.0013634
+UniRef50_U3JHG3	1.23853e-05	2.53627e-06
+Transcriptional regulator, TetR family	0.000194537	0.000345992
+DNA polymerase III subunit beta	0.000229476	0.00314113
+adenosylcobinamide amidohydrolase	7.35485e-05	5.96955e-05
+3 octaprenyl 4 hydroxybenzoate carboxy lyase	5.10332e-06	2.4517e-05
+UniRef50_E1ZM35	2.82327e-06	1.44027e-05
+Sex pilus assembly protein	0.0250701	0.00159626
+UniRef50_A0A059LE43	2.73048e-05	6.1314e-05
+UniRef50_L7X117	0.0170493	0.00113416
+Transporter, putative	0.0189946	0.00251697
+Flagellar motor rotation protein MotB	0.000839206	0.00110531
+Toxin YhaV	0.00310037	0.00105629
+UniRef50_P31448	0.000956393	0.000517926
+UniRef50_A0A017IJ86	0.000218242	0.000142581
+ABC transporter ATP binding protein	3.19455e-06	3.2501e-06
+UniRef50_U1GJH2	1.31085e-05	5.18829e-06
+UniRef50_R5LKI5	0.00207588	0.000586398
+hypothetical protein	9.89753e-05	7.21064e-06
+Peptidoglycan hydrolase	0.00598094	0.00176772
+GTPase HflX	0.00474066	0.00183428
+Lysine ornithine N monooxygenase	9.09591e-05	0.00402852
+Predicted protein	0.000136919	8.0567e-05
+3 dehydroquinate dehydratase	8.46633e-05	4.50616e-05
+UniRef50_R9SJV5	0.00235045	0.000149144
+UniRef50_X6L1Q7	0.000104114	1.48668e-05
+RNA directed DNA polymerase 	0.000387285	0.000660886
+Protease 4	0.00198279	0.000797977
+Pyruvate dehydrogenase E1 component subunit alpha	0.0159919	0.00436969
+Glycine cleavage system H protein	0.0257248	0.00155789
+Carbonic anhydrase	3.70392e-05	4.26945e-06
+UniRef50_D4G4T6	5.12374e-05	1.77236e-05
+UniRef50_A0A024HMN0	0.000349358	7.01328e-05
+Peptidyl tRNA hydrolase	7.89364e-05	2.24e-05
+Ribosomal RNA large subunit methyltransferase M	0.0020279	0.000490254
+DNA ligase	0.000478289	0.000204689
+Transcriptional regulator, LysR family	0.0112978	0.00185327
+Protein FdrA	0.00240562	0.000505787
+hypothetical protein	0.000721628	0.000190663
+Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2	0.0100663	0.000915906
+Histidine  tRNA ligase	3.41939e-06	0.000644732
+Histidine  tRNA ligase	0.00632324	0.0012629
+tRNA  ) methyltransferase	0.000439091	0.00116156
+UniRef50_Q6FAF0	0.0102155	0.00634074
+Tyrosine recombinase	0.00982074	0.000837579
+UniRef50_J8RT93	9.14384e-05	5.50105e-05
+UniRef50_P31447	0.00232873	0.000856926
+Cupin	8.72239e-05	3.12823e-05
+Tyrosine  tRNA ligase	5.37327e-06	1.39608e-05
+PREDICTED	6.48595e-05	5.17953e-06
+Actin like ATPase involved in cell division	0.0002784	0.00016916
+UniRef50_D9RE66	0.015311	0.00167696
+Lysine  tRNA ligase	2.82264e-06	4.66897e-06
+UniRef50_W9GGB6	4.13018e-05	1.29089e-05
+Maltose maltodextrin transport permease like protein	0.00881853	0.00200603
+Acetate kinase	0.000231316	0.00364216
+UniRef50_Q3IUU3	0.0168398	0.00339519
+UniRef50_Q3IUU2	0.0141794	0.00124794
+UniRef50_Q3IUU1	0.0205448	0.00305856
+UniRef50_Q3IUU0	0.00581108	0.00222417
+Oxidoreductase	1.51845e-05	5.71804e-06
+hypothetical protein	1.36977e-05	5.29741e-06
+UniRef50_X9ZAP3	0.0112378	0.000588948
+UniRef50_C4REF2	8.04371e-06	7.74519e-06
+UniRef50_W8X9Y2	0.000439405	0.000178854
+hypothetical protein	3.97754e-05	0.000123838
+Na+ solute symporter   histidine kinase	0.00373162	0.000869144
+DNA processing protein	7.26502e-05	3.93955e-05
+hypothetical protein	5.29359e-06	5.81583e-06
+UniRef50_A0A021W377	0.000406206	4.84396e-05
+Transcriptional regulator, RpiR family	0.0177057	0.00204626
+ATP phosphoribosyltransferase	0.00195402	0.000282464
+arginine ABC transporter ATP binding protein	2.77933e-05	1.61778e-05
+PREDICTED	9.04951e-05	5.59875e-05
+hypothetical protein	2.95301e-06	1.77349e-06
+hypothetical protein, partial	1.37731e-05	1.16243e-05
+Transcriptional regulator	0.000209906	0.000190626
+hypothetical protein	1.16867e-05	3.33343e-05
+hypothetical protein	6.79525e-06	2.40266e-05
+2 oxoisovalerate dehydrogenase, ODBB	9.78339e-05	0.0210259
+hypothetical protein	4.11556e-05	5.62604e-06
+UniRef50_S2EW51	3.6767e-05	1.3724e-05
+UniRef50_X5EI43	0.000237564	0.00124848
+ABC transporter ATP binding protein	0.0109778	0.000820458
+RNA polymerase sigma 54 factor	0.000198803	0.00318356
+UniRef50_Q3JQY5	0.000110589	1.22624e-05
+50S ribosomal protein L6, partial	6.62626e-05	3.75882e-05
+Succinyl CoA ligase [ADP forming] subunit beta	1.11981e-05	8.48362e-06
+Enoyl CoA hydratase carnithine racemase	0.00031066	0.00370404
+hypothetical protein, partial	6.1545e-05	3.63174e-05
+DegV domain containing protein SA1258	0.0168332	0.00188971
+Transferase	7.62572e-05	0.00294311
+diguanylate cyclase	7.59522e-06	5.54372e-06
+Bifunctional protein PyrR	2.84529e-05	3.304e-05
+Oligopeptide transport system permease protein OppC	0.00142915	0.00034307
+Lon protease	1.2283e-06	2.67566e-06
+S formylglutathione hydrolase	0.00381473	0.000547428
+Phenylalanine  tRNA ligase beta subunit	0.00498433	0.00310054
+Surface protective antigen SpaA	0.000345833	0.00198839
+hypothetical protein	2.64804e-06	3.12419e-06
+Peptidase C14, caspase catalytic subunit p20	4.08836e-05	0.000188184
+ATPase	1.03587e-05	1.14515e-05
+hypothetical protein	5.71601e-06	0.00027056
+type I secretion protein	9.5404e-06	3.60418e-06
+UniRef50_I1ELJ8	0.000177956	4.63628e-05
+ATP dependent protease ATP binding subunit HslU	2.28524e-05	6.7305e-05
+Formate  tetrahydrofolate ligase	0.000168359	0.000136727
+hypothetical protein, partial	1.74615e-05	7.62694e-06
+UniRef50_B0VBG2	0.000248295	0.00340626
+Selenide, water dikinase	0.00420119	0.000956154
+hypothetical protein	6.40902e-06	7.22569e-05
+diacylglycerol kinase	1.49878e-05	3.27564e-05
+UniRef50_U1TXR6	0.000341651	0.000133188
+SsrA binding protein	0.00376033	0.000230218
+hypothetical protein	5.54118e-06	9.16846e-06
+UniRef50_B9NUC1	0.00235088	0.000455086
+Type 1 fimbriae regulatory protein FimB	0.00104842	0.000362767
+UniRef50_R7PU85	0.00140835	0.00276068
+Bifunctional transcriptional activator DNA repair enzyme Ada	0.00299087	0.000700466
+NADH quinone oxidoreductase subunit L 	0.000103268	3.28859e-05
+UniRef50_UPI0003C1934F	3.37379e-05	1.31219e-06
+Methyltransferase family protein	0.00663532	0.00115223
+UniRef50_UPI0002B4434D	2.47893e-06	3.14676e-05
+Integral membrane protein	3.65379e-07	2.78902e-07
+Sensor protein RstB	0.000949035	0.000145594
+Extracellular solute binding protein, family 3	0.00448172	0.000307404
+Protein NrdI	1.12041e-05	3.45789e-05
+UniRef50_P09162	0.000378144	0.00165949
+Transcriptional regulator, MarR family	0.000322298	0.000461656
+Periplasmic binding protein LacI transcriptional regulator	0.000314351	0.0005287
+Transporter, major facilitator family protein	0.00011281	0.00416111
+HD domain protein	1.41127e-05	1.34455e-05
+UV damage endonuclease UvdE	0.000839836	0.00142817
+3 dehydroquinate dehydratase	0.00330374	0.00341492
+Dihydropteroate synthase	7.04873e-06	0.00165771
+UniRef50_Q89376	2.13693e-06	3.27301e-06
+UniRef50_Q8CRZ8	0.00704336	0.0026862
+UniRef50_Q8CRZ9	0.00857781	0.00163477
+AAA domain containing protein YrvN	0.000279461	0.00089873
+UniRef50_Q8CRZ1	0.00184654	0.00073912
+UniRef50_Q8CRZ2	0.00668982	0.00126857
+UniRef50_Q8CRZ3	0.00689029	0.0019729
+UniRef50_Q8CRZ4	0.00652332	0.00132743
+UniRef50_Q8CRZ7	0.00967933	0.00196138
+Bifunctional protein Aas	0.000583363	4.76312e-05
+molybdenum cofactor biosynthesis protein MoeB	1.48342e-05	2.24978e-05
+hypothetical protein	4.19677e-06	3.53438e-06
+4 hydroxy tetrahydrodipicolinate synthase	0.000123899	0.0025514
+Isopentenyl diphosphate delta isomerase	0.00361507	0.00203098
+hypothetical protein	0.000202441	0.000117534
+Lipoprotein signal peptidase	0.0125752	0.0014199
+UniRef50_S4YB05	0.000110888	4.03563e-05
+ABC type transporter, periplasmic component	1.01743e-05	2.38596e-05
+spermidine putrescine ABC transporter ATPase	4.88542e-05	1.41291e-05
+hypothetical protein	2.80755e-06	4.48591e-05
+inner membrane translocator	5.99026e-06	2.53117e-06
+dehydrogenase E1 component	2.04647e-06	3.52506e-05
+Type I deoxyribonuclease HsdR	0.00015925	0.00447486
+K H(+) antiporter NhaP2	0.000925007	0.000108371
+ThiJ PfpI domain protein	0.000424368	0.00105567
+Transporter, RhaT family, DMT superfamily	0.00245934	0.000195295
+UniRef50_Q9XE67	3.10929e-05	1.11443e-05
+UniRef50_F8FDJ3	9.88765e-07	5.8829e-06
+Dihydrolipoyl dehydrogenase	7.51224e-05	0.00328032
+DoxX family protein	3.6557e-05	2.39051e-05
+alanine glycine permease	3.93971e-05	0.00198914
+UniRef50_D3DZS4	0.00217973	0.0001684
+UniRef50_C0PAL9	9.3442e-05	1.61563e-05
+hypothetical protein, partial	5.81618e-06	2.84307e-05
+Energy coupling factor transporter ATP binding protein EcfA	1.22747e-05	3.27372e-05
+Cysteine desulfurase	0.00478428	0.00241976
+Multidrug transporter	0.00328529	0.000597039
+hypothetical protein	6.6319e-05	1.2175e-05
+NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial	3.03106e-05	1.49903e-05
+UvrD REP helicase	0.000258747	0.00344331
+Cassette chromosome recombinase A	0.00729057	0.000894139
+Pyridoxal biosynthesis protein PDX1.3	2.30184e-05	0.00189558
+hypothetical protein	2.25696e-06	1.07131e-05
+molecular chaperone GroEL	2.98432e-05	5.62285e-06
+Acyl homoserine lactone synthase	8.2558e-06	6.42398e-06
+RemN protein	0.000586404	0.000189013
+sarcosine oxidase subunit alpha	1.25258e-05	3.45341e-06
+hypothetical protein	1.87023e-05	1.49438e-05
+Polysaccharide export protein	0.00187402	0.000171354
+FAD dependent oxidoreductase	2.10918e-05	0.00128056
+hemolysin III	6.92352e-06	5.25192e-06
+NADH quinone oxidoreductase subunit B 2	1.10839e-05	7.48121e-06
+CRISPR system Cascade subunit CasA	0.00114969	0.00055604
+hypothetical protein	0.000147883	0.000330251
+ABC transporter, partial	9.6303e-06	3.67397e-05
+1 acyl sn glycerol 3 phosphate acyltransferase	0.00321875	0.000345734
+UniRef50_A0A059E9X7	0.00015852	4.48342e-05
+4 alpha glucanotransferase	1.39315e-05	0.000315117
+PTS system arbutin , cellobiose , and salicin specific EIIBC component	0.000855869	0.000851054
+Phosphate ABC transporter, permease protein	0.000572433	0.00035135
+ATP synthase subunit delta	0.0245041	0.0026811
+Glycerol 3 phosphate dehydrogenase	0.0011163	0.000330392
+hypothetical protein	0.000743019	6.29178e-05
+UniRef50_B4RQ53	0.000382449	0.00236242
+Glucose and ribitol dehydrogenase homolog 1	1.68579e-05	1.91824e-05
+UniRef50_A3PPH2	0.000601724	0.000358458
+TRAP type C4 dicarboxylate transport system, small permease component	4.73434e-05	1.74071e-05
+Nucleoside diphosphate kinase	1.17209e-05	0.00308598
+p6.9	0.000202899	1.82907e-05
+PREDICTED	0.000231167	0.00018608
+Fumarate reductase succinate dehydrogenase flavoprotein domain protein	0.000269483	0.000160713
+UniRef50_A6M2L1	0.000199874	0.000499972
+hypothetical protein	4.78011e-05	1.75331e-05
+ATP dependent DNA helicase Rep	9.94259e-05	0.000551467
+Peptide chain release factor 1	0.00497352	0.000471001
+UniRef50_S6AT82	0.00193451	0.00329311
+Phosphoribosylformylglycinamidine synthase 1	0.000219833	0.00628883
+Inner membrane protein YqiJ	0.00271586	0.000739579
+helicase	5.81928e-05	5.50735e-05
+Glycoside hydrolase family 28	4.29118e-05	1.45315e-05
+Probable crotonobetaine carnitine CoA ligase	0.00378676	0.000374419
+hypothetical protein	2.42084e-05	8.78806e-05
+amino acid ABC transporter ATP binding protein	0.000135381	3.74985e-05
+GTP cyclohydrolase 1	2.77697e-05	0.00407128
+2 aminoethylphosphonate  pyruvate transaminase	0.000566886	0.000267483
+Cytidylate kinase	8.05482e-06	2.75439e-05
+Transglutaminase like protein	0.00320859	0.000439241
+Oligopeptide dipeptide ABC transporter, ATP binding protein like protein	0.00664115	0.00074032
+DNA topoisomerase III	4.09845e-06	3.15494e-06
+hypothetical protein	0.000148601	0.000206004
+Magnesium and cobalt efflux protein CorC	0.0013851	0.000103082
+Potassium transport system, membrane component, KefB	0.00242795	0.000205876
+Precorrin 4 C methyltransferase	0.000278908	1.10049e-05
+UniRef50_Q9RVT2	0.000776651	0.0299237
+hypothetical protein	0.000289749	4.71653e-05
+Probable malate	0.0148765	0.00109156
+Helix turn helix domain protein	0.000589019	0.000424025
+AzlC family protein	0.00289056	0.00149412
+Rod shape determining protein MreD	0.00372379	0.00017744
+Nitrate reductase	0.000257917	7.55456e-05
+Marine sediment metagenome DNA, contig	1.58916e-05	2.94734e-05
+hypothetical protein	1.05125e-05	1.52615e-05
+hypothetical protein	3.65289e-06	3.30826e-06
+Metal ABC transporter permease	0.0172787	0.00308937
+hypothetical protein	1.64438e-05	2.17476e-05
+O acetylhomoserine aminocarboxypropyltransferase	2.39342e-05	1.68359e-05
+ABC peptide opine transporter, periplasmic substrate binding protein	0.00578868	0.00130149
+ABC transporter ATP binding protein	2.45775e-05	7.39545e-05
+Metallo beta lactamase superfamily domain protein	0.00170909	0.000684664
+HGPRTase	0.0103944	0.00443013
+UniRef50_A0A059IPV7	2.87772e-05	2.77571e-05
+Conserved domain protein	1.87933e-05	9.23628e-06
+50S ribosomal protein L1	2.5641e-05	0.000151573
+ABC transporter substrate binding protein	1.46526e-05	6.90835e-06
+UniRef50_D8N394	4.58271e-07	0.000116645
+Thymocyte nuclear protein 1	0.000190827	3.89168e-05
+Protein tyrosine phosphatase	0.000678788	0.000402771
+ABC transporter related	0.000396213	0.00118199
+Chorismate synthase	4.16134e-06	1.17774e-05
+WfeY	0.000108684	5.97407e-06
+hypothetical protein	1.28752e-05	1.48387e-05
+UniRef50_M9V9W9	0.000285614	0.00169457
+UniRef50_W5ENS0	0.000109033	0.000109655
+Phosphoglycolate phosphatase	0.023576	0.00306793
+UniRef50_B9KMF0	0.000545612	3.97952e-05
+Sarcosine oxidase subunit alpha	0.000434347	0.000491606
+UniRef50_UPI00023B2764	8.24048e-05	5.65971e-05
+PREDICTED	3.57384e-05	0.000371043
+Oligo 1,6 glucosidase	2.64675e-05	2.76161e-05
+hypothetical protein	8.39959e-05	1.33431e-05
+Cell wall binding repeat containing protein	0.00046792	0.000882658
+Probable cadaverine lysine antiporter	0.00292919	0.00132467
+Marine sediment metagenome DNA, contig	7.48208e-06	0.000422235
+ABC transporter ATP binding protein	7.08614e-06	1.79221e-05
+Acetolactate synthase	5.94259e-05	0.00919813
+Chromate transport protein	0.000203148	0.00580614
+UniRef50_W1YMN4	2.42125e-05	9.828e-06
+hypothetical protein	1.02566e-06	3.02526e-06
+hypothetical protein	4.48584e-05	0.0011884
+UniRef50_D4ZGG3	5.58543e-05	1.75201e-05
+Acyl CoA dehydrogenase domain protein	0.000374326	0.00362409
+Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000265443	0.000787601
+Lactoylglutathione lyase	8.61029e-06	1.24646e-05
+Spore cortex protein like protein	0.0180127	0.00294464
+hydrogenase nickel incorporation protein HypA	3.82582e-05	1.48727e-05
+O acetylhomoserine aminocarboxypropyltransferase	3.01271e-05	1.00631e-05
+hypothetical protein	0.000316503	0.000272902
+ATP binding transport protein; multicopy suppressor of HtrB	3.38356e-05	1.57238e-05
+Carbamoyl phosphate synthase small chain	3.01035e-05	7.64488e-06
+Phosphate acetyltransferase	8.86993e-06	0.000464954
+Glycerate kinase family protein	0.0205943	0.00382039
+Transcriptional regulator PadR family	0.000148632	1.66526e-05
+UniRef50_A6LXB1	0.000483653	0.000395164
+Glycerol 3 phosphate transporter	0.0025389	0.000901781
+choline dehydrogenase	3.86484e-05	4.95036e-06
+DRTGG domain protein	0.000593151	0.000226429
+hypothetical protein, partial	1.08554e-05	1.62876e-06
+Predicted protein 	1.06985e-05	2.81994e-05
+Rhodanese domain protein	0.00412489	0.00036905
+hypothetical protein	7.85593e-06	1.77848e-05
+alpha beta hydrolase	6.05851e-06	1.00382e-05
+hypothetical protein	8.06476e-06	6.92974e-06
+acetylglutamate kinase	2.70464e-05	5.64284e-06
+Efflux ABC transporter permease ATP binding protein	0.00350219	0.000646299
+UniRef50_H9UWH8	3.64799e-05	4.49388e-05
+Chromosome undetermined SCAF12296, whole genome shotgun sequence. 	0.000194545	0.000159669
+6 aminohexanoate dimer hydrolase	0.000181123	0.00356576
+3 isopropylmalate dehydratase small subunit	0.00388262	0.00135176
+Porin like protein NicP	0.000633817	0.000118138
+Glycoside hydrolase, family 16	0.0135133	0.00118537
+Methylmalonate semialdehyde dehydrogenase [acylating]	0.000380907	0.00206533
+Metal binding protein	0.000184579	0.00379829
+Mitochondrial DNA repair protein recA homolog	0.0152715	0.00363581
+Dipeptide tripeptide permease	0.000272142	0.000530817
+Phosphoenolpyruvate carboxylase	0.00288034	0.000254952
+Clumping factor A 	1.9584e-05	1.55316e-05
+UniRef50_Q8GPI8	0.00579553	0.000854283
+Exu regulon transcriptional regulator	0.00573535	0.00082908
+UniRef50_U1FCM2	6.48856e-05	0.000115514
+Transcriptional regulator, MerR family	0.0364596	0.000543959
+Oxidoreductase alpha  subunit, fusion	0.000237901	0.000136451
+DHHA1 domain protein	0.0128553	0.00391473
+UniRef50_F5YTR0	3.46289e-06	8.49738e-07
+Acyltransferase	0.000110707	0.00137607
+Hydrogenase isoenzymes nickel incorporation protein HypB	0.000800421	0.000455066
+Na H(+) antiporter NhaP	0.000579501	8.59185e-05
+ABC transporter, ATP binding protein	0.000152514	0.00183792
+hypothetical protein	1.33121e-05	1.8992e-05
+NADH quinone oxidoreductase subunit C	0.000211223	0.00204545
+UniRef50_Q2IMR8	0.000134995	0.00041667
+Putative threonine efflux protein	0.000373192	0.00023797
+Donor ubiquinone reductase I	7.11519e-05	0.00116538
+Short chain dehydrogenase reductase SDR	0.000316503	0.00105083
+Thioredoxin	0.00493648	0.000925617
+GAF domain containing protein	3.12176e-06	0.000203366
+Inner membrane protein ybjJ	0.000861661	0.000239535
+Sigma54 specific transcriptional regulator, Fis family	8.41371e-05	6.21348e-05
+hypothetical protein	1.83797e-05	5.64314e-06
+Surface antigen	0.000639016	0.00436024
+Fatty acid oxidation complex subunit alpha	0.000552736	0.000138093
+UniRef50_I0G4P6	8.85933e-05	1.61383e-05
+Malate dehydrogenase	3.61378e-05	1.14745e-05
+HTH type transcriptional regulator RutR	0.000496902	0.000417604
+D alanyl D alanine carboxypeptidase family protein	0.000570421	0.000273501
+Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.0033955	0.00463444
+hypothetical protein	2.05423e-06	2.65798e-06
+Putative cytoplasmic protein	1.6708e-05	4.96145e-06
+glucosamine  fructose 6 phosphate aminotransferase	2.04818e-05	2.00197e-05
+UniRef50_V5VA73	9.16194e-05	0.00257831
+N acylamino acid racemase	1.18363e-05	0.000314743
+spermidine putrescine ABC transporter ATP binding protein	0.00012839	2.10909e-05
+DeoR family transcriptional regulator	0.000269959	0.00316956
+hypothetical protein	0.000215382	6.26768e-05
+UniRef50_L8N0M9	1.47885e-05	0.00660138
+Probable transcriptional regulator PhnF	0.00185151	0.000299686
+DNA polymerase III subunit alpha	2.96895e-06	0.00221889
+ABC superfamily ATP binding cassette transporter, ABC protein	0.0027931	0.00120356
+tRNA pseudouridine synthase D	4.09176e-06	1.10502e-05
+UniRef50_M0EDY5	7.27699e-05	2.02169e-05
+UniRef50_Y1FPC0	5.15719e-06	4.85497e-06
+PREDICTED	3.64969e-05	2.62537e-05
+Probable dual specificity RNA methyltransferase RlmN	1.96031e-05	1.66211e-05
+UniRef50_Q3IVM7	0.00426803	0.000722412
+Flagellar protein FlgJ, putative	0.000104147	3.12686e-05
+hypothetical protein	6.15736e-05	1.26011e-05
+hypothetical protein	3.51606e-06	2.70396e-06
+Glyceraldehyde 3 phosphate dehydrogenase	0.0034178	0.00110819
+ATP dependent Clp protease ClpS	0.000415982	9.17146e-05
+TRAP transporter, DctM subunit	0.000346099	3.94197e-05
+UniRef50_U7IWX4	4.36934e-05	5.17678e-05
+glycogen debranching protein	6.03331e-06	1.19582e-05
+FAD dependent oxidoreductase	7.10469e-06	0.000433465
+UniRef50_N1MM41	2.90961e-05	1.67276e-05
+ArsR family transcriptional regulator, partial	0.000112709	1.12931e-05
+ubiquinol cytochrome C oxidoreductase	0.000104364	0.000165478
+Os02g0125700 protein 	0.000164308	6.00569e-05
+hypothetical protein	6.17948e-05	1.565e-05
+Putative sporulation transcription regulator WhiA	0.0207016	0.00369717
+hypothetical protein	4.55878e-06	1.05474e-05
+Putative antiporter subunit mnhD2	0.0149511	0.00339265
+UDP N acetylmuramate	0.000234275	0.00379734
+Transcriptional regulator, AsnC family	0.00112624	0.00235436
+2  3 dephosphocoenzyme A synthase	0.00295643	0.000491657
+PREDICTED	0.000179015	2.29585e-05
+hypothetical protein	1.56961e-05	3.5066e-05
+DNA repair protein RadA	7.06949e-06	2.75181e-06
+Branched chain amino acid ABC transport system permease protein LivM2	0.000307422	0.000564071
+hypothetical protein	5.24227e-05	6.41493e-06
+Aminopeptidase	0.00809105	0.000932677
+Adenylosuccinate synthetase	0.00170641	0.00719339
+sugar ABC transporter ATPase, partial	5.37485e-05	6.144e-06
+Succinyl CoA ligase [ADP forming] subunit beta	1.73545e-05	6.36241e-06
+Beta Ig H3 fasciclin	1.27454e-05	1.66276e-06
+Phenylalanine  tRNA ligase beta subunit	0.000149509	0.00206152
+3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	1.48586e-05	9.17772e-06
+Histidine ammonia lyase	0.000157024	0.0038556
+UniRef50_J9NST0	1.54539e-05	2.64828e-05
+Bifunctional aspartokinase homoserine dehydrogenase 1	0.000472799	0.000288912
+hypothetical protein	2.26367e-06	0.000104372
+hypothetical protein	2.58596e-06	1.53425e-05
+hypothetical protein	4.00694e-05	2.78037e-05
+UniRef50_P77615	0.00247828	0.00155421
+UniRef50_P77616	0.00133411	0.000120194
+Cache sensor protein	0.00801217	0.00163262
+hypothetical protein, partial	2.76671e-05	1.37636e-05
+ABC transporter ATP binding protein	2.53638e-05	9.70116e-06
+Probable 3 hydroxyisobutyrate dehydrogenase, mitochondrial	8.50708e-06	1.87592e-05
+Major facilitator superfamily MFS_1	8.09011e-05	0.00279299
+hypothetical protein	1.49055e-05	6.64126e-06
+Peptidase	0.00526468	0.00155658
+ABC transporter substrate binding protein	7.21093e-06	3.8384e-05
+Sulfate binding protein sbp	0.00363909	0.00387431
+Folyl polyglutamate synthetase	0.0058327	0.00224455
+hypothetical protein	9.01625e-06	1.10919e-05
+Gene Transfer Agent NlpC P60 family peptidase	3.30367e-06	2.01857e-05
+Haloacid dehalogenase superfamily enzyme, subfamily IA	0.000153675	0.000299818
+Transcriptional regulator, LysR family	0.000291204	0.000263678
+gluconate transporter, partial	5.95196e-06	9.48864e-05
+Transcriptional regulator, AraC family	0.000121061	0.000109627
+ABC transporter ATP binding protein	2.10643e-05	2.31876e-05
+hypothetical protein	5.61216e-06	4.46094e-06
+Methionine import ATP binding protein MetN	9.97942e-06	3.8708e-06
+Bicarbonate ABC transporter ATP binding protein BtcA	0.00403258	0.000654017
+UniRef50_I6TQK5	0.00515694	0.000169405
+UniRef50_A1UAJ5	0.00820262	0.00161961
+Sugar binding periplasmic protein	0.00429094	0.00074072
+Lipoprotein, putative	1.64851e-05	7.50825e-06
+UniRef50_P36928	0.00355326	0.000412193
+UniRef50_Q5HLU9	0.00915315	0.00103721
+UniRef50_A6UM37	0.000880623	0.000169427
+UniRef50_W1MWT9	0.000674549	0.000116151
+UniRef50_Q5HLU0	0.000754899	0.000490628
+UniRef50_G7Z253	0.00096991	0.000384217
+hypothetical protein	7.39484e-06	1.91575e-05
+Holliday junction ATP dependent DNA helicase RuvA	3.98576e-05	1.08434e-05
+UDP glucose 4 epimerase	0.00036135	0.0102949
+UniRef50_A8AJ50	0.000378144	0.000335018
+MULTISPECIES	1.63775e-05	1.20727e-05
+D phenylhydantoinase	0.00306051	0.000534079
+Tryptophan  tRNA ligase	6.96664e-06	8.17422e-06
+lactate permease	4.28115e-06	1.31194e-05
+hypothetical protein DR_2417m	0.00058616	0.0247184
+Plasmid recombination protein, Mob family	0.0242488	0.00227946
+hypothetical protein	0.000828608	0.000323275
+ABC transporter, ATP binding protein	0.0162275	0.00308682
+Arsenite transporting ATPase	0.00339076	0.0004975
+UniRef50_Q8CQM8	0.0126489	0.00292437
+DNA polymerase I	1.63585e-06	1.97219e-06
+Peptide deformylase 1	7.82449e-05	2.7905e-05
+Ribitol 5 phosphate 2 dehydrogenase	0.0224181	0.00556098
+Adhesin like protein	0.00267923	0.00051996
+NAD kinase	5.39017e-05	4.33472e-05
+hypothetical protein	2.68628e-05	0.000139471
+PREDICTED	1.98904e-05	2.62231e-06
+Sex pilus assembly and synthesis protein TraW	0.000113672	1.36901e-05
+hypothetical protein	7.19374e-05	1.36483e-05
+Nickel transport system permease protein NikC	0.00302514	0.000544314
+UniRef50_D8JIG5	3.04603e-05	2.72375e-05
+spermidine putrescine ABC transporter substrate binding protein	2.34715e-05	5.64374e-05
+UniRef50_M1MNN2	0.00015438	0.000387701
+UniRef50_D8FZ53	1.29178e-05	0.000144675
+Gamma aminobutyraldehyde dehydrogenase	7.11018e-05	0.00365306
+Major facilitator superfamily MFS_1	0.000988307	0.000851261
+Alcohol dehydrogenase	0.000388441	0.000577899
+UniRef50_A5UKJ6	0.0023035	0.000163543
+Phosphoglycerate kinase	4.66651e-05	0.0102902
+hypothetical protein	1.71841e-05	9.56378e-06
+hypothetical protein	2.27008e-06	0.00034935
+Cytochrome C	0.00100646	0.000693771
+Capsule polysaccharide export inner membrane protein CtrB	0.000297809	0.0016999
+ABC transporter ATP binding protein	0.00398687	0.000513304
+Penicillin binding protein 3A	0.000140927	0.000276327
+Glutamate 5 kinase	3.79629e-06	3.13181e-06
+hypothetical protein	4.83409e-06	3.51881e-06
+UniRef50_Q5HRW9	0.00943744	0.00103692
+UniRef50_Q5HKM6	0.0108243	0.00165676
+UniRef50_UPI0002B8EE79	4.97847e-05	7.25354e-06
+UniRef50_Q5HRW3	0.00314165	0.00127679
+Glycerol 3 phosphate dehydrogenase anaerobic B subunit	4.10107e-05	2.33096e-05
+L threonine 3 dehydrogenase	7.68636e-05	5.22599e-05
+Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain	0.000604796	0.00265988
+Glucans biosynthesis protein G	0.00502311	0.00134328
+riboflavin biosynthesis protein RibD	6.77157e-06	3.23065e-06
+hypothetical protein	7.87046e-06	7.34275e-06
+UniRef50_H3CIZ8	0.000292651	4.62798e-05
+ABC transporter substrate binding protein	0.0197279	0.00464303
+Phosphoadenosine phosphosulfate reductase	9.04974e-06	5.29669e-06
+UniRef50_J0WNU1	4.5041e-05	1.02503e-06
+integrase, partial	0.000490119	0.000145283
+Phage like baseplate assembly protein	7.58352e-05	0.00253591
+PREDICTED	1.44863e-05	2.57842e-06
+Peptidase M15A	3.70126e-06	5.61476e-06
+Aldo keto reductase family protein	0.0168752	0.0049418
+Inner membrane transporter YcaM	0.0030579	0.000760569
+Orotidine 5 phosphate decarboxylase	8.12624e-05	0.00273637
+UniRef50_B9QX37	5.07528e-05	3.78292e-05
+hypothetical protein	2.7564e-06	2.55399e-06
+Periplasmic phosphate binding protein	4.93654e-06	3.972e-06
+UniRef50_A6X6Y3	0.000175001	4.22854e-05
+WGS project CAID00000000 data, contig chromosome 16	0.000202553	1.63072e-05
+30S ribosomal protein S3	0.000255858	0.000297311
+Transaldolase	0.0287562	0.00185266
+hypothetical protein, partial	0.000146824	1.28982e-05
+Conserved hypothetical membrane protein Msm_0678	0.00169365	0.00016033
+UniRef50_C2THV2	0.000150395	0.000245314
+UniRef50_A6LQP6	0.000866428	0.000466258
+UniRef50_Q9RV37	0.00117401	0.0158936
+UniRef50_F8JYV1	9.3092e-05	5.76305e-05
+UniRef50_Q9RV33	0.000328875	0.144057
+UniRef50_A6LQP1	0.000154144	0.00119944
+DNA gyrase subunit B	0.0236339	0.00410713
+hypothetical protein, partial	3.74778e-05	7.44052e-05
+Polyphosphate kinase	2.1601e-06	6.03554e-05
+Protein Syd	0.00415822	0.000165046
+SugE protein	0.00115825	0.000304355
+Cation transporting P type ATPase	0.000149919	4.30623e-05
+50S ribosomal protein L24, partial	4.99718e-05	0.000134283
+Glycosyl transferase, group 2 family protein	0.00047241	0.00126368
+UniRef50_K4A3K7	0.000829795	0.000218477
+phosphoribosylaminoimidazole carboxylase	5.50405e-06	3.10159e-06
+hypothetical protein	9.37218e-06	6.64901e-06
+Lipoyl synthase	4.88279e-06	2.07039e-05
+Adenylate kinase	7.01466e-06	6.6644e-06
+Biotin synthase	0.000387859	0.00341152
+UniRef50_B9KX84	0.000119793	9.24664e-05
+Replication initiator protein	0.00744107	6.77466e-05
+hypothetical protein	4.67352e-05	4.35096e-05
+CRISPR associated helicase Cas3 family protein	4.10995e-05	3.86683e-06
+Regulatory protein TetR	0.00549918	0.00184194
+Carbamoyl phosphate synthase large chain, N terminal section	1.72994e-05	3.60228e-06
+FAD synthase	0.00116856	0.00107836
+UniRef50_X6N172	3.78454e-06	1.05046e-05
+Marine sediment metagenome DNA, contig	1.92769e-05	8.63107e-05
+permease	3.24807e-06	7.59139e-06
+AMP binding enzyme	0.00103384	0.000284901
+5 amino 6 uracil reductase	5.373e-06	3.03806e-05
+NAD dependent dehydratase	0.000359044	1.99659e-05
+hypothetical protein, partial	6.12615e-05	3.14577e-05
+UniRef50_I6T8B1	0.00104899	0.00142086
+PREDICTED	4.69461e-05	7.10103e-05
+UniRef50_Q9RUD9	0.000112684	0.0126547
+Two component sensor	0.000290521	5.33164e-05
+hypothetical protein	1.5969e-06	1.09137e-06
+Dihydrofolate reductase	0.000709357	0.000724715
+AMP dependent synthetase and ligase	0.000371512	0.00804502
+Multi sensor signal transduction histidine kinase	0.000311556	0.000956286
+Sulfate adenylyltransferase subunit 1	0.000227686	0.000829547
+amino acid ABC transporter permease	4.42827e-05	1.94191e-05
+MerR family transcriptional regulator	3.48289e-05	2.26629e-05
+Phosphate starvation inducible E	0.00548366	0.00204395
+UniRef50_K7UQK0	0.000358157	0.000190222
+MULTISPECIES	7.04337e-06	4.81611e-06
+Glycerol kinase 2	2.10592e-05	4.1224e-05
+DNA gyrase subunit A	6.51304e-06	5.97929e-06
+UniRef50_K0HFT9	4.70917e-05	0.00207262
+hypothetical protein, partial	4.36119e-05	1.77861e-05
+hypothetical protein, partial	1.5723e-05	1.92343e-05
+hypothetical protein	3.04249e-05	1.00692e-05
+hypothetical protein	0.000147606	2.71225e-05
+Formate dehydrogenase iron sulfur subunit	0.0044319	0.000531727
+Hemolysins and related proteins containing CBS domains	0.00669942	0.00213348
+UniRef50_W6KFD1	1.79885e-05	5.2503e-06
+Nucleoside permease NupG	0.0061981	0.00041935
+30S ribosomal protein S4	2.80744e-05	0.000135344
+hypothetical protein	1.22171e-05	1.22039e-05
+UniRef50_P52078	0.0153344	0.0026385
+UniRef50_R7LL20	5.50928e-05	2.6113e-05
+Aminopeptidase P	7.96879e-05	0.00273637
+UniRef50_Q5GUU6	8.78686e-06	2.11359e-05
+UniRef50_A3K9P8	4.60705e-05	5.38633e-05
+UniRef50_Q2RVQ3	0.00141119	0.000423292
+UniRef50_W4HQH1	1.1685e-05	7.78852e-06
+Thymidylate synthase	0.0033635	0.00204575
+sugar ABC transporter ATPase	1.27166e-05	1.05499e-05
+UniRef50_Q57180	0.000403907	0.00581502
+UniRef50_D0LYV0	2.30964e-05	3.70971e-06
+hypothetical protein	4.60371e-06	1.0014e-05
+Phosphate binding protein PstS	0.000294687	0.00319849
+UniRef50_Q9RTB2	5.90328e-05	0.0216247
+Oxidoreductase short chain dehydrogenase reductase family protein	0.00015581	0.00109051
+Adenine deaminase	0.000121827	0.000599953
+UniRef50_V8UF34	0.000207375	5.81104e-05
+Glycerol 3 phosphate regulon repressor	0.00274208	0.000393717
+Iron ascorbate oxidoreductase	0.000494869	0.000635798
+Maltose transport system permease protein MalF	0.00238786	0.000318994
+Protein disulfide isomerase like protein	0.0089708	0.000162949
+UniRef50_N5SB54	5.45012e-05	6.42183e-05
+hypothetical protein, partial	1.16377e-05	8.45544e-06
+hypothetical protein	3.5138e-05	1.94243e-05
+UniRef50_O05220	0.00999481	0.000172996
+biotin attachment protein	2.73973e-05	4.91343e-05
+recombinase RecF	1.96494e-05	5.75432e-06
+UniRef50_B4V9Q0	5.24241e-05	3.05414e-05
+Acetyl S ACP	8.1031e-05	0.00266638
+Protein disulfide isomerase	0.00019797	0.00103318
+Mannosyl glycoprotein endo beta N acetylglucosamidase	0.000184242	0.00010936
+UniRef50_L0FRW3	3.23712e-05	8.66709e-06
+UniRef50_G8V6G8	0.011116	0.000292585
+UniRef50_U3H984	0.000282681	0.00119343
+Anthranilate synthase component I	0.0165218	0.00191876
+Glucan binding protein C	0.00450781	0.000876681
+UniRef50_Q47S88	7.89312e-06	6.63528e-06
+hypothetical protein AOR_1_134104	1.24867e-05	8.44771e-06
+Alanine dehydrogenase	0.000278702	0.000128714
+hypothetical protein	1.44453e-05	1.16662e-05
+hypothetical protein	5.36927e-06	5.68061e-06
+UDP N acetylglucosamine 2 epimerase	0.00360316	0.000908915
+DNA integrity scanning protein DisA	0.0005876	0.00117065
+UniRef50_I1B4H1	0.00177679	0.00055179
+hypothetical protein	7.1182e-05	1.70906e-05
+UniRef50_L0A6W7	2.38898e-05	6.93493e-06
+DNA polymerase III subunit beta	0.000120627	0.00218854
+Cysteine  tRNA ligase	0.000144345	0.023259
+Egg case silk protein 2	5.6426e-06	1.16737e-06
+Carbamoyl phosphate synthase small chain	1.28556e-05	3.71604e-06
+UniRef50_P52696	0.00147701	0.000382779
+Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.000238687	0.000646754
+Predicted protein	0.000153013	1.55273e-05
+hypothetical protein	0.000215179	6.2436e-05
+hypothetical protein, partial	5.12359e-05	8.16802e-06
+UniRef50_R7PQW4	6.13903e-05	0.00079723
+F0F1 ATP synthase subunit beta, partial	1.86874e-06	2.32666e-06
+hypothetical protein, partial	2.95708e-05	1.29853e-05
+UniRef50_W7J736	4.95861e-05	4.12175e-05
+Energy coupling factor transporter ATP binding protein EcfA	0.00579067	0.00015252
+UniRef50_A5UNK3	0.000621137	0.000355254
+Phosphoribosylaminoimidazole carboxylase	1.57483e-05	1.27605e-05
+Macrolide export ATP binding permease protein MacB 1	1.69484e-06	4.32401e-06
+hypothetical protein	0.000104313	6.92766e-05
+UniRef50_Q5LNV7	0.0091452	0.0010276
+UniRef50_R1BQD4	0.000117602	0.00014466
+Thiosulfate sulfurtransferase	2.6101e-05	5.84523e-06
+UniRef50_Q5FA95	5.29699e-05	0.000946073
+hypothetical protein	5.56164e-05	9.38793e-06
+PREDICTED	4.35249e-05	2.48394e-05
+UniRef50_D0K910	0.0139951	0.00224209
+Aldehyde alcohol dehydrogenase 2	0.000208316	3.4256e-05
+Chlamydial polymorphic outer membrane protein repeat containing domain protein	2.23076e-05	4.11717e-06
+hypothetical protein	1.33301e-06	1.19027e-06
+universal stress protein A, partial	0.000125994	3.2953e-05
+Cyclic nucleotide binding protein	9.44759e-06	1.30445e-05
+PREDICTED	2.57463e-06	2.06842e-06
+Aspartate semialdehyde dehydrogenase 	7.46927e-06	1.19979e-05
+UniRef50_W8QZ31	5.16867e-05	1.0734e-05
+Transcriptional regulator	0.0001025	1.21841e-05
+UniRef50_G8AUU4	7.34301e-05	4.54291e-05
+UniRef50_A2SME8	2.88583e-05	3.84692e-05
+PREDICTED	3.51517e-05	5.50426e-05
+DNA gyrase subunit A	5.3203e-06	6.56135e-06
+UniRef50_Q3IVR0	0.0100841	0.001235
+UniRef50_Q3IVR4	0.00314502	0.00191108
+UniRef50_Q3IVR7	0.00872012	7.52568e-05
+RarD protein	0.0142657	0.0042865
+UniRef50_T5YD38	0.00052861	0.000250097
+UniRef50_F1SH72	0.000134542	0.000184687
+tRNA dimethylallyltransferase	5.67575e-06	4.13079e-06
+hypothetical protein	2.61748e-05	9.38802e-06
+Transposase	0.000307173	0.0043654
+Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein	0.00902784	0.00174263
+Pyoverdine ABC transporter, permease ATP binding protein	0.00083135	0.000120824
+ATPase histidine kinase DNA gyrase B HSP90 domain protein	6.25168e-05	0.000897924
+hypothetical protein	5.85982e-05	1.20526e-05
+Membrane protein, TIGR01666	0.000866925	0.000225025
+YcaO like fatty acid binding protein	0.00080652	7.30788e-05
+Transcriptional regulator	6.47115e-05	4.04687e-05
+DNA gyrase subunit B	2.57705e-05	1.93828e-05
+PREDICTED	3.0797e-06	6.0694e-06
+PTS system glucose specific EIICBA component	0.00713727	0.00301245
+Levansucrase	0.00723987	0.00075607
+Two component sensor histidine kinase PedS1	0.000355258	7.55093e-05
+Choline ABC transporter, ATP binding protein	0.000605436	0.000901292
+MFS family major facilitator transporter, bicyclomycin	0.0186792	0.0020045
+ABC type phosphate transport system periplasmic component like protein	3.29625e-06	3.33139e-06
+Putative ATP binding protein BRA0745 BS1330_II0738	0.00548268	0.00144712
+UniRef50_G9PKM7	1.36738e-05	1.37291e-05
+UniRef50_B0VQI7	0.000742387	0.00380233
+Vibriobactin specific isochorismatase	1.72684e-05	2.05777e-05
+UniRef50_W8S0N6	2.71322e-05	6.0632e-06
+UniRef50_W8S6V4	4.64702e-06	1.56445e-06
+UniRef50_F0YCB9	1.29726e-05	3.0401e-05
+hypothetical protein SMAC_11105, partial	7.50644e-05	2.33322e-05
+UniRef50_M5R665	6.51685e-06	1.82735e-05
+hypothetical protein	2.19407e-05	3.45206e-05
+P loop ATPase	0.00171676	0.000146707
+UniRef50_R1FJP7	0.000119786	8.81399e-05
+Acyl homoserine lactone synthase	0.00174225	0.000388843
+UniRef50_D8UHU1	4.46615e-06	9.96262e-06
+PREDICTED	4.79861e-06	9.86647e-05
+Dyp type peroxidase	0.000207319	0.000202675
+UniRef50_B9KSF4	0.00187255	1.96423e-05
+NADH quinone oxidoreductase subunit H 2	3.87564e-06	0.00152784
+Glucose 1 phosphate adenylyltransferase, GlgD subunit	0.00736463	0.00175807
+Excinuclease ATPase subunit	0.00833737	0.00126154
+UniRef50_D7A127	2.74286e-06	1.07545e-05
+UniRef50_A5V6E6	1.31106e-05	2.65596e-05
+flagellin	1.21929e-05	2.27153e-06
+hypothetical protein	6.1261e-06	9.10528e-05
+hypothetical protein	2.79902e-05	1.24254e-05
+Fatty acid desaturase	0.000178552	0.00465685
+Ascorbate specific PTS system enzyme IIC	0.00588409	0.00290412
+hypothetical protein	9.0618e-06	1.02879e-05
+Sensor protein QseC	0.0021243	0.000209286
+Peptidase M24	0.00155944	0.00102009
+Regulatory protein	0.000366645	0.00047151
+hypothetical protein	9.22013e-05	2.60416e-05
+UniRef50_E0XV83	9.59186e-05	4.42321e-05
+UniRef50_A0A042PYY0	2.76143e-05	7.66844e-06
+Bifunctional adenosylcobalamin biosynthesis protein CobP	0.000116417	9.25026e-05
+UniRef50_Q9I489	0.000112308	0.000168452
+UniRef50_Q47269	0.000473412	0.000198201
+UniRef50_P37774	0.000619908	0.000239426
+Isoleucine  tRNA ligase	1.06969e-06	3.38094e-06
+chemotaxis protein CheW	1.43849e-05	2.50076e-05
+UniRef50_K0T1C7	0.000183777	3.71496e-05
+ATPase	0.000603573	0.000300062
+ATPase associated with various cellular activities, AAA_3	0.00330105	8.56726e-05
+hypothetical protein	1.38948e-05	5.48313e-06
+putative ISRSO12 transposase 	5.52552e-06	9.79246e-06
+D amino acid aminotransferase	9.22543e-05	2.69022e-05
+UniRef50_M9REZ0	0.0116719	0.00122792
+Glutaryl CoA dehydrogenase, mitochondrial 	2.30367e-05	0.000131609
+2 hydroxyacid dehydrogenase homolog	0.00479369	0.00027143
+catalase	6.69916e-06	1.28481e-05
+thioesterase	8.21547e-06	4.3954e-05
+NADH dehydrogenase	0.000118364	0.00201542
+TraN	0.029434	0.00427434
+UniRef50_G0AKF2	6.83863e-05	9.65269e-06
+Phosphoenolpyruvate carboxykinase [ATP]	2.58106e-06	0.00237682
+Os05g0524100 protein 	0.000312739	2.8977e-05
+hypothetical protein	0.000755571	0.000378033
+long chain fatty acid  CoA ligase, partial	3.01597e-05	3.3706e-05
+PIS system, IIC component	0.00100058	0.00111636
+Probable Ni Fe hydrogenase 2 b type cytochrome subunit	0.00259578	0.000343347
+Guanosine 3,5 bis 3 pyrophosphohydrolase	0.00236037	0.000964712
+hypothetical protein, partial	9.23026e-05	2.40073e-05
+ParB like nuclease domain protein	0.000204781	2.45079e-05
+UniRef50_X5DX57	0.00166798	0.000399044
+Serine hydroxymethyltransferase 2	2.74277e-05	5.06539e-05
+Sensor histidine kinase like protein	0.000154558	0.000305322
+Aminotransferase	0.000310436	0.00275571
+serine dehydratase	9.54406e-06	7.88802e-05
+Formamidopyrimidine DNA glycosylase	0.00518848	0.00157806
+hypothetical protein	2.63409e-05	1.49028e-05
+Arylsulfatase regulator, AslB	0.00245672	0.000296111
+Threonine serine transporter TdcC	0.00283243	0.000167947
+UniRef50_Q09C64	1.15114e-05	2.00254e-05
+UniRef50_H8FWZ7	0.000158532	8.95301e-05
+alcohol dehydrogenase	8.16098e-06	8.49697e-06
+LtrC like protein	0.00783408	0.00145435
+UniRef50_F6BYQ8	0.000205773	3.55484e-05
+hypothetical protein	0.000649491	1.47028e-05
+hypothetical protein	1.9458e-06	0.000344837
+Glycosyl 4,4 diaponeurosporenoate acyltransferase	0.00567374	0.00206451
+Protein YnjB	0.00306044	0.000470915
+Triosephosphate isomerase	0.00222809	0.00143303
+UniRef50_F0VQ97	2.39454e-06	7.39286e-07
+UniRef50_B6IR83	0.00296931	0.000934887
+UniRef50_U9YKK0	0.00154072	0.000137918
+Na H(+) antiporter subunit B1	0.00582982	0.00336026
+Integrase	0.00224216	0.00090697
+Cation transport protein chaC	7.60936e-06	1.00704e-05
+UniRef50_Q5HR27	0.0150107	0.00128627
+hypothetical protein	3.49574e-05	4.49581e-05
+Gamma glutamyl phosphate reductase	0.00288949	0.00016212
+Nicotinamidase	0.000686091	0.00153835
+UniRef50_Q9I158	0.000879432	0.000261608
+Adenylyl sulfate kinase	1.08238e-05	0.000114772
+hypothetical protein	1.92059e-06	8.79565e-06
+Paralysed flagella protein	0.000179163	0.00188475
+Transcriptional regulator, LuxR family protein	0.00015438	0.0020203
+UniRef50_W4JRF8	0.000103172	0.000285204
+Guanine deaminase	8.0514e-05	0.000220288
+Glyoxalase family protein	2.73347e-05	2.05036e-05
+hypothetical protein	1.17676e-05	5.96626e-06
+UniRef50_U9G1I6	2.01065e-05	3.57263e-06
+Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial	1.94592e-06	2.06397e-06
+hypothetical protein	5.84172e-06	0.000367976
+UniRef50_P39409	0.00315	0.000878393
+putative hydrolase	0.000127368	3.68478e-05
+Putative L lactate dehydrogenase operon regulatory protein	1.99709e-05	1.94914e-05
+UniRef50_A9FGU9	2.14923e-06	1.95027e-06
+UniRef50_A8FH40	7.63721e-06	1.96228e-05
+UniRef50_A6M1K4	0.00131076	0.000308539
+DNA binding protein H NS	0.00124192	0.000256528
+UniRef50_F4DU26	0.000451743	0.00110577
+Predicted phosphatase, Macro Appr 1 family	1.06803e-05	0.000115993
+Cation transporter 	0.000104998	0.00265038
+Type VI secretion system protein	0.000454289	4.53001e-05
+MULTISPECIES	0.00027911	4.21748e-05
+Ribonuclease HII	1.75831e-05	7.28481e-06
+UniRef50_R6ED70	6.14944e-05	4.60062e-06
+UniRef50_V4RKF1	2.15198e-05	4.57425e-06
+SEC C motif domain protein	9.72117e-06	2.32002e-05
+Diguanylate cyclase	0.000839721	0.000233979
+23S rRNA  methyltransferase RlmB	0.0020534	0.00108694
+UniRef50_J3NBY7	0.000107459	0.000329689
+Cobyrinic acid ac diamide synthase	0.0132549	0.00184989
+UPF0382 membrane protein SERP0230	0.0143124	0.0147048
+UniRef50_K0WGN5	0.00042576	0.000143083
+UniRef50_F2A341	3.32498e-05	3.39147e-05
+Transcriptional regulator, LysR family	0.000115918	0.00015863
+UniRef50_D1ABZ6	6.01072e-06	1.64566e-05
+UniRef50_Q8CTY1	0.0033945	0.00128805
+LysR substrate binding domain protein	0.014712	0.00440017
+hypothetical protein	1.21805e-05	9.03703e-06
+hypothetical protein	7.47121e-06	5.38137e-06
+Predicted signal transduction protein	0.000237882	0.000484049
+cell division protein FtsY	4.00639e-06	2.53076e-06
+UniRef50_H3VHH5	0.00193131	8.96952e-05
+UniRef50_A1AZI3	0.000230177	0.00010093
+Ribosomal RNA large subunit methyltransferase J	0.00282086	0.000778798
+UniRef50_I0ETN8	0.000292445	0.00101082
+UniRef50_C8S0X4	0.00110132	4.51646e-05
+Ribosomal large subunit pseudouridine synthase E	0.00299244	0.000422248
+UniRef50_E2QQW0	0.00226839	0.00176049
+hypothetical protein	7.30435e-06	0.000337538
+MgtC SapB transporter	0.00682993	0.000439096
+Type II secretion system protein	0.00933703	0.000960922
+Short chain acyl CoA synthetase	0.0020327	0.000150434
+Glucan biosynthesis protein G	5.02184e-05	4.1895e-05
+leucyl tRNA synthetase	1.55538e-06	1.1751e-06
+hypothetical protein, partial	6.6087e-05	0.000355544
+UPF0194 membrane protein YbhG	0.0036616	0.000790051
+UniRef50_A0A038GAC7	4.12413e-05	0.000136641
+Fructose 1,6 bisphosphatase class 1 1	2.13857e-05	1.21236e-05
+Marine sediment metagenome DNA, contig	0.000726027	0.000147991
+PREDICTED	5.41456e-05	3.08052e-05
+UTP  glucose 1 phosphate uridylyltransferase	0.00016968	5.41306e-05
+Putative dosage compensation complex subunit mle 	2.89795e-05	3.17753e-06
+Probable aspartate aminotransferase 1	0.00209665	0.000283167
+Lipoprotein releasing system transmembrane protein LolC	0.00011144	0.000757522
+UniRef50_I3U950	1.64571e-05	7.37347e-06
+UniRef50_C0ZTQ3	0.00020947	0.00165504
+Alpha galactosidase	0.000372212	0.000470989
+hypothetical protein	2.15131e-05	9.61818e-06
+Porphobilinogen deaminase	2.73203e-05	4.16663e-06
+2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.000499825	0.017959
+UniRef50_Q9RUR7	0.000392858	0.0272864
+UniRef50_D7BIR4	0.000343471	3.15019e-05
+tRNA pseudouridine synthase D	1.1868e-05	2.52212e-05
+Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.00027436	0.00165225
+UniRef50_E3A1T0	0.000907889	0.00033739
+Permease	0.000271965	0.000150836
+UniRef50_N1NMR4	0.000373676	0.000209775
+PREDICTED	1.79244e-05	0.000522971
+Protein NrdI	1.06601e-05	2.48149e-05
+Aminotransferase class I and II	0.00327389	0.000165252
+Energy coupling factor transporter ATP binding protein EcfA2	0.00618992	0.00268513
+Putative phage associated protein	9.84308e-06	3.41637e-05
+UniRef50_A6LX69	0.000232182	0.000346538
+hypothetical protein	0.000169394	1.2579e-05
+sulfate permease	5.06765e-05	9.13783e-06
+Branched chain amino acid ABC transporter permease protein	0.000316245	0.000686858
+GTP binding protein TypA	0.00708289	0.00127838
+UniRef50_S5XU71	7.31011e-05	3.23289e-05
+aldolase	0.000107645	1.91776e-05
+Nicotinate phosphoribosyltransferase	0.000120627	0.000913965
+4 deoxy L threo 5 hexosulose uronate ketol isomerase 2	1.17965e-05	8.40528e-06
+hypothetical protein	2.93715e-05	3.26258e-05
+UniRef50_A5G208	5.96958e-05	1.96999e-05
+Phosphoribosylformylglycinamidine synthase subunit I	2.24407e-05	1.25016e-05
+Riboflavin biosynthesis protein RibF	0.000236045	0.00367678
+Cysteine desulfurase	0.00592767	0.000838268
+Poly D alaninet ransfer protein DltD	0.00422306	0.000587279
+Phosphoenolpyruvate synthase regulatory protein	0.00406684	0.000374756
+Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI	0.00298003	0.00051336
+Ferredoxin  NADP reductase	0.00537096	0.000671921
+hypothetical protein	8.75532e-06	3.81312e-06
+hypothetical protein	6.92881e-07	2.39506e-05
+MFS type transporter	6.90592e-05	7.13144e-05
+hypothetical protein	5.25229e-06	4.5534e-06
+Riboflavin biosynthesis protein RibD	0.0229313	0.00272236
+Pyridoxine pyridoxamine 5 phosphate oxidase	8.97059e-06	4.72457e-05
+Chorismate mutase I	0.000743776	0.000341387
+UniRef50_Q9RZG4	0.000177755	0.010234
+DNA repair protein RadA 	7.08393e-06	1.80652e-05
+Carboxylesterase	0.0163266	0.00465661
+Exodeoxyribonuclease 7 large subunit	8.86432e-05	0.0013048
+4 alpha glucanotransferase	0.000556956	0.000165592
+UniRef50_A7ILS7	0.00017397	2.97292e-05
+Marine sediment metagenome DNA, contig	5.11342e-05	3.71924e-05
+UniRef50_J1C3T0	0.0060364	0.00137871
+ATP dependent protease ATPase subunit HslU	0.00415906	0.000640522
+Polysaccharide biosynthesis protein	0.000412887	4.81937e-05
+NUDIX hydrolase	5.12301e-05	4.58952e-06
+UniRef50_H1SB32	0.000153456	0.000389366
+NADH quinone oxidoreductase subunit B 1	1.30633e-05	6.21642e-05
+hypothetical protein	2.0651e-06	6.29304e-07
+Carbamoyl phosphate synthase large chain	0.000696979	0.00103955
+hypothetical protein	1.64112e-05	1.56309e-05
+peptidase S14	5.46992e-06	5.38627e-06
+Phenylalanine  tRNA ligase beta subunit	0.000473432	0.000411993
+UniRef50_P32689	0.00569115	0.000719128
+UniRef50_P32688	0.00278683	0.000313219
+Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF	0.00328582	0.000627594
+recombinase RecF	1.17486e-05	7.14195e-06
+UniRef50_P39651	0.02191	0.00366028
+hypothetical protein, partial	1.28005e-05	2.31882e-06
+Biotin lipoyl attachment	2.7708e-05	1.8942e-05
+NAD specific glutamate dehydrogenase domain protein	3.30246e-06	3.96836e-06
+UniRef50_P32687	0.00393675	0.000368603
+threonine aldolase	5.17887e-06	4.41792e-06
+ABC transporter family protein	0.0205972	0.00142397
+transposase, pseudogene	0.00011654	0.00766529
+NADPH dependent glutamate synthase beta chain and related oxidoreductases	0.000362205	0.00057205
+1 deoxy D xylulose 5 phosphate synthase	1.8464e-06	4.00713e-06
+UniRef50_C5C7N2	3.87325e-06	8.9049e-06
+UniRef50_C7ZS00	0.00625105	0.000700773
+UniRef50_M7N0H7	1.25389e-05	6.91668e-05
+UniRef50_A4WW43	0.00015581	4.05588e-05
+Fe S oxidoreductase	0.00215889	0.000315397
+hypothetical protein	3.37805e-06	2.08057e-05
+UniRef50_M4WXK7	0.00144348	0.000183261
+UniRef50_A3PRJ1	0.00198702	0.000622711
+Methyl accepting chemotaxis sensory transducer	0.000229161	0.000453613
+Biotin synthase	0.00139132	0.000569751
+UniRef50_A0A011NHA3	0.000145149	1.27597e-05
+TetR family transcription regulator	0.00656621	0.00140901
+UniRef50_T2SYZ3	8.20527e-06	0.00170562
+Two component, sigma54 specific, transcriptional regulator, Fis family	0.000355296	0.000403719
+Alpha acetolactate decarboxylase	0.023631	0.00436915
+Low molecular weight protein tyrosine phosphatase	0.00532778	0.000210763
+GMP synthase	9.19516e-05	0.00015446
+hypothetical protein	2.70387e-05	3.13902e-05
+ferrichrome ABC transporter	1.41385e-05	1.71446e-05
+hypothetical protein	9.40152e-06	7.12976e-06
+formyltetrahydrofolate deformylase	1.71691e-05	9.47029e-06
+NADP dependent oxidoreductase domain protein	0.000167437	0.00102592
+Neutral ceramidase	0.000666061	0.000165431
+UniRef50_E2QM67	0.00191596	0.000661662
+chromosome partitioning protein	7.28938e-06	6.57003e-06
+Purine nucleosidase	1.37195e-05	7.19848e-06
+Low specificity L threonine aldolase LtaE	0.000469726	0.000481497
+hypothetical protein	0.000134216	1.4156e-05
+Na+ H+ exchanger	0.0076432	0.00164102
+Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein	0.000389698	0.000381319
+Elongation factor P	0.00019268	0.00229254
+heavy metal transporting P type ATPase	4.28323e-06	2.70599e-05
+Inositol monophosphatase	0.00414011	0.000229216
+Ribonuclease E	0.000746837	0.00122865
+Mobile element protein	2.16542e-05	5.95588e-06
+hypothetical protein	3.39252e-05	0.00361667
+rRNA methyltransferase	3.20532e-05	1.07293e-05
+hypothetical protein	1.18062e-05	4.64742e-06
+2 isopropylmalate synthase	3.05616e-06	9.19008e-06
+UDP N acetylmuramoylalanine  D glutamate ligase	7.57992e-05	0.0031043
+RepA	0.000723337	0.000149891
+hypothetical protein, partial	0.000195458	5.39858e-05
+Acetolactate synthase isozyme 3 large subunit	0.00234598	0.00115859
+Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	6.04453e-06	8.2064e-06
+UniRef50_Q9RWS6	1.60613e-05	0.00905273
+glutamate synthase, partial	1.58191e-06	1.435e-06
+Cell envelope related transcriptional attenuator	3.41806e-06	6.76786e-06
+UniRef50_Q1R8C8	0.00213264	0.000189021
+2 methylcitrate synthase	0.00200566	0.00651707
+Polar amino acid ABC uptake transporter membrane spanning protein	0.00515234	0.00272481
+Glutamate 1 semialdehyde 2,1 aminomutase	8.06244e-06	1.23779e-05
+RNA methyltransferase	0.000711025	0.000482831
+Crossover junction endodeoxyribonuclease RuvC	0.00415892	0.00142919
+UniRef50_Q0BQU0	1.00586e-06	1.16679e-05
+Dihydropyrimidine dehydrogenase 	9.94801e-06	4.7044e-06
+UniRef50_A3M2D6	0.000629391	0.0051758
+UniRef50_A3M2D5	0.000199395	0.00795881
+PREDICTED	9.28611e-05	2.7489e-06
+UniRef50_A3M2D9	0.000313777	0.00625908
+UniRef50_A3M2D8	8.63445e-05	0.00499738
+Urease subunit beta	3.44561e-05	1.09122e-05
+UniRef50_UPI0003C1B3D1	2.94188e-06	7.19748e-06
+hypothetical protein	1.60095e-05	3.05542e-05
+hypothetical protein	1.01923e-05	8.73514e-06
+hypothetical protein	5.61998e-05	2.45473e-05
+tRNA dimethylallyltransferase	2.6334e-05	0.00172807
+Serine acetyltransferase	0.000439444	0.000553944
+Superoxide dismutase [Fe]	0.00454491	0.00018568
+Menaquinone biosynthesis protein, SCO4494 family	9.56104e-05	0.00132262
+L aspartate oxidase, partial	4.5787e-06	4.81736e-06
+UDP N acetylmuramoylalanine  D glutamate ligase	0.000116319	0.00123227
+Phosphoribosylaminoimidazolesuccinocarboxamide synthase like protein	4.07379e-05	2.24014e-05
+Methyl accepting chemotaxis protein PA2652	0.000314264	0.000197644
+UniRef50_T1K2G0	0.00860893	0.000532932
+Transposase	0.00657892	3.85653e-05
+UniRef50_A3PLJ3	0.011658	0.00150525
+hypothetical protein	8.46377e-05	5.56099e-05
+hypothetical protein	4.08903e-06	2.90673e-06
+Phosphate butyryltransferase	0.000111317	0.000773094
+Hydrolase	0.00018961	0.00406865
+Phosphodiesterase, MJ0936 family	0.0117291	0.000458209
+Enoyl [acyl carrier protein] reductase [NADPH] FabI	0.0159756	0.00192969
+2 polyprenylphenol hydroxylase	6.20082e-06	5.36161e-06
+DNA primase	5.3681e-05	0.000989469
+UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00229916	0.00097429
+Acriflavin resistance protein	0.000346758	0.000278078
+PREDICTED	4.82808e-05	1.09147e-05
+Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase	0.000735669	0.000680301
+Hypoxia induced family protein	1.90405e-05	1.28666e-05
+thymidylate synthase	9.63763e-06	2.83318e-05
+UniRef50_F5RE08	0.000465	0.000163851
+TRAP C4 dicarboxylate transport system permease DctM subunit 	9.83016e-06	4.10982e-06
+hypothetical protein, partial	1.37559e-05	5.62526e-05
+UniRef50_G7LXD6	9.55199e-05	0.000641781
+Type I PKS	0.000225793	4.10069e-05
+Putative sulfate transporter YbaR	0.0296565	0.00496287
+UniRef50_B9EBL7	0.0131226	0.00113937
+UniRef50_E4NJ63	2.74445e-07	2.0949e-07
+UniRef50_A1B623	0.000618559	3.6373e-05
+thymidylate kinase	8.93648e-06	7.22783e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.017105	0.00254709
+Holliday junction resolvase	1.57783e-05	7.24516e-06
+L idonate 5 dehydrogenase (+))	0.00169215	0.000230211
+Response regulator	9.01675e-05	7.57998e-05
+xanthine phosphoribosyltransferase	3.09931e-05	2.6938e-05
+carbamoyl phosphate synthase large subunit	1.28249e-06	2.34108e-06
+UniRef50_A6LT71	0.000169688	0.00160566
+UniRef50_F4A863	7.47836e-06	7.03757e-06
+hypothetical protein	1.14332e-05	1.09526e-05
+Acyltransferase 3	0.00161022	0.000367947
+PTS system mannitol specific EIICB component	1.05879e-05	1.51757e-05
+hypothetical protein	4.39773e-05	2.74994e-05
+antitermination protein NusG	2.34111e-05	2.82568e-05
+UniRef50_J9NZJ3	8.08888e-05	0.000189574
+UniRef50_Q3JPN7	0.000101853	1.4955e-05
+UniRef50_J9NZJ0	6.02841e-06	6.17358e-05
+Glutamate Leucine Phenylalanine Valine dehydrogenase family protein	4.49886e-06	3.59412e-05
+AXE1 multi domain protein	0.000102294	0.0021084
+Catabolic 3 dehydroquinase	3.8883e-05	1.13236e-05
+UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.00588038	0.00423392
+Probable electron transfer flavoprotein quinone oxidoreductase YgcN	0.00401797	0.000705356
+UvrABC system protein A	4.03697e-05	0.00174006
+Nucleoside diphosphate kinase	9.5e-06	2.41062e-05
+Thermoresistant gluconokinase	0.000552355	0.00120604
+Aldose 1 epimerase	0.0023008	0.000661507
+hypothetical protein	3.14797e-06	2.93974e-05
+UniRef50_M9VF11	0.0015678	0.00450805
+Transposase	0.000262929	0.000647179
+Thiol	0.000144856	0.00207817
+Probable phosphopantothenoylcysteine decarboxylase	0.000960612	0.00200722
+UniRef50_B0VEJ2	6.11906e-05	0.00259317
+Octanoyltransferase LipM	0.00555848	0.00228624
+Os06g0328400 protein 	3.85725e-05	7.96808e-05
+ABC transporter related protein	0.00151998	0.000244156
+Transcriptional regulator, GntR family	0.000148696	0.000715326
+glycerol kinase	1.16673e-05	2.8135e-06
+Replication initiation protein	0.000224691	0.000144795
+cystine transporter permease	5.94134e-05	5.54996e-05
+S adenosylmethionine synthetase	1.59978e-05	0.000811583
+2 hydroxyacid dehydrogenase	0.000233238	9.69705e-05
+hypothetical protein	9.95706e-05	7.905e-06
+UPF0717 family protein	0.00506496	0.00225851
+hypothetical protein	1.3842e-05	7.5954e-06
+UniRef50_Q49VT5	0.00071145	0.000582075
+UniRef50_M1MBM4	0.000500486	0.00110644
+1 deoxy D xylulose 5 phosphate reductoisomerase	0.00268051	0.000867195
+GCN5 related N acetyltransferase	0.0155312	0.0027131
+Putative transposase	5.17458e-05	1.04471e-05
+Iojap protein	3.19783e-05	0.000498539
+aldehyde dehydrogenase, partial	1.69822e-05	0.000104661
+GTP cyclohydrolase 1	2.61823e-05	1.71163e-05
+UniRef50_A0A037UUK8	0.000195949	4.39727e-05
+UniRef50_Q6A5P9	0.000547092	0.00531144
+UvrB protein 	0.00466374	0.000150465
+Putative GTP cyclohydrolase 1 type 2	0.0038762	0.002405
+hypothetical protein	0.000118498	8.75708e-06
+UniRef50_B4FZA3	6.07586e-06	5.59917e-06
+ATPase AAA	4.51702e-06	3.96728e-05
+UniRef50_V0V0Z7	0.000305953	0.000245314
+hypothetical protein	1.82834e-06	8.84089e-06
+CobB CobQ domain protein glutamine amidotransferase	0.00197196	0.00075567
+UniRef50_A5UL08	0.00303551	0.000359854
+Cyclase family protein	0.0165142	0.00285029
+hypothetical protein	2.28203e-06	3.51056e-05
+UniRef50_F8TVB7	1.75966e-05	9.0426e-06
+YycH protein	0.0196086	0.00234045
+thioredoxin reductase	1.14808e-05	6.65475e-06
+Exonuclease RNase T and DNA polymerase III	0.00013198	0.000118763
+UniRef50_F1VZ41	0.000124861	1.18557e-05
+Mucin 17 like protein	3.98972e-06	7.20616e-06
+ABC type transporter, periplasmic subunit family 3	0.000628672	0.000590029
+D ribose transporter ATP binding protein	3.11987e-06	2.89349e-06
+UniRef50_J7R096	5.0855e-05	2.72967e-05
+Mg chelatase, subunit ChlI	7.90667e-06	1.07111e-05
+Flagellar hook capping protein	0.000307696	0.000387979
+Signal recognition particle protein	0.00547965	0.00079027
+Formate  tetrahydrofolate ligase	2.40489e-05	2.20402e-05
+Arsenate reductase ArsI1	0.00560538	0.000832875
+UniRef50_I4Z0I0	0.000131957	1.66757e-05
+chemotaxis protein CheY	1.78498e-05	1.20089e-05
+Protein translocase subunit SecA	0.000349562	0.000773669
+Carbohydrate ABC transporter membrane protein 1, CUT1 family	0.000216355	0.00355405
+Serine threonine protein kinase, RI01 family	0.000383799	0.000356491
+hypothetical protein	4.07502e-05	1.58327e-05
+PREDICTED	1.41806e-05	7.25254e-06
+Cytochrome c type biogenesis protein CcmH	0.0027747	0.000514371
+Flagellar basal body rod protein FlgF	0.000142807	0.000152695
+N acetylglucosamine 6 phosphate deacetylase	0.000347404	0.000578195
+MutT nudix family protein	0.000216662	0.018861
+NADH quinone oxidoreductase, chain I	7.4659e-05	3.16705e-05
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.000175701	0.000612427
+UniRef50_W0A553	0.000267811	0.00167614
+hypothetical protein	0.000722834	0.000140115
+UniRef50_Q3J4U6	0.00230312	0.00165235
+Copper transporting ATPase	9.18955e-05	0.00273401
+Exonuclease VIII	0.000405017	7.60465e-05
+UniRef50_Q0SAE7	0.000107082	4.14592e-05
+Glucose 1 phosphate thymidylyltransferase	0.00143663	0.00245279
+Deoxyguanosinetriphosphate triphosphohydrolase	0.00137563	0.000339634
+von Willebrand factor type A domain containing protein	0.00220017	0.000269868
+Flagellar biosynthesis protein FlhB	8.15674e-05	1.5861e-05
+ABC transporter ATP binding protein	0.000127108	2.22323e-05
+Beta Ig H3 fasciclin	4.73019e-05	6.24206e-06
+UniRef50_Y8DDU0	0.005554	0.000116907
+peptidase	2.48289e-05	1.50819e-05
+UniRef50_G8B089	5.66257e-05	6.01523e-05
+hypothetical protein	6.58579e-05	4.80365e-06
+UniRef50_Q9I1P5	0.000629208	0.000887268
+UniRef50_B8EMG0	0.000853143	0.000352596
+transposase	0.00472769	0.00059069
+Lysine decarboxylase	0.000192223	0.00455756
+UniRef50_Q8CSF5	0.00945752	0.000232603
+hypothetical protein	0.000164843	2.76555e-05
+Amino acid acetyltransferase	0.000126492	0.00149121
+hypothetical protein, partial	2.47387e-05	3.814e-05
+Acetylglutamate kinase	0.00508714	0.000967651
+hypothetical protein	0.000122113	8.04327e-06
+Glutamine synthetase	7.3948e-06	6.50166e-06
+UDP glucose 4 epimerase	0.000875977	0.000103103
+UniRef50_H4EPB9	6.49189e-05	1.28458e-05
+hypothetical protein	6.6093e-06	0.000112735
+hypothetical protein	5.35917e-05	6.9428e-06
+UniRef50_W1MTL3	0.000961777	0.000195316
+Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein	0.000597267	0.00036249
+UniRef50_W7VQA0	0.00125313	0.000395768
+resolvase	0.000100935	1.31945e-05
+RNA polymerase sigma factor RpoD	0.000308029	0.0014786
+Long chain fatty acid  CoA ligase	0.000837329	0.00355284
+UniRef50_A4JN97	0.00143027	0.000389
+UniRef50_A6FSV8	0.000124707	6.59545e-05
+hypothetical protein	3.28018e-06	3.68319e-06
+Argininosuccinate lyase	0.0104501	0.00126707
+Glycogen synthase	0.000363517	0.000128795
+UniRef50_Q5HMZ9	0.00788622	0.00169851
+DeoR family transcriptional regulator	1.00927e-05	2.26948e-05
+M42 glutamyl aminopeptidase	0.000386403	0.000378178
+UniRef50_G0P7V6	5.15231e-06	1.94183e-06
+Selenocysteine specific elongation factor	0.00274162	0.000547509
+UniRef50_I6TYL9	0.00489506	0.000897437
+PREDICTED	4.25413e-05	4.20054e-05
+Probable NADH quinone oxidoreductase subunit 5	0.0183778	0.00262252
+hypothetical protein	1.32208e-05	0.000100557
+ABC type dipeptide oligopeptide nickel transport systems	0.000273565	3.25744e-05
+Nicotinamidase family protein YcaC	0.000345178	0.00216296
+Acetyl CoA carboxylase, biotin carboxylase	0.000237803	0.00411029
+phospho N acetylmuramoyl pentapeptide transferase	5.9028e-06	7.3924e-06
+NADH quinone oxidoreductase subunit A	6.2363e-05	5.15989e-05
+ABC type multidrug transport system, permease component	0.000842005	0.000104766
+D alanine  D alanine ligase	6.28049e-06	0.00333852
+Diguanylate cyclase	3.61207e-06	1.7384e-05
+Pseudouridine synthase	0.0056886	0.00513132
+EAL domain protein	7.60318e-06	4.04774e-05
+hypothetical protein	5.79117e-06	1.28661e-05
+hypothetical protein	7.39727e-05	0.000269452
+Prolipoprotein diacylglyceryl transferase	4.65091e-06	1.06315e-05
+DNA invertase	5.56232e-05	2.8318e-05
+Threonine synthase	0.0153317	0.00754435
+orotidine 5 phosphate decarboxylase	5.30144e-06	7.5586e-06
+Glycyl glycine endopeptidase LytM	0.0110685	0.000964747
+UPF0748 lipoprotein YddW	0.00157134	7.88278e-05
+50S ribosomal protein L3	0.00793955	0.00206085
+UniRef50_P54452	0.0213792	0.00424104
+diguanylate cyclase	1.18129e-05	4.72522e-06
+hypothetical protein	1.30731e-05	1.58595e-05
+UniRef50_A0A022G9Q8	0.000337112	9.22043e-05
+Probable L asparaginase	0.000228945	0.00172174
+Bifunctional purine biosynthesis protein PurH	2.96967e-06	1.06686e-05
+Predicted serine threonine protein kinase	0.000950264	0.00107234
+UniRef50_P77735	0.00309016	0.00064078
+Amino acid permease	0.000289261	0.00188712
+Tryptophan synthase alpha chain	1.43776e-05	1.80786e-05
+Citrate carrier	0.0017195	0.000225741
+UniRef50_Q0FMS9	0.00136439	0.000471466
+2 oxoacid ferredoxin oxidoreductase, alpha subunit	0.0177064	0.00166064
+UniRef50_A5UJE2	0.00221807	0.0014051
+transcriptional regulator	6.60562e-06	6.36862e-05
+UniRef50_W5VFG0	0.00446549	0.00145351
+Tyrosine protein phosphatase CpsB	0.000141407	0.00209855
+Thioesterase family protein	0.000127159	1.20166e-05
+UniRef50_D3A297	8.45272e-05	0.000131577
+Putative septation protein SpoVG	0.00359073	0.00469336
+UniRef50_X2M604	6.56894e-05	8.11798e-05
+hypothetical protein	1.26139e-05	4.57004e-06
+cold shock protein	1.84725e-05	6.78023e-06
+UniRef50_R6JIT7	0.0175015	0.00299302
+hypothetical protein	3.71557e-05	3.01641e-05
+Peroxiredoxin	0.00109731	0.000669913
+Phosphoglycerate kinase	4.65781e-06	0.00242757
+Fructose 1,6 bisphosphatase class 1	3.4077e-05	1.33816e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0192033	0.00405376
+Spermidine putrescine import ATP binding protein PotA	7.20897e-05	0.00294033
+hypothetical protein	3.58004e-06	2.68894e-06
+Conjugal transfer protein, putative	0.0109981	0.00158391
+Transcriptional regulator	0.000493129	0.000137707
+UniRef50_A0A011ME20	2.25351e-05	0.000193694
+UniRef50_Q3J233	0.0106196	0.00241035
+Chaperone protein TorD	0.00465545	0.00135114
+hypothetical protein	4.02085e-06	3.52494e-06
+Arginine biosynthesis bifunctional protein ArgJ	0.0002564	0.00687825
+UniRef50_D6T8U6	0.00982665	0.000640867
+UniRef50_M4V953	4.18323e-06	4.22062e-06
+EtfB protein	0.000211223	0.00184745
+UniRef50_H1QUK8	7.62836e-05	3.51703e-05
+hypothetical protein	3.63881e-05	1.79044e-05
+PREDICTED	1.16304e-05	4.07715e-06
+UniRef50_G7DIA2	8.68386e-05	4.23055e-05
+Coenzyme PQQ synthesis protein E	0.00156848	8.8284e-05
+GTP pyrophosphokinase	2.36761e-06	8.97332e-06
+UniRef50_A6QIK9	0.00573953	0.00137202
+Glutamine synthetase	4.62231e-06	0.000608205
+Ribonuclease HII	1.94774e-05	4.65994e-06
+hypothetical protein	0.000244165	2.43294e-05
+DEAD DEAH box helicase domain protein	0.000593859	0.00119914
+Inner membrane metabolite transporter ygcS	0.00234196	0.000700504
+UniRef50_J7QJW8	0.000112109	9.3686e-05
+UniRef50_K5GQ46	0.000998237	5.49998e-05
+UniRef50_A6LYI1	0.000537762	0.000208318
+PREDICTED	1.47963e-05	7.19347e-05
+Pyridine nucleotide disulfide oxidoreductase family protein	0.000120596	0.000177912
+Aminotransferase, class V	0.0146985	0.00297485
+RND efflux system, outer membrane lipoprotein CmeC	0.000174776	0.00123344
+Putative aminotransferase MSMEG_6286 MSMEI_6121	0.000248991	0.00255313
+GCN5 related N acetyltransferase	0.000134261	0.000234785
+TPR repeat containing protein	0.00036483	0.000119078
+30S Ribosomal protein S1	0.00437674	0.00257119
+hypothetical protein	1.84221e-05	0.000126138
+2 phospho L lactate guanylyltransferase	0.00153366	0.00121089
+UniRef50_B9KPQ3	0.00440881	0.000195468
+Late competence protein ComGD	2.03951e-05	1.44789e-05
+UniRef50_A7AK72	3.06751e-05	0.000100836
+Plasmid recombination enzyme	0.214064	0.0334602
+UniRef50_Q9RRA3	0.00111256	0.00703241
+3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000424219	0.00323935
+Alpha glucosides binding periplasmic protein AglE	0.0110472	0.00114738
+hypothetical protein	8.56392e-05	2.31017e-05
+hypothetical protein	1.37538e-05	7.04327e-06
+PREDICTED	3.08541e-05	2.21606e-06
+Multi sensor signal transduction histidine kinase	0.00388077	0.00073197
+hypothetical protein	1.8037e-06	1.03947e-06
+UniRef50_A6CJT6	1.71325e-05	8.25365e-05
+ribonucleotide diphosphate reductase subunit beta	0.000127585	0.00124409
+Peptidyl tRNA hydrolase	2.21409e-05	1.29095e-05
+Hypothetical radical SAM family enzyme	2.27121e-05	0.000116416
+DNA repair and recombination protein 	0.000274036	0.000158115
+3 hydroxyacyl CoA dehydrogenase	6.68615e-06	3.12625e-05
+Pyruvate kinase	3.66181e-06	7.42434e-06
+sn glycerol 3 phosphate import ATP binding protein UgpC	6.61646e-05	3.51659e-05
+Putative Holliday junction resolvase	2.66324e-05	1.03987e-05
+Glycosyl hydrolase, family 3	0.000545698	5.10141e-05
+PREDICTED	0.000325168	6.9066e-05
+UniRef50_Q58493	0.00347892	0.000377479
+UniRef50_A4WTJ0	0.000141011	3.9557e-05
+Protein tas	0.00287206	0.00482037
+UniRef50_U6FW85	0.000567028	0.000385894
+Ecotin	0.00187898	0.00029418
+peptide ABC transporter permease	1.40418e-05	7.57913e-06
+ATP dependent OLD family endonuclease	0.00326123	0.00122928
+Diguanylate cyclase	2.81473e-06	2.18787e-05
+Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase	0.00341362	0.00114522
+UPF0324 membrane protein CPE0129	0.00040502	0.0010207
+UDP N acetyl D mannosaminuronic acid transferase	0.00294083	0.000242827
+Alcohol dehydrogenase Adh4	0.000515125	0.0013492
+ABC transporter related protein, partial	3.60536e-05	7.88551e-06
+hypothetical protein	4.78563e-05	9.91757e-06
+7 carboxy 7 deazaguanine synthase	0.00433344	0.000764134
+UniRef50_Q0FEK0	4.28525e-05	5.20689e-06
+Methionine import ATP binding protein MetN 1	4.26458e-06	6.32831e-06
+hypothetical protein	7.86076e-06	2.58631e-06
+Para aminobenzoate synthase component 1	7.77847e-05	0.000405707
+UniRef50_F0DCU8	6.98931e-05	1.61773e-05
+Endoribonuclease L PSP	0.000419435	0.000112242
+Adhesin invasin	0.000162793	0.000116854
+Ribulose bisphosphate carboxylase small chain	0.00716437	0.000290229
+Phenol hydroxylase	1.009e-05	8.78738e-05
+UniRef50_C6SPE5	0.00285214	0.000393793
+UniRef50_I6Z3X6	0.00180957	1.67231e-05
+Putative zinc binding oxidoreductase	9.57595e-05	0.000100933
+tRNA N6 adenosine threonylcarbamoyltransferase	1.34978e-05	2.12086e-06
+Binding protein dependent transport systems inner membrane component	0.00204993	0.000554567
+4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000885542	0.00383687
+D isomer specific 2 hydroxyacid dehydrogenase family protein	0.000120053	0.000622432
+Flagellar basal body associated protein FliL 2	0.00622667	0.000176742
+DNA repair protein	3.41259e-06	1.89754e-06
+Electron transfer flavodomain protein	0.00325321	0.000368961
+Dehydrogenase	0.000397975	0.000816556
+PREDICTED	2.20757e-06	8.90005e-06
+Alkaline protease secretion protein AprF	0.000216742	0.000185812
+NADH quinone oxidoreductase subunit L	0.00821461	0.00104985
+Glycine betaine ABC transporter, ATP binding component	0.0100393	0.00270109
+Blr3677 protein	0.0112997	0.00207286
+UniRef50_D6FNR4	4.94529e-05	1.22423e-06
+Membrane protein, putative	0.0059363	0.000520615
+UniRef50_A0A023RYQ0	0.000295604	0.00311083
+ATP dependent DNA helicase RecQ	0.000845983	4.59728e-05
+hypothetical protein	5.90332e-06	5.73899e-06
+Queuine tRNA ribosyltransferase	4.96584e-06	8.14566e-06
+Outer membrane protein G	0.0025583	0.000403789
+MutT nudix family protein	0.000705547	0.000154005
+Nicotinate phosphoribosyltransferase	0.0052414	0.000856148
+Phage major capsid protein, HK97 family	0.00905109	0.000727501
+PTS system, beta glucosides specific IIA component	0.00505792	0.00137294
+S adenosylmethionine synthase	3.43111e-05	0.000240232
+Ribosomal protein S6  L glutamate ligase	0.0020308	0.000927596
+UniRef50_B0VE73	0.000254502	0.00389107
+Putative glucoamylase S1 S2	1.98571e-05	0.000110469
+Sugar ABC transporter, ATP binding protein	0.000620909	5.91079e-05
+hypothetical protein	1.80069e-05	4.88366e-06
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	1.19498e-05	2.29741e-05
+UniRef50_Q9RV43	0.000741549	0.0163724
+UniRef50_E4PJS6	4.62989e-06	6.24807e-06
+Amino acid ABC transporter substrate binding protein, PAAT family	0.00149592	0.000726449
+Putative UTP  glucose 1 phosphate uridylyltransferase	8.80795e-05	3.15734e-05
+UDP glucose 6 dehydrogenase	2.47318e-06	0.000137129
+N terminal double transmembrane domain containing protein	1.00616e-06	1.01334e-06
+UniRef50_Q1CXY2	0.000935792	1.34301e-05
+UniRef50_X4YWC2	6.89354e-06	1.03513e-05
+Benzoate 1,2 dioxygenase subunit alpha	0.000437573	0.00462613
+Superoxide dismutase [Mn]	0.00112546	0.00352224
+Trimethylamine N oxide reductase 2	0.00079492	0.000150684
+Transcription repair coupling factor	0.000464561	2.57116e-05
+Methylmalonate semialdehyde dehydrogenase [acylating] 2	1.20492e-05	0.00217025
+Transposase IS4 family protein	0.000667058	2.01765e-05
+UniRef50_K0S0E9	2.87282e-06	5.5949e-06
+UniRef50_J0YAZ5	0.000841371	5.70243e-05
+ATP synthase subunit beta, mitochondrial	1.68322e-05	8.46305e-06
+UniRef50_W4TMC7	8.61834e-06	0.000131813
+Glycerophosphoryl diester phosphodiesterase	0.00730943	0.00158777
+PREDICTED	1.7324e-05	5.22219e-06
+ABC transporter permease and ATP binding protein	0.00444171	0.000813727
+Mobile element protein	2.219e-05	3.60087e-06
+PREDICTED	5.58121e-06	3.45593e-05
+UniRef50_A6LU76	9.71748e-05	0.000733394
+Membrane protein	0.00119667	5.69701e-05
+LOG family protein YgdH	0.00299543	0.000206026
+Major exported protein	0.000428842	0.000175019
+UniRef50_D2NU09	5.64758e-06	3.05196e-05
+UniRef50_D9RIX1	0.000267914	0.000111684
+hypothetical protein	4.22328e-06	4.67254e-06
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	8.95791e-06	0.00317339
+hypothetical protein	3.89277e-05	4.84928e-05
+Dihydroorotate dehydrogenase B ), electron transfer subunit	0.00500723	0.00139827
+Acetyltransferase, GNAT family	0.0174068	0.00287854
+Predicted protein 	5.93934e-06	9.8034e-06
+hypothetical protein	0.000265601	0.000504409
+PREDICTED	1.44456e-05	1.39999e-05
+UniRef50_P37631	0.00213708	0.00155395
+hypothetical protein	1.57192e-05	9.411e-06
+Pyruvate synthase subunit PorA	0.00424625	0.000857897
+CoA transferase family III	0.000857459	0.00310024
+UniRef50_Q6F964	0.000116185	0.00282507
+Replication initiation protein, truncated	0.000138203	3.31435e-05
+Uroporphyrinogen decarboxylase	6.54541e-06	1.20588e-05
+UniRef50_F3Z4V2	7.77097e-05	2.20616e-05
+UniRef50_U5NRR7	0.0159322	0.0022083
+Dihydroorotate dehydrogenase 	7.35513e-06	0.00335168
+UniRef50_A5V4D5	1.92875e-05	1.11654e-05
+hypothetical protein	2.51072e-06	2.62169e-06
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0115147	0.000957581
+Formamidopyrimidine DNA glycosylase H2TH domain protein	0.000175286	0.00411815
+N acetylglucosamine 1 phosphate uridyltransferase, partial	1.29214e-05	4.4235e-06
+ABC peptide transporter, inner membrane subunit	0.00115524	0.000268271
+Transcriptional regulator PdhR	0.000663952	0.000255226
+UniRef50_V5ESH7	4.39596e-06	0.000159513
+Carbonic anhydrase	0.017402	0.000646485
+UniRef50_K0K6Y3	1.75532e-05	1.27588e-05
+Alpha ketoglutarate permease	0.00261111	0.00274535
+UniRef50_M1XFP7	0.000105241	0.000307258
+UniRef50_R4GHV6	6.28787e-05	6.03779e-05
+hypothetical protein, partial	3.09672e-05	8.25965e-06
+Phage integrase family protein	0.00710272	0.00235173
+UniRef50_Q8DND7	0.00664992	0.000481586
+UniRef50_C3KNX2	0.000178664	6.30113e-05
+PREDICTED	5.61628e-06	4.06868e-06
+Predicted protein	7.69744e-05	9.16233e-05
+Putative cysteine desulfurase IscS 1	8.68531e-06	0.000446447
+heat shock protein HSP33	1.92449e-05	1.01524e-05
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.00328501	0.000159489
+Ribonuclease PH	0.00112839	1.12138e-05
+Leucyl phenylalanyl tRNA  protein transferase	0.00131419	0.000390369
+Ketol acid reductoisomerase	0.0308152	0.0180711
+PREDICTED	8.19168e-06	1.93394e-05
+preprotein translocase subunit TatA	7.4205e-05	2.38065e-05
+Acetyltransferase, GNAT family	0.0109629	0.000675061
+GMP synthase [glutamine hydrolyzing]	5.21644e-06	9.49292e-06
+UniRef50_A7ZIS2	0.000214484	3.21346e-05
+hypothetical protein	5.39205e-05	5.66793e-06
+CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase	0.000126048	0.00224315
+NHL repeat containing protein	8.28937e-05	0.000442262
+malate dehydrogenase, partial	6.07428e-05	1.80783e-05
+Lysine  tRNA ligase	0.000573773	0.00275663
+Beta galactosidase	0.00251724	0.000555695
+UniRef50_Q3IV38	0.0136436	0.0012865
+Capsular polysaccharide biosynthesis protein CapA	0.00903492	0.000564568
+3 beta hydroxysteroid dehydrogenase	6.43283e-06	2.19258e-05
+Putative L xylulose 5 phosphate 3 epimerase	7.81891e-05	1.07273e-05
+chromosome partitioning protein ParA, partial	0.000508047	7.84395e-05
+chorismate synthase	1.34899e-05	8.58836e-05
+Ribosomal RNA small subunit methyltransferase C	0.000317228	0.00323562
+PREDICTED	1.1564e-05	9.49463e-06
+UniRef50_X3EN79	0.000541514	0.000360582
+hypothetical protein	0.000653803	8.24471e-05
+Glucose 1 phosphate adenylyltransferase	0.013026	0.0014208
+hypothetical protein	0.00186611	0.000248399
+hypothetical protein, partial	6.3968e-07	2.665e-07
+PREDICTED	0.000452578	0.000312499
+ABC transporter	6.35822e-06	5.4636e-05
+Marine sediment metagenome DNA, contig	3.06564e-05	3.41701e-05
+Membrane bound O acyl transferase MBOAT family protein	9.24584e-05	0.000520008
+Peptide chain release factor 2	0.00349114	0.00712197
+Molecular chaperone Hsp31 and glyoxalase 3	0.0106233	0.0054795
+hypothetical protein	1.82159e-06	1.32158e-06
+hypothetical protein	3.66642e-05	3.70581e-06
+Rhamnan synthesis protein F domain protein	3.33784e-05	3.50754e-05
+HTH type transcriptional regulator YybE	0.000268872	0.00107279
+Dihydrodipicolinate synthetase	0.000303674	9.81255e-05
+UDP N acetylglucosamine 1 carboxyvinyltransferase	6.83191e-06	1.34963e-05
+hypothetical protein	3.18734e-06	2.23254e-06
+UniRef50_C7C7I3	0.00630247	0.000675359
+Response regulator receiver protein	0.00020274	0.0596256
+dGTPase	0.00211844	0.000254911
+Fructose 1,6 bisphosphatase class 1	0.00277983	0.00131285
+Release factor glutamine methyltransferase	7.97476e-06	0.000281597
+Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00108265	5.01872e-05
+hypothetical protein	0.000219405	0.000281487
+hypothetical protein	1.25824e-05	1.13136e-05
+Phosphoribosylamine  glycine ligase	0.0160153	0.00285339
+Carbamoyl phosphate synthase L chain ATP binding	6.63804e-05	0.00216569
+hypothetical protein TREMEDRAFT_44294	1.97194e-05	2.11858e-05
+hypothetical protein	1.98534e-05	1.31635e-05
+UPF0053 inner membrane protein YgdQ	0.00304757	0.000378131
+Phenol hydroxylase 	0.000100234	4.15497e-06
+1,4 Dihydroxy 2 naphthoyl CoA synthase	6.15436e-05	1.51558e-05
+Diaminopimelate decarboxylase	9.93133e-06	0.00165272
+PTS system	3.65294e-05	1.63838e-05
+hypothetical protein	5.72557e-06	2.05985e-05
+hypothetical protein	5.39932e-06	3.41915e-06
+Polyphosphate kinase	2.04985e-06	7.67926e-05
+hypothetical protein	0.000149923	1.47495e-05
+Biotin synthase	0.0218543	0.00322283
+Transcriptional regulator	0.000460964	0.000105505
+Arsenical resistance protein	0.000127159	0.00611489
+sulfite oxidase	9.02258e-06	3.96626e-05
+Oxidoreductase FAD NAD binding	4.46945e-05	6.72199e-06
+UniRef50_Q1GW15	9.14948e-05	2.92014e-05
+UniRef50_I1F5A5	1.24782e-05	3.8279e-06
+Peptide deformylase	8.45031e-06	6.35737e-06
+UniRef50_C6T9B8	9.76619e-05	2.64765e-05
+UniRef50_A6QEA3	0.0117945	0.00132088
+Ferric enterobactin receptor	0.00111129	0.000600143
+transcription antiterminator NusG	2.34555e-05	2.65206e-05
+hypothetical protein TREMEDRAFT_74449	1.68817e-06	1.38942e-06
+Ribonuclease 3	5.5405e-06	0.000673169
+tRNA pseudouridine synthase A	6.6294e-06	0.00139118
+PREDICTED	1.41562e-05	7.73068e-06
+PemK family transcriptional regulator	0.00154585	0.00128157
+hypothetical protein	0.00501554	0.00119823
+4 hydroxy tetrahydrodipicolinate reductase	0.000316503	0.0034054
+Hydrophobe amphiphile efflux 1  family protein (Fragment)	0.000525429	0.000149438
+UniRef50_D9SR21	0.000211666	0.000188624
+UniRef50_H5UVK0	3.80556e-05	1.42729e-05
+UniRef50_I3GYQ4	2.73839e-05	2.50446e-05
+Ribonuclease J2	5.78913e-05	2.48167e-05
+UniRef50_I1EYN0	0.000292566	2.56737e-05
+Glutamine synthetase	0.0117266	0.0019364
+hypothetical protein	1.02287e-05	3.1378e-06
+Heat responsive suppressor HrsA	0.00313557	0.000414918
+Phosphoenolpyruvate carboxykinase [ATP]	9.26962e-06	0.0225899
+Putrescine binding periplasmic protein	0.0119897	0.00142089
+Enterobactin synthase component E	0.00328399	0.0052085
+hypothetical protein	0.000232786	9.89243e-05
+hypothetical protein	2.13146e-05	4.51563e-06
+ABC transporter ATP binding protein	0.000125183	0.000154137
+UniRef50_A9IQ26	0.00839358	0.000823518
+Succinate semialdehyde dehydrogenase	0.000228443	0.0326217
+hypothetical protein	5.93407e-06	3.28792e-06
+UniRef50_H4HIB4	0.00458803	0.000362675
+Beta lactamase domain protein	0.000333216	0.00111722
+Electron transfer flavoprotein alpha subunit	5.25634e-06	4.1443e-06
+NADH dehydrogenase [ubiquinone] iron sulfur protein 2	2.59997e-05	1.18752e-05
+Methionine import ATP binding protein MetN	8.13151e-06	5.09499e-06
+hypothetical protein	7.17235e-06	8.14551e-06
+hypothetical protein	2.78583e-05	1.12636e-05
+Iron uptake factor PiuC	0.000146182	4.45198e-05
+hypothetical protein	8.52179e-05	1.09027e-05
+Lipopolysaccharide N acetylglucosaminyltransferase	0.000212954	0.00156411
+hypothetical protein, partial	1.48762e-05	0.000109637
+Cyclic pyranopterin monophosphate synthase	0.0129155	0.000823064
+hypothetical protein, partial	5.71925e-06	3.67664e-06
+Galactitol specific enzyme IIC component of PTS	0.0141976	0.00237287
+hypothetical protein	1.66354e-05	0.00186649
+Sporulation domain protein	6.36816e-06	1.41342e-05
+Putative pyruvate, phosphate dikinase regulatory protein 1	0.0125014	0.00212072
+Ribonuclease HIII	0.00702089	0.00215068
+hypothetical protein	6.9086e-06	9.84924e-06
+AzlC family protein	4.1227e-05	8.49106e-06
+UniRef50_Q88F11	0.00016455	0.000177503
+Peptide ABC transporter, periplasmic peptide binding protein	0.000123765	5.01311e-05
+Protein tyrosine phosphatase	1.03383e-05	2.70308e-05
+Beta glucanase	0.00019213	0.00340631
+UniRef50_N0APD1	1.95918e-06	1.70722e-06
+UniRef50_W6SQC5	0.000659971	0.000357787
+UniRef50_Q9RXH6	0.000127519	0.00181424
+UniRef50_Q255E7	0.000298207	0.000101302
+hypothetical protein	0.000324889	5.15224e-05
+UniRef50_M5EG32	0.000340487	0.000108702
+UniRef50_P0ADW7	0.00343445	0.00038894
+Acyl CoA dehydrogenase domain containing protein	8.77953e-05	0.00981716
+arginine ABC transporter ATP binding protein	3.47741e-05	1.3368e-05
+Dihydroxy acid dehydratase	0.000146826	0.000201509
+tRNA  ) methyltransferase	0.00940838	0.00187968
+Phosphotriesterase protein Php	0.00340567	0.000219184
+Acetoin	0.0164066	0.00320843
+UniRef50_X5Z2U4	9.98549e-06	1.56924e-05
+50S ribosomal protein L18, partial	6.75998e-05	0.000242375
+UniRef50_T1XNC8	0.00601226	0.000161775
+PTS sugar transporter	5.11108e-06	3.63456e-06
+Phosphopantetheinyl transferase component of siderophore synthetase	0.000148696	0.00514706
+hypothetical protein	2.08651e-06	4.07381e-06
+Membrane bound lytic murein transglycosylase C	0.00173004	0.000323319
+UniRef50_Q1YML4	9.77264e-05	1.89368e-05
+Transcriptional regulator, IclR family MhpR	0.0064782	0.00043362
+UniRef50_F9Z2J9	0.000193419	0.00211642
+Plectin	4.4554e-05	1.15044e-05
+spermidine putrescine ABC transporter substrate binding protein	7.96448e-06	1.41561e-05
+Gas vesicle operon protein	0.00910822	0.00152155
+UniRef50_K7U3H6	1.67804e-06	5.04674e-06
+UniRef50_W7WRB6	0.000278508	9.14541e-05
+hypothetical protein	0.000361306	5.88871e-05
+UniRef50_Q5Z7E3	2.09863e-05	2.50817e-05
+PetC	0.000154854	0.000944092
+UniRef50_E4EZN9	5.28589e-05	0.000185822
+Non intrinsic ABC protein 7 isoform 6	2.94815e-05	9.07191e-06
+NADP dependent isocitrate dehydrogenase	0.000329383	7.4534e-05
+Predicted permease	0.00182389	0.000208878
+UniRef50_U6K4H4	2.36356e-05	7.02475e-06
+ABC type transport system involved in resistance to organic solvents, periplasmic component	0.000632262	0.000415842
+UniRef50_C3Z9G8	1.48907e-05	3.91837e-06
+UniRef50_C4IYT1	1.7886e-05	8.96056e-05
+hypothetical protein	2.93292e-06	2.36026e-06
+UniRef50_Q8DU86	0.00243968	0.00103201
+Marine sediment metagenome DNA, contig	8.22319e-05	2.10587e-05
+transcriptional regulator	4.12562e-05	2.0459e-05
+Pyrimidine monooxygenase RutA	0.00362902	0.000294772
+Peroxide responsive repressor PerR	0.011271	0.00124293
+ATP binding cassette  superfamily transporter, ATP binding component	0.000125891	0.00194303
+hypothetical protein	7.86333e-06	5.29454e-06
+CoA transferase, A subunit	0.000302289	0.00037672
+UniRef50_I7EE24	0.000443643	2.76732e-05
+30S ribosomal protein S5	6.73803e-06	6.72717e-06
+Permease	0.000167787	2.59653e-05
+PTS beta glucoside transporter subunit IIA	3.84046e-06	4.73108e-06
+XdhC protein 	2.72326e-05	1.60163e-05
+UniRef50_A0A014NSW5	2.7762e-05	4.25733e-06
+UniRef50_W4HZ56	1.27909e-05	1.6796e-05
+Transcriptional regulator, GntR family	0.00266512	0.000253406
+UniRef50_A0A038FVF0	0.000306744	3.17582e-05
+4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase	0.00053949	0.00127158
+glycerol 3 phosphate ABC transporter permease	5.40063e-06	4.67754e-05
+UniRef50_Q62C32	0.000202404	0.000220765
+Penicillin binding protein 1A	0.000482522	0.000907019
+UniRef50_UPI0003BD7FE7	1.10381e-05	9.45671e-06
+rRNA adenine N 6 methyltransferase	0.0633622	0.00772769
+Uric acid transporter UacT	0.00186082	0.000456785
+UniRef50_Q8DV32	0.00556979	0.00138686
+hypothetical protein	1.05862e-05	3.3785e-05
+Ribonuclease 3	1.61089e-05	2.58658e-05
+HTH type transcriptional repressor YcgE	0.00582925	0.000437834
+Electron transport protein SCO1 SenC	0.00957771	0.000685499
+IS911 transposase orfB	2.44888e-05	2.70384e-05
+Aminotransferase	0.0013624	0.000282415
+Probable pyridine nucleotide disulfide oxidoreductase RclA	0.00137573	0.000269488
+UniRef50_U5WJX6	8.69416e-07	3.54634e-06
+Putative adhesion protein like protein	1.2121e-05	7.77535e-06
+hypothetical protein	3.4051e-05	6.11314e-06
+UniRef50_G6YS95	0.000123572	1.64329e-05
+Acriflavin resistance protein	0.000206565	0.000419349
+hypothetical protein	0.00022545	0.000364495
+tRNA  ) methyltransferase	0.00337387	0.0025656
+Lipid A biosynthesis lauroyl acyltransferase	8.36499e-05	0.00397526
+WH2 domain containing protein	2.94414e-06	1.0623e-05
+Putative HTH type transcriptional regulatory protein Msm_0453	0.0028933	0.000401024
+hypothetical protein	3.40907e-06	3.3634e-06
+UniRef50_Q9RU03	0.000134979	0.010263
+UniRef50_Q9RU05	0.00108468	0.0216959
+Methyltransferase small domain protein	0.000876566	9.65429e-05
+Phosphoglycerate kinase	2.59564e-05	2.35294e-05
+oxidoreductase	1.49665e-05	8.55228e-06
+TonB dependent Receptor Plug domain protein	0.000212156	0.000883149
+UniRef50_I6Q293	0.000276823	9.64007e-07
+UniRef50_O07575	0.00764397	0.00210123
+hypothetical protein	2.90104e-05	0.000101372
+DNA gyrase, B subunit, C terminal domain protein	0.000211628	0.00182366
+dTDP 4 dehydrorhamnose 3,5 epimerase	7.21909e-06	6.77887e-06
+Tryptophan  tRNA ligase	6.21125e-06	0.000527839
+Malate	4.01553e-06	6.59155e-06
+UniRef50_F2AE05	0.000662285	0.00061726
+hypothetical protein	1.47344e-06	5.99348e-07
+4 hydroxythreonine 4 phosphate dehydrogenase	2.48752e-05	2.65743e-05
+Fuculose 1 phosphate aldolase, class II aldolase adducin family	0.00201529	0.000297301
+Integral membrane sensor signal transduction histidine kinase	0.000252092	0.00075048
+hypothetical protein	7.51648e-06	1.5737e-05
+FAD dependent oxidoreductase	8.33729e-05	0.00761618
+glycine cleavage system protein T	6.83041e-06	3.02791e-06
+Amylovoran biosynthesis AmsK	0.000373988	0.00145316
+UniRef50_A1IRV5	0.000335445	0.00424495
+AdeI	0.000215629	0.0019927
+Cell wall biosynthesis protein Mur ligase family	0.00270422	0.000271757
+hypothetical protein	0.00029068	2.5258e-05
+hypothetical protein	4.26153e-05	1.30048e-06
+SAM dependent methyltransferase	2.92427e-05	8.93928e-06
+Carbon nitrogen hydrolase	0.00144082	0.000658208
+Glycolate oxidase	1.31015e-05	1.29384e-05
+Peptide deformylase	5.07769e-05	2.76736e-05
+Gluconate 5 dehydrogenase	0.000132848	0.00486656
+hydrolase	9.14952e-05	2.48575e-05
+cDNA clone	3.10731e-05	3.80691e-05
+N acetyl gamma glutamyl phosphate reductase	2.22692e-05	1.10059e-05
+UniRef50_H5DQ87	5.54183e-05	3.59668e-05
+hypothetical protein	4.87318e-05	4.82771e-06
+Sulfite reductase	0.000821138	0.000257239
+UniRef50_D5UQG6	5.65903e-06	1.25665e-05
+pesticidal protein Cry5Ba	0.00154859	0.000131444
+Methyl accepting chemotaxis sensory transducer	0.00262462	0.000485603
+BioY family protein	0.0100378	0.00260941
+TRAP type C4 dicarboxylate transport system, large permease component	7.53677e-05	3.3814e-05
+Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II	8.26901e-05	0.00182543
+Adenosylcobalamin biosynthesis bifunctional protein CobDQ	5.78182e-06	3.00961e-05
+Soluble lytic transglycosylase fused to an ABC type amino acid binding protein	0.000502088	0.000976762
+UniRef50_A1HQK7	1.04461e-05	1.43776e-05
+UniRef50_U7PXV4	4.48516e-06	3.36484e-07
+Phosphate transporter permease PstC	0.0038594	0.000178499
+Cysteine synthase	0.000504736	0.0197239
+Oligopeptidase A	0.000228145	0.00304548
+Purine nucleoside phosphorylase	0.00091786	0.00150224
+Ribonucleoside diphosphage reductase 1, beta subunit, B2	0.000365756	3.85846e-05
+NADH quinone oxidoreductase subunit F	0.00305468	0.003436
+4 phosphopantetheinyl transferase EntD	0.00191099	0.00108843
+Adenine phosphoribosyltransferase	2.38969e-05	8.65116e-06
+Valine  pyruvate aminotransferase	7.44576e-05	0.00209972
+HPr kinase phosphorylase	0.0231598	0.00339625
+hypothetical protein, partial	1.71108e-05	1.89323e-05
+hypothetical protein	5.04683e-06	6.26865e-06
+DNA directed RNA polymerase subunit alpha	0.000316525	0.00171643
+Pyruvate dehydrogenase [ubiquinone]	0.00244582	0.000858661
+4 hydroxyphenylpyruvate dioxygenase	0.000141209	0.00417611
+UniRef50_S4N129	3.78824e-05	0.00027182
+Adenylosuccinate synthetase	0.00017277	0.000619043
+UniRef50_P37872	0.00590826	0.00014816
+Phosphatidylserine phosphatidylglycerophosphate  cardiolipin synthase like protein	0.000634117	0.000265683
+N acetylmuramic acid 6 phosphate etherase	6.49284e-06	5.76488e-06
+UniRef50_G7ZP06	0.00800798	0.00230503
+hypothetical protein, partial	6.47787e-06	5.09611e-06
+hypothetical protein, partial	2.91652e-05	1.91685e-06
+Two component transcriptional regulator, winged helix family	0.000873781	0.000262529
+UniRef50_P39381	0.00162007	0.000318705
+hypothetical protein	1.82616e-05	1.05634e-05
+PhoB family transcriptional regulator	1.06963e-05	1.61596e-05
+Phosphonoacetaldehyde hydrolase	0.000503536	0.000533965
+Oxidoreductase, short chain dehydrogenase reductase family	0.00027047	0.024421
+UniRef50_S5K087	0.000178771	0.00113929
+hypothetical protein	0.000242703	0.000226158
+UniRef50_A3PN29	0.00468883	0.000236276
+Transcription regulator LysR family	0.000130277	0.00348866
+PREDICTED	1.0525e-05	6.1695e-06
+Ketol acid reductoisomerase	2.03311e-05	1.98608e-05
+Mll5655 protein	0.000793126	0.00161143
+Ggdef motif membrane protein	9.07593e-05	0.000357171
+Orf513 protein	1.65633e-05	3.8007e-05
+ATPases with chaperone activity, ATP binding subunit	0.00668302	0.00285124
+Type II secretion system protein E GspE	0.00213261	0.000901031
+hypothetical protein	8.45644e-05	8.39441e-06
+Glycerophosphoryl diester phosphodiesterase	0.000579108	0.000486839
+UniRef50_A0A017HNC7	3.5885e-06	1.09003e-05
+Homoserine O succinyltransferase	0.00590355	0.0082633
+MarR family transcriptional regulator	1.33054e-05	4.13229e-05
+UniRef50_H9KGM6	9.08748e-06	1.11901e-05
+electron transfer flavoprotein subunit alpha	9.06442e-06	6.89271e-06
+Penicillin binding protein, transpeptidase domain protein	0.0155121	0.00236977
+Predicted type II restriction enzyme, methylase subunit	0.00498923	0.000208491
+Binding protein dependent transport systems inner membrane component	0.000452211	0.000808184
+UniRef50_G2KXV7	0.000104342	0.00331765
+hypothetical protein	1.25057e-05	6.54041e-06
+Alanine dehydrogenase	9.22051e-05	0.00220945
+Cobyrinic acid A,C diamide synthase	9.86087e-06	0.000188392
+hypothetical protein	2.15996e-07	4.1206e-07
+SAM dependent methyltransferase	8.48442e-05	7.55129e-05
+UniRef50_B9KQ53	0.000835031	0.000356289
+hypothetical protein	1.38446e-05	2.57475e-05
+hypothetical protein	3.16828e-06	1.61929e-05
+Drug resistance transporter EmrB QacA subfamily	0.000122956	0.0167394
+hypothetical protein	5.0524e-06	9.49793e-06
+MULTISPECIES	0.000265057	5.0365e-05
+UniRef50_R7PVV2	0.00177836	0.00059277
+Fdhd protein	0.000141314	8.415e-05
+UniRef50_X8A316	0.000887311	0.000113323
+Phosphate import ATP binding protein pstB	0.000243288	0.00219414
+Cis,cis muconate transporter MucK	7.80252e-05	0.000139319
+Hydrogenase expression formation protein HypE	0.00164731	0.000307811
+Inner membrane protein YebS	0.0020669	0.000340762
+UniRef50_Q3JHW2	7.98008e-07	1.98792e-05
+Formate dehydrogenase	0.0104431	0.000718208
+Predicted protein	4.17765e-06	2.14202e-06
+Protein TonB	0.00371624	0.000704455
+UniRef50_Y0BJC5	4.96101e-05	5.95152e-05
+Cytidylate kinase	0.00273083	0.00135732
+60 kDa chaperonin	0.000676415	0.000176775
+hypothetical protein	1.49879e-05	4.91744e-06
+hypothetical protein	6.57147e-06	1.46605e-05
+GTPase	6.66502e-06	0.000359624
+UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00369668	0.000486186
+probable mannose 1 phosphate guanyltransferase	6.1378e-05	3.97008e-06
+UniRef50_U5MUF8	0.00127803	0.000351999
+PTS system, lactose cellobiose IIC component family protein	0.000100064	0.0006122
+Putative binding protein YgiS	0.00442477	0.000185638
+PREDICTED	6.66493e-06	0.000253734
+Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	2.62127e-05	1.98474e-05
+Inner membrane transport protein YajR	0.00205875	9.5924e-05
+Leucine  tRNA ligase	0.000281039	0.00333122
+CRISPR associated protein Cas4	0.00571636	0.0018257
+Extracellular ligand binding receptor	0.000542478	0.00101123
+UniRef50_H8GYP5	3.0523e-05	0.000199748
+Glycosyl transferase	0.000299156	0.00323461
+Sodium alanine symporter family protein	0.000112936	0.000836558
+UniRef50_F8JQP0	1.82286e-05	0.000178584
+UniRef50_V5NK98	0.000657978	0.00161198
+Probable 3 hydroxybutyryl CoA dehydrogenase	6.66077e-06	4.30625e-05
+UniRef50_I1HGX9	6.03493e-05	1.91727e-05
+Transcriptional regulator	1.96517e-05	8.76897e-06
+resolvase	0.000148071	7.54651e-05
+UniRef50_P31471	0.00140711	0.000705945
+UniRef50_P31470	0.00364082	0.000136867
+Ser Thr protein phosphatase family protein	0.000104626	0.000624709
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	1.61939e-06	0.00187139
+UniRef50_M4U7I0	7.7661e-06	7.80114e-06
+UniRef50_U5NMY3	0.00242749	0.000344903
+IS5 family transposase OrfA	1.27847e-05	1.25896e-05
+Tn7 like transposition protein C	2.94276e-06	0.000119796
+hypothetical protein	0.0026857	0.000184743
+Probable glutamate dehydrogenase	9.9329e-06	3.7131e-06
+hypothetical protein, partial	8.75342e-05	2.38244e-05
+UniRef50_Q1LDL8	0.000716335	0.00093532
+hypothetical protein	4.70918e-06	1.69015e-05
+UniRef50_N9CNB8	8.44095e-06	1.48807e-05
+UniRef50_G2J0I7	0.000368956	0.000669352
+UniRef50_J0FRW1	0.000882752	7.86826e-05
+hypothetical protein	0.000135949	3.69899e-05
+ABC transporter ATP binding protein	7.1678e-06	2.412e-05
+Phage associated DNA primase	9.03097e-06	0.000208876
+2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2	0.0199926	0.00185134
+UniRef50_F0TCP3	0.00288402	0.000583403
+Resuscitation promoting factor	5.15537e-05	3.88914e-05
+Staphostatin B	0.00130205	0.000272075
+Trypsin	0.000453943	0.00198619
+Putative nucleoside transporter YegT	0.0019506	0.00010676
+Oxidoreductase, short chain dehydrogenase reductase family	5.17261e-06	0.000142876
+Galactitol 1 phosphate 5 dehydrogenase	0.000460925	0.00014816
+NLP P60 protein	9.34857e-05	0.00140007
+hypothetical protein	7.36505e-06	4.81921e-06
+UniRef50_B3HGM5	0.0012937	0.000232002
+tRNA 2 methylthio N dimethylallyladenosine synthase	0.00322222	0.0079518
+UniRef50_A0A009GFK1	0.00081423	0.00864689
+Homoserine kinase	0.000280457	0.00151
+hypothetical protein	4.25718e-06	4.70572e-06
+Periplasmic binding domain protein	5.64059e-05	6.05019e-05
+Putative export ATP binding permease protein RF_0214	5.66982e-05	3.92357e-05
+hypothetical protein	7.4962e-06	6.03135e-05
+UniRef50_Q5WVI7	2.05335e-05	0.000895794
+UniRef50_H3F815	1.1358e-05	0.000106448
+NADH quinone oxidoreductase subunit B 2	3.2186e-05	7.25078e-05
+hypothetical protein	8.4628e-06	5.50676e-06
+UniRef50_D8TR27	8.65905e-05	3.85012e-05
+PREDICTED	1.42679e-05	6.69999e-06
+YD repeat protein	8.5985e-05	0.00187502
+Adenine deaminase	1.64382e-05	3.14428e-06
+ABC transporter, periplasmic substrate binding protein	0.000276101	0.00183282
+Methyl accepting chemotaxis sensory transducer	0.00393133	0.000832664
+Branched chain amino acid transport system II carrier protein	0.000283979	0.00383044
+hypothetical protein, partial	0.000269212	0.000327816
+N acetyl gamma glutamyl phosphate reductase	4.72368e-05	2.13391e-05
+UniRef50_A3PKL4	0.00392347	0.000242103
+hypothetical protein	2.52294e-06	1.03666e-05
+Transketolase 1, chloroplastic	3.64211e-05	8.73846e-06
+Histidine ammonia lyase	3.81619e-06	2.47695e-05
+UniRef50_A6M3B4	0.000156292	0.00034652
+Aminodeoxychorismate lyase	0.000125266	0.00190826
+UniRef50_I4DZ43	0.00595279	0.00088535
+Transcriptional regulator	0.00541843	0.0017359
+hypothetical protein	4.07019e-06	8.33973e-06
+Urease subunit gamma 2	5.09363e-05	0.00142007
+Altronate oxidoreductase	0.000841026	0.000375232
+DNA damage repair protein MutT	0.000168569	8.64112e-06
+Membrane protein like protein	2.66787e-05	5.09831e-05
+UniRef50_W0MF84	0.000296907	0.00468843
+hypothetical protein, partial	2.234e-05	0.000177856
+Immunodominant antigen B	0.0100105	0.00137044
+Adhesin like protein	0.00238958	0.000124184
+hypothetical protein, partial	2.6902e-05	1.93362e-05
+hypothetical protein	0.000530647	5.35849e-05
+hypothetical protein	1.74381e-06	0.000370172
+Transcriptional regulator, Fnr family	0.000710001	0.0013139
+Branched chain amino acid aminotransferase 2, chloroplastic	6.14041e-06	1.04185e-05
+DNA methylase N 4 N 6 domain protein	0.000219537	0.00358192
+PTS system mannitol specific EIICB component	0.00684698	0.00158452
+hypothetical protein	9.48257e-06	4.61321e-05
+UniRef50_A6LWG3	0.0002546	0.000572439
+ABC sugar transporter, inner membrane subunit	0.00676621	0.00145948
+peptidase A8	1.06749e-05	8.99683e-06
+UniRef50_C3C2K9	0.000764664	0.00159448
+Aspartate carbamoyltransferase regulatory chain	0.000439933	0.00112867
+hypothetical protein	5.47551e-06	1.48122e-05
+Phosphonates binding periplasmic protein	0.00409486	0.000452451
+Anhydro N acetylmuramic acid kinase	8.1514e-06	2.65835e-05
+Endonuclease III	0.0170596	0.00195286
+UniRef50_E6MWX9	5.00563e-05	0.000220567
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00607437	0.000965459
+hypothetical protein	3.49847e-06	2.48996e-06
+P type ATPase metal cation transport	0.000273297	0.00115409
+Putative ribosomal RNA methyltransferase 2	1.41422e-05	1.72114e-05
+Possible lipoprotein	4.93697e-05	1.96961e-05
+hypothetical protein	1.03232e-05	1.92508e-05
+GAF domain protein	7.20645e-06	0.00130953
+amino acid carrier protein	2.03192e-05	0.00117342
+hypothetical protein	3.93062e-06	1.3136e-05
+hemolysin secretion protein D, partial	0.000113681	9.47572e-05
+hypothetical protein, partial	9.70042e-06	3.72424e-06
+Respiratory nitrate reductase 2 beta chain domain protein	3.58127e-05	7.75905e-05
+Potassium transporting ATPase A chain	3.56276e-06	0.000724301
+Marine sediment metagenome DNA, contig	2.77911e-05	2.41567e-05
+SAM domain and HD domain containing protein 1	2.46332e-06	1.4472e-06
+Aldehyde dehydrogenase PuuC	0.00473588	0.000475113
+hypothetical protein	9.92741e-06	9.32056e-06
+50S ribosomal protein L3	5.56255e-06	0.000172696
+Exoribonuclease VII, large subunit, XseA	0.00192448	0.000198165
+Protein YdeJ	0.00261019	0.00112241
+Transcriptional regulator, DeoR family	0.000409605	0.000406303
+Streptococcal histidine triad protein	0.000102192	7.83641e-05
+Chelated iron transport system membrane protein YfeB	0.00189954	0.000197764
+JM170	0.000186552	0.000137068
+Threonine dehydratase	0.00280949	0.000519825
+Putative ABC transporter periplasmic binding protein YcjN	0.0020437	0.00133285
+Succinyl CoA	4.96289e-05	1.79932e-05
+hypothetical protein	8.75527e-05	7.15696e-06
+Integral membrane transporter	6.65116e-05	0.00166392
+deoxyribodipyrimidine photolyase, partial	1.6783e-05	0.000108938
+ribose ABC transporter permease	0.000116613	3.24582e-05
+DNA repair and recombination protein RadA	0.00266906	0.000750394
+hypothetical protein	3.15975e-05	2.31503e-06
+UniRef50_G7ZRL2	0.0153192	0.00284222
+Meta pathway phenol degradation like protein	6.8188e-06	4.82363e-06
+DNA polymerase	8.00251e-05	0.000807929
+Probable GTP binding protein EngB	0.0099456	0.00241974
+UniRef50_A5IS41	0.00461937	0.00108511
+Transposase DDE domain protein	0.000170118	9.13376e-05
+50S ribosomal protein L25	0.0227015	0.00452539
+Enoyl CoA hydratase	0.000566957	0.000379428
+DNA directed RNA polymerase subunit beta	1.12969e-05	1.26216e-06
+UniRef50_D2GMB8	0.0010763	2.02239e-05
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00331326	0.000641091
+hypothetical protein	1.12844e-05	3.3409e-05
+PREDICTED	7.09723e-05	9.85675e-06
+UniRef50_M3X368	0.000156351	5.21726e-05
+NADH quinone oxidoreductase subunit N	0.000976507	0.00502546
+hypothetical protein	0.000370005	2.36168e-05
+UniRef50_W0NQ86	0.000154351	8.72673e-05
+DNA primase	3.87587e-06	8.85137e-06
+UniRef50_R1DKY4	3.23465e-05	0.000113786
+D alanyl D alanine endopeptidase	0.00313544	0.000582645
+UniRef50_Q54IJ8	3.47794e-05	3.36057e-07
+UniRef50_A0A059LB29	8.33178e-05	0.000371536
+UniRef50_K9XNW0	2.41183e-06	0.000772325
+DNA polymerase IV	7.47903e-05	0.0027171
+UniRef50_U3SRM8	0.00397262	0.000803951
+Pirin like protein	4.51954e-05	1.84756e-05
+UTP  glucose 1 phosphate uridylyltransferase 2	0.0190815	0.00357286
+DedA family protein	0.000702649	0.000779823
+5 keto 4 deoxy D glucarate aldolase	0.00366448	0.000258931
+two component response regulator	1.0514e-05	8.47558e-06
+rare lipoprotein A	9.0353e-06	2.80471e-05
+Inner membrane protein YfdC	0.0027853	0.000244859
+UniRef50_C5Z886	9.7003e-05	0.000670938
+Xanthosine phosphorylase, putative	0.00124838	0.000122657
+Putative tyrosine protein kinase CapB	0.023014	0.00199786
+hypothetical protein	1.06005e-05	9.6551e-05
+PREDICTED	3.50465e-06	6.61094e-06
+Alkyl hydroperoxide reductase subunit F	7.47823e-05	0.000269239
+hypothetical protein	2.18612e-05	1.31465e-05
+UniRef50_U8KDA3	0.000429636	0.00136147
+Alkanesulfonate transporter substrate binding subunit	1.46542e-05	2.84606e-05
+phospholipase C	2.19197e-06	2.05332e-06
+UniRef50_G5KHM6	4.55771e-05	6.95667e-05
+hypothetical protein	8.16802e-06	4.22834e-06
+hypothetical protein	2.28353e-05	4.34561e-05
+UniRef50_R7PWF8	0.0014329	0.000193613
+luciferase	4.04723e-05	3.56962e-06
+Arabinose 5 phosphate isomerase GutQ	0.00211948	0.000247636
+Putative regulator AldR	0.000855849	0.0136612
+PREDICTED	9.30917e-05	7.30112e-06
+UniRef50_A0NLI7	0.000424664	0.00107036
+UniRef50_A0A045UMF7	5.95228e-05	8.61641e-06
+UniRef50_H0YQH9	2.00823e-05	3.56546e-06
+Peptide chain release factor 3	0.000176738	0.0208934
+UniRef50_D9UK32	0.000229351	2.33735e-05
+hypothetical protein PFL1_04047	1.68504e-05	5.72823e-05
+Peptide synthetase	0.0050662	0.000668822
+ABC transporter 	0.00966778	0.00152374
+2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	1.5887e-05	3.01532e-06
+metal dependent hydrolase	4.92288e-06	5.84694e-06
+hypothetical protein	0.000497954	4.56842e-05
+2 oxoglutarate ferredoxin oxidoreductase subunit beta	0.0101998	0.00035698
+Spore photoproduct lyase	0.000224491	0.000514815
+O acetylhomoserine aminocarboxypropyltransferase	4.28027e-05	3.42316e-06
+Short chain dehydrogenase reductase SDR	0.00372303	0.000827322
+Chemotaxis protein CheY	0.000661517	0.000123045
+3 oxoacyl [acyl carrier protein] synthase 3 protein 2	0.000113697	0.0155314
+IS3 Spn1, transposase	0.000340499	2.08448e-05
+COG0174	2.63653e-05	2.55162e-05
+UniRef50_U3ST30	0.00286975	0.00158286
+UniRef50_A6C7R0	4.31954e-06	2.73188e-06
+Pirin protein, putative	0.000145607	3.86694e-06
+Cbb3 type cytochrome c oxidase subunit CcoP	0.0121769	0.00256616
+Transposase domain protein	0.000217756	0.000326385
+Flagellar basal body protein FliL	0.000629739	0.000254348
+Lon protease	0.000253206	0.0255738
+multidrug efflux associated protein	2.98672e-06	1.46173e-06
+serine ammonia lyase	3.78291e-06	1.76408e-05
+UniRef50_A4AEG2	3.32204e-05	4.73566e-05
+Transcription repair coupling factor	0.0090706	0.00181711
+PREDICTED	3.58519e-07	5.12259e-07
+30S ribosomal protein S4, partial	1.86401e-05	0.000136594
+UniRef50_C5CV27	0.000278431	0.000144658
+Phytoene desaturase 	1.49753e-05	1.52713e-05
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0146222	0.012493
+Proline dehydrogenase 	0.00845436	0.000464052
+3 isopropylmalate dehydrogenase	0.0100893	0.000481137
+UniRef50_R9YQ24	0.00791361	0.000827216
+PhoB family transcriptional regulator	8.88333e-05	1.49976e-05
+ABC transporter permease	5.10972e-05	9.95425e-05
+tRNA specific adenosine deaminase	0.000228427	0.000401722
+ABC type sugar transport system, periplasmic component	0.000141209	0.000932425
+UniRef50_A5ITW6	0.0107924	0.00015976
+Transcription repair coupling factor	3.39035e-05	0.00319457
+Lipoprotein	2.90284e-05	4.8494e-06
+Membrane associated protein	0.00289926	0.000384167
+Major facilitator superfamily MFS_1	0.00068738	0.000185984
+S ribosylhomocysteine lyase	7.96157e-06	0.000238097
+DNA recombination protein RecN	3.49832e-06	6.03181e-06
+UTP  glucose 1 phosphate uridylyltransferase	0.00076399	0.000132326
+NPQTN specific sortase B	0.0123271	0.000270436
+Mg dependent DNase, TatD related	0.00189817	0.000598922
+Membrane protein insertase YidC	0.000203258	0.0192714
+UniRef50_A0A059IP43	8.14586e-05	3.00218e-05
+FMN dependent NADPH azoreductase	0.0165465	0.00282455
+hypothetical protein	0.000301019	0.000167615
+UniRef50_C6SQB9	0.00420417	0.000667653
+Histidinol dehydrogenase 2	0.000492197	6.85904e-05
+Beta lactamase	0.00392519	0.000492275
+HI0933 like oxidoreductase dehydrogenase	0.00411304	0.00251557
+hypothetical protein	7.28611e-06	2.26433e-05
+glycine cleavage system protein H	6.46532e-05	2.13376e-05
+UniRef50_W6JZG7	0.000169362	2.7958e-05
+Sporulation domain protein	0.000102398	0.000148389
+hypothetical protein	3.31027e-06	9.13815e-05
+UniRef50_B9KUJ5	0.000285892	3.48693e-05
+UniRef50_L5N059	5.83797e-06	1.42111e-05
+ORF 5	0.000718991	0.0002681
+UniRef50_UPI000441F366	0.000115618	1.29365e-05
+hypothetical protein	1.20844e-05	4.03341e-05
+UniRef50_T0MER8	0.000310266	0.00026257
+UniRef50_F1VLT2	0.000516184	0.000323964
+EsvK1	0.000364493	0.00106696
+Transcriptional regulatory protein	0.000373163	0.000619488
+hypothetical protein	9.34598e-06	3.51126e-06
+Imidazoleglycerol phosphate dehydratase	0.0117379	0.00556385
+Conserved domain protein	1.62676e-05	5.21426e-05
+Cadmium resistance transporter, putative	0.011677	0.00343963
+UniRef50_A9FQ61	8.33678e-05	1.44088e-05
+UniRef50_I0IJ24	1.38673e-05	1.58662e-05
+Transposase	0.00115437	3.85706e-05
+arginine  tRNA ligase	2.85548e-06	5.59955e-06
+UrtA	5.06238e-05	0.00014661
+UniRef50_Q2CDM2	0.000551326	7.55749e-05
+UniRef50_F8CGQ9	1.782e-05	3.37836e-06
+DNA polymerase	0.00857767	0.00195761
+Outer membrane receptor for monomeric catechols	9.26284e-05	0.00379493
+Peptidase, family S49	0.00478968	0.000151664
+Basic proline rich protein	0.000234607	0.000156485
+hypothetical protein	5.12603e-06	1.58332e-06
+Aspartate semialdehyde dehydrogenase	0.0135339	0.00282726
+UniRef50_P77280	0.00287516	0.000673501
+hypothetical protein, partial	8.71906e-06	1.73696e-05
+hypothetical protein	1.62917e-06	1.89995e-07
+Putative ABC transporter ATP binding protein exp8	0.0054891	0.00175648
+Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative	0.0165106	0.000579257
+hypothetical protein	1.30801e-05	2.53043e-06
+hypothetical protein	7.57291e-06	4.17051e-06
+MULTISPECIES	1.94017e-05	1.36672e-05
+Multidrug resistance like ATP binding protein MdlB	0.00323238	0.000702063
+Sulfate ABC transporter permease	3.20487e-05	2.47505e-05
+PREDICTED	2.33609e-06	5.6575e-05
+50S ribosomal protein L21	0.000155282	0.000270388
+Phosphoribosylamine  glycine ligase	0.00240317	0.000968498
+UniRef50_F0YT45	8.29722e-05	0.000154316
+NAD transhydrogenase subunit alpha	3.09971e-05	1.43074e-05
+3 dehydroquinate dehydratase	1.24951e-05	0.00404005
+pyrophosphatase, MutT nudix family protein	7.70723e-05	0.00024611
+anthranilate synthase subunit I	3.00997e-05	1.75689e-05
+Lipid A export ATP binding permease protein MsbA	2.52182e-06	2.17344e-06
+Aminobenzoyl glutamate transport protein	0.0102581	0.00129579
+peptide ABC transporter permease	1.27291e-05	3.31964e-06
+UniRef50_Q1LNK1	1.69793e-05	1.01201e-05
+2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase	0.00165795	0.000170694
+YD repeat protein	0.015911	0.00199743
+UniRef50_I6U2R2	0.00252006	0.000576691
+hypothetical protein	7.74126e-06	5.98474e-06
+Putative cytochrome c oxidase subunit 1 beta	3.81901e-05	5.29291e-05
+Homocitrate synthase	0.000208947	0.00199612
+Chromate transporter	7.55723e-05	0.00345107
+Glyoxalase family protein	6.227e-05	1.89251e-05
+D specific D 2 hydroxyacid dehydrogenase ddh like protein	0.0171964	0.00448458
+hypothetical protein, partial	1.53232e-05	2.76076e-05
+UniRef50_S5Z097	0.00122791	0.000138131
+hemolysin type calcium binding protein	1.4478e-06	2.03901e-06
+Marine sediment metagenome DNA, contig	0.000171018	0.00536888
+MaoC domain protein dehydratase	0.000392851	0.000215829
+UniRef50_F0KIW4	9.0389e-05	0.00369654
+hypothetical protein	5.74928e-06	0.000484197
+hypothetical protein	6.65193e-06	1.43e-05
+40 residue YVTN family beta propeller repeat protein	5.44294e-06	0.000301911
+Tryptophan synthase beta chain 2	0.00341519	0.00289748
+hypothetical protein	0.000102097	5.29405e-06
+Transporter, drug metabolite exporter family	0.0103132	0.000874004
+Lon protease 2	0.000632028	0.00032989
+Elongation factor P	0.000315151	0.000600144
+Bifunctional protein GlmU	3.79358e-06	3.48615e-06
+UniRef50_Q49XB9	0.00241612	0.00256175
+Ribonuclease 3	5.32649e-06	0.00101932
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000158818	0.00547683
+UniRef50_B7UT13	1.46847e-05	0.000175591
+SsrA binding protein, partial	9.6601e-05	0.000294245
+Sulfate binding protein	0.00240023	0.000330986
+DUF1376 domain containing protein	3.47684e-06	5.89474e-06
+UniRef50_R7AXX0	1.16017e-05	0.00219799
+UniRef50_X1YKE3	1.63129e-05	1.44285e-05
+tRNA  ) methyltransferase	8.3306e-06	0.00244763
+UniRef50_L7WWS4	0.00869421	0.00100681
+Transcriptional antiterminator, BglG	0.000360527	0.000574737
+hypothetical protein	2.85187e-05	3.76214e-05
+Isochorismate synthetase, enterochelin	0.000265165	0.00247774
+Membrane protein, putative	1.83954e-05	1.57583e-06
+Prepilin type N terminal cleavage methylation domain protein	0.00060098	0.000251363
+Ribose 5 phosphate isomerase A	0.000291835	0.00290905
+Conjugative relaxase domain containing protein	7.79039e-05	4.1282e-06
+UniRef50_P77698	0.00318655	0.00152176
+UniRef50_B1FEG9	6.76298e-06	7.32772e-05
+WD 40 repeat protein	0.0019232	0.000453019
+Homoserine kinase	0.0157908	0.00166348
+Lipoprotein	2.63061e-05	1.30584e-05
+Haloacid dehalogenase	0.00460822	0.00326733
+UniRef50_R7PUA8	0.00247054	0.000592834
+Rubredoxin NAD reductase	8.57085e-05	0.00451927
+Aldehyde oxidoreductase	1.74323e-06	5.2944e-06
+YyzM	3.41724e-05	2.18555e-05
+2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00422631	0.0050342
+PREDICTED	1.64366e-05	5.40179e-06
+Thiazole synthase	0.00321453	0.000404738
+Leucine  tRNA ligase	6.07121e-06	1.23637e-06
+UniRef50_G7U922	0.000307554	0.00475565
+Putative lipopolysaccharide biosynthesis protein PA4999	0.000823501	0.000226731
+PREDICTED	1.97153e-05	2.46492e-06
+Probable NADH ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial	1.25373e-05	5.40896e-06
+Cardiolipin synthase 2	0.000564121	0.000260595
+Glucitol operon activator protein	1.49436e-05	0.000198201
+Relaxase Mobilisation nuclease domain	1.17483e-05	7.09768e-06
+transposase, partial	0.00551301	0.00124893
+UniRef50_W1MJT1	0.000106365	0.000267018
+HNH endonuclease	0.00151851	0.000306113
+4 hydroxy 3 methylbut 2 enyl diphosphate reductase	8.07007e-05	3.042e-05
+Membrane protein involved in aromatic hydrocarbon degradation	0.0128236	0.00162671
+UniRef50_G4LLE1	0.000214818	0.00014184
+Glycyl radical enzyme activating protein	0.00216642	0.000113796
+UniRef50_I1ZNG1	0.00025368	0.000504762
+Transposase	1.99665e-05	2.96118e-05
+hypothetical protein, partial	3.83141e-05	0.010506
+hypothetical protein	5.57866e-05	0.000212049
+hypothetical protein	4.61824e-06	3.9172e-06
+hypothetical protein	9.34822e-06	4.72609e-05
+ATP dependent DNA helicase recG	0.00432731	0.000973648
+hypothetical protein	1.64639e-05	6.36585e-06
+Permease YjgP YjgQ family protein	0.00408566	0.00129534
+hypothetical protein	2.05584e-05	6.40065e-06
+Histidine triad  protein	0.021032	0.000429605
+UniRef50_A6KYZ4	2.51944e-05	0.00404385
+UniRef50_C0PBW7	0.000119485	0.000318763
+hypothetical protein	2.82137e-05	1.06269e-05
+LysR family transcriptional regulator	1.87589e-05	1.80973e-05
+hypothetical protein	2.31128e-05	8.99827e-06
+UniRef50_Q8CQE3	0.0167921	0.00257506
+Hemolysin type calcium binding region	2.0134e-06	2.67858e-07
+UniRef50_G0DXM7	0.000228945	0.000902352
+2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial	0.00340826	0.000474267
+UniRef50_Y5VS88	0.0179733	0.000623506
+Sulfoxide reductase catalytic subunit YedY	0.00469436	0.000831493
+PREDICTED	3.72398e-05	3.85696e-05
+Type II R M system DNA modification enzyme	0.000322775	0.00234104
+PREDICTED	1.31373e-05	5.65274e-06
+Peptide chain release factor 3 	2.00706e-05	2.41349e-05
+Transcriptional regulator	0.000104302	9.19927e-05
+UniRef50_C7C6J2	0.000214548	6.22818e-06
+Phenol hydroxylase	9.74092e-05	3.72796e-05
+Protein translocase subunit SecY	8.12919e-05	0.00105274
+UniRef50_C5YXP4	2.6757e-05	2.33988e-05
+RNA helicase	0.000255616	0.000201206
+hypothetical protein, partial	2.10444e-05	8.07211e-05
+UniRef50_A7WY72	0.00728841	0.00176792
+membrane protein	9.18155e-06	7.64021e-06
+PAS PAC sensor hybrid histidine kinase	3.5601e-05	3.18048e-05
+Methionine  tRNA ligase	0.00629028	0.00100077
+ABC transporter	0.000210277	0.00500004
+Extracellular solute binding protein, family 5	0.00094589	0.113726
+Small heat shock protein IbpA	0.000891023	0.000218455
+UniRef50_A6M276	0.000155569	0.000512992
+D 3 phosphoglycerate dehydrogenase	0.00850931	0.0039907
+Thioredoxin disulfide reductase TrxB	0.00236436	0.000495284
+UniRef50_G2DRR8	1.00044e-05	4.55288e-06
+hypothetical protein	3.12049e-05	8.15296e-05
+Diadenosine tetraphosphatase	3.10163e-06	2.16114e-06
+PREDICTED	8.18538e-06	7.51885e-06
+UniRef50_I6STV8	0.000792403	0.00164645
+hypothetical protein	4.50556e-06	1.47926e-05
+hypothetical protein	8.90921e-05	8.02003e-05
+Translation factor GUF1 homolog, chloroplastic	0.000208669	0.00276227
+30S ribosomal protein S11	0.000272142	0.000478853
+FHA domain containing protein	1.68057e-06	0.000290088
+Pyocin S2	0.000431804	4.76565e-05
+Transcriptional regulatory protein DcuR	0.00353192	0.000233815
+UniRef50_M1N6P4	0.0008575	0.000507879
+UniRef50_R1FSG8	0.000438679	0.000174002
+hypothetical protein	5.50754e-05	1.29207e-05
+Acetoin utilization protein AcuC	0.00786605	0.000643897
+UniRef50_E1VHW6	0.00197608	0.000276612
+cobalamin adenolsyltransferase cobinamide ATP dependent adenolsyltransferase	3.21593e-05	0.000479008
+Putative cell wall binding repeat containing protein	0.000679626	0.000447819
+50S ribosomal protein L21	0.000182668	2.59634e-05
+hypothetical protein	0.000147236	6.78259e-05
+Inactive signal peptidase IA	0.013048	0.00117877
+two component transcriptional regulator, winged helix family protein	9.86274e-05	1.70893e-05
+preprotein translocase subunit SecF	0.000103991	0.000129305
+hypothetical protein, partial	1.1232e-05	7.56647e-05
+Phosphotransferase enzyme IIB component GlvB	0.0108799	0.00138634
+PREDICTED	7.82792e-06	9.03942e-06
+3 methyl 2 oxobutanoate hydroxymethyltransferase	4.79728e-06	4.89943e-06
+Sugar ABC transport system permease component	0.00344677	0.000610325
+Phosphoglycerate mutase	0.000183906	0.00341999
+NADPH dependent FMN reductase	0.00113638	0.000603048
+UniRef50_E1VM94	0.000324645	0.000257603
+ABC transporter associated permease	0.000177915	0.00257452
+PREDICTED	1.85628e-05	2.41107e-05
+hypothetical protein	4.44449e-05	1.47256e-05
+hypothetical protein	1.04517e-06	1.53505e-05
+phosphoribosylglycinamide synthetase	2.48632e-05	3.59866e-06
+ATP synthase subunit beta	1.2914e-05	2.9606e-06
+1 acyl sn glycerol 3 phosphate acyltransferase	0.00515602	0.00153217
+Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	1.98721e-05	2.06259e-05
+UniRef50_L0GWW9	1.85385e-05	2.32291e-06
+Marine sediment metagenome DNA, contig	9.82749e-06	1.15826e-05
+1 phosphofructokinase	7.35763e-06	4.63154e-06
+Haloacid dehalogenase like hydrolase family protein	0.0133771	0.00234827
+1 acyl sn glycerol 3 phosphate acyltransferase	0.00131178	0.000273068
+Serine  tRNA ligase	0.000653074	0.000589975
+Glyoxalase family protein	7.68481e-06	9.81573e-06
+GNAT family acetyltransferase	9.1088e-05	0.000160588
+UniRef50_UPI000329B94F	0.0014504	0.000481783
+hypothetical protein	7.99273e-05	8.21634e-06
+Adenine phosphoribosyltransferase	4.11829e-05	0.00143123
+Proline dehydrogenase aldehyde dehydrogenase  family protein	0.000194353	0.00294304
+cDNA FLJ44595 fis, clone BLADE2004849	1.07803e-05	5.20769e-06
+NAD specific glutamate dehydrogenase	8.93752e-05	3.21421e-05
+IS66 Orf2 family protein	4.23879e-05	3.98506e-05
+Glutamate  tRNA ligase	1.14739e-05	3.56895e-06
+hypothetical protein	4.43471e-06	1.384e-05
+Chlamydial polymorphic outer membrane protein repeat containing domain protein	0.00240058	0.000976974
+Iron containing alcohol dehydrogenase	0.000227174	0.000542895
+UniRef50_E4BLL0	0.000120818	3.44223e-05
+Ribose 5 phosphate isomerase A	0.0081078	0.00130635
+L threonine dehydratase biosynthetic IlvA	3.65364e-06	1.31408e-05
+UniRef50_A6LPD2	0.000170837	0.000165046
+UniRef50_G8AVE8	9.51281e-06	4.04105e-06
+UniRef50_Q75V35	0.000723864	0.00025436
+Periplasmic binding protein	9.35241e-06	1.47241e-05
+ABC type sugar  transport system, ATPase component	9.83284e-06	1.5524e-05
+Rubrerythrin	0.000173479	0.00602065
+Conserved membrane protein 	0.0228849	0.0039994
+Indigoidine systhesis protein	0.0124953	0.00257574
+ATP dependent zinc metalloprotease FtsH	0.000179875	0.0264199
+Secretion protein HlyD family protein	0.0130761	0.00192281
+UniRef50_I1F0I8	3.95193e-05	0.000505584
+Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB	3.27195e-05	4.30096e-05
+UniRef50_T0W257	0.000229465	0.0021294
+Melibiose carrier protein	0.000742966	0.00018245
+UniRef50_Q2CBB5	5.87791e-05	2.31613e-05
+IcmB protein	3.09517e-05	0.00563424
+UniRef50_Q0FPA9	0.000611906	0.000171432
+Aminopeptidase PepS	0.0113211	0.00218174
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00645216	0.00032045
+UniRef50_F3U1Z6	0.000849084	0.000338082
+UniRef50_R0NVZ1	0.000259549	0.00153741
+hypothetical protein	3.68138e-05	5.8801e-05
+UniRef50_W7VW27	1.11765e-05	4.36623e-05
+UniRef50_F7ZK72	5.93145e-05	1.38135e-05
+Membrane protein, PerM family	0.00107793	0.000723344
+ATP synthase subunit a	0.0153914	0.00220751
+hypothetical protein	4.51481e-06	1.40238e-05
+hypothetical protein	6.2596e-06	2.65443e-05
+bis tetraphosphatase PrpE	7.98103e-06	0.000151034
+Transposase, IS4 family	3.03915e-06	3.05712e-06
+DNA methyltransferase	0.000118822	8.23032e-05
+Branched chain amino acid ABC transporter, permease protein	0.000151145	0.00473674
+NADH quinone oxidoreductase subunit B	7.26602e-06	6.93887e-05
+UniRef50_Q2YUT9	0.00742269	0.000767521
+Glycerol 3 phosphate dehydrogenase [NAD+]	1.47769e-05	0.000231613
+UniRef50_Q9RS18	0.00015438	0.00365902
+UniRef50_J9YPZ0	0.000396253	0.000283291
+UniRef50_B9DZV8	0.000533255	0.000728107
+UniRef50_Q9RS17	0.00019755	0.0185779
+PPC, peptidase containing PKD repeats	6.98227e-06	0.000561272
+Glutathione S transferase	0.00022288	0.00329285
+Molybdenum cofactor biosynthesis protein 1	2.11838e-06	4.73782e-06
+UniRef50_U5MS35	0.000445922	0.000399158
+Diaminopimelate decarboxylase	7.44346e-06	0.000163388
+Formamidopyrimidine DNA glycosylase	0.000547368	0.0122232
+Putative sulfoquinovose importer	0.00189079	0.000386722
+Putative conjugative transfer protein	1.23642e-05	8.02332e-06
+tRNA 2 thiocytidine biosynthesis protein TtcA	0.000215785	0.000957492
+Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.01016	0.000771379
+Conserved domain protein	4.98049e-05	3.07836e-06
+UniRef50_A0A011QZ11	5.07337e-07	4.17343e-05
+UniRef50_E2SFH7	0.000100772	0.000213266
+6 aminohexanoate dimer hydrolase	0.000175144	0.000207246
+UPF0001 protein YggS	0.00224399	0.000151002
+dTDP 4 dehydrorhamnose 3,5 epimerase	0.00120578	0.00236737
+UniRef50_B9KLT3	0.00273982	0.000511895
+DNA topoisomerase 4 subunit A	0.000272414	0.000141672
+cysteinyl tRNA synthetase	3.50153e-06	5.16506e-06
+hypothetical protein	5.24845e-06	8.08803e-05
+ACT domain protein	9.3419e-05	0.000676596
+hypothetical protein	1.34636e-05	1.48529e-05
+Histidine kinase	0.000167507	0.000769774
+hypothetical protein	7.61857e-05	7.92776e-06
+Shikimate dehydrogenase	8.56264e-05	4.18208e-05
+Phosphoesterase, HXTX	0.000191584	0.000518739
+UniRef50_D3UYE0	8.33272e-06	0.00348659
+Lipopolysaccharide regulatory protein	0.00257005	0.000403108
+Putative 3 methyladenine DNA glycosylase	0.00563035	0.000815741
+Ribosomal RNA small subunit methyltransferase H	1.95744e-05	4.78158e-06
+hypothetical protein	0.000146022	0.00017021
+hypothetical protein	3.53862e-05	4.35482e-06
+hypothetical protein	6.70922e-06	4.22607e-06
+hypothetical protein	7.67399e-05	7.26589e-05
+S glutathione dehydrogenase	6.32601e-06	0.0259231
+Oligopeptidase A	0.00026548	0.0193575
+UniRef50_P44742	0.00442635	0.00458593
+Cation transporter	0.00010441	0.00298253
+sulfite oxidase	1.05248e-05	1.0757e-05
+phosphoribosylaminoimidazole carboxylase	4.87701e-06	5.86011e-06
+3 mercaptopyruvate sulfurtransferase	3.43532e-05	6.27976e-06
+SAM dependent methyltransferase	0.00208663	0.000112654
+hypothetical protein	1.24084e-05	1.93354e-05
+Transcriptional regulator, LuxR family	0.000133551	0.000877647
+UniRef50_E9G921	1.08569e-06	4.35849e-05
+UniRef50_V6Q9S0	0.0352309	0.00666164
+UniRef50_G6DMD6	0.000274829	1.69205e-05
+hypothetical protein	3.44428e-05	0.000150543
+hypothetical protein	1.24376e-05	6.84426e-06
+hypothetical protein	5.10768e-06	1.49464e-05
+UniRef50_I3X451	4.34745e-05	1.09843e-05
+dTDP 4 dehydrorhamnose reductase	0.00301507	0.00108779
+Cupin	0.000275057	7.50207e-05
+hypothetical protein	4.93076e-05	3.62564e-05
+PREDICTED	4.92336e-06	0.00104574
+hypothetical protein	7.31002e-06	4.74718e-06
+Amino acid ABC transporter permease	0.000727005	0.00274863
+hypothetical protein	1.39161e-05	7.55634e-06
+Lipopolysaccharide export system ATP binding protein LptB	0.00386175	0.001012
+UniRef50_B9KSN1	0.00767805	0.00019392
+hypothetical protein FG01684.1	4.32148e-07	6.42388e-07
+hypothetical protein	8.69414e-05	1.70163e-05
+CRISPR associated endonuclease helicase Cas3	0.0022485	0.000473124
+Histidine kinase	0.000133439	8.14285e-05
+Predicted protein	2.64326e-05	3.80621e-06
+UniRef50_C6STX0	0.00193403	0.000446691
+hypothetical protein	3.79297e-05	1.98687e-05
+Glycerate kinase	0.0218424	0.00304233
+DeoR family transcriptional regulator	9.78228e-06	6.07935e-06
+UniRef50_I6U493	0.0232416	0.00120488
+UniRef50_K2KBP7	1.21655e-06	1.24193e-06
+high frequency lysogenization protein HflD	5.71502e-06	3.63746e-06
+Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB	0.00566938	0.000779932
+UniRef50_P0ADU0	0.00148208	0.000820545
+Chromosome segregation ATPase	0.000310238	0.00443807
+NH dependent NAD(+) synthetase	1.39614e-05	1.03525e-05
+LysM repeat containing protein	3.27744e-05	1.38144e-05
+Aspartyl glutamyl tRNA amidotransferase subunit B	0.0193712	0.00305934
+Glucosamine 6 phosphate deaminase	5.67895e-06	8.38292e-06
+Cation transport ATPase	9.78018e-05	8.37967e-06
+UniRef50_K0SY54	2.1144e-05	1.00562e-05
+UniRef50_X5EXI6	0.0008123	0.000113392
+hypothetical protein	0.000297888	5.78703e-05
+Outer membrane protein assembly factor BamA	0.00121837	0.000437518
+3 oxoacyl [acyl carrier protein] synthase 3	0.00677003	0.000481687
+UniRef50_Q6FD06	0.000112433	0.00343424
+Acetyltransferase, GNAT family	0.0332879	0.00205108
+ABC type polar amino acid transport system, ATPase component	0.0036728	0.00113507
+non specific serine threonine protein kinase	3.13275e-06	0.000224175
+Glutamyl Q tRNA synthetase	6.6223e-06	0.000215606
+hypothetical protein	1.33967e-05	2.17455e-05
+UniRef50_D5ANE3	0.000288572	3.4303e-05
+Ribokinase	0.00187296	0.000163543
+Transcriptional antiterminator	0.000442147	0.000390782
+UniRef50_E0XU72	0.000118984	5.66206e-05
+UniRef50_P37443	0.00433374	0.000728209
+hypothetical protein	1.08433e-05	4.73062e-06
+UniRef50_B0V9N7	8.42776e-05	0.00237875
+UniRef50_Q2GAK4	5.48864e-05	1.03099e-05
+Motility protein A	0.0012243	0.000417922
+Transporter	0.00644634	0.00177981
+UniRef50_G8LNB8	0.000206613	9.28413e-05
+Tricarballylate dehydrogenase	0.000635374	0.00300274
+5 nucleotidase SurE	0.000141804	0.000501642
+Germination protease	0.00116697	0.000937903
+hypothetical protein	2.63688e-05	5.59778e-06
+UniRef50_U0EEM2	1.1642e-05	2.46172e-05
+ABC branched chain amino acid transporter, inner membrane subunit	0.0112961	0.00129138
+UniRef50_Q8DUL1	0.00066605	0.000537634
+UniRef50_A5UK96	0.00136303	0.000322714
+1,4 alpha glucan branching enzyme GlgB	0.000367329	0.000143025
+ATP dependent DNA helicase RecG	4.39933e-05	0.015432
+ABC transporter ATPase	1.48581e-05	6.89658e-06
+Primosomal protein N	4.61447e-05	0.00221996
+DNA 3 methyladenine glycosylase	2.87127e-05	1.09958e-05
+Putative glutathione dependent formaldehyde activating enzyme	0.00511436	0.000567702
+hypothetical protein	0.000339502	4.85351e-05
+Methionine import ATP binding protein MetN	0.000466332	0.00249309
+UniRef50_J7QS02	1.96722e-05	5.33562e-06
+UniRef50_UPI0003C0FD3F	1.96632e-05	2.28969e-06
+hypothetical protein, partial	3.90449e-05	1.36769e-05
+PREDICTED	3.71792e-05	4.85155e-05
+GCN5 related N acetyltransferase	0.00456299	0.000185123
+hypothetical protein, partial	0.000218894	0.000248024
+Nitrate proton symporter	0.000311218	0.000317619
+UniRef50_S3BZ34	1.60808e-05	4.18492e-05
+UniRef50_S5XXA3	0.00196174	8.88441e-05
+UniRef50_M1N724	0.000542176	0.000569561
+LysR family transcriptional regulator	1.37751e-05	5.69433e-06
+sodium	4.35969e-06	3.29768e-06
+Ribonuclease E	0.00238721	0.000164498
+PREDICTED	4.88222e-05	5.45805e-05
+UniRef50_A3PS91	0.0100242	0.00134033
+DNA gyrase subunit B	5.81025e-06	7.99741e-06
+Probable M18 family aminopeptidase 1	0.000440141	0.000938912
+ATP phosphoribosyltransferase	1.2277e-05	2.26201e-05
+Tryptophan  tRNA ligase	1.92164e-05	0.000468923
+Phosphate uptake regulator, PhoU	0.00246901	0.000543638
+UniRef50_R7PS35	0.000395939	0.000264073
+hypothetical protein	3.45092e-05	3.04339e-06
+Oligoendopeptidase F	0.0070192	0.00084994
+Collagen triple helix repeat	5.88715e-05	0.000101845
+NADH ubiquinone oxidoreductase subunit 9	7.82685e-06	7.14499e-06
+UniRef50_A5UQY7	0.00012717	3.37706e-05
+5 nucleotidase SurE	0.000146884	0.000187442
+UniRef50_Q1R6G9	0.000582051	0.000127674
+GTP cyclohydrolase 1	2.89205e-05	2.57337e-05
+spermidine putrescine ABC transporter ATP binding protein	4.35886e-05	4.85689e-05
+hypothetical protein	2.39556e-05	9.10072e-06
+Protein HflC	0.00141015	0.000353192
+DNA polymerase I	0.00662233	0.00272153
+UniRef50_Q3JTX2	6.07415e-05	7.09762e-05
+Purine nucleoside phosphorylase DeoD type	2.69938e-05	0.000166729
+DNA polymerase I, thermostable	1.75936e-06	4.63556e-05
+single stranded DNA binding protein	1.43866e-05	0.000676654
+Membrane alanyl aminopeptidase	9.81672e-05	0.00304221
+Error prone DNA polymerase	0.000178523	0.00232607
+Peptidase M20	7.54593e-05	0.0183069
+hypothetical protein	3.02559e-05	8.60307e-06
+ABC transporter	0.000101377	3.03458e-06
+UniRef50_A0A023VS51	1.36568e-05	1.03643e-05
+transcriptional regulator	0.0016775	0.000480094
+SecY stabilizing membrane protein	0.0192095	0.00329179
+Cupin	0.000135197	2.87945e-05
+Acyl CoA synthetase  AMP acid ligase II	0.00288843	0.00248331
+Ribonuclease 3	0.00666897	0.00177409
+UniRef50_X1WZZ9	0.000491407	2.7079e-05
+ABC transporter permease	0.00026787	7.51726e-05
+Major facilitator superfamily permease	0.000163214	0.00368002
+hypothetical protein	6.04493e-06	3.75806e-05
+Xaa Pro dipeptidase	5.58402e-06	6.47937e-06
+Toxin PIN	3.78971e-05	0.000111224
+tRNA  methyltransferase 2	0.00420664	0.00035582
+UniRef50_M1MIQ5	0.000805615	0.000613389
+Expressed protein 	0.000383577	0.000338385
+Glyoxalase bleomycin resistance protein dioxygenase superfamily protein	0.0157792	0.00189854
+Siroheme synthase	3.25581e-05	1.55799e-05
+UniRef50_D3F1T9	0.000687785	0.000132596
+Acyl CoA dehydrogenase like protein	0.00157748	5.79257e-05
+UniRef50_D5RUB7	1.46609e-05	0.000436146
+Glutamate  tRNA ligase	7.45126e-05	0.00191685
+UniRef50_R6YL47	1.741e-05	0.000128574
+UniRef50_Q8NYY1	0.0200407	0.00445989
+RND efflux membrane fusion protein related protein	0.00109969	0.00031008
+LPS assembly lipoprotein LptE	0.00242704	0.00188602
+hypothetical protein	0.000168912	3.81132e-05
+50S ribosomal protein L11	6.15981e-05	0.000515558
+tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC	0.00282594	0.000349617
+Putative cation	3.15886e-05	6.11006e-05
+PTS cellobiose transporter subunit IIC	5.77753e-06	2.58417e-06
+UniRef50_D6A8A0	5.04734e-05	5.62859e-05
+Membrane protein, putative	4.52108e-05	0.000170857
+Dipeptide and tripeptide permease B	0.00354422	0.000624253
+membrane protein	0.000491219	0.000143516
+Staphylococcal enterotoxin like toxin	0.0260852	0.00151189
+Protoporphyrinogen oxidase	0.000171264	0.00338668
+Hydroxyethylthiazole kinase	6.1748e-06	5.1816e-06
+glyoxalase I	0.000594645	0.000307014
+UniRef50_Q9RTU9	0.000587738	0.0153034
+UniRef50_Q9RTU8	0.000284751	0.0239491
+UniRef50_M1MCZ5	0.0010909	0.000352931
+Outer membrane autotransporter barrel domain containing protein	0.000125422	7.99509e-05
+hypothetical protein	1.25788e-06	1.19129e-06
+PTS system lactose specific EIICB component	0.026745	0.00374594
+Predicted protein	1.51415e-05	7.55543e-06
+acetoacetyl CoA synthetase	5.07608e-05	8.23468e-06
+UniRef50_R9I899	6.70329e-06	6.04108e-06
+6 pyruvoyl tetrahydropterin synthase	0.000749591	0.000535246
+Transcriptional regulator, TetR family	0.000240392	0.000480209
+Isopentenyl diphosphate Delta isomerase	5.50733e-05	7.45661e-06
+Cys tRNA Cys tRNA(Cys) deacylase	0.00131454	0.00271712
+UniRef50_J9P557	0.000106841	1.50899e-05
+Mandelate racemase muconate lactonizing protein	0.00643821	0.000963567
+UniRef50_J3L617	1.68648e-05	1.71713e-05
+UniRef50_D6SCW3	5.02897e-05	3.00515e-05
+UniRef50_I7EWS3	0.00212163	0.00022102
+Pyridoxamine kinase	0.00599107	0.0013814
+hypothetical protein	2.71998e-05	1.40787e-05
+UniRef50_Q9RRP9	0.000334874	0.0275637
+hypothetical protein, partial	2.77892e-05	3.31003e-05
+Queuine tRNA ribosyltransferase	0.0210544	0.00961769
+UniRef50_A9MN50	0.00244078	0.00082444
+hypothetical protein	1.56867e-05	0.0015832
+Rubredoxin 2	0.000165272	1.54914e-05
+Methyl accepting chemotaxis sensory transducer	0.000724315	0.000371308
+NH dependent NAD(+) synthetase	0.00400127	0.000410447
+PKHD type hydroxylase Shew185_0721	0.00175624	0.0034849
+GDSL like protein	0.00022288	0.00104516
+Glycoside hydrolase family 3 domain containing protein	0.000490828	0.00120273
+UniRef50_A3PG26	0.00264161	5.8264e-05
+4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	3.86634e-06	7.38181e-06
+hypothetical protein PFL1_01444	3.65035e-05	7.25391e-05
+Probable proline iminopeptidase	2.93754e-05	4.57552e-06
+hypothetical protein	7.62055e-06	9.53231e-06
+Isrso9 transposase protein	4.30012e-05	3.87821e-06
+UniRef50_T1Y9Z4	0.000627236	0.000264073
+UniRef50_R6MIG6	0.000369227	0.000503606
+hypothetical protein	1.03456e-05	3.7052e-06
+hypothetical protein, partial	4.96539e-05	8.52761e-06
+Ribonuclease PH	3.86518e-05	6.64057e-06
+UniRef50_Q6GJN1	0.0484242	0.00586497
+Imidazole glycerol phosphate synthase subunit HisH	0.00366845	0.00087244
+UniRef50_J9P132	9.80429e-05	0.000176105
+UniRef50_Q8DS10	0.00517935	0.000934844
+Natural resistance associated macrophage protein	8.91126e-05	0.000342288
+hypothetical protein, partial	3.21983e-05	0.000139833
+hypothetical protein	1.66435e-05	2.45932e-06
+Electron transfer flavoprotein ubiquinone oxidoreductase	0.000126335	0.00468406
+Phosphoenolpyruvate carboxykinase [ATP]	0.00134729	0.000203711
+PTS system, sucrose specific IIBC component	6.48456e-05	0.00319235
+Ethanolamine ammonia lyase light chain	0.00150546	0.00160754
+Soluble lytic murein transglycosylase like protein	5.2668e-05	0.00279243
+Glycosyltransferase , GT1 family	0.00198846	0.00026756
+UniRef50_Q5F919	9.88395e-05	0.00101027
+Methionine aminopeptidase 1D, mitochondrial	6.81097e-05	1.19142e-05
+UTP  glucose 1 phosphate uridylyltransferase	0.0122517	0.000850383
+N acetyl anhydromuranmyl L alanine amidase	0.00181429	0.00337269
+ABC transporter ATP binding protein	2.98894e-05	4.68402e-06
+tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.014728	0.00363026
+GntR family transcriptional regulator	0.000365814	0.00264791
+Glycerol 3 phosphate acyltransferase	7.29586e-06	0.00161545
+PH domain like protein, partial	1.74238e-05	1.48003e-05
+FAD dependent oxidoreductase	0.000331074	8.55094e-05
+AzlC family protein	2.38805e-05	6.1356e-06
+TagG homolog	0.00702183	0.000474292
+Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system	2.23882e-05	6.90722e-06
+V type ATP synthase beta chain 2	0.00215596	0.0228379
+NADH ubiquinone oxidoreductase chain 4L	1.93642e-05	1.81555e-05
+Na+ H+ Antiporter	9.81191e-05	0.00152127
+Inner membrane protein YhjD	0.00194666	0.00128885
+Integrase, catalytic region	0.0124084	0.0036929
+5 keto 4 deoxyuronate isomerase	8.52433e-06	6.37375e-06
+saccharopine dehydrogenase	5.47599e-05	0.000269543
+Arsenate reductase	0.00010691	4.62143e-05
+ABC transporter, substrate binding protein	0.0200918	0.00303128
+Ribulose phosphate 3 epimerase	0.000478505	0.000136451
+Bacterial extracellular solute binding s, 3 family protein	0.000531392	0.00197838
+2 dehydro 3 deoxyglucarate aldolase	1.96946e-05	1.85535e-05
+Trehalose import ATP binding protein SugC	0.0259991	0.00712093
+Tyrosine recombinase XerD	0.000590875	0.000269613
+Metallo dependent phosphatase	2.31362e-05	2.46469e-06
+Magnesium transporter	0.000495207	0.00269364
+Gluconate	7.16569e-05	0.00354787
+2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase	0.00165223	0.000216905
+iron ABC transporter ATP binding protein	1.4244e-05	5.94107e-06
+LysR family transcriptional regulator	0.000287907	0.000101337
+Glycoside hydrolase, family 46	0.000258221	0.000771777
+Sensor protein BasS	0.00279445	0.000528668
+UniRef50_A4WYB5	0.000158826	0.000144099
+UniRef50_A4WYB3	6.46641e-05	8.11967e-05
+UniRef50_V5LN28	8.26165e-05	2.6841e-05
+Glycosyltransferase	0.00460386	0.0013757
+Xanthine dehydrogenase accessory factor	5.97044e-06	5.07366e-06
+UniRef50_J3LXD1	0.000170912	3.37089e-05
+UniRef50_K2BFC0	0.00233729	0.000122687
+Dihydrodipicolinate synthase	0.00433536	0.000536979
+UniRef50_A7FAX6	0.000174077	0.00709521
+UniRef50_A7FAX1	0.000277183	0.00479079
+UniRef50_A7FAX3	0.000201551	0.00580081
+HAD superfamily hydrolase, subfamily IB 	0.00129612	0.000780738
+UniRef50_E3D438	0.000242864	0.000711801
+UniRef50_A7FAX8	0.000406905	0.00699926
+Outer membrane protein HofB	0.000185979	0.00179116
+NADH quinone oxidoreductase subunit B 2	7.32276e-06	0.000116758
+UniRef50_Q8DTF8	0.00477145	0.000711822
+UniRef50_Q8DTF4	0.0033181	0.000683642
+hypothetical protein	0.000159473	1.67698e-05
+EamA like transporter family protein	0.000296955	0.000742024
+UniRef50_B9KSS7	0.00107183	0.000306433
+1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	7.18002e-06	2.1983e-05
+D 3 phosphoglycerate dehydrogenase	2.34725e-05	1.45596e-05
+L serine dehydratase	0.000613197	0.00673
+UniRef50_V6KSS1	1.70682e-06	4.9881e-06
+DNA gyrase subunit B	2.01938e-05	1.71145e-05
+DNA repair protein radA	0.019795	0.00415908
+Glucose 1 phosphate adenylyltransferase	0.000365244	0.023191
+Conserved hypoothetical protein	0.00118145	0.000304355
+Hydrogenase 1 maturation protease	0.00398497	0.000327682
+UniRef50_B5GZL5	7.46299e-06	5.89627e-05
+UniRef50_F0YEL0	8.48157e-06	7.67249e-08
+Copper exporting P type ATPase B	3.97895e-06	9.54857e-06
+translation initiation factor IF 3	6.61285e-06	3.17062e-05
+hypothetical protein	6.05753e-06	6.46116e-06
+Bifunctional protein PaaZ	0.00296879	0.017174
+hypothetical protein	2.06422e-05	2.90355e-05
+Peptidase U32	0.000657375	0.000633363
+UniRef50_S1MU41	3.16359e-06	3.00806e-06
+hypothetical protein	4.0719e-05	1.19419e-06
+UniRef50_P57864	0.00346975	0.00184651
+hypothetical protein	1.10759e-05	1.1749e-06
+ribonucleotide diphosphate reductase subunit alpha, partial	1.24665e-05	0.00479338
+Ribonuclease PH	1.22353e-05	9.89494e-06
+Serine threonine phosphatase	4.22523e-06	1.61328e-05
+hypothetical protein	3.58485e-06	5.04236e-06
+Aspartate ammonia lyase	0.000752977	0.0025833
+UniRef50_P9WLT0	0.000110344	0.00257699
+Acyl CoA dehydrogenase	0.000113827	0.00398798
+MW0677 protein	0.00916458	0.000789517
+UniRef50_P76613	0.00297844	6.91717e-05
+Exodeoxyribonuclease III	0.0113436	0.00134576
+UniRef50_Q8DUL3	0.00546777	0.00294859
+Binding protein dependent transport systems inner membrane component	0.000788459	0.000967536
+Methyltransferase, putative	0.000687874	0.0289494
+Malate dehydrogenase  (NADP(+))	0.000128807	0.0339473
+UniRef50_Q3JPF1	2.36254e-05	5.92248e-05
+hypothetical protein	4.24475e-05	4.25391e-05
+Isopentenyl diphosphate Delta isomerase	0.00055475	0.000164441
+Phosphopantothenate  cysteine ligase	0.00402834	0.000870814
+nickel transporter permease NikB	4.12544e-05	4.37221e-05
+Ribosomal RNA small subunit methyltransferase G	6.9804e-05	1.44396e-05
+UniRef50_B1QWY3	0.000468626	0.000787847
+Membrane protein insertase YidC 1	0.00373089	0.00113492
+leucyl phenylalanyl tRNA  protein transferase	8.98619e-06	1.69263e-05
+Phosphodiesterase, family	0.000515125	0.000376063
+Sensor kinase CusS	0.00221302	0.000633498
+Proteophosphoglycan ppg4	1.08034e-05	1.27052e-05
+Fatty acid  CoA ligase	7.93123e-05	0.00301925
+hypothetical protein	5.86556e-06	0.000148134
+Homoserine dehydrogenase	0.000340781	0.00253223
+hypothetical protein	2.21467e-05	3.48258e-05
+hypothetical protein	7.20664e-06	1.16351e-05
+peptidase M24	3.47577e-06	7.64163e-06
+heme ABC transporter ATP binding protein	5.18248e-05	2.93601e-05
+hypothetical protein	1.43604e-05	1.73656e-06
+UniRef50_P0AB04	0.00173809	0.000684324
+UniRef50_UPI0002A4C202	4.9528e-05	1.37999e-05
+alpha L fucosidase	1.37673e-05	2.39567e-05
+UniRef50_A0A017Y7E3	2.65397e-05	2.26091e-05
+UniRef50_Q97FA7	0.000265612	0.00107913
+Fibronectin, type III domain protein	0.000206936	0.000490788
+oxidoreductase	5.00962e-06	8.74669e-06
+branched chain amino acid transporter II carrier protein	1.41705e-05	6.39227e-06
+UniRef50_K0S2S0	2.55692e-05	0.000253257
+Porphobilinogen deaminase	0.00702004	0.000628213
+Sodium proline symporter	0.00153802	0.00672764
+hypothetical protein	2.12677e-05	8.18687e-05
+hypothetical protein	5.33117e-05	2.56122e-06
+UniRef50_K8Z2D7	1.23149e-05	1.2493e-05
+Xanthine permease XanQ	0.00338718	0.00112417
+UPF0246 protein YaaA 	1.20083e-05	8.0264e-06
+DegV domain containing protein CPE1310	0.000404868	0.000451044
+taurine  pyruvate aminotransferase	4.23357e-05	8.41047e-06
+malyl CoA thiolesterase	9.025e-05	2.26902e-05
+UniRef50_E3D1E7	0.000254676	0.000640291
+peptide ABC transporter permease	4.82265e-06	1.23469e-05
+DnaK domain protein 	8.44881e-05	3.2284e-05
+hypothetical protein, partial	3.30099e-05	1.089e-05
+PREDICTED	1.12802e-05	8.1275e-07
+Phage infection protein Pip	0.000430009	0.000649083
+50S ribosomal protein L22	7.49387e-06	1.5923e-05
+UniRef50_A8G2K7	0.00050524	0.00149351
+UniRef50_V9U122	0.000337332	0.000132147
+Carbamoyl phosphate synthase small chain	0.000300047	0.00123932
+UniRef50_Q64QH6	1.57974e-06	1.57088e-06
+hypothetical protein	2.77341e-06	3.02538e-06
+Membrane fusion protein	7.59132e-05	0.00309855
+Peptidase family M48 family	0.000542551	0.000208802
+MarR family transcriptional regulator, partial	1.06452e-05	2.16182e-05
+hypothetical protein	0.000133491	1.9086e-05
+Transcriptional regulator, RpiR family	0.000282183	0.000790884
+Potassium transporting ATPase A chain	0.00726039	0.00621555
+Putative pyruvate, phosphate dikinase regulatory protein	0.0200092	0.00205547
Binary file test-data/output_test.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml	Mon Apr 18 11:11:02 2016 -0400
@@ -0,0 +1,9 @@
+<?xml version="1.0"?>
+<tool_dependency>
+    <package name="R" version="3.2.1">
+        <repository changeset_revision="d0bf97420fb5" name="package_r_3_2_1" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu" />
+    </package>
+    <package name="r-getopt" version="1.20.0">
+        <repository changeset_revision="712cb82311a8" name="package_r_3_2_1_getopt_1_20_0" owner="bebatut" toolshed="https://toolshed.g2.bx.psu.edu" />
+    </package>
+</tool_dependency>